diff --git a/grammar.js b/grammar.js index df64a8a3..b03c1d34 100644 --- a/grammar.js +++ b/grammar.js @@ -245,9 +245,11 @@ module.exports = grammar({ ")" ), + binding_pattern_kind: $ => choice("val", "var"), + class_parameter: $ => seq( optional($.modifiers), - optional(choice("val", "var")), + optional($.binding_pattern_kind), $.simple_identifier, ":", $._type, @@ -365,7 +367,7 @@ module.exports = grammar({ property_declaration: $ => prec.right(seq( optional($.modifiers), - choice("val", "var"), + $.binding_pattern_kind, optional($.type_parameters), optional(seq($._receiver_type, optional('.'))), choice($.variable_declaration, $.multi_variable_declaration), diff --git a/src/grammar.json b/src/grammar.json index be9b36b1..f2a1ab61 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -679,6 +679,19 @@ } ] }, + "binding_pattern_kind": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "val" + }, + { + "type": "STRING", + "value": "var" + } + ] + }, "class_parameter": { "type": "SEQ", "members": [ @@ -698,17 +711,8 @@ "type": "CHOICE", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "STRING", - "value": "var" - } - ] + "type": "SYMBOL", + "name": "binding_pattern_kind" }, { "type": "BLANK" @@ -1464,17 +1468,8 @@ ] }, { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "STRING", - "value": "var" - } - ] + "type": "SYMBOL", + "name": "binding_pattern_kind" }, { "type": "CHOICE", diff --git a/src/node-types.json b/src/node-types.json index f61ef51d..cdbf373d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -640,6 +640,11 @@ ] } }, + { + "type": "binding_pattern_kind", + "named": true, + "fields": {} + }, { "type": "boolean_literal", "named": true, @@ -1239,6 +1244,10 @@ "type": "bin_literal", "named": true }, + { + "type": "binding_pattern_kind", + "named": true + }, { "type": "boolean_literal", "named": true @@ -6416,6 +6425,10 @@ "type": "bin_literal", "named": true }, + { + "type": "binding_pattern_kind", + "named": true + }, { "type": "boolean_literal", "named": true diff --git a/src/parser.c b/src/parser.c index da8f41ae..c8c4f7ef 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 10153 +#define STATE_COUNT 10155 #define LARGE_STATE_COUNT 4529 -#define SYMBOL_COUNT 356 +#define SYMBOL_COUNT 357 #define ALIAS_COUNT 3 #define TOKEN_COUNT 153 #define EXTERNAL_TOKEN_COUNT 7 @@ -189,199 +189,200 @@ enum ts_symbol_identifiers { sym_primary_constructor = 163, sym_class_body = 164, sym__class_parameters = 165, - sym_class_parameter = 166, - sym__delegation_specifiers = 167, - sym_delegation_specifier = 168, - sym_constructor_invocation = 169, - sym_explicit_delegation = 170, - sym_type_parameters = 171, - sym_type_parameter = 172, - sym_type_constraints = 173, - sym_type_constraint = 174, - aux_sym__class_member_declarations = 175, - sym__class_member_declaration = 176, - sym_anonymous_initializer = 177, - sym_companion_object = 178, - sym_function_value_parameters = 179, - sym__function_value_parameter = 180, - sym__receiver_type = 181, - sym_function_declaration = 182, - sym_function_body = 183, - sym_variable_declaration = 184, - sym_property_declaration = 185, - sym_property_delegate = 186, - sym_getter = 187, - sym_setter = 188, - sym_parameter_with_optional_type = 189, - sym_parameter = 190, - sym_object_declaration = 191, - sym_secondary_constructor = 192, - sym_constructor_delegation_call = 193, - sym_enum_class_body = 194, - sym__enum_entries = 195, - sym_enum_entry = 196, - sym__type = 197, - sym__type_reference = 198, - sym_not_nullable_type = 199, - sym_nullable_type = 200, - sym_user_type = 201, - sym__simple_user_type = 202, - sym_type_projection = 203, - sym_type_projection_modifiers = 204, - sym__type_projection_modifier = 205, - sym_function_type = 206, - sym_function_type_parameters = 207, - sym_parenthesized_type = 208, - sym_parenthesized_user_type = 209, - sym_statements = 210, - sym__statement = 211, - sym_control_structure_body = 212, - sym__block = 213, - sym__loop_statement = 214, - sym_for_statement = 215, - sym_while_statement = 216, - sym_do_while_statement = 217, - sym__semi = 218, - sym_assignment = 219, - sym__expression = 220, - sym__unary_expression = 221, - sym_postfix_expression = 222, - sym_call_expression = 223, - sym_indexing_expression = 224, - sym_navigation_expression = 225, - sym_prefix_expression = 226, - sym_as_expression = 227, - sym_spread_expression = 228, - sym__binary_expression = 229, - sym_multiplicative_expression = 230, - sym_additive_expression = 231, - sym_range_expression = 232, - sym_infix_expression = 233, - sym_elvis_expression = 234, - sym_check_expression = 235, - sym_comparison_expression = 236, - sym_equality_expression = 237, - sym_conjunction_expression = 238, - sym_disjunction_expression = 239, - sym_indexing_suffix = 240, - sym_navigation_suffix = 241, - sym_call_suffix = 242, - sym_annotated_lambda = 243, - sym_type_arguments = 244, - sym_value_arguments = 245, - sym_value_argument = 246, - sym__primary_expression = 247, - sym_parenthesized_expression = 248, - sym_collection_literal = 249, - sym__literal_constant = 250, - sym_string_literal = 251, - sym__interpolation = 252, - sym_lambda_literal = 253, - sym_multi_variable_declaration = 254, - sym_lambda_parameters = 255, - sym__lambda_parameter = 256, - sym_anonymous_function = 257, - sym__function_literal = 258, - sym_object_literal = 259, - sym_this_expression = 260, - sym_super_expression = 261, - sym_if_expression = 262, - sym_when_subject = 263, - sym_when_expression = 264, - sym_when_entry = 265, - sym_when_condition = 266, - sym_range_test = 267, - sym_type_test = 268, - sym_try_expression = 269, - sym_catch_block = 270, - sym_finally_block = 271, - sym_jump_expression = 272, - sym_callable_reference = 273, - sym__assignment_and_operator = 274, - sym__equality_operator = 275, - sym__comparison_operator = 276, - sym__in_operator = 277, - sym__is_operator = 278, - sym__additive_operator = 279, - sym__multiplicative_operator = 280, - sym__as_operator = 281, - sym__prefix_unary_operator = 282, - sym__postfix_unary_operator = 283, - sym__member_access_operator = 284, - sym__postfix_unary_suffix = 285, - sym__postfix_unary_expression = 286, - sym_directly_assignable_expression = 287, - sym_modifiers = 288, - sym_parameter_modifiers = 289, - sym__modifier = 290, - sym_type_modifiers = 291, - sym__type_modifier = 292, - sym_class_modifier = 293, - sym_member_modifier = 294, - sym_visibility_modifier = 295, - sym_variance_modifier = 296, - sym_type_parameter_modifiers = 297, - sym__type_parameter_modifier = 298, - sym_function_modifier = 299, - sym_inheritance_modifier = 300, - sym_parameter_modifier = 301, - sym_platform_modifier = 302, - sym_annotation = 303, - sym__single_annotation = 304, - sym__multi_annotation = 305, - sym_use_site_target = 306, - sym__unescaped_annotation = 307, - sym_simple_identifier = 308, - sym_identifier = 309, - sym__import_identifier = 310, - sym__return_at = 311, - sym__continue_at = 312, - sym__break_at = 313, - sym__this_at = 314, - sym__super_at = 315, - sym_unsigned_literal = 316, - sym_long_literal = 317, - sym_boolean_literal = 318, - sym_character_literal = 319, - sym_character_escape_seq = 320, - sym__lexical_identifier = 321, - sym__uni_character_literal = 322, - aux_sym_source_file_repeat1 = 323, - aux_sym_source_file_repeat2 = 324, - aux_sym_source_file_repeat3 = 325, - aux_sym_file_annotation_repeat1 = 326, - aux_sym_import_list_repeat1 = 327, - aux_sym__class_parameters_repeat1 = 328, - aux_sym__delegation_specifiers_repeat1 = 329, - aux_sym__annotated_delegation_specifier_repeat1 = 330, - aux_sym_type_parameters_repeat1 = 331, - aux_sym_type_constraints_repeat1 = 332, - aux_sym_function_value_parameters_repeat1 = 333, - aux_sym__enum_entries_repeat1 = 334, - aux_sym_nullable_type_repeat1 = 335, - aux_sym_user_type_repeat1 = 336, - aux_sym_type_projection_modifiers_repeat1 = 337, - aux_sym_function_type_parameters_repeat1 = 338, - aux_sym_statements_repeat1 = 339, - aux_sym__statement_repeat1 = 340, - aux_sym_indexing_suffix_repeat1 = 341, - aux_sym_type_arguments_repeat1 = 342, - aux_sym_value_arguments_repeat1 = 343, - aux_sym_string_literal_repeat1 = 344, - aux_sym_multi_variable_declaration_repeat1 = 345, - aux_sym_lambda_parameters_repeat1 = 346, - aux_sym_when_expression_repeat1 = 347, - aux_sym_when_entry_repeat1 = 348, - aux_sym_try_expression_repeat1 = 349, - aux_sym__postfix_unary_expression_repeat1 = 350, - aux_sym_modifiers_repeat1 = 351, - aux_sym_parameter_modifiers_repeat1 = 352, - aux_sym_type_modifiers_repeat1 = 353, - aux_sym_type_parameter_modifiers_repeat1 = 354, - aux_sym_identifier_repeat1 = 355, - alias_sym_interpolated_expression = 356, - alias_sym_interpolated_identifier = 357, - alias_sym_type_identifier = 358, + sym_binding_pattern_kind = 166, + sym_class_parameter = 167, + sym__delegation_specifiers = 168, + sym_delegation_specifier = 169, + sym_constructor_invocation = 170, + sym_explicit_delegation = 171, + sym_type_parameters = 172, + sym_type_parameter = 173, + sym_type_constraints = 174, + sym_type_constraint = 175, + aux_sym__class_member_declarations = 176, + sym__class_member_declaration = 177, + sym_anonymous_initializer = 178, + sym_companion_object = 179, + sym_function_value_parameters = 180, + sym__function_value_parameter = 181, + sym__receiver_type = 182, + sym_function_declaration = 183, + sym_function_body = 184, + sym_variable_declaration = 185, + sym_property_declaration = 186, + sym_property_delegate = 187, + sym_getter = 188, + sym_setter = 189, + sym_parameter_with_optional_type = 190, + sym_parameter = 191, + sym_object_declaration = 192, + sym_secondary_constructor = 193, + sym_constructor_delegation_call = 194, + sym_enum_class_body = 195, + sym__enum_entries = 196, + sym_enum_entry = 197, + sym__type = 198, + sym__type_reference = 199, + sym_not_nullable_type = 200, + sym_nullable_type = 201, + sym_user_type = 202, + sym__simple_user_type = 203, + sym_type_projection = 204, + sym_type_projection_modifiers = 205, + sym__type_projection_modifier = 206, + sym_function_type = 207, + sym_function_type_parameters = 208, + sym_parenthesized_type = 209, + sym_parenthesized_user_type = 210, + sym_statements = 211, + sym__statement = 212, + sym_control_structure_body = 213, + sym__block = 214, + sym__loop_statement = 215, + sym_for_statement = 216, + sym_while_statement = 217, + sym_do_while_statement = 218, + sym__semi = 219, + sym_assignment = 220, + sym__expression = 221, + sym__unary_expression = 222, + sym_postfix_expression = 223, + sym_call_expression = 224, + sym_indexing_expression = 225, + sym_navigation_expression = 226, + sym_prefix_expression = 227, + sym_as_expression = 228, + sym_spread_expression = 229, + sym__binary_expression = 230, + sym_multiplicative_expression = 231, + sym_additive_expression = 232, + sym_range_expression = 233, + sym_infix_expression = 234, + sym_elvis_expression = 235, + sym_check_expression = 236, + sym_comparison_expression = 237, + sym_equality_expression = 238, + sym_conjunction_expression = 239, + sym_disjunction_expression = 240, + sym_indexing_suffix = 241, + sym_navigation_suffix = 242, + sym_call_suffix = 243, + sym_annotated_lambda = 244, + sym_type_arguments = 245, + sym_value_arguments = 246, + sym_value_argument = 247, + sym__primary_expression = 248, + sym_parenthesized_expression = 249, + sym_collection_literal = 250, + sym__literal_constant = 251, + sym_string_literal = 252, + sym__interpolation = 253, + sym_lambda_literal = 254, + sym_multi_variable_declaration = 255, + sym_lambda_parameters = 256, + sym__lambda_parameter = 257, + sym_anonymous_function = 258, + sym__function_literal = 259, + sym_object_literal = 260, + sym_this_expression = 261, + sym_super_expression = 262, + sym_if_expression = 263, + sym_when_subject = 264, + sym_when_expression = 265, + sym_when_entry = 266, + sym_when_condition = 267, + sym_range_test = 268, + sym_type_test = 269, + sym_try_expression = 270, + sym_catch_block = 271, + sym_finally_block = 272, + sym_jump_expression = 273, + sym_callable_reference = 274, + sym__assignment_and_operator = 275, + sym__equality_operator = 276, + sym__comparison_operator = 277, + sym__in_operator = 278, + sym__is_operator = 279, + sym__additive_operator = 280, + sym__multiplicative_operator = 281, + sym__as_operator = 282, + sym__prefix_unary_operator = 283, + sym__postfix_unary_operator = 284, + sym__member_access_operator = 285, + sym__postfix_unary_suffix = 286, + sym__postfix_unary_expression = 287, + sym_directly_assignable_expression = 288, + sym_modifiers = 289, + sym_parameter_modifiers = 290, + sym__modifier = 291, + sym_type_modifiers = 292, + sym__type_modifier = 293, + sym_class_modifier = 294, + sym_member_modifier = 295, + sym_visibility_modifier = 296, + sym_variance_modifier = 297, + sym_type_parameter_modifiers = 298, + sym__type_parameter_modifier = 299, + sym_function_modifier = 300, + sym_inheritance_modifier = 301, + sym_parameter_modifier = 302, + sym_platform_modifier = 303, + sym_annotation = 304, + sym__single_annotation = 305, + sym__multi_annotation = 306, + sym_use_site_target = 307, + sym__unescaped_annotation = 308, + sym_simple_identifier = 309, + sym_identifier = 310, + sym__import_identifier = 311, + sym__return_at = 312, + sym__continue_at = 313, + sym__break_at = 314, + sym__this_at = 315, + sym__super_at = 316, + sym_unsigned_literal = 317, + sym_long_literal = 318, + sym_boolean_literal = 319, + sym_character_literal = 320, + sym_character_escape_seq = 321, + sym__lexical_identifier = 322, + sym__uni_character_literal = 323, + aux_sym_source_file_repeat1 = 324, + aux_sym_source_file_repeat2 = 325, + aux_sym_source_file_repeat3 = 326, + aux_sym_file_annotation_repeat1 = 327, + aux_sym_import_list_repeat1 = 328, + aux_sym__class_parameters_repeat1 = 329, + aux_sym__delegation_specifiers_repeat1 = 330, + aux_sym__annotated_delegation_specifier_repeat1 = 331, + aux_sym_type_parameters_repeat1 = 332, + aux_sym_type_constraints_repeat1 = 333, + aux_sym_function_value_parameters_repeat1 = 334, + aux_sym__enum_entries_repeat1 = 335, + aux_sym_nullable_type_repeat1 = 336, + aux_sym_user_type_repeat1 = 337, + aux_sym_type_projection_modifiers_repeat1 = 338, + aux_sym_function_type_parameters_repeat1 = 339, + aux_sym_statements_repeat1 = 340, + aux_sym__statement_repeat1 = 341, + aux_sym_indexing_suffix_repeat1 = 342, + aux_sym_type_arguments_repeat1 = 343, + aux_sym_value_arguments_repeat1 = 344, + aux_sym_string_literal_repeat1 = 345, + aux_sym_multi_variable_declaration_repeat1 = 346, + aux_sym_lambda_parameters_repeat1 = 347, + aux_sym_when_expression_repeat1 = 348, + aux_sym_when_entry_repeat1 = 349, + aux_sym_try_expression_repeat1 = 350, + aux_sym__postfix_unary_expression_repeat1 = 351, + aux_sym_modifiers_repeat1 = 352, + aux_sym_parameter_modifiers_repeat1 = 353, + aux_sym_type_modifiers_repeat1 = 354, + aux_sym_type_parameter_modifiers_repeat1 = 355, + aux_sym_identifier_repeat1 = 356, + alias_sym_interpolated_expression = 357, + alias_sym_interpolated_identifier = 358, + alias_sym_type_identifier = 359, }; static const char * const ts_symbol_names[] = { @@ -551,6 +552,7 @@ static const char * const ts_symbol_names[] = { [sym_primary_constructor] = "primary_constructor", [sym_class_body] = "class_body", [sym__class_parameters] = "_class_parameters", + [sym_binding_pattern_kind] = "binding_pattern_kind", [sym_class_parameter] = "class_parameter", [sym__delegation_specifiers] = "_delegation_specifiers", [sym_delegation_specifier] = "delegation_specifier", @@ -913,6 +915,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_primary_constructor] = sym_primary_constructor, [sym_class_body] = sym_class_body, [sym__class_parameters] = sym__class_parameters, + [sym_binding_pattern_kind] = sym_binding_pattern_kind, [sym_class_parameter] = sym_class_parameter, [sym__delegation_specifiers] = sym__delegation_specifiers, [sym_delegation_specifier] = sym_delegation_specifier, @@ -1773,6 +1776,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_binding_pattern_kind] = { + .visible = true, + .named = true, + }, [sym_class_parameter] = { .visible = true, .named = true, @@ -2600,100 +2607,100 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 3, + [3] = 2, + [4] = 4, [5] = 5, - [6] = 5, - [7] = 3, - [8] = 5, - [9] = 3, - [10] = 5, - [11] = 2, - [12] = 3, - [13] = 5, - [14] = 5, - [15] = 3, - [16] = 5, - [17] = 3, - [18] = 3, - [19] = 5, - [20] = 5, - [21] = 5, - [22] = 5, - [23] = 3, - [24] = 3, - [25] = 5, - [26] = 3, - [27] = 3, - [28] = 5, - [29] = 3, - [30] = 3, - [31] = 5, - [32] = 3, - [33] = 5, - [34] = 5, - [35] = 3, - [36] = 5, - [37] = 3, - [38] = 5, - [39] = 3, - [40] = 3, - [41] = 5, - [42] = 3, - [43] = 5, - [44] = 3, - [45] = 5, - [46] = 5, - [47] = 3, - [48] = 5, - [49] = 3, - [50] = 5, - [51] = 3, + [6] = 4, + [7] = 4, + [8] = 4, + [9] = 4, + [10] = 2, + [11] = 5, + [12] = 2, + [13] = 4, + [14] = 2, + [15] = 2, + [16] = 4, + [17] = 4, + [18] = 4, + [19] = 2, + [20] = 4, + [21] = 2, + [22] = 4, + [23] = 2, + [24] = 4, + [25] = 2, + [26] = 2, + [27] = 2, + [28] = 2, + [29] = 2, + [30] = 4, + [31] = 4, + [32] = 2, + [33] = 4, + [34] = 2, + [35] = 2, + [36] = 4, + [37] = 4, + [38] = 2, + [39] = 4, + [40] = 4, + [41] = 4, + [42] = 2, + [43] = 4, + [44] = 2, + [45] = 4, + [46] = 2, + [47] = 2, + [48] = 4, + [49] = 4, + [50] = 2, + [51] = 2, [52] = 52, [53] = 53, [54] = 54, - [55] = 2, - [56] = 5, - [57] = 3, + [55] = 5, + [56] = 2, + [57] = 4, [58] = 58, [59] = 59, - [60] = 59, + [60] = 60, [61] = 59, - [62] = 62, - [63] = 59, - [64] = 59, - [65] = 59, - [66] = 66, + [62] = 58, + [63] = 58, + [64] = 58, + [65] = 58, + [66] = 59, [67] = 67, - [68] = 58, - [69] = 59, - [70] = 70, + [68] = 68, + [69] = 58, + [70] = 58, [71] = 59, [72] = 58, - [73] = 73, - [74] = 74, + [73] = 58, + [74] = 58, [75] = 59, - [76] = 59, + [76] = 76, [77] = 59, - [78] = 58, - [79] = 59, + [78] = 78, + [79] = 58, [80] = 80, - [81] = 59, - [82] = 58, - [83] = 59, - [84] = 59, + [81] = 58, + [82] = 82, + [83] = 58, + [84] = 58, [85] = 58, - [86] = 2, + [86] = 5, [87] = 87, [88] = 87, [89] = 87, [90] = 87, - [91] = 87, + [91] = 2, [92] = 87, [93] = 87, [94] = 87, [95] = 87, - [96] = 87, + [96] = 4, [97] = 87, [98] = 87, [99] = 87, @@ -2705,230 +2712,230 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [105] = 87, [106] = 87, [107] = 87, - [108] = 5, + [108] = 87, [109] = 87, [110] = 87, [111] = 87, - [112] = 3, + [112] = 87, [113] = 113, [114] = 114, [115] = 115, [116] = 116, [117] = 114, - [118] = 114, + [118] = 113, [119] = 113, - [120] = 116, + [120] = 113, [121] = 115, [122] = 113, - [123] = 115, - [124] = 116, + [123] = 116, + [124] = 113, [125] = 113, - [126] = 114, - [127] = 116, - [128] = 114, + [126] = 113, + [127] = 113, + [128] = 113, [129] = 113, - [130] = 115, - [131] = 115, - [132] = 116, + [130] = 114, + [131] = 116, + [132] = 115, [133] = 115, - [134] = 113, + [134] = 114, [135] = 116, - [136] = 114, - [137] = 116, + [136] = 116, + [137] = 115, [138] = 114, - [139] = 114, - [140] = 113, + [139] = 113, + [140] = 114, [141] = 116, - [142] = 114, + [142] = 115, [143] = 113, - [144] = 116, - [145] = 115, - [146] = 116, - [147] = 113, - [148] = 115, + [144] = 114, + [145] = 116, + [146] = 115, + [147] = 114, + [148] = 116, [149] = 115, - [150] = 113, - [151] = 114, - [152] = 113, - [153] = 116, - [154] = 113, - [155] = 115, - [156] = 115, + [150] = 115, + [151] = 115, + [152] = 5, + [153] = 114, + [154] = 115, + [155] = 116, + [156] = 114, [157] = 116, - [158] = 114, - [159] = 113, - [160] = 115, - [161] = 114, - [162] = 116, - [163] = 116, + [158] = 115, + [159] = 115, + [160] = 114, + [161] = 116, + [162] = 115, + [163] = 114, [164] = 113, - [165] = 115, + [165] = 114, [166] = 116, - [167] = 114, - [168] = 113, + [167] = 115, + [168] = 115, [169] = 116, [170] = 114, [171] = 116, [172] = 114, - [173] = 116, - [174] = 113, - [175] = 115, - [176] = 115, - [177] = 116, - [178] = 116, - [179] = 113, - [180] = 115, + [173] = 115, + [174] = 116, + [175] = 114, + [176] = 113, + [177] = 115, + [178] = 115, + [179] = 116, + [180] = 116, [181] = 114, [182] = 113, [183] = 116, [184] = 115, [185] = 115, - [186] = 114, - [187] = 113, - [188] = 113, - [189] = 115, - [190] = 114, - [191] = 114, - [192] = 115, - [193] = 115, - [194] = 115, - [195] = 115, - [196] = 116, + [186] = 113, + [187] = 116, + [188] = 114, + [189] = 114, + [190] = 113, + [191] = 115, + [192] = 116, + [193] = 114, + [194] = 113, + [195] = 113, + [196] = 115, [197] = 113, - [198] = 115, - [199] = 114, - [200] = 114, - [201] = 113, - [202] = 2, - [203] = 114, - [204] = 115, - [205] = 116, - [206] = 116, - [207] = 113, - [208] = 114, - [209] = 115, - [210] = 113, - [211] = 114, + [198] = 114, + [199] = 113, + [200] = 116, + [201] = 114, + [202] = 113, + [203] = 113, + [204] = 113, + [205] = 113, + [206] = 114, + [207] = 116, + [208] = 116, + [209] = 114, + [210] = 116, + [211] = 113, [212] = 115, [213] = 213, [214] = 214, [215] = 215, - [216] = 216, - [217] = 214, + [216] = 213, + [217] = 217, [218] = 214, [219] = 219, - [220] = 216, + [220] = 219, [221] = 214, - [222] = 214, + [222] = 217, [223] = 223, - [224] = 216, - [225] = 225, - [226] = 226, - [227] = 214, - [228] = 225, - [229] = 215, - [230] = 215, - [231] = 216, - [232] = 215, - [233] = 216, - [234] = 215, - [235] = 215, - [236] = 215, - [237] = 216, - [238] = 214, + [224] = 224, + [225] = 214, + [226] = 219, + [227] = 219, + [228] = 4, + [229] = 229, + [230] = 213, + [231] = 2, + [232] = 219, + [233] = 219, + [234] = 234, + [235] = 219, + [236] = 217, + [237] = 214, + [238] = 238, [239] = 214, - [240] = 240, - [241] = 3, - [242] = 225, - [243] = 225, - [244] = 215, + [240] = 217, + [241] = 213, + [242] = 219, + [243] = 214, + [244] = 244, [245] = 245, [246] = 214, - [247] = 214, - [248] = 248, + [247] = 213, + [248] = 214, [249] = 214, - [250] = 215, - [251] = 225, - [252] = 252, - [253] = 214, - [254] = 254, - [255] = 225, - [256] = 5, + [250] = 217, + [251] = 214, + [252] = 213, + [253] = 217, + [254] = 219, + [255] = 214, + [256] = 256, [257] = 257, [258] = 258, [259] = 259, - [260] = 223, - [261] = 223, - [262] = 223, - [263] = 223, - [264] = 223, - [265] = 223, - [266] = 223, - [267] = 223, - [268] = 223, - [269] = 223, - [270] = 223, + [260] = 258, + [261] = 258, + [262] = 258, + [263] = 258, + [264] = 258, + [265] = 258, + [266] = 258, + [267] = 258, + [268] = 258, + [269] = 258, + [270] = 258, [271] = 271, [272] = 272, [273] = 273, - [274] = 272, - [275] = 275, - [276] = 271, + [274] = 274, + [275] = 271, + [276] = 272, [277] = 277, [278] = 278, - [279] = 278, - [280] = 277, - [281] = 275, - [282] = 273, - [283] = 223, + [279] = 277, + [280] = 274, + [281] = 273, + [282] = 278, + [283] = 258, [284] = 273, - [285] = 273, - [286] = 277, + [285] = 277, + [286] = 274, [287] = 271, - [288] = 275, - [289] = 271, - [290] = 272, - [291] = 278, - [292] = 278, - [293] = 275, - [294] = 272, - [295] = 277, - [296] = 223, - [297] = 223, - [298] = 223, - [299] = 275, - [300] = 277, - [301] = 277, - [302] = 275, - [303] = 273, - [304] = 272, - [305] = 271, - [306] = 278, - [307] = 223, - [308] = 278, - [309] = 223, - [310] = 273, - [311] = 272, - [312] = 271, - [313] = 223, - [314] = 271, - [315] = 278, + [288] = 274, + [289] = 273, + [290] = 278, + [291] = 272, + [292] = 272, + [293] = 278, + [294] = 277, + [295] = 271, + [296] = 258, + [297] = 258, + [298] = 258, + [299] = 258, + [300] = 271, + [301] = 278, + [302] = 272, + [303] = 278, + [304] = 273, + [305] = 273, + [306] = 272, + [307] = 277, + [308] = 274, + [309] = 258, + [310] = 271, + [311] = 277, + [312] = 274, + [313] = 258, + [314] = 278, + [315] = 272, [316] = 272, - [317] = 275, + [317] = 277, [318] = 271, - [319] = 272, - [320] = 275, - [321] = 273, - [322] = 278, + [319] = 271, + [320] = 273, + [321] = 274, + [322] = 272, [323] = 273, - [324] = 278, - [325] = 271, - [326] = 272, - [327] = 277, - [328] = 273, - [329] = 275, + [324] = 274, + [325] = 278, + [326] = 273, + [327] = 274, + [328] = 277, + [329] = 271, [330] = 277, - [331] = 277, + [331] = 278, [332] = 332, [333] = 332, [334] = 332, @@ -2953,12 +2960,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [353] = 332, [354] = 332, [355] = 332, - [356] = 223, - [357] = 223, - [358] = 223, - [359] = 359, + [356] = 258, + [357] = 258, + [358] = 258, + [359] = 258, [360] = 360, - [361] = 223, + [361] = 361, [362] = 362, [363] = 363, [364] = 364, @@ -2966,449 +2973,449 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [366] = 366, [367] = 367, [368] = 368, - [369] = 369, + [369] = 258, [370] = 370, [371] = 371, [372] = 372, [373] = 373, [374] = 374, [375] = 375, - [376] = 223, + [376] = 376, [377] = 377, [378] = 378, [379] = 379, - [380] = 360, - [381] = 381, + [380] = 380, + [381] = 361, [382] = 382, - [383] = 366, - [384] = 384, - [385] = 372, - [386] = 365, - [387] = 368, - [388] = 364, - [389] = 370, - [390] = 379, - [391] = 367, - [392] = 392, - [393] = 369, - [394] = 382, - [395] = 362, - [396] = 363, - [397] = 378, - [398] = 371, - [399] = 392, - [400] = 375, - [401] = 381, - [402] = 359, - [403] = 373, - [404] = 374, - [405] = 384, - [406] = 392, - [407] = 381, - [408] = 382, - [409] = 381, + [383] = 383, + [384] = 370, + [385] = 382, + [386] = 362, + [387] = 373, + [388] = 377, + [389] = 372, + [390] = 390, + [391] = 366, + [392] = 374, + [393] = 368, + [394] = 378, + [395] = 375, + [396] = 367, + [397] = 379, + [398] = 363, + [399] = 383, + [400] = 376, + [401] = 380, + [402] = 390, + [403] = 371, + [404] = 360, + [405] = 364, + [406] = 380, + [407] = 407, + [408] = 383, + [409] = 409, [410] = 410, - [411] = 384, + [411] = 410, [412] = 412, - [413] = 384, - [414] = 414, - [415] = 415, - [416] = 392, - [417] = 382, - [418] = 412, - [419] = 410, - [420] = 415, - [421] = 414, - [422] = 422, - [423] = 423, - [424] = 410, - [425] = 415, + [413] = 383, + [414] = 409, + [415] = 407, + [416] = 382, + [417] = 412, + [418] = 382, + [419] = 390, + [420] = 390, + [421] = 380, + [422] = 412, + [423] = 409, + [424] = 409, + [425] = 425, [426] = 426, - [427] = 423, - [428] = 428, - [429] = 412, + [427] = 427, + [428] = 407, + [429] = 429, [430] = 430, - [431] = 430, - [432] = 414, - [433] = 414, - [434] = 426, - [435] = 410, - [436] = 422, - [437] = 412, - [438] = 428, - [439] = 415, + [431] = 407, + [432] = 410, + [433] = 427, + [434] = 429, + [435] = 412, + [436] = 430, + [437] = 410, + [438] = 426, + [439] = 425, [440] = 440, [441] = 430, [442] = 442, [443] = 442, - [444] = 426, - [445] = 422, - [446] = 423, - [447] = 440, + [444] = 444, + [445] = 430, + [446] = 429, + [447] = 427, [448] = 448, - [449] = 449, - [450] = 449, - [451] = 428, - [452] = 448, - [453] = 453, - [454] = 428, - [455] = 453, - [456] = 426, - [457] = 422, - [458] = 430, - [459] = 423, - [460] = 367, - [461] = 379, - [462] = 374, - [463] = 369, - [464] = 360, - [465] = 359, - [466] = 375, - [467] = 373, - [468] = 370, - [469] = 371, - [470] = 368, - [471] = 366, - [472] = 377, - [473] = 372, - [474] = 363, - [475] = 362, - [476] = 364, - [477] = 378, - [478] = 365, + [449] = 429, + [450] = 450, + [451] = 426, + [452] = 425, + [453] = 450, + [454] = 448, + [455] = 440, + [456] = 427, + [457] = 444, + [458] = 425, + [459] = 426, + [460] = 372, + [461] = 360, + [462] = 363, + [463] = 368, + [464] = 364, + [465] = 379, + [466] = 371, + [467] = 378, + [468] = 366, + [469] = 361, + [470] = 367, + [471] = 365, + [472] = 370, + [473] = 377, + [474] = 374, + [475] = 373, + [476] = 375, + [477] = 362, + [478] = 376, [479] = 479, [480] = 480, - [481] = 479, - [482] = 482, + [481] = 448, + [482] = 444, [483] = 483, [484] = 484, - [485] = 453, - [486] = 486, + [485] = 485, + [486] = 484, [487] = 487, - [488] = 488, + [488] = 487, [489] = 489, [490] = 490, [491] = 491, - [492] = 492, + [492] = 440, [493] = 493, - [494] = 493, - [495] = 491, - [496] = 490, - [497] = 489, - [498] = 487, - [499] = 488, - [500] = 486, - [501] = 484, - [502] = 483, - [503] = 442, - [504] = 440, - [505] = 449, + [494] = 479, + [495] = 489, + [496] = 496, + [497] = 480, + [498] = 498, + [499] = 442, + [500] = 485, + [501] = 490, + [502] = 440, + [503] = 450, + [504] = 444, + [505] = 505, [506] = 448, - [507] = 453, - [508] = 449, - [509] = 440, + [507] = 498, + [508] = 483, + [509] = 491, [510] = 442, - [511] = 511, - [512] = 480, - [513] = 448, - [514] = 511, - [515] = 482, - [516] = 492, - [517] = 374, - [518] = 384, + [511] = 496, + [512] = 512, + [513] = 450, + [514] = 512, + [515] = 505, + [516] = 493, + [517] = 379, + [518] = 378, [519] = 375, - [520] = 369, - [521] = 359, - [522] = 392, - [523] = 373, - [524] = 370, + [520] = 382, + [521] = 373, + [522] = 360, + [523] = 372, + [524] = 361, [525] = 371, - [526] = 364, - [527] = 365, - [528] = 366, - [529] = 367, - [530] = 368, - [531] = 363, - [532] = 362, - [533] = 372, - [534] = 360, - [535] = 378, - [536] = 379, - [537] = 392, - [538] = 384, - [539] = 381, + [526] = 370, + [527] = 390, + [528] = 374, + [529] = 383, + [530] = 376, + [531] = 368, + [532] = 367, + [533] = 364, + [534] = 362, + [535] = 380, + [536] = 377, + [537] = 363, + [538] = 390, + [539] = 380, [540] = 382, - [541] = 381, - [542] = 382, - [543] = 488, - [544] = 382, - [545] = 483, - [546] = 484, - [547] = 430, - [548] = 486, - [549] = 511, - [550] = 487, - [551] = 489, - [552] = 480, - [553] = 482, - [554] = 415, - [555] = 488, - [556] = 412, - [557] = 428, - [558] = 410, - [559] = 479, - [560] = 422, - [561] = 492, - [562] = 414, - [563] = 423, - [564] = 493, - [565] = 426, - [566] = 430, - [567] = 491, - [568] = 422, - [569] = 415, - [570] = 412, - [571] = 428, - [572] = 490, - [573] = 410, - [574] = 480, - [575] = 479, - [576] = 489, - [577] = 487, - [578] = 482, - [579] = 486, - [580] = 490, - [581] = 414, - [582] = 484, - [583] = 483, - [584] = 426, - [585] = 382, - [586] = 511, - [587] = 392, - [588] = 423, - [589] = 381, - [590] = 384, - [591] = 381, - [592] = 384, - [593] = 392, - [594] = 492, - [595] = 491, - [596] = 493, - [597] = 442, - [598] = 422, - [599] = 422, - [600] = 412, - [601] = 414, - [602] = 410, - [603] = 414, - [604] = 410, - [605] = 412, - [606] = 428, - [607] = 423, - [608] = 415, - [609] = 423, - [610] = 415, - [611] = 428, - [612] = 426, + [541] = 366, + [542] = 383, + [543] = 505, + [544] = 487, + [545] = 484, + [546] = 487, + [547] = 489, + [548] = 490, + [549] = 491, + [550] = 427, + [551] = 407, + [552] = 382, + [553] = 493, + [554] = 380, + [555] = 430, + [556] = 479, + [557] = 496, + [558] = 480, + [559] = 425, + [560] = 498, + [561] = 426, + [562] = 382, + [563] = 390, + [564] = 380, + [565] = 429, + [566] = 412, + [567] = 410, + [568] = 383, + [569] = 383, + [570] = 429, + [571] = 409, + [572] = 412, + [573] = 512, + [574] = 485, + [575] = 427, + [576] = 480, + [577] = 409, + [578] = 496, + [579] = 390, + [580] = 479, + [581] = 493, + [582] = 491, + [583] = 490, + [584] = 489, + [585] = 430, + [586] = 484, + [587] = 483, + [588] = 498, + [589] = 426, + [590] = 485, + [591] = 483, + [592] = 407, + [593] = 425, + [594] = 410, + [595] = 512, + [596] = 505, + [597] = 412, + [598] = 448, + [599] = 410, + [600] = 409, + [601] = 425, + [602] = 429, + [603] = 442, + [604] = 444, + [605] = 410, + [606] = 407, + [607] = 442, + [608] = 429, + [609] = 430, + [610] = 426, + [611] = 440, + [612] = 440, [613] = 426, - [614] = 440, - [615] = 453, - [616] = 449, + [614] = 409, + [615] = 425, + [616] = 450, [617] = 430, [618] = 448, - [619] = 440, - [620] = 453, - [621] = 442, - [622] = 430, - [623] = 449, - [624] = 448, - [625] = 275, - [626] = 277, - [627] = 271, - [628] = 275, - [629] = 272, - [630] = 273, - [631] = 273, - [632] = 272, - [633] = 271, + [619] = 444, + [620] = 407, + [621] = 412, + [622] = 427, + [623] = 427, + [624] = 450, + [625] = 277, + [626] = 273, + [627] = 277, + [628] = 271, + [629] = 274, + [630] = 274, + [631] = 271, + [632] = 273, + [633] = 272, [634] = 278, - [635] = 278, - [636] = 277, - [637] = 449, + [635] = 272, + [636] = 278, + [637] = 444, [638] = 440, - [639] = 453, - [640] = 453, - [641] = 448, + [639] = 448, + [640] = 442, + [641] = 440, [642] = 442, - [643] = 442, - [644] = 448, - [645] = 449, - [646] = 440, - [647] = 492, - [648] = 483, - [649] = 479, - [650] = 483, - [651] = 484, - [652] = 486, + [643] = 450, + [644] = 450, + [645] = 448, + [646] = 444, + [647] = 491, + [648] = 496, + [649] = 485, + [650] = 498, + [651] = 493, + [652] = 485, [653] = 487, - [654] = 489, - [655] = 490, - [656] = 511, - [657] = 480, - [658] = 482, - [659] = 488, - [660] = 493, - [661] = 491, - [662] = 490, - [663] = 479, - [664] = 491, + [654] = 479, + [655] = 483, + [656] = 493, + [657] = 496, + [658] = 512, + [659] = 479, + [660] = 491, + [661] = 505, + [662] = 484, + [663] = 484, + [664] = 480, [665] = 489, - [666] = 493, - [667] = 492, - [668] = 488, - [669] = 482, - [670] = 480, - [671] = 487, - [672] = 511, - [673] = 486, - [674] = 484, + [666] = 498, + [667] = 490, + [668] = 487, + [669] = 505, + [670] = 483, + [671] = 490, + [672] = 512, + [673] = 489, + [674] = 480, [675] = 675, - [676] = 676, - [677] = 278, - [678] = 676, - [679] = 679, - [680] = 679, - [681] = 676, - [682] = 679, + [676] = 277, + [677] = 272, + [678] = 678, + [679] = 274, + [680] = 278, + [681] = 271, + [682] = 682, [683] = 675, - [684] = 676, - [685] = 685, - [686] = 686, - [687] = 679, - [688] = 686, - [689] = 686, - [690] = 676, - [691] = 679, - [692] = 675, - [693] = 675, + [684] = 682, + [685] = 682, + [686] = 682, + [687] = 675, + [688] = 688, + [689] = 675, + [690] = 678, + [691] = 678, + [692] = 688, + [693] = 688, [694] = 675, - [695] = 686, - [696] = 686, - [697] = 679, - [698] = 676, - [699] = 271, - [700] = 675, - [701] = 277, - [702] = 275, - [703] = 277, - [704] = 271, - [705] = 275, - [706] = 273, - [707] = 272, - [708] = 272, - [709] = 686, - [710] = 273, - [711] = 278, - [712] = 278, - [713] = 479, - [714] = 273, - [715] = 272, - [716] = 271, - [717] = 278, - [718] = 490, - [719] = 493, - [720] = 491, - [721] = 491, - [722] = 493, - [723] = 482, - [724] = 487, - [725] = 480, - [726] = 492, - [727] = 490, - [728] = 488, - [729] = 482, - [730] = 487, - [731] = 486, - [732] = 489, + [695] = 272, + [696] = 278, + [697] = 682, + [698] = 273, + [699] = 273, + [700] = 678, + [701] = 682, + [702] = 678, + [703] = 688, + [704] = 688, + [705] = 705, + [706] = 678, + [707] = 688, + [708] = 675, + [709] = 277, + [710] = 274, + [711] = 271, + [712] = 489, + [713] = 483, + [714] = 271, + [715] = 490, + [716] = 491, + [717] = 496, + [718] = 493, + [719] = 489, + [720] = 479, + [721] = 271, + [722] = 487, + [723] = 496, + [724] = 480, + [725] = 484, + [726] = 498, + [727] = 485, + [728] = 483, + [729] = 512, + [730] = 505, + [731] = 487, + [732] = 485, [733] = 480, - [734] = 511, - [735] = 484, - [736] = 483, - [737] = 489, - [738] = 277, - [739] = 486, - [740] = 511, - [741] = 484, - [742] = 483, - [743] = 488, - [744] = 492, - [745] = 275, - [746] = 277, - [747] = 271, - [748] = 272, - [749] = 479, - [750] = 273, - [751] = 275, - [752] = 752, - [753] = 752, - [754] = 277, - [755] = 752, - [756] = 275, - [757] = 752, - [758] = 752, - [759] = 275, - [760] = 273, - [761] = 752, + [734] = 272, + [735] = 274, + [736] = 273, + [737] = 484, + [738] = 278, + [739] = 490, + [740] = 498, + [741] = 272, + [742] = 491, + [743] = 493, + [744] = 512, + [745] = 505, + [746] = 278, + [747] = 479, + [748] = 273, + [749] = 274, + [750] = 277, + [751] = 277, + [752] = 277, + [753] = 274, + [754] = 754, + [755] = 273, + [756] = 754, + [757] = 757, + [758] = 754, + [759] = 754, + [760] = 272, + [761] = 761, [762] = 762, - [763] = 752, - [764] = 752, - [765] = 752, - [766] = 752, - [767] = 767, - [768] = 272, - [769] = 769, - [770] = 752, - [771] = 752, - [772] = 277, - [773] = 752, - [774] = 271, - [775] = 278, - [776] = 752, - [777] = 752, - [778] = 752, - [779] = 769, - [780] = 752, - [781] = 752, - [782] = 782, - [783] = 752, - [784] = 752, - [785] = 752, - [786] = 752, - [787] = 767, - [788] = 752, - [789] = 752, - [790] = 273, - [791] = 791, - [792] = 782, - [793] = 278, - [794] = 272, - [795] = 752, - [796] = 752, - [797] = 271, - [798] = 752, - [799] = 277, - [800] = 273, - [801] = 272, - [802] = 277, - [803] = 278, + [763] = 763, + [764] = 754, + [765] = 762, + [766] = 761, + [767] = 754, + [768] = 271, + [769] = 274, + [770] = 754, + [771] = 278, + [772] = 754, + [773] = 754, + [774] = 754, + [775] = 754, + [776] = 754, + [777] = 754, + [778] = 754, + [779] = 754, + [780] = 754, + [781] = 754, + [782] = 754, + [783] = 754, + [784] = 273, + [785] = 278, + [786] = 272, + [787] = 754, + [788] = 754, + [789] = 271, + [790] = 754, + [791] = 277, + [792] = 763, + [793] = 754, + [794] = 794, + [795] = 754, + [796] = 754, + [797] = 754, + [798] = 754, + [799] = 273, + [800] = 278, + [801] = 277, + [802] = 802, + [803] = 271, [804] = 271, - [805] = 271, - [806] = 806, - [807] = 272, - [808] = 273, - [809] = 275, - [810] = 278, - [811] = 275, + [805] = 274, + [806] = 272, + [807] = 273, + [808] = 274, + [809] = 278, + [810] = 277, + [811] = 272, [812] = 812, [813] = 813, [814] = 814, @@ -3426,13 +3433,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [826] = 826, [827] = 827, [828] = 828, - [829] = 822, + [829] = 829, [830] = 830, - [831] = 831, + [831] = 821, [832] = 832, - [833] = 825, - [834] = 834, - [835] = 835, + [833] = 813, + [834] = 814, + [835] = 816, [836] = 836, [837] = 837, [838] = 838, @@ -3440,116 +3447,116 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [840] = 840, [841] = 841, [842] = 842, - [843] = 843, + [843] = 825, [844] = 844, [845] = 845, [846] = 846, [847] = 847, [848] = 848, - [849] = 812, + [849] = 849, [850] = 850, [851] = 851, [852] = 852, [853] = 853, - [854] = 819, + [854] = 854, [855] = 855, [856] = 856, [857] = 857, [858] = 858, - [859] = 815, + [859] = 859, [860] = 860, - [861] = 817, - [862] = 862, - [863] = 272, + [861] = 815, + [862] = 857, + [863] = 273, [864] = 864, [865] = 865, - [866] = 840, - [867] = 812, - [868] = 843, + [866] = 842, + [867] = 867, + [868] = 868, [869] = 869, - [870] = 870, - [871] = 813, - [872] = 872, - [873] = 842, - [874] = 841, - [875] = 837, - [876] = 826, - [877] = 877, - [878] = 878, + [870] = 274, + [871] = 836, + [872] = 827, + [873] = 873, + [874] = 874, + [875] = 875, + [876] = 876, + [877] = 271, + [878] = 277, [879] = 879, - [880] = 880, - [881] = 881, - [882] = 882, + [880] = 820, + [881] = 849, + [882] = 853, [883] = 883, [884] = 884, - [885] = 885, - [886] = 834, + [885] = 278, + [886] = 886, [887] = 887, - [888] = 278, - [889] = 846, - [890] = 271, + [888] = 844, + [889] = 889, + [890] = 272, [891] = 891, - [892] = 892, + [892] = 859, [893] = 893, [894] = 894, - [895] = 273, - [896] = 896, - [897] = 897, - [898] = 898, + [895] = 895, + [896] = 815, + [897] = 854, + [898] = 828, [899] = 899, - [900] = 900, - [901] = 275, - [902] = 851, + [900] = 839, + [901] = 901, + [902] = 902, [903] = 903, - [904] = 835, + [904] = 904, [905] = 905, - [906] = 906, - [907] = 839, - [908] = 908, - [909] = 277, + [906] = 272, + [907] = 278, + [908] = 273, + [909] = 274, [910] = 910, - [911] = 911, - [912] = 278, - [913] = 271, - [914] = 272, - [915] = 273, - [916] = 275, - [917] = 277, + [911] = 271, + [912] = 277, + [913] = 913, + [914] = 860, + [915] = 915, + [916] = 916, + [917] = 917, [918] = 918, - [919] = 857, + [919] = 852, [920] = 920, [921] = 921, - [922] = 838, + [922] = 922, [923] = 923, [924] = 924, [925] = 925, - [926] = 926, - [927] = 370, + [926] = 368, + [927] = 927, [928] = 928, [929] = 929, [930] = 930, - [931] = 931, + [931] = 846, [932] = 932, [933] = 933, [934] = 934, [935] = 935, [936] = 936, - [937] = 375, + [937] = 937, [938] = 938, [939] = 939, [940] = 940, - [941] = 941, - [942] = 942, + [941] = 272, + [942] = 278, [943] = 943, [944] = 944, [945] = 945, [946] = 946, - [947] = 931, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, + [947] = 273, + [948] = 274, + [949] = 271, + [950] = 850, + [951] = 277, + [952] = 934, [953] = 953, [954] = 954, [955] = 955, @@ -3561,92 +3568,92 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [961] = 961, [962] = 962, [963] = 963, - [964] = 848, + [964] = 964, [965] = 965, [966] = 966, [967] = 967, [968] = 968, - [969] = 360, - [970] = 362, - [971] = 363, + [969] = 969, + [970] = 970, + [971] = 971, [972] = 972, - [973] = 973, - [974] = 359, - [975] = 378, - [976] = 371, - [977] = 278, + [973] = 365, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 977, [978] = 978, [979] = 979, - [980] = 271, - [981] = 981, - [982] = 377, + [980] = 980, + [981] = 838, + [982] = 982, [983] = 983, - [984] = 272, + [984] = 984, [985] = 985, - [986] = 986, + [986] = 374, [987] = 987, [988] = 988, - [989] = 278, - [990] = 273, - [991] = 858, - [992] = 827, - [993] = 275, + [989] = 367, + [990] = 990, + [991] = 372, + [992] = 377, + [993] = 277, [994] = 271, - [995] = 272, - [996] = 273, - [997] = 364, - [998] = 365, - [999] = 275, - [1000] = 277, - [1001] = 277, - [1002] = 366, - [1003] = 367, - [1004] = 368, - [1005] = 372, - [1006] = 379, - [1007] = 1007, - [1008] = 1008, + [995] = 273, + [996] = 278, + [997] = 366, + [998] = 378, + [999] = 272, + [1000] = 362, + [1001] = 364, + [1002] = 379, + [1003] = 1003, + [1004] = 371, + [1005] = 361, + [1006] = 274, + [1007] = 376, + [1008] = 370, [1009] = 1009, - [1010] = 374, - [1011] = 373, - [1012] = 1012, + [1010] = 360, + [1011] = 375, + [1012] = 373, [1013] = 1013, [1014] = 1014, [1015] = 1015, [1016] = 1016, - [1017] = 278, - [1018] = 271, - [1019] = 278, - [1020] = 828, - [1021] = 878, - [1022] = 271, + [1017] = 1017, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, + [1021] = 851, + [1022] = 865, [1023] = 1023, - [1024] = 272, - [1025] = 273, - [1026] = 275, - [1027] = 277, - [1028] = 1028, - [1029] = 272, - [1030] = 896, - [1031] = 273, - [1032] = 830, + [1024] = 875, + [1025] = 1025, + [1026] = 277, + [1027] = 1027, + [1028] = 271, + [1029] = 1029, + [1030] = 1030, + [1031] = 274, + [1032] = 273, [1033] = 1033, [1034] = 1034, - [1035] = 898, - [1036] = 1036, - [1037] = 275, - [1038] = 1038, - [1039] = 899, + [1035] = 278, + [1036] = 841, + [1037] = 1037, + [1038] = 837, + [1039] = 1039, [1040] = 1040, - [1041] = 865, + [1041] = 841, [1042] = 1042, - [1043] = 1043, - [1044] = 903, - [1045] = 881, - [1046] = 905, + [1043] = 924, + [1044] = 837, + [1045] = 272, + [1046] = 1046, [1047] = 1047, [1048] = 1048, - [1049] = 277, + [1049] = 1049, [1050] = 1050, [1051] = 1051, [1052] = 1052, @@ -3660,18 +3667,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 1063, - [1064] = 1064, + [1063] = 1061, + [1064] = 1062, [1065] = 1065, [1066] = 1066, [1067] = 1067, [1068] = 1068, - [1069] = 831, + [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1060, + [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, @@ -3679,28 +3686,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1079] = 1079, [1080] = 1080, [1081] = 1081, - [1082] = 908, + [1082] = 1082, [1083] = 1083, - [1084] = 910, + [1084] = 1084, [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 872, - [1089] = 869, + [1088] = 1088, + [1089] = 1089, [1090] = 1090, [1091] = 1091, [1092] = 1092, [1093] = 1093, - [1094] = 893, - [1095] = 1065, - [1096] = 891, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, [1097] = 1097, [1098] = 1098, [1099] = 1099, [1100] = 1100, [1101] = 1101, [1102] = 1102, - [1103] = 1103, + [1103] = 903, [1104] = 1104, [1105] = 1105, [1106] = 1106, @@ -3711,39 +3718,39 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1111] = 1111, [1112] = 1112, [1113] = 1113, - [1114] = 1114, - [1115] = 1115, + [1114] = 922, + [1115] = 867, [1116] = 1116, [1117] = 1117, [1118] = 1118, - [1119] = 1119, + [1119] = 915, [1120] = 1120, - [1121] = 1121, + [1121] = 916, [1122] = 1122, [1123] = 1123, [1124] = 1124, - [1125] = 1125, + [1125] = 925, [1126] = 1126, [1127] = 1127, - [1128] = 1128, + [1128] = 886, [1129] = 1129, [1130] = 1130, [1131] = 1131, [1132] = 1132, [1133] = 1133, [1134] = 1134, - [1135] = 830, - [1136] = 1136, - [1137] = 1137, - [1138] = 1138, - [1139] = 1139, + [1135] = 1135, + [1136] = 899, + [1137] = 918, + [1138] = 873, + [1139] = 913, [1140] = 1140, - [1141] = 1141, - [1142] = 1142, - [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 831, + [1141] = 272, + [1142] = 278, + [1143] = 273, + [1144] = 274, + [1145] = 271, + [1146] = 277, [1147] = 1147, [1148] = 1148, [1149] = 1149, @@ -3753,12 +3760,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1153] = 1153, [1154] = 1154, [1155] = 1155, - [1156] = 830, + [1156] = 837, [1157] = 1157, - [1158] = 831, - [1159] = 830, + [1158] = 841, + [1159] = 1159, [1160] = 1160, - [1161] = 831, + [1161] = 1161, [1162] = 1162, [1163] = 1163, [1164] = 1164, @@ -3769,8 +3776,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1169] = 1169, [1170] = 1170, [1171] = 1171, - [1172] = 1172, - [1173] = 1173, + [1172] = 837, + [1173] = 841, [1174] = 1174, [1175] = 1175, [1176] = 1176, @@ -3784,4705 +3791,4705 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1184] = 1184, [1185] = 1185, [1186] = 1186, - [1187] = 271, - [1188] = 379, - [1189] = 272, - [1190] = 359, - [1191] = 378, - [1192] = 378, - [1193] = 360, - [1194] = 277, - [1195] = 362, - [1196] = 371, - [1197] = 360, - [1198] = 363, - [1199] = 375, - [1200] = 374, - [1201] = 369, - [1202] = 373, - [1203] = 275, - [1204] = 370, - [1205] = 364, - [1206] = 377, - [1207] = 365, - [1208] = 366, - [1209] = 367, - [1210] = 368, - [1211] = 831, - [1212] = 830, - [1213] = 374, - [1214] = 372, - [1215] = 362, - [1216] = 363, - [1217] = 379, - [1218] = 371, + [1187] = 375, + [1188] = 361, + [1189] = 371, + [1190] = 372, + [1191] = 374, + [1192] = 373, + [1193] = 377, + [1194] = 366, + [1195] = 375, + [1196] = 378, + [1197] = 368, + [1198] = 821, + [1199] = 362, + [1200] = 364, + [1201] = 379, + [1202] = 371, + [1203] = 361, + [1204] = 813, + [1205] = 814, + [1206] = 278, + [1207] = 367, + [1208] = 363, + [1209] = 816, + [1210] = 837, + [1211] = 841, + [1212] = 272, + [1213] = 376, + [1214] = 379, + [1215] = 364, + [1216] = 273, + [1217] = 362, + [1218] = 368, [1219] = 370, - [1220] = 364, - [1221] = 359, - [1222] = 365, - [1223] = 366, - [1224] = 375, - [1225] = 278, - [1226] = 822, - [1227] = 817, - [1228] = 815, - [1229] = 273, - [1230] = 367, - [1231] = 368, - [1232] = 825, + [1220] = 378, + [1221] = 360, + [1222] = 366, + [1223] = 377, + [1224] = 374, + [1225] = 277, + [1226] = 274, + [1227] = 372, + [1228] = 367, + [1229] = 370, + [1230] = 825, + [1231] = 376, + [1232] = 271, [1233] = 373, - [1234] = 372, - [1235] = 819, - [1236] = 1236, - [1237] = 825, - [1238] = 837, - [1239] = 835, - [1240] = 834, - [1241] = 831, - [1242] = 822, - [1243] = 1236, - [1244] = 819, - [1245] = 815, - [1246] = 1236, - [1247] = 1236, - [1248] = 838, - [1249] = 839, - [1250] = 1066, - [1251] = 1131, - [1252] = 1070, - [1253] = 271, - [1254] = 1236, - [1255] = 827, - [1256] = 1034, - [1257] = 1236, - [1258] = 858, - [1259] = 1236, - [1260] = 830, - [1261] = 831, - [1262] = 277, - [1263] = 275, - [1264] = 1236, - [1265] = 1236, - [1266] = 1236, - [1267] = 830, - [1268] = 1236, - [1269] = 1236, - [1270] = 273, - [1271] = 831, - [1272] = 1036, - [1273] = 1236, - [1274] = 848, - [1275] = 1236, - [1276] = 831, - [1277] = 1236, - [1278] = 830, - [1279] = 1038, - [1280] = 1236, - [1281] = 1236, - [1282] = 1236, - [1283] = 1236, - [1284] = 1236, - [1285] = 817, - [1286] = 830, - [1287] = 1236, - [1288] = 272, - [1289] = 1236, - [1290] = 1236, - [1291] = 278, - [1292] = 1236, - [1293] = 1293, - [1294] = 1293, - [1295] = 1293, + [1234] = 360, + [1235] = 365, + [1236] = 854, + [1237] = 1237, + [1238] = 821, + [1239] = 1237, + [1240] = 844, + [1241] = 1237, + [1242] = 278, + [1243] = 1237, + [1244] = 1237, + [1245] = 1237, + [1246] = 1237, + [1247] = 1237, + [1248] = 1237, + [1249] = 1237, + [1250] = 1051, + [1251] = 1049, + [1252] = 837, + [1253] = 841, + [1254] = 1237, + [1255] = 271, + [1256] = 1048, + [1257] = 1047, + [1258] = 1237, + [1259] = 1237, + [1260] = 825, + [1261] = 837, + [1262] = 841, + [1263] = 277, + [1264] = 842, + [1265] = 813, + [1266] = 850, + [1267] = 1237, + [1268] = 837, + [1269] = 836, + [1270] = 841, + [1271] = 272, + [1272] = 1237, + [1273] = 853, + [1274] = 274, + [1275] = 1237, + [1276] = 1237, + [1277] = 1237, + [1278] = 1237, + [1279] = 814, + [1280] = 837, + [1281] = 841, + [1282] = 1237, + [1283] = 1237, + [1284] = 1237, + [1285] = 816, + [1286] = 1053, + [1287] = 838, + [1288] = 273, + [1289] = 846, + [1290] = 1237, + [1291] = 1237, + [1292] = 1052, + [1293] = 383, + [1294] = 844, + [1295] = 903, [1296] = 1296, - [1297] = 835, - [1298] = 869, - [1299] = 830, - [1300] = 831, - [1301] = 872, - [1302] = 834, - [1303] = 910, - [1304] = 908, - [1305] = 905, - [1306] = 903, - [1307] = 899, - [1308] = 898, - [1309] = 896, - [1310] = 1310, - [1311] = 1311, - [1312] = 382, - [1313] = 381, - [1314] = 1310, - [1315] = 384, - [1316] = 392, - [1317] = 1311, - [1318] = 384, - [1319] = 837, - [1320] = 381, - [1321] = 382, - [1322] = 826, - [1323] = 841, - [1324] = 842, - [1325] = 843, - [1326] = 840, - [1327] = 846, - [1328] = 1293, - [1329] = 1293, - [1330] = 1311, - [1331] = 1310, - [1332] = 1293, - [1333] = 1311, - [1334] = 1310, - [1335] = 392, - [1336] = 1311, - [1337] = 1310, - [1338] = 1293, - [1339] = 851, - [1340] = 1311, - [1341] = 1310, - [1342] = 1293, - [1343] = 857, - [1344] = 1311, - [1345] = 1310, - [1346] = 1293, - [1347] = 838, - [1348] = 1310, - [1349] = 1311, - [1350] = 1293, - [1351] = 1310, - [1352] = 1311, - [1353] = 1310, - [1354] = 1311, - [1355] = 1310, - [1356] = 1311, - [1357] = 1293, - [1358] = 1310, - [1359] = 1311, - [1360] = 893, - [1361] = 1310, - [1362] = 1311, - [1363] = 1293, - [1364] = 1310, - [1365] = 1311, - [1366] = 1293, - [1367] = 1310, - [1368] = 1311, - [1369] = 1293, - [1370] = 1310, - [1371] = 1311, - [1372] = 1293, - [1373] = 1310, - [1374] = 1311, - [1375] = 1293, - [1376] = 1310, - [1377] = 1311, - [1378] = 839, - [1379] = 1293, - [1380] = 1310, - [1381] = 1311, - [1382] = 1293, - [1383] = 378, - [1384] = 865, - [1385] = 371, - [1386] = 1386, - [1387] = 878, - [1388] = 375, - [1389] = 374, - [1390] = 373, - [1391] = 370, - [1392] = 364, - [1393] = 365, - [1394] = 366, - [1395] = 367, - [1396] = 368, - [1397] = 372, - [1398] = 379, - [1399] = 415, - [1400] = 851, - [1401] = 412, - [1402] = 410, - [1403] = 846, - [1404] = 1404, - [1405] = 369, - [1406] = 414, - [1407] = 858, - [1408] = 848, - [1409] = 920, - [1410] = 827, - [1411] = 363, - [1412] = 377, - [1413] = 1413, - [1414] = 414, - [1415] = 362, - [1416] = 360, - [1417] = 826, - [1418] = 410, - [1419] = 857, - [1420] = 412, - [1421] = 359, - [1422] = 841, - [1423] = 415, - [1424] = 842, - [1425] = 840, - [1426] = 843, + [1297] = 839, + [1298] = 849, + [1299] = 860, + [1300] = 859, + [1301] = 1296, + [1302] = 1302, + [1303] = 852, + [1304] = 380, + [1305] = 853, + [1306] = 922, + [1307] = 836, + [1308] = 837, + [1309] = 924, + [1310] = 1302, + [1311] = 382, + [1312] = 1312, + [1313] = 827, + [1314] = 382, + [1315] = 1312, + [1316] = 857, + [1317] = 390, + [1318] = 915, + [1319] = 380, + [1320] = 1312, + [1321] = 1302, + [1322] = 1296, + [1323] = 1312, + [1324] = 1296, + [1325] = 1312, + [1326] = 1302, + [1327] = 916, + [1328] = 1312, + [1329] = 1312, + [1330] = 925, + [1331] = 1296, + [1332] = 886, + [1333] = 1302, + [1334] = 1302, + [1335] = 841, + [1336] = 899, + [1337] = 918, + [1338] = 383, + [1339] = 913, + [1340] = 1302, + [1341] = 1312, + [1342] = 1302, + [1343] = 854, + [1344] = 1296, + [1345] = 1312, + [1346] = 1302, + [1347] = 1296, + [1348] = 1312, + [1349] = 1302, + [1350] = 1312, + [1351] = 1302, + [1352] = 1296, + [1353] = 1302, + [1354] = 1296, + [1355] = 390, + [1356] = 1312, + [1357] = 1302, + [1358] = 1296, + [1359] = 1359, + [1360] = 828, + [1361] = 1312, + [1362] = 1302, + [1363] = 1296, + [1364] = 1312, + [1365] = 1312, + [1366] = 1302, + [1367] = 1296, + [1368] = 1312, + [1369] = 1296, + [1370] = 1302, + [1371] = 1296, + [1372] = 1296, + [1373] = 1302, + [1374] = 1312, + [1375] = 1302, + [1376] = 1296, + [1377] = 1296, + [1378] = 842, + [1379] = 1312, + [1380] = 1302, + [1381] = 1296, + [1382] = 1312, + [1383] = 362, + [1384] = 1384, + [1385] = 1385, + [1386] = 860, + [1387] = 412, + [1388] = 409, + [1389] = 859, + [1390] = 857, + [1391] = 850, + [1392] = 874, + [1393] = 852, + [1394] = 846, + [1395] = 410, + [1396] = 407, + [1397] = 1397, + [1398] = 374, + [1399] = 377, + [1400] = 366, + [1401] = 378, + [1402] = 363, + [1403] = 849, + [1404] = 360, + [1405] = 368, + [1406] = 364, + [1407] = 375, + [1408] = 407, + [1409] = 379, + [1410] = 373, + [1411] = 372, + [1412] = 409, + [1413] = 365, + [1414] = 838, + [1415] = 410, + [1416] = 412, + [1417] = 875, + [1418] = 827, + [1419] = 371, + [1420] = 370, + [1421] = 865, + [1422] = 376, + [1423] = 839, + [1424] = 828, + [1425] = 367, + [1426] = 361, [1427] = 1427, - [1428] = 363, + [1428] = 1428, [1429] = 1429, - [1430] = 1427, + [1430] = 1430, [1431] = 1431, - [1432] = 1432, + [1432] = 1428, [1433] = 1433, [1434] = 1434, [1435] = 1435, [1436] = 1436, [1437] = 1437, [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 1442, - [1444] = 1441, - [1445] = 1440, - [1446] = 1439, - [1447] = 1438, - [1448] = 1436, - [1449] = 1437, + [1439] = 1435, + [1440] = 1436, + [1441] = 1427, + [1442] = 1437, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1448, + [1449] = 1430, [1450] = 1450, - [1451] = 1435, + [1451] = 1431, [1452] = 1452, [1453] = 1453, - [1454] = 1434, - [1455] = 1432, - [1456] = 1429, - [1457] = 1427, + [1454] = 1433, + [1455] = 1438, + [1456] = 1443, + [1457] = 1452, [1458] = 1431, [1459] = 1459, - [1460] = 1452, - [1461] = 1453, - [1462] = 1432, - [1463] = 1429, - [1464] = 1427, - [1465] = 1431, - [1466] = 1453, - [1467] = 1433, - [1468] = 1452, - [1469] = 1469, - [1470] = 1453, - [1471] = 1432, - [1472] = 1429, - [1473] = 1427, - [1474] = 1431, - [1475] = 1452, - [1476] = 1476, - [1477] = 1452, - [1478] = 1478, - [1479] = 1453, - [1480] = 1432, - [1481] = 1459, - [1482] = 1482, - [1483] = 1429, - [1484] = 1484, - [1485] = 1427, - [1486] = 1431, - [1487] = 1450, - [1488] = 1452, - [1489] = 1453, - [1490] = 1432, - [1491] = 1429, - [1492] = 1484, - [1493] = 1482, - [1494] = 1427, - [1495] = 1431, - [1496] = 1496, - [1497] = 1437, - [1498] = 1498, - [1499] = 1499, - [1500] = 1482, - [1501] = 1438, - [1502] = 1498, - [1503] = 1450, - [1504] = 1504, - [1505] = 1504, - [1506] = 1439, - [1507] = 1440, - [1508] = 1504, - [1509] = 1441, - [1510] = 1498, - [1511] = 1442, - [1512] = 1436, - [1513] = 1435, - [1514] = 953, - [1515] = 1434, - [1516] = 1433, - [1517] = 1498, - [1518] = 1433, - [1519] = 1434, - [1520] = 1459, - [1521] = 1435, - [1522] = 1498, - [1523] = 1504, - [1524] = 1436, - [1525] = 1442, - [1526] = 1452, - [1527] = 1441, - [1528] = 1459, - [1529] = 1440, - [1530] = 1439, - [1531] = 1531, - [1532] = 1484, - [1533] = 1438, - [1534] = 1499, - [1535] = 1437, - [1536] = 1453, - [1537] = 1432, - [1538] = 1450, - [1539] = 1482, - [1540] = 1429, - [1541] = 1504, - [1542] = 1498, - [1543] = 1459, - [1544] = 1427, - [1545] = 1433, - [1546] = 1431, - [1547] = 1452, - [1548] = 1434, - [1549] = 1431, - [1550] = 1499, - [1551] = 1453, - [1552] = 1459, - [1553] = 1432, - [1554] = 1427, - [1555] = 1429, - [1556] = 1498, - [1557] = 1504, - [1558] = 1484, + [1460] = 1430, + [1461] = 1448, + [1462] = 1447, + [1463] = 1446, + [1464] = 1464, + [1465] = 1445, + [1466] = 1438, + [1467] = 1437, + [1468] = 1436, + [1469] = 1445, + [1470] = 1435, + [1471] = 1446, + [1472] = 1472, + [1473] = 1464, + [1474] = 1447, + [1475] = 1434, + [1476] = 1434, + [1477] = 1444, + [1478] = 1433, + [1479] = 1428, + [1480] = 922, + [1481] = 1443, + [1482] = 1472, + [1483] = 1427, + [1484] = 1428, + [1485] = 1431, + [1486] = 1430, + [1487] = 1433, + [1488] = 1450, + [1489] = 1459, + [1490] = 1459, + [1491] = 1434, + [1492] = 1472, + [1493] = 1464, + [1494] = 1444, + [1495] = 1427, + [1496] = 1453, + [1497] = 1450, + [1498] = 1459, + [1499] = 1472, + [1500] = 1448, + [1501] = 1447, + [1502] = 1446, + [1503] = 1445, + [1504] = 1438, + [1505] = 1450, + [1506] = 1464, + [1507] = 1444, + [1508] = 1437, + [1509] = 1436, + [1510] = 1435, + [1511] = 1434, + [1512] = 1427, + [1513] = 1513, + [1514] = 1428, + [1515] = 1443, + [1516] = 1435, + [1517] = 1517, + [1518] = 1436, + [1519] = 1437, + [1520] = 1438, + [1521] = 903, + [1522] = 1428, + [1523] = 1443, + [1524] = 1433, + [1525] = 1452, + [1526] = 1431, + [1527] = 1527, + [1528] = 1434, + [1529] = 1430, + [1530] = 1448, + [1531] = 1452, + [1532] = 1433, + [1533] = 1452, + [1534] = 1431, + [1535] = 1430, + [1536] = 1448, + [1537] = 1447, + [1538] = 1446, + [1539] = 1445, + [1540] = 1438, + [1541] = 1437, + [1542] = 1447, + [1543] = 1436, + [1544] = 1435, + [1545] = 1545, + [1546] = 1446, + [1547] = 1445, + [1548] = 1548, + [1549] = 1438, + [1550] = 1434, + [1551] = 1445, + [1552] = 1428, + [1553] = 1437, + [1554] = 1446, + [1555] = 1443, + [1556] = 1447, + [1557] = 1436, + [1558] = 1435, [1559] = 1427, - [1560] = 1450, - [1561] = 1431, - [1562] = 1429, - [1563] = 1435, - [1564] = 1436, - [1565] = 1442, - [1566] = 1452, - [1567] = 1441, - [1568] = 1440, - [1569] = 1439, - [1570] = 1438, + [1560] = 1448, + [1561] = 1434, + [1562] = 1430, + [1563] = 1444, + [1564] = 1427, + [1565] = 1428, + [1566] = 1443, + [1567] = 1464, + [1568] = 1568, + [1569] = 1435, + [1570] = 1436, [1571] = 1437, - [1572] = 1450, - [1573] = 1482, - [1574] = 364, - [1575] = 1453, - [1576] = 1432, - [1577] = 1432, - [1578] = 1453, + [1572] = 1517, + [1573] = 1429, + [1574] = 1545, + [1575] = 1548, + [1576] = 1568, + [1577] = 939, + [1578] = 1431, [1579] = 1452, - [1580] = 1431, - [1581] = 1453, - [1582] = 1484, - [1583] = 1452, - [1584] = 1499, - [1585] = 1453, - [1586] = 1432, - [1587] = 1429, - [1588] = 1504, - [1589] = 375, - [1590] = 1498, + [1580] = 367, + [1581] = 1438, + [1582] = 924, + [1583] = 1472, + [1584] = 1584, + [1585] = 1450, + [1586] = 1586, + [1587] = 1587, + [1588] = 1459, + [1589] = 1589, + [1590] = 1472, [1591] = 1591, - [1592] = 1427, - [1593] = 1459, - [1594] = 1433, - [1595] = 1434, - [1596] = 1435, - [1597] = 1436, - [1598] = 1442, - [1599] = 1441, - [1600] = 1440, - [1601] = 1439, - [1602] = 1438, - [1603] = 1437, - [1604] = 1450, - [1605] = 1431, - [1606] = 1452, - [1607] = 1482, - [1608] = 1482, - [1609] = 1609, - [1610] = 1453, - [1611] = 1432, - [1612] = 379, - [1613] = 1429, - [1614] = 1427, - [1615] = 1450, - [1616] = 1616, - [1617] = 1431, - [1618] = 1452, - [1619] = 372, - [1620] = 368, - [1621] = 367, - [1622] = 366, - [1623] = 377, - [1624] = 1453, - [1625] = 1432, - [1626] = 365, - [1627] = 364, - [1628] = 370, - [1629] = 373, - [1630] = 374, - [1631] = 1429, - [1632] = 375, - [1633] = 1504, - [1634] = 1498, - [1635] = 371, - [1636] = 1459, - [1637] = 1433, - [1638] = 1434, - [1639] = 1482, - [1640] = 1427, - [1641] = 1435, - [1642] = 1437, - [1643] = 1438, - [1644] = 1439, - [1645] = 1440, - [1646] = 1441, - [1647] = 1442, - [1648] = 1436, - [1649] = 1435, - [1650] = 1431, - [1651] = 1434, - [1652] = 1433, - [1653] = 1459, - [1654] = 1436, - [1655] = 1498, - [1656] = 1504, + [1592] = 1445, + [1593] = 915, + [1594] = 1464, + [1595] = 1446, + [1596] = 1433, + [1597] = 1452, + [1598] = 1431, + [1599] = 1430, + [1600] = 1448, + [1601] = 1447, + [1602] = 1446, + [1603] = 1445, + [1604] = 1438, + [1605] = 1437, + [1606] = 1436, + [1607] = 1435, + [1608] = 1444, + [1609] = 1434, + [1610] = 1427, + [1611] = 1447, + [1612] = 1448, + [1613] = 1428, + [1614] = 365, + [1615] = 1443, + [1616] = 1443, + [1617] = 1430, + [1618] = 1618, + [1619] = 1428, + [1620] = 1427, + [1621] = 1444, + [1622] = 1464, + [1623] = 1472, + [1624] = 1459, + [1625] = 1450, + [1626] = 1444, + [1627] = 1627, + [1628] = 1427, + [1629] = 1444, + [1630] = 1464, + [1631] = 1472, + [1632] = 1632, + [1633] = 1431, + [1634] = 1428, + [1635] = 966, + [1636] = 1464, + [1637] = 1637, + [1638] = 916, + [1639] = 925, + [1640] = 1433, + [1641] = 1459, + [1642] = 1443, + [1643] = 1459, + [1644] = 1450, + [1645] = 1427, + [1646] = 1444, + [1647] = 1464, + [1648] = 1472, + [1649] = 1459, + [1650] = 1450, + [1651] = 1427, + [1652] = 1652, + [1653] = 1444, + [1654] = 1464, + [1655] = 1472, + [1656] = 1459, [1657] = 1450, - [1658] = 1658, - [1659] = 1499, - [1660] = 422, - [1661] = 1442, - [1662] = 1441, - [1663] = 1440, - [1664] = 1439, - [1665] = 1438, - [1666] = 1437, - [1667] = 378, - [1668] = 1482, - [1669] = 379, - [1670] = 372, - [1671] = 1482, - [1672] = 430, - [1673] = 1450, - [1674] = 1431, - [1675] = 1675, - [1676] = 368, - [1677] = 1437, - [1678] = 1438, - [1679] = 1439, - [1680] = 1440, - [1681] = 1441, - [1682] = 1442, - [1683] = 1436, - [1684] = 1435, - [1685] = 1434, - [1686] = 1433, - [1687] = 1459, - [1688] = 367, - [1689] = 1499, - [1690] = 366, - [1691] = 365, - [1692] = 1498, - [1693] = 1504, - [1694] = 1429, - [1695] = 1427, - [1696] = 1696, - [1697] = 1484, - [1698] = 1698, - [1699] = 1429, - [1700] = 1432, - [1701] = 1701, - [1702] = 1453, + [1658] = 1427, + [1659] = 1444, + [1660] = 1464, + [1661] = 1472, + [1662] = 1459, + [1663] = 1450, + [1664] = 1427, + [1665] = 1444, + [1666] = 1464, + [1667] = 1472, + [1668] = 1459, + [1669] = 1450, + [1670] = 1433, + [1671] = 1671, + [1672] = 1434, + [1673] = 1435, + [1674] = 1436, + [1675] = 1437, + [1676] = 1452, + [1677] = 1438, + [1678] = 1445, + [1679] = 1472, + [1680] = 1433, + [1681] = 1681, + [1682] = 1446, + [1683] = 1447, + [1684] = 1434, + [1685] = 1448, + [1686] = 1430, + [1687] = 1431, + [1688] = 1435, + [1689] = 886, + [1690] = 1436, + [1691] = 1589, + [1692] = 1437, + [1693] = 1433, + [1694] = 1438, + [1695] = 1453, + [1696] = 1445, + [1697] = 1446, + [1698] = 1447, + [1699] = 1452, + [1700] = 1448, + [1701] = 1618, + [1702] = 1430, [1703] = 1452, - [1704] = 893, - [1705] = 1450, - [1706] = 1429, - [1707] = 1482, - [1708] = 1431, - [1709] = 1450, - [1710] = 1437, - [1711] = 1438, - [1712] = 1439, - [1713] = 1440, - [1714] = 1441, - [1715] = 1441, - [1716] = 1427, - [1717] = 1484, - [1718] = 1442, - [1719] = 1436, - [1720] = 1435, - [1721] = 1434, - [1722] = 1433, - [1723] = 370, - [1724] = 373, - [1725] = 1459, - [1726] = 374, - [1727] = 1429, - [1728] = 359, - [1729] = 1504, - [1730] = 1498, - [1731] = 1498, - [1732] = 1504, - [1733] = 1733, - [1734] = 1432, - [1735] = 1453, - [1736] = 1452, - [1737] = 1452, - [1738] = 1738, - [1739] = 1453, - [1740] = 1740, - [1741] = 1432, - [1742] = 1429, - [1743] = 1484, - [1744] = 1744, - [1745] = 1459, - [1746] = 1504, - [1747] = 1498, - [1748] = 1427, - [1749] = 1749, - [1750] = 1459, + [1704] = 1431, + [1705] = 1452, + [1706] = 899, + [1707] = 1707, + [1708] = 1618, + [1709] = 1443, + [1710] = 1618, + [1711] = 1450, + [1712] = 1712, + [1713] = 918, + [1714] = 363, + [1715] = 913, + [1716] = 376, + [1717] = 1431, + [1718] = 1430, + [1719] = 429, + [1720] = 1448, + [1721] = 1447, + [1722] = 1446, + [1723] = 1445, + [1724] = 1443, + [1725] = 1438, + [1726] = 1428, + [1727] = 1434, + [1728] = 1435, + [1729] = 1437, + [1730] = 1436, + [1731] = 1436, + [1732] = 1437, + [1733] = 1438, + [1734] = 1435, + [1735] = 426, + [1736] = 372, + [1737] = 1433, + [1738] = 370, + [1739] = 1452, + [1740] = 1431, + [1741] = 1430, + [1742] = 1448, + [1743] = 1447, + [1744] = 1446, + [1745] = 1445, + [1746] = 360, + [1747] = 1434, + [1748] = 425, + [1749] = 1433, + [1750] = 1452, [1751] = 1431, - [1752] = 1499, - [1753] = 1431, - [1754] = 1482, - [1755] = 1427, - [1756] = 1433, - [1757] = 1434, - [1758] = 1450, - [1759] = 1437, - [1760] = 1438, - [1761] = 1429, - [1762] = 1439, - [1763] = 1440, - [1764] = 1441, - [1765] = 1442, - [1766] = 1436, - [1767] = 1433, - [1768] = 1435, - [1769] = 1434, - [1770] = 1433, - [1771] = 1435, - [1772] = 1434, - [1773] = 1436, - [1774] = 1459, - [1775] = 1435, - [1776] = 1498, - [1777] = 1436, - [1778] = 1504, - [1779] = 1484, - [1780] = 1482, - [1781] = 1504, - [1782] = 1442, - [1783] = 1498, - [1784] = 1442, - [1785] = 1450, - [1786] = 1437, - [1787] = 1438, - [1788] = 1439, - [1789] = 1789, - [1790] = 1440, - [1791] = 1441, - [1792] = 1792, - [1793] = 1442, - [1794] = 910, - [1795] = 1459, - [1796] = 1440, - [1797] = 1436, - [1798] = 1435, - [1799] = 1434, - [1800] = 1433, - [1801] = 1439, - [1802] = 1438, - [1803] = 1459, - [1804] = 1437, - [1805] = 1498, - [1806] = 1433, - [1807] = 1504, - [1808] = 1484, - [1809] = 1432, - [1810] = 1482, - [1811] = 1453, - [1812] = 1434, - [1813] = 1499, - [1814] = 1450, - [1815] = 1437, - [1816] = 1452, - [1817] = 1484, - [1818] = 1438, - [1819] = 1441, - [1820] = 1439, - [1821] = 1482, - [1822] = 1440, - [1823] = 1441, - [1824] = 1442, - [1825] = 1436, - [1826] = 1435, - [1827] = 1434, - [1828] = 1433, - [1829] = 1434, + [1752] = 1430, + [1753] = 1445, + [1754] = 430, + [1755] = 1448, + [1756] = 1443, + [1757] = 1448, + [1758] = 1447, + [1759] = 1438, + [1760] = 1437, + [1761] = 1446, + [1762] = 1436, + [1763] = 1435, + [1764] = 1434, + [1765] = 1428, + [1766] = 1443, + [1767] = 1453, + [1768] = 954, + [1769] = 934, + [1770] = 1446, + [1771] = 1433, + [1772] = 1433, + [1773] = 1452, + [1774] = 1431, + [1775] = 1430, + [1776] = 1448, + [1777] = 1447, + [1778] = 1446, + [1779] = 1445, + [1780] = 1438, + [1781] = 429, + [1782] = 1437, + [1783] = 1443, + [1784] = 1447, + [1785] = 1428, + [1786] = 1448, + [1787] = 1436, + [1788] = 1430, + [1789] = 1435, + [1790] = 1431, + [1791] = 1517, + [1792] = 1434, + [1793] = 1445, + [1794] = 1438, + [1795] = 1428, + [1796] = 375, + [1797] = 1434, + [1798] = 1443, + [1799] = 1453, + [1800] = 373, + [1801] = 372, + [1802] = 375, + [1803] = 373, + [1804] = 1618, + [1805] = 1433, + [1806] = 1452, + [1807] = 1431, + [1808] = 1430, + [1809] = 426, + [1810] = 1584, + [1811] = 1448, + [1812] = 1437, + [1813] = 1436, + [1814] = 1435, + [1815] = 1429, + [1816] = 1447, + [1817] = 1446, + [1818] = 1445, + [1819] = 1438, + [1820] = 425, + [1821] = 1437, + [1822] = 1545, + [1823] = 1548, + [1824] = 1434, + [1825] = 1825, + [1826] = 1568, + [1827] = 1584, + [1828] = 1436, + [1829] = 1453, [1830] = 1435, [1831] = 1436, - [1832] = 1433, - [1833] = 1789, - [1834] = 1427, - [1835] = 1459, + [1832] = 1437, + [1833] = 1438, + [1834] = 1450, + [1835] = 1428, [1836] = 1435, - [1837] = 1436, - [1838] = 1442, - [1839] = 1441, - [1840] = 1440, - [1841] = 1439, - [1842] = 1438, - [1843] = 1498, - [1844] = 1437, - [1845] = 1450, - [1846] = 1442, - [1847] = 1789, - [1848] = 1701, - [1849] = 1441, - [1850] = 1740, - [1851] = 1851, - [1852] = 1701, - [1853] = 1740, - [1854] = 1851, - [1855] = 1701, - [1856] = 1740, - [1857] = 1851, - [1858] = 1701, - [1859] = 1440, - [1860] = 1740, - [1861] = 1439, - [1862] = 1851, - [1863] = 1701, - [1864] = 1740, - [1865] = 1851, - [1866] = 1789, - [1867] = 1701, - [1868] = 1438, - [1869] = 1740, - [1870] = 1440, - [1871] = 1789, - [1872] = 1851, - [1873] = 1431, - [1874] = 1439, - [1875] = 1701, - [1876] = 1740, - [1877] = 1789, - [1878] = 1851, - [1879] = 1701, - [1880] = 1740, - [1881] = 1789, - [1882] = 1851, - [1883] = 1701, - [1884] = 1740, - [1885] = 1482, - [1886] = 1789, - [1887] = 1851, - [1888] = 1789, - [1889] = 1701, - [1890] = 1740, - [1891] = 1789, - [1892] = 1851, - [1893] = 1789, - [1894] = 1438, - [1895] = 1789, - [1896] = 1437, - [1897] = 1427, - [1898] = 1429, - [1899] = 1432, - [1900] = 1453, - [1901] = 1452, - [1902] = 1789, - [1903] = 1450, - [1904] = 1459, - [1905] = 1452, - [1906] = 1437, - [1907] = 1450, - [1908] = 1427, - [1909] = 1504, - [1910] = 869, - [1911] = 369, - [1912] = 1482, - [1913] = 1432, - [1914] = 371, - [1915] = 1437, - [1916] = 1438, - [1917] = 1439, - [1918] = 428, - [1919] = 1440, - [1920] = 1441, - [1921] = 1433, - [1922] = 956, - [1923] = 1434, - [1924] = 1435, - [1925] = 1499, - [1926] = 1851, - [1927] = 1450, - [1928] = 908, + [1837] = 1586, + [1838] = 1443, + [1839] = 1587, + [1840] = 1445, + [1841] = 1446, + [1842] = 1447, + [1843] = 1448, + [1844] = 1430, + [1845] = 1459, + [1846] = 1431, + [1847] = 1452, + [1848] = 1427, + [1849] = 1444, + [1850] = 1548, + [1851] = 1464, + [1852] = 1589, + [1853] = 430, + [1854] = 1472, + [1855] = 1472, + [1856] = 1459, + [1857] = 1450, + [1858] = 1464, + [1859] = 1444, + [1860] = 1427, + [1861] = 1427, + [1862] = 1434, + [1863] = 1444, + [1864] = 1517, + [1865] = 1428, + [1866] = 1548, + [1867] = 1618, + [1868] = 1453, + [1869] = 1429, + [1870] = 1464, + [1871] = 1589, + [1872] = 1452, + [1873] = 1472, + [1874] = 1545, + [1875] = 1459, + [1876] = 1450, + [1877] = 1427, + [1878] = 427, + [1879] = 1433, + [1880] = 1444, + [1881] = 1450, + [1882] = 1548, + [1883] = 1464, + [1884] = 1472, + [1885] = 1568, + [1886] = 1618, + [1887] = 1584, + [1888] = 1459, + [1889] = 1586, + [1890] = 1450, + [1891] = 1587, + [1892] = 1444, + [1893] = 1464, + [1894] = 1586, + [1895] = 1472, + [1896] = 1545, + [1897] = 1897, + [1898] = 1433, + [1899] = 1589, + [1900] = 1459, + [1901] = 1450, + [1902] = 1427, + [1903] = 1589, + [1904] = 1517, + [1905] = 1586, + [1906] = 1444, + [1907] = 1545, + [1908] = 1452, + [1909] = 1429, + [1910] = 1589, + [1911] = 1586, + [1912] = 1545, + [1913] = 1548, + [1914] = 1464, + [1915] = 1545, + [1916] = 1589, + [1917] = 1568, + [1918] = 1918, + [1919] = 1431, + [1920] = 1430, + [1921] = 1448, + [1922] = 1584, + [1923] = 1447, + [1924] = 1446, + [1925] = 1445, + [1926] = 1438, + [1927] = 1586, + [1928] = 1437, [1929] = 1436, - [1930] = 378, - [1931] = 1442, - [1932] = 1499, - [1933] = 1450, - [1934] = 1431, - [1935] = 1427, - [1936] = 1429, - [1937] = 1432, - [1938] = 1453, - [1939] = 1452, - [1940] = 1431, - [1941] = 1436, - [1942] = 423, - [1943] = 1435, - [1944] = 1434, - [1945] = 1427, - [1946] = 1429, - [1947] = 1432, - [1948] = 1453, - [1949] = 1452, - [1950] = 1431, - [1951] = 1427, - [1952] = 1429, - [1953] = 1432, - [1954] = 1433, - [1955] = 1453, - [1956] = 1452, - [1957] = 1431, - [1958] = 1429, - [1959] = 1429, - [1960] = 359, - [1961] = 1432, - [1962] = 1453, - [1963] = 1452, - [1964] = 1431, - [1965] = 1427, - [1966] = 1429, - [1967] = 1432, - [1968] = 1459, - [1969] = 426, - [1970] = 1453, - [1971] = 1452, - [1972] = 1431, - [1973] = 1427, - [1974] = 1442, - [1975] = 1441, - [1976] = 1432, - [1977] = 1440, - [1978] = 1453, - [1979] = 1452, - [1980] = 1499, - [1981] = 1504, - [1982] = 1498, - [1983] = 1459, - [1984] = 1433, - [1985] = 1484, - [1986] = 1434, - [1987] = 1435, + [1930] = 1435, + [1931] = 1434, + [1932] = 934, + [1933] = 1587, + [1934] = 1428, + [1935] = 1589, + [1936] = 1517, + [1937] = 1429, + [1938] = 1545, + [1939] = 1443, + [1940] = 1548, + [1941] = 1472, + [1942] = 1568, + [1943] = 1586, + [1944] = 1587, + [1945] = 360, + [1946] = 361, + [1947] = 1589, + [1948] = 371, + [1949] = 1545, + [1950] = 1459, + [1951] = 379, + [1952] = 1548, + [1953] = 364, + [1954] = 362, + [1955] = 368, + [1956] = 378, + [1957] = 1586, + [1958] = 1586, + [1959] = 1587, + [1960] = 1589, + [1961] = 1545, + [1962] = 366, + [1963] = 1548, + [1964] = 1586, + [1965] = 1587, + [1966] = 1450, + [1967] = 1427, + [1968] = 1444, + [1969] = 1618, + [1970] = 377, + [1971] = 1427, + [1972] = 374, + [1973] = 1433, + [1974] = 1589, + [1975] = 1545, + [1976] = 370, + [1977] = 1453, + [1978] = 1431, + [1979] = 1464, + [1980] = 1430, + [1981] = 1448, + [1982] = 1447, + [1983] = 1446, + [1984] = 1445, + [1985] = 1438, + [1986] = 1437, + [1987] = 1548, [1988] = 1436, - [1989] = 1442, - [1990] = 1439, - [1991] = 1441, - [1992] = 1440, - [1993] = 1439, - [1994] = 1438, - [1995] = 1437, - [1996] = 1789, - [1997] = 1701, - [1998] = 1740, - [1999] = 1851, - [2000] = 1438, - [2001] = 1498, - [2002] = 1504, - [2003] = 1437, - [2004] = 1701, - [2005] = 1740, - [2006] = 1851, - [2007] = 1450, - [2008] = 1701, - [2009] = 1740, - [2010] = 1851, - [2011] = 1701, - [2012] = 1740, - [2013] = 1851, - [2014] = 1701, - [2015] = 1740, - [2016] = 1851, - [2017] = 1701, - [2018] = 1740, - [2019] = 1450, - [2020] = 1851, - [2021] = 1482, - [2022] = 1701, - [2023] = 1740, - [2024] = 872, - [2025] = 1789, - [2026] = 1851, - [2027] = 1701, - [2028] = 1740, - [2029] = 1789, - [2030] = 1851, - [2031] = 1701, - [2032] = 931, - [2033] = 1744, - [2034] = 1740, - [2035] = 1789, - [2036] = 1851, - [2037] = 1701, - [2038] = 1744, - [2039] = 1740, - [2040] = 1789, - [2041] = 1851, - [2042] = 1701, - [2043] = 1744, - [2044] = 1740, - [2045] = 1789, - [2046] = 1851, - [2047] = 1701, - [2048] = 1744, - [2049] = 1740, - [2050] = 1792, - [2051] = 1789, - [2052] = 1851, - [2053] = 363, - [2054] = 362, - [2055] = 1437, - [2056] = 1496, - [2057] = 1478, - [2058] = 1701, - [2059] = 1744, - [2060] = 1740, - [2061] = 2061, - [2062] = 1792, - [2063] = 1789, - [2064] = 1851, - [2065] = 1496, - [2066] = 1478, - [2067] = 360, - [2068] = 1701, - [2069] = 931, - [2070] = 1744, - [2071] = 1740, - [2072] = 2061, - [2073] = 1792, - [2074] = 1789, - [2075] = 1851, - [2076] = 1496, - [2077] = 1478, + [1989] = 1435, + [1990] = 1434, + [1991] = 376, + [1992] = 1586, + [1993] = 1428, + [1994] = 1443, + [1995] = 1444, + [1996] = 1587, + [1997] = 1589, + [1998] = 1545, + [1999] = 1472, + [2000] = 1548, + [2001] = 1586, + [2002] = 367, + [2003] = 1589, + [2004] = 1459, + [2005] = 361, + [2006] = 1545, + [2007] = 371, + [2008] = 379, + [2009] = 364, + [2010] = 1464, + [2011] = 1548, + [2012] = 362, + [2013] = 368, + [2014] = 378, + [2015] = 366, + [2016] = 1586, + [2017] = 1589, + [2018] = 1545, + [2019] = 1586, + [2020] = 1589, + [2021] = 1450, + [2022] = 1545, + [2023] = 1452, + [2024] = 1618, + [2025] = 377, + [2026] = 1545, + [2027] = 374, + [2028] = 1433, + [2029] = 427, + [2030] = 1452, + [2031] = 1431, + [2032] = 1430, + [2033] = 1448, + [2034] = 1589, + [2035] = 1447, + [2036] = 1446, + [2037] = 1445, + [2038] = 1438, + [2039] = 1437, + [2040] = 1436, + [2041] = 1435, + [2042] = 1586, + [2043] = 1589, + [2044] = 1545, + [2045] = 1586, + [2046] = 1434, + [2047] = 1586, + [2048] = 1589, + [2049] = 1428, + [2050] = 1545, + [2051] = 1443, + [2052] = 1586, + [2053] = 1472, + [2054] = 1589, + [2055] = 1545, + [2056] = 1452, + [2057] = 1586, + [2058] = 1618, + [2059] = 1545, + [2060] = 1589, + [2061] = 1545, + [2062] = 1548, + [2063] = 1589, + [2064] = 1586, + [2065] = 1589, + [2066] = 1586, + [2067] = 1548, + [2068] = 1443, + [2069] = 1548, + [2070] = 1545, + [2071] = 1589, + [2072] = 1452, + [2073] = 1586, + [2074] = 1548, + [2075] = 1450, + [2076] = 1453, + [2077] = 1433, [2078] = 1452, - [2079] = 1438, - [2080] = 1453, - [2081] = 1432, - [2082] = 1701, - [2083] = 1429, - [2084] = 1744, - [2085] = 1740, - [2086] = 1427, - [2087] = 2061, - [2088] = 1431, - [2089] = 1792, - [2090] = 1789, - [2091] = 1851, - [2092] = 1496, - [2093] = 1478, - [2094] = 949, - [2095] = 1439, - [2096] = 1440, - [2097] = 1441, - [2098] = 1482, - [2099] = 1442, - [2100] = 1436, - [2101] = 2101, - [2102] = 1435, - [2103] = 1434, - [2104] = 1433, - [2105] = 1504, - [2106] = 1478, - [2107] = 1496, - [2108] = 1851, - [2109] = 1789, - [2110] = 362, - [2111] = 1792, - [2112] = 1431, - [2113] = 360, - [2114] = 2061, - [2115] = 1498, - [2116] = 1459, - [2117] = 1433, - [2118] = 1434, - [2119] = 1435, - [2120] = 1427, - [2121] = 1436, - [2122] = 1442, - [2123] = 1441, - [2124] = 1440, - [2125] = 1439, - [2126] = 1438, - [2127] = 1437, - [2128] = 1450, - [2129] = 1482, - [2130] = 1504, - [2131] = 1498, - [2132] = 1740, - [2133] = 1459, - [2134] = 1433, - [2135] = 1434, - [2136] = 1744, - [2137] = 1435, - [2138] = 1436, - [2139] = 1459, - [2140] = 1442, - [2141] = 1441, - [2142] = 1440, - [2143] = 1439, - [2144] = 905, - [2145] = 428, - [2146] = 1438, - [2147] = 1429, - [2148] = 1437, - [2149] = 1701, - [2150] = 1498, - [2151] = 1432, - [2152] = 1504, - [2153] = 1453, - [2154] = 423, - [2155] = 1504, - [2156] = 1498, - [2157] = 1450, - [2158] = 1452, - [2159] = 1482, - [2160] = 1482, - [2161] = 1482, - [2162] = 1437, - [2163] = 426, - [2164] = 1438, - [2165] = 1439, - [2166] = 1440, - [2167] = 1459, - [2168] = 422, - [2169] = 1441, - [2170] = 430, - [2171] = 1431, - [2172] = 1499, - [2173] = 1504, - [2174] = 903, - [2175] = 1442, - [2176] = 896, - [2177] = 898, - [2178] = 2178, - [2179] = 1436, - [2180] = 1482, - [2181] = 1435, - [2182] = 2061, - [2183] = 1434, - [2184] = 1433, - [2185] = 899, - [2186] = 2186, - [2187] = 2187, - [2188] = 370, - [2189] = 392, - [2190] = 381, - [2191] = 448, - [2192] = 381, - [2193] = 1036, - [2194] = 449, - [2195] = 382, - [2196] = 440, - [2197] = 1034, - [2198] = 1131, - [2199] = 382, - [2200] = 384, - [2201] = 830, + [2079] = 1431, + [2080] = 1430, + [2081] = 1448, + [2082] = 1447, + [2083] = 1446, + [2084] = 1459, + [2085] = 1445, + [2086] = 1472, + [2087] = 1438, + [2088] = 1437, + [2089] = 1436, + [2090] = 1435, + [2091] = 1464, + [2092] = 1434, + [2093] = 1444, + [2094] = 1428, + [2095] = 1427, + [2096] = 1443, + [2097] = 1545, + [2098] = 1450, + [2099] = 1459, + [2100] = 1453, + [2101] = 1459, + [2102] = 1453, + [2103] = 2103, + [2104] = 1589, + [2105] = 2105, + [2106] = 1586, + [2107] = 1472, + [2108] = 1548, + [2109] = 1464, + [2110] = 1444, + [2111] = 2111, + [2112] = 1453, + [2113] = 1545, + [2114] = 1433, + [2115] = 1433, + [2116] = 1427, + [2117] = 1452, + [2118] = 1431, + [2119] = 1430, + [2120] = 1448, + [2121] = 1447, + [2122] = 1446, + [2123] = 1445, + [2124] = 1438, + [2125] = 1589, + [2126] = 1437, + [2127] = 1450, + [2128] = 1459, + [2129] = 1436, + [2130] = 1435, + [2131] = 1586, + [2132] = 1434, + [2133] = 1472, + [2134] = 1428, + [2135] = 1548, + [2136] = 1464, + [2137] = 1443, + [2138] = 1618, + [2139] = 1444, + [2140] = 1433, + [2141] = 1545, + [2142] = 1548, + [2143] = 1428, + [2144] = 1427, + [2145] = 1427, + [2146] = 1450, + [2147] = 1444, + [2148] = 1464, + [2149] = 1472, + [2150] = 1459, + [2151] = 1459, + [2152] = 1450, + [2153] = 1589, + [2154] = 1472, + [2155] = 1464, + [2156] = 1444, + [2157] = 1443, + [2158] = 1428, + [2159] = 1427, + [2160] = 1586, + [2161] = 1548, + [2162] = 1618, + [2163] = 1450, + [2164] = 1450, + [2165] = 1459, + [2166] = 1431, + [2167] = 1545, + [2168] = 1430, + [2169] = 1434, + [2170] = 1448, + [2171] = 1586, + [2172] = 1447, + [2173] = 1446, + [2174] = 1445, + [2175] = 1548, + [2176] = 1548, + [2177] = 1548, + [2178] = 1427, + [2179] = 1444, + [2180] = 1587, + [2181] = 1438, + [2182] = 1437, + [2183] = 1436, + [2184] = 1464, + [2185] = 1435, + [2186] = 1459, + [2187] = 1472, + [2188] = 837, + [2189] = 374, + [2190] = 383, + [2191] = 450, + [2192] = 444, + [2193] = 366, + [2194] = 363, + [2195] = 380, + [2196] = 378, + [2197] = 368, + [2198] = 390, + [2199] = 362, + [2200] = 382, + [2201] = 448, [2202] = 442, - [2203] = 364, - [2204] = 831, - [2205] = 830, - [2206] = 381, - [2207] = 831, - [2208] = 392, - [2209] = 453, - [2210] = 382, - [2211] = 392, - [2212] = 453, - [2213] = 384, - [2214] = 442, - [2215] = 384, - [2216] = 392, - [2217] = 1066, - [2218] = 392, - [2219] = 373, - [2220] = 384, - [2221] = 440, - [2222] = 381, - [2223] = 1070, - [2224] = 378, - [2225] = 449, - [2226] = 1038, - [2227] = 384, - [2228] = 379, - [2229] = 359, - [2230] = 382, - [2231] = 360, - [2232] = 381, - [2233] = 448, - [2234] = 371, - [2235] = 372, - [2236] = 362, - [2237] = 368, - [2238] = 363, - [2239] = 382, - [2240] = 878, - [2241] = 367, - [2242] = 865, - [2243] = 366, - [2244] = 375, - [2245] = 365, - [2246] = 369, - [2247] = 374, - [2248] = 414, - [2249] = 410, - [2250] = 362, - [2251] = 412, - [2252] = 410, - [2253] = 362, - [2254] = 830, - [2255] = 369, - [2256] = 392, - [2257] = 415, - [2258] = 428, - [2259] = 359, - [2260] = 384, - [2261] = 378, - [2262] = 412, - [2263] = 371, - [2264] = 379, - [2265] = 831, - [2266] = 368, - [2267] = 367, - [2268] = 410, - [2269] = 375, - [2270] = 366, - [2271] = 365, - [2272] = 364, - [2273] = 415, - [2274] = 370, - [2275] = 373, - [2276] = 392, - [2277] = 377, - [2278] = 374, - [2279] = 375, - [2280] = 381, - [2281] = 384, - [2282] = 372, - [2283] = 430, - [2284] = 414, - [2285] = 382, - [2286] = 414, - [2287] = 359, - [2288] = 381, - [2289] = 379, - [2290] = 422, - [2291] = 372, - [2292] = 423, - [2293] = 368, - [2294] = 367, - [2295] = 360, - [2296] = 371, - [2297] = 360, - [2298] = 382, - [2299] = 366, - [2300] = 365, - [2301] = 414, - [2302] = 364, - [2303] = 374, - [2304] = 378, - [2305] = 426, - [2306] = 415, - [2307] = 412, + [2203] = 382, + [2204] = 440, + [2205] = 364, + [2206] = 379, + [2207] = 371, + [2208] = 390, + [2209] = 361, + [2210] = 380, + [2211] = 442, + [2212] = 440, + [2213] = 367, + [2214] = 448, + [2215] = 382, + [2216] = 450, + [2217] = 1053, + [2218] = 444, + [2219] = 1052, + [2220] = 375, + [2221] = 373, + [2222] = 372, + [2223] = 390, + [2224] = 383, + [2225] = 383, + [2226] = 380, + [2227] = 390, + [2228] = 382, + [2229] = 382, + [2230] = 865, + [2231] = 390, + [2232] = 380, + [2233] = 380, + [2234] = 383, + [2235] = 377, + [2236] = 360, + [2237] = 383, + [2238] = 875, + [2239] = 376, + [2240] = 841, + [2241] = 837, + [2242] = 1051, + [2243] = 1049, + [2244] = 370, + [2245] = 1048, + [2246] = 1047, + [2247] = 841, + [2248] = 412, + [2249] = 373, + [2250] = 410, + [2251] = 364, + [2252] = 383, + [2253] = 430, + [2254] = 362, + [2255] = 379, + [2256] = 383, + [2257] = 368, + [2258] = 378, + [2259] = 412, + [2260] = 366, + [2261] = 377, + [2262] = 374, + [2263] = 360, + [2264] = 380, + [2265] = 409, + [2266] = 380, + [2267] = 407, + [2268] = 390, + [2269] = 407, + [2270] = 410, + [2271] = 374, + [2272] = 377, + [2273] = 366, + [2274] = 378, + [2275] = 841, + [2276] = 367, + [2277] = 368, + [2278] = 362, + [2279] = 364, + [2280] = 837, + [2281] = 379, + [2282] = 371, + [2283] = 382, + [2284] = 412, + [2285] = 361, + [2286] = 412, + [2287] = 410, + [2288] = 407, + [2289] = 375, + [2290] = 365, + [2291] = 376, + [2292] = 429, + [2293] = 373, + [2294] = 375, + [2295] = 409, + [2296] = 361, + [2297] = 367, + [2298] = 372, + [2299] = 425, + [2300] = 376, + [2301] = 371, + [2302] = 363, + [2303] = 427, + [2304] = 426, + [2305] = 372, + [2306] = 370, + [2307] = 410, [2308] = 370, - [2309] = 412, - [2310] = 415, - [2311] = 410, - [2312] = 373, - [2313] = 363, - [2314] = 363, - [2315] = 482, - [2316] = 412, - [2317] = 491, - [2318] = 490, - [2319] = 430, - [2320] = 489, - [2321] = 422, - [2322] = 422, - [2323] = 430, - [2324] = 423, - [2325] = 492, - [2326] = 426, - [2327] = 487, - [2328] = 426, - [2329] = 486, - [2330] = 488, - [2331] = 493, - [2332] = 428, - [2333] = 415, - [2334] = 511, - [2335] = 423, - [2336] = 479, - [2337] = 428, - [2338] = 484, - [2339] = 410, - [2340] = 480, - [2341] = 410, - [2342] = 482, - [2343] = 423, - [2344] = 426, - [2345] = 428, - [2346] = 480, - [2347] = 412, - [2348] = 511, - [2349] = 488, - [2350] = 430, - [2351] = 830, - [2352] = 483, - [2353] = 492, - [2354] = 831, - [2355] = 412, - [2356] = 493, - [2357] = 414, - [2358] = 491, - [2359] = 414, - [2360] = 423, - [2361] = 490, - [2362] = 831, - [2363] = 414, - [2364] = 830, - [2365] = 426, - [2366] = 489, - [2367] = 479, - [2368] = 410, - [2369] = 422, - [2370] = 487, - [2371] = 415, - [2372] = 415, - [2373] = 428, - [2374] = 430, - [2375] = 1038, - [2376] = 1036, - [2377] = 1066, - [2378] = 1131, - [2379] = 1070, - [2380] = 1034, + [2309] = 409, + [2310] = 390, + [2311] = 382, + [2312] = 407, + [2313] = 409, + [2314] = 360, + [2315] = 484, + [2316] = 430, + [2317] = 837, + [2318] = 484, + [2319] = 487, + [2320] = 412, + [2321] = 841, + [2322] = 1051, + [2323] = 489, + [2324] = 427, + [2325] = 426, + [2326] = 490, + [2327] = 409, + [2328] = 1049, + [2329] = 412, + [2330] = 493, + [2331] = 479, + [2332] = 496, + [2333] = 498, + [2334] = 430, + [2335] = 487, + [2336] = 485, + [2337] = 483, + [2338] = 512, + [2339] = 489, + [2340] = 1048, + [2341] = 490, + [2342] = 491, + [2343] = 505, + [2344] = 480, + [2345] = 493, + [2346] = 498, + [2347] = 410, + [2348] = 1047, + [2349] = 427, + [2350] = 427, + [2351] = 412, + [2352] = 479, + [2353] = 496, + [2354] = 425, + [2355] = 409, + [2356] = 505, + [2357] = 480, + [2358] = 1052, + [2359] = 485, + [2360] = 427, + [2361] = 429, + [2362] = 430, + [2363] = 1053, + [2364] = 425, + [2365] = 429, + [2366] = 426, + [2367] = 407, + [2368] = 491, + [2369] = 407, + [2370] = 409, + [2371] = 425, + [2372] = 512, + [2373] = 410, + [2374] = 425, + [2375] = 426, + [2376] = 426, + [2377] = 407, + [2378] = 430, + [2379] = 410, + [2380] = 429, [2381] = 483, - [2382] = 484, - [2383] = 486, - [2384] = 422, - [2385] = 449, - [2386] = 448, - [2387] = 430, - [2388] = 382, - [2389] = 422, - [2390] = 381, - [2391] = 449, - [2392] = 381, - [2393] = 448, - [2394] = 384, - [2395] = 392, - [2396] = 453, - [2397] = 449, - [2398] = 426, - [2399] = 423, - [2400] = 384, - [2401] = 423, - [2402] = 440, - [2403] = 428, - [2404] = 442, - [2405] = 440, - [2406] = 453, - [2407] = 448, - [2408] = 453, - [2409] = 382, - [2410] = 430, - [2411] = 442, - [2412] = 440, - [2413] = 422, - [2414] = 428, - [2415] = 442, - [2416] = 392, - [2417] = 426, - [2418] = 359, - [2419] = 370, - [2420] = 428, - [2421] = 362, - [2422] = 426, - [2423] = 415, - [2424] = 449, - [2425] = 440, - [2426] = 430, - [2427] = 453, - [2428] = 448, - [2429] = 449, - [2430] = 440, - [2431] = 442, - [2432] = 414, - [2433] = 453, - [2434] = 422, - [2435] = 414, - [2436] = 410, - [2437] = 412, - [2438] = 415, - [2439] = 442, - [2440] = 428, - [2441] = 379, - [2442] = 377, - [2443] = 410, - [2444] = 422, - [2445] = 430, - [2446] = 426, - [2447] = 360, - [2448] = 448, - [2449] = 363, - [2450] = 369, - [2451] = 412, - [2452] = 368, - [2453] = 423, - [2454] = 364, - [2455] = 365, - [2456] = 378, - [2457] = 372, - [2458] = 371, - [2459] = 366, - [2460] = 423, - [2461] = 375, - [2462] = 374, - [2463] = 373, - [2464] = 367, - [2465] = 367, - [2466] = 492, - [2467] = 449, - [2468] = 363, - [2469] = 448, - [2470] = 362, - [2471] = 360, - [2472] = 379, - [2473] = 372, - [2474] = 368, - [2475] = 448, - [2476] = 366, - [2477] = 365, - [2478] = 440, - [2479] = 364, - [2480] = 370, - [2481] = 373, - [2482] = 442, - [2483] = 440, - [2484] = 374, - [2485] = 440, - [2486] = 511, - [2487] = 440, - [2488] = 442, - [2489] = 480, - [2490] = 442, - [2491] = 482, - [2492] = 375, - [2493] = 488, - [2494] = 369, - [2495] = 483, - [2496] = 453, - [2497] = 484, - [2498] = 479, - [2499] = 359, - [2500] = 493, - [2501] = 486, - [2502] = 487, - [2503] = 489, - [2504] = 490, - [2505] = 491, + [2382] = 837, + [2383] = 841, + [2384] = 429, + [2385] = 427, + [2386] = 429, + [2387] = 448, + [2388] = 427, + [2389] = 390, + [2390] = 382, + [2391] = 390, + [2392] = 444, + [2393] = 380, + [2394] = 383, + [2395] = 450, + [2396] = 430, + [2397] = 429, + [2398] = 444, + [2399] = 426, + [2400] = 380, + [2401] = 440, + [2402] = 442, + [2403] = 442, + [2404] = 440, + [2405] = 448, + [2406] = 382, + [2407] = 442, + [2408] = 450, + [2409] = 426, + [2410] = 448, + [2411] = 383, + [2412] = 430, + [2413] = 425, + [2414] = 425, + [2415] = 444, + [2416] = 440, + [2417] = 450, + [2418] = 374, + [2419] = 362, + [2420] = 426, + [2421] = 409, + [2422] = 429, + [2423] = 448, + [2424] = 444, + [2425] = 430, + [2426] = 440, + [2427] = 407, + [2428] = 410, + [2429] = 412, + [2430] = 426, + [2431] = 448, + [2432] = 412, + [2433] = 427, + [2434] = 365, + [2435] = 363, + [2436] = 409, + [2437] = 444, + [2438] = 442, + [2439] = 377, + [2440] = 360, + [2441] = 410, + [2442] = 372, + [2443] = 450, + [2444] = 427, + [2445] = 429, + [2446] = 366, + [2447] = 370, + [2448] = 425, + [2449] = 407, + [2450] = 378, + [2451] = 425, + [2452] = 375, + [2453] = 373, + [2454] = 442, + [2455] = 430, + [2456] = 376, + [2457] = 450, + [2458] = 367, + [2459] = 361, + [2460] = 371, + [2461] = 440, + [2462] = 379, + [2463] = 364, + [2464] = 368, + [2465] = 448, + [2466] = 487, + [2467] = 512, + [2468] = 483, + [2469] = 362, + [2470] = 485, + [2471] = 498, + [2472] = 484, + [2473] = 487, + [2474] = 379, + [2475] = 371, + [2476] = 489, + [2477] = 361, + [2478] = 376, + [2479] = 490, + [2480] = 444, + [2481] = 505, + [2482] = 512, + [2483] = 483, + [2484] = 485, + [2485] = 450, + [2486] = 491, + [2487] = 450, + [2488] = 498, + [2489] = 375, + [2490] = 484, + [2491] = 493, + [2492] = 373, + [2493] = 372, + [2494] = 363, + [2495] = 479, + [2496] = 480, + [2497] = 444, + [2498] = 505, + [2499] = 364, + [2500] = 489, + [2501] = 370, + [2502] = 448, + [2503] = 490, + [2504] = 491, + [2505] = 442, [2506] = 493, - [2507] = 492, - [2508] = 488, - [2509] = 482, - [2510] = 480, - [2511] = 511, - [2512] = 453, - [2513] = 491, - [2514] = 490, - [2515] = 489, - [2516] = 453, - [2517] = 487, - [2518] = 486, - [2519] = 449, - [2520] = 479, - [2521] = 448, - [2522] = 484, - [2523] = 378, - [2524] = 483, - [2525] = 371, - [2526] = 453, - [2527] = 442, - [2528] = 448, - [2529] = 449, - [2530] = 449, - [2531] = 359, - [2532] = 493, - [2533] = 511, - [2534] = 487, - [2535] = 480, - [2536] = 486, - [2537] = 484, - [2538] = 483, - [2539] = 482, - [2540] = 392, - [2541] = 479, - [2542] = 384, - [2543] = 488, - [2544] = 381, - [2545] = 360, - [2546] = 492, - [2547] = 362, - [2548] = 493, - [2549] = 479, - [2550] = 392, - [2551] = 363, - [2552] = 491, - [2553] = 379, - [2554] = 490, - [2555] = 372, - [2556] = 368, - [2557] = 367, - [2558] = 366, - [2559] = 365, - [2560] = 489, - [2561] = 364, - [2562] = 382, - [2563] = 370, - [2564] = 373, - [2565] = 487, - [2566] = 486, - [2567] = 374, - [2568] = 384, - [2569] = 392, - [2570] = 375, - [2571] = 381, - [2572] = 484, - [2573] = 384, - [2574] = 381, - [2575] = 382, - [2576] = 382, - [2577] = 483, - [2578] = 486, - [2579] = 489, - [2580] = 491, - [2581] = 369, - [2582] = 492, - [2583] = 511, - [2584] = 482, - [2585] = 489, - [2586] = 480, - [2587] = 490, - [2588] = 392, - [2589] = 491, - [2590] = 482, - [2591] = 511, - [2592] = 488, - [2593] = 384, - [2594] = 378, - [2595] = 492, - [2596] = 381, - [2597] = 371, - [2598] = 382, - [2599] = 480, - [2600] = 381, - [2601] = 423, - [2602] = 412, - [2603] = 490, - [2604] = 423, + [2507] = 479, + [2508] = 496, + [2509] = 480, + [2510] = 360, + [2511] = 374, + [2512] = 377, + [2513] = 442, + [2514] = 444, + [2515] = 450, + [2516] = 442, + [2517] = 366, + [2518] = 450, + [2519] = 367, + [2520] = 448, + [2521] = 440, + [2522] = 496, + [2523] = 440, + [2524] = 440, + [2525] = 442, + [2526] = 440, + [2527] = 448, + [2528] = 444, + [2529] = 378, + [2530] = 368, + [2531] = 483, + [2532] = 505, + [2533] = 493, + [2534] = 491, + [2535] = 490, + [2536] = 489, + [2537] = 480, + [2538] = 496, + [2539] = 479, + [2540] = 484, + [2541] = 363, + [2542] = 498, + [2543] = 480, + [2544] = 491, + [2545] = 496, + [2546] = 479, + [2547] = 367, + [2548] = 489, + [2549] = 375, + [2550] = 493, + [2551] = 491, + [2552] = 490, + [2553] = 489, + [2554] = 485, + [2555] = 487, + [2556] = 484, + [2557] = 484, + [2558] = 479, + [2559] = 485, + [2560] = 498, + [2561] = 361, + [2562] = 485, + [2563] = 371, + [2564] = 379, + [2565] = 512, + [2566] = 360, + [2567] = 364, + [2568] = 376, + [2569] = 362, + [2570] = 383, + [2571] = 512, + [2572] = 368, + [2573] = 382, + [2574] = 380, + [2575] = 390, + [2576] = 390, + [2577] = 380, + [2578] = 487, + [2579] = 382, + [2580] = 390, + [2581] = 378, + [2582] = 366, + [2583] = 377, + [2584] = 374, + [2585] = 382, + [2586] = 383, + [2587] = 373, + [2588] = 505, + [2589] = 370, + [2590] = 483, + [2591] = 382, + [2592] = 372, + [2593] = 383, + [2594] = 383, + [2595] = 380, + [2596] = 512, + [2597] = 380, + [2598] = 390, + [2599] = 380, + [2600] = 426, + [2601] = 483, + [2602] = 390, + [2603] = 427, + [2604] = 485, [2605] = 410, - [2606] = 479, - [2607] = 422, - [2608] = 415, - [2609] = 414, - [2610] = 430, - [2611] = 479, - [2612] = 483, - [2613] = 484, - [2614] = 486, - [2615] = 384, - [2616] = 428, - [2617] = 428, - [2618] = 487, - [2619] = 430, - [2620] = 480, + [2606] = 407, + [2607] = 479, + [2608] = 409, + [2609] = 489, + [2610] = 410, + [2611] = 487, + [2612] = 412, + [2613] = 410, + [2614] = 382, + [2615] = 425, + [2616] = 407, + [2617] = 429, + [2618] = 512, + [2619] = 505, + [2620] = 498, [2621] = 426, - [2622] = 422, - [2623] = 488, - [2624] = 426, - [2625] = 511, - [2626] = 480, - [2627] = 482, - [2628] = 488, - [2629] = 492, - [2630] = 493, - [2631] = 491, - [2632] = 490, - [2633] = 489, - [2634] = 487, - [2635] = 486, - [2636] = 484, - [2637] = 483, - [2638] = 426, - [2639] = 493, - [2640] = 422, - [2641] = 430, - [2642] = 487, - [2643] = 489, - [2644] = 484, - [2645] = 415, - [2646] = 415, - [2647] = 483, - [2648] = 430, - [2649] = 412, - [2650] = 491, - [2651] = 428, - [2652] = 412, - [2653] = 410, - [2654] = 392, - [2655] = 493, - [2656] = 414, - [2657] = 410, - [2658] = 492, - [2659] = 488, - [2660] = 482, - [2661] = 415, - [2662] = 414, - [2663] = 382, - [2664] = 412, - [2665] = 410, - [2666] = 428, - [2667] = 423, - [2668] = 382, - [2669] = 426, - [2670] = 414, - [2671] = 381, - [2672] = 423, - [2673] = 479, - [2674] = 490, - [2675] = 511, - [2676] = 392, - [2677] = 422, - [2678] = 384, - [2679] = 428, - [2680] = 488, - [2681] = 487, - [2682] = 489, - [2683] = 430, - [2684] = 480, - [2685] = 486, - [2686] = 484, - [2687] = 483, - [2688] = 426, - [2689] = 492, - [2690] = 490, - [2691] = 410, - [2692] = 482, - [2693] = 511, - [2694] = 489, - [2695] = 479, - [2696] = 493, - [2697] = 422, + [2622] = 407, + [2623] = 430, + [2624] = 484, + [2625] = 487, + [2626] = 505, + [2627] = 427, + [2628] = 382, + [2629] = 390, + [2630] = 430, + [2631] = 484, + [2632] = 512, + [2633] = 490, + [2634] = 380, + [2635] = 430, + [2636] = 425, + [2637] = 489, + [2638] = 412, + [2639] = 490, + [2640] = 491, + [2641] = 383, + [2642] = 493, + [2643] = 425, + [2644] = 426, + [2645] = 409, + [2646] = 479, + [2647] = 496, + [2648] = 480, + [2649] = 493, + [2650] = 412, + [2651] = 487, + [2652] = 425, + [2653] = 498, + [2654] = 493, + [2655] = 412, + [2656] = 429, + [2657] = 427, + [2658] = 427, + [2659] = 409, + [2660] = 409, + [2661] = 505, + [2662] = 383, + [2663] = 480, + [2664] = 429, + [2665] = 407, + [2666] = 410, + [2667] = 496, + [2668] = 483, + [2669] = 498, + [2670] = 491, + [2671] = 430, + [2672] = 485, + [2673] = 490, + [2674] = 483, + [2675] = 480, + [2676] = 496, + [2677] = 426, + [2678] = 429, + [2679] = 448, + [2680] = 489, + [2681] = 498, + [2682] = 487, + [2683] = 484, + [2684] = 442, + [2685] = 512, + [2686] = 498, + [2687] = 490, + [2688] = 440, + [2689] = 491, + [2690] = 505, + [2691] = 425, + [2692] = 430, + [2693] = 409, + [2694] = 484, + [2695] = 426, + [2696] = 483, + [2697] = 490, [2698] = 491, - [2699] = 491, - [2700] = 412, - [2701] = 493, - [2702] = 490, - [2703] = 487, - [2704] = 448, - [2705] = 449, - [2706] = 440, - [2707] = 442, - [2708] = 453, - [2709] = 430, - [2710] = 422, - [2711] = 414, - [2712] = 426, - [2713] = 423, - [2714] = 483, - [2715] = 486, - [2716] = 484, - [2717] = 448, - [2718] = 449, - [2719] = 415, - [2720] = 440, - [2721] = 412, - [2722] = 442, - [2723] = 410, - [2724] = 423, - [2725] = 453, - [2726] = 414, - [2727] = 479, - [2728] = 511, - [2729] = 428, - [2730] = 480, - [2731] = 482, - [2732] = 492, - [2733] = 488, - [2734] = 415, - [2735] = 442, - [2736] = 769, - [2737] = 440, - [2738] = 453, - [2739] = 769, - [2740] = 448, - [2741] = 449, - [2742] = 453, - [2743] = 449, - [2744] = 762, + [2699] = 493, + [2700] = 479, + [2701] = 496, + [2702] = 410, + [2703] = 426, + [2704] = 480, + [2705] = 512, + [2706] = 442, + [2707] = 485, + [2708] = 505, + [2709] = 483, + [2710] = 429, + [2711] = 493, + [2712] = 407, + [2713] = 496, + [2714] = 429, + [2715] = 427, + [2716] = 409, + [2717] = 489, + [2718] = 479, + [2719] = 444, + [2720] = 444, + [2721] = 448, + [2722] = 485, + [2723] = 480, + [2724] = 487, + [2725] = 412, + [2726] = 427, + [2727] = 407, + [2728] = 440, + [2729] = 412, + [2730] = 410, + [2731] = 430, + [2732] = 450, + [2733] = 450, + [2734] = 425, + [2735] = 794, + [2736] = 761, + [2737] = 757, + [2738] = 450, + [2739] = 444, + [2740] = 440, + [2741] = 444, + [2742] = 762, + [2743] = 450, + [2744] = 442, [2745] = 448, - [2746] = 442, - [2747] = 791, - [2748] = 767, - [2749] = 767, - [2750] = 782, - [2751] = 782, - [2752] = 440, - [2753] = 453, - [2754] = 769, - [2755] = 442, - [2756] = 767, - [2757] = 806, - [2758] = 440, - [2759] = 448, - [2760] = 449, - [2761] = 448, - [2762] = 449, - [2763] = 453, - [2764] = 440, - [2765] = 442, - [2766] = 820, - [2767] = 486, - [2768] = 480, - [2769] = 511, - [2770] = 813, - [2771] = 819, - [2772] = 762, - [2773] = 791, - [2774] = 825, - [2775] = 488, - [2776] = 812, - [2777] = 782, - [2778] = 492, - [2779] = 493, - [2780] = 491, - [2781] = 814, - [2782] = 782, - [2783] = 490, - [2784] = 489, - [2785] = 489, - [2786] = 487, - [2787] = 482, - [2788] = 483, - [2789] = 484, - [2790] = 486, - [2791] = 487, + [2746] = 763, + [2747] = 448, + [2748] = 763, + [2749] = 761, + [2750] = 440, + [2751] = 442, + [2752] = 762, + [2753] = 444, + [2754] = 450, + [2755] = 763, + [2756] = 761, + [2757] = 448, + [2758] = 450, + [2759] = 440, + [2760] = 440, + [2761] = 802, + [2762] = 442, + [2763] = 444, + [2764] = 442, + [2765] = 448, + [2766] = 485, + [2767] = 512, + [2768] = 512, + [2769] = 505, + [2770] = 498, + [2771] = 483, + [2772] = 825, + [2773] = 487, + [2774] = 489, + [2775] = 813, + [2776] = 490, + [2777] = 489, + [2778] = 818, + [2779] = 484, + [2780] = 822, + [2781] = 480, + [2782] = 484, + [2783] = 817, + [2784] = 819, + [2785] = 814, + [2786] = 815, + [2787] = 491, + [2788] = 493, + [2789] = 757, + [2790] = 816, + [2791] = 505, [2792] = 490, - [2793] = 479, - [2794] = 824, - [2795] = 492, - [2796] = 484, - [2797] = 483, - [2798] = 511, - [2799] = 815, - [2800] = 822, - [2801] = 817, - [2802] = 493, + [2793] = 821, + [2794] = 762, + [2795] = 491, + [2796] = 493, + [2797] = 479, + [2798] = 483, + [2799] = 479, + [2800] = 812, + [2801] = 496, + [2802] = 820, [2803] = 480, - [2804] = 816, - [2805] = 821, - [2806] = 491, - [2807] = 482, - [2808] = 479, - [2809] = 488, - [2810] = 484, - [2811] = 492, - [2812] = 848, - [2813] = 851, - [2814] = 857, - [2815] = 856, - [2816] = 834, - [2817] = 821, - [2818] = 767, - [2819] = 488, - [2820] = 492, - [2821] = 846, - [2822] = 837, - [2823] = 836, - [2824] = 853, - [2825] = 840, - [2826] = 843, - [2827] = 842, - [2828] = 482, - [2829] = 844, - [2830] = 852, - [2831] = 480, - [2832] = 479, - [2833] = 838, - [2834] = 860, - [2835] = 819, - [2836] = 493, - [2837] = 827, - [2838] = 858, - [2839] = 511, - [2840] = 841, - [2841] = 480, - [2842] = 491, - [2843] = 826, - [2844] = 769, - [2845] = 832, - [2846] = 812, - [2847] = 812, - [2848] = 839, - [2849] = 490, - [2850] = 489, - [2851] = 487, - [2852] = 482, - [2853] = 486, - [2854] = 483, - [2855] = 845, - [2856] = 813, - [2857] = 817, - [2858] = 825, - [2859] = 484, - [2860] = 511, - [2861] = 486, - [2862] = 487, - [2863] = 483, - [2864] = 855, - [2865] = 850, - [2866] = 488, - [2867] = 822, - [2868] = 831, + [2804] = 762, + [2805] = 487, + [2806] = 485, + [2807] = 794, + [2808] = 496, + [2809] = 498, + [2810] = 855, + [2811] = 802, + [2812] = 496, + [2813] = 479, + [2814] = 493, + [2815] = 839, + [2816] = 491, + [2817] = 490, + [2818] = 828, + [2819] = 820, + [2820] = 842, + [2821] = 489, + [2822] = 484, + [2823] = 827, + [2824] = 837, + [2825] = 487, + [2826] = 493, + [2827] = 838, + [2828] = 849, + [2829] = 491, + [2830] = 490, + [2831] = 484, + [2832] = 846, + [2833] = 498, + [2834] = 479, + [2835] = 860, + [2836] = 859, + [2837] = 829, + [2838] = 489, + [2839] = 857, + [2840] = 487, + [2841] = 852, + [2842] = 485, + [2843] = 483, + [2844] = 850, + [2845] = 480, + [2846] = 483, + [2847] = 841, + [2848] = 763, + [2849] = 832, + [2850] = 856, + [2851] = 496, + [2852] = 821, + [2853] = 815, + [2854] = 498, + [2855] = 480, + [2856] = 845, + [2857] = 851, + [2858] = 847, + [2859] = 848, + [2860] = 505, + [2861] = 826, + [2862] = 512, + [2863] = 854, + [2864] = 485, + [2865] = 844, + [2866] = 813, + [2867] = 512, + [2868] = 840, [2869] = 830, - [2870] = 828, - [2871] = 489, - [2872] = 490, - [2873] = 847, - [2874] = 491, - [2875] = 806, - [2876] = 493, - [2877] = 479, - [2878] = 815, - [2879] = 835, - [2880] = 816, - [2881] = 813, - [2882] = 837, - [2883] = 882, - [2884] = 880, - [2885] = 511, - [2886] = 920, - [2887] = 492, - [2888] = 486, - [2889] = 824, - [2890] = 488, - [2891] = 851, - [2892] = 491, - [2893] = 846, - [2894] = 857, - [2895] = 493, - [2896] = 883, - [2897] = 892, - [2898] = 826, - [2899] = 812, - [2900] = 483, - [2901] = 838, - [2902] = 900, - [2903] = 479, - [2904] = 820, - [2905] = 884, - [2906] = 839, - [2907] = 885, - [2908] = 487, - [2909] = 814, - [2910] = 835, - [2911] = 489, - [2912] = 484, - [2913] = 896, - [2914] = 511, - [2915] = 490, - [2916] = 840, - [2917] = 486, - [2918] = 878, - [2919] = 893, - [2920] = 491, - [2921] = 891, - [2922] = 898, - [2923] = 815, - [2924] = 817, - [2925] = 862, - [2926] = 924, - [2927] = 819, - [2928] = 492, - [2929] = 480, - [2930] = 821, - [2931] = 921, - [2932] = 825, - [2933] = 493, - [2934] = 482, - [2935] = 488, - [2936] = 482, - [2937] = 923, - [2938] = 479, - [2939] = 820, - [2940] = 822, - [2941] = 480, - [2942] = 843, - [2943] = 487, - [2944] = 824, - [2945] = 869, - [2946] = 899, - [2947] = 834, - [2948] = 872, - [2949] = 877, - [2950] = 816, - [2951] = 489, - [2952] = 490, - [2953] = 918, - [2954] = 842, - [2955] = 841, - [2956] = 823, - [2957] = 911, - [2958] = 906, - [2959] = 908, - [2960] = 894, - [2961] = 823, - [2962] = 865, - [2963] = 881, - [2964] = 483, - [2965] = 905, - [2966] = 484, - [2967] = 910, - [2968] = 903, - [2969] = 943, - [2970] = 840, - [2971] = 838, - [2972] = 837, - [2973] = 857, - [2974] = 835, - [2975] = 827, - [2976] = 834, - [2977] = 791, - [2978] = 949, - [2979] = 782, - [2980] = 985, - [2981] = 782, - [2982] = 1007, - [2983] = 1012, - [2984] = 931, - [2985] = 1008, - [2986] = 981, - [2987] = 926, - [2988] = 858, - [2989] = 952, - [2990] = 945, - [2991] = 944, - [2992] = 978, - [2993] = 973, - [2994] = 848, - [2995] = 1009, - [2996] = 967, - [2997] = 836, - [2998] = 954, - [2999] = 968, - [3000] = 858, - [3001] = 966, - [3002] = 762, - [3003] = 853, - [3004] = 851, - [3005] = 844, - [3006] = 929, - [3007] = 852, - [3008] = 963, - [3009] = 961, - [3010] = 826, - [3011] = 959, - [3012] = 958, - [3013] = 957, - [3014] = 955, - [3015] = 836, - [3016] = 956, - [3017] = 853, - [3018] = 844, - [3019] = 864, - [3020] = 848, - [3021] = 852, - [3022] = 950, - [3023] = 946, - [3024] = 940, - [3025] = 935, - [3026] = 850, - [3027] = 855, - [3028] = 936, - [3029] = 846, - [3030] = 934, - [3031] = 972, - [3032] = 962, - [3033] = 847, - [3034] = 845, - [3035] = 965, - [3036] = 983, - [3037] = 986, - [3038] = 987, - [3039] = 988, - [3040] = 931, - [3041] = 953, - [3042] = 832, - [3043] = 870, - [3044] = 930, - [3045] = 960, - [3046] = 3046, - [3047] = 841, - [3048] = 842, - [3049] = 939, - [3050] = 843, - [3051] = 860, - [3052] = 887, - [3053] = 932, - [3054] = 928, - [3055] = 827, - [3056] = 839, - [3057] = 942, - [3058] = 905, - [3059] = 1059, - [3060] = 897, - [3061] = 862, - [3062] = 1118, - [3063] = 1085, - [3064] = 892, - [3065] = 878, - [3066] = 1107, - [3067] = 877, - [3068] = 869, - [3069] = 903, - [3070] = 883, - [3071] = 1162, - [3072] = 1092, - [3073] = 1169, - [3074] = 1106, - [3075] = 855, - [3076] = 865, - [3077] = 1120, - [3078] = 905, - [3079] = 806, - [3080] = 882, - [3081] = 1099, - [3082] = 908, - [3083] = 880, - [3084] = 1128, + [2870] = 815, + [2871] = 825, + [2872] = 819, + [2873] = 836, + [2874] = 761, + [2875] = 853, + [2876] = 814, + [2877] = 816, + [2878] = 858, + [2879] = 505, + [2880] = 910, + [2881] = 823, + [2882] = 823, + [2883] = 899, + [2884] = 479, + [2885] = 812, + [2886] = 480, + [2887] = 483, + [2888] = 817, + [2889] = 496, + [2890] = 886, + [2891] = 496, + [2892] = 479, + [2893] = 493, + [2894] = 820, + [2895] = 925, + [2896] = 812, + [2897] = 480, + [2898] = 916, + [2899] = 491, + [2900] = 854, + [2901] = 490, + [2902] = 491, + [2903] = 822, + [2904] = 913, + [2905] = 905, + [2906] = 918, + [2907] = 915, + [2908] = 490, + [2909] = 844, + [2910] = 822, + [2911] = 920, + [2912] = 819, + [2913] = 921, + [2914] = 852, + [2915] = 924, + [2916] = 842, + [2917] = 874, + [2918] = 903, + [2919] = 489, + [2920] = 487, + [2921] = 876, + [2922] = 489, + [2923] = 487, + [2924] = 815, + [2925] = 894, + [2926] = 922, + [2927] = 827, + [2928] = 867, + [2929] = 883, + [2930] = 869, + [2931] = 868, + [2932] = 887, + [2933] = 857, + [2934] = 498, + [2935] = 484, + [2936] = 836, + [2937] = 484, + [2938] = 498, + [2939] = 879, + [2940] = 859, + [2941] = 923, + [2942] = 895, + [2943] = 817, + [2944] = 485, + [2945] = 825, + [2946] = 828, + [2947] = 839, + [2948] = 505, + [2949] = 917, + [2950] = 512, + [2951] = 505, + [2952] = 865, + [2953] = 485, + [2954] = 512, + [2955] = 483, + [2956] = 853, + [2957] = 816, + [2958] = 875, + [2959] = 860, + [2960] = 901, + [2961] = 814, + [2962] = 873, + [2963] = 813, + [2964] = 818, + [2965] = 493, + [2966] = 821, + [2967] = 849, + [2968] = 902, + [2969] = 946, + [2970] = 966, + [2971] = 839, + [2972] = 945, + [2973] = 854, + [2974] = 849, + [2975] = 860, + [2976] = 944, + [2977] = 943, + [2978] = 828, + [2979] = 940, + [2980] = 853, + [2981] = 859, + [2982] = 827, + [2983] = 850, + [2984] = 857, + [2985] = 852, + [2986] = 975, + [2987] = 884, + [2988] = 937, + [2989] = 836, + [2990] = 955, + [2991] = 976, + [2992] = 842, + [2993] = 956, + [2994] = 977, + [2995] = 953, + [2996] = 978, + [2997] = 858, + [2998] = 844, + [2999] = 830, + [3000] = 840, + [3001] = 856, + [3002] = 957, + [3003] = 936, + [3004] = 958, + [3005] = 959, + [3006] = 935, + [3007] = 960, + [3008] = 891, + [3009] = 930, + [3010] = 928, + [3011] = 929, + [3012] = 962, + [3013] = 988, + [3014] = 762, + [3015] = 850, + [3016] = 963, + [3017] = 964, + [3018] = 965, + [3019] = 932, + [3020] = 855, + [3021] = 967, + [3022] = 939, + [3023] = 3023, + [3024] = 933, + [3025] = 927, + [3026] = 968, + [3027] = 846, + [3028] = 969, + [3029] = 845, + [3030] = 847, + [3031] = 970, + [3032] = 848, + [3033] = 938, + [3034] = 982, + [3035] = 983, + [3036] = 826, + [3037] = 838, + [3038] = 971, + [3039] = 848, + [3040] = 972, + [3041] = 934, + [3042] = 974, + [3043] = 846, + [3044] = 838, + [3045] = 847, + [3046] = 961, + [3047] = 987, + [3048] = 893, + [3049] = 832, + [3050] = 762, + [3051] = 845, + [3052] = 757, + [3053] = 954, + [3054] = 934, + [3055] = 826, + [3056] = 794, + [3057] = 1003, + [3058] = 1112, + [3059] = 1150, + [3060] = 1079, + [3061] = 913, + [3062] = 1077, + [3063] = 1076, + [3064] = 1075, + [3065] = 1073, + [3066] = 841, + [3067] = 1071, + [3068] = 1070, + [3069] = 837, + [3070] = 868, + [3071] = 869, + [3072] = 802, + [3073] = 1069, + [3074] = 1067, + [3075] = 1065, + [3076] = 1060, + [3077] = 1054, + [3078] = 830, + [3079] = 1050, + [3080] = 840, + [3081] = 1046, + [3082] = 1042, + [3083] = 1105, + [3084] = 876, [3085] = 910, - [3086] = 938, - [3087] = 941, - [3088] = 1139, - [3089] = 1051, - [3090] = 1097, - [3091] = 1078, - [3092] = 1164, - [3093] = 1157, - [3094] = 1153, - [3095] = 896, - [3096] = 900, - [3097] = 920, - [3098] = 1042, - [3099] = 1170, - [3100] = 1060, - [3101] = 884, - [3102] = 1140, - [3103] = 1176, - [3104] = 1126, - [3105] = 1087, - [3106] = 1105, - [3107] = 1065, - [3108] = 856, - [3109] = 869, - [3110] = 1160, - [3111] = 850, - [3112] = 1104, - [3113] = 1103, - [3114] = 898, - [3115] = 924, - [3116] = 3116, - [3117] = 1100, + [3086] = 874, + [3087] = 1040, + [3088] = 851, + [3089] = 921, + [3090] = 889, + [3091] = 920, + [3092] = 1039, + [3093] = 924, + [3094] = 924, + [3095] = 1059, + [3096] = 815, + [3097] = 1066, + [3098] = 1068, + [3099] = 913, + [3100] = 905, + [3101] = 1034, + [3102] = 1033, + [3103] = 1030, + [3104] = 1029, + [3105] = 1081, + [3106] = 1094, + [3107] = 1027, + [3108] = 1096, + [3109] = 910, + [3110] = 1055, + [3111] = 1097, + [3112] = 1056, + [3113] = 1082, + [3114] = 1111, + [3115] = 1057, + [3116] = 1083, + [3117] = 879, [3118] = 1058, - [3119] = 1015, - [3120] = 1075, - [3121] = 1023, - [3122] = 923, - [3123] = 1028, - [3124] = 856, - [3125] = 899, - [3126] = 865, - [3127] = 1138, - [3128] = 1152, - [3129] = 1033, - [3130] = 1143, - [3131] = 1122, - [3132] = 1048, - [3133] = 1125, - [3134] = 1038, - [3135] = 1093, - [3136] = 1145, - [3137] = 885, - [3138] = 1050, - [3139] = 1053, - [3140] = 1072, - [3141] = 1036, - [3142] = 1034, - [3143] = 1131, - [3144] = 872, - [3145] = 879, - [3146] = 1130, - [3147] = 1163, - [3148] = 1124, - [3149] = 1108, - [3150] = 1055, - [3151] = 1141, - [3152] = 1123, - [3153] = 1142, - [3154] = 1056, - [3155] = 911, - [3156] = 1016, - [3157] = 898, - [3158] = 1114, - [3159] = 1183, - [3160] = 1148, - [3161] = 1150, - [3162] = 828, - [3163] = 878, - [3164] = 832, - [3165] = 921, - [3166] = 1067, - [3167] = 1098, - [3168] = 1014, - [3169] = 1121, - [3170] = 1068, - [3171] = 864, - [3172] = 1102, - [3173] = 893, - [3174] = 1060, - [3175] = 891, - [3176] = 1073, - [3177] = 1137, - [3178] = 845, - [3179] = 1116, - [3180] = 847, - [3181] = 1065, - [3182] = 830, - [3183] = 831, - [3184] = 881, - [3185] = 1134, - [3186] = 1064, - [3187] = 1132, - [3188] = 1136, - [3189] = 1178, - [3190] = 896, + [3119] = 1084, + [3120] = 1120, + [3121] = 1085, + [3122] = 918, + [3123] = 1025, + [3124] = 1122, + [3125] = 1126, + [3126] = 820, + [3127] = 837, + [3128] = 1023, + [3129] = 903, + [3130] = 875, + [3131] = 1072, + [3132] = 1020, + [3133] = 1019, + [3134] = 1078, + [3135] = 1018, + [3136] = 1037, + [3137] = 1017, + [3138] = 922, + [3139] = 923, + [3140] = 1086, + [3141] = 1130, + [3142] = 1087, + [3143] = 1016, + [3144] = 1095, + [3145] = 1088, + [3146] = 873, + [3147] = 1089, + [3148] = 1061, + [3149] = 858, + [3150] = 856, + [3151] = 1107, + [3152] = 867, + [3153] = 1131, + [3154] = 1062, + [3155] = 855, + [3156] = 1015, + [3157] = 1090, + [3158] = 1091, + [3159] = 1147, + [3160] = 1132, + [3161] = 1092, + [3162] = 899, + [3163] = 1093, + [3164] = 1061, + [3165] = 1062, + [3166] = 1116, + [3167] = 1133, + [3168] = 829, + [3169] = 865, + [3170] = 1098, + [3171] = 1134, + [3172] = 1135, + [3173] = 1117, + [3174] = 1014, + [3175] = 917, + [3176] = 1099, + [3177] = 893, + [3178] = 1118, + [3179] = 1100, + [3180] = 1102, + [3181] = 1104, + [3182] = 1106, + [3183] = 1123, + [3184] = 1108, + [3185] = 1152, + [3186] = 903, + [3187] = 1110, + [3188] = 1170, + [3189] = 918, + [3190] = 922, [3191] = 1113, - [3192] = 1174, - [3193] = 910, - [3194] = 1040, - [3195] = 1043, - [3196] = 860, - [3197] = 1165, + [3192] = 883, + [3193] = 899, + [3194] = 915, + [3195] = 1127, + [3196] = 1129, + [3197] = 985, [3198] = 894, - [3199] = 1119, - [3200] = 813, - [3201] = 1076, - [3202] = 1052, - [3203] = 1109, - [3204] = 1054, - [3205] = 1057, - [3206] = 1112, - [3207] = 1144, - [3208] = 870, - [3209] = 903, - [3210] = 831, + [3199] = 886, + [3200] = 925, + [3201] = 3201, + [3202] = 864, + [3203] = 1154, + [3204] = 1140, + [3205] = 902, + [3206] = 832, + [3207] = 1155, + [3208] = 901, + [3209] = 1148, + [3210] = 1157, [3211] = 1149, - [3212] = 830, - [3213] = 906, - [3214] = 1062, - [3215] = 1151, - [3216] = 1081, - [3217] = 925, - [3218] = 1179, - [3219] = 933, - [3220] = 1154, - [3221] = 1177, - [3222] = 1155, - [3223] = 1171, - [3224] = 1071, - [3225] = 1086, - [3226] = 831, - [3227] = 1091, - [3228] = 1077, - [3229] = 1090, - [3230] = 908, - [3231] = 1101, - [3232] = 1147, - [3233] = 1111, - [3234] = 1115, - [3235] = 911, - [3236] = 872, - [3237] = 1117, + [3212] = 1080, + [3213] = 1101, + [3214] = 916, + [3215] = 891, + [3216] = 1159, + [3217] = 886, + [3218] = 1047, + [3219] = 1151, + [3220] = 1160, + [3221] = 1153, + [3222] = 1048, + [3223] = 1161, + [3224] = 1165, + [3225] = 1049, + [3226] = 1164, + [3227] = 1109, + [3228] = 1162, + [3229] = 915, + [3230] = 1074, + [3231] = 865, + [3232] = 916, + [3233] = 1166, + [3234] = 1163, + [3235] = 1168, + [3236] = 1171, + [3237] = 1051, [3238] = 1167, - [3239] = 1013, - [3240] = 1083, - [3241] = 1172, - [3242] = 1063, - [3243] = 1127, - [3244] = 1173, - [3245] = 1129, - [3246] = 1133, - [3247] = 1110, - [3248] = 1175, - [3249] = 887, - [3250] = 1080, - [3251] = 893, - [3252] = 812, - [3253] = 1079, - [3254] = 1166, - [3255] = 1168, - [3256] = 1186, - [3257] = 1180, - [3258] = 1061, - [3259] = 1047, - [3260] = 1070, - [3261] = 1066, - [3262] = 918, - [3263] = 1185, - [3264] = 1181, - [3265] = 899, - [3266] = 830, - [3267] = 1184, - [3268] = 831, - [3269] = 1182, - [3270] = 830, - [3271] = 934, - [3272] = 817, - [3273] = 814, - [3274] = 955, - [3275] = 371, - [3276] = 938, - [3277] = 831, - [3278] = 941, - [3279] = 830, - [3280] = 363, - [3281] = 957, - [3282] = 932, - [3283] = 928, - [3284] = 933, - [3285] = 954, - [3286] = 362, - [3287] = 959, - [3288] = 360, - [3289] = 939, - [3290] = 815, - [3291] = 815, - [3292] = 961, - [3293] = 816, - [3294] = 988, - [3295] = 963, - [3296] = 824, - [3297] = 825, - [3298] = 821, - [3299] = 951, - [3300] = 929, - [3301] = 931, - [3302] = 983, - [3303] = 986, - [3304] = 962, - [3305] = 823, - [3306] = 820, - [3307] = 359, - [3308] = 965, - [3309] = 942, - [3310] = 944, - [3311] = 987, - [3312] = 966, - [3313] = 950, - [3314] = 960, - [3315] = 945, - [3316] = 930, - [3317] = 948, - [3318] = 972, - [3319] = 956, - [3320] = 819, - [3321] = 825, - [3322] = 822, - [3323] = 946, - [3324] = 378, - [3325] = 813, - [3326] = 815, - [3327] = 952, - [3328] = 817, - [3329] = 958, - [3330] = 819, - [3331] = 825, - [3332] = 822, - [3333] = 943, - [3334] = 936, - [3335] = 968, - [3336] = 985, - [3337] = 368, - [3338] = 377, - [3339] = 1007, - [3340] = 953, - [3341] = 1012, - [3342] = 817, - [3343] = 379, - [3344] = 372, - [3345] = 940, - [3346] = 819, - [3347] = 822, - [3348] = 967, - [3349] = 979, - [3350] = 1008, - [3351] = 935, - [3352] = 367, - [3353] = 366, - [3354] = 365, - [3355] = 981, - [3356] = 926, - [3357] = 364, - [3358] = 370, - [3359] = 373, - [3360] = 374, - [3361] = 375, - [3362] = 978, - [3363] = 973, - [3364] = 812, - [3365] = 1009, - [3366] = 835, - [3367] = 1059, - [3368] = 860, - [3369] = 856, - [3370] = 855, - [3371] = 850, - [3372] = 1075, - [3373] = 1125, - [3374] = 1060, - [3375] = 840, - [3376] = 843, - [3377] = 842, - [3378] = 841, - [3379] = 826, - [3380] = 1065, - [3381] = 830, - [3382] = 831, - [3383] = 3383, - [3384] = 1060, - [3385] = 857, - [3386] = 851, - [3387] = 1128, - [3388] = 1134, - [3389] = 1163, - [3390] = 1170, - [3391] = 1169, - [3392] = 1162, - [3393] = 831, - [3394] = 1085, - [3395] = 830, - [3396] = 1120, - [3397] = 852, - [3398] = 1139, - [3399] = 1179, - [3400] = 844, - [3401] = 1078, - [3402] = 1114, - [3403] = 1183, - [3404] = 826, - [3405] = 1121, - [3406] = 962, - [3407] = 841, - [3408] = 1109, - [3409] = 1081, - [3410] = 842, - [3411] = 1070, - [3412] = 1066, - [3413] = 1177, - [3414] = 843, - [3415] = 840, - [3416] = 1047, - [3417] = 846, - [3418] = 851, - [3419] = 853, - [3420] = 1171, - [3421] = 1061, - [3422] = 1065, - [3423] = 836, - [3424] = 831, - [3425] = 1160, - [3426] = 857, - [3427] = 1147, - [3428] = 1149, - [3429] = 830, - [3430] = 1131, - [3431] = 1034, - [3432] = 1090, - [3433] = 1164, - [3434] = 1165, - [3435] = 1070, - [3436] = 830, - [3437] = 1066, - [3438] = 831, - [3439] = 848, - [3440] = 1036, - [3441] = 1038, - [3442] = 1186, - [3443] = 952, - [3444] = 945, - [3445] = 944, - [3446] = 831, - [3447] = 1174, - [3448] = 3448, - [3449] = 3449, - [3450] = 830, - [3451] = 1178, - [3452] = 1014, - [3453] = 1150, - [3454] = 1157, - [3455] = 1153, - [3456] = 830, - [3457] = 1140, - [3458] = 1126, - [3459] = 1105, - [3460] = 1148, - [3461] = 831, - [3462] = 1142, - [3463] = 1104, - [3464] = 1103, - [3465] = 1141, - [3466] = 1100, - [3467] = 1058, - [3468] = 1015, - [3469] = 1023, - [3470] = 1028, - [3471] = 1130, - [3472] = 1152, - [3473] = 1122, - [3474] = 1048, - [3475] = 1050, - [3476] = 1053, - [3477] = 1072, - [3478] = 1108, - [3479] = 1119, - [3480] = 1175, - [3481] = 1132, - [3482] = 1136, - [3483] = 936, - [3484] = 1118, - [3485] = 934, - [3486] = 1116, - [3487] = 1144, - [3488] = 1113, - [3489] = 1151, - [3490] = 1154, - [3491] = 1155, - [3492] = 1167, - [3493] = 1112, - [3494] = 1172, - [3495] = 1173, - [3496] = 1110, - [3497] = 1064, - [3498] = 821, - [3499] = 1180, - [3500] = 1013, - [3501] = 1181, - [3502] = 1182, - [3503] = 1107, - [3504] = 1184, - [3505] = 1106, - [3506] = 1099, - [3507] = 1185, - [3508] = 1097, - [3509] = 1168, - [3510] = 1166, - [3511] = 1093, - [3512] = 1087, - [3513] = 1083, - [3514] = 1133, - [3515] = 1129, - [3516] = 1127, - [3517] = 932, - [3518] = 928, - [3519] = 1080, - [3520] = 1079, - [3521] = 1117, - [3522] = 1077, - [3523] = 1076, - [3524] = 1115, - [3525] = 1111, - [3526] = 1056, - [3527] = 1101, - [3528] = 1073, - [3529] = 1068, - [3530] = 1091, - [3531] = 1067, - [3532] = 1086, - [3533] = 1071, - [3534] = 1055, - [3535] = 887, - [3536] = 1062, - [3537] = 846, - [3538] = 3538, - [3539] = 1057, - [3540] = 939, - [3541] = 1054, - [3542] = 815, - [3543] = 1052, - [3544] = 817, - [3545] = 819, - [3546] = 839, - [3547] = 825, - [3548] = 1043, - [3549] = 1040, - [3550] = 838, - [3551] = 1042, - [3552] = 822, - [3553] = 847, - [3554] = 837, - [3555] = 845, - [3556] = 835, - [3557] = 834, - [3558] = 881, - [3559] = 1137, - [3560] = 870, - [3561] = 827, - [3562] = 1102, - [3563] = 858, - [3564] = 1098, - [3565] = 815, - [3566] = 817, - [3567] = 819, - [3568] = 1176, - [3569] = 825, - [3570] = 1138, - [3571] = 1063, - [3572] = 822, - [3573] = 864, - [3574] = 1143, - [3575] = 1033, - [3576] = 891, + [3239] = 875, + [3240] = 904, + [3241] = 1176, + [3242] = 980, + [3243] = 837, + [3244] = 1177, + [3245] = 1169, + [3246] = 1174, + [3247] = 1124, + [3248] = 841, + [3249] = 895, + [3250] = 1180, + [3251] = 1013, + [3252] = 1181, + [3253] = 1182, + [3254] = 1053, + [3255] = 1175, + [3256] = 884, + [3257] = 841, + [3258] = 1178, + [3259] = 887, + [3260] = 1179, + [3261] = 1183, + [3262] = 1184, + [3263] = 837, + [3264] = 979, + [3265] = 1185, + [3266] = 1052, + [3267] = 829, + [3268] = 841, + [3269] = 925, + [3270] = 1186, + [3271] = 813, + [3272] = 360, + [3273] = 930, + [3274] = 816, + [3275] = 929, + [3276] = 814, + [3277] = 821, + [3278] = 935, + [3279] = 980, + [3280] = 979, + [3281] = 813, + [3282] = 814, + [3283] = 816, + [3284] = 825, + [3285] = 821, + [3286] = 814, + [3287] = 936, + [3288] = 821, + [3289] = 813, + [3290] = 823, + [3291] = 370, + [3292] = 934, + [3293] = 825, + [3294] = 816, + [3295] = 373, + [3296] = 1003, + [3297] = 375, + [3298] = 376, + [3299] = 940, + [3300] = 988, + [3301] = 372, + [3302] = 943, + [3303] = 944, + [3304] = 945, + [3305] = 976, + [3306] = 946, + [3307] = 841, + [3308] = 978, + [3309] = 837, + [3310] = 938, + [3311] = 933, + [3312] = 982, + [3313] = 983, + [3314] = 953, + [3315] = 932, + [3316] = 977, + [3317] = 825, + [3318] = 928, + [3319] = 985, + [3320] = 927, + [3321] = 815, + [3322] = 374, + [3323] = 365, + [3324] = 956, + [3325] = 957, + [3326] = 377, + [3327] = 958, + [3328] = 366, + [3329] = 959, + [3330] = 960, + [3331] = 378, + [3332] = 819, + [3333] = 368, + [3334] = 820, + [3335] = 822, + [3336] = 812, + [3337] = 961, + [3338] = 937, + [3339] = 955, + [3340] = 362, + [3341] = 364, + [3342] = 974, + [3343] = 987, + [3344] = 990, + [3345] = 972, + [3346] = 379, + [3347] = 1009, + [3348] = 971, + [3349] = 818, + [3350] = 975, + [3351] = 970, + [3352] = 371, + [3353] = 969, + [3354] = 361, + [3355] = 367, + [3356] = 968, + [3357] = 984, + [3358] = 967, + [3359] = 966, + [3360] = 965, + [3361] = 939, + [3362] = 964, + [3363] = 963, + [3364] = 962, + [3365] = 817, + [3366] = 1104, + [3367] = 1015, + [3368] = 1132, + [3369] = 1134, + [3370] = 832, + [3371] = 1131, + [3372] = 1130, + [3373] = 1126, + [3374] = 846, + [3375] = 891, + [3376] = 1122, + [3377] = 1014, + [3378] = 1120, + [3379] = 893, + [3380] = 838, + [3381] = 1152, + [3382] = 1111, + [3383] = 1097, + [3384] = 1059, + [3385] = 1165, + [3386] = 1170, + [3387] = 1096, + [3388] = 1154, + [3389] = 1155, + [3390] = 873, + [3391] = 1062, + [3392] = 1157, + [3393] = 1094, + [3394] = 1081, + [3395] = 1159, + [3396] = 1068, + [3397] = 3397, + [3398] = 827, + [3399] = 828, + [3400] = 1066, + [3401] = 1162, + [3402] = 839, + [3403] = 819, + [3404] = 849, + [3405] = 860, + [3406] = 1163, + [3407] = 859, + [3408] = 857, + [3409] = 1167, + [3410] = 1169, + [3411] = 829, + [3412] = 852, + [3413] = 1174, + [3414] = 841, + [3415] = 1124, + [3416] = 837, + [3417] = 1055, + [3418] = 826, + [3419] = 975, + [3420] = 1056, + [3421] = 848, + [3422] = 813, + [3423] = 1057, + [3424] = 847, + [3425] = 1058, + [3426] = 845, + [3427] = 1061, + [3428] = 837, + [3429] = 841, + [3430] = 1013, + [3431] = 3431, + [3432] = 3432, + [3433] = 1052, + [3434] = 1053, + [3435] = 1175, + [3436] = 837, + [3437] = 841, + [3438] = 830, + [3439] = 1061, + [3440] = 840, + [3441] = 821, + [3442] = 1072, + [3443] = 1078, + [3444] = 1086, + [3445] = 1178, + [3446] = 1179, + [3447] = 1095, + [3448] = 1062, + [3449] = 1051, + [3450] = 1049, + [3451] = 1185, + [3452] = 1186, + [3453] = 1107, + [3454] = 976, + [3455] = 855, + [3456] = 1053, + [3457] = 977, + [3458] = 837, + [3459] = 978, + [3460] = 1052, + [3461] = 1184, + [3462] = 3462, + [3463] = 841, + [3464] = 1183, + [3465] = 1182, + [3466] = 1181, + [3467] = 1180, + [3468] = 1177, + [3469] = 1176, + [3470] = 852, + [3471] = 1105, + [3472] = 825, + [3473] = 1135, + [3474] = 841, + [3475] = 837, + [3476] = 1171, + [3477] = 857, + [3478] = 859, + [3479] = 1160, + [3480] = 860, + [3481] = 1168, + [3482] = 1166, + [3483] = 849, + [3484] = 1116, + [3485] = 1164, + [3486] = 1147, + [3487] = 839, + [3488] = 828, + [3489] = 1074, + [3490] = 827, + [3491] = 1133, + [3492] = 854, + [3493] = 850, + [3494] = 1016, + [3495] = 982, + [3496] = 983, + [3497] = 1161, + [3498] = 844, + [3499] = 1017, + [3500] = 842, + [3501] = 1153, + [3502] = 1151, + [3503] = 1150, + [3504] = 884, + [3505] = 846, + [3506] = 1018, + [3507] = 816, + [3508] = 1149, + [3509] = 836, + [3510] = 841, + [3511] = 837, + [3512] = 853, + [3513] = 1148, + [3514] = 1019, + [3515] = 1117, + [3516] = 867, + [3517] = 814, + [3518] = 1020, + [3519] = 904, + [3520] = 1047, + [3521] = 1048, + [3522] = 1049, + [3523] = 814, + [3524] = 1109, + [3525] = 1051, + [3526] = 813, + [3527] = 961, + [3528] = 987, + [3529] = 854, + [3530] = 821, + [3531] = 1023, + [3532] = 854, + [3533] = 844, + [3534] = 842, + [3535] = 1048, + [3536] = 1101, + [3537] = 1047, + [3538] = 836, + [3539] = 1025, + [3540] = 853, + [3541] = 1027, + [3542] = 1029, + [3543] = 1030, + [3544] = 1140, + [3545] = 1033, + [3546] = 1034, + [3547] = 1037, + [3548] = 844, + [3549] = 1118, + [3550] = 988, + [3551] = 838, + [3552] = 1098, + [3553] = 1039, + [3554] = 1040, + [3555] = 1123, + [3556] = 825, + [3557] = 1042, + [3558] = 1046, + [3559] = 842, + [3560] = 1050, + [3561] = 1054, + [3562] = 1060, + [3563] = 1065, + [3564] = 850, + [3565] = 1067, + [3566] = 1113, + [3567] = 1112, + [3568] = 1110, + [3569] = 1108, + [3570] = 1106, + [3571] = 856, + [3572] = 816, + [3573] = 1102, + [3574] = 1100, + [3575] = 1099, + [3576] = 1093, [3577] = 1092, - [3578] = 1051, - [3579] = 1131, - [3580] = 848, - [3581] = 1034, - [3582] = 1036, - [3583] = 858, - [3584] = 1016, - [3585] = 827, - [3586] = 1038, - [3587] = 925, - [3588] = 839, - [3589] = 1145, - [3590] = 834, - [3591] = 838, - [3592] = 837, - [3593] = 838, - [3594] = 1123, - [3595] = 839, - [3596] = 1124, - [3597] = 837, - [3598] = 832, - [3599] = 834, - [3600] = 835, - [3601] = 905, - [3602] = 881, - [3603] = 903, - [3604] = 3604, - [3605] = 908, - [3606] = 910, - [3607] = 816, - [3608] = 899, - [3609] = 898, - [3610] = 891, - [3611] = 872, - [3612] = 896, - [3613] = 869, - [3614] = 893, - [3615] = 827, - [3616] = 858, - [3617] = 3617, - [3618] = 921, - [3619] = 862, - [3620] = 839, - [3621] = 838, - [3622] = 837, - [3623] = 835, - [3624] = 834, - [3625] = 893, - [3626] = 822, - [3627] = 825, - [3628] = 869, - [3629] = 813, - [3630] = 872, - [3631] = 819, - [3632] = 924, - [3633] = 923, - [3634] = 817, - [3635] = 910, - [3636] = 908, - [3637] = 813, - [3638] = 815, - [3639] = 905, - [3640] = 839, - [3641] = 903, - [3642] = 838, - [3643] = 837, - [3644] = 812, - [3645] = 835, - [3646] = 899, - [3647] = 898, - [3648] = 834, - [3649] = 896, - [3650] = 877, - [3651] = 918, - [3652] = 941, - [3653] = 920, - [3654] = 892, - [3655] = 938, - [3656] = 906, - [3657] = 911, - [3658] = 1060, - [3659] = 894, - [3660] = 885, - [3661] = 884, - [3662] = 933, - [3663] = 857, - [3664] = 851, - [3665] = 883, - [3666] = 846, - [3667] = 882, - [3668] = 840, - [3669] = 848, - [3670] = 880, - [3671] = 911, - [3672] = 843, - [3673] = 842, - [3674] = 841, - [3675] = 826, - [3676] = 864, - [3677] = 951, - [3678] = 948, - [3679] = 813, - [3680] = 897, - [3681] = 1065, - [3682] = 900, - [3683] = 870, - [3684] = 979, - [3685] = 879, - [3686] = 824, - [3687] = 949, - [3688] = 887, - [3689] = 812, - [3690] = 830, - [3691] = 831, - [3692] = 931, - [3693] = 878, - [3694] = 826, - [3695] = 865, - [3696] = 841, - [3697] = 842, - [3698] = 843, - [3699] = 840, - [3700] = 812, - [3701] = 846, - [3702] = 851, - [3703] = 857, - [3704] = 830, - [3705] = 831, - [3706] = 925, - [3707] = 926, - [3708] = 858, - [3709] = 954, - [3710] = 943, - [3711] = 846, - [3712] = 359, - [3713] = 374, - [3714] = 373, - [3715] = 840, - [3716] = 935, - [3717] = 843, - [3718] = 842, - [3719] = 878, - [3720] = 370, - [3721] = 364, - [3722] = 365, - [3723] = 366, - [3724] = 367, - [3725] = 368, - [3726] = 372, - [3727] = 379, - [3728] = 985, - [3729] = 946, - [3730] = 378, - [3731] = 841, - [3732] = 865, - [3733] = 933, - [3734] = 950, - [3735] = 972, - [3736] = 938, - [3737] = 941, - [3738] = 979, - [3739] = 857, - [3740] = 834, - [3741] = 983, - [3742] = 986, - [3743] = 987, - [3744] = 835, - [3745] = 853, - [3746] = 988, - [3747] = 837, - [3748] = 838, - [3749] = 931, - [3750] = 878, - [3751] = 826, - [3752] = 949, - [3753] = 839, - [3754] = 865, - [3755] = 930, - [3756] = 960, - [3757] = 879, - [3758] = 836, - [3759] = 371, - [3760] = 363, - [3761] = 362, - [3762] = 1007, - [3763] = 896, - [3764] = 898, - [3765] = 899, - [3766] = 944, - [3767] = 852, - [3768] = 903, - [3769] = 905, - [3770] = 908, - [3771] = 1012, - [3772] = 910, - [3773] = 945, - [3774] = 952, - [3775] = 851, - [3776] = 956, - [3777] = 942, - [3778] = 3778, - [3779] = 1008, - [3780] = 872, - [3781] = 869, - [3782] = 893, - [3783] = 955, - [3784] = 939, - [3785] = 848, - [3786] = 962, - [3787] = 981, - [3788] = 931, - [3789] = 3789, - [3790] = 957, - [3791] = 958, - [3792] = 375, - [3793] = 959, - [3794] = 360, - [3795] = 951, - [3796] = 848, - [3797] = 929, - [3798] = 848, - [3799] = 897, - [3800] = 928, - [3801] = 932, - [3802] = 377, - [3803] = 940, - [3804] = 953, - [3805] = 978, - [3806] = 844, - [3807] = 858, - [3808] = 827, - [3809] = 961, - [3810] = 973, - [3811] = 963, - [3812] = 948, - [3813] = 920, - [3814] = 967, - [3815] = 965, - [3816] = 936, - [3817] = 858, - [3818] = 827, - [3819] = 934, - [3820] = 966, - [3821] = 827, - [3822] = 1009, - [3823] = 968, - [3824] = 1078, - [3825] = 1056, - [3826] = 1167, - [3827] = 1047, - [3828] = 1172, - [3829] = 1173, - [3830] = 893, - [3831] = 1175, - [3832] = 3832, - [3833] = 1162, - [3834] = 1180, - [3835] = 1169, - [3836] = 1181, - [3837] = 1182, - [3838] = 1170, - [3839] = 872, - [3840] = 881, - [3841] = 1184, - [3842] = 869, - [3843] = 1108, - [3844] = 1185, - [3845] = 869, - [3846] = 953, - [3847] = 831, - [3848] = 1168, - [3849] = 1140, - [3850] = 905, - [3851] = 872, - [3852] = 1081, - [3853] = 1166, - [3854] = 1109, - [3855] = 1179, - [3856] = 1057, - [3857] = 1061, - [3858] = 893, - [3859] = 1058, - [3860] = 1121, - [3861] = 1163, - [3862] = 1134, - [3863] = 1054, - [3864] = 1052, - [3865] = 872, - [3866] = 869, - [3867] = 1147, - [3868] = 1149, - [3869] = 1033, - [3870] = 1164, - [3871] = 1155, - [3872] = 1165, - [3873] = 1176, - [3874] = 1154, - [3875] = 1174, - [3876] = 893, - [3877] = 1178, - [3878] = 1128, - [3879] = 1125, - [3880] = 1160, - [3881] = 1014, - [3882] = 1150, - [3883] = 1183, - [3884] = 1042, - [3885] = 1171, - [3886] = 1148, - [3887] = 1142, - [3888] = 1141, - [3889] = 1101, - [3890] = 1126, - [3891] = 1130, - [3892] = 1085, - [3893] = 1087, - [3894] = 1122, - [3895] = 1075, - [3896] = 1151, - [3897] = 1120, - [3898] = 1133, - [3899] = 910, - [3900] = 1119, - [3901] = 1118, - [3902] = 1144, - [3903] = 896, - [3904] = 1063, - [3905] = 1116, - [3906] = 1179, - [3907] = 1129, - [3908] = 898, - [3909] = 1127, - [3910] = 1113, - [3911] = 1112, - [3912] = 1132, - [3913] = 1105, - [3914] = 899, - [3915] = 3915, - [3916] = 908, - [3917] = 1065, - [3918] = 1110, - [3919] = 956, - [3920] = 1013, - [3921] = 1104, - [3922] = 1107, - [3923] = 1106, - [3924] = 1099, - [3925] = 1097, - [3926] = 899, - [3927] = 1114, - [3928] = 1090, - [3929] = 359, - [3930] = 378, - [3931] = 1093, - [3932] = 1083, - [3933] = 1080, - [3934] = 1079, - [3935] = 1077, - [3936] = 1076, - [3937] = 898, - [3938] = 1073, - [3939] = 1068, - [3940] = 379, - [3941] = 903, - [3942] = 372, - [3943] = 368, - [3944] = 367, - [3945] = 366, - [3946] = 365, - [3947] = 364, - [3948] = 370, - [3949] = 896, - [3950] = 373, - [3951] = 826, - [3952] = 374, - [3953] = 1059, - [3954] = 375, - [3955] = 841, - [3956] = 842, - [3957] = 1117, - [3958] = 1067, - [3959] = 830, - [3960] = 1055, - [3961] = 3961, - [3962] = 1139, - [3963] = 843, - [3964] = 1062, - [3965] = 1043, - [3966] = 1060, - [3967] = 1072, - [3968] = 1053, - [3969] = 1040, - [3970] = 1050, - [3971] = 865, - [3972] = 840, - [3973] = 846, - [3974] = 891, - [3975] = 1092, - [3976] = 878, - [3977] = 1048, - [3978] = 1051, - [3979] = 851, - [3980] = 1066, - [3981] = 1070, - [3982] = 910, - [3983] = 1186, - [3984] = 931, - [3985] = 1152, - [3986] = 1090, - [3987] = 1071, - [3988] = 1103, - [3989] = 1186, - [3990] = 908, - [3991] = 857, - [3992] = 1086, - [3993] = 1064, - [3994] = 903, - [3995] = 905, - [3996] = 360, - [3997] = 1115, - [3998] = 1111, - [3999] = 1028, - [4000] = 4000, - [4001] = 1137, - [4002] = 931, - [4003] = 362, - [4004] = 363, - [4005] = 1157, - [4006] = 905, - [4007] = 1153, - [4008] = 1065, - [4009] = 1131, - [4010] = 908, - [4011] = 371, - [4012] = 910, - [4013] = 1034, - [4014] = 1036, - [4015] = 949, - [4016] = 1038, - [4017] = 1023, - [4018] = 1171, - [4019] = 1138, - [4020] = 1015, - [4021] = 1143, - [4022] = 1145, - [4023] = 1177, - [4024] = 830, - [4025] = 896, - [4026] = 1124, - [4027] = 1136, - [4028] = 1060, - [4029] = 1123, - [4030] = 1016, - [4031] = 1100, - [4032] = 831, - [4033] = 1102, - [4034] = 898, - [4035] = 1091, - [4036] = 1098, - [4037] = 899, - [4038] = 4038, - [4039] = 903, - [4040] = 1177, - [4041] = 825, - [4042] = 1131, - [4043] = 1070, - [4044] = 865, - [4045] = 1131, - [4046] = 1034, - [4047] = 865, - [4048] = 1036, - [4049] = 1038, - [4050] = 822, - [4051] = 825, - [4052] = 819, - [4053] = 831, - [4054] = 815, - [4055] = 831, - [4056] = 878, - [4057] = 920, - [4058] = 360, - [4059] = 1070, - [4060] = 1066, - [4061] = 878, - [4062] = 815, - [4063] = 371, - [4064] = 363, - [4065] = 1066, - [4066] = 362, - [4067] = 817, - [4068] = 378, - [4069] = 379, - [4070] = 372, - [4071] = 368, - [4072] = 375, - [4073] = 367, - [4074] = 366, - [4075] = 830, - [4076] = 365, - [4077] = 817, - [4078] = 364, - [4079] = 370, - [4080] = 373, - [4081] = 374, - [4082] = 359, - [4083] = 819, - [4084] = 822, - [4085] = 1034, - [4086] = 1036, - [4087] = 1038, - [4088] = 830, - [4089] = 831, - [4090] = 830, - [4091] = 831, - [4092] = 830, - [4093] = 817, - [4094] = 359, - [4095] = 1070, - [4096] = 365, - [4097] = 366, - [4098] = 1034, - [4099] = 367, - [4100] = 364, - [4101] = 825, - [4102] = 362, - [4103] = 370, - [4104] = 368, - [4105] = 373, - [4106] = 931, - [4107] = 1038, - [4108] = 374, - [4109] = 360, - [4110] = 839, - [4111] = 372, - [4112] = 379, - [4113] = 838, - [4114] = 835, - [4115] = 1131, - [4116] = 377, + [3578] = 1091, + [3579] = 1090, + [3580] = 1069, + [3581] = 1089, + [3582] = 1088, + [3583] = 1087, + [3584] = 1085, + [3585] = 1084, + [3586] = 1083, + [3587] = 1082, + [3588] = 1080, + [3589] = 1079, + [3590] = 858, + [3591] = 1070, + [3592] = 836, + [3593] = 1077, + [3594] = 1076, + [3595] = 1129, + [3596] = 1075, + [3597] = 1073, + [3598] = 1071, + [3599] = 1127, + [3600] = 853, + [3601] = 916, + [3602] = 867, + [3603] = 922, + [3604] = 925, + [3605] = 915, + [3606] = 902, + [3607] = 886, + [3608] = 1062, + [3609] = 903, + [3610] = 901, + [3611] = 923, + [3612] = 841, + [3613] = 873, + [3614] = 837, + [3615] = 836, + [3616] = 924, + [3617] = 934, + [3618] = 905, + [3619] = 954, + [3620] = 876, + [3621] = 910, + [3622] = 910, + [3623] = 893, + [3624] = 842, + [3625] = 827, + [3626] = 844, + [3627] = 984, + [3628] = 828, + [3629] = 1009, + [3630] = 839, + [3631] = 854, + [3632] = 922, + [3633] = 821, + [3634] = 849, + [3635] = 813, + [3636] = 903, + [3637] = 985, + [3638] = 860, + [3639] = 924, + [3640] = 814, + [3641] = 889, + [3642] = 820, + [3643] = 859, + [3644] = 857, + [3645] = 816, + [3646] = 1061, + [3647] = 852, + [3648] = 815, + [3649] = 841, + [3650] = 837, + [3651] = 904, + [3652] = 895, + [3653] = 3653, + [3654] = 812, + [3655] = 815, + [3656] = 891, + [3657] = 899, + [3658] = 990, + [3659] = 883, + [3660] = 869, + [3661] = 3661, + [3662] = 846, + [3663] = 838, + [3664] = 815, + [3665] = 852, + [3666] = 864, + [3667] = 857, + [3668] = 918, + [3669] = 921, + [3670] = 894, + [3671] = 859, + [3672] = 825, + [3673] = 879, + [3674] = 860, + [3675] = 853, + [3676] = 854, + [3677] = 884, + [3678] = 875, + [3679] = 920, + [3680] = 844, + [3681] = 849, + [3682] = 913, + [3683] = 915, + [3684] = 887, + [3685] = 874, + [3686] = 916, + [3687] = 853, + [3688] = 839, + [3689] = 925, + [3690] = 865, + [3691] = 850, + [3692] = 820, + [3693] = 828, + [3694] = 827, + [3695] = 980, + [3696] = 979, + [3697] = 868, + [3698] = 917, + [3699] = 822, + [3700] = 836, + [3701] = 918, + [3702] = 886, + [3703] = 820, + [3704] = 842, + [3705] = 913, + [3706] = 899, + [3707] = 987, + [3708] = 368, + [3709] = 957, + [3710] = 956, + [3711] = 946, + [3712] = 955, + [3713] = 846, + [3714] = 970, + [3715] = 847, + [3716] = 959, + [3717] = 960, + [3718] = 838, + [3719] = 939, + [3720] = 929, + [3721] = 985, + [3722] = 850, + [3723] = 928, + [3724] = 913, + [3725] = 918, + [3726] = 980, + [3727] = 854, + [3728] = 979, + [3729] = 969, + [3730] = 988, + [3731] = 361, + [3732] = 844, + [3733] = 899, + [3734] = 886, + [3735] = 865, + [3736] = 925, + [3737] = 924, + [3738] = 930, + [3739] = 875, + [3740] = 842, + [3741] = 845, + [3742] = 903, + [3743] = 963, + [3744] = 922, + [3745] = 935, + [3746] = 916, + [3747] = 983, + [3748] = 982, + [3749] = 938, + [3750] = 968, + [3751] = 370, + [3752] = 974, + [3753] = 990, + [3754] = 932, + [3755] = 374, + [3756] = 846, + [3757] = 3757, + [3758] = 1003, + [3759] = 372, + [3760] = 367, + [3761] = 377, + [3762] = 366, + [3763] = 378, + [3764] = 365, + [3765] = 1009, + [3766] = 958, + [3767] = 984, + [3768] = 964, + [3769] = 864, + [3770] = 836, + [3771] = 978, + [3772] = 853, + [3773] = 362, + [3774] = 364, + [3775] = 953, + [3776] = 977, + [3777] = 971, + [3778] = 966, + [3779] = 379, + [3780] = 933, + [3781] = 371, + [3782] = 874, + [3783] = 875, + [3784] = 943, + [3785] = 954, + [3786] = 360, + [3787] = 865, + [3788] = 936, + [3789] = 965, + [3790] = 934, + [3791] = 915, + [3792] = 967, + [3793] = 927, + [3794] = 3794, + [3795] = 852, + [3796] = 846, + [3797] = 838, + [3798] = 850, + [3799] = 850, + [3800] = 857, + [3801] = 976, + [3802] = 859, + [3803] = 376, + [3804] = 860, + [3805] = 849, + [3806] = 940, + [3807] = 375, + [3808] = 848, + [3809] = 839, + [3810] = 373, + [3811] = 944, + [3812] = 828, + [3813] = 826, + [3814] = 827, + [3815] = 937, + [3816] = 975, + [3817] = 972, + [3818] = 962, + [3819] = 945, + [3820] = 961, + [3821] = 889, + [3822] = 838, + [3823] = 934, + [3824] = 374, + [3825] = 966, + [3826] = 1166, + [3827] = 1089, + [3828] = 1068, + [3829] = 1088, + [3830] = 1066, + [3831] = 1087, + [3832] = 1098, + [3833] = 1159, + [3834] = 1085, + [3835] = 1091, + [3836] = 1084, + [3837] = 873, + [3838] = 1056, + [3839] = 1124, + [3840] = 1083, + [3841] = 1170, + [3842] = 1037, + [3843] = 1034, + [3844] = 1033, + [3845] = 1165, + [3846] = 1179, + [3847] = 1082, + [3848] = 1126, + [3849] = 1157, + [3850] = 915, + [3851] = 916, + [3852] = 1030, + [3853] = 1080, + [3854] = 1057, + [3855] = 1168, + [3856] = 1171, + [3857] = 1027, + [3858] = 1079, + [3859] = 1025, + [3860] = 925, + [3861] = 1162, + [3862] = 1163, + [3863] = 1100, + [3864] = 1155, + [3865] = 1059, + [3866] = 1167, + [3867] = 1062, + [3868] = 1110, + [3869] = 1169, + [3870] = 867, + [3871] = 1023, + [3872] = 1160, + [3873] = 1174, + [3874] = 1109, + [3875] = 1113, + [3876] = 1013, + [3877] = 1077, + [3878] = 1081, + [3879] = 1101, + [3880] = 1076, + [3881] = 886, + [3882] = 1154, + [3883] = 1075, + [3884] = 934, + [3885] = 1020, + [3886] = 1019, + [3887] = 1055, + [3888] = 1029, + [3889] = 1090, + [3890] = 1151, + [3891] = 1132, + [3892] = 913, + [3893] = 1153, + [3894] = 1050, + [3895] = 1053, + [3896] = 1052, + [3897] = 1056, + [3898] = 1073, + [3899] = 1094, + [3900] = 1108, + [3901] = 1122, + [3902] = 903, + [3903] = 841, + [3904] = 1112, + [3905] = 1039, + [3906] = 922, + [3907] = 922, + [3908] = 837, + [3909] = 1120, + [3910] = 875, + [3911] = 1111, + [3912] = 1040, + [3913] = 1071, + [3914] = 1123, + [3915] = 934, + [3916] = 1185, + [3917] = 954, + [3918] = 852, + [3919] = 1059, + [3920] = 837, + [3921] = 3921, + [3922] = 841, + [3923] = 1150, + [3924] = 1149, + [3925] = 918, + [3926] = 857, + [3927] = 859, + [3928] = 1148, + [3929] = 860, + [3930] = 1093, + [3931] = 849, + [3932] = 1099, + [3933] = 925, + [3934] = 839, + [3935] = 828, + [3936] = 1092, + [3937] = 1042, + [3938] = 1070, + [3939] = 1140, + [3940] = 1069, + [3941] = 827, + [3942] = 3942, + [3943] = 899, + [3944] = 1057, + [3945] = 1097, + [3946] = 1067, + [3947] = 1118, + [3948] = 1106, + [3949] = 865, + [3950] = 1117, + [3951] = 1186, + [3952] = 924, + [3953] = 1177, + [3954] = 1058, + [3955] = 1046, + [3956] = 1096, + [3957] = 1104, + [3958] = 1102, + [3959] = 3959, + [3960] = 913, + [3961] = 918, + [3962] = 1017, + [3963] = 899, + [3964] = 1164, + [3965] = 1016, + [3966] = 1131, + [3967] = 1095, + [3968] = 886, + [3969] = 1074, + [3970] = 1152, + [3971] = 1181, + [3972] = 922, + [3973] = 1065, + [3974] = 1014, + [3975] = 1135, + [3976] = 1182, + [3977] = 1060, + [3978] = 915, + [3979] = 903, + [3980] = 1116, + [3981] = 1129, + [3982] = 1061, + [3983] = 377, + [3984] = 366, + [3985] = 378, + [3986] = 368, + [3987] = 362, + [3988] = 364, + [3989] = 379, + [3990] = 1183, + [3991] = 1015, + [3992] = 1147, + [3993] = 371, + [3994] = 361, + [3995] = 1061, + [3996] = 1018, + [3997] = 367, + [3998] = 886, + [3999] = 939, + [4000] = 1127, + [4001] = 1062, + [4002] = 4002, + [4003] = 916, + [4004] = 1184, + [4005] = 1107, + [4006] = 1161, + [4007] = 1180, + [4008] = 360, + [4009] = 903, + [4010] = 1047, + [4011] = 925, + [4012] = 1048, + [4013] = 916, + [4014] = 1054, + [4015] = 1049, + [4016] = 1051, + [4017] = 1086, + [4018] = 370, + [4019] = 376, + [4020] = 375, + [4021] = 373, + [4022] = 372, + [4023] = 1105, + [4024] = 924, + [4025] = 1134, + [4026] = 1133, + [4027] = 915, + [4028] = 1176, + [4029] = 913, + [4030] = 918, + [4031] = 1130, + [4032] = 1078, + [4033] = 899, + [4034] = 4034, + [4035] = 924, + [4036] = 1058, + [4037] = 1175, + [4038] = 1055, + [4039] = 1072, + [4040] = 1178, + [4041] = 1052, + [4042] = 377, + [4043] = 371, + [4044] = 875, + [4045] = 837, + [4046] = 841, + [4047] = 366, + [4048] = 378, + [4049] = 1051, + [4050] = 1049, + [4051] = 361, + [4052] = 1047, + [4053] = 360, + [4054] = 1048, + [4055] = 1047, + [4056] = 368, + [4057] = 825, + [4058] = 865, + [4059] = 362, + [4060] = 370, + [4061] = 374, + [4062] = 367, + [4063] = 813, + [4064] = 814, + [4065] = 816, + [4066] = 364, + [4067] = 814, + [4068] = 837, + [4069] = 813, + [4070] = 841, + [4071] = 379, + [4072] = 1048, + [4073] = 821, + [4074] = 825, + [4075] = 1049, + [4076] = 1051, + [4077] = 373, + [4078] = 821, + [4079] = 865, + [4080] = 875, + [4081] = 874, + [4082] = 372, + [4083] = 376, + [4084] = 1053, + [4085] = 816, + [4086] = 375, + [4087] = 1053, + [4088] = 1052, + [4089] = 841, + [4090] = 837, + [4091] = 841, + [4092] = 837, + [4093] = 1048, + [4094] = 376, + [4095] = 838, + [4096] = 846, + [4097] = 367, + [4098] = 365, + [4099] = 836, + [4100] = 854, + [4101] = 816, + [4102] = 360, + [4103] = 841, + [4104] = 844, + [4105] = 375, + [4106] = 842, + [4107] = 844, + [4108] = 850, + [4109] = 841, + [4110] = 837, + [4111] = 370, + [4112] = 939, + [4113] = 837, + [4114] = 841, + [4115] = 373, + [4116] = 1049, [4117] = 837, - [4118] = 831, - [4119] = 835, - [4120] = 858, - [4121] = 827, - [4122] = 834, - [4123] = 831, - [4124] = 830, - [4125] = 815, - [4126] = 830, - [4127] = 837, - [4128] = 831, - [4129] = 819, - [4130] = 838, - [4131] = 378, - [4132] = 956, - [4133] = 363, - [4134] = 822, - [4135] = 848, - [4136] = 1066, - [4137] = 839, - [4138] = 375, - [4139] = 1036, - [4140] = 953, - [4141] = 371, - [4142] = 830, - [4143] = 834, - [4144] = 830, - [4145] = 4145, - [4146] = 1034, - [4147] = 837, - [4148] = 841, - [4149] = 842, + [4118] = 364, + [4119] = 842, + [4120] = 821, + [4121] = 854, + [4122] = 374, + [4123] = 1051, + [4124] = 377, + [4125] = 366, + [4126] = 814, + [4127] = 378, + [4128] = 825, + [4129] = 836, + [4130] = 372, + [4131] = 853, + [4132] = 361, + [4133] = 1047, + [4134] = 368, + [4135] = 1053, + [4136] = 813, + [4137] = 966, + [4138] = 1052, + [4139] = 362, + [4140] = 371, + [4141] = 379, + [4142] = 934, + [4143] = 853, + [4144] = 837, + [4145] = 1053, + [4146] = 916, + [4147] = 846, + [4148] = 915, + [4149] = 925, [4150] = 842, - [4151] = 826, - [4152] = 841, - [4153] = 1036, + [4151] = 837, + [4152] = 1051, + [4153] = 849, [4154] = 827, - [4155] = 831, - [4156] = 1038, - [4157] = 1131, - [4158] = 834, - [4159] = 838, - [4160] = 843, - [4161] = 1131, - [4162] = 840, - [4163] = 858, - [4164] = 910, - [4165] = 1034, - [4166] = 830, - [4167] = 1036, - [4168] = 1038, - [4169] = 872, - [4170] = 908, - [4171] = 1066, - [4172] = 905, - [4173] = 840, - [4174] = 869, - [4175] = 846, - [4176] = 893, - [4177] = 903, + [4155] = 1048, + [4156] = 1047, + [4157] = 853, + [4158] = 839, + [4159] = 828, + [4160] = 841, + [4161] = 1047, + [4162] = 1049, + [4163] = 1051, + [4164] = 836, + [4165] = 827, + [4166] = 828, + [4167] = 839, + [4168] = 849, + [4169] = 850, + [4170] = 886, + [4171] = 1048, + [4172] = 860, + [4173] = 860, + [4174] = 1049, + [4175] = 859, + [4176] = 857, + [4177] = 852, [4178] = 857, - [4179] = 831, - [4180] = 1070, - [4181] = 843, - [4182] = 851, - [4183] = 899, - [4184] = 898, - [4185] = 835, - [4186] = 826, - [4187] = 851, - [4188] = 846, - [4189] = 839, - [4190] = 896, - [4191] = 1066, - [4192] = 1070, - [4193] = 857, - [4194] = 848, - [4195] = 931, - [4196] = 858, - [4197] = 920, - [4198] = 893, - [4199] = 826, - [4200] = 878, - [4201] = 949, - [4202] = 857, - [4203] = 910, - [4204] = 908, - [4205] = 827, - [4206] = 851, - [4207] = 846, - [4208] = 841, - [4209] = 896, - [4210] = 898, - [4211] = 899, - [4212] = 848, - [4213] = 869, - [4214] = 865, - [4215] = 842, - [4216] = 843, - [4217] = 903, - [4218] = 840, - [4219] = 905, - [4220] = 872, - [4221] = 872, - [4222] = 899, - [4223] = 878, - [4224] = 359, - [4225] = 956, - [4226] = 371, - [4227] = 374, - [4228] = 949, - [4229] = 373, - [4230] = 865, + [4179] = 1053, + [4180] = 899, + [4181] = 844, + [4182] = 1052, + [4183] = 922, + [4184] = 918, + [4185] = 859, + [4186] = 854, + [4187] = 4187, + [4188] = 903, + [4189] = 852, + [4190] = 913, + [4191] = 924, + [4192] = 1052, + [4193] = 841, + [4194] = 838, + [4195] = 828, + [4196] = 850, + [4197] = 852, + [4198] = 925, + [4199] = 838, + [4200] = 924, + [4201] = 875, + [4202] = 865, + [4203] = 903, + [4204] = 859, + [4205] = 954, + [4206] = 860, + [4207] = 934, + [4208] = 857, + [4209] = 874, + [4210] = 918, + [4211] = 839, + [4212] = 827, + [4213] = 899, + [4214] = 915, + [4215] = 922, + [4216] = 849, + [4217] = 916, + [4218] = 846, + [4219] = 913, + [4220] = 886, + [4221] = 899, + [4222] = 364, + [4223] = 934, + [4224] = 903, + [4225] = 367, + [4226] = 376, + [4227] = 375, + [4228] = 924, + [4229] = 918, + [4230] = 966, [4231] = 372, - [4232] = 370, - [4233] = 898, - [4234] = 364, - [4235] = 379, - [4236] = 365, - [4237] = 905, - [4238] = 931, - [4239] = 375, - [4240] = 869, - [4241] = 896, - [4242] = 366, - [4243] = 893, - [4244] = 377, - [4245] = 367, - [4246] = 908, - [4247] = 368, - [4248] = 378, - [4249] = 363, - [4250] = 903, - [4251] = 931, - [4252] = 953, - [4253] = 360, - [4254] = 910, - [4255] = 362, - [4256] = 367, - [4257] = 1131, + [4232] = 886, + [4233] = 370, + [4234] = 374, + [4235] = 365, + [4236] = 377, + [4237] = 954, + [4238] = 366, + [4239] = 875, + [4240] = 934, + [4241] = 373, + [4242] = 925, + [4243] = 360, + [4244] = 378, + [4245] = 361, + [4246] = 913, + [4247] = 371, + [4248] = 368, + [4249] = 915, + [4250] = 939, + [4251] = 362, + [4252] = 916, + [4253] = 922, + [4254] = 379, + [4255] = 865, + [4256] = 374, + [4257] = 1051, [4258] = 360, - [4259] = 364, - [4260] = 365, - [4261] = 378, - [4262] = 366, - [4263] = 371, - [4264] = 368, - [4265] = 372, - [4266] = 379, - [4267] = 362, - [4268] = 878, - [4269] = 1070, - [4270] = 359, - [4271] = 1038, - [4272] = 370, - [4273] = 865, - [4274] = 1034, - [4275] = 1036, - [4276] = 375, - [4277] = 373, - [4278] = 374, - [4279] = 1066, - [4280] = 363, - [4281] = 373, - [4282] = 379, - [4283] = 1070, - [4284] = 366, - [4285] = 371, - [4286] = 1038, - [4287] = 367, - [4288] = 359, - [4289] = 362, - [4290] = 1036, - [4291] = 364, - [4292] = 365, - [4293] = 375, - [4294] = 1066, - [4295] = 363, - [4296] = 1131, - [4297] = 374, - [4298] = 368, - [4299] = 372, - [4300] = 378, - [4301] = 370, - [4302] = 360, - [4303] = 1034, - [4304] = 1034, + [4259] = 378, + [4260] = 865, + [4261] = 361, + [4262] = 364, + [4263] = 370, + [4264] = 372, + [4265] = 379, + [4266] = 1052, + [4267] = 376, + [4268] = 366, + [4269] = 371, + [4270] = 367, + [4271] = 377, + [4272] = 373, + [4273] = 362, + [4274] = 368, + [4275] = 1047, + [4276] = 1053, + [4277] = 1048, + [4278] = 1049, + [4279] = 875, + [4280] = 375, + [4281] = 374, + [4282] = 375, + [4283] = 1052, + [4284] = 361, + [4285] = 367, + [4286] = 1048, + [4287] = 366, + [4288] = 1053, + [4289] = 1049, + [4290] = 377, + [4291] = 378, + [4292] = 370, + [4293] = 373, + [4294] = 376, + [4295] = 368, + [4296] = 362, + [4297] = 364, + [4298] = 1047, + [4299] = 360, + [4300] = 1051, + [4301] = 372, + [4302] = 371, + [4303] = 379, + [4304] = 1051, [4305] = 4305, - [4306] = 1038, - [4307] = 4305, - [4308] = 4305, - [4309] = 4305, - [4310] = 4305, - [4311] = 1070, + [4306] = 4306, + [4307] = 4307, + [4308] = 4308, + [4309] = 4309, + [4310] = 4310, + [4311] = 4311, [4312] = 4312, - [4313] = 1066, - [4314] = 4312, - [4315] = 4312, - [4316] = 4305, - [4317] = 1131, - [4318] = 1036, - [4319] = 4312, - [4320] = 4312, - [4321] = 4312, - [4322] = 4322, - [4323] = 4323, - [4324] = 4324, - [4325] = 4325, - [4326] = 4326, - [4327] = 4325, - [4328] = 4328, - [4329] = 4329, - [4330] = 4330, - [4331] = 4331, - [4332] = 4332, - [4333] = 4333, - [4334] = 4334, + [4313] = 4312, + [4314] = 4306, + [4315] = 4309, + [4316] = 4311, + [4317] = 4305, + [4318] = 4309, + [4319] = 4309, + [4320] = 4306, + [4321] = 4311, + [4322] = 4311, + [4323] = 4312, + [4324] = 4306, + [4325] = 4307, + [4326] = 4309, + [4327] = 4307, + [4328] = 4310, + [4329] = 4305, + [4330] = 4306, + [4331] = 4310, + [4332] = 4312, + [4333] = 4305, + [4334] = 4308, [4335] = 4335, - [4336] = 4336, - [4337] = 4334, - [4338] = 4334, - [4339] = 4339, - [4340] = 4340, - [4341] = 4323, - [4342] = 4334, - [4343] = 4325, - [4344] = 4331, - [4345] = 4336, - [4346] = 4336, - [4347] = 4331, - [4348] = 4348, - [4349] = 4340, - [4350] = 4350, - [4351] = 4323, - [4352] = 4334, - [4353] = 4336, - [4354] = 4354, - [4355] = 4325, - [4356] = 4336, - [4357] = 4323, - [4358] = 4334, - [4359] = 4323, - [4360] = 4340, - [4361] = 4336, - [4362] = 4362, - [4363] = 4334, - [4364] = 4340, - [4365] = 4323, - [4366] = 4340, - [4367] = 4331, - [4368] = 4331, - [4369] = 4323, - [4370] = 4340, - [4371] = 4325, - [4372] = 4325, - [4373] = 4373, - [4374] = 4331, - [4375] = 4336, - [4376] = 4325, - [4377] = 4336, - [4378] = 4334, - [4379] = 4325, - [4380] = 4340, - [4381] = 4340, - [4382] = 4323, - [4383] = 4331, - [4384] = 4325, - [4385] = 4334, + [4336] = 1053, + [4337] = 1052, + [4338] = 4312, + [4339] = 4307, + [4340] = 4310, + [4341] = 4311, + [4342] = 4312, + [4343] = 4305, + [4344] = 4305, + [4345] = 4308, + [4346] = 4309, + [4347] = 4308, + [4348] = 4307, + [4349] = 4305, + [4350] = 4308, + [4351] = 1047, + [4352] = 4307, + [4353] = 1048, + [4354] = 4305, + [4355] = 4312, + [4356] = 4311, + [4357] = 4306, + [4358] = 4309, + [4359] = 4306, + [4360] = 4309, + [4361] = 1049, + [4362] = 4307, + [4363] = 4307, + [4364] = 4311, + [4365] = 4305, + [4366] = 4311, + [4367] = 4310, + [4368] = 4310, + [4369] = 4312, + [4370] = 4309, + [4371] = 4306, + [4372] = 4306, + [4373] = 4312, + [4374] = 4307, + [4375] = 4308, + [4376] = 4311, + [4377] = 4377, + [4378] = 4378, + [4379] = 4379, + [4380] = 4380, + [4381] = 761, + [4382] = 763, + [4383] = 4383, + [4384] = 4384, + [4385] = 4385, [4386] = 4386, - [4387] = 4336, - [4388] = 4331, + [4387] = 4387, + [4388] = 4388, [4389] = 4389, - [4390] = 4340, - [4391] = 4331, - [4392] = 4323, - [4393] = 769, - [4394] = 767, + [4390] = 4390, + [4391] = 4391, + [4392] = 4392, + [4393] = 4393, + [4394] = 4394, [4395] = 4395, [4396] = 4396, - [4397] = 4397, - [4398] = 4397, + [4397] = 4396, + [4398] = 4398, [4399] = 4399, - [4400] = 4400, + [4400] = 4396, [4401] = 4395, [4402] = 4402, - [4403] = 4400, - [4404] = 4395, - [4405] = 4395, - [4406] = 4397, - [4407] = 4395, - [4408] = 4402, - [4409] = 4400, - [4410] = 4397, + [4403] = 4395, + [4404] = 4404, + [4405] = 4402, + [4406] = 4395, + [4407] = 4402, + [4408] = 4404, + [4409] = 4399, + [4410] = 4402, [4411] = 4395, - [4412] = 4402, - [4413] = 4402, - [4414] = 4397, - [4415] = 4395, + [4412] = 4412, + [4413] = 4395, + [4414] = 4399, + [4415] = 4402, [4416] = 4402, - [4417] = 4402, + [4417] = 4395, [4418] = 4395, - [4419] = 4397, - [4420] = 4400, + [4419] = 4399, + [4420] = 4399, [4421] = 4402, - [4422] = 4397, - [4423] = 4423, - [4424] = 4399, - [4425] = 4395, - [4426] = 4397, - [4427] = 4400, - [4428] = 4397, + [4422] = 4402, + [4423] = 4402, + [4424] = 4395, + [4425] = 4399, + [4426] = 4402, + [4427] = 4412, + [4428] = 4428, [4429] = 4395, - [4430] = 4395, - [4431] = 4400, - [4432] = 4396, - [4433] = 4402, - [4434] = 4402, - [4435] = 4402, - [4436] = 4397, - [4437] = 4400, - [4438] = 4399, - [4439] = 4396, - [4440] = 4395, - [4441] = 4397, - [4442] = 4402, + [4430] = 4396, + [4431] = 4395, + [4432] = 4395, + [4433] = 4399, + [4434] = 4399, + [4435] = 4399, + [4436] = 4398, + [4437] = 4402, + [4438] = 4438, + [4439] = 4402, + [4440] = 4398, + [4441] = 4402, + [4442] = 4395, [4443] = 4395, - [4444] = 4397, - [4445] = 4400, - [4446] = 4395, - [4447] = 4402, - [4448] = 4397, - [4449] = 4402, - [4450] = 4400, - [4451] = 4402, - [4452] = 4395, - [4453] = 4400, + [4444] = 4399, + [4445] = 4399, + [4446] = 4402, + [4447] = 4399, + [4448] = 4396, + [4449] = 4404, + [4450] = 4402, + [4451] = 4395, + [4452] = 4398, + [4453] = 4396, [4454] = 4399, - [4455] = 4397, + [4455] = 4398, [4456] = 4402, - [4457] = 4400, - [4458] = 4397, - [4459] = 4397, - [4460] = 4400, - [4461] = 4395, - [4462] = 4400, - [4463] = 4402, - [4464] = 4402, - [4465] = 4400, - [4466] = 4395, - [4467] = 4423, - [4468] = 4395, - [4469] = 4402, - [4470] = 4402, - [4471] = 4397, - [4472] = 4400, - [4473] = 4397, - [4474] = 4402, - [4475] = 4395, - [4476] = 4400, + [4457] = 4399, + [4458] = 4395, + [4459] = 4395, + [4460] = 4396, + [4461] = 4402, + [4462] = 4399, + [4463] = 4398, + [4464] = 4399, + [4465] = 4395, + [4466] = 4412, + [4467] = 4402, + [4468] = 4412, + [4469] = 4396, + [4470] = 4399, + [4471] = 4402, + [4472] = 4399, + [4473] = 4402, + [4474] = 4396, + [4475] = 4412, + [4476] = 4395, [4477] = 4396, - [4478] = 4397, - [4479] = 4397, - [4480] = 4396, - [4481] = 4397, - [4482] = 4402, - [4483] = 4396, - [4484] = 4399, + [4478] = 4396, + [4479] = 4399, + [4480] = 4395, + [4481] = 4396, + [4482] = 4399, + [4483] = 4395, + [4484] = 4484, [4485] = 4402, - [4486] = 4396, - [4487] = 4397, - [4488] = 4400, - [4489] = 4402, - [4490] = 4397, - [4491] = 4491, + [4486] = 4402, + [4487] = 4412, + [4488] = 4395, + [4489] = 4404, + [4490] = 4412, + [4491] = 4395, [4492] = 4396, - [4493] = 4397, - [4494] = 4399, - [4495] = 4395, - [4496] = 4402, - [4497] = 4400, - [4498] = 4397, - [4499] = 4400, + [4493] = 4396, + [4494] = 4402, + [4495] = 4396, + [4496] = 4399, + [4497] = 4399, + [4498] = 4402, + [4499] = 4412, [4500] = 4395, - [4501] = 4402, - [4502] = 4400, - [4503] = 4395, - [4504] = 4423, - [4505] = 4395, - [4506] = 4395, - [4507] = 4402, - [4508] = 4395, - [4509] = 4400, - [4510] = 4397, - [4511] = 4395, - [4512] = 4397, - [4513] = 4423, - [4514] = 4514, - [4515] = 4400, - [4516] = 4395, - [4517] = 4400, - [4518] = 4423, - [4519] = 4519, - [4520] = 4396, - [4521] = 4400, - [4522] = 4522, - [4523] = 4402, + [4501] = 4395, + [4502] = 4402, + [4503] = 4399, + [4504] = 4396, + [4505] = 4396, + [4506] = 4399, + [4507] = 4396, + [4508] = 4396, + [4509] = 4402, + [4510] = 4395, + [4511] = 4402, + [4512] = 4396, + [4513] = 4513, + [4514] = 4399, + [4515] = 4396, + [4516] = 4396, + [4517] = 4399, + [4518] = 4412, + [4519] = 4395, + [4520] = 4404, + [4521] = 4399, + [4522] = 4396, + [4523] = 4396, [4524] = 762, - [4525] = 782, - [4526] = 791, - [4527] = 782, - [4528] = 806, - [4529] = 813, - [4530] = 816, - [4531] = 824, + [4525] = 762, + [4526] = 794, + [4527] = 757, + [4528] = 802, + [4529] = 825, + [4530] = 819, + [4531] = 818, [4532] = 815, - [4533] = 812, - [4534] = 817, - [4535] = 812, - [4536] = 819, - [4537] = 813, + [4533] = 821, + [4534] = 820, + [4535] = 820, + [4536] = 815, + [4537] = 817, [4538] = 814, - [4539] = 825, - [4540] = 822, - [4541] = 821, - [4542] = 821, - [4543] = 820, - [4544] = 834, - [4545] = 762, - [4546] = 845, - [4547] = 836, - [4548] = 860, - [4549] = 782, - [4550] = 835, - [4551] = 837, - [4552] = 847, - [4553] = 852, - [4554] = 850, - [4555] = 855, - [4556] = 832, - [4557] = 838, - [4558] = 839, - [4559] = 827, - [4560] = 824, - [4561] = 858, - [4562] = 791, - [4563] = 844, - [4564] = 816, + [4539] = 813, + [4540] = 816, + [4541] = 812, + [4542] = 819, + [4543] = 822, + [4544] = 847, + [4545] = 757, + [4546] = 822, + [4547] = 850, + [4548] = 848, + [4549] = 828, + [4550] = 839, + [4551] = 812, + [4552] = 830, + [4553] = 762, + [4554] = 855, + [4555] = 852, + [4556] = 794, + [4557] = 854, + [4558] = 857, + [4559] = 849, + [4560] = 859, + [4561] = 844, + [4562] = 838, + [4563] = 842, + [4564] = 845, [4565] = 826, - [4566] = 841, - [4567] = 842, - [4568] = 782, - [4569] = 843, + [4566] = 762, + [4567] = 846, + [4568] = 860, + [4569] = 858, [4570] = 840, - [4571] = 846, - [4572] = 853, - [4573] = 851, - [4574] = 848, - [4575] = 857, - [4576] = 820, - [4577] = 906, - [4578] = 869, - [4579] = 910, - [4580] = 918, - [4581] = 924, - [4582] = 881, - [4583] = 878, - [4584] = 813, - [4585] = 894, - [4586] = 885, - [4587] = 893, - [4588] = 900, - [4589] = 862, - [4590] = 884, - [4591] = 921, - [4592] = 891, - [4593] = 836, - [4594] = 812, - [4595] = 853, - [4596] = 865, - [4597] = 806, - [4598] = 896, - [4599] = 844, - [4600] = 883, - [4601] = 872, - [4602] = 852, - [4603] = 920, - [4604] = 898, - [4605] = 899, - [4606] = 882, - [4607] = 923, - [4608] = 880, - [4609] = 903, - [4610] = 856, - [4611] = 911, - [4612] = 905, - [4613] = 892, - [4614] = 908, - [4615] = 877, - [4616] = 942, - [4617] = 973, - [4618] = 820, - [4619] = 814, - [4620] = 822, - [4621] = 864, - [4622] = 953, - [4623] = 934, - [4624] = 936, - [4625] = 960, - [4626] = 930, - [4627] = 932, - [4628] = 928, - [4629] = 968, - [4630] = 988, - [4631] = 825, - [4632] = 929, - [4633] = 819, - [4634] = 856, - [4635] = 987, - [4636] = 860, - [4637] = 824, - [4638] = 967, - [4639] = 986, - [4640] = 817, - [4641] = 816, - [4642] = 815, - [4643] = 950, - [4644] = 817, - [4645] = 983, - [4646] = 821, - [4647] = 1009, - [4648] = 855, - [4649] = 819, - [4650] = 963, - [4651] = 955, - [4652] = 939, - [4653] = 825, - [4654] = 847, - [4655] = 962, - [4656] = 845, - [4657] = 985, - [4658] = 954, - [4659] = 965, - [4660] = 981, - [4661] = 822, - [4662] = 822, - [4663] = 870, - [4664] = 972, - [4665] = 956, - [4666] = 978, - [4667] = 1007, - [4668] = 957, - [4669] = 911, - [4670] = 825, - [4671] = 961, - [4672] = 832, - [4673] = 819, - [4674] = 1012, - [4675] = 931, - [4676] = 817, - [4677] = 926, - [4678] = 815, - [4679] = 815, - [4680] = 944, - [4681] = 935, - [4682] = 943, - [4683] = 966, - [4684] = 945, - [4685] = 1008, - [4686] = 952, - [4687] = 887, - [4688] = 959, - [4689] = 850, + [4571] = 832, + [4572] = 836, + [4573] = 856, + [4574] = 817, + [4575] = 853, + [4576] = 827, + [4577] = 867, + [4578] = 924, + [4579] = 913, + [4580] = 915, + [4581] = 920, + [4582] = 869, + [4583] = 916, + [4584] = 925, + [4585] = 876, + [4586] = 903, + [4587] = 894, + [4588] = 886, + [4589] = 921, + [4590] = 868, + [4591] = 847, + [4592] = 923, + [4593] = 829, + [4594] = 883, + [4595] = 917, + [4596] = 922, + [4597] = 910, + [4598] = 873, + [4599] = 874, + [4600] = 887, + [4601] = 895, + [4602] = 815, + [4603] = 899, + [4604] = 918, + [4605] = 902, + [4606] = 901, + [4607] = 905, + [4608] = 875, + [4609] = 820, + [4610] = 879, + [4611] = 826, + [4612] = 848, + [4613] = 845, + [4614] = 802, + [4615] = 865, + [4616] = 819, + [4617] = 962, + [4618] = 976, + [4619] = 978, + [4620] = 910, + [4621] = 982, + [4622] = 858, + [4623] = 856, + [4624] = 855, + [4625] = 829, + [4626] = 832, + [4627] = 830, + [4628] = 840, + [4629] = 983, + [4630] = 939, + [4631] = 961, + [4632] = 987, + [4633] = 884, + [4634] = 934, + [4635] = 988, + [4636] = 891, + [4637] = 821, + [4638] = 893, + [4639] = 975, + [4640] = 812, + [4641] = 825, + [4642] = 816, + [4643] = 822, + [4644] = 814, + [4645] = 813, + [4646] = 813, + [4647] = 821, + [4648] = 814, + [4649] = 816, + [4650] = 825, + [4651] = 927, + [4652] = 933, + [4653] = 938, + [4654] = 974, + [4655] = 953, + [4656] = 929, + [4657] = 928, + [4658] = 930, + [4659] = 937, + [4660] = 972, + [4661] = 1003, + [4662] = 971, + [4663] = 935, + [4664] = 936, + [4665] = 821, + [4666] = 813, + [4667] = 932, + [4668] = 817, + [4669] = 814, + [4670] = 970, + [4671] = 940, + [4672] = 816, + [4673] = 825, + [4674] = 943, + [4675] = 944, + [4676] = 969, + [4677] = 968, + [4678] = 959, + [4679] = 958, + [4680] = 966, + [4681] = 957, + [4682] = 967, + [4683] = 945, + [4684] = 977, + [4685] = 965, + [4686] = 956, + [4687] = 964, + [4688] = 818, + [4689] = 955, [4690] = 946, - [4691] = 940, - [4692] = 958, - [4693] = 1073, - [4694] = 1123, - [4695] = 851, - [4696] = 846, - [4697] = 1072, - [4698] = 1053, - [4699] = 1103, - [4700] = 843, - [4701] = 842, - [4702] = 841, - [4703] = 826, - [4704] = 1050, - [4705] = 1054, - [4706] = 1182, - [4707] = 1048, - [4708] = 1184, - [4709] = 1065, - [4710] = 1180, - [4711] = 1186, - [4712] = 941, - [4713] = 1114, - [4714] = 938, - [4715] = 1079, - [4716] = 1060, - [4717] = 848, - [4718] = 1133, - [4719] = 1152, - [4720] = 1052, - [4721] = 1028, - [4722] = 1057, - [4723] = 933, - [4724] = 819, - [4725] = 1108, - [4726] = 1129, - [4727] = 1125, - [4728] = 1040, - [4729] = 1128, - [4730] = 1169, - [4731] = 831, - [4732] = 830, - [4733] = 1134, - [4734] = 1163, - [4735] = 1181, - [4736] = 1065, - [4737] = 1059, - [4738] = 857, - [4739] = 1043, - [4740] = 1171, - [4741] = 839, - [4742] = 840, - [4743] = 1132, - [4744] = 1177, - [4745] = 1136, - [4746] = 1023, - [4747] = 838, - [4748] = 1064, - [4749] = 1127, - [4750] = 837, - [4751] = 1137, - [4752] = 834, - [4753] = 1066, - [4754] = 1144, - [4755] = 835, - [4756] = 1151, - [4757] = 1070, - [4758] = 835, - [4759] = 815, - [4760] = 834, - [4761] = 817, - [4762] = 837, - [4763] = 1154, - [4764] = 1102, - [4765] = 827, - [4766] = 838, - [4767] = 857, - [4768] = 858, - [4769] = 839, - [4770] = 1098, - [4771] = 1170, - [4772] = 1162, - [4773] = 1155, - [4774] = 1055, - [4775] = 1062, - [4776] = 1058, - [4777] = 1100, - [4778] = 1060, - [4779] = 1104, - [4780] = 1056, - [4781] = 1067, - [4782] = 1179, - [4783] = 1185, - [4784] = 1131, - [4785] = 1016, - [4786] = 1105, - [4787] = 1126, - [4788] = 1140, - [4789] = 1034, - [4790] = 1153, - [4791] = 1157, - [4792] = 830, - [4793] = 831, - [4794] = 1036, - [4795] = 1068, - [4796] = 1117, - [4797] = 1038, - [4798] = 1042, - [4799] = 1167, - [4800] = 1168, - [4801] = 1015, - [4802] = 1085, - [4803] = 1124, - [4804] = 1120, - [4805] = 1172, - [4806] = 852, - [4807] = 853, - [4808] = 851, - [4809] = 836, - [4810] = 1175, - [4811] = 1075, - [4812] = 1145, - [4813] = 1143, - [4814] = 1076, - [4815] = 1077, - [4816] = 1080, - [4817] = 1083, - [4818] = 1087, - [4819] = 1093, - [4820] = 856, - [4821] = 1138, - [4822] = 1139, - [4823] = 1097, - [4824] = 1099, - [4825] = 844, - [4826] = 822, - [4827] = 1106, - [4828] = 1107, - [4829] = 1115, - [4830] = 1078, - [4831] = 1013, - [4832] = 1111, - [4833] = 1183, - [4834] = 1110, - [4835] = 1176, - [4836] = 1112, - [4837] = 1113, - [4838] = 1116, - [4839] = 1118, - [4840] = 1119, - [4841] = 825, - [4842] = 1166, - [4843] = 846, - [4844] = 1121, - [4845] = 1071, - [4846] = 1090, - [4847] = 840, - [4848] = 1173, - [4849] = 843, - [4850] = 842, - [4851] = 1109, - [4852] = 834, - [4853] = 1130, + [4691] = 960, + [4692] = 963, + [4693] = 1163, + [4694] = 1129, + [4695] = 1155, + [4696] = 1157, + [4697] = 1159, + [4698] = 1162, + [4699] = 1167, + [4700] = 1169, + [4701] = 1174, + [4702] = 1013, + [4703] = 1175, + [4704] = 1182, + [4705] = 1178, + [4706] = 1179, + [4707] = 1185, + [4708] = 1186, + [4709] = 1184, + [4710] = 1183, + [4711] = 1181, + [4712] = 1180, + [4713] = 1177, + [4714] = 1176, + [4715] = 852, + [4716] = 1171, + [4717] = 1168, + [4718] = 857, + [4719] = 859, + [4720] = 841, + [4721] = 837, + [4722] = 1166, + [4723] = 860, + [4724] = 1164, + [4725] = 849, + [4726] = 839, + [4727] = 828, + [4728] = 1161, + [4729] = 827, + [4730] = 1113, + [4731] = 1112, + [4732] = 1110, + [4733] = 1153, + [4734] = 1108, + [4735] = 1106, + [4736] = 1105, + [4737] = 1104, + [4738] = 1102, + [4739] = 1151, + [4740] = 1099, + [4741] = 1098, + [4742] = 1093, + [4743] = 1091, + [4744] = 1090, + [4745] = 1089, + [4746] = 1088, + [4747] = 1087, + [4748] = 1085, + [4749] = 1084, + [4750] = 1083, + [4751] = 1082, + [4752] = 1080, + [4753] = 1079, + [4754] = 1092, + [4755] = 1077, + [4756] = 1152, + [4757] = 854, + [4758] = 1076, + [4759] = 1170, + [4760] = 1150, + [4761] = 844, + [4762] = 1052, + [4763] = 842, + [4764] = 1149, + [4765] = 1075, + [4766] = 836, + [4767] = 1148, + [4768] = 1014, + [4769] = 1073, + [4770] = 853, + [4771] = 1135, + [4772] = 1134, + [4773] = 1133, + [4774] = 1101, + [4775] = 1132, + [4776] = 1140, + [4777] = 1051, + [4778] = 840, + [4779] = 830, + [4780] = 1071, + [4781] = 1109, + [4782] = 1049, + [4783] = 855, + [4784] = 1070, + [4785] = 1061, + [4786] = 1069, + [4787] = 1067, + [4788] = 1065, + [4789] = 1060, + [4790] = 1154, + [4791] = 1127, + [4792] = 846, + [4793] = 1054, + [4794] = 1050, + [4795] = 838, + [4796] = 1048, + [4797] = 1074, + [4798] = 1046, + [4799] = 1042, + [4800] = 1040, + [4801] = 1039, + [4802] = 1124, + [4803] = 856, + [4804] = 1118, + [4805] = 832, + [4806] = 1123, + [4807] = 858, + [4808] = 1047, + [4809] = 1131, + [4810] = 1037, + [4811] = 1130, + [4812] = 1034, + [4813] = 1126, + [4814] = 1165, + [4815] = 1030, + [4816] = 1029, + [4817] = 1033, + [4818] = 1027, + [4819] = 1122, + [4820] = 829, + [4821] = 1120, + [4822] = 1111, + [4823] = 1117, + [4824] = 1025, + [4825] = 1116, + [4826] = 1023, + [4827] = 1160, + [4828] = 1097, + [4829] = 1062, + [4830] = 1107, + [4831] = 1095, + [4832] = 1020, + [4833] = 1019, + [4834] = 1018, + [4835] = 1096, + [4836] = 1094, + [4837] = 1017, + [4838] = 1086, + [4839] = 1016, + [4840] = 1078, + [4841] = 1015, + [4842] = 1147, + [4843] = 1072, + [4844] = 852, + [4845] = 857, + [4846] = 859, + [4847] = 860, + [4848] = 849, + [4849] = 839, + [4850] = 828, + [4851] = 827, + [4852] = 854, + [4853] = 844, [4854] = 1081, - [4855] = 1101, - [4856] = 1086, - [4857] = 839, - [4858] = 1141, - [4859] = 1142, - [4860] = 850, - [4861] = 1063, - [4862] = 855, - [4863] = 1047, - [4864] = 1122, - [4865] = 832, - [4866] = 847, - [4867] = 1051, - [4868] = 860, - [4869] = 841, - [4870] = 1148, - [4871] = 1092, - [4872] = 845, - [4873] = 1061, - [4874] = 1150, - [4875] = 826, - [4876] = 1014, - [4877] = 1160, - [4878] = 1178, - [4879] = 1091, - [4880] = 1174, - [4881] = 835, - [4882] = 838, - [4883] = 1165, - [4884] = 1164, - [4885] = 837, - [4886] = 1033, - [4887] = 1147, - [4888] = 1149, - [4889] = 921, - [4890] = 840, - [4891] = 826, - [4892] = 857, - [4893] = 934, - [4894] = 911, - [4895] = 843, - [4896] = 858, - [4897] = 827, - [4898] = 848, - [4899] = 822, - [4900] = 883, - [4901] = 923, - [4902] = 834, - [4903] = 837, - [4904] = 932, - [4905] = 884, - [4906] = 928, - [4907] = 939, - [4908] = 826, - [4909] = 857, - [4910] = 931, - [4911] = 891, - [4912] = 851, - [4913] = 949, - [4914] = 819, - [4915] = 920, - [4916] = 924, - [4917] = 825, - [4918] = 918, - [4919] = 885, - [4920] = 817, - [4921] = 936, - [4922] = 841, - [4923] = 842, - [4924] = 896, - [4925] = 920, - [4926] = 898, - [4927] = 881, - [4928] = 899, - [4929] = 842, - [4930] = 862, - [4931] = 882, - [4932] = 903, - [4933] = 944, - [4934] = 945, - [4935] = 905, - [4936] = 952, - [4937] = 878, - [4938] = 835, - [4939] = 843, - [4940] = 894, - [4941] = 841, - [4942] = 908, - [4943] = 910, - [4944] = 865, - [4945] = 872, - [4946] = 840, - [4947] = 880, - [4948] = 839, - [4949] = 846, - [4950] = 962, - [4951] = 869, - [4952] = 893, - [4953] = 877, - [4954] = 892, - [4955] = 900, - [4956] = 838, - [4957] = 815, - [4958] = 906, - [4959] = 851, - [4960] = 846, - [4961] = 968, - [4962] = 986, - [4963] = 963, - [4964] = 944, - [4965] = 945, - [4966] = 827, - [4967] = 952, - [4968] = 988, - [4969] = 864, - [4970] = 827, - [4971] = 878, - [4972] = 1008, - [4973] = 839, - [4974] = 848, - [4975] = 958, - [4976] = 908, - [4977] = 961, - [4978] = 1009, - [4979] = 931, - [4980] = 936, - [4981] = 934, - [4982] = 942, - [4983] = 942, - [4984] = 949, - [4985] = 896, - [4986] = 954, - [4987] = 898, - [4988] = 899, - [4989] = 985, - [4990] = 887, - [4991] = 910, - [4992] = 864, - [4993] = 929, - [4994] = 862, - [4995] = 981, - [4996] = 972, - [4997] = 959, - [4998] = 903, - [4999] = 950, - [5000] = 1012, - [5001] = 908, - [5002] = 957, - [5003] = 924, - [5004] = 966, - [5005] = 923, - [5006] = 896, - [5007] = 905, - [5008] = 956, - [5009] = 837, - [5010] = 1007, - [5011] = 834, - [5012] = 987, - [5013] = 931, - [5014] = 965, - [5015] = 858, - [5016] = 926, - [5017] = 932, - [5018] = 918, - [5019] = 973, - [5020] = 955, - [5021] = 898, - [5022] = 906, - [5023] = 928, - [5024] = 935, - [5025] = 940, - [5026] = 943, - [5027] = 953, - [5028] = 953, - [5029] = 894, - [5030] = 870, - [5031] = 983, - [5032] = 905, - [5033] = 949, - [5034] = 962, - [5035] = 885, - [5036] = 929, - [5037] = 954, - [5038] = 884, - [5039] = 900, - [5040] = 946, - [5041] = 939, - [5042] = 865, - [5043] = 965, - [5044] = 887, - [5045] = 931, - [5046] = 899, - [5047] = 872, - [5048] = 869, - [5049] = 956, - [5050] = 930, - [5051] = 848, - [5052] = 883, - [5053] = 910, - [5054] = 880, - [5055] = 893, - [5056] = 903, - [5057] = 882, - [5058] = 870, - [5059] = 838, - [5060] = 835, - [5061] = 967, - [5062] = 858, - [5063] = 978, - [5064] = 960, - [5065] = 1133, - [5066] = 1136, - [5067] = 1042, - [5068] = 1131, - [5069] = 865, - [5070] = 878, - [5071] = 1086, - [5072] = 1091, - [5073] = 905, - [5074] = 908, - [5075] = 1085, - [5076] = 857, - [5077] = 1034, - [5078] = 1164, - [5079] = 1101, - [5080] = 941, - [5081] = 1180, - [5082] = 1090, - [5083] = 1165, - [5084] = 898, - [5085] = 1137, - [5086] = 1130, - [5087] = 1102, - [5088] = 938, - [5089] = 1174, - [5090] = 1178, - [5091] = 1179, - [5092] = 1177, - [5093] = 1111, - [5094] = 1115, - [5095] = 1117, - [5096] = 1171, - [5097] = 1063, - [5098] = 1062, - [5099] = 893, - [5100] = 1127, - [5101] = 1129, - [5102] = 1122, - [5103] = 1047, - [5104] = 1157, - [5105] = 1153, - [5106] = 1119, - [5107] = 896, - [5108] = 1090, - [5109] = 1140, - [5110] = 1126, - [5111] = 910, - [5112] = 1105, - [5113] = 1141, - [5114] = 1104, - [5115] = 1139, - [5116] = 1103, - [5117] = 898, - [5118] = 1100, - [5119] = 1058, - [5120] = 1081, - [5121] = 1179, - [5122] = 1043, - [5123] = 1015, - [5124] = 1118, - [5125] = 1109, - [5126] = 1171, - [5127] = 1055, - [5128] = 1036, - [5129] = 1056, - [5130] = 1067, - [5131] = 1160, - [5132] = 1121, - [5133] = 1014, - [5134] = 1040, - [5135] = 1038, - [5136] = 1023, - [5137] = 1150, - [5138] = 842, - [5139] = 1116, - [5140] = 1098, - [5141] = 1028, - [5142] = 1068, - [5143] = 899, - [5144] = 1113, - [5145] = 1152, - [5146] = 1112, - [5147] = 1110, - [5148] = 959, - [5149] = 1048, - [5150] = 1169, - [5151] = 1013, - [5152] = 1092, - [5153] = 910, - [5154] = 1073, - [5155] = 1107, - [5156] = 1106, - [5157] = 1099, - [5158] = 1050, - [5159] = 1097, - [5160] = 1093, - [5161] = 1138, - [5162] = 960, - [5163] = 1175, - [5164] = 1053, - [5165] = 1072, - [5166] = 1148, - [5167] = 1173, - [5168] = 1087, - [5169] = 865, - [5170] = 1086, - [5171] = 843, - [5172] = 1083, - [5173] = 1181, - [5174] = 878, - [5175] = 1172, - [5176] = 1060, - [5177] = 1143, - [5178] = 1142, - [5179] = 933, - [5180] = 933, - [5181] = 1167, - [5182] = 1051, - [5183] = 831, - [5184] = 1080, - [5185] = 1123, - [5186] = 1176, - [5187] = 1177, - [5188] = 1182, - [5189] = 1071, - [5190] = 1059, - [5191] = 830, - [5192] = 1060, - [5193] = 1120, - [5194] = 1183, - [5195] = 1070, - [5196] = 1057, - [5197] = 830, - [5198] = 899, - [5199] = 1054, - [5200] = 1108, - [5201] = 1061, - [5202] = 1066, - [5203] = 851, - [5204] = 893, - [5205] = 872, - [5206] = 896, - [5207] = 941, - [5208] = 1155, - [5209] = 1009, - [5210] = 1134, - [5211] = 1154, - [5212] = 846, - [5213] = 1184, - [5214] = 831, - [5215] = 946, - [5216] = 908, - [5217] = 826, - [5218] = 1147, - [5219] = 1124, - [5220] = 943, - [5221] = 1033, - [5222] = 1016, - [5223] = 905, - [5224] = 1186, - [5225] = 988, - [5226] = 841, - [5227] = 1052, - [5228] = 938, - [5229] = 1170, - [5230] = 1075, - [5231] = 840, - [5232] = 1076, - [5233] = 1186, - [5234] = 1163, - [5235] = 1128, - [5236] = 1114, - [5237] = 1125, - [5238] = 1064, - [5239] = 872, - [5240] = 1078, - [5241] = 987, - [5242] = 1132, - [5243] = 903, - [5244] = 1149, - [5245] = 1145, - [5246] = 1065, - [5247] = 1166, - [5248] = 1151, - [5249] = 869, - [5250] = 1168, - [5251] = 1077, - [5252] = 1079, - [5253] = 1162, - [5254] = 1065, - [5255] = 1123, - [5256] = 1144, - [5257] = 869, - [5258] = 1185, - [5259] = 903, - [5260] = 986, - [5261] = 983, - [5262] = 815, - [5263] = 972, - [5264] = 5264, - [5265] = 817, - [5266] = 963, - [5267] = 973, - [5268] = 935, - [5269] = 940, - [5270] = 819, - [5271] = 822, - [5272] = 825, - [5273] = 1131, - [5274] = 819, - [5275] = 817, - [5276] = 961, - [5277] = 950, - [5278] = 1034, - [5279] = 815, - [5280] = 926, - [5281] = 981, - [5282] = 825, - [5283] = 1008, - [5284] = 822, - [5285] = 5285, - [5286] = 1012, - [5287] = 1007, - [5288] = 878, - [5289] = 968, - [5290] = 831, - [5291] = 930, - [5292] = 920, - [5293] = 1036, - [5294] = 1038, - [5295] = 978, - [5296] = 966, - [5297] = 830, - [5298] = 985, - [5299] = 831, - [5300] = 830, - [5301] = 865, - [5302] = 958, - [5303] = 955, - [5304] = 957, - [5305] = 5305, - [5306] = 830, - [5307] = 831, - [5308] = 1070, - [5309] = 1066, - [5310] = 837, - [5311] = 953, - [5312] = 1070, - [5313] = 1066, - [5314] = 1185, - [5315] = 1151, - [5316] = 1173, - [5317] = 1138, - [5318] = 1127, - [5319] = 1152, - [5320] = 1023, - [5321] = 1015, - [5322] = 1048, - [5323] = 1182, - [5324] = 1104, - [5325] = 1172, - [5326] = 835, - [5327] = 1050, - [5328] = 1175, - [5329] = 831, - [5330] = 1117, - [5331] = 825, - [5332] = 384, - [5333] = 1053, - [5334] = 956, - [5335] = 1034, - [5336] = 1072, - [5337] = 1108, - [5338] = 1058, - [5339] = 1131, - [5340] = 1098, - [5341] = 1114, - [5342] = 1038, - [5343] = 1102, - [5344] = 821, - [5345] = 1181, - [5346] = 1132, - [5347] = 1137, - [5348] = 1129, - [5349] = 1157, - [5350] = 1054, - [5351] = 1136, - [5352] = 1153, - [5353] = 931, - [5354] = 1064, - [5355] = 822, - [5356] = 831, - [5357] = 830, - [5358] = 1036, - [5359] = 5359, - [5360] = 1100, - [5361] = 1016, - [5362] = 1184, - [5363] = 1140, - [5364] = 1115, - [5365] = 1133, - [5366] = 1126, - [5367] = 3449, - [5368] = 1111, - [5369] = 1062, - [5370] = 1154, - [5371] = 831, - [5372] = 839, - [5373] = 1180, - [5374] = 1059, - [5375] = 1105, - [5376] = 1168, - [5377] = 1101, - [5378] = 1124, - [5379] = 1166, - [5380] = 830, - [5381] = 815, - [5382] = 1143, - [5383] = 881, - [5384] = 1063, - [5385] = 1091, - [5386] = 1036, - [5387] = 817, - [5388] = 1040, - [5389] = 834, - [5390] = 1043, - [5391] = 830, - [5392] = 1155, - [5393] = 834, - [5394] = 1028, - [5395] = 1145, - [5396] = 1051, - [5397] = 819, - [5398] = 1038, - [5399] = 1092, - [5400] = 382, - [5401] = 891, - [5402] = 1131, - [5403] = 848, - [5404] = 835, - [5405] = 392, - [5406] = 838, - [5407] = 1034, - [5408] = 1167, - [5409] = 1052, - [5410] = 1103, - [5411] = 1144, - [5412] = 1057, - [5413] = 837, - [5414] = 1071, - [5415] = 827, - [5416] = 381, - [5417] = 858, - [5418] = 839, - [5419] = 838, - [5420] = 869, - [5421] = 834, - [5422] = 896, - [5423] = 839, - [5424] = 893, - [5425] = 903, - [5426] = 426, - [5427] = 851, - [5428] = 905, - [5429] = 422, - [5430] = 816, - [5431] = 812, - [5432] = 908, - [5433] = 843, - [5434] = 910, - [5435] = 824, - [5436] = 5436, - [5437] = 423, - [5438] = 842, - [5439] = 841, - [5440] = 826, - [5441] = 5441, - [5442] = 846, - [5443] = 857, - [5444] = 392, - [5445] = 838, - [5446] = 898, - [5447] = 1131, - [5448] = 382, - [5449] = 872, - [5450] = 1034, - [5451] = 848, - [5452] = 430, - [5453] = 837, - [5454] = 381, - [5455] = 840, - [5456] = 1070, - [5457] = 835, - [5458] = 1066, - [5459] = 826, - [5460] = 428, - [5461] = 841, - [5462] = 827, - [5463] = 842, - [5464] = 843, - [5465] = 813, - [5466] = 858, - [5467] = 840, - [5468] = 899, - [5469] = 846, - [5470] = 851, - [5471] = 1036, - [5472] = 384, - [5473] = 1038, - [5474] = 911, - [5475] = 857, - [5476] = 5476, - [5477] = 898, - [5478] = 949, - [5479] = 905, - [5480] = 903, - [5481] = 5476, - [5482] = 5476, - [5483] = 848, - [5484] = 858, - [5485] = 827, - [5486] = 423, - [5487] = 865, - [5488] = 414, - [5489] = 3778, - [5490] = 422, - [5491] = 851, - [5492] = 415, - [5493] = 893, - [5494] = 1060, - [5495] = 5476, - [5496] = 5496, - [5497] = 410, - [5498] = 836, - [5499] = 846, - [5500] = 869, - [5501] = 5476, - [5502] = 872, - [5503] = 857, - [5504] = 896, - [5505] = 430, - [5506] = 428, - [5507] = 5507, - [5508] = 5476, - [5509] = 908, - [5510] = 826, - [5511] = 5476, - [5512] = 426, - [5513] = 840, - [5514] = 412, - [5515] = 844, - [5516] = 910, - [5517] = 853, - [5518] = 5476, - [5519] = 878, - [5520] = 5476, - [5521] = 920, - [5522] = 931, - [5523] = 899, - [5524] = 843, - [5525] = 1065, - [5526] = 852, - [5527] = 841, - [5528] = 842, - [5529] = 905, - [5530] = 4000, - [5531] = 5531, - [5532] = 5531, - [5533] = 956, - [5534] = 5531, - [5535] = 5531, - [5536] = 1060, - [5537] = 453, - [5538] = 865, - [5539] = 953, - [5540] = 910, - [5541] = 896, - [5542] = 5531, - [5543] = 5543, - [5544] = 5531, - [5545] = 908, - [5546] = 448, - [5547] = 893, - [5548] = 5531, - [5549] = 1065, - [5550] = 5543, - [5551] = 5551, - [5552] = 3915, - [5553] = 5551, - [5554] = 931, - [5555] = 3961, - [5556] = 899, - [5557] = 5551, - [5558] = 5551, - [5559] = 1171, - [5560] = 4038, - [5561] = 5543, - [5562] = 1177, - [5563] = 5531, - [5564] = 5543, - [5565] = 869, - [5566] = 872, - [5567] = 449, - [5568] = 414, - [5569] = 442, - [5570] = 410, - [5571] = 898, + [4855] = 821, + [4856] = 842, + [4857] = 836, + [4858] = 1058, + [4859] = 1068, + [4860] = 853, + [4861] = 1066, + [4862] = 850, + [4863] = 837, + [4864] = 841, + [4865] = 845, + [4866] = 853, + [4867] = 847, + [4868] = 836, + [4869] = 842, + [4870] = 848, + [4871] = 844, + [4872] = 826, + [4873] = 813, + [4874] = 854, + [4875] = 1062, + [4876] = 1061, + [4877] = 825, + [4878] = 979, + [4879] = 1057, + [4880] = 980, + [4881] = 1055, + [4882] = 816, + [4883] = 985, + [4884] = 1100, + [4885] = 1059, + [4886] = 814, + [4887] = 1053, + [4888] = 1056, + [4889] = 922, + [4890] = 894, + [4891] = 838, + [4892] = 846, + [4893] = 901, + [4894] = 827, + [4895] = 902, + [4896] = 910, + [4897] = 887, + [4898] = 895, + [4899] = 849, + [4900] = 988, + [4901] = 828, + [4902] = 987, + [4903] = 961, + [4904] = 983, + [4905] = 982, + [4906] = 853, + [4907] = 839, + [4908] = 978, + [4909] = 913, + [4910] = 977, + [4911] = 917, + [4912] = 849, + [4913] = 839, + [4914] = 828, + [4915] = 860, + [4916] = 976, + [4917] = 857, + [4918] = 975, + [4919] = 859, + [4920] = 874, + [4921] = 859, + [4922] = 857, + [4923] = 852, + [4924] = 923, + [4925] = 874, + [4926] = 852, + [4927] = 821, + [4928] = 879, + [4929] = 854, + [4930] = 825, + [4931] = 873, + [4932] = 813, + [4933] = 905, + [4934] = 836, + [4935] = 924, + [4936] = 850, + [4937] = 903, + [4938] = 867, + [4939] = 816, + [4940] = 915, + [4941] = 868, + [4942] = 869, + [4943] = 883, + [4944] = 934, + [4945] = 827, + [4946] = 886, + [4947] = 921, + [4948] = 916, + [4949] = 875, + [4950] = 954, + [4951] = 920, + [4952] = 925, + [4953] = 844, + [4954] = 918, + [4955] = 876, + [4956] = 899, + [4957] = 860, + [4958] = 865, + [4959] = 814, + [4960] = 842, + [4961] = 842, + [4962] = 933, + [4963] = 846, + [4964] = 884, + [4965] = 938, + [4966] = 964, + [4967] = 960, + [4968] = 965, + [4969] = 934, + [4970] = 853, + [4971] = 967, + [4972] = 940, + [4973] = 968, + [4974] = 969, + [4975] = 850, + [4976] = 891, + [4977] = 970, + [4978] = 944, + [4979] = 962, + [4980] = 836, + [4981] = 971, + [4982] = 953, + [4983] = 972, + [4984] = 1003, + [4985] = 838, + [4986] = 975, + [4987] = 838, + [4988] = 924, + [4989] = 976, + [4990] = 893, + [4991] = 974, + [4992] = 937, + [4993] = 977, + [4994] = 978, + [4995] = 943, + [4996] = 846, + [4997] = 982, + [4998] = 983, + [4999] = 844, + [5000] = 961, + [5001] = 932, + [5002] = 987, + [5003] = 988, + [5004] = 954, + [5005] = 875, + [5006] = 854, + [5007] = 939, + [5008] = 865, + [5009] = 884, + [5010] = 887, + [5011] = 927, + [5012] = 963, + [5013] = 954, + [5014] = 959, + [5015] = 850, + [5016] = 932, + [5017] = 934, + [5018] = 913, + [5019] = 913, + [5020] = 918, + [5021] = 899, + [5022] = 929, + [5023] = 936, + [5024] = 934, + [5025] = 886, + [5026] = 939, + [5027] = 918, + [5028] = 925, + [5029] = 935, + [5030] = 958, + [5031] = 916, + [5032] = 937, + [5033] = 915, + [5034] = 930, + [5035] = 905, + [5036] = 915, + [5037] = 893, + [5038] = 957, + [5039] = 899, + [5040] = 920, + [5041] = 921, + [5042] = 901, + [5043] = 902, + [5044] = 956, + [5045] = 966, + [5046] = 928, + [5047] = 916, + [5048] = 955, + [5049] = 917, + [5050] = 953, + [5051] = 938, + [5052] = 923, + [5053] = 966, + [5054] = 925, + [5055] = 868, + [5056] = 869, + [5057] = 946, + [5058] = 879, + [5059] = 876, + [5060] = 886, + [5061] = 922, + [5062] = 903, + [5063] = 945, + [5064] = 891, + [5065] = 1081, + [5066] = 1023, + [5067] = 1052, + [5068] = 1117, + [5069] = 1053, + [5070] = 1113, + [5071] = 1112, + [5072] = 1055, + [5073] = 1056, + [5074] = 1057, + [5075] = 964, + [5076] = 958, + [5077] = 1058, + [5078] = 1110, + [5079] = 945, + [5080] = 1116, + [5081] = 1059, + [5082] = 1153, + [5083] = 1059, + [5084] = 1161, + [5085] = 1108, + [5086] = 1106, + [5087] = 1164, + [5088] = 1118, + [5089] = 944, + [5090] = 1062, + [5091] = 916, + [5092] = 1107, + [5093] = 1166, + [5094] = 1168, + [5095] = 1171, + [5096] = 1176, + [5097] = 865, + [5098] = 1177, + [5099] = 1123, + [5100] = 1180, + [5101] = 1162, + [5102] = 1127, + [5103] = 1095, + [5104] = 1105, + [5105] = 1181, + [5106] = 928, + [5107] = 1086, + [5108] = 929, + [5109] = 865, + [5110] = 1078, + [5111] = 1129, + [5112] = 1104, + [5113] = 1072, + [5114] = 875, + [5115] = 852, + [5116] = 1095, + [5117] = 922, + [5118] = 1182, + [5119] = 927, + [5120] = 979, + [5121] = 903, + [5122] = 875, + [5123] = 1167, + [5124] = 1066, + [5125] = 1102, + [5126] = 1068, + [5127] = 913, + [5128] = 1094, + [5129] = 1096, + [5130] = 1097, + [5131] = 857, + [5132] = 859, + [5133] = 1111, + [5134] = 1120, + [5135] = 924, + [5136] = 918, + [5137] = 1122, + [5138] = 915, + [5139] = 1126, + [5140] = 1130, + [5141] = 1099, + [5142] = 1131, + [5143] = 860, + [5144] = 1132, + [5145] = 899, + [5146] = 1133, + [5147] = 1061, + [5148] = 1134, + [5149] = 1135, + [5150] = 1014, + [5151] = 1019, + [5152] = 1152, + [5153] = 1100, + [5154] = 980, + [5155] = 1098, + [5156] = 849, + [5157] = 1140, + [5158] = 1170, + [5159] = 1154, + [5160] = 1155, + [5161] = 837, + [5162] = 1157, + [5163] = 841, + [5164] = 916, + [5165] = 1147, + [5166] = 1015, + [5167] = 1016, + [5168] = 1159, + [5169] = 886, + [5170] = 922, + [5171] = 1017, + [5172] = 1151, + [5173] = 1055, + [5174] = 1163, + [5175] = 1183, + [5176] = 1018, + [5177] = 839, + [5178] = 828, + [5179] = 1093, + [5180] = 1020, + [5181] = 903, + [5182] = 985, + [5183] = 1056, + [5184] = 979, + [5185] = 1169, + [5186] = 980, + [5187] = 1160, + [5188] = 1161, + [5189] = 1092, + [5190] = 1174, + [5191] = 1013, + [5192] = 925, + [5193] = 1025, + [5194] = 1175, + [5195] = 1148, + [5196] = 1178, + [5197] = 1027, + [5198] = 1091, + [5199] = 1090, + [5200] = 1089, + [5201] = 1088, + [5202] = 1029, + [5203] = 827, + [5204] = 1030, + [5205] = 1057, + [5206] = 1165, + [5207] = 985, + [5208] = 1033, + [5209] = 1034, + [5210] = 1037, + [5211] = 1179, + [5212] = 1185, + [5213] = 886, + [5214] = 924, + [5215] = 1186, + [5216] = 925, + [5217] = 1124, + [5218] = 1039, + [5219] = 1050, + [5220] = 1040, + [5221] = 1042, + [5222] = 1149, + [5223] = 1046, + [5224] = 1074, + [5225] = 1054, + [5226] = 1060, + [5227] = 1065, + [5228] = 1150, + [5229] = 1058, + [5230] = 899, + [5231] = 1067, + [5232] = 1069, + [5233] = 1070, + [5234] = 1109, + [5235] = 1071, + [5236] = 915, + [5237] = 1101, + [5238] = 918, + [5239] = 1073, + [5240] = 1075, + [5241] = 1076, + [5242] = 1077, + [5243] = 1184, + [5244] = 1079, + [5245] = 1080, + [5246] = 1082, + [5247] = 913, + [5248] = 1083, + [5249] = 1084, + [5250] = 1085, + [5251] = 837, + [5252] = 841, + [5253] = 1062, + [5254] = 1051, + [5255] = 1049, + [5256] = 1061, + [5257] = 1048, + [5258] = 1047, + [5259] = 1087, + [5260] = 965, + [5261] = 963, + [5262] = 816, + [5263] = 1048, + [5264] = 814, + [5265] = 1049, + [5266] = 813, + [5267] = 1051, + [5268] = 5268, + [5269] = 837, + [5270] = 5270, + [5271] = 821, + [5272] = 841, + [5273] = 5273, + [5274] = 841, + [5275] = 837, + [5276] = 1052, + [5277] = 865, + [5278] = 874, + [5279] = 933, + [5280] = 875, + [5281] = 837, + [5282] = 930, + [5283] = 935, + [5284] = 825, + [5285] = 1047, + [5286] = 940, + [5287] = 972, + [5288] = 971, + [5289] = 943, + [5290] = 970, + [5291] = 969, + [5292] = 936, + [5293] = 968, + [5294] = 955, + [5295] = 814, + [5296] = 816, + [5297] = 825, + [5298] = 960, + [5299] = 959, + [5300] = 967, + [5301] = 957, + [5302] = 974, + [5303] = 821, + [5304] = 956, + [5305] = 946, + [5306] = 841, + [5307] = 962, + [5308] = 813, + [5309] = 1053, + [5310] = 1152, + [5311] = 3432, + [5312] = 1127, + [5313] = 836, + [5314] = 1129, + [5315] = 1140, + [5316] = 853, + [5317] = 1148, + [5318] = 1149, + [5319] = 1150, + [5320] = 1151, + [5321] = 1153, + [5322] = 1164, + [5323] = 1166, + [5324] = 1168, + [5325] = 380, + [5326] = 842, + [5327] = 1171, + [5328] = 1176, + [5329] = 1177, + [5330] = 844, + [5331] = 1180, + [5332] = 1181, + [5333] = 1182, + [5334] = 1183, + [5335] = 1184, + [5336] = 854, + [5337] = 844, + [5338] = 1101, + [5339] = 842, + [5340] = 854, + [5341] = 836, + [5342] = 853, + [5343] = 1186, + [5344] = 1109, + [5345] = 867, + [5346] = 1185, + [5347] = 1179, + [5348] = 1178, + [5349] = 1175, + [5350] = 1013, + [5351] = 1124, + [5352] = 1174, + [5353] = 873, + [5354] = 1169, + [5355] = 837, + [5356] = 1167, + [5357] = 1163, + [5358] = 841, + [5359] = 1162, + [5360] = 1117, + [5361] = 1159, + [5362] = 1157, + [5363] = 1155, + [5364] = 1154, + [5365] = 1170, + [5366] = 1014, + [5367] = 1135, + [5368] = 1134, + [5369] = 1123, + [5370] = 1133, + [5371] = 390, + [5372] = 1132, + [5373] = 1131, + [5374] = 1130, + [5375] = 1126, + [5376] = 1122, + [5377] = 1120, + [5378] = 846, + [5379] = 825, + [5380] = 838, + [5381] = 1111, + [5382] = 1118, + [5383] = 1097, + [5384] = 1116, + [5385] = 383, + [5386] = 1107, + [5387] = 816, + [5388] = 1094, + [5389] = 1047, + [5390] = 1081, + [5391] = 1048, + [5392] = 1068, + [5393] = 1066, + [5394] = 1047, + [5395] = 814, + [5396] = 1048, + [5397] = 1086, + [5398] = 1078, + [5399] = 1096, + [5400] = 1049, + [5401] = 1051, + [5402] = 813, + [5403] = 1049, + [5404] = 1072, + [5405] = 850, + [5406] = 1051, + [5407] = 819, + [5408] = 1052, + [5409] = 1053, + [5410] = 841, + [5411] = 837, + [5412] = 939, + [5413] = 821, + [5414] = 934, + [5415] = 5415, + [5416] = 382, + [5417] = 841, + [5418] = 837, + [5419] = 966, + [5420] = 828, + [5421] = 857, + [5422] = 382, + [5423] = 827, + [5424] = 1048, + [5425] = 1047, + [5426] = 5426, + [5427] = 910, + [5428] = 815, + [5429] = 5426, + [5430] = 5426, + [5431] = 924, + [5432] = 429, + [5433] = 846, + [5434] = 836, + [5435] = 915, + [5436] = 838, + [5437] = 916, + [5438] = 5426, + [5439] = 390, + [5440] = 1052, + [5441] = 1053, + [5442] = 5426, + [5443] = 925, + [5444] = 5426, + [5445] = 1049, + [5446] = 5446, + [5447] = 903, + [5448] = 427, + [5449] = 922, + [5450] = 1051, + [5451] = 854, + [5452] = 5426, + [5453] = 913, + [5454] = 859, + [5455] = 886, + [5456] = 850, + [5457] = 857, + [5458] = 820, + [5459] = 859, + [5460] = 842, + [5461] = 860, + [5462] = 828, + [5463] = 899, + [5464] = 918, + [5465] = 5465, + [5466] = 5426, + [5467] = 812, + [5468] = 852, + [5469] = 853, + [5470] = 5426, + [5471] = 860, + [5472] = 380, + [5473] = 849, + [5474] = 839, + [5475] = 852, + [5476] = 383, + [5477] = 426, + [5478] = 844, + [5479] = 849, + [5480] = 839, + [5481] = 822, + [5482] = 425, + [5483] = 430, + [5484] = 827, + [5485] = 899, + [5486] = 847, + [5487] = 859, + [5488] = 875, + [5489] = 409, + [5490] = 5490, + [5491] = 826, + [5492] = 846, + [5493] = 838, + [5494] = 412, + [5495] = 857, + [5496] = 425, + [5497] = 430, + [5498] = 5490, + [5499] = 5490, + [5500] = 849, + [5501] = 1062, + [5502] = 850, + [5503] = 5503, + [5504] = 5490, + [5505] = 1061, + [5506] = 427, + [5507] = 5503, + [5508] = 5490, + [5509] = 429, + [5510] = 839, + [5511] = 918, + [5512] = 913, + [5513] = 828, + [5514] = 845, + [5515] = 874, + [5516] = 5503, + [5517] = 860, + [5518] = 865, + [5519] = 5490, + [5520] = 5490, + [5521] = 410, + [5522] = 852, + [5523] = 886, + [5524] = 5490, + [5525] = 5503, + [5526] = 426, + [5527] = 915, + [5528] = 924, + [5529] = 407, + [5530] = 827, + [5531] = 5503, + [5532] = 5532, + [5533] = 903, + [5534] = 5503, + [5535] = 5503, + [5536] = 922, + [5537] = 916, + [5538] = 3794, + [5539] = 5490, + [5540] = 848, + [5541] = 954, + [5542] = 5503, + [5543] = 5503, + [5544] = 925, + [5545] = 5545, + [5546] = 934, + [5547] = 915, + [5548] = 924, + [5549] = 1058, + [5550] = 5550, + [5551] = 5550, + [5552] = 5550, + [5553] = 3942, + [5554] = 875, + [5555] = 886, + [5556] = 954, + [5557] = 5550, + [5558] = 1061, + [5559] = 410, + [5560] = 1059, + [5561] = 913, + [5562] = 1062, + [5563] = 409, + [5564] = 5550, + [5565] = 934, + [5566] = 939, + [5567] = 5550, + [5568] = 1057, + [5569] = 3959, + [5570] = 5570, + [5571] = 918, [5572] = 412, - [5573] = 5551, - [5574] = 5543, - [5575] = 5551, - [5576] = 5543, - [5577] = 3832, - [5578] = 1179, - [5579] = 5551, - [5580] = 5531, - [5581] = 415, - [5582] = 5543, - [5583] = 5551, - [5584] = 5543, - [5585] = 1186, - [5586] = 5543, - [5587] = 830, - [5588] = 440, - [5589] = 903, - [5590] = 1090, - [5591] = 931, - [5592] = 878, - [5593] = 5551, - [5594] = 831, - [5595] = 949, - [5596] = 1036, - [5597] = 812, - [5598] = 1070, - [5599] = 449, + [5573] = 899, + [5574] = 865, + [5575] = 444, + [5576] = 934, + [5577] = 3921, + [5578] = 837, + [5579] = 916, + [5580] = 1055, + [5581] = 442, + [5582] = 5550, + [5583] = 5550, + [5584] = 1056, + [5585] = 4002, + [5586] = 4034, + [5587] = 903, + [5588] = 966, + [5589] = 922, + [5590] = 440, + [5591] = 925, + [5592] = 407, + [5593] = 841, + [5594] = 448, + [5595] = 5550, + [5596] = 450, + [5597] = 440, + [5598] = 450, + [5599] = 444, [5600] = 5600, - [5601] = 865, - [5602] = 440, - [5603] = 1066, - [5604] = 1038, - [5605] = 453, - [5606] = 1034, - [5607] = 1131, - [5608] = 5496, - [5609] = 5609, - [5610] = 442, - [5611] = 821, - [5612] = 878, - [5613] = 448, - [5614] = 5614, - [5615] = 813, - [5616] = 5507, - [5617] = 1036, - [5618] = 824, - [5619] = 1034, - [5620] = 816, - [5621] = 1038, - [5622] = 1131, - [5623] = 831, - [5624] = 1070, - [5625] = 1066, - [5626] = 830, - [5627] = 836, - [5628] = 852, - [5629] = 491, - [5630] = 482, - [5631] = 853, - [5632] = 486, - [5633] = 844, - [5634] = 1066, - [5635] = 1070, - [5636] = 1131, - [5637] = 830, - [5638] = 489, - [5639] = 1034, - [5640] = 492, - [5641] = 831, - [5642] = 1036, - [5643] = 1038, - [5644] = 5644, - [5645] = 511, - [5646] = 483, - [5647] = 511, - [5648] = 487, - [5649] = 5649, - [5650] = 5650, - [5651] = 490, - [5652] = 479, - [5653] = 911, - [5654] = 491, - [5655] = 489, + [5601] = 875, + [5602] = 1051, + [5603] = 815, + [5604] = 1052, + [5605] = 1053, + [5606] = 1049, + [5607] = 442, + [5608] = 448, + [5609] = 5532, + [5610] = 1048, + [5611] = 820, + [5612] = 1047, + [5613] = 5613, + [5614] = 5545, + [5615] = 865, + [5616] = 819, + [5617] = 1048, + [5618] = 1047, + [5619] = 822, + [5620] = 841, + [5621] = 837, + [5622] = 1052, + [5623] = 812, + [5624] = 1053, + [5625] = 1051, + [5626] = 1049, + [5627] = 512, + [5628] = 1052, + [5629] = 1048, + [5630] = 489, + [5631] = 1047, + [5632] = 845, + [5633] = 491, + [5634] = 841, + [5635] = 837, + [5636] = 5636, + [5637] = 484, + [5638] = 479, + [5639] = 1049, + [5640] = 826, + [5641] = 1051, + [5642] = 485, + [5643] = 848, + [5644] = 847, + [5645] = 1053, + [5646] = 505, + [5647] = 491, + [5648] = 480, + [5649] = 485, + [5650] = 512, + [5651] = 489, + [5652] = 483, + [5653] = 910, + [5654] = 493, + [5655] = 815, [5656] = 5656, - [5657] = 482, - [5658] = 812, - [5659] = 480, - [5660] = 493, - [5661] = 492, - [5662] = 486, - [5663] = 488, - [5664] = 484, - [5665] = 813, - [5666] = 488, + [5657] = 820, + [5658] = 496, + [5659] = 490, + [5660] = 479, + [5661] = 498, + [5662] = 484, + [5663] = 5663, + [5664] = 487, + [5665] = 5665, + [5666] = 496, [5667] = 490, - [5668] = 480, - [5669] = 5507, - [5670] = 479, - [5671] = 487, - [5672] = 493, - [5673] = 484, - [5674] = 483, - [5675] = 5496, - [5676] = 823, - [5677] = 821, - [5678] = 821, - [5679] = 812, - [5680] = 813, - [5681] = 3449, - [5682] = 823, - [5683] = 812, - [5684] = 812, - [5685] = 813, - [5686] = 816, - [5687] = 911, - [5688] = 824, - [5689] = 813, - [5690] = 5690, - [5691] = 844, - [5692] = 853, + [5668] = 5545, + [5669] = 505, + [5670] = 487, + [5671] = 498, + [5672] = 480, + [5673] = 493, + [5674] = 5532, + [5675] = 483, + [5676] = 820, + [5677] = 819, + [5678] = 3432, + [5679] = 823, + [5680] = 815, + [5681] = 819, + [5682] = 820, + [5683] = 815, + [5684] = 910, + [5685] = 820, + [5686] = 822, + [5687] = 812, + [5688] = 823, + [5689] = 815, + [5690] = 3432, + [5691] = 847, + [5692] = 826, [5693] = 5693, [5694] = 5693, - [5695] = 852, - [5696] = 836, - [5697] = 844, - [5698] = 5693, - [5699] = 5693, - [5700] = 836, - [5701] = 812, - [5702] = 853, - [5703] = 3449, - [5704] = 836, - [5705] = 853, + [5695] = 826, + [5696] = 5693, + [5697] = 848, + [5698] = 848, + [5699] = 847, + [5700] = 5693, + [5701] = 845, + [5702] = 815, + [5703] = 5703, + [5704] = 5693, + [5705] = 848, [5706] = 5693, - [5707] = 3778, - [5708] = 852, - [5709] = 5693, - [5710] = 813, - [5711] = 820, - [5712] = 824, - [5713] = 816, - [5714] = 5714, + [5707] = 3794, + [5708] = 820, + [5709] = 845, + [5710] = 826, + [5711] = 812, + [5712] = 822, + [5713] = 817, + [5714] = 4034, [5715] = 856, - [5716] = 5716, - [5717] = 5716, - [5718] = 5716, - [5719] = 5716, - [5720] = 5716, - [5721] = 5716, - [5722] = 850, - [5723] = 5716, - [5724] = 5716, - [5725] = 3778, - [5726] = 5716, - [5727] = 5727, - [5728] = 3915, - [5729] = 769, - [5730] = 5716, - [5731] = 1090, - [5732] = 832, - [5733] = 1177, - [5734] = 767, - [5735] = 845, - [5736] = 5716, - [5737] = 5716, - [5738] = 5716, - [5739] = 5716, - [5740] = 5716, - [5741] = 5716, - [5742] = 4038, - [5743] = 3832, - [5744] = 4000, - [5745] = 1179, - [5746] = 5716, - [5747] = 5747, - [5748] = 5748, - [5749] = 1171, + [5716] = 3959, + [5717] = 5717, + [5718] = 1057, + [5719] = 5719, + [5720] = 1056, + [5721] = 5721, + [5722] = 1059, + [5723] = 5717, + [5724] = 4002, + [5725] = 3794, + [5726] = 5726, + [5727] = 1058, + [5728] = 5717, + [5729] = 5717, + [5730] = 5730, + [5731] = 5717, + [5732] = 3942, + [5733] = 5717, + [5734] = 5717, + [5735] = 761, + [5736] = 5717, + [5737] = 5717, + [5738] = 5717, + [5739] = 5717, + [5740] = 5717, + [5741] = 829, + [5742] = 3921, + [5743] = 5717, + [5744] = 840, + [5745] = 5717, + [5746] = 858, + [5747] = 5717, + [5748] = 5717, + [5749] = 855, [5750] = 5750, - [5751] = 5751, - [5752] = 5716, - [5753] = 5753, + [5751] = 5717, + [5752] = 5717, + [5753] = 5717, [5754] = 5754, - [5755] = 5716, - [5756] = 820, - [5757] = 3961, - [5758] = 847, - [5759] = 1186, - [5760] = 5716, - [5761] = 911, - [5762] = 860, - [5763] = 855, - [5764] = 1186, - [5765] = 850, - [5766] = 5747, - [5767] = 962, - [5768] = 944, - [5769] = 3449, - [5770] = 5748, - [5771] = 1177, - [5772] = 855, - [5773] = 3832, - [5774] = 856, - [5775] = 936, - [5776] = 1179, - [5777] = 934, - [5778] = 3915, - [5779] = 845, - [5780] = 821, - [5781] = 5750, - [5782] = 5751, - [5783] = 847, - [5784] = 5714, - [5785] = 5754, - [5786] = 1171, - [5787] = 952, - [5788] = 4038, - [5789] = 832, - [5790] = 3961, - [5791] = 928, - [5792] = 932, - [5793] = 5753, - [5794] = 1090, - [5795] = 939, - [5796] = 945, - [5797] = 4000, - [5798] = 860, - [5799] = 925, - [5800] = 938, - [5801] = 933, - [5802] = 816, - [5803] = 911, - [5804] = 864, - [5805] = 887, - [5806] = 870, - [5807] = 824, - [5808] = 941, - [5809] = 938, - [5810] = 3778, - [5811] = 945, - [5812] = 952, - [5813] = 934, - [5814] = 932, - [5815] = 951, - [5816] = 844, - [5817] = 933, - [5818] = 928, - [5819] = 948, - [5820] = 939, - [5821] = 941, - [5822] = 852, - [5823] = 944, - [5824] = 925, - [5825] = 3449, - [5826] = 936, - [5827] = 836, - [5828] = 821, - [5829] = 853, - [5830] = 887, - [5831] = 870, - [5832] = 864, - [5833] = 962, - [5834] = 979, - [5835] = 879, - [5836] = 897, - [5837] = 824, - [5838] = 951, - [5839] = 948, - [5840] = 979, + [5755] = 817, + [5756] = 1055, + [5757] = 5757, + [5758] = 5717, + [5759] = 5759, + [5760] = 763, + [5761] = 910, + [5762] = 830, + [5763] = 832, + [5764] = 832, + [5765] = 1059, + [5766] = 4002, + [5767] = 982, + [5768] = 975, + [5769] = 976, + [5770] = 977, + [5771] = 978, + [5772] = 819, + [5773] = 1058, + [5774] = 3942, + [5775] = 983, + [5776] = 5750, + [5777] = 961, + [5778] = 987, + [5779] = 988, + [5780] = 1056, + [5781] = 4034, + [5782] = 1055, + [5783] = 858, + [5784] = 1057, + [5785] = 3959, + [5786] = 856, + [5787] = 855, + [5788] = 3432, + [5789] = 830, + [5790] = 829, + [5791] = 5759, + [5792] = 5754, + [5793] = 840, + [5794] = 5719, + [5795] = 5726, + [5796] = 5730, + [5797] = 5721, + [5798] = 3921, + [5799] = 979, + [5800] = 891, + [5801] = 904, + [5802] = 910, + [5803] = 884, + [5804] = 980, + [5805] = 822, + [5806] = 985, + [5807] = 812, + [5808] = 893, + [5809] = 980, + [5810] = 977, + [5811] = 884, + [5812] = 891, + [5813] = 893, + [5814] = 904, + [5815] = 979, + [5816] = 975, + [5817] = 976, + [5818] = 990, + [5819] = 978, + [5820] = 826, + [5821] = 848, + [5822] = 982, + [5823] = 847, + [5824] = 845, + [5825] = 985, + [5826] = 3432, + [5827] = 3794, + [5828] = 1009, + [5829] = 988, + [5830] = 983, + [5831] = 961, + [5832] = 819, + [5833] = 987, + [5834] = 984, + [5835] = 984, + [5836] = 1009, + [5837] = 990, + [5838] = 815, + [5839] = 889, + [5840] = 820, [5841] = 812, - [5842] = 911, - [5843] = 816, - [5844] = 813, - [5845] = 5845, - [5846] = 1171, - [5847] = 5845, - [5848] = 3832, - [5849] = 5845, - [5850] = 5845, - [5851] = 844, - [5852] = 4000, - [5853] = 5845, - [5854] = 5845, - [5855] = 3961, - [5856] = 897, - [5857] = 5845, - [5858] = 1186, - [5859] = 5859, - [5860] = 3778, - [5861] = 5751, - [5862] = 5845, - [5863] = 879, - [5864] = 3915, - [5865] = 5845, - [5866] = 852, - [5867] = 5753, - [5868] = 5845, - [5869] = 5747, - [5870] = 5748, - [5871] = 5750, - [5872] = 4038, - [5873] = 1179, - [5874] = 1090, - [5875] = 5754, - [5876] = 5845, - [5877] = 1177, - [5878] = 5714, + [5842] = 822, + [5843] = 910, + [5844] = 864, + [5845] = 4034, + [5846] = 847, + [5847] = 1057, + [5848] = 5759, + [5849] = 5754, + [5850] = 5850, + [5851] = 5850, + [5852] = 1056, + [5853] = 1059, + [5854] = 3959, + [5855] = 4002, + [5856] = 3921, + [5857] = 5850, + [5858] = 5750, + [5859] = 1055, + [5860] = 5850, + [5861] = 3942, + [5862] = 5730, + [5863] = 1058, + [5864] = 5850, + [5865] = 5850, + [5866] = 3794, + [5867] = 5850, + [5868] = 889, + [5869] = 5721, + [5870] = 5719, + [5871] = 5850, + [5872] = 5872, + [5873] = 5850, + [5874] = 5726, + [5875] = 5850, + [5876] = 864, + [5877] = 5850, + [5878] = 845, [5879] = 5879, [5880] = 5880, - [5881] = 5879, - [5882] = 5879, - [5883] = 5879, - [5884] = 5879, - [5885] = 5879, + [5881] = 5880, + [5882] = 5880, + [5883] = 5880, + [5884] = 5880, + [5885] = 5880, [5886] = 5886, [5887] = 5887, [5888] = 5888, @@ -8490,4266 +8497,4268 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5890] = 5890, [5891] = 5891, [5892] = 5892, - [5893] = 5886, - [5894] = 5894, - [5895] = 5886, + [5893] = 5893, + [5894] = 5891, + [5895] = 5895, [5896] = 5896, [5897] = 5897, [5898] = 5898, [5899] = 5899, [5900] = 5900, - [5901] = 5894, - [5902] = 5886, - [5903] = 5888, + [5901] = 5890, + [5902] = 5902, + [5903] = 5903, [5904] = 5904, - [5905] = 5904, - [5906] = 5906, + [5905] = 5903, + [5906] = 5904, [5907] = 5888, - [5908] = 5900, - [5909] = 5894, - [5910] = 5910, - [5911] = 5894, - [5912] = 5899, - [5913] = 5913, - [5914] = 5914, - [5915] = 5896, - [5916] = 5890, - [5917] = 5917, - [5918] = 5918, - [5919] = 3915, - [5920] = 5920, - [5921] = 5906, - [5922] = 5887, - [5923] = 5896, - [5924] = 5924, + [5908] = 5899, + [5909] = 5887, + [5910] = 5892, + [5911] = 5891, + [5912] = 5912, + [5913] = 1057, + [5914] = 5887, + [5915] = 5899, + [5916] = 5902, + [5917] = 5895, + [5918] = 5890, + [5919] = 5919, + [5920] = 5888, + [5921] = 5904, + [5922] = 5900, + [5923] = 1056, + [5924] = 5895, [5925] = 5892, - [5926] = 5914, - [5927] = 5889, - [5928] = 5917, - [5929] = 5894, - [5930] = 5886, - [5931] = 5887, - [5932] = 5897, - [5933] = 5888, - [5934] = 5899, - [5935] = 5914, - [5936] = 5888, - [5937] = 5896, - [5938] = 5890, - [5939] = 5920, - [5940] = 5906, - [5941] = 5887, - [5942] = 5924, - [5943] = 5897, - [5944] = 5892, - [5945] = 5896, - [5946] = 5914, - [5947] = 5899, - [5948] = 5900, - [5949] = 5890, - [5950] = 5889, - [5951] = 5917, - [5952] = 5894, - [5953] = 5886, - [5954] = 5888, - [5955] = 5899, - [5956] = 5896, - [5957] = 5891, - [5958] = 5888, - [5959] = 5896, - [5960] = 5900, - [5961] = 5890, - [5962] = 5920, - [5963] = 5899, - [5964] = 5891, - [5965] = 5894, - [5966] = 5906, - [5967] = 5887, - [5968] = 5896, - [5969] = 5924, - [5970] = 5917, - [5971] = 5889, + [5926] = 5890, + [5927] = 5893, + [5928] = 5896, + [5929] = 5929, + [5930] = 5898, + [5931] = 5899, + [5932] = 5932, + [5933] = 5889, + [5934] = 5903, + [5935] = 5900, + [5936] = 5898, + [5937] = 5902, + [5938] = 5888, + [5939] = 5939, + [5940] = 5891, + [5941] = 5912, + [5942] = 1055, + [5943] = 5891, + [5944] = 5886, + [5945] = 5892, + [5946] = 5891, + [5947] = 5896, + [5948] = 5912, + [5949] = 5895, + [5950] = 5896, + [5951] = 5902, + [5952] = 5952, + [5953] = 5953, + [5954] = 5898, + [5955] = 5892, + [5956] = 5899, + [5957] = 5903, + [5958] = 5903, + [5959] = 5904, + [5960] = 5888, + [5961] = 5902, + [5962] = 5900, + [5963] = 5893, + [5964] = 5939, + [5965] = 5889, + [5966] = 5888, + [5967] = 5900, + [5968] = 5890, + [5969] = 5889, + [5970] = 5890, + [5971] = 5904, [5972] = 5972, [5973] = 5892, - [5974] = 5892, - [5975] = 5906, - [5976] = 5890, - [5977] = 5886, - [5978] = 5914, - [5979] = 5889, - [5980] = 5888, - [5981] = 5904, - [5982] = 5917, - [5983] = 5983, - [5984] = 5899, - [5985] = 5899, - [5986] = 5986, - [5987] = 5896, - [5988] = 5899, - [5989] = 5894, - [5990] = 5888, + [5974] = 5900, + [5975] = 5890, + [5976] = 5903, + [5977] = 5899, + [5978] = 5891, + [5979] = 5897, + [5980] = 5902, + [5981] = 5892, + [5982] = 1058, + [5983] = 5888, + [5984] = 5890, + [5985] = 5902, + [5986] = 5903, + [5987] = 5904, + [5988] = 5887, + [5989] = 5895, + [5990] = 5952, [5991] = 5896, - [5992] = 5886, + [5992] = 5898, [5993] = 5993, - [5994] = 5894, - [5995] = 5890, - [5996] = 5996, - [5997] = 5997, - [5998] = 5996, - [5999] = 5890, - [6000] = 5920, + [5994] = 5994, + [5995] = 5900, + [5996] = 5899, + [5997] = 5939, + [5998] = 5899, + [5999] = 5952, + [6000] = 5939, [6001] = 5892, - [6002] = 5906, - [6003] = 5887, - [6004] = 5924, - [6005] = 5996, - [6006] = 5892, - [6007] = 5914, - [6008] = 5917, - [6009] = 5889, - [6010] = 5894, - [6011] = 5888, - [6012] = 5906, - [6013] = 5886, - [6014] = 5899, - [6015] = 5886, - [6016] = 6016, - [6017] = 5917, - [6018] = 5894, - [6019] = 5888, - [6020] = 5920, - [6021] = 5896, - [6022] = 5887, - [6023] = 5896, - [6024] = 5924, - [6025] = 5914, - [6026] = 5920, - [6027] = 5890, - [6028] = 5892, - [6029] = 5920, + [6002] = 5887, + [6003] = 5886, + [6004] = 5972, + [6005] = 5898, + [6006] = 5898, + [6007] = 5895, + [6008] = 5900, + [6009] = 5896, + [6010] = 5952, + [6011] = 5896, + [6012] = 5895, + [6013] = 5887, + [6014] = 5952, + [6015] = 5898, + [6016] = 5899, + [6017] = 5900, + [6018] = 6018, + [6019] = 4034, + [6020] = 5890, + [6021] = 5952, + [6022] = 5972, + [6023] = 5897, + [6024] = 5912, + [6025] = 5893, + [6026] = 5902, + [6027] = 5952, + [6028] = 3921, + [6029] = 5891, [6030] = 5892, - [6031] = 6031, - [6032] = 6016, - [6033] = 5924, - [6034] = 5889, - [6035] = 5896, - [6036] = 5917, - [6037] = 6037, - [6038] = 5890, - [6039] = 5920, - [6040] = 5924, - [6041] = 6016, - [6042] = 5904, - [6043] = 5914, - [6044] = 5891, - [6045] = 5897, - [6046] = 5897, - [6047] = 6031, - [6048] = 5972, - [6049] = 5891, - [6050] = 5889, - [6051] = 5914, - [6052] = 5892, - [6053] = 6053, - [6054] = 5906, - [6055] = 5887, - [6056] = 6053, - [6057] = 5890, - [6058] = 5920, - [6059] = 5890, - [6060] = 5924, - [6061] = 5904, - [6062] = 5924, - [6063] = 6053, - [6064] = 5887, - [6065] = 5914, - [6066] = 5924, - [6067] = 812, - [6068] = 5892, - [6069] = 5887, - [6070] = 5920, - [6071] = 6016, + [6031] = 5903, + [6032] = 5912, + [6033] = 5939, + [6034] = 5904, + [6035] = 6035, + [6036] = 6036, + [6037] = 5888, + [6038] = 5919, + [6039] = 5903, + [6040] = 5892, + [6041] = 5887, + [6042] = 5888, + [6043] = 5897, + [6044] = 5890, + [6045] = 6045, + [6046] = 5899, + [6047] = 5891, + [6048] = 5888, + [6049] = 5886, + [6050] = 5904, + [6051] = 6035, + [6052] = 6036, + [6053] = 5903, + [6054] = 5887, + [6055] = 5888, + [6056] = 5890, + [6057] = 4002, + [6058] = 5952, + [6059] = 3942, + [6060] = 5895, + [6061] = 5896, + [6062] = 5899, + [6063] = 5902, + [6064] = 5898, + [6065] = 5899, + [6066] = 5904, + [6067] = 5902, + [6068] = 5887, + [6069] = 5890, + [6070] = 5886, + [6071] = 5900, [6072] = 6072, - [6073] = 813, - [6074] = 5924, - [6075] = 5914, - [6076] = 5917, - [6077] = 6031, - [6078] = 5889, - [6079] = 5889, - [6080] = 5914, - [6081] = 5917, - [6082] = 5892, - [6083] = 5924, - [6084] = 1186, - [6085] = 6037, - [6086] = 5906, - [6087] = 5996, - [6088] = 5887, - [6089] = 5914, - [6090] = 5906, - [6091] = 5924, - [6092] = 5906, - [6093] = 5972, - [6094] = 5887, - [6095] = 5906, - [6096] = 5887, - [6097] = 5887, - [6098] = 6037, - [6099] = 5906, - [6100] = 5904, - [6101] = 5924, - [6102] = 5899, - [6103] = 5920, - [6104] = 5920, - [6105] = 5920, - [6106] = 5892, - [6107] = 6037, - [6108] = 6053, - [6109] = 6109, - [6110] = 5892, + [6073] = 5890, + [6074] = 5900, + [6075] = 5899, + [6076] = 5887, + [6077] = 5902, + [6078] = 5903, + [6079] = 5972, + [6080] = 6080, + [6081] = 5886, + [6082] = 5900, + [6083] = 5899, + [6084] = 5952, + [6085] = 5891, + [6086] = 5892, + [6087] = 5890, + [6088] = 5904, + [6089] = 5919, + [6090] = 5888, + [6091] = 5904, + [6092] = 5888, + [6093] = 5929, + [6094] = 5892, + [6095] = 5903, + [6096] = 5895, + [6097] = 6072, + [6098] = 5891, + [6099] = 5902, + [6100] = 5912, + [6101] = 5889, + [6102] = 5891, + [6103] = 5892, + [6104] = 5900, + [6105] = 5929, + [6106] = 5899, + [6107] = 5952, + [6108] = 3959, + [6109] = 5895, + [6110] = 5887, [6111] = 5896, - [6112] = 5899, - [6113] = 5917, - [6114] = 5891, - [6115] = 5889, - [6116] = 5914, - [6117] = 5890, - [6118] = 5892, - [6119] = 5924, - [6120] = 5887, - [6121] = 5920, - [6122] = 5906, - [6123] = 6123, - [6124] = 5896, - [6125] = 5890, - [6126] = 5920, - [6127] = 5890, - [6128] = 5896, - [6129] = 5900, - [6130] = 5899, - [6131] = 5983, - [6132] = 5997, - [6133] = 5888, + [6112] = 5919, + [6113] = 5902, + [6114] = 5898, + [6115] = 5900, + [6116] = 5903, + [6117] = 5902, + [6118] = 5899, + [6119] = 5904, + [6120] = 5919, + [6121] = 5900, + [6122] = 5892, + [6123] = 5904, + [6124] = 5903, + [6125] = 5939, + [6126] = 5902, + [6127] = 5902, + [6128] = 5890, + [6129] = 5952, + [6130] = 5939, + [6131] = 5897, + [6132] = 5903, + [6133] = 5887, [6134] = 5886, - [6135] = 5894, - [6136] = 5904, - [6137] = 5917, - [6138] = 5896, - [6139] = 5889, - [6140] = 5914, - [6141] = 1179, - [6142] = 5900, - [6143] = 5892, - [6144] = 5924, - [6145] = 5896, - [6146] = 5887, - [6147] = 5906, - [6148] = 5899, - [6149] = 5904, - [6150] = 5889, - [6151] = 5996, - [6152] = 6031, - [6153] = 5920, - [6154] = 5899, - [6155] = 3961, - [6156] = 5890, - [6157] = 6016, - [6158] = 5899, - [6159] = 5896, - [6160] = 5888, - [6161] = 5886, - [6162] = 5920, - [6163] = 5890, - [6164] = 5894, - [6165] = 5917, - [6166] = 6016, - [6167] = 5913, - [6168] = 6168, - [6169] = 5889, - [6170] = 5914, - [6171] = 5906, - [6172] = 5887, - [6173] = 5996, - [6174] = 5924, - [6175] = 5887, - [6176] = 5906, - [6177] = 5920, - [6178] = 5890, - [6179] = 5897, - [6180] = 6168, - [6181] = 5899, - [6182] = 5896, - [6183] = 5904, - [6184] = 5888, - [6185] = 5917, - [6186] = 4038, - [6187] = 5891, - [6188] = 5888, - [6189] = 5894, - [6190] = 5896, - [6191] = 5917, - [6192] = 5889, - [6193] = 5892, - [6194] = 5889, - [6195] = 5906, - [6196] = 5899, - [6197] = 5890, - [6198] = 5896, - [6199] = 5888, - [6200] = 5886, - [6201] = 5894, - [6202] = 5917, - [6203] = 5897, - [6204] = 6053, - [6205] = 5914, - [6206] = 5917, - [6207] = 5924, - [6208] = 6037, - [6209] = 5889, - [6210] = 5890, - [6211] = 5997, - [6212] = 5887, - [6213] = 5920, - [6214] = 5920, - [6215] = 6037, - [6216] = 6016, - [6217] = 1177, - [6218] = 6031, - [6219] = 5983, - [6220] = 5894, - [6221] = 5897, - [6222] = 5997, - [6223] = 5904, - [6224] = 5891, - [6225] = 5983, - [6226] = 5906, - [6227] = 5887, - [6228] = 6037, - [6229] = 5972, - [6230] = 5894, - [6231] = 5924, - [6232] = 5888, - [6233] = 5886, - [6234] = 6053, - [6235] = 5996, - [6236] = 5892, - [6237] = 5892, - [6238] = 6053, - [6239] = 5892, - [6240] = 1171, - [6241] = 3832, - [6242] = 5888, - [6243] = 5891, - [6244] = 5886, - [6245] = 5891, - [6246] = 6031, - [6247] = 5896, - [6248] = 5996, - [6249] = 5899, - [6250] = 5972, - [6251] = 5914, - [6252] = 5890, - [6253] = 5906, - [6254] = 5917, - [6255] = 5891, - [6256] = 6053, - [6257] = 5899, - [6258] = 5889, - [6259] = 5892, - [6260] = 6260, - [6261] = 5889, - [6262] = 1090, - [6263] = 6263, - [6264] = 5887, - [6265] = 5889, - [6266] = 5888, - [6267] = 5886, - [6268] = 5917, - [6269] = 5886, - [6270] = 5894, - [6271] = 5972, - [6272] = 5917, - [6273] = 5899, - [6274] = 5894, - [6275] = 5983, - [6276] = 5997, - [6277] = 5997, - [6278] = 5983, - [6279] = 5917, - [6280] = 6031, - [6281] = 5891, - [6282] = 5889, - [6283] = 5972, - [6284] = 5894, - [6285] = 5924, - [6286] = 5914, + [6135] = 5888, + [6136] = 5939, + [6137] = 5912, + [6138] = 5929, + [6139] = 5904, + [6140] = 5952, + [6141] = 5929, + [6142] = 5888, + [6143] = 5887, + [6144] = 5895, + [6145] = 5892, + [6146] = 5896, + [6147] = 5898, + [6148] = 5887, + [6149] = 5892, + [6150] = 5904, + [6151] = 5903, + [6152] = 5888, + [6153] = 5896, + [6154] = 5890, + [6155] = 5888, + [6156] = 5887, + [6157] = 5952, + [6158] = 5939, + [6159] = 5912, + [6160] = 6160, + [6161] = 5890, + [6162] = 5886, + [6163] = 5889, + [6164] = 6072, + [6165] = 5912, + [6166] = 5939, + [6167] = 5902, + [6168] = 5895, + [6169] = 6080, + [6170] = 5994, + [6171] = 5899, + [6172] = 5886, + [6173] = 5900, + [6174] = 5912, + [6175] = 6072, + [6176] = 5904, + [6177] = 5952, + [6178] = 5889, + [6179] = 5912, + [6180] = 5895, + [6181] = 5903, + [6182] = 5891, + [6183] = 5896, + [6184] = 5952, + [6185] = 5902, + [6186] = 5898, + [6187] = 5897, + [6188] = 6035, + [6189] = 5919, + [6190] = 5972, + [6191] = 6036, + [6192] = 5898, + [6193] = 5898, + [6194] = 5887, + [6195] = 5892, + [6196] = 5891, + [6197] = 5886, + [6198] = 5952, + [6199] = 5952, + [6200] = 5888, + [6201] = 5896, + [6202] = 6035, + [6203] = 6072, + [6204] = 5896, + [6205] = 5904, + [6206] = 5912, + [6207] = 5895, + [6208] = 5895, + [6209] = 5904, + [6210] = 5886, + [6211] = 5900, + [6212] = 5886, + [6213] = 5889, + [6214] = 5952, + [6215] = 5896, + [6216] = 5929, + [6217] = 5892, + [6218] = 5892, + [6219] = 5903, + [6220] = 6072, + [6221] = 5887, + [6222] = 5912, + [6223] = 5890, + [6224] = 5887, + [6225] = 5952, + [6226] = 5891, + [6227] = 5888, + [6228] = 5939, + [6229] = 6229, + [6230] = 5888, + [6231] = 5898, + [6232] = 5897, + [6233] = 5899, + [6234] = 5896, + [6235] = 6235, + [6236] = 5886, + [6237] = 5902, + [6238] = 6035, + [6239] = 5912, + [6240] = 6036, + [6241] = 5895, + [6242] = 5902, + [6243] = 5900, + [6244] = 5891, + [6245] = 5890, + [6246] = 5899, + [6247] = 5929, + [6248] = 5892, + [6249] = 6072, + [6250] = 6250, + [6251] = 5898, + [6252] = 5887, + [6253] = 5900, + [6254] = 5902, + [6255] = 5896, + [6256] = 5895, + [6257] = 5952, + [6258] = 5887, + [6259] = 5952, + [6260] = 5899, + [6261] = 5887, + [6262] = 5891, + [6263] = 5903, + [6264] = 5929, + [6265] = 5897, + [6266] = 5891, + [6267] = 5892, + [6268] = 5888, + [6269] = 5972, + [6270] = 5891, + [6271] = 5892, + [6272] = 5904, + [6273] = 5903, + [6274] = 5889, + [6275] = 6036, + [6276] = 5952, + [6277] = 6072, + [6278] = 5919, + [6279] = 5902, + [6280] = 5898, + [6281] = 5890, + [6282] = 5919, + [6283] = 5890, + [6284] = 5900, + [6285] = 5891, + [6286] = 5887, [6287] = 5899, - [6288] = 6053, - [6289] = 5886, - [6290] = 5906, - [6291] = 5891, - [6292] = 5892, - [6293] = 6037, - [6294] = 5888, - [6295] = 5889, - [6296] = 6031, - [6297] = 6053, - [6298] = 5897, - [6299] = 5924, - [6300] = 5894, - [6301] = 5886, - [6302] = 5888, - [6303] = 6037, - [6304] = 5886, - [6305] = 5906, - [6306] = 5886, - [6307] = 5904, - [6308] = 6053, - [6309] = 5920, - [6310] = 5906, - [6311] = 5904, - [6312] = 5896, - [6313] = 5890, - [6314] = 5890, - [6315] = 6315, - [6316] = 5914, - [6317] = 5906, - [6318] = 5904, - [6319] = 6031, - [6320] = 5899, - [6321] = 5892, - [6322] = 5890, - [6323] = 5889, - [6324] = 6031, - [6325] = 5917, - [6326] = 5894, - [6327] = 5886, - [6328] = 5888, - [6329] = 6053, - [6330] = 5924, + [6288] = 5919, + [6289] = 5899, + [6290] = 5939, + [6291] = 5886, + [6292] = 5952, + [6293] = 5898, + [6294] = 5889, + [6295] = 5896, + [6296] = 5890, + [6297] = 5895, + [6298] = 5898, + [6299] = 5952, + [6300] = 5887, + [6301] = 5891, + [6302] = 5887, + [6303] = 5892, + [6304] = 5888, + [6305] = 5904, + [6306] = 5903, + [6307] = 5902, + [6308] = 5890, + [6309] = 5898, + [6310] = 5900, + [6311] = 5899, + [6312] = 5891, + [6313] = 5898, + [6314] = 6036, + [6315] = 5896, + [6316] = 5895, + [6317] = 5887, + [6318] = 5903, + [6319] = 5893, + [6320] = 5900, + [6321] = 6321, + [6322] = 5904, + [6323] = 6072, + [6324] = 5896, + [6325] = 5895, + [6326] = 5904, + [6327] = 5889, + [6328] = 5896, + [6329] = 5952, + [6330] = 5895, [6331] = 5891, - [6332] = 5887, - [6333] = 5890, - [6334] = 5920, - [6335] = 5914, - [6336] = 5906, - [6337] = 5887, - [6338] = 5924, - [6339] = 6016, - [6340] = 5892, - [6341] = 6031, - [6342] = 5914, - [6343] = 5889, - [6344] = 5917, - [6345] = 5914, - [6346] = 5894, - [6347] = 4000, - [6348] = 5886, - [6349] = 5888, - [6350] = 6016, - [6351] = 5920, - [6352] = 6031, - [6353] = 6353, + [6332] = 5888, + [6333] = 5892, + [6334] = 6334, + [6335] = 5888, + [6336] = 5892, + [6337] = 5904, + [6338] = 5903, + [6339] = 5898, + [6340] = 5895, + [6341] = 6341, + [6342] = 5896, + [6343] = 5902, + [6344] = 5890, + [6345] = 5900, + [6346] = 5887, + [6347] = 5899, + [6348] = 5891, + [6349] = 5887, + [6350] = 5893, + [6351] = 5898, + [6352] = 5891, + [6353] = 5891, [6354] = 5899, [6355] = 5889, - [6356] = 5914, - [6357] = 5890, - [6358] = 5920, - [6359] = 5924, - [6360] = 5887, - [6361] = 5920, - [6362] = 5913, - [6363] = 6168, - [6364] = 5906, - [6365] = 5887, - [6366] = 5917, - [6367] = 5924, - [6368] = 5892, - [6369] = 5904, - [6370] = 5892, - [6371] = 5914, - [6372] = 5892, - [6373] = 5889, - [6374] = 5913, - [6375] = 6168, - [6376] = 5917, - [6377] = 5899, - [6378] = 5896, - [6379] = 5894, - [6380] = 5996, - [6381] = 5886, - [6382] = 5888, - [6383] = 5899, - [6384] = 5896, - [6385] = 5914, - [6386] = 5913, - [6387] = 6168, - [6388] = 5924, - [6389] = 5887, - [6390] = 5920, - [6391] = 5899, - [6392] = 5890, - [6393] = 5972, - [6394] = 5917, - [6395] = 5920, - [6396] = 5889, - [6397] = 5913, - [6398] = 6168, - [6399] = 5917, - [6400] = 5914, - [6401] = 5906, - [6402] = 5887, + [6356] = 815, + [6357] = 5972, + [6358] = 5904, + [6359] = 5972, + [6360] = 5900, + [6361] = 820, + [6362] = 5929, + [6363] = 6080, + [6364] = 5994, + [6365] = 5888, + [6366] = 5902, + [6367] = 5972, + [6368] = 5890, + [6369] = 5888, + [6370] = 5903, + [6371] = 5902, + [6372] = 5904, + [6373] = 6080, + [6374] = 5994, + [6375] = 5900, + [6376] = 5891, + [6377] = 5892, + [6378] = 5890, + [6379] = 5903, + [6380] = 6080, + [6381] = 5994, + [6382] = 5904, + [6383] = 6035, + [6384] = 5892, + [6385] = 1059, + [6386] = 5899, + [6387] = 5895, + [6388] = 5899, + [6389] = 5900, + [6390] = 5896, + [6391] = 6080, + [6392] = 5994, + [6393] = 5890, + [6394] = 5898, + [6395] = 5903, + [6396] = 5902, + [6397] = 5903, + [6398] = 5904, + [6399] = 5888, + [6400] = 5952, + [6401] = 5895, + [6402] = 5952, [6403] = 5896, - [6404] = 5924, + [6404] = 5900, [6405] = 6405, - [6406] = 6405, + [6406] = 6406, [6407] = 6405, [6408] = 6405, - [6409] = 6409, - [6410] = 6409, + [6409] = 6405, + [6410] = 6405, [6411] = 6405, [6412] = 6405, - [6413] = 6409, - [6414] = 6409, + [6413] = 6406, + [6414] = 6405, [6415] = 6405, - [6416] = 6409, - [6417] = 6405, + [6416] = 6405, + [6417] = 6406, [6418] = 6405, [6419] = 6405, [6420] = 6405, [6421] = 6405, [6422] = 6405, - [6423] = 6409, - [6424] = 6409, - [6425] = 6409, - [6426] = 6405, - [6427] = 6405, - [6428] = 6405, - [6429] = 6409, + [6423] = 6405, + [6424] = 6405, + [6425] = 6406, + [6426] = 6406, + [6427] = 6406, + [6428] = 6406, + [6429] = 6406, [6430] = 6405, - [6431] = 6409, - [6432] = 6405, - [6433] = 6409, - [6434] = 6405, + [6431] = 6406, + [6432] = 6406, + [6433] = 6405, + [6434] = 6406, [6435] = 6405, - [6436] = 6405, + [6436] = 6406, [6437] = 6405, - [6438] = 6409, - [6439] = 6409, - [6440] = 6409, + [6438] = 6406, + [6439] = 6405, + [6440] = 6406, [6441] = 6405, [6442] = 6405, [6443] = 6405, [6444] = 6405, [6445] = 6405, [6446] = 6446, - [6447] = 6447, + [6447] = 6446, [6448] = 6446, - [6449] = 6446, - [6450] = 6450, - [6451] = 6447, - [6452] = 6447, - [6453] = 6450, - [6454] = 6450, - [6455] = 6447, - [6456] = 6447, + [6449] = 6449, + [6450] = 6446, + [6451] = 6451, + [6452] = 6449, + [6453] = 6451, + [6454] = 6449, + [6455] = 6449, + [6456] = 6446, [6457] = 6446, - [6458] = 6447, - [6459] = 6450, - [6460] = 6450, - [6461] = 6447, - [6462] = 6446, - [6463] = 6446, - [6464] = 6447, - [6465] = 6446, - [6466] = 6447, - [6467] = 6447, - [6468] = 6446, - [6469] = 6447, - [6470] = 6450, - [6471] = 6446, - [6472] = 6450, - [6473] = 6447, - [6474] = 6447, - [6475] = 6450, + [6458] = 6451, + [6459] = 6451, + [6460] = 6449, + [6461] = 6451, + [6462] = 6451, + [6463] = 6451, + [6464] = 6449, + [6465] = 6451, + [6466] = 6446, + [6467] = 6451, + [6468] = 6451, + [6469] = 6446, + [6470] = 6449, + [6471] = 6449, + [6472] = 6449, + [6473] = 6449, + [6474] = 6451, + [6475] = 6451, [6476] = 6446, - [6477] = 6447, + [6477] = 6449, [6478] = 6446, - [6479] = 6446, - [6480] = 6450, - [6481] = 6447, - [6482] = 6450, - [6483] = 6446, - [6484] = 6447, + [6479] = 6449, + [6480] = 6449, + [6481] = 6451, + [6482] = 6451, + [6483] = 6451, + [6484] = 6449, [6485] = 6446, [6486] = 6446, - [6487] = 6447, + [6487] = 6446, [6488] = 6446, [6489] = 6446, - [6490] = 6446, - [6491] = 6446, - [6492] = 6450, + [6490] = 6451, + [6491] = 6449, + [6492] = 6451, [6493] = 6446, - [6494] = 6450, - [6495] = 6447, + [6494] = 6451, + [6495] = 6449, [6496] = 6446, - [6497] = 6446, - [6498] = 6447, - [6499] = 6450, - [6500] = 6450, - [6501] = 6447, - [6502] = 6447, - [6503] = 6447, - [6504] = 6450, - [6505] = 6450, - [6506] = 6450, - [6507] = 6446, - [6508] = 6450, - [6509] = 6447, - [6510] = 6450, - [6511] = 6511, - [6512] = 6450, - [6513] = 6450, + [6497] = 6451, + [6498] = 6451, + [6499] = 6449, + [6500] = 6449, + [6501] = 6451, + [6502] = 6449, + [6503] = 6449, + [6504] = 6451, + [6505] = 6446, + [6506] = 6446, + [6507] = 6507, + [6508] = 6449, + [6509] = 6451, + [6510] = 6446, + [6511] = 6446, + [6512] = 6449, + [6513] = 6446, [6514] = 6446, - [6515] = 6447, - [6516] = 6450, + [6515] = 6446, + [6516] = 6449, [6517] = 6446, - [6518] = 6450, - [6519] = 6447, - [6520] = 6446, - [6521] = 6447, - [6522] = 6450, - [6523] = 6450, - [6524] = 6450, + [6518] = 6451, + [6519] = 6451, + [6520] = 6449, + [6521] = 6446, + [6522] = 6449, + [6523] = 6449, + [6524] = 6451, [6525] = 6446, - [6526] = 6447, - [6527] = 6450, + [6526] = 6449, + [6527] = 6451, [6528] = 6528, [6529] = 6529, - [6530] = 6529, - [6531] = 6529, + [6530] = 6528, + [6531] = 6528, [6532] = 6529, [6533] = 6529, - [6534] = 6528, - [6535] = 844, + [6534] = 6529, + [6535] = 6528, [6536] = 6528, - [6537] = 6528, + [6537] = 847, [6538] = 6529, - [6539] = 6528, + [6539] = 6529, [6540] = 6529, [6541] = 6529, - [6542] = 6529, + [6542] = 6528, [6543] = 6529, - [6544] = 6528, - [6545] = 6529, + [6544] = 6529, + [6545] = 6528, [6546] = 6528, - [6547] = 6528, + [6547] = 845, [6548] = 6528, [6549] = 6528, [6550] = 6528, [6551] = 6529, - [6552] = 6528, - [6553] = 6528, - [6554] = 6529, - [6555] = 6528, + [6552] = 6529, + [6553] = 6529, + [6554] = 6528, + [6555] = 6529, [6556] = 6528, [6557] = 6529, - [6558] = 6529, - [6559] = 6529, + [6558] = 6528, + [6559] = 6528, [6560] = 6528, - [6561] = 6528, + [6561] = 6529, [6562] = 6528, - [6563] = 6528, + [6563] = 6529, [6564] = 6529, [6565] = 6529, - [6566] = 6528, - [6567] = 6529, + [6566] = 6529, + [6567] = 6528, [6568] = 6529, [6569] = 6528, [6570] = 6528, - [6571] = 852, + [6571] = 6528, [6572] = 6529, - [6573] = 6529, + [6573] = 6528, [6574] = 6529, - [6575] = 6529, - [6576] = 6529, - [6577] = 6528, + [6575] = 6528, + [6576] = 6528, + [6577] = 6529, [6578] = 6529, [6579] = 6528, [6580] = 6528, [6581] = 6529, [6582] = 6528, - [6583] = 6528, - [6584] = 821, + [6583] = 6529, + [6584] = 819, [6585] = 6585, [6586] = 6585, [6587] = 6585, [6588] = 6585, [6589] = 6585, [6590] = 6585, - [6591] = 6585, - [6592] = 824, + [6591] = 812, + [6592] = 6585, [6593] = 6585, [6594] = 6585, - [6595] = 816, + [6595] = 822, [6596] = 6596, [6597] = 6597, - [6598] = 6597, - [6599] = 6597, - [6600] = 6596, + [6598] = 6596, + [6599] = 848, + [6600] = 6597, [6601] = 6597, [6602] = 6597, - [6603] = 6596, + [6603] = 6597, [6604] = 6596, - [6605] = 6605, - [6606] = 6596, - [6607] = 6597, + [6605] = 6597, + [6606] = 6597, + [6607] = 826, [6608] = 6596, [6609] = 6596, [6610] = 6596, - [6611] = 836, + [6611] = 6596, [6612] = 6597, [6613] = 6597, - [6614] = 853, - [6615] = 6597, - [6616] = 6596, + [6614] = 6596, + [6615] = 6596, + [6616] = 6616, [6617] = 6617, [6618] = 6618, [6619] = 6619, - [6620] = 6618, - [6621] = 6619, - [6622] = 6622, - [6623] = 6617, - [6624] = 6618, - [6625] = 6617, - [6626] = 911, - [6627] = 6618, - [6628] = 6617, + [6620] = 6619, + [6621] = 910, + [6622] = 6617, + [6623] = 6619, + [6624] = 6619, + [6625] = 6618, + [6626] = 6619, + [6627] = 6627, + [6628] = 6619, [6629] = 6617, - [6630] = 6630, + [6630] = 6618, [6631] = 6617, - [6632] = 6622, - [6633] = 6630, - [6634] = 6618, - [6635] = 6617, - [6636] = 6630, - [6637] = 6630, - [6638] = 6622, - [6639] = 6630, - [6640] = 6630, - [6641] = 6630, + [6632] = 6619, + [6633] = 6619, + [6634] = 6634, + [6635] = 6634, + [6636] = 6627, + [6637] = 6634, + [6638] = 6627, + [6639] = 6618, + [6640] = 6634, + [6641] = 6627, [6642] = 6619, [6643] = 6619, - [6644] = 6619, - [6645] = 6617, - [6646] = 6619, - [6647] = 6618, - [6648] = 6619, - [6649] = 6622, - [6650] = 6618, - [6651] = 6630, - [6652] = 6630, - [6653] = 6619, - [6654] = 6618, - [6655] = 6619, - [6656] = 6618, - [6657] = 6618, - [6658] = 6630, - [6659] = 6619, - [6660] = 6630, - [6661] = 6617, - [6662] = 6662, - [6663] = 6617, - [6664] = 6622, - [6665] = 6622, + [6644] = 6644, + [6645] = 6619, + [6646] = 6617, + [6647] = 6634, + [6648] = 6617, + [6649] = 6634, + [6650] = 6634, + [6651] = 6617, + [6652] = 6617, + [6653] = 6634, + [6654] = 6617, + [6655] = 6617, + [6656] = 6617, + [6657] = 6634, + [6658] = 6634, + [6659] = 6618, + [6660] = 6634, + [6661] = 6618, + [6662] = 6627, + [6663] = 6619, + [6664] = 6619, + [6665] = 6665, [6666] = 6618, [6667] = 6618, - [6668] = 6668, - [6669] = 6617, - [6670] = 6617, - [6671] = 6619, - [6672] = 6617, - [6673] = 6618, - [6674] = 6619, - [6675] = 6630, - [6676] = 6619, - [6677] = 6617, - [6678] = 6622, - [6679] = 6619, - [6680] = 6618, - [6681] = 6681, - [6682] = 6681, - [6683] = 6681, + [6668] = 6634, + [6669] = 6618, + [6670] = 6627, + [6671] = 6627, + [6672] = 6634, + [6673] = 6617, + [6674] = 6618, + [6675] = 6618, + [6676] = 6634, + [6677] = 6619, + [6678] = 6618, + [6679] = 6617, + [6680] = 6617, + [6681] = 858, + [6682] = 6682, + [6683] = 6682, [6684] = 6684, - [6685] = 6681, - [6686] = 6681, - [6687] = 6684, + [6685] = 6684, + [6686] = 6682, + [6687] = 6682, [6688] = 6684, [6689] = 6684, [6690] = 6684, - [6691] = 6681, - [6692] = 6684, - [6693] = 6684, - [6694] = 6681, - [6695] = 6684, - [6696] = 847, + [6691] = 6682, + [6692] = 6682, + [6693] = 6682, + [6694] = 6684, + [6695] = 6682, + [6696] = 6682, [6697] = 6684, - [6698] = 6681, - [6699] = 6684, - [6700] = 6681, - [6701] = 6684, - [6702] = 6681, + [6698] = 6684, + [6699] = 6682, + [6700] = 6684, + [6701] = 6682, + [6702] = 6684, [6703] = 6684, - [6704] = 6681, - [6705] = 6684, - [6706] = 6681, - [6707] = 6681, - [6708] = 6684, - [6709] = 6681, - [6710] = 6681, - [6711] = 6681, - [6712] = 6681, - [6713] = 6684, - [6714] = 6684, - [6715] = 6681, - [6716] = 6681, + [6704] = 6682, + [6705] = 6682, + [6706] = 6684, + [6707] = 6684, + [6708] = 6682, + [6709] = 6684, + [6710] = 6682, + [6711] = 6684, + [6712] = 6682, + [6713] = 6682, + [6714] = 6682, + [6715] = 6684, + [6716] = 6682, [6717] = 6684, - [6718] = 6684, + [6718] = 6682, [6719] = 6684, - [6720] = 6684, + [6720] = 6682, [6721] = 6684, - [6722] = 6684, + [6722] = 855, [6723] = 6684, - [6724] = 6681, - [6725] = 6684, - [6726] = 6681, - [6727] = 6681, - [6728] = 832, - [6729] = 6681, - [6730] = 6681, + [6724] = 6682, + [6725] = 6682, + [6726] = 6682, + [6727] = 6682, + [6728] = 6684, + [6729] = 6682, + [6730] = 6684, [6731] = 6684, [6732] = 6684, - [6733] = 6681, - [6734] = 6681, + [6733] = 6684, + [6734] = 6682, [6735] = 6684, - [6736] = 6681, - [6737] = 1171, - [6738] = 1090, - [6739] = 1177, - [6740] = 1179, + [6736] = 6684, + [6737] = 1057, + [6738] = 1055, + [6739] = 1058, + [6740] = 1056, [6741] = 6741, [6742] = 6742, [6743] = 6743, - [6744] = 6744, + [6744] = 6742, [6745] = 6745, - [6746] = 6746, - [6747] = 6742, + [6746] = 6741, + [6747] = 6747, [6748] = 6748, - [6749] = 6749, + [6749] = 6747, [6750] = 6750, - [6751] = 6743, - [6752] = 6744, - [6753] = 6753, + [6751] = 6751, + [6752] = 6752, + [6753] = 6748, [6754] = 6754, - [6755] = 6741, + [6755] = 6742, [6756] = 6756, - [6757] = 6757, - [6758] = 6758, - [6759] = 6758, - [6760] = 6750, - [6761] = 6757, - [6762] = 6754, - [6763] = 6750, - [6764] = 6749, - [6765] = 6758, - [6766] = 6753, - [6767] = 6744, + [6757] = 6748, + [6758] = 6747, + [6759] = 6741, + [6760] = 6743, + [6761] = 6752, + [6762] = 6762, + [6763] = 6763, + [6764] = 6751, + [6765] = 6765, + [6766] = 6766, + [6767] = 6741, [6768] = 6750, - [6769] = 6757, - [6770] = 6745, - [6771] = 6753, - [6772] = 6758, - [6773] = 6756, - [6774] = 6746, - [6775] = 6753, - [6776] = 6757, - [6777] = 6756, - [6778] = 6746, - [6779] = 6758, - [6780] = 6744, - [6781] = 6750, - [6782] = 6757, - [6783] = 6756, - [6784] = 6746, - [6785] = 6753, - [6786] = 6749, - [6787] = 6748, - [6788] = 6744, - [6789] = 6748, - [6790] = 6742, - [6791] = 6749, - [6792] = 6742, - [6793] = 6749, - [6794] = 6743, - [6795] = 6743, - [6796] = 6744, - [6797] = 6741, - [6798] = 6745, - [6799] = 6748, - [6800] = 6754, - [6801] = 6742, - [6802] = 6745, - [6803] = 6746, - [6804] = 6758, - [6805] = 6745, - [6806] = 6743, - [6807] = 6757, - [6808] = 6743, - [6809] = 6742, - [6810] = 6745, - [6811] = 6754, - [6812] = 6758, - [6813] = 6748, - [6814] = 6741, - [6815] = 6741, - [6816] = 6754, - [6817] = 6749, - [6818] = 6756, - [6819] = 6757, - [6820] = 6750, - [6821] = 6750, - [6822] = 6754, - [6823] = 6741, - [6824] = 6745, - [6825] = 6746, - [6826] = 6743, - [6827] = 6753, - [6828] = 6744, - [6829] = 6758, - [6830] = 6753, - [6831] = 6754, - [6832] = 6744, - [6833] = 6741, - [6834] = 6750, - [6835] = 6745, - [6836] = 6753, - [6837] = 6758, - [6838] = 6750, - [6839] = 6757, - [6840] = 6756, - [6841] = 6746, - [6842] = 6748, - [6843] = 6742, - [6844] = 6742, - [6845] = 6749, - [6846] = 6741, - [6847] = 6754, - [6848] = 6757, - [6849] = 6741, - [6850] = 6754, - [6851] = 6743, - [6852] = 6748, - [6853] = 6745, - [6854] = 6743, - [6855] = 6855, - [6856] = 6749, - [6857] = 6742, - [6858] = 6745, - [6859] = 6748, - [6860] = 6753, + [6769] = 6742, + [6770] = 6766, + [6771] = 6750, + [6772] = 6748, + [6773] = 6741, + [6774] = 6765, + [6775] = 6766, + [6776] = 6751, + [6777] = 6754, + [6778] = 6762, + [6779] = 6756, + [6780] = 6748, + [6781] = 6765, + [6782] = 6763, + [6783] = 6747, + [6784] = 6763, + [6785] = 6743, + [6786] = 6763, + [6787] = 6752, + [6788] = 6762, + [6789] = 6751, + [6790] = 6763, + [6791] = 6762, + [6792] = 6754, + [6793] = 6751, + [6794] = 6756, + [6795] = 6747, + [6796] = 6751, + [6797] = 6763, + [6798] = 6762, + [6799] = 6765, + [6800] = 6766, + [6801] = 6743, + [6802] = 6742, + [6803] = 6750, + [6804] = 6752, + [6805] = 6754, + [6806] = 6756, + [6807] = 6763, + [6808] = 6748, + [6809] = 6747, + [6810] = 6743, + [6811] = 6752, + [6812] = 6762, + [6813] = 6756, + [6814] = 6752, + [6815] = 6754, + [6816] = 6743, + [6817] = 6747, + [6818] = 6743, + [6819] = 6765, + [6820] = 6762, + [6821] = 6748, + [6822] = 6756, + [6823] = 6763, + [6824] = 6751, + [6825] = 6754, + [6826] = 6750, + [6827] = 6750, + [6828] = 6756, + [6829] = 6742, + [6830] = 6741, + [6831] = 6741, + [6832] = 6766, + [6833] = 6750, + [6834] = 6754, + [6835] = 6765, + [6836] = 6748, + [6837] = 6747, + [6838] = 6751, + [6839] = 6742, + [6840] = 6743, + [6841] = 6752, + [6842] = 6752, + [6843] = 6766, + [6844] = 6741, + [6845] = 6763, + [6846] = 6742, + [6847] = 6752, + [6848] = 6743, + [6849] = 6742, + [6850] = 6750, + [6851] = 6762, + [6852] = 6762, + [6853] = 6762, + [6854] = 6763, + [6855] = 6763, + [6856] = 6742, + [6857] = 6747, + [6858] = 6750, + [6859] = 6741, + [6860] = 6748, [6861] = 6754, - [6862] = 6741, - [6863] = 6756, - [6864] = 6753, - [6865] = 6757, - [6866] = 6750, - [6867] = 6867, - [6868] = 6749, - [6869] = 6758, - [6870] = 6746, - [6871] = 6744, - [6872] = 6744, - [6873] = 6753, - [6874] = 6754, - [6875] = 6753, - [6876] = 6746, - [6877] = 6749, - [6878] = 6756, - [6879] = 6757, - [6880] = 6756, - [6881] = 6750, - [6882] = 6741, - [6883] = 6746, - [6884] = 6756, - [6885] = 6757, - [6886] = 6886, - [6887] = 6742, - [6888] = 6754, - [6889] = 6756, - [6890] = 6743, - [6891] = 6746, - [6892] = 6749, - [6893] = 6749, + [6862] = 6756, + [6863] = 6752, + [6864] = 6766, + [6865] = 6765, + [6866] = 6743, + [6867] = 6751, + [6868] = 6748, + [6869] = 6869, + [6870] = 6751, + [6871] = 6747, + [6872] = 6748, + [6873] = 6747, + [6874] = 6756, + [6875] = 6765, + [6876] = 6754, + [6877] = 6743, + [6878] = 6766, + [6879] = 6754, + [6880] = 6750, + [6881] = 6741, + [6882] = 6742, + [6883] = 6756, + [6884] = 6754, + [6885] = 6766, + [6886] = 6765, + [6887] = 6756, + [6888] = 6751, + [6889] = 6763, + [6890] = 6762, + [6891] = 6762, + [6892] = 6752, + [6893] = 6743, [6894] = 6742, - [6895] = 6741, - [6896] = 6754, - [6897] = 6756, - [6898] = 6748, - [6899] = 6745, - [6900] = 6743, - [6901] = 6744, - [6902] = 6742, - [6903] = 6748, - [6904] = 6757, - [6905] = 6749, - [6906] = 6758, - [6907] = 6756, - [6908] = 6757, - [6909] = 6756, - [6910] = 6750, - [6911] = 6757, + [6895] = 6750, + [6896] = 6752, + [6897] = 6747, + [6898] = 6754, + [6899] = 6756, + [6900] = 6748, + [6901] = 6765, + [6902] = 6748, + [6903] = 6747, + [6904] = 6756, + [6905] = 6743, + [6906] = 6752, + [6907] = 6762, + [6908] = 6754, + [6909] = 6750, + [6910] = 6762, + [6911] = 6763, [6912] = 6750, - [6913] = 6746, - [6914] = 6758, - [6915] = 6744, + [6913] = 6751, + [6914] = 6751, + [6915] = 6742, [6916] = 6754, - [6917] = 6748, - [6918] = 6753, - [6919] = 6919, - [6920] = 6750, - [6921] = 6750, - [6922] = 6758, - [6923] = 6741, - [6924] = 6744, - [6925] = 6757, - [6926] = 6753, - [6927] = 6742, - [6928] = 6756, - [6929] = 6745, - [6930] = 6748, - [6931] = 6748, - [6932] = 6758, + [6917] = 6765, + [6918] = 6766, + [6919] = 6741, + [6920] = 6766, + [6921] = 6741, + [6922] = 6765, + [6923] = 6763, + [6924] = 6766, + [6925] = 6756, + [6926] = 6754, + [6927] = 6751, + [6928] = 6751, + [6929] = 6752, + [6930] = 6765, + [6931] = 6763, + [6932] = 6762, [6933] = 6743, - [6934] = 6746, - [6935] = 6743, - [6936] = 6746, - [6937] = 6745, - [6938] = 6742, - [6939] = 6754, - [6940] = 6744, + [6934] = 6766, + [6935] = 6752, + [6936] = 6741, + [6937] = 6743, + [6938] = 6752, + [6939] = 6765, + [6940] = 6747, [6941] = 6748, - [6942] = 6741, - [6943] = 6753, - [6944] = 6753, - [6945] = 6744, - [6946] = 6749, - [6947] = 6758, - [6948] = 6919, - [6949] = 6742, - [6950] = 6743, - [6951] = 6750, - [6952] = 6745, - [6953] = 6757, - [6954] = 6756, - [6955] = 6919, - [6956] = 6748, - [6957] = 6742, - [6958] = 6741, - [6959] = 6743, - [6960] = 6745, - [6961] = 6746, - [6962] = 6754, - [6963] = 6753, - [6964] = 6741, - [6965] = 6744, - [6966] = 6758, - [6967] = 6967, - [6968] = 6750, - [6969] = 6745, - [6970] = 6754, - [6971] = 6757, - [6972] = 6756, - [6973] = 6743, - [6974] = 6749, - [6975] = 6919, - [6976] = 6745, - [6977] = 6748, - [6978] = 6746, - [6979] = 6742, - [6980] = 6743, - [6981] = 6745, - [6982] = 6754, - [6983] = 6741, - [6984] = 6749, - [6985] = 6746, - [6986] = 6754, - [6987] = 6741, - [6988] = 6753, - [6989] = 6744, - [6990] = 6758, - [6991] = 6750, - [6992] = 6757, - [6993] = 6756, - [6994] = 6748, - [6995] = 6749, - [6996] = 6742, - [6997] = 6743, - [6998] = 6746, - [6999] = 6745, - [7000] = 6746, - [7001] = 6758, + [6942] = 6756, + [6943] = 6747, + [6944] = 6748, + [6945] = 6756, + [6946] = 6754, + [6947] = 6750, + [6948] = 6742, + [6949] = 6949, + [6950] = 6741, + [6951] = 6742, + [6952] = 6952, + [6953] = 6766, + [6954] = 6765, + [6955] = 6751, + [6956] = 6750, + [6957] = 6747, + [6958] = 6763, + [6959] = 6762, + [6960] = 6743, + [6961] = 6752, + [6962] = 6752, + [6963] = 6750, + [6964] = 6742, + [6965] = 6741, + [6966] = 6756, + [6967] = 6741, + [6968] = 6741, + [6969] = 6765, + [6970] = 6742, + [6971] = 6766, + [6972] = 6743, + [6973] = 6748, + [6974] = 6766, + [6975] = 6765, + [6976] = 6756, + [6977] = 6747, + [6978] = 6742, + [6979] = 6747, + [6980] = 6750, + [6981] = 6981, + [6982] = 6762, + [6983] = 6754, + [6984] = 6743, + [6985] = 6752, + [6986] = 6748, + [6987] = 6763, + [6988] = 6751, + [6989] = 6765, + [6990] = 6751, + [6991] = 6766, + [6992] = 6756, + [6993] = 6741, + [6994] = 6754, + [6995] = 6743, + [6996] = 6766, + [6997] = 6756, + [6998] = 6754, + [6999] = 6741, + [7000] = 6766, + [7001] = 6752, [7002] = 6741, - [7003] = 6749, - [7004] = 6753, - [7005] = 6919, - [7006] = 6756, - [7007] = 6749, - [7008] = 6744, - [7009] = 6746, - [7010] = 6756, - [7011] = 6748, - [7012] = 6749, - [7013] = 6758, - [7014] = 6744, - [7015] = 6750, - [7016] = 6743, - [7017] = 6753, - [7018] = 6749, - [7019] = 6744, - [7020] = 6758, - [7021] = 6757, - [7022] = 6750, - [7023] = 6742, - [7024] = 6757, - [7025] = 6756, - [7026] = 6748, - [7027] = 6746, + [7003] = 6766, + [7004] = 6765, + [7005] = 6981, + [7006] = 6752, + [7007] = 6750, + [7008] = 6762, + [7009] = 6742, + [7010] = 6751, + [7011] = 6763, + [7012] = 6750, + [7013] = 6762, + [7014] = 6754, + [7015] = 6756, + [7016] = 6754, + [7017] = 6763, + [7018] = 6741, + [7019] = 6766, + [7020] = 6765, + [7021] = 6751, + [7022] = 6981, + [7023] = 6751, + [7024] = 6763, + [7025] = 6762, + [7026] = 6763, + [7027] = 6752, [7028] = 6742, - [7029] = 6749, - [7030] = 6743, - [7031] = 6746, - [7032] = 6745, - [7033] = 6741, + [7029] = 6750, + [7030] = 6762, + [7031] = 6743, + [7032] = 6748, + [7033] = 6748, [7034] = 6754, - [7035] = 6753, - [7036] = 6744, - [7037] = 6748, - [7038] = 6754, - [7039] = 6758, - [7040] = 6748, - [7041] = 6745, - [7042] = 6743, - [7043] = 6750, - [7044] = 6742, - [7045] = 6748, - [7046] = 6757, - [7047] = 6742, - [7048] = 6757, - [7049] = 6756, - [7050] = 6757, - [7051] = 6756, - [7052] = 6750, - [7053] = 6741, - [7054] = 6742, - [7055] = 6758, - [7056] = 6744, - [7057] = 6741, - [7058] = 6750, - [7059] = 6743, - [7060] = 6753, - [7061] = 6758, - [7062] = 6744, - [7063] = 6748, - [7064] = 6754, - [7065] = 6749, - [7066] = 6742, - [7067] = 6743, - [7068] = 6745, - [7069] = 6745, - [7070] = 6753, - [7071] = 6754, - [7072] = 6741, - [7073] = 6746, - [7074] = 6749, - [7075] = 6746, - [7076] = 6753, - [7077] = 6744, - [7078] = 6746, - [7079] = 6758, - [7080] = 6749, - [7081] = 6750, - [7082] = 6753, - [7083] = 6744, - [7084] = 6743, - [7085] = 6758, - [7086] = 6741, + [7035] = 6756, + [7036] = 6765, + [7037] = 6742, + [7038] = 6747, + [7039] = 6742, + [7040] = 6743, + [7041] = 6747, + [7042] = 6748, + [7043] = 6747, + [7044] = 6748, + [7045] = 6743, + [7046] = 6752, + [7047] = 6981, + [7048] = 6752, + [7049] = 6762, + [7050] = 6762, + [7051] = 6763, + [7052] = 6763, + [7053] = 6751, + [7054] = 6751, + [7055] = 6750, + [7056] = 6765, + [7057] = 6766, + [7058] = 6765, + [7059] = 6766, + [7060] = 6741, + [7061] = 6741, + [7062] = 6750, + [7063] = 6756, + [7064] = 6741, + [7065] = 6762, + [7066] = 6743, + [7067] = 6748, + [7068] = 6747, + [7069] = 6756, + [7070] = 6754, + [7071] = 6765, + [7072] = 6747, + [7073] = 6763, + [7074] = 6750, + [7075] = 6742, + [7076] = 6748, + [7077] = 6750, + [7078] = 6754, + [7079] = 6742, + [7080] = 6750, + [7081] = 6766, + [7082] = 6756, + [7083] = 6766, + [7084] = 6765, + [7085] = 6752, + [7086] = 6754, [7087] = 6754, - [7088] = 6750, - [7089] = 6757, - [7090] = 6746, - [7091] = 6749, - [7092] = 6741, - [7093] = 6745, - [7094] = 6743, - [7095] = 6742, - [7096] = 6748, - [7097] = 6754, - [7098] = 6756, - [7099] = 6757, - [7100] = 6750, - [7101] = 6756, - [7102] = 6758, - [7103] = 6744, - [7104] = 6745, - [7105] = 6753, - [7106] = 6743, - [7107] = 6919, - [7108] = 6742, - [7109] = 6748, - [7110] = 6756, - [7111] = 6757, - [7112] = 6750, - [7113] = 6741, - [7114] = 6758, - [7115] = 6744, - [7116] = 6753, - [7117] = 6746, - [7118] = 6745, - [7119] = 6749, - [7120] = 6741, - [7121] = 6754, - [7122] = 6756, + [7088] = 6756, + [7089] = 6756, + [7090] = 6741, + [7091] = 6748, + [7092] = 6754, + [7093] = 6747, + [7094] = 6766, + [7095] = 6748, + [7096] = 6747, + [7097] = 6750, + [7098] = 6765, + [7099] = 6743, + [7100] = 6752, + [7101] = 6751, + [7102] = 6750, + [7103] = 6743, + [7104] = 6742, + [7105] = 6762, + [7106] = 6763, + [7107] = 6981, + [7108] = 6751, + [7109] = 6747, + [7110] = 6742, + [7111] = 6765, + [7112] = 6766, + [7113] = 6763, + [7114] = 6748, + [7115] = 6751, + [7116] = 6741, + [7117] = 6741, + [7118] = 6763, + [7119] = 6762, + [7120] = 6762, + [7121] = 6751, + [7122] = 6742, [7123] = 6748, - [7124] = 6754, - [7125] = 6745, + [7124] = 6747, + [7125] = 6981, [7126] = 6743, - [7127] = 6742, - [7128] = 6748, + [7127] = 6752, + [7128] = 6743, [7129] = 7129, [7130] = 7130, - [7131] = 7129, - [7132] = 7129, - [7133] = 7129, + [7131] = 7131, + [7132] = 1059, + [7133] = 7133, [7134] = 7134, - [7135] = 7130, - [7136] = 7130, - [7137] = 7130, + [7135] = 7129, + [7136] = 3432, + [7137] = 7137, [7138] = 7134, - [7139] = 7134, - [7140] = 7130, - [7141] = 7134, - [7142] = 7134, - [7143] = 7130, - [7144] = 7129, - [7145] = 7129, - [7146] = 7134, - [7147] = 7130, - [7148] = 7130, + [7139] = 819, + [7140] = 7129, + [7141] = 7133, + [7142] = 7133, + [7143] = 7133, + [7144] = 7133, + [7145] = 7134, + [7146] = 7133, + [7147] = 7133, + [7148] = 7129, [7149] = 7134, - [7150] = 7134, - [7151] = 7130, - [7152] = 7134, - [7153] = 7134, - [7154] = 7129, - [7155] = 7130, - [7156] = 7130, - [7157] = 7129, - [7158] = 7134, + [7150] = 7129, + [7151] = 7134, + [7152] = 7129, + [7153] = 7133, + [7154] = 7134, + [7155] = 7155, + [7156] = 7133, + [7157] = 7134, + [7158] = 7129, [7159] = 7134, - [7160] = 7134, - [7161] = 7130, - [7162] = 7129, - [7163] = 7130, - [7164] = 7164, - [7165] = 7134, - [7166] = 7134, + [7160] = 7129, + [7161] = 7134, + [7162] = 7134, + [7163] = 7129, + [7164] = 7133, + [7165] = 7129, + [7166] = 7129, [7167] = 7134, - [7168] = 3449, - [7169] = 7130, - [7170] = 7170, - [7171] = 7130, + [7168] = 7129, + [7169] = 7134, + [7170] = 7129, + [7171] = 7134, [7172] = 7129, - [7173] = 7130, - [7174] = 821, - [7175] = 7134, + [7173] = 7129, + [7174] = 7134, + [7175] = 7129, [7176] = 7134, - [7177] = 7130, - [7178] = 7129, - [7179] = 7130, - [7180] = 7130, - [7181] = 7134, - [7182] = 7134, - [7183] = 1186, - [7184] = 7184, - [7185] = 7134, - [7186] = 7130, + [7177] = 7129, + [7178] = 7134, + [7179] = 7129, + [7180] = 7134, + [7181] = 7133, + [7182] = 7133, + [7183] = 7129, + [7184] = 7134, + [7185] = 7133, + [7186] = 7129, [7187] = 7134, - [7188] = 7130, - [7189] = 7134, - [7190] = 7129, - [7191] = 7130, + [7188] = 7129, + [7189] = 7133, + [7190] = 7134, + [7191] = 7129, [7192] = 7134, - [7193] = 7130, - [7194] = 7130, - [7195] = 7129, - [7196] = 7134, - [7197] = 7197, - [7198] = 7130, - [7199] = 7130, + [7193] = 7129, + [7194] = 7134, + [7195] = 7134, + [7196] = 7129, + [7197] = 7134, + [7198] = 7129, + [7199] = 7133, [7200] = 7134, [7201] = 7129, - [7202] = 7130, + [7202] = 7134, [7203] = 7134, [7204] = 7129, [7205] = 7205, - [7206] = 911, + [7206] = 820, [7207] = 7207, [7208] = 7208, - [7209] = 813, - [7210] = 816, - [7211] = 812, - [7212] = 7212, - [7213] = 824, - [7214] = 7214, + [7209] = 7209, + [7210] = 822, + [7211] = 7211, + [7212] = 812, + [7213] = 7213, + [7214] = 910, [7215] = 7215, - [7216] = 7216, - [7217] = 7214, + [7216] = 7209, + [7217] = 815, [7218] = 7218, - [7219] = 3449, - [7220] = 844, + [7219] = 7219, + [7220] = 7220, [7221] = 7221, - [7222] = 7222, - [7223] = 7218, - [7224] = 7224, - [7225] = 836, - [7226] = 7226, - [7227] = 7224, - [7228] = 7224, - [7229] = 7221, - [7230] = 853, - [7231] = 7224, - [7232] = 7224, - [7233] = 7224, - [7234] = 7221, - [7235] = 7221, - [7236] = 7224, + [7222] = 7218, + [7223] = 7220, + [7224] = 847, + [7225] = 7220, + [7226] = 7218, + [7227] = 7219, + [7228] = 7219, + [7229] = 7219, + [7230] = 845, + [7231] = 819, + [7232] = 7220, + [7233] = 7221, + [7234] = 7218, + [7235] = 7220, + [7236] = 7236, [7237] = 7218, - [7238] = 7222, - [7239] = 7222, - [7240] = 7218, - [7241] = 7221, - [7242] = 821, - [7243] = 7224, - [7244] = 7222, - [7245] = 7222, - [7246] = 7218, - [7247] = 852, - [7248] = 7221, - [7249] = 7221, - [7250] = 7222, - [7251] = 7218, + [7238] = 7219, + [7239] = 7218, + [7240] = 826, + [7241] = 7220, + [7242] = 7221, + [7243] = 7221, + [7244] = 7221, + [7245] = 7221, + [7246] = 7219, + [7247] = 7219, + [7248] = 7218, + [7249] = 3794, + [7250] = 3432, + [7251] = 7221, [7252] = 7221, - [7253] = 7222, - [7254] = 7221, - [7255] = 7222, - [7256] = 7218, - [7257] = 7218, - [7258] = 7221, - [7259] = 7222, - [7260] = 7224, - [7261] = 7221, - [7262] = 7218, - [7263] = 7224, + [7253] = 7219, + [7254] = 848, + [7255] = 7219, + [7256] = 7219, + [7257] = 7220, + [7258] = 7220, + [7259] = 7218, + [7260] = 7221, + [7261] = 7220, + [7262] = 3432, + [7263] = 7218, [7264] = 7218, - [7265] = 7224, - [7266] = 7266, - [7267] = 7222, - [7268] = 7218, - [7269] = 7218, - [7270] = 3449, - [7271] = 3778, - [7272] = 7222, - [7273] = 7224, - [7274] = 3961, + [7265] = 7221, + [7266] = 7220, + [7267] = 7219, + [7268] = 7220, + [7269] = 7269, + [7270] = 7221, + [7271] = 7218, + [7272] = 7221, + [7273] = 7220, + [7274] = 819, [7275] = 7275, [7276] = 7276, [7277] = 7275, - [7278] = 1186, - [7279] = 4038, - [7280] = 7280, - [7281] = 821, - [7282] = 7280, - [7283] = 7280, - [7284] = 7280, - [7285] = 7275, - [7286] = 7280, - [7287] = 7276, - [7288] = 3832, - [7289] = 7280, - [7290] = 4000, - [7291] = 7280, - [7292] = 7292, - [7293] = 7280, - [7294] = 7276, - [7295] = 3915, - [7296] = 7275, - [7297] = 7297, - [7298] = 7275, - [7299] = 7280, - [7300] = 813, - [7301] = 7275, - [7302] = 7275, - [7303] = 7276, - [7304] = 7275, - [7305] = 7292, + [7278] = 7278, + [7279] = 7279, + [7280] = 7278, + [7281] = 7276, + [7282] = 7278, + [7283] = 7283, + [7284] = 7284, + [7285] = 7285, + [7286] = 7284, + [7287] = 7275, + [7288] = 7288, + [7289] = 3794, + [7290] = 7276, + [7291] = 7285, + [7292] = 7283, + [7293] = 7278, + [7294] = 7283, + [7295] = 7283, + [7296] = 3432, + [7297] = 7283, + [7298] = 7284, + [7299] = 820, + [7300] = 7285, + [7301] = 7278, + [7302] = 815, + [7303] = 7275, + [7304] = 7278, + [7305] = 7276, [7306] = 7275, - [7307] = 7307, - [7308] = 812, - [7309] = 7309, - [7310] = 7280, - [7311] = 7309, - [7312] = 7297, - [7313] = 7292, - [7314] = 7314, - [7315] = 7309, - [7316] = 816, - [7317] = 7292, - [7318] = 7275, + [7307] = 7283, + [7308] = 7276, + [7309] = 4002, + [7310] = 7285, + [7311] = 7285, + [7312] = 7284, + [7313] = 7275, + [7314] = 7278, + [7315] = 7283, + [7316] = 7284, + [7317] = 7276, + [7318] = 812, [7319] = 7276, - [7320] = 7292, - [7321] = 7297, - [7322] = 7292, - [7323] = 7276, - [7324] = 7297, - [7325] = 7309, - [7326] = 3778, - [7327] = 911, - [7328] = 7297, - [7329] = 7309, - [7330] = 7292, - [7331] = 7276, + [7320] = 7278, + [7321] = 7276, + [7322] = 7278, + [7323] = 7285, + [7324] = 7276, + [7325] = 7276, + [7326] = 7278, + [7327] = 822, + [7328] = 3921, + [7329] = 7276, + [7330] = 7275, + [7331] = 7275, [7332] = 7275, - [7333] = 1090, - [7334] = 7275, - [7335] = 1177, - [7336] = 824, - [7337] = 7292, - [7338] = 1179, - [7339] = 7276, - [7340] = 7280, - [7341] = 7309, - [7342] = 7297, - [7343] = 7292, - [7344] = 7276, - [7345] = 7292, - [7346] = 7276, - [7347] = 7280, - [7348] = 7276, - [7349] = 7349, - [7350] = 7292, - [7351] = 1171, - [7352] = 3449, + [7333] = 4034, + [7334] = 7278, + [7335] = 7283, + [7336] = 7275, + [7337] = 7283, + [7338] = 3942, + [7339] = 7283, + [7340] = 1055, + [7341] = 7341, + [7342] = 1056, + [7343] = 1057, + [7344] = 1058, + [7345] = 7275, + [7346] = 7283, + [7347] = 7283, + [7348] = 910, + [7349] = 7275, + [7350] = 7284, + [7351] = 1059, + [7352] = 3959, [7353] = 7353, - [7354] = 7354, + [7354] = 812, [7355] = 7355, [7356] = 7356, - [7357] = 7354, - [7358] = 7358, - [7359] = 3778, - [7360] = 7360, + [7357] = 7357, + [7358] = 7353, + [7359] = 7356, + [7360] = 7355, [7361] = 7361, - [7362] = 7354, - [7363] = 7358, + [7362] = 7361, + [7363] = 7363, [7364] = 7364, - [7365] = 7361, - [7366] = 7366, - [7367] = 7355, - [7368] = 7355, - [7369] = 7361, - [7370] = 7360, - [7371] = 7356, - [7372] = 7361, - [7373] = 7360, - [7374] = 7356, - [7375] = 7354, - [7376] = 7364, - [7377] = 7354, - [7378] = 7353, - [7379] = 7379, - [7380] = 7366, - [7381] = 7354, - [7382] = 7358, - [7383] = 7379, + [7365] = 7356, + [7366] = 7357, + [7367] = 7353, + [7368] = 7357, + [7369] = 7356, + [7370] = 7355, + [7371] = 7357, + [7372] = 7372, + [7373] = 7355, + [7374] = 7353, + [7375] = 7361, + [7376] = 7376, + [7377] = 7356, + [7378] = 7378, + [7379] = 7376, + [7380] = 7376, + [7381] = 7355, + [7382] = 7378, + [7383] = 7376, [7384] = 7361, - [7385] = 7366, - [7386] = 7361, - [7387] = 7355, - [7388] = 7364, - [7389] = 7366, - [7390] = 7366, - [7391] = 7364, - [7392] = 7364, - [7393] = 7355, - [7394] = 7361, - [7395] = 7354, - [7396] = 7358, - [7397] = 7366, - [7398] = 816, - [7399] = 7354, + [7385] = 7372, + [7386] = 7356, + [7387] = 7372, + [7388] = 7353, + [7389] = 7361, + [7390] = 7361, + [7391] = 7356, + [7392] = 7376, + [7393] = 7356, + [7394] = 7353, + [7395] = 7372, + [7396] = 7353, + [7397] = 7361, + [7398] = 7353, + [7399] = 7376, [7400] = 7355, - [7401] = 7358, - [7402] = 7354, - [7403] = 7361, + [7401] = 7357, + [7402] = 3794, + [7403] = 7353, [7404] = 7361, - [7405] = 7358, - [7406] = 7358, - [7407] = 7354, + [7405] = 7372, + [7406] = 7376, + [7407] = 7355, [7408] = 7355, - [7409] = 7361, - [7410] = 7355, - [7411] = 7366, - [7412] = 7361, - [7413] = 7366, - [7414] = 7364, - [7415] = 7354, - [7416] = 7416, - [7417] = 7358, - [7418] = 7379, - [7419] = 7416, - [7420] = 7355, - [7421] = 7355, - [7422] = 7364, - [7423] = 7358, - [7424] = 7366, - [7425] = 7366, + [7409] = 7372, + [7410] = 7372, + [7411] = 7411, + [7412] = 7364, + [7413] = 7364, + [7414] = 7376, + [7415] = 7372, + [7416] = 7353, + [7417] = 7356, + [7418] = 7364, + [7419] = 7376, + [7420] = 7372, + [7421] = 7357, + [7422] = 7363, + [7423] = 7364, + [7424] = 7424, + [7425] = 7355, [7426] = 7361, - [7427] = 7364, - [7428] = 7366, - [7429] = 7355, - [7430] = 7364, - [7431] = 7361, - [7432] = 7364, - [7433] = 7358, - [7434] = 7358, - [7435] = 7364, - [7436] = 7379, - [7437] = 7364, - [7438] = 7355, - [7439] = 7355, + [7427] = 7411, + [7428] = 7363, + [7429] = 7378, + [7430] = 7361, + [7431] = 7431, + [7432] = 7353, + [7433] = 7372, + [7434] = 7376, + [7435] = 7361, + [7436] = 7356, + [7437] = 7356, + [7438] = 7353, + [7439] = 7376, [7440] = 7355, - [7441] = 7353, - [7442] = 7361, - [7443] = 852, - [7444] = 7358, - [7445] = 7366, - [7446] = 7416, - [7447] = 7354, - [7448] = 7354, - [7449] = 7360, - [7450] = 7358, - [7451] = 7358, - [7452] = 7354, - [7453] = 7361, - [7454] = 7358, - [7455] = 7354, + [7441] = 7411, + [7442] = 7355, + [7443] = 7356, + [7444] = 7376, + [7445] = 7372, + [7446] = 7372, + [7447] = 7447, + [7448] = 7355, + [7449] = 7378, + [7450] = 7411, + [7451] = 7376, + [7452] = 7353, + [7453] = 7363, + [7454] = 7357, + [7455] = 7364, [7456] = 7356, - [7457] = 7355, - [7458] = 7360, - [7459] = 7379, - [7460] = 7364, - [7461] = 7360, - [7462] = 844, - [7463] = 7416, - [7464] = 7364, - [7465] = 7361, - [7466] = 7353, - [7467] = 7361, - [7468] = 7379, - [7469] = 7366, - [7470] = 7353, - [7471] = 7364, - [7472] = 7354, - [7473] = 7358, - [7474] = 7353, - [7475] = 7358, - [7476] = 7366, - [7477] = 7416, - [7478] = 7361, - [7479] = 836, - [7480] = 7355, - [7481] = 7366, - [7482] = 7364, - [7483] = 7355, - [7484] = 7360, - [7485] = 7353, - [7486] = 7358, - [7487] = 7366, - [7488] = 7416, - [7489] = 7353, - [7490] = 7354, - [7491] = 7364, - [7492] = 7416, - [7493] = 7364, - [7494] = 7379, - [7495] = 7364, - [7496] = 7360, - [7497] = 7366, - [7498] = 7356, - [7499] = 7416, - [7500] = 7500, - [7501] = 911, - [7502] = 7379, - [7503] = 7354, - [7504] = 7366, - [7505] = 7364, - [7506] = 7361, - [7507] = 7366, - [7508] = 7354, - [7509] = 7355, - [7510] = 7379, - [7511] = 7364, - [7512] = 7355, - [7513] = 7361, - [7514] = 7416, - [7515] = 7354, - [7516] = 7361, + [7457] = 7364, + [7458] = 7363, + [7459] = 910, + [7460] = 7355, + [7461] = 820, + [7462] = 7361, + [7463] = 7356, + [7464] = 7353, + [7465] = 7372, + [7466] = 7355, + [7467] = 7411, + [7468] = 7356, + [7469] = 7411, + [7470] = 7361, + [7471] = 7353, + [7472] = 7356, + [7473] = 7363, + [7474] = 7356, + [7475] = 7378, + [7476] = 7364, + [7477] = 7357, + [7478] = 7364, + [7479] = 7364, + [7480] = 7378, + [7481] = 7364, + [7482] = 7376, + [7483] = 7363, + [7484] = 7376, + [7485] = 7355, + [7486] = 7411, + [7487] = 7353, + [7488] = 7378, + [7489] = 7361, + [7490] = 7357, + [7491] = 7372, + [7492] = 7363, + [7493] = 7355, + [7494] = 7356, + [7495] = 845, + [7496] = 7357, + [7497] = 7355, + [7498] = 7376, + [7499] = 7372, + [7500] = 7411, + [7501] = 7353, + [7502] = 7376, + [7503] = 7357, + [7504] = 7356, + [7505] = 7356, + [7506] = 7355, + [7507] = 7376, + [7508] = 7372, + [7509] = 7356, + [7510] = 847, + [7511] = 7361, + [7512] = 7357, + [7513] = 7353, + [7514] = 7372, + [7515] = 7355, + [7516] = 7411, [7517] = 7355, - [7518] = 7358, - [7519] = 7356, - [7520] = 7366, - [7521] = 7364, - [7522] = 7355, - [7523] = 7416, - [7524] = 7416, - [7525] = 7354, - [7526] = 7360, - [7527] = 7356, - [7528] = 7416, - [7529] = 7361, - [7530] = 7360, - [7531] = 7358, - [7532] = 7355, - [7533] = 7366, - [7534] = 7364, - [7535] = 7366, - [7536] = 7355, - [7537] = 7354, - [7538] = 7361, - [7539] = 7355, - [7540] = 7358, - [7541] = 7355, - [7542] = 7358, - [7543] = 7364, - [7544] = 7356, - [7545] = 7360, - [7546] = 7366, - [7547] = 7366, - [7548] = 7361, - [7549] = 853, - [7550] = 7366, - [7551] = 7358, - [7552] = 7552, - [7553] = 7354, - [7554] = 7355, - [7555] = 7361, - [7556] = 7356, - [7557] = 7360, - [7558] = 7379, - [7559] = 7364, - [7560] = 7356, - [7561] = 7360, - [7562] = 7354, - [7563] = 7353, - [7564] = 7358, - [7565] = 7416, - [7566] = 813, - [7567] = 7353, - [7568] = 7358, - [7569] = 7353, - [7570] = 7570, - [7571] = 812, + [7518] = 7361, + [7519] = 7353, + [7520] = 7376, + [7521] = 7363, + [7522] = 7364, + [7523] = 7372, + [7524] = 7353, + [7525] = 7378, + [7526] = 7411, + [7527] = 7361, + [7528] = 7378, + [7529] = 7356, + [7530] = 7353, + [7531] = 7372, + [7532] = 7357, + [7533] = 7411, + [7534] = 848, + [7535] = 7378, + [7536] = 7356, + [7537] = 7355, + [7538] = 826, + [7539] = 7361, + [7540] = 7372, + [7541] = 7356, + [7542] = 7378, + [7543] = 7376, + [7544] = 7411, + [7545] = 7361, + [7546] = 7361, + [7547] = 7353, + [7548] = 7363, + [7549] = 7364, + [7550] = 7372, + [7551] = 7376, + [7552] = 7355, + [7553] = 7411, + [7554] = 7353, + [7555] = 7372, + [7556] = 7376, + [7557] = 7361, + [7558] = 7353, + [7559] = 822, + [7560] = 7353, + [7561] = 7376, + [7562] = 7356, + [7563] = 7372, + [7564] = 7361, + [7565] = 7356, + [7566] = 7355, + [7567] = 7372, + [7568] = 7376, + [7569] = 7376, + [7570] = 7372, + [7571] = 7355, [7572] = 7361, - [7573] = 7358, - [7574] = 7353, - [7575] = 7358, - [7576] = 7355, - [7577] = 7353, - [7578] = 7366, - [7579] = 7379, - [7580] = 7360, - [7581] = 824, - [7582] = 7356, - [7583] = 7354, - [7584] = 7379, - [7585] = 7354, - [7586] = 7353, - [7587] = 7587, - [7588] = 7364, - [7589] = 7416, - [7590] = 7366, - [7591] = 7379, - [7592] = 7354, - [7593] = 7593, - [7594] = 7379, - [7595] = 7361, - [7596] = 7364, + [7573] = 7573, + [7574] = 815, + [7575] = 7357, + [7576] = 7361, + [7577] = 7372, + [7578] = 7363, + [7579] = 7378, + [7580] = 7355, + [7581] = 7361, + [7582] = 7411, + [7583] = 7355, + [7584] = 7353, + [7585] = 7353, + [7586] = 7364, + [7587] = 7361, + [7588] = 7378, + [7589] = 7361, + [7590] = 7355, + [7591] = 7591, + [7592] = 7376, + [7593] = 7372, + [7594] = 7378, + [7595] = 7376, + [7596] = 7356, [7597] = 7597, [7598] = 7598, [7599] = 7599, [7600] = 7600, [7601] = 7601, - [7602] = 7597, - [7603] = 7603, - [7604] = 7597, - [7605] = 7605, + [7602] = 7602, + [7603] = 3794, + [7604] = 7604, + [7605] = 7600, [7606] = 7598, - [7607] = 7598, + [7607] = 826, [7608] = 7608, - [7609] = 7609, - [7610] = 7603, - [7611] = 7609, - [7612] = 7598, - [7613] = 7603, - [7614] = 4000, - [7615] = 7599, - [7616] = 7609, - [7617] = 7603, - [7618] = 7609, - [7619] = 7605, - [7620] = 7597, - [7621] = 844, - [7622] = 7603, - [7623] = 7603, - [7624] = 7608, - [7625] = 7609, + [7609] = 845, + [7610] = 7602, + [7611] = 7597, + [7612] = 7608, + [7613] = 848, + [7614] = 7602, + [7615] = 7601, + [7616] = 7604, + [7617] = 7599, + [7618] = 7601, + [7619] = 7604, + [7620] = 7608, + [7621] = 7602, + [7622] = 7622, + [7623] = 7600, + [7624] = 7601, + [7625] = 7600, [7626] = 7600, - [7627] = 7597, - [7628] = 7601, - [7629] = 7603, - [7630] = 7597, - [7631] = 7599, - [7632] = 7597, - [7633] = 7599, - [7634] = 7598, - [7635] = 836, - [7636] = 7603, - [7637] = 7597, - [7638] = 7605, - [7639] = 7609, + [7627] = 7602, + [7628] = 7600, + [7629] = 7602, + [7630] = 7601, + [7631] = 7598, + [7632] = 7600, + [7633] = 7598, + [7634] = 7599, + [7635] = 847, + [7636] = 7598, + [7637] = 7598, + [7638] = 7598, + [7639] = 7601, [7640] = 7600, - [7641] = 7608, - [7642] = 7599, - [7643] = 3832, - [7644] = 7600, - [7645] = 7599, - [7646] = 7609, - [7647] = 7597, + [7641] = 7597, + [7642] = 7598, + [7643] = 7597, + [7644] = 7601, + [7645] = 7601, + [7646] = 7600, + [7647] = 7598, [7648] = 7597, - [7649] = 7603, - [7650] = 7598, - [7651] = 7609, + [7649] = 7602, + [7650] = 7601, + [7651] = 3921, [7652] = 7599, - [7653] = 7609, - [7654] = 7599, - [7655] = 7609, - [7656] = 7599, - [7657] = 7608, + [7653] = 7599, + [7654] = 7604, + [7655] = 7622, + [7656] = 7604, + [7657] = 7599, [7658] = 7598, - [7659] = 7603, - [7660] = 7603, - [7661] = 7599, + [7659] = 7622, + [7660] = 7600, + [7661] = 7597, [7662] = 7597, [7663] = 7599, - [7664] = 7597, - [7665] = 7598, - [7666] = 7609, - [7667] = 7603, - [7668] = 852, - [7669] = 7603, - [7670] = 7600, - [7671] = 7597, - [7672] = 7598, - [7673] = 879, - [7674] = 4038, - [7675] = 7598, - [7676] = 7603, - [7677] = 7605, - [7678] = 7603, - [7679] = 7605, - [7680] = 7601, - [7681] = 7598, - [7682] = 7597, - [7683] = 7599, + [7664] = 7602, + [7665] = 7622, + [7666] = 7600, + [7667] = 4002, + [7668] = 7622, + [7669] = 7604, + [7670] = 7604, + [7671] = 7599, + [7672] = 7601, + [7673] = 7600, + [7674] = 7622, + [7675] = 7597, + [7676] = 7599, + [7677] = 7597, + [7678] = 7602, + [7679] = 7601, + [7680] = 7602, + [7681] = 3959, + [7682] = 7602, + [7683] = 7597, [7684] = 7598, - [7685] = 7600, - [7686] = 7601, - [7687] = 7599, - [7688] = 7609, + [7685] = 4034, + [7686] = 7599, + [7687] = 3942, + [7688] = 7604, [7689] = 7600, - [7690] = 7609, - [7691] = 7600, - [7692] = 7600, - [7693] = 7600, - [7694] = 7603, - [7695] = 7597, - [7696] = 7603, - [7697] = 7601, - [7698] = 7603, - [7699] = 7597, + [7690] = 7597, + [7691] = 7604, + [7692] = 7601, + [7693] = 7591, + [7694] = 7602, + [7695] = 7599, + [7696] = 7602, + [7697] = 7598, + [7698] = 7598, + [7699] = 7601, [7700] = 7597, - [7701] = 7603, - [7702] = 853, - [7703] = 7609, - [7704] = 7597, - [7705] = 7603, - [7706] = 7599, - [7707] = 7609, - [7708] = 7605, - [7709] = 7605, - [7710] = 7601, - [7711] = 7599, - [7712] = 7597, - [7713] = 7605, - [7714] = 7609, - [7715] = 7605, - [7716] = 7598, - [7717] = 7597, - [7718] = 7608, - [7719] = 7605, - [7720] = 7597, - [7721] = 7609, - [7722] = 7599, - [7723] = 7600, - [7724] = 7600, - [7725] = 7605, + [7701] = 7604, + [7702] = 7601, + [7703] = 7599, + [7704] = 7600, + [7705] = 7598, + [7706] = 7601, + [7707] = 7601, + [7708] = 7600, + [7709] = 7709, + [7710] = 7599, + [7711] = 7622, + [7712] = 7604, + [7713] = 7598, + [7714] = 7598, + [7715] = 7597, + [7716] = 7604, + [7717] = 7604, + [7718] = 7604, + [7719] = 7608, + [7720] = 7602, + [7721] = 7600, + [7722] = 7598, + [7723] = 7598, + [7724] = 7597, + [7725] = 7597, [7726] = 7600, - [7727] = 7601, - [7728] = 7603, - [7729] = 7609, - [7730] = 7598, - [7731] = 7603, - [7732] = 7603, - [7733] = 7603, - [7734] = 7600, - [7735] = 7609, - [7736] = 7600, - [7737] = 7598, - [7738] = 7600, - [7739] = 7552, - [7740] = 3778, - [7741] = 7605, - [7742] = 7603, - [7743] = 7597, - [7744] = 7603, - [7745] = 7599, - [7746] = 7597, - [7747] = 7603, - [7748] = 7597, - [7749] = 7598, - [7750] = 7609, - [7751] = 7597, - [7752] = 7599, + [7727] = 7602, + [7728] = 7597, + [7729] = 7604, + [7730] = 7599, + [7731] = 7600, + [7732] = 7622, + [7733] = 864, + [7734] = 7602, + [7735] = 7602, + [7736] = 7604, + [7737] = 7597, + [7738] = 7599, + [7739] = 7739, + [7740] = 7600, + [7741] = 7602, + [7742] = 7599, + [7743] = 7598, + [7744] = 7598, + [7745] = 7597, + [7746] = 7602, + [7747] = 7597, + [7748] = 7601, + [7749] = 7597, + [7750] = 7601, + [7751] = 7602, + [7752] = 7598, [7753] = 7597, - [7754] = 7599, - [7755] = 7605, - [7756] = 7605, - [7757] = 7600, - [7758] = 7603, + [7754] = 7597, + [7755] = 7602, + [7756] = 7622, + [7757] = 7598, + [7758] = 7601, [7759] = 7597, - [7760] = 7601, - [7761] = 7601, - [7762] = 7603, - [7763] = 7600, - [7764] = 7603, - [7765] = 7605, - [7766] = 7609, - [7767] = 7597, - [7768] = 7600, + [7760] = 7622, + [7761] = 7622, + [7762] = 7602, + [7763] = 7597, + [7764] = 7599, + [7765] = 7604, + [7766] = 7604, + [7767] = 7601, + [7768] = 7597, [7769] = 7600, - [7770] = 7597, - [7771] = 7605, - [7772] = 7603, - [7773] = 7600, - [7774] = 7603, - [7775] = 7605, - [7776] = 7608, - [7777] = 7601, - [7778] = 7609, - [7779] = 7597, - [7780] = 7609, - [7781] = 7605, - [7782] = 7598, - [7783] = 7605, - [7784] = 7603, - [7785] = 7605, - [7786] = 7601, - [7787] = 7601, - [7788] = 7597, - [7789] = 7603, - [7790] = 3961, - [7791] = 7609, - [7792] = 7600, - [7793] = 7597, - [7794] = 7598, - [7795] = 7598, - [7796] = 7605, - [7797] = 7600, - [7798] = 7609, - [7799] = 7605, - [7800] = 897, - [7801] = 7597, - [7802] = 7601, - [7803] = 7599, - [7804] = 7605, - [7805] = 7598, - [7806] = 7599, - [7807] = 7605, - [7808] = 7603, - [7809] = 7598, - [7810] = 7600, - [7811] = 7600, - [7812] = 7609, + [7770] = 7622, + [7771] = 7601, + [7772] = 7602, + [7773] = 7598, + [7774] = 7602, + [7775] = 7598, + [7776] = 7604, + [7777] = 7597, + [7778] = 7600, + [7779] = 7601, + [7780] = 7598, + [7781] = 7602, + [7782] = 7608, + [7783] = 7601, + [7784] = 7599, + [7785] = 7601, + [7786] = 7598, + [7787] = 889, + [7788] = 7599, + [7789] = 7598, + [7790] = 7600, + [7791] = 7598, + [7792] = 7597, + [7793] = 7622, + [7794] = 7600, + [7795] = 7600, + [7796] = 7599, + [7797] = 7602, + [7798] = 7599, + [7799] = 7601, + [7800] = 7604, + [7801] = 7600, + [7802] = 7604, + [7803] = 7600, + [7804] = 7598, + [7805] = 7597, + [7806] = 7601, + [7807] = 7597, + [7808] = 7599, + [7809] = 7599, + [7810] = 7604, + [7811] = 7604, + [7812] = 7597, [7813] = 7598, - [7814] = 7601, - [7815] = 7600, - [7816] = 7599, - [7817] = 3915, + [7814] = 7622, + [7815] = 7599, + [7816] = 7601, + [7817] = 7598, [7818] = 7599, - [7819] = 7603, + [7819] = 7599, [7820] = 7598, - [7821] = 7605, - [7822] = 7597, - [7823] = 7605, - [7824] = 7605, - [7825] = 7599, - [7826] = 7597, + [7821] = 7597, + [7822] = 7608, + [7823] = 7597, + [7824] = 7602, + [7825] = 7597, + [7826] = 7598, [7827] = 7599, - [7828] = 7599, - [7829] = 7600, - [7830] = 7599, - [7831] = 7597, - [7832] = 7598, - [7833] = 7609, - [7834] = 4038, - [7835] = 816, - [7836] = 5754, - [7837] = 3961, - [7838] = 4038, - [7839] = 3915, - [7840] = 3832, - [7841] = 1171, - [7842] = 3915, - [7843] = 1186, - [7844] = 1171, - [7845] = 7845, - [7846] = 7846, - [7847] = 7587, - [7848] = 911, - [7849] = 7849, - [7850] = 1177, - [7851] = 4000, - [7852] = 1090, - [7853] = 3832, - [7854] = 4000, - [7855] = 1179, - [7856] = 1179, - [7857] = 1177, - [7858] = 3961, - [7859] = 1186, - [7860] = 1090, - [7861] = 820, - [7862] = 7862, + [7828] = 7597, + [7829] = 7598, + [7830] = 7598, + [7831] = 7604, + [7832] = 7597, + [7833] = 7598, + [7834] = 7600, + [7835] = 7597, + [7836] = 1055, + [7837] = 1056, + [7838] = 3959, + [7839] = 3942, + [7840] = 1059, + [7841] = 7841, + [7842] = 3921, + [7843] = 1056, + [7844] = 1058, + [7845] = 3959, + [7846] = 4034, + [7847] = 1057, + [7848] = 4002, + [7849] = 812, + [7850] = 910, + [7851] = 1058, + [7852] = 7852, + [7853] = 4002, + [7854] = 3921, + [7855] = 1055, + [7856] = 4034, + [7857] = 3942, + [7858] = 5721, + [7859] = 7859, + [7860] = 7447, + [7861] = 1057, + [7862] = 1059, [7863] = 7863, - [7864] = 7864, + [7864] = 7863, [7865] = 7865, [7866] = 7866, [7867] = 7867, [7868] = 7868, - [7869] = 7868, - [7870] = 7862, - [7871] = 7863, - [7872] = 7864, - [7873] = 7863, - [7874] = 7864, - [7875] = 7863, - [7876] = 7864, - [7877] = 7863, - [7878] = 7864, - [7879] = 7867, - [7880] = 7862, + [7869] = 7869, + [7870] = 7867, + [7871] = 7868, + [7872] = 7863, + [7873] = 7869, + [7874] = 7868, + [7875] = 7866, + [7876] = 7867, + [7877] = 7866, + [7878] = 7863, + [7879] = 7869, + [7880] = 7868, [7881] = 7867, - [7882] = 7868, - [7883] = 7862, - [7884] = 7862, - [7885] = 7863, - [7886] = 7867, - [7887] = 7868, - [7888] = 7864, - [7889] = 7862, + [7882] = 7882, + [7883] = 7863, + [7884] = 7866, + [7885] = 7869, + [7886] = 7868, + [7887] = 7869, + [7888] = 7882, + [7889] = 7863, [7890] = 7867, - [7891] = 7868, - [7892] = 7862, - [7893] = 7867, - [7894] = 7868, - [7895] = 7862, - [7896] = 7867, - [7897] = 7868, - [7898] = 7862, - [7899] = 7867, - [7900] = 7868, - [7901] = 7862, + [7891] = 822, + [7892] = 7869, + [7893] = 7865, + [7894] = 7866, + [7895] = 7868, + [7896] = 7863, + [7897] = 7867, + [7898] = 7869, + [7899] = 7868, + [7900] = 7863, + [7901] = 7863, [7902] = 7867, [7903] = 7868, - [7904] = 7904, + [7904] = 7865, [7905] = 7905, - [7906] = 7862, - [7907] = 816, - [7908] = 7867, - [7909] = 7868, - [7910] = 7862, - [7911] = 7904, - [7912] = 7867, - [7913] = 824, + [7906] = 7882, + [7907] = 7869, + [7908] = 7868, + [7909] = 812, + [7910] = 7910, + [7911] = 7863, + [7912] = 7865, + [7913] = 7869, [7914] = 7868, - [7915] = 7915, - [7916] = 7862, + [7915] = 7863, + [7916] = 7868, [7917] = 7917, - [7918] = 7905, - [7919] = 7904, - [7920] = 7867, - [7921] = 7904, - [7922] = 7905, - [7923] = 7915, - [7924] = 7905, - [7925] = 7904, + [7918] = 7882, + [7919] = 7865, + [7920] = 7869, + [7921] = 7863, + [7922] = 7869, + [7923] = 7868, + [7924] = 7863, + [7925] = 7869, [7926] = 7868, - [7927] = 7868, - [7928] = 7915, - [7929] = 7905, - [7930] = 7904, - [7931] = 7904, - [7932] = 7904, - [7933] = 821, - [7934] = 7934, - [7935] = 7904, - [7936] = 7862, - [7937] = 7862, - [7938] = 7867, - [7939] = 7904, - [7940] = 7867, - [7941] = 7868, - [7942] = 7904, - [7943] = 7868, - [7944] = 7867, - [7945] = 7868, - [7946] = 7862, - [7947] = 7868, - [7948] = 7862, - [7949] = 7904, - [7950] = 7904, - [7951] = 7904, - [7952] = 7867, - [7953] = 7867, - [7954] = 7862, + [7927] = 7863, + [7928] = 7869, + [7929] = 7865, + [7930] = 7930, + [7931] = 7868, + [7932] = 7865, + [7933] = 7863, + [7934] = 7863, + [7935] = 3794, + [7936] = 7865, + [7937] = 7869, + [7938] = 7865, + [7939] = 7869, + [7940] = 7940, + [7941] = 7866, + [7942] = 7868, + [7943] = 7866, + [7944] = 7865, + [7945] = 7865, + [7946] = 7863, + [7947] = 7947, + [7948] = 7917, + [7949] = 7949, + [7950] = 819, + [7951] = 7905, + [7952] = 7869, + [7953] = 7869, + [7954] = 7863, [7955] = 7868, - [7956] = 7904, - [7957] = 7867, - [7958] = 7868, - [7959] = 7862, - [7960] = 7904, - [7961] = 7862, - [7962] = 7868, - [7963] = 7915, - [7964] = 7867, - [7965] = 7904, - [7966] = 7904, - [7967] = 7862, - [7968] = 7968, - [7969] = 7868, - [7970] = 7904, - [7971] = 7864, - [7972] = 7862, - [7973] = 7904, - [7974] = 7904, - [7975] = 7867, - [7976] = 7863, - [7977] = 7867, - [7978] = 7917, - [7979] = 7979, - [7980] = 7868, - [7981] = 7864, - [7982] = 7862, - [7983] = 7862, - [7984] = 7862, - [7985] = 7867, - [7986] = 7868, - [7987] = 7864, - [7988] = 7863, - [7989] = 7868, - [7990] = 7867, - [7991] = 7917, - [7992] = 7864, - [7993] = 7862, - [7994] = 7868, - [7995] = 7995, - [7996] = 7915, - [7997] = 7917, + [7956] = 7868, + [7957] = 7869, + [7958] = 7863, + [7959] = 7869, + [7960] = 7905, + [7961] = 7882, + [7962] = 7865, + [7963] = 7869, + [7964] = 7866, + [7965] = 7867, + [7966] = 7868, + [7967] = 7917, + [7968] = 7868, + [7969] = 7863, + [7970] = 7905, + [7971] = 7971, + [7972] = 817, + [7973] = 7865, + [7974] = 7869, + [7975] = 7917, + [7976] = 7865, + [7977] = 7868, + [7978] = 7869, + [7979] = 7863, + [7980] = 7865, + [7981] = 7882, + [7982] = 7863, + [7983] = 7869, + [7984] = 7865, + [7985] = 7868, + [7986] = 7917, + [7987] = 7867, + [7988] = 7917, + [7989] = 7863, + [7990] = 7868, + [7991] = 7865, + [7992] = 7868, + [7993] = 7865, + [7994] = 7865, + [7995] = 7866, + [7996] = 7868, + [7997] = 7905, [7998] = 7867, - [7999] = 7863, - [8000] = 7863, - [8001] = 7867, - [8002] = 7917, - [8003] = 7863, - [8004] = 3778, - [8005] = 7904, - [8006] = 7867, - [8007] = 7915, - [8008] = 8008, - [8009] = 7868, - [8010] = 7864, - [8011] = 7862, + [7999] = 7865, + [8000] = 7869, + [8001] = 7866, + [8002] = 7868, + [8003] = 7867, + [8004] = 7869, + [8005] = 7865, + [8006] = 7863, + [8007] = 7865, + [8008] = 7863, + [8009] = 7863, + [8010] = 7868, + [8011] = 7863, [8012] = 8012, - [8013] = 7905, - [8014] = 7864, - [8015] = 7863, - [8016] = 7917, - [8017] = 8017, + [8013] = 8013, + [8014] = 7905, + [8015] = 7866, + [8016] = 7866, + [8017] = 7868, [8018] = 7867, - [8019] = 7917, - [8020] = 7868, - [8021] = 8021, + [8019] = 7869, + [8020] = 7905, + [8021] = 7869, [8022] = 8022, [8023] = 8023, - [8024] = 8024, + [8024] = 840, [8025] = 8025, - [8026] = 820, - [8027] = 8025, - [8028] = 8028, - [8029] = 8021, + [8026] = 8022, + [8027] = 8027, + [8028] = 8027, + [8029] = 8029, [8030] = 8030, - [8031] = 8030, + [8031] = 8031, [8032] = 8032, [8033] = 8033, - [8034] = 8021, + [8034] = 8032, [8035] = 8035, - [8036] = 8030, + [8036] = 8025, [8037] = 8037, - [8038] = 8032, - [8039] = 8033, - [8040] = 8021, - [8041] = 8030, - [8042] = 8035, - [8043] = 8035, - [8044] = 8030, - [8045] = 8037, - [8046] = 8032, - [8047] = 8033, - [8048] = 8021, - [8049] = 8035, - [8050] = 8030, - [8051] = 8035, - [8052] = 8032, - [8053] = 8033, - [8054] = 8021, - [8055] = 8035, - [8056] = 8033, - [8057] = 8030, - [8058] = 8032, - [8059] = 8033, - [8060] = 8035, - [8061] = 8023, - [8062] = 8032, - [8063] = 8024, - [8064] = 8022, - [8065] = 8024, + [8038] = 8035, + [8039] = 8025, + [8040] = 8040, + [8041] = 8027, + [8042] = 8042, + [8043] = 8040, + [8044] = 8022, + [8045] = 8031, + [8046] = 8023, + [8047] = 8031, + [8048] = 8022, + [8049] = 8049, + [8050] = 8035, + [8051] = 8025, + [8052] = 8022, + [8053] = 8027, + [8054] = 8032, + [8055] = 8032, + [8056] = 8056, + [8057] = 8025, + [8058] = 8023, + [8059] = 8031, + [8060] = 8056, + [8061] = 8040, + [8062] = 8022, + [8063] = 8040, + [8064] = 8027, + [8065] = 8056, [8066] = 8025, - [8067] = 8037, - [8068] = 8068, - [8069] = 8024, - [8070] = 850, - [8071] = 8025, - [8072] = 8030, - [8073] = 8030, - [8074] = 8037, - [8075] = 8021, - [8076] = 8076, - [8077] = 8021, - [8078] = 8078, - [8079] = 8037, - [8080] = 8080, - [8081] = 8035, - [8082] = 8021, - [8083] = 8025, - [8084] = 8033, - [8085] = 8032, - [8086] = 8024, - [8087] = 8035, - [8088] = 8024, - [8089] = 8025, - [8090] = 8032, - [8091] = 8037, - [8092] = 8032, - [8093] = 8030, - [8094] = 8035, - [8095] = 8021, - [8096] = 8096, - [8097] = 8030, - [8098] = 8024, - [8099] = 8021, - [8100] = 8024, - [8101] = 8035, - [8102] = 8025, - [8103] = 8024, + [8067] = 8022, + [8068] = 8032, + [8069] = 8056, + [8070] = 8023, + [8071] = 8040, + [8072] = 8056, + [8073] = 8023, + [8074] = 8035, + [8075] = 8022, + [8076] = 8032, + [8077] = 8035, + [8078] = 8031, + [8079] = 8040, + [8080] = 8027, + [8081] = 8081, + [8082] = 8025, + [8083] = 8040, + [8084] = 977, + [8085] = 8031, + [8086] = 8032, + [8087] = 8056, + [8088] = 8023, + [8089] = 8035, + [8090] = 8023, + [8091] = 8025, + [8092] = 8027, + [8093] = 8035, + [8094] = 8027, + [8095] = 8040, + [8096] = 8022, + [8097] = 8027, + [8098] = 8025, + [8099] = 8040, + [8100] = 8022, + [8101] = 8023, + [8102] = 8102, + [8103] = 8025, [8104] = 8033, - [8105] = 8025, - [8106] = 8037, - [8107] = 8037, - [8108] = 8033, - [8109] = 8022, - [8110] = 8032, - [8111] = 8021, - [8112] = 8022, - [8113] = 8024, - [8114] = 8035, - [8115] = 8037, - [8116] = 8025, + [8105] = 8023, + [8106] = 8032, + [8107] = 8031, + [8108] = 8030, + [8109] = 817, + [8110] = 8056, + [8111] = 8056, + [8112] = 8032, + [8113] = 8031, + [8114] = 8056, + [8115] = 829, + [8116] = 8081, [8117] = 8032, [8118] = 8025, - [8119] = 8037, - [8120] = 8030, - [8121] = 8121, - [8122] = 8024, - [8123] = 8024, - [8124] = 8025, - [8125] = 8125, - [8126] = 8037, - [8127] = 8037, - [8128] = 8035, - [8129] = 8025, - [8130] = 8032, - [8131] = 8125, - [8132] = 8024, - [8133] = 8021, - [8134] = 8023, - [8135] = 8033, - [8136] = 8024, - [8137] = 8037, - [8138] = 845, - [8139] = 8021, - [8140] = 8025, - [8141] = 8025, - [8142] = 8024, - [8143] = 8035, - [8144] = 8024, - [8145] = 8025, - [8146] = 8037, - [8147] = 8033, - [8148] = 8037, - [8149] = 8033, - [8150] = 8024, - [8151] = 8025, - [8152] = 8025, - [8153] = 8037, - [8154] = 8037, - [8155] = 8032, - [8156] = 8033, - [8157] = 8021, - [8158] = 8032, - [8159] = 8024, - [8160] = 8025, - [8161] = 8024, - [8162] = 8037, - [8163] = 8032, - [8164] = 8033, - [8165] = 8037, - [8166] = 8024, - [8167] = 8025, - [8168] = 8025, - [8169] = 8037, - [8170] = 8037, - [8171] = 8030, - [8172] = 8025, - [8173] = 8024, - [8174] = 8024, - [8175] = 8035, - [8176] = 8035, - [8177] = 8033, - [8178] = 8032, - [8179] = 8030, - [8180] = 8033, - [8181] = 8035, - [8182] = 8021, - [8183] = 8033, - [8184] = 8032, - [8185] = 8024, - [8186] = 8030, - [8187] = 8035, - [8188] = 8030, - [8189] = 8021, + [8119] = 8025, + [8120] = 8056, + [8121] = 8025, + [8122] = 8022, + [8123] = 8033, + [8124] = 8035, + [8125] = 8032, + [8126] = 8035, + [8127] = 8035, + [8128] = 8056, + [8129] = 8022, + [8130] = 8031, + [8131] = 8023, + [8132] = 8040, + [8133] = 8133, + [8134] = 8035, + [8135] = 8027, + [8136] = 8035, + [8137] = 8027, + [8138] = 8025, + [8139] = 8023, + [8140] = 8035, + [8141] = 8023, + [8142] = 8032, + [8143] = 8023, + [8144] = 8023, + [8145] = 8040, + [8146] = 8027, + [8147] = 8023, + [8148] = 8022, + [8149] = 817, + [8150] = 8023, + [8151] = 8031, + [8152] = 8032, + [8153] = 8025, + [8154] = 8025, + [8155] = 8031, + [8156] = 8032, + [8157] = 8022, + [8158] = 8040, + [8159] = 8056, + [8160] = 8023, + [8161] = 8031, + [8162] = 8040, + [8163] = 8030, + [8164] = 8022, + [8165] = 8022, + [8166] = 8032, + [8167] = 8035, + [8168] = 8027, + [8169] = 8169, + [8170] = 8027, + [8171] = 8035, + [8172] = 8056, + [8173] = 8173, + [8174] = 8040, + [8175] = 8031, + [8176] = 8022, + [8177] = 8035, + [8178] = 8031, + [8179] = 8027, + [8180] = 8027, + [8181] = 8030, + [8182] = 8031, + [8183] = 8035, + [8184] = 8031, + [8185] = 8056, + [8186] = 8032, + [8187] = 8025, + [8188] = 8022, + [8189] = 8027, [8190] = 8033, - [8191] = 8032, - [8192] = 8025, - [8193] = 8030, - [8194] = 8035, - [8195] = 8030, - [8196] = 8021, - [8197] = 8033, - [8198] = 8032, - [8199] = 8037, - [8200] = 8030, - [8201] = 8021, - [8202] = 8021, - [8203] = 8025, - [8204] = 8021, - [8205] = 8205, - [8206] = 8023, - [8207] = 8022, - [8208] = 8024, - [8209] = 8021, - [8210] = 8035, + [8191] = 8035, + [8192] = 8032, + [8193] = 8040, + [8194] = 8027, + [8195] = 8040, + [8196] = 8056, + [8197] = 8035, + [8198] = 8031, + [8199] = 8056, + [8200] = 8031, + [8201] = 8035, + [8202] = 8022, + [8203] = 8022, + [8204] = 8025, + [8205] = 8040, + [8206] = 8032, + [8207] = 8081, + [8208] = 8056, + [8209] = 8023, + [8210] = 8030, [8211] = 8033, - [8212] = 8025, - [8213] = 8035, - [8214] = 8125, - [8215] = 8037, - [8216] = 8032, + [8212] = 8040, + [8213] = 8032, + [8214] = 8023, + [8215] = 8032, + [8216] = 8056, [8217] = 8033, - [8218] = 8032, - [8219] = 8024, - [8220] = 8025, - [8221] = 8021, - [8222] = 8033, - [8223] = 8037, - [8224] = 8032, - [8225] = 8030, - [8226] = 8024, - [8227] = 8030, - [8228] = 8025, - [8229] = 8022, - [8230] = 8023, - [8231] = 8022, - [8232] = 8023, - [8233] = 8037, - [8234] = 8022, - [8235] = 8023, - [8236] = 8035, - [8237] = 820, - [8238] = 8023, - [8239] = 8022, - [8240] = 8030, - [8241] = 8023, - [8242] = 8030, - [8243] = 8035, - [8244] = 8032, - [8245] = 8125, - [8246] = 8035, - [8247] = 8033, - [8248] = 8032, - [8249] = 8033, - [8250] = 8021, - [8251] = 8030, - [8252] = 8021, + [8218] = 8056, + [8219] = 8022, + [8220] = 8081, + [8221] = 8025, + [8222] = 8081, + [8223] = 8056, + [8224] = 8040, + [8225] = 8033, + [8226] = 8027, + [8227] = 8025, + [8228] = 8032, + [8229] = 8229, + [8230] = 8040, + [8231] = 8033, + [8232] = 822, + [8233] = 8233, + [8234] = 8040, + [8235] = 8025, + [8236] = 8022, + [8237] = 8027, + [8238] = 8031, + [8239] = 8023, + [8240] = 8023, + [8241] = 8032, + [8242] = 8056, + [8243] = 8040, + [8244] = 8023, + [8245] = 8035, + [8246] = 8023, + [8247] = 8031, + [8248] = 8081, + [8249] = 8025, + [8250] = 8081, + [8251] = 8027, + [8252] = 8032, [8253] = 8035, - [8254] = 8033, - [8255] = 8035, - [8256] = 8032, - [8257] = 8024, - [8258] = 8021, - [8259] = 8030, - [8260] = 8037, + [8254] = 8035, + [8255] = 8022, + [8256] = 8023, + [8257] = 8035, + [8258] = 8022, + [8259] = 8056, + [8260] = 8027, [8261] = 8033, - [8262] = 8125, - [8263] = 8263, - [8264] = 8032, - [8265] = 8035, - [8266] = 8037, - [8267] = 8030, - [8268] = 816, - [8269] = 8030, - [8270] = 8270, - [8271] = 8025, - [8272] = 8032, - [8273] = 8125, - [8274] = 8033, - [8275] = 824, - [8276] = 952, - [8277] = 856, - [8278] = 8021, - [8279] = 8279, - [8280] = 8279, - [8281] = 8279, - [8282] = 945, - [8283] = 8279, - [8284] = 944, - [8285] = 911, - [8286] = 8279, - [8287] = 8279, - [8288] = 8279, - [8289] = 8279, - [8290] = 8279, - [8291] = 939, - [8292] = 8279, - [8293] = 8279, - [8294] = 8279, - [8295] = 8279, - [8296] = 8279, - [8297] = 911, - [8298] = 8279, - [8299] = 8279, - [8300] = 8279, - [8301] = 932, - [8302] = 8279, - [8303] = 8279, - [8304] = 8279, - [8305] = 8279, - [8306] = 8279, - [8307] = 8279, - [8308] = 8279, - [8309] = 934, - [8310] = 8310, - [8311] = 8279, - [8312] = 936, - [8313] = 8279, - [8314] = 962, - [8315] = 8279, - [8316] = 928, - [8317] = 812, + [8262] = 8040, + [8263] = 8022, + [8264] = 8031, + [8265] = 8056, + [8266] = 8031, + [8267] = 8027, + [8268] = 8023, + [8269] = 8025, + [8270] = 8081, + [8271] = 8022, + [8272] = 8031, + [8273] = 8025, + [8274] = 8027, + [8275] = 856, + [8276] = 8032, + [8277] = 8035, + [8278] = 8031, + [8279] = 8035, + [8280] = 8056, + [8281] = 8025, + [8282] = 8022, + [8283] = 812, + [8284] = 8056, + [8285] = 8031, + [8286] = 8032, + [8287] = 8027, + [8288] = 8031, + [8289] = 8032, + [8290] = 8035, + [8291] = 8025, + [8292] = 8032, + [8293] = 8025, + [8294] = 8023, + [8295] = 8027, + [8296] = 8023, + [8297] = 8056, + [8298] = 8040, + [8299] = 8040, + [8300] = 8030, + [8301] = 8056, + [8302] = 8040, + [8303] = 8027, + [8304] = 8031, + [8305] = 8081, + [8306] = 8040, + [8307] = 8307, + [8308] = 988, + [8309] = 982, + [8310] = 978, + [8311] = 987, + [8312] = 983, + [8313] = 910, + [8314] = 961, + [8315] = 975, + [8316] = 976, + [8317] = 910, [8318] = 815, - [8319] = 822, - [8320] = 855, - [8321] = 819, - [8322] = 855, - [8323] = 860, - [8324] = 860, - [8325] = 825, - [8326] = 817, - [8327] = 813, - [8328] = 821, - [8329] = 817, - [8330] = 8330, - [8331] = 8330, - [8332] = 8330, - [8333] = 825, - [8334] = 920, - [8335] = 815, - [8336] = 835, + [8319] = 820, + [8320] = 816, + [8321] = 832, + [8322] = 830, + [8323] = 832, + [8324] = 821, + [8325] = 830, + [8326] = 7709, + [8327] = 825, + [8328] = 813, + [8329] = 819, + [8330] = 814, + [8331] = 812, + [8332] = 832, + [8333] = 830, + [8334] = 842, + [8335] = 825, + [8336] = 8336, [8337] = 8337, - [8338] = 823, - [8339] = 8330, - [8340] = 824, - [8341] = 834, - [8342] = 837, - [8343] = 816, - [8344] = 860, - [8345] = 8330, - [8346] = 822, - [8347] = 838, - [8348] = 839, - [8349] = 855, - [8350] = 819, - [8351] = 8330, - [8352] = 8352, - [8353] = 842, - [8354] = 8352, - [8355] = 8352, - [8356] = 8352, - [8357] = 857, - [8358] = 8352, - [8359] = 839, - [8360] = 8352, + [8338] = 816, + [8339] = 813, + [8340] = 874, + [8341] = 8337, + [8342] = 823, + [8343] = 8337, + [8344] = 814, + [8345] = 853, + [8346] = 844, + [8347] = 8337, + [8348] = 836, + [8349] = 854, + [8350] = 822, + [8351] = 8337, + [8352] = 8337, + [8353] = 821, + [8354] = 848, + [8355] = 8355, + [8356] = 8355, + [8357] = 8355, + [8358] = 8355, + [8359] = 8355, + [8360] = 8355, [8361] = 8361, - [8362] = 826, - [8363] = 836, - [8364] = 8352, - [8365] = 8352, - [8366] = 834, - [8367] = 8352, - [8368] = 8352, - [8369] = 843, - [8370] = 8352, - [8371] = 920, - [8372] = 8352, - [8373] = 8352, - [8374] = 8352, - [8375] = 8352, - [8376] = 8352, - [8377] = 837, - [8378] = 853, - [8379] = 852, - [8380] = 841, - [8381] = 838, - [8382] = 8352, - [8383] = 840, - [8384] = 8352, - [8385] = 7552, - [8386] = 8352, - [8387] = 8352, - [8388] = 844, - [8389] = 851, - [8390] = 8352, - [8391] = 8352, - [8392] = 846, - [8393] = 8393, - [8394] = 8352, - [8395] = 8352, - [8396] = 835, - [8397] = 898, - [8398] = 965, - [8399] = 894, - [8400] = 843, - [8401] = 870, - [8402] = 8402, - [8403] = 906, - [8404] = 857, - [8405] = 880, - [8406] = 840, - [8407] = 882, - [8408] = 826, - [8409] = 864, - [8410] = 862, - [8411] = 900, - [8412] = 910, - [8413] = 903, - [8414] = 8414, - [8415] = 887, - [8416] = 8416, - [8417] = 923, - [8418] = 956, - [8419] = 949, - [8420] = 954, - [8421] = 905, - [8422] = 953, - [8423] = 911, - [8424] = 8402, - [8425] = 851, + [8362] = 7591, + [8363] = 849, + [8364] = 826, + [8365] = 845, + [8366] = 836, + [8367] = 839, + [8368] = 8355, + [8369] = 8355, + [8370] = 8355, + [8371] = 8355, + [8372] = 860, + [8373] = 827, + [8374] = 8355, + [8375] = 847, + [8376] = 8355, + [8377] = 8355, + [8378] = 8355, + [8379] = 8355, + [8380] = 842, + [8381] = 8355, + [8382] = 828, + [8383] = 853, + [8384] = 8355, + [8385] = 8355, + [8386] = 8355, + [8387] = 874, + [8388] = 857, + [8389] = 8389, + [8390] = 8355, + [8391] = 854, + [8392] = 859, + [8393] = 8355, + [8394] = 8355, + [8395] = 8355, + [8396] = 844, + [8397] = 8355, + [8398] = 852, + [8399] = 3432, + [8400] = 901, + [8401] = 8401, + [8402] = 886, + [8403] = 953, + [8404] = 893, + [8405] = 884, + [8406] = 828, + [8407] = 923, + [8408] = 899, + [8409] = 8401, + [8410] = 8401, + [8411] = 921, + [8412] = 8412, + [8413] = 920, + [8414] = 857, + [8415] = 852, + [8416] = 916, + [8417] = 8401, + [8418] = 859, + [8419] = 902, + [8420] = 879, + [8421] = 8401, + [8422] = 917, + [8423] = 8401, + [8424] = 938, + [8425] = 839, [8426] = 8426, - [8427] = 8402, - [8428] = 8402, - [8429] = 918, - [8430] = 3449, - [8431] = 8431, - [8432] = 899, - [8433] = 931, - [8434] = 841, - [8435] = 8426, - [8436] = 8426, - [8437] = 842, - [8438] = 883, - [8439] = 8402, - [8440] = 8426, - [8441] = 942, - [8442] = 929, - [8443] = 8426, - [8444] = 896, - [8445] = 924, - [8446] = 846, - [8447] = 884, - [8448] = 908, - [8449] = 885, - [8450] = 8402, - [8451] = 8426, - [8452] = 7552, - [8453] = 8453, - [8454] = 8453, + [8427] = 8412, + [8428] = 876, + [8429] = 905, + [8430] = 8430, + [8431] = 932, + [8432] = 918, + [8433] = 934, + [8434] = 7591, + [8435] = 8412, + [8436] = 910, + [8437] = 827, + [8438] = 913, + [8439] = 8412, + [8440] = 915, + [8441] = 869, + [8442] = 868, + [8443] = 8412, + [8444] = 925, + [8445] = 8412, + [8446] = 860, + [8447] = 937, + [8448] = 939, + [8449] = 8449, + [8450] = 887, + [8451] = 849, + [8452] = 891, + [8453] = 954, + [8454] = 966, [8455] = 8455, - [8456] = 8453, + [8456] = 8456, [8457] = 8457, - [8458] = 942, - [8459] = 8459, - [8460] = 929, - [8461] = 8455, - [8462] = 8462, - [8463] = 903, - [8464] = 8453, - [8465] = 883, + [8458] = 8455, + [8459] = 8457, + [8460] = 8455, + [8461] = 928, + [8462] = 8457, + [8463] = 8456, + [8464] = 8464, + [8465] = 929, [8466] = 8455, - [8467] = 954, + [8467] = 8467, [8468] = 8455, - [8469] = 882, - [8470] = 8453, - [8471] = 943, - [8472] = 8457, - [8473] = 884, - [8474] = 8474, + [8469] = 865, + [8470] = 8457, + [8471] = 8456, + [8472] = 8464, + [8473] = 934, + [8474] = 8456, [8475] = 8455, - [8476] = 885, - [8477] = 8459, - [8478] = 946, - [8479] = 931, - [8480] = 1179, - [8481] = 8457, - [8482] = 880, - [8483] = 870, - [8484] = 906, + [8476] = 8457, + [8477] = 8455, + [8478] = 1009, + [8479] = 8457, + [8480] = 8456, + [8481] = 8464, + [8482] = 8456, + [8483] = 8455, + [8484] = 8464, [8485] = 8457, - [8486] = 1177, - [8487] = 8453, - [8488] = 905, - [8489] = 8457, - [8490] = 8459, + [8486] = 1095, + [8487] = 8464, + [8488] = 8456, + [8489] = 915, + [8490] = 8457, [8491] = 8455, - [8492] = 8453, - [8493] = 894, - [8494] = 8457, - [8495] = 8459, - [8496] = 948, - [8497] = 925, - [8498] = 8498, - [8499] = 8462, - [8500] = 956, - [8501] = 8474, - [8502] = 965, - [8503] = 987, - [8504] = 8459, - [8505] = 8459, - [8506] = 8455, - [8507] = 1171, - [8508] = 8453, + [8492] = 8492, + [8493] = 8464, + [8494] = 8464, + [8495] = 8457, + [8496] = 8456, + [8497] = 8456, + [8498] = 8464, + [8499] = 8455, + [8500] = 8456, + [8501] = 8457, + [8502] = 8456, + [8503] = 8464, + [8504] = 8455, + [8505] = 8492, + [8506] = 8464, + [8507] = 8455, + [8508] = 8457, [8509] = 8455, - [8510] = 988, - [8511] = 8462, - [8512] = 8457, - [8513] = 8455, - [8514] = 8453, - [8515] = 8455, - [8516] = 887, + [8510] = 8456, + [8511] = 8457, + [8512] = 8456, + [8513] = 8464, + [8514] = 8464, + [8515] = 8456, + [8516] = 938, [8517] = 8457, - [8518] = 8457, - [8519] = 8457, - [8520] = 8520, - [8521] = 878, - [8522] = 8453, + [8518] = 8492, + [8519] = 939, + [8520] = 8457, + [8521] = 954, + [8522] = 8455, [8523] = 8455, - [8524] = 8459, - [8525] = 8457, - [8526] = 8474, - [8527] = 8457, - [8528] = 8453, - [8529] = 8457, - [8530] = 959, - [8531] = 8453, - [8532] = 1090, - [8533] = 8455, - [8534] = 8457, - [8535] = 8459, - [8536] = 1123, - [8537] = 8455, - [8538] = 8459, - [8539] = 8459, - [8540] = 8540, - [8541] = 8459, - [8542] = 900, - [8543] = 1186, - [8544] = 8474, - [8545] = 953, - [8546] = 8459, - [8547] = 949, - [8548] = 8453, - [8549] = 924, - [8550] = 918, - [8551] = 8462, - [8552] = 8457, - [8553] = 8474, - [8554] = 8459, - [8555] = 8453, - [8556] = 8459, - [8557] = 8455, + [8524] = 8456, + [8525] = 817, + [8526] = 8455, + [8527] = 8464, + [8528] = 8455, + [8529] = 8464, + [8530] = 927, + [8531] = 8457, + [8532] = 8467, + [8533] = 8456, + [8534] = 8464, + [8535] = 891, + [8536] = 901, + [8537] = 8457, + [8538] = 902, + [8539] = 8492, + [8540] = 953, + [8541] = 8456, + [8542] = 8457, + [8543] = 1161, + [8544] = 8464, + [8545] = 904, + [8546] = 8464, + [8547] = 8464, + [8548] = 8455, + [8549] = 8456, + [8550] = 8457, + [8551] = 8456, + [8552] = 8464, + [8553] = 8457, + [8554] = 8456, + [8555] = 8457, + [8556] = 8464, + [8557] = 8456, [8558] = 8455, - [8559] = 8453, - [8560] = 8459, - [8561] = 8455, - [8562] = 8453, - [8563] = 8453, - [8564] = 8457, - [8565] = 8459, - [8566] = 8457, - [8567] = 8457, - [8568] = 8457, + [8559] = 8457, + [8560] = 8457, + [8561] = 8456, + [8562] = 8464, + [8563] = 916, + [8564] = 8455, + [8565] = 8457, + [8566] = 913, + [8567] = 8464, + [8568] = 8455, [8569] = 8455, - [8570] = 8453, - [8571] = 8455, - [8572] = 8453, - [8573] = 8455, - [8574] = 8457, - [8575] = 8459, - [8576] = 862, - [8577] = 864, - [8578] = 8459, - [8579] = 8455, - [8580] = 8453, - [8581] = 8462, - [8582] = 8459, - [8583] = 865, - [8584] = 8455, - [8585] = 8457, - [8586] = 8453, - [8587] = 8457, - [8588] = 898, - [8589] = 908, - [8590] = 8459, - [8591] = 820, - [8592] = 8455, - [8593] = 8453, - [8594] = 8455, - [8595] = 8462, - [8596] = 8457, - [8597] = 8459, - [8598] = 8459, - [8599] = 960, - [8600] = 8455, - [8601] = 8459, - [8602] = 899, - [8603] = 8457, - [8604] = 8453, - [8605] = 8455, - [8606] = 8457, - [8607] = 896, - [8608] = 8459, - [8609] = 8457, - [8610] = 8457, - [8611] = 8453, - [8612] = 8474, - [8613] = 8459, - [8614] = 8453, - [8615] = 1086, - [8616] = 8453, - [8617] = 8459, - [8618] = 8455, - [8619] = 923, - [8620] = 910, - [8621] = 8455, - [8622] = 1009, - [8623] = 8453, - [8624] = 8459, - [8625] = 1123, - [8626] = 8626, - [8627] = 8627, - [8628] = 985, - [8629] = 8627, + [8570] = 8457, + [8571] = 8467, + [8572] = 8456, + [8573] = 944, + [8574] = 8574, + [8575] = 8455, + [8576] = 918, + [8577] = 8492, + [8578] = 8457, + [8579] = 917, + [8580] = 8455, + [8581] = 945, + [8582] = 8457, + [8583] = 8456, + [8584] = 8464, + [8585] = 905, + [8586] = 8455, + [8587] = 8456, + [8588] = 8467, + [8589] = 884, + [8590] = 1059, + [8591] = 923, + [8592] = 937, + [8593] = 875, + [8594] = 8464, + [8595] = 879, + [8596] = 899, + [8597] = 8597, + [8598] = 966, + [8599] = 925, + [8600] = 887, + [8601] = 8467, + [8602] = 1056, + [8603] = 920, + [8604] = 893, + [8605] = 1055, + [8606] = 8456, + [8607] = 8492, + [8608] = 1058, + [8609] = 868, + [8610] = 869, + [8611] = 1057, + [8612] = 8455, + [8613] = 8467, + [8614] = 921, + [8615] = 964, + [8616] = 8455, + [8617] = 8464, + [8618] = 8464, + [8619] = 932, + [8620] = 8457, + [8621] = 958, + [8622] = 8456, + [8623] = 8464, + [8624] = 8624, + [8625] = 876, + [8626] = 886, + [8627] = 944, + [8628] = 955, + [8629] = 8629, [8630] = 8630, - [8631] = 8631, - [8632] = 946, - [8633] = 1051, - [8634] = 8626, - [8635] = 8635, + [8631] = 965, + [8632] = 8630, + [8633] = 964, + [8634] = 957, + [8635] = 956, [8636] = 8636, - [8637] = 8631, - [8638] = 8631, - [8639] = 978, - [8640] = 8626, - [8641] = 8626, - [8642] = 8627, - [8643] = 8627, - [8644] = 8626, - [8645] = 8631, - [8646] = 8627, - [8647] = 8636, - [8648] = 968, - [8649] = 8636, - [8650] = 1063, - [8651] = 8631, - [8652] = 935, - [8653] = 8631, - [8654] = 1007, - [8655] = 1012, - [8656] = 972, - [8657] = 1009, - [8658] = 8627, - [8659] = 940, - [8660] = 966, - [8661] = 865, - [8662] = 8636, - [8663] = 8627, - [8664] = 8626, - [8665] = 8626, - [8666] = 930, - [8667] = 8636, - [8668] = 8627, - [8669] = 8626, - [8670] = 8627, - [8671] = 943, - [8672] = 8672, - [8673] = 8631, - [8674] = 8674, - [8675] = 3778, - [8676] = 8631, + [8637] = 8630, + [8638] = 8638, + [8639] = 8636, + [8640] = 960, + [8641] = 8636, + [8642] = 928, + [8643] = 929, + [8644] = 8630, + [8645] = 8638, + [8646] = 8646, + [8647] = 3794, + [8648] = 8630, + [8649] = 8649, + [8650] = 8649, + [8651] = 8649, + [8652] = 968, + [8653] = 969, + [8654] = 8654, + [8655] = 8655, + [8656] = 963, + [8657] = 8649, + [8658] = 865, + [8659] = 815, + [8660] = 1161, + [8661] = 962, + [8662] = 958, + [8663] = 820, + [8664] = 970, + [8665] = 946, + [8666] = 8666, + [8667] = 8638, + [8668] = 8630, + [8669] = 8669, + [8670] = 8630, + [8671] = 8638, + [8672] = 8636, + [8673] = 8636, + [8674] = 8649, + [8675] = 8649, + [8676] = 8649, [8677] = 8636, - [8678] = 8636, - [8679] = 8679, - [8680] = 8626, - [8681] = 8626, - [8682] = 8631, - [8683] = 8631, - [8684] = 950, - [8685] = 8636, - [8686] = 8631, + [8678] = 943, + [8679] = 8638, + [8680] = 8638, + [8681] = 8630, + [8682] = 8682, + [8683] = 8636, + [8684] = 8638, + [8685] = 8685, + [8686] = 8649, [8687] = 8636, - [8688] = 8626, + [8688] = 8638, [8689] = 8689, - [8690] = 8690, - [8691] = 8631, - [8692] = 8627, + [8690] = 8630, + [8691] = 8630, + [8692] = 8638, [8693] = 8636, - [8694] = 8626, - [8695] = 8627, + [8694] = 971, + [8695] = 972, [8696] = 8636, - [8697] = 8627, - [8698] = 8698, - [8699] = 8636, - [8700] = 8636, - [8701] = 983, - [8702] = 960, - [8703] = 986, - [8704] = 8627, - [8705] = 8636, - [8706] = 1086, - [8707] = 8627, - [8708] = 8708, - [8709] = 8626, - [8710] = 8710, - [8711] = 8711, - [8712] = 8631, - [8713] = 8626, - [8714] = 8636, - [8715] = 8627, - [8716] = 812, - [8717] = 8631, - [8718] = 973, - [8719] = 8627, - [8720] = 8626, - [8721] = 8631, - [8722] = 8627, - [8723] = 8626, - [8724] = 8636, - [8725] = 8631, + [8697] = 8649, + [8698] = 8630, + [8699] = 8649, + [8700] = 8638, + [8701] = 8636, + [8702] = 8649, + [8703] = 8630, + [8704] = 940, + [8705] = 8705, + [8706] = 945, + [8707] = 1101, + [8708] = 967, + [8709] = 959, + [8710] = 933, + [8711] = 8649, + [8712] = 974, + [8713] = 8713, + [8714] = 8630, + [8715] = 8638, + [8716] = 8638, + [8717] = 8630, + [8718] = 8636, + [8719] = 8649, + [8720] = 8636, + [8721] = 8649, + [8722] = 1095, + [8723] = 1124, + [8724] = 8638, + [8725] = 8636, [8726] = 8636, - [8727] = 8636, - [8728] = 8631, - [8729] = 8636, - [8730] = 987, - [8731] = 8627, - [8732] = 988, - [8733] = 8627, - [8734] = 8636, - [8735] = 8627, - [8736] = 8626, - [8737] = 8627, - [8738] = 8626, - [8739] = 8626, - [8740] = 8740, - [8741] = 8636, - [8742] = 8626, - [8743] = 8631, - [8744] = 8636, - [8745] = 8626, - [8746] = 8627, - [8747] = 8626, - [8748] = 8631, - [8749] = 959, - [8750] = 8631, - [8751] = 8636, - [8752] = 8627, - [8753] = 8631, - [8754] = 8626, - [8755] = 8636, - [8756] = 8627, - [8757] = 8631, - [8758] = 8758, - [8759] = 8759, - [8760] = 8626, - [8761] = 1008, - [8762] = 8636, - [8763] = 813, - [8764] = 8626, - [8765] = 955, - [8766] = 8627, - [8767] = 878, - [8768] = 8626, - [8769] = 8631, - [8770] = 8627, - [8771] = 957, - [8772] = 958, - [8773] = 8631, - [8774] = 8631, - [8775] = 8636, - [8776] = 8631, - [8777] = 8636, - [8778] = 8778, - [8779] = 8631, - [8780] = 926, - [8781] = 8626, - [8782] = 963, - [8783] = 961, - [8784] = 8627, - [8785] = 981, - [8786] = 8786, - [8787] = 8787, + [8727] = 8649, + [8728] = 8630, + [8729] = 8638, + [8730] = 8630, + [8731] = 8636, + [8732] = 8638, + [8733] = 8636, + [8734] = 8638, + [8735] = 8649, + [8736] = 8649, + [8737] = 8636, + [8738] = 8638, + [8739] = 8636, + [8740] = 8638, + [8741] = 930, + [8742] = 8630, + [8743] = 8630, + [8744] = 8630, + [8745] = 8638, + [8746] = 8649, + [8747] = 8636, + [8748] = 8638, + [8749] = 935, + [8750] = 8630, + [8751] = 8649, + [8752] = 8636, + [8753] = 8630, + [8754] = 8649, + [8755] = 8755, + [8756] = 8649, + [8757] = 8757, + [8758] = 8638, + [8759] = 8636, + [8760] = 8649, + [8761] = 8630, + [8762] = 8638, + [8763] = 8636, + [8764] = 8638, + [8765] = 8649, + [8766] = 875, + [8767] = 8649, + [8768] = 8636, + [8769] = 8638, + [8770] = 8630, + [8771] = 927, + [8772] = 8649, + [8773] = 8636, + [8774] = 8774, + [8775] = 8630, + [8776] = 8638, + [8777] = 8777, + [8778] = 8630, + [8779] = 8638, + [8780] = 936, + [8781] = 8636, + [8782] = 8649, + [8783] = 8630, + [8784] = 8630, + [8785] = 8638, + [8786] = 8636, + [8787] = 8649, [8788] = 8788, [8789] = 8789, [8790] = 8790, [8791] = 8791, [8792] = 8792, [8793] = 8793, - [8794] = 8791, + [8794] = 8794, [8795] = 8795, - [8796] = 8796, + [8796] = 867, [8797] = 8797, - [8798] = 955, - [8799] = 8795, - [8800] = 8787, - [8801] = 8797, - [8802] = 8793, - [8803] = 832, - [8804] = 8786, - [8805] = 8792, - [8806] = 8793, - [8807] = 8789, + [8798] = 8789, + [8799] = 8799, + [8800] = 8800, + [8801] = 8794, + [8802] = 8802, + [8803] = 933, + [8804] = 8789, + [8805] = 8789, + [8806] = 855, + [8807] = 8807, [8808] = 8808, - [8809] = 8797, + [8809] = 8809, [8810] = 8810, [8811] = 8811, - [8812] = 8789, - [8813] = 957, - [8814] = 8795, - [8815] = 1007, - [8816] = 8790, + [8812] = 8812, + [8813] = 8807, + [8814] = 8788, + [8815] = 8795, + [8816] = 8791, [8817] = 8817, - [8818] = 845, - [8819] = 8819, + [8818] = 984, + [8819] = 8811, [8820] = 8820, - [8821] = 958, + [8821] = 8821, [8822] = 8822, [8823] = 8823, - [8824] = 8797, - [8825] = 8825, - [8826] = 8826, - [8827] = 8827, - [8828] = 8828, - [8829] = 8793, - [8830] = 1012, - [8831] = 8831, + [8824] = 8820, + [8825] = 8812, + [8826] = 8822, + [8827] = 8811, + [8828] = 8807, + [8829] = 8829, + [8830] = 8817, + [8831] = 8789, [8832] = 8832, - [8833] = 8786, - [8834] = 8792, - [8835] = 8828, - [8836] = 8836, - [8837] = 8827, - [8838] = 8817, - [8839] = 8839, - [8840] = 8825, - [8841] = 8841, - [8842] = 8792, - [8843] = 8811, - [8844] = 8793, - [8845] = 8797, - [8846] = 8786, - [8847] = 8847, - [8848] = 8796, - [8849] = 8797, - [8850] = 847, - [8851] = 8786, - [8852] = 8810, - [8853] = 891, - [8854] = 8787, - [8855] = 8786, - [8856] = 8790, - [8857] = 8797, - [8858] = 8858, - [8859] = 8793, - [8860] = 8860, - [8861] = 8793, - [8862] = 8787, - [8863] = 3778, - [8864] = 8786, - [8865] = 8865, - [8866] = 8789, + [8833] = 8800, + [8834] = 8799, + [8835] = 8802, + [8836] = 8791, + [8837] = 8807, + [8838] = 8788, + [8839] = 8788, + [8840] = 8811, + [8841] = 8795, + [8842] = 8795, + [8843] = 8843, + [8844] = 8844, + [8845] = 8845, + [8846] = 8845, + [8847] = 8845, + [8848] = 8794, + [8849] = 8792, + [8850] = 840, + [8851] = 8817, + [8852] = 8822, + [8853] = 8853, + [8854] = 8820, + [8855] = 8829, + [8856] = 8812, + [8857] = 8829, + [8858] = 1047, + [8859] = 1048, + [8860] = 8800, + [8861] = 8799, + [8862] = 8789, + [8863] = 8863, + [8864] = 873, + [8865] = 8797, + [8866] = 8795, [8867] = 8867, - [8868] = 8868, - [8869] = 8797, - [8870] = 1008, - [8871] = 8793, - [8872] = 8858, - [8873] = 8873, - [8874] = 8792, - [8875] = 8875, - [8876] = 8797, - [8877] = 8877, + [8868] = 830, + [8869] = 8788, + [8870] = 8802, + [8871] = 8807, + [8872] = 8845, + [8873] = 8791, + [8874] = 8794, + [8875] = 8820, + [8876] = 8829, + [8877] = 8817, [8878] = 8878, - [8879] = 8823, - [8880] = 8786, - [8881] = 8796, + [8879] = 8794, + [8880] = 8792, + [8881] = 8881, [8882] = 8882, - [8883] = 8789, - [8884] = 8792, - [8885] = 8791, - [8886] = 8822, - [8887] = 8797, - [8888] = 8792, + [8883] = 8797, + [8884] = 8802, + [8885] = 8885, + [8886] = 8794, + [8887] = 8887, + [8888] = 8797, [8889] = 8789, - [8890] = 8822, + [8890] = 8890, [8891] = 8891, - [8892] = 8891, - [8893] = 8893, - [8894] = 8825, - [8895] = 8793, - [8896] = 8796, - [8897] = 8897, - [8898] = 8792, - [8899] = 8899, + [8892] = 1049, + [8893] = 1051, + [8894] = 974, + [8895] = 8822, + [8896] = 8896, + [8897] = 8811, + [8898] = 8794, + [8899] = 8792, [8900] = 8900, - [8901] = 8865, - [8902] = 8797, - [8903] = 8793, - [8904] = 8793, - [8905] = 8791, - [8906] = 8797, - [8907] = 8792, - [8908] = 8908, - [8909] = 8823, - [8910] = 986, - [8911] = 8786, - [8912] = 8797, - [8913] = 8913, - [8914] = 8825, - [8915] = 8793, - [8916] = 8822, - [8917] = 8917, - [8918] = 950, - [8919] = 8825, - [8920] = 8792, - [8921] = 1131, - [8922] = 8826, - [8923] = 8832, - [8924] = 8786, - [8925] = 8810, - [8926] = 8926, - [8927] = 8927, - [8928] = 8797, - [8929] = 8929, - [8930] = 8811, - [8931] = 8790, - [8932] = 8817, + [8901] = 8891, + [8902] = 8890, + [8903] = 8885, + [8904] = 8881, + [8905] = 990, + [8906] = 8906, + [8907] = 8878, + [8908] = 971, + [8909] = 8909, + [8910] = 8910, + [8911] = 8797, + [8912] = 8912, + [8913] = 8791, + [8914] = 8802, + [8915] = 8790, + [8916] = 8916, + [8917] = 8817, + [8918] = 8829, + [8919] = 970, + [8920] = 8920, + [8921] = 8845, + [8922] = 8922, + [8923] = 8799, + [8924] = 8822, + [8925] = 8925, + [8926] = 8799, + [8927] = 8800, + [8928] = 8800, + [8929] = 8789, + [8930] = 8790, + [8931] = 8931, + [8932] = 8812, [8933] = 8933, - [8934] = 8827, - [8935] = 1034, - [8936] = 8823, - [8937] = 961, - [8938] = 8828, - [8939] = 8939, - [8940] = 8786, - [8941] = 8789, - [8942] = 930, - [8943] = 8823, - [8944] = 8860, - [8945] = 983, - [8946] = 8793, - [8947] = 8828, - [8948] = 8827, - [8949] = 8817, - [8950] = 951, - [8951] = 8822, - [8952] = 8952, - [8953] = 963, - [8954] = 8858, + [8934] = 8934, + [8935] = 8820, + [8936] = 8820, + [8937] = 8822, + [8938] = 8817, + [8939] = 8802, + [8940] = 8791, + [8941] = 930, + [8942] = 969, + [8943] = 8829, + [8944] = 8944, + [8945] = 8945, + [8946] = 8845, + [8947] = 968, + [8948] = 8788, + [8949] = 8795, + [8950] = 935, + [8951] = 8788, + [8952] = 8807, + [8953] = 8887, + [8954] = 8811, [8955] = 8955, - [8956] = 8956, - [8957] = 8811, + [8956] = 967, + [8957] = 832, [8958] = 8958, - [8959] = 8792, - [8960] = 8786, - [8961] = 8825, - [8962] = 8860, - [8963] = 8792, - [8964] = 1036, - [8965] = 850, - [8966] = 8825, + [8959] = 8959, + [8960] = 8960, + [8961] = 8789, + [8962] = 8790, + [8963] = 8799, + [8964] = 972, + [8965] = 936, + [8966] = 8878, [8967] = 8967, - [8968] = 8832, - [8969] = 8825, - [8970] = 8796, - [8971] = 8971, - [8972] = 8790, - [8973] = 8891, - [8974] = 8974, - [8975] = 8797, - [8976] = 8865, - [8977] = 8858, - [8978] = 8865, - [8979] = 979, - [8980] = 8826, - [8981] = 8891, - [8982] = 8982, - [8983] = 8789, - [8984] = 8793, - [8985] = 8836, - [8986] = 8796, - [8987] = 8826, - [8988] = 8795, - [8989] = 985, - [8990] = 8990, - [8991] = 8793, - [8992] = 8792, - [8993] = 8865, - [8994] = 8786, - [8995] = 8832, - [8996] = 8836, - [8997] = 966, - [8998] = 8810, - [8999] = 8786, - [9000] = 8810, - [9001] = 8795, - [9002] = 8786, - [9003] = 8792, - [9004] = 8832, - [9005] = 8825, - [9006] = 968, - [9007] = 8810, - [9008] = 9008, - [9009] = 8795, - [9010] = 8795, - [9011] = 8858, - [9012] = 8858, - [9013] = 8792, - [9014] = 981, - [9015] = 8865, - [9016] = 8810, - [9017] = 8795, - [9018] = 8810, - [9019] = 8790, - [9020] = 8786, - [9021] = 8828, - [9022] = 8797, - [9023] = 8797, - [9024] = 8791, - [9025] = 8793, - [9026] = 973, - [9027] = 9027, - [9028] = 8832, - [9029] = 9029, - [9030] = 8827, - [9031] = 8786, - [9032] = 8786, - [9033] = 8792, - [9034] = 8797, - [9035] = 8793, - [9036] = 8792, - [9037] = 8891, - [9038] = 8817, - [9039] = 8811, - [9040] = 8865, - [9041] = 926, - [9042] = 9042, - [9043] = 8836, - [9044] = 881, - [9045] = 8790, - [9046] = 8858, - [9047] = 8860, - [9048] = 8790, - [9049] = 8822, - [9050] = 8836, - [9051] = 8792, - [9052] = 8825, - [9053] = 8826, - [9054] = 8793, - [9055] = 8832, - [9056] = 8786, - [9057] = 8891, - [9058] = 8793, - [9059] = 8797, - [9060] = 8832, - [9061] = 8836, - [9062] = 8792, - [9063] = 8796, - [9064] = 8790, - [9065] = 8793, - [9066] = 8787, - [9067] = 8795, - [9068] = 940, - [9069] = 8826, - [9070] = 935, - [9071] = 8826, - [9072] = 8825, - [9073] = 8828, - [9074] = 8827, - [9075] = 8817, - [9076] = 8811, - [9077] = 8787, - [9078] = 972, - [9079] = 860, - [9080] = 8791, - [9081] = 8786, - [9082] = 8796, - [9083] = 8796, - [9084] = 8789, - [9085] = 8810, - [9086] = 8823, + [8968] = 8800, + [8969] = 8794, + [8970] = 963, + [8971] = 962, + [8972] = 8792, + [8973] = 8807, + [8974] = 8800, + [8975] = 8807, + [8976] = 8976, + [8977] = 8788, + [8978] = 8800, + [8979] = 8799, + [8980] = 8800, + [8981] = 8799, + [8982] = 8807, + [8983] = 8983, + [8984] = 8984, + [8985] = 8985, + [8986] = 8812, + [8987] = 8811, + [8988] = 8820, + [8989] = 8989, + [8990] = 8788, + [8991] = 8807, + [8992] = 8822, + [8993] = 960, + [8994] = 3794, + [8995] = 959, + [8996] = 8812, + [8997] = 8817, + [8998] = 8881, + [8999] = 8791, + [9000] = 8799, + [9001] = 957, + [9002] = 8822, + [9003] = 8885, + [9004] = 956, + [9005] = 8812, + [9006] = 955, + [9007] = 9007, + [9008] = 8887, + [9009] = 8794, + [9010] = 8790, + [9011] = 9011, + [9012] = 8800, + [9013] = 8799, + [9014] = 9014, + [9015] = 8812, + [9016] = 8829, + [9017] = 8797, + [9018] = 8788, + [9019] = 8807, + [9020] = 8890, + [9021] = 8802, + [9022] = 8807, + [9023] = 8878, + [9024] = 8788, + [9025] = 965, + [9026] = 8800, + [9027] = 8799, + [9028] = 8807, + [9029] = 8788, + [9030] = 8878, + [9031] = 8800, + [9032] = 8811, + [9033] = 946, + [9034] = 943, + [9035] = 8799, + [9036] = 8807, + [9037] = 8788, + [9038] = 8800, + [9039] = 8799, + [9040] = 8807, + [9041] = 8881, + [9042] = 8845, + [9043] = 8885, + [9044] = 940, + [9045] = 8887, + [9046] = 8890, + [9047] = 8891, + [9048] = 8788, + [9049] = 8800, + [9050] = 8800, + [9051] = 8817, + [9052] = 8799, + [9053] = 8799, + [9054] = 8790, + [9055] = 8792, + [9056] = 8890, + [9057] = 8807, + [9058] = 8788, + [9059] = 8800, + [9060] = 8811, + [9061] = 8799, + [9062] = 8807, + [9063] = 8807, + [9064] = 8788, + [9065] = 8788, + [9066] = 8829, + [9067] = 8800, + [9068] = 8799, + [9069] = 8891, + [9070] = 8817, + [9071] = 8890, + [9072] = 8822, + [9073] = 8812, + [9074] = 8800, + [9075] = 8799, + [9076] = 858, + [9077] = 856, + [9078] = 8887, + [9079] = 8887, + [9080] = 8885, + [9081] = 8807, + [9082] = 8885, + [9083] = 8788, + [9084] = 8881, + [9085] = 8881, + [9086] = 8829, [9087] = 8822, - [9088] = 8832, - [9089] = 9089, - [9090] = 855, - [9091] = 1038, - [9092] = 978, - [9093] = 9093, - [9094] = 9094, - [9095] = 9095, - [9096] = 9095, - [9097] = 1104, + [9088] = 8800, + [9089] = 8799, + [9090] = 8878, + [9091] = 8807, + [9092] = 8788, + [9093] = 8822, + [9094] = 8800, + [9095] = 1122, + [9096] = 1056, + [9097] = 9097, [9098] = 9098, [9099] = 9099, [9100] = 9100, [9101] = 9101, - [9102] = 9101, - [9103] = 9095, - [9104] = 9098, - [9105] = 9099, - [9106] = 9101, - [9107] = 9095, - [9108] = 9098, - [9109] = 9099, - [9110] = 9110, - [9111] = 9100, - [9112] = 9100, - [9113] = 9095, - [9114] = 9098, - [9115] = 9101, - [9116] = 9110, - [9117] = 9110, - [9118] = 9100, - [9119] = 9095, - [9120] = 9101, + [9102] = 9102, + [9103] = 9102, + [9104] = 9100, + [9105] = 9101, + [9106] = 9106, + [9107] = 9097, + [9108] = 9099, + [9109] = 9098, + [9110] = 9102, + [9111] = 9097, + [9112] = 9098, + [9113] = 9102, + [9114] = 9099, + [9115] = 9115, + [9116] = 9100, + [9117] = 9100, + [9118] = 9099, + [9119] = 9102, + [9120] = 9099, [9121] = 9101, - [9122] = 9101, - [9123] = 9094, - [9124] = 9124, - [9125] = 9125, - [9126] = 9110, - [9127] = 9099, - [9128] = 9128, - [9129] = 9095, - [9130] = 9110, - [9131] = 9124, - [9132] = 1151, - [9133] = 9100, - [9134] = 9098, - [9135] = 9099, - [9136] = 9095, - [9137] = 9095, - [9138] = 9100, - [9139] = 9139, - [9140] = 9140, - [9141] = 9098, - [9142] = 9101, - [9143] = 9099, - [9144] = 9144, - [9145] = 9095, - [9146] = 9110, - [9147] = 9101, - [9148] = 9144, - [9149] = 9100, - [9150] = 9100, - [9151] = 1126, - [9152] = 9094, - [9153] = 9110, - [9154] = 9110, - [9155] = 9095, - [9156] = 9110, - [9157] = 9101, - [9158] = 1140, - [9159] = 9140, + [9122] = 9099, + [9123] = 9123, + [9124] = 9101, + [9125] = 9100, + [9126] = 9099, + [9127] = 9102, + [9128] = 9101, + [9129] = 9100, + [9130] = 9099, + [9131] = 9100, + [9132] = 9100, + [9133] = 9102, + [9134] = 9101, + [9135] = 9101, + [9136] = 9099, + [9137] = 9098, + [9138] = 9102, + [9139] = 9101, + [9140] = 9102, + [9141] = 9099, + [9142] = 9100, + [9143] = 9102, + [9144] = 9101, + [9145] = 9097, + [9146] = 9146, + [9147] = 9100, + [9148] = 9099, + [9149] = 9098, + [9150] = 9101, + [9151] = 9097, + [9152] = 9152, + [9153] = 9153, + [9154] = 9101, + [9155] = 9098, + [9156] = 9102, + [9157] = 9106, + [9158] = 9123, + [9159] = 9099, [9160] = 9098, - [9161] = 9110, - [9162] = 9124, - [9163] = 9100, + [9161] = 9097, + [9162] = 9098, + [9163] = 9097, [9164] = 9100, - [9165] = 1153, - [9166] = 9100, - [9167] = 9095, - [9168] = 9101, - [9169] = 1157, + [9165] = 9097, + [9166] = 9166, + [9167] = 9098, + [9168] = 9097, + [9169] = 9102, [9170] = 9101, - [9171] = 9099, - [9172] = 9100, - [9173] = 9144, - [9174] = 9095, - [9175] = 9098, - [9176] = 1154, - [9177] = 1155, - [9178] = 9101, - [9179] = 1167, - [9180] = 9099, - [9181] = 9099, + [9171] = 9171, + [9172] = 9146, + [9173] = 9098, + [9174] = 9115, + [9175] = 9097, + [9176] = 9102, + [9177] = 9177, + [9178] = 9178, + [9179] = 9177, + [9180] = 9102, + [9181] = 9178, [9182] = 9182, - [9183] = 9098, - [9184] = 9101, - [9185] = 9185, - [9186] = 9095, - [9187] = 9140, - [9188] = 9140, - [9189] = 9124, + [9183] = 9101, + [9184] = 9100, + [9185] = 9101, + [9186] = 9102, + [9187] = 9187, + [9188] = 9098, + [9189] = 9189, [9190] = 9100, - [9191] = 9098, - [9192] = 9110, - [9193] = 9101, - [9194] = 9144, - [9195] = 891, - [9196] = 9099, - [9197] = 9095, - [9198] = 9144, - [9199] = 9101, - [9200] = 9101, - [9201] = 9098, - [9202] = 9095, - [9203] = 9182, - [9204] = 9204, - [9205] = 9093, - [9206] = 9095, - [9207] = 9100, - [9208] = 9110, - [9209] = 9100, - [9210] = 9110, - [9211] = 9093, - [9212] = 9110, - [9213] = 9101, - [9214] = 9099, - [9215] = 1144, - [9216] = 9095, - [9217] = 9110, - [9218] = 9099, - [9219] = 9100, - [9220] = 9110, - [9221] = 9098, - [9222] = 9101, - [9223] = 9095, - [9224] = 1105, - [9225] = 9100, - [9226] = 9093, - [9227] = 9110, - [9228] = 9099, - [9229] = 9101, - [9230] = 9140, - [9231] = 9098, - [9232] = 9095, - [9233] = 9140, - [9234] = 9100, - [9235] = 9110, - [9236] = 9100, - [9237] = 9101, - [9238] = 9238, - [9239] = 9128, - [9240] = 1103, - [9241] = 1051, - [9242] = 1092, - [9243] = 881, - [9244] = 9238, - [9245] = 9140, - [9246] = 9140, - [9247] = 9140, - [9248] = 1131, - [9249] = 9099, - [9250] = 9100, - [9251] = 1100, - [9252] = 1184, - [9253] = 1058, - [9254] = 1143, - [9255] = 1172, - [9256] = 9204, - [9257] = 9140, - [9258] = 9101, - [9259] = 9101, - [9260] = 9260, - [9261] = 9100, - [9262] = 9094, - [9263] = 9098, - [9264] = 1173, - [9265] = 9101, - [9266] = 9095, - [9267] = 1175, - [9268] = 9099, - [9269] = 9100, - [9270] = 9095, - [9271] = 9100, - [9272] = 9099, - [9273] = 9110, - [9274] = 9140, - [9275] = 9124, - [9276] = 9140, - [9277] = 9277, + [9191] = 9123, + [9192] = 9102, + [9193] = 9187, + [9194] = 9099, + [9195] = 9182, + [9196] = 9177, + [9197] = 9099, + [9198] = 9189, + [9199] = 9097, + [9200] = 9178, + [9201] = 9106, + [9202] = 9123, + [9203] = 9101, + [9204] = 9177, + [9205] = 9146, + [9206] = 9106, + [9207] = 9152, + [9208] = 9098, + [9209] = 9209, + [9210] = 9099, + [9211] = 9115, + [9212] = 1078, + [9213] = 9097, + [9214] = 1186, + [9215] = 9106, + [9216] = 873, + [9217] = 9123, + [9218] = 9115, + [9219] = 9115, + [9220] = 1185, + [9221] = 1101, + [9222] = 1109, + [9223] = 1179, + [9224] = 9098, + [9225] = 9098, + [9226] = 9189, + [9227] = 9115, + [9228] = 9097, + [9229] = 9229, + [9230] = 9230, + [9231] = 9100, + [9232] = 9115, + [9233] = 9166, + [9234] = 9234, + [9235] = 9146, + [9236] = 9123, + [9237] = 9106, + [9238] = 9099, + [9239] = 9123, + [9240] = 1178, + [9241] = 9241, + [9242] = 9115, + [9243] = 1086, + [9244] = 9177, + [9245] = 9245, + [9246] = 9115, + [9247] = 1175, + [9248] = 9098, + [9249] = 1124, + [9250] = 1013, + [9251] = 1169, + [9252] = 1174, + [9253] = 1184, + [9254] = 1183, + [9255] = 9101, + [9256] = 9182, + [9257] = 9115, + [9258] = 9178, + [9259] = 3942, + [9260] = 867, + [9261] = 9187, + [9262] = 1167, + [9263] = 9101, + [9264] = 1163, + [9265] = 1162, + [9266] = 9266, + [9267] = 9097, + [9268] = 9102, + [9269] = 1182, + [9270] = 9270, + [9271] = 9099, + [9272] = 9115, + [9273] = 1181, + [9274] = 9178, + [9275] = 9275, + [9276] = 9276, + [9277] = 1180, [9278] = 9278, - [9279] = 9279, - [9280] = 9280, - [9281] = 9094, - [9282] = 9093, - [9283] = 9182, - [9284] = 1145, - [9285] = 9101, - [9286] = 1015, - [9287] = 9110, - [9288] = 9288, - [9289] = 9204, - [9290] = 1043, - [9291] = 9098, - [9292] = 1040, - [9293] = 9095, - [9294] = 1136, - [9295] = 9144, - [9296] = 9140, - [9297] = 1180, - [9298] = 9298, - [9299] = 9095, - [9300] = 9100, - [9301] = 1023, - [9302] = 9298, - [9303] = 9100, - [9304] = 9277, - [9305] = 1132, - [9306] = 9110, - [9307] = 9238, - [9308] = 1063, - [9309] = 9098, + [9279] = 9115, + [9280] = 9115, + [9281] = 9100, + [9282] = 9097, + [9283] = 9106, + [9284] = 1159, + [9285] = 9285, + [9286] = 9115, + [9287] = 1177, + [9288] = 9100, + [9289] = 4034, + [9290] = 9290, + [9291] = 1107, + [9292] = 9292, + [9293] = 9187, + [9294] = 9146, + [9295] = 3921, + [9296] = 1176, + [9297] = 4002, + [9298] = 3959, + [9299] = 1059, + [9300] = 9097, + [9301] = 1047, + [9302] = 1048, + [9303] = 1157, + [9304] = 9115, + [9305] = 1155, + [9306] = 9098, + [9307] = 9101, + [9308] = 9098, + [9309] = 9097, [9310] = 9099, - [9311] = 1124, - [9312] = 9140, - [9313] = 9182, - [9314] = 1181, - [9315] = 9315, - [9316] = 9124, + [9311] = 9097, + [9312] = 9098, + [9313] = 9100, + [9314] = 9314, + [9315] = 904, + [9316] = 9146, [9317] = 9098, - [9318] = 9099, - [9319] = 1054, - [9320] = 9277, - [9321] = 9094, - [9322] = 9140, - [9323] = 1182, - [9324] = 9094, - [9325] = 9101, - [9326] = 9110, - [9327] = 1057, - [9328] = 9298, - [9329] = 9128, - [9330] = 9238, - [9331] = 1138, - [9332] = 9332, - [9333] = 1185, - [9334] = 9099, - [9335] = 9298, - [9336] = 9110, - [9337] = 9098, - [9338] = 9277, - [9339] = 9100, - [9340] = 9340, - [9341] = 1114, - [9342] = 9144, - [9343] = 9110, - [9344] = 9204, - [9345] = 9345, - [9346] = 9346, - [9347] = 9347, - [9348] = 1016, - [9349] = 9124, - [9350] = 9099, - [9351] = 9098, - [9352] = 9140, - [9353] = 3915, - [9354] = 1108, - [9355] = 1168, - [9356] = 1166, + [9318] = 9318, + [9319] = 9115, + [9320] = 9098, + [9321] = 9101, + [9322] = 9182, + [9323] = 9102, + [9324] = 9097, + [9325] = 9100, + [9326] = 1116, + [9327] = 9115, + [9328] = 9106, + [9329] = 9099, + [9330] = 9330, + [9331] = 9101, + [9332] = 9102, + [9333] = 9100, + [9334] = 9189, + [9335] = 9097, + [9336] = 9098, + [9337] = 9187, + [9338] = 9097, + [9339] = 9098, + [9340] = 9152, + [9341] = 9166, + [9342] = 9099, + [9343] = 9101, + [9344] = 9101, + [9345] = 9102, + [9346] = 9102, + [9347] = 9098, + [9348] = 9097, + [9349] = 9100, + [9350] = 9350, + [9351] = 9177, + [9352] = 9097, + [9353] = 9189, + [9354] = 9354, + [9355] = 9099, + [9356] = 9356, [9357] = 9100, - [9358] = 9099, - [9359] = 9093, - [9360] = 9110, - [9361] = 9361, - [9362] = 9182, - [9363] = 9363, - [9364] = 9110, - [9365] = 9140, - [9366] = 9140, - [9367] = 3961, - [9368] = 9368, - [9369] = 1133, - [9370] = 9370, - [9371] = 9371, - [9372] = 1129, - [9373] = 9373, - [9374] = 9098, - [9375] = 9095, - [9376] = 9144, - [9377] = 9124, - [9378] = 9277, - [9379] = 1052, - [9380] = 4000, - [9381] = 1127, - [9382] = 9382, - [9383] = 1059, - [9384] = 1064, - [9385] = 9140, - [9386] = 1072, - [9387] = 9204, - [9388] = 9094, - [9389] = 1034, - [9390] = 1053, - [9391] = 1152, - [9392] = 9110, - [9393] = 9095, - [9394] = 9128, - [9395] = 9140, - [9396] = 9298, - [9397] = 9144, - [9398] = 3832, - [9399] = 9182, - [9400] = 1028, - [9401] = 1117, - [9402] = 9402, - [9403] = 9298, - [9404] = 9204, - [9405] = 9140, - [9406] = 9099, - [9407] = 1050, - [9408] = 925, - [9409] = 1038, - [9410] = 9410, - [9411] = 9140, - [9412] = 1186, - [9413] = 9099, - [9414] = 9277, - [9415] = 9098, - [9416] = 9416, - [9417] = 9098, - [9418] = 1179, - [9419] = 1115, - [9420] = 9140, - [9421] = 9421, - [9422] = 4038, - [9423] = 1111, - [9424] = 9098, - [9425] = 1036, - [9426] = 1062, - [9427] = 9128, - [9428] = 9428, - [9429] = 9429, - [9430] = 9430, - [9431] = 1177, - [9432] = 1171, - [9433] = 1098, - [9434] = 9140, - [9435] = 9095, - [9436] = 9436, - [9437] = 1091, - [9438] = 9140, - [9439] = 9439, - [9440] = 1090, - [9441] = 9128, - [9442] = 1048, - [9443] = 1102, - [9444] = 1071, - [9445] = 9124, - [9446] = 9140, - [9447] = 9098, - [9448] = 9094, - [9449] = 9099, - [9450] = 9450, - [9451] = 1101, - [9452] = 9140, - [9453] = 1137, - [9454] = 9238, - [9455] = 9455, - [9456] = 9101, + [9358] = 9358, + [9359] = 1117, + [9360] = 9101, + [9361] = 9102, + [9362] = 9100, + [9363] = 9102, + [9364] = 1118, + [9365] = 9099, + [9366] = 9123, + [9367] = 9100, + [9368] = 1049, + [9369] = 9115, + [9370] = 1123, + [9371] = 1051, + [9372] = 9101, + [9373] = 1171, + [9374] = 9102, + [9375] = 9375, + [9376] = 9376, + [9377] = 1168, + [9378] = 9100, + [9379] = 1111, + [9380] = 9099, + [9381] = 9123, + [9382] = 9115, + [9383] = 9177, + [9384] = 9384, + [9385] = 1166, + [9386] = 9177, + [9387] = 1055, + [9388] = 9115, + [9389] = 9102, + [9390] = 9390, + [9391] = 1072, + [9392] = 1154, + [9393] = 9393, + [9394] = 9394, + [9395] = 9187, + [9396] = 9102, + [9397] = 9182, + [9398] = 9102, + [9399] = 9100, + [9400] = 9177, + [9401] = 9099, + [9402] = 9100, + [9403] = 9099, + [9404] = 9101, + [9405] = 1066, + [9406] = 9115, + [9407] = 9152, + [9408] = 1068, + [9409] = 9409, + [9410] = 9098, + [9411] = 1127, + [9412] = 9097, + [9413] = 1129, + [9414] = 9115, + [9415] = 9415, + [9416] = 1081, + [9417] = 9099, + [9418] = 1094, + [9419] = 9419, + [9420] = 9189, + [9421] = 1164, + [9422] = 9100, + [9423] = 9115, + [9424] = 9115, + [9425] = 1170, + [9426] = 9106, + [9427] = 1096, + [9428] = 1140, + [9429] = 1097, + [9430] = 9101, + [9431] = 9166, + [9432] = 9178, + [9433] = 9152, + [9434] = 9101, + [9435] = 9435, + [9436] = 1120, + [9437] = 1152, + [9438] = 9152, + [9439] = 9099, + [9440] = 1014, + [9441] = 1126, + [9442] = 1130, + [9443] = 1148, + [9444] = 9115, + [9445] = 1135, + [9446] = 1131, + [9447] = 9115, + [9448] = 9448, + [9449] = 9115, + [9450] = 1153, + [9451] = 1134, + [9452] = 9166, + [9453] = 9166, + [9454] = 9182, + [9455] = 1150, + [9456] = 1149, [9457] = 9457, - [9458] = 9458, - [9459] = 9459, - [9460] = 9238, - [9461] = 9461, - [9462] = 9462, - [9463] = 1166, + [9458] = 1133, + [9459] = 1151, + [9460] = 1132, + [9461] = 1058, + [9462] = 1057, + [9463] = 9463, [9464] = 9464, [9465] = 9465, [9466] = 9466, [9467] = 9467, [9468] = 9468, - [9469] = 1168, - [9470] = 9461, - [9471] = 1072, + [9469] = 9469, + [9470] = 9467, + [9471] = 9471, [9472] = 9472, [9473] = 9473, - [9474] = 1145, - [9475] = 9475, - [9476] = 9476, + [9474] = 9474, + [9475] = 9466, + [9476] = 9468, [9477] = 9477, - [9478] = 9478, + [9478] = 9464, [9479] = 9479, [9480] = 9480, [9481] = 9481, [9482] = 9482, - [9483] = 9483, + [9483] = 9472, [9484] = 9484, - [9485] = 9485, - [9486] = 1143, - [9487] = 1053, - [9488] = 9477, - [9489] = 9480, - [9490] = 9490, - [9491] = 9491, + [9485] = 9471, + [9486] = 9486, + [9487] = 9487, + [9488] = 9467, + [9489] = 9468, + [9490] = 9464, + [9491] = 9466, [9492] = 9492, - [9493] = 9481, - [9494] = 9494, - [9495] = 9480, + [9493] = 9474, + [9494] = 9472, + [9495] = 9495, [9496] = 9496, - [9497] = 1185, + [9497] = 9497, [9498] = 9498, - [9499] = 9499, - [9500] = 9464, - [9501] = 9501, - [9502] = 9502, - [9503] = 9503, - [9504] = 1108, - [9505] = 9480, - [9506] = 9475, - [9507] = 9480, - [9508] = 9499, - [9509] = 9501, + [9499] = 9464, + [9500] = 9500, + [9501] = 9471, + [9502] = 9467, + [9503] = 9468, + [9504] = 9466, + [9505] = 9492, + [9506] = 9464, + [9507] = 9507, + [9508] = 9472, + [9509] = 9509, [9510] = 9510, - [9511] = 9511, - [9512] = 9478, - [9513] = 9513, - [9514] = 9464, - [9515] = 9498, - [9516] = 9472, - [9517] = 9494, - [9518] = 9518, - [9519] = 9481, - [9520] = 9461, - [9521] = 9466, - [9522] = 9522, - [9523] = 9477, - [9524] = 1184, + [9511] = 9464, + [9512] = 9471, + [9513] = 9464, + [9514] = 9467, + [9515] = 9464, + [9516] = 9516, + [9517] = 9468, + [9518] = 9464, + [9519] = 9519, + [9520] = 9520, + [9521] = 9521, + [9522] = 9464, + [9523] = 9466, + [9524] = 9524, [9525] = 9525, - [9526] = 9477, - [9527] = 9481, - [9528] = 9528, - [9529] = 9529, - [9530] = 9530, + [9526] = 9526, + [9527] = 9472, + [9528] = 9471, + [9529] = 9467, + [9530] = 9464, [9531] = 9531, - [9532] = 9532, - [9533] = 1133, - [9534] = 9494, - [9535] = 9535, - [9536] = 9498, - [9537] = 9466, - [9538] = 9461, - [9539] = 9472, - [9540] = 9540, - [9541] = 9464, - [9542] = 9480, - [9543] = 9472, - [9544] = 9510, - [9545] = 9499, - [9546] = 1182, - [9547] = 9476, - [9548] = 9548, - [9549] = 9510, - [9550] = 9461, - [9551] = 9477, - [9552] = 9483, - [9553] = 9466, - [9554] = 1048, - [9555] = 9477, - [9556] = 9485, - [9557] = 9481, - [9558] = 1181, - [9559] = 9498, - [9560] = 9499, - [9561] = 9475, - [9562] = 9501, - [9563] = 9464, - [9564] = 9462, - [9565] = 9464, - [9566] = 9499, - [9567] = 9467, - [9568] = 9510, - [9569] = 9498, - [9570] = 1152, - [9571] = 9510, - [9572] = 9494, - [9573] = 1114, - [9574] = 9574, - [9575] = 9468, - [9576] = 9481, - [9577] = 9477, + [9532] = 9468, + [9533] = 9466, + [9534] = 9472, + [9535] = 9471, + [9536] = 9467, + [9537] = 9464, + [9538] = 9468, + [9539] = 9539, + [9540] = 9480, + [9541] = 9466, + [9542] = 9472, + [9543] = 9471, + [9544] = 9544, + [9545] = 9467, + [9546] = 9468, + [9547] = 9547, + [9548] = 9466, + [9549] = 9472, + [9550] = 9520, + [9551] = 9467, + [9552] = 9552, + [9553] = 9519, + [9554] = 9509, + [9555] = 9482, + [9556] = 9468, + [9557] = 9557, + [9558] = 9558, + [9559] = 9559, + [9560] = 9500, + [9561] = 9466, + [9562] = 9520, + [9563] = 9552, + [9564] = 9552, + [9565] = 9486, + [9566] = 9566, + [9567] = 9507, + [9568] = 9559, + [9569] = 9472, + [9570] = 9467, + [9571] = 9468, + [9572] = 9464, + [9573] = 9573, + [9574] = 9472, + [9575] = 9575, + [9576] = 9524, + [9577] = 9577, [9578] = 9578, - [9579] = 9579, - [9580] = 9513, - [9581] = 9466, - [9582] = 9582, - [9583] = 9477, + [9579] = 9467, + [9580] = 9468, + [9581] = 9507, + [9582] = 9500, + [9583] = 9472, [9584] = 9584, [9585] = 9585, - [9586] = 9481, - [9587] = 9496, - [9588] = 9464, - [9589] = 9589, - [9590] = 9498, - [9591] = 9464, - [9592] = 9592, - [9593] = 9498, + [9586] = 9520, + [9587] = 9552, + [9588] = 9466, + [9589] = 9472, + [9590] = 9584, + [9591] = 9486, + [9592] = 9467, + [9593] = 9539, [9594] = 9594, - [9595] = 1124, - [9596] = 9499, + [9595] = 9584, + [9596] = 9468, [9597] = 9466, - [9598] = 9598, - [9599] = 9532, - [9600] = 9510, - [9601] = 9466, - [9602] = 9548, - [9603] = 9477, - [9604] = 1028, - [9605] = 1016, - [9606] = 9461, - [9607] = 9481, - [9608] = 9510, - [9609] = 9472, - [9610] = 9499, - [9611] = 9510, - [9612] = 9510, - [9613] = 9499, - [9614] = 9510, - [9615] = 1023, - [9616] = 9476, - [9617] = 9617, - [9618] = 9594, - [9619] = 1127, - [9620] = 9499, - [9621] = 9510, - [9622] = 9499, - [9623] = 9510, - [9624] = 9496, - [9625] = 9473, - [9626] = 9499, - [9627] = 9483, - [9628] = 9467, - [9629] = 9468, - [9630] = 9528, + [9598] = 9472, + [9599] = 9467, + [9600] = 9558, + [9601] = 9500, + [9602] = 9468, + [9603] = 1078, + [9604] = 9466, + [9605] = 9472, + [9606] = 9520, + [9607] = 9467, + [9608] = 9468, + [9609] = 9552, + [9610] = 9577, + [9611] = 9498, + [9612] = 9612, + [9613] = 9466, + [9614] = 9486, + [9615] = 9486, + [9616] = 9472, + [9617] = 9566, + [9618] = 9486, + [9619] = 9467, + [9620] = 9473, + [9621] = 9468, + [9622] = 9466, + [9623] = 9472, + [9624] = 9500, + [9625] = 9467, + [9626] = 9626, + [9627] = 9510, + [9628] = 9520, + [9629] = 9626, + [9630] = 9626, [9631] = 9631, - [9632] = 1129, - [9633] = 9633, - [9634] = 9548, - [9635] = 9480, - [9636] = 9522, - [9637] = 1015, - [9638] = 9478, - [9639] = 1058, - [9640] = 9461, - [9641] = 9529, - [9642] = 9501, - [9643] = 9464, + [9632] = 9626, + [9633] = 9507, + [9634] = 9510, + [9635] = 9464, + [9636] = 9552, + [9637] = 9637, + [9638] = 9500, + [9639] = 9468, + [9640] = 9467, + [9641] = 9552, + [9642] = 9471, + [9643] = 9486, [9644] = 9510, - [9645] = 9499, - [9646] = 9528, - [9647] = 9475, - [9648] = 9532, - [9649] = 9473, - [9650] = 9485, - [9651] = 9513, - [9652] = 9464, - [9653] = 9498, - [9654] = 9594, - [9655] = 9494, - [9656] = 9532, - [9657] = 9481, - [9658] = 9477, - [9659] = 9499, - [9660] = 9548, - [9661] = 9498, - [9662] = 1117, - [9663] = 1115, - [9664] = 9496, - [9665] = 9467, - [9666] = 9466, - [9667] = 9461, - [9668] = 9472, - [9669] = 9473, - [9670] = 9510, - [9671] = 9499, - [9672] = 9479, - [9673] = 9476, - [9674] = 1111, - [9675] = 9675, - [9676] = 9483, - [9677] = 9594, - [9678] = 9473, - [9679] = 9584, - [9680] = 9680, - [9681] = 9499, - [9682] = 9510, - [9683] = 9496, - [9684] = 9529, + [9645] = 9474, + [9646] = 9510, + [9647] = 9466, + [9648] = 9468, + [9649] = 9557, + [9650] = 9626, + [9651] = 1086, + [9652] = 9626, + [9653] = 9510, + [9654] = 9626, + [9655] = 9510, + [9656] = 9626, + [9657] = 9510, + [9658] = 9557, + [9659] = 9558, + [9660] = 9544, + [9661] = 9626, + [9662] = 9510, + [9663] = 9510, + [9664] = 9557, + [9665] = 9464, + [9666] = 9558, + [9667] = 9544, + [9668] = 9626, + [9669] = 9510, + [9670] = 9468, + [9671] = 9557, + [9672] = 9473, + [9673] = 9500, + [9674] = 9558, + [9675] = 9577, + [9676] = 9544, + [9677] = 9626, + [9678] = 9678, + [9679] = 9557, + [9680] = 9473, + [9681] = 9466, + [9682] = 9558, + [9683] = 9577, + [9684] = 9544, [9685] = 9685, - [9686] = 9686, - [9687] = 9522, - [9688] = 9548, - [9689] = 9472, - [9690] = 9501, - [9691] = 9691, - [9692] = 1098, - [9693] = 1050, - [9694] = 9532, - [9695] = 9594, - [9696] = 9696, - [9697] = 9617, - [9698] = 9513, - [9699] = 1102, - [9700] = 9466, - [9701] = 1175, - [9702] = 1173, - [9703] = 1172, - [9704] = 1167, - [9705] = 9481, - [9706] = 9706, - [9707] = 9540, - [9708] = 9475, - [9709] = 9494, - [9710] = 9513, - [9711] = 9485, - [9712] = 9464, - [9713] = 9479, - [9714] = 9467, - [9715] = 9478, - [9716] = 9716, - [9717] = 9548, - [9718] = 1100, - [9719] = 1137, - [9720] = 9548, - [9721] = 1101, - [9722] = 9528, - [9723] = 9522, - [9724] = 1155, - [9725] = 9617, - [9726] = 9584, - [9727] = 9529, + [9686] = 9626, + [9687] = 9472, + [9688] = 9510, + [9689] = 9467, + [9690] = 9557, + [9691] = 9473, + [9692] = 9558, + [9693] = 9577, + [9694] = 9544, + [9695] = 9685, + [9696] = 9626, + [9697] = 9510, + [9698] = 9557, + [9699] = 9473, + [9700] = 9498, + [9701] = 9558, + [9702] = 9577, + [9703] = 9520, + [9704] = 9468, + [9705] = 9466, + [9706] = 9544, + [9707] = 9685, + [9708] = 9472, + [9709] = 9516, + [9710] = 9486, + [9711] = 9547, + [9712] = 9626, + [9713] = 9466, + [9714] = 9626, + [9715] = 9468, + [9716] = 9510, + [9717] = 9486, + [9718] = 9510, + [9719] = 9487, + [9720] = 9575, + [9721] = 9466, + [9722] = 9472, + [9723] = 9467, + [9724] = 9557, + [9725] = 9473, + [9726] = 9498, + [9727] = 9468, [9728] = 9466, - [9729] = 9499, - [9730] = 9716, - [9731] = 1103, - [9732] = 9466, - [9733] = 9529, - [9734] = 1104, - [9735] = 9584, - [9736] = 9510, + [9729] = 9472, + [9730] = 9467, + [9731] = 9468, + [9732] = 9558, + [9733] = 9577, + [9734] = 9472, + [9735] = 9467, + [9736] = 9544, [9737] = 9737, - [9738] = 9464, - [9739] = 9468, - [9740] = 9475, - [9741] = 9480, - [9742] = 9473, - [9743] = 9584, - [9744] = 9466, - [9745] = 9481, - [9746] = 9481, - [9747] = 9464, - [9748] = 9499, - [9749] = 9522, - [9750] = 9468, - [9751] = 9510, - [9752] = 9531, - [9753] = 9485, - [9754] = 9461, - [9755] = 9499, - [9756] = 9617, - [9757] = 9584, - [9758] = 9510, - [9759] = 9532, - [9760] = 9529, - [9761] = 9528, - [9762] = 9499, - [9763] = 9513, - [9764] = 9472, - [9765] = 9494, - [9766] = 9522, - [9767] = 9767, - [9768] = 9768, - [9769] = 9501, - [9770] = 9485, - [9771] = 9466, - [9772] = 1064, - [9773] = 9480, - [9774] = 1091, - [9775] = 9496, - [9776] = 9529, - [9777] = 1126, - [9778] = 9510, - [9779] = 9464, - [9780] = 9477, - [9781] = 9498, - [9782] = 9584, - [9783] = 9617, - [9784] = 9594, - [9785] = 9462, - [9786] = 9786, - [9787] = 1140, - [9788] = 9481, - [9789] = 9789, - [9790] = 9598, - [9791] = 9477, - [9792] = 9592, - [9793] = 9528, - [9794] = 9794, - [9795] = 9548, - [9796] = 9485, - [9797] = 1154, - [9798] = 1180, - [9799] = 1153, - [9800] = 9494, - [9801] = 9716, - [9802] = 9531, - [9803] = 9466, - [9804] = 9594, - [9805] = 9528, - [9806] = 9479, - [9807] = 9794, - [9808] = 1071, - [9809] = 9540, + [9738] = 9685, + [9739] = 9516, + [9740] = 9468, + [9741] = 9741, + [9742] = 9482, + [9743] = 9472, + [9744] = 9467, + [9745] = 9626, + [9746] = 9746, + [9747] = 9500, + [9748] = 9520, + [9749] = 9498, + [9750] = 9552, + [9751] = 9468, + [9752] = 9472, + [9753] = 9486, + [9754] = 9754, + [9755] = 9467, + [9756] = 9471, + [9757] = 9509, + [9758] = 9468, + [9759] = 9482, + [9760] = 9472, + [9761] = 9472, + [9762] = 9510, + [9763] = 9519, + [9764] = 9467, + [9765] = 9487, + [9766] = 9520, + [9767] = 9509, + [9768] = 9575, + [9769] = 9557, + [9770] = 9473, + [9771] = 9520, + [9772] = 9472, + [9773] = 9467, + [9774] = 9558, + [9775] = 9468, + [9776] = 9577, + [9777] = 9472, + [9778] = 9467, + [9779] = 9544, + [9780] = 9685, + [9781] = 9516, + [9782] = 9466, + [9783] = 9783, + [9784] = 9626, + [9785] = 9785, + [9786] = 9746, + [9787] = 9787, + [9788] = 9787, + [9789] = 9678, + [9790] = 1107, + [9791] = 9783, + [9792] = 9792, + [9793] = 9464, + [9794] = 9544, + [9795] = 9510, + [9796] = 9787, + [9797] = 9797, + [9798] = 9792, + [9799] = 9584, + [9800] = 9487, + [9801] = 9480, + [9802] = 9575, + [9803] = 9552, + [9804] = 9584, + [9805] = 9557, + [9806] = 9473, + [9807] = 9467, + [9808] = 9474, + [9809] = 9566, [9810] = 9498, - [9811] = 9472, - [9812] = 9467, - [9813] = 9786, - [9814] = 9510, + [9811] = 9539, + [9812] = 9812, + [9813] = 9813, + [9814] = 9558, [9815] = 9815, - [9816] = 9480, - [9817] = 9510, - [9818] = 9794, - [9819] = 1151, - [9820] = 9476, + [9816] = 9539, + [9817] = 9552, + [9818] = 9577, + [9819] = 9819, + [9820] = 9520, [9821] = 9821, - [9822] = 9467, - [9823] = 9584, - [9824] = 9548, - [9825] = 9528, - [9826] = 9479, - [9827] = 9483, - [9828] = 9584, - [9829] = 9462, - [9830] = 1144, - [9831] = 9794, - [9832] = 9467, - [9833] = 9485, - [9834] = 9834, - [9835] = 9835, - [9836] = 9479, - [9837] = 9499, - [9838] = 9467, - [9839] = 9598, - [9840] = 9548, - [9841] = 9528, - [9842] = 9462, - [9843] = 9584, - [9844] = 9584, - [9845] = 9478, - [9846] = 9476, - [9847] = 9815, - [9848] = 1138, - [9849] = 9528, - [9850] = 9789, - [9851] = 9548, - [9852] = 9467, - [9853] = 9467, - [9854] = 9815, - [9855] = 9467, - [9856] = 9467, - [9857] = 9548, - [9858] = 9528, - [9859] = 9815, - [9860] = 9481, - [9861] = 1062, - [9862] = 9528, - [9863] = 9815, - [9864] = 1157, - [9865] = 9716, - [9866] = 9531, - [9867] = 1136, - [9868] = 9467, - [9869] = 9815, - [9870] = 1132, - [9871] = 9716, - [9872] = 9531, - [9873] = 9548, - [9874] = 9794, - [9875] = 9815, - [9876] = 9467, - [9877] = 9598, - [9878] = 9548, - [9879] = 9483, - [9880] = 9528, - [9881] = 9478, - [9882] = 9485, - [9883] = 9528, - [9884] = 9594, - [9885] = 1059, - [9886] = 9462, - [9887] = 9462, - [9888] = 9794, - [9889] = 9467, - [9890] = 9584, - [9891] = 9485, - [9892] = 9468, - [9893] = 9598, - [9894] = 9584, - [9895] = 9529, - [9896] = 9485, - [9897] = 9462, - [9898] = 9467, - [9899] = 9485, - [9900] = 9480, - [9901] = 9548, - [9902] = 9594, - [9903] = 9473, - [9904] = 9529, - [9905] = 9528, - [9906] = 9794, - [9907] = 9548, - [9908] = 9485, - [9909] = 9468, - [9910] = 9528, - [9911] = 9494, - [9912] = 9584, - [9913] = 1105, - [9914] = 9513, - [9915] = 9594, - [9916] = 9548, - [9917] = 9529, - [9918] = 9584, - [9919] = 9485, - [9920] = 9594, - [9921] = 9513, - [9922] = 9485, - [9923] = 9584, - [9924] = 9485, - [9925] = 9485, - [9926] = 9468, - [9927] = 9540, - [9928] = 9598, - [9929] = 9485, - [9930] = 9540, - [9931] = 9498, - [9932] = 9485, - [9933] = 9540, - [9934] = 9540, - [9935] = 9540, - [9936] = 9540, - [9937] = 9540, - [9938] = 9540, - [9939] = 9540, - [9940] = 9540, - [9941] = 9540, - [9942] = 9540, - [9943] = 9540, - [9944] = 9540, - [9945] = 9540, - [9946] = 9540, - [9947] = 9540, - [9948] = 9540, - [9949] = 9540, - [9950] = 9540, - [9951] = 9540, - [9952] = 9540, - [9953] = 9540, - [9954] = 9954, - [9955] = 9468, - [9956] = 9716, - [9957] = 9513, - [9958] = 9528, - [9959] = 9594, - [9960] = 9529, - [9961] = 9462, - [9962] = 9531, - [9963] = 9579, - [9964] = 9485, - [9965] = 9496, - [9966] = 1092, - [9967] = 9468, - [9968] = 9468, - [9969] = 9794, - [9970] = 9815, - [9971] = 9786, - [9972] = 9598, - [9973] = 9462, - [9974] = 9510, - [9975] = 9499, - [9976] = 9584, - [9977] = 9617, - [9978] = 9794, - [9979] = 9462, - [9980] = 9467, - [9981] = 9467, - [9982] = 9786, - [9983] = 9513, - [9984] = 9594, - [9985] = 9529, - [9986] = 9789, - [9987] = 9598, - [9988] = 9598, - [9989] = 9548, - [9990] = 9528, - [9991] = 1043, - [9992] = 9592, - [9993] = 9794, - [9994] = 9485, - [9995] = 9786, - [9996] = 9462, - [9997] = 9786, - [9998] = 9998, - [9999] = 9789, - [10000] = 9528, - [10001] = 9468, - [10002] = 9462, - [10003] = 10003, - [10004] = 9598, - [10005] = 9592, - [10006] = 1040, - [10007] = 9584, - [10008] = 9794, - [10009] = 9462, - [10010] = 9786, - [10011] = 9789, - [10012] = 9598, - [10013] = 9592, - [10014] = 9794, - [10015] = 9794, - [10016] = 9496, - [10017] = 9462, - [10018] = 9548, - [10019] = 9528, - [10020] = 9786, - [10021] = 9598, - [10022] = 9513, - [10023] = 9485, - [10024] = 9594, - [10025] = 9592, - [10026] = 9794, - [10027] = 9473, - [10028] = 9598, - [10029] = 9584, - [10030] = 9529, - [10031] = 9467, - [10032] = 9462, - [10033] = 9548, - [10034] = 9528, - [10035] = 9786, - [10036] = 9598, - [10037] = 9592, - [10038] = 9528, - [10039] = 9584, - [10040] = 9548, - [10041] = 9794, - [10042] = 9462, - [10043] = 9485, - [10044] = 9584, - [10045] = 9786, - [10046] = 9467, - [10047] = 9786, - [10048] = 9468, - [10049] = 9598, - [10050] = 9592, - [10051] = 9584, - [10052] = 9794, - [10053] = 9462, - [10054] = 9786, - [10055] = 9598, - [10056] = 10056, - [10057] = 9592, - [10058] = 9794, - [10059] = 9462, - [10060] = 9584, - [10061] = 9786, - [10062] = 9598, - [10063] = 9794, - [10064] = 9462, - [10065] = 9528, - [10066] = 9548, - [10067] = 9786, - [10068] = 9598, - [10069] = 9496, - [10070] = 9528, - [10071] = 9794, - [10072] = 9467, - [10073] = 9499, - [10074] = 9513, - [10075] = 9510, - [10076] = 9594, - [10077] = 9462, - [10078] = 9786, - [10079] = 9786, - [10080] = 9786, - [10081] = 9540, - [10082] = 9548, - [10083] = 9598, - [10084] = 9794, - [10085] = 9473, - [10086] = 9529, - [10087] = 9786, - [10088] = 9584, - [10089] = 9499, - [10090] = 9598, - [10091] = 9794, - [10092] = 9815, - [10093] = 9548, - [10094] = 1057, - [10095] = 9467, - [10096] = 1054, - [10097] = 9598, - [10098] = 9462, - [10099] = 9467, - [10100] = 9786, - [10101] = 9598, - [10102] = 9467, - [10103] = 9794, - [10104] = 9548, - [10105] = 9462, - [10106] = 9528, - [10107] = 9786, - [10108] = 9598, - [10109] = 9584, - [10110] = 9794, - [10111] = 9584, - [10112] = 9462, - [10113] = 9528, - [10114] = 9548, - [10115] = 9786, - [10116] = 9598, - [10117] = 1052, - [10118] = 9794, - [10119] = 9467, - [10120] = 9462, - [10121] = 9786, - [10122] = 9598, - [10123] = 10123, - [10124] = 9794, - [10125] = 9462, - [10126] = 9467, - [10127] = 9499, - [10128] = 9510, - [10129] = 9499, - [10130] = 9510, - [10131] = 9499, - [10132] = 9510, - [10133] = 9499, - [10134] = 9510, - [10135] = 10135, - [10136] = 9786, - [10137] = 9579, - [10138] = 9598, - [10139] = 9584, - [10140] = 9794, - [10141] = 9485, - [10142] = 9462, - [10143] = 9786, - [10144] = 9598, - [10145] = 9579, - [10146] = 9528, - [10147] = 9468, - [10148] = 9579, - [10149] = 9579, - [10150] = 9548, - [10151] = 9794, - [10152] = 10152, + [9822] = 9486, + [9823] = 9544, + [9824] = 1109, + [9825] = 9685, + [9826] = 9500, + [9827] = 9516, + [9828] = 9509, + [9829] = 9524, + [9830] = 9482, + [9831] = 9626, + [9832] = 9552, + [9833] = 9557, + [9834] = 9519, + [9835] = 9685, + [9836] = 9520, + [9837] = 9746, + [9838] = 9507, + [9839] = 9839, + [9840] = 9678, + [9841] = 9566, + [9842] = 9480, + [9843] = 9792, + [9844] = 9844, + [9845] = 9516, + [9846] = 9846, + [9847] = 9464, + [9848] = 9486, + [9849] = 9480, + [9850] = 9510, + [9851] = 9539, + [9852] = 9487, + [9853] = 9552, + [9854] = 9500, + [9855] = 9486, + [9856] = 9575, + [9857] = 9500, + [9858] = 9464, + [9859] = 9859, + [9860] = 9559, + [9861] = 9557, + [9862] = 9473, + [9863] = 9498, + [9864] = 9524, + [9865] = 9558, + [9866] = 9566, + [9867] = 9577, + [9868] = 9566, + [9869] = 1066, + [9870] = 9566, + [9871] = 1068, + [9872] = 1116, + [9873] = 9482, + [9874] = 1081, + [9875] = 1094, + [9876] = 9544, + [9877] = 9685, + [9878] = 9626, + [9879] = 9516, + [9880] = 9509, + [9881] = 9626, + [9882] = 9746, + [9883] = 1096, + [9884] = 9492, + [9885] = 9480, + [9886] = 9678, + [9887] = 1097, + [9888] = 1111, + [9889] = 1120, + [9890] = 9539, + [9891] = 1185, + [9892] = 9559, + [9893] = 9510, + [9894] = 9507, + [9895] = 1122, + [9896] = 1126, + [9897] = 9509, + [9898] = 1130, + [9899] = 9464, + [9900] = 9497, + [9901] = 9500, + [9902] = 9558, + [9903] = 9492, + [9904] = 9559, + [9905] = 9524, + [9906] = 9516, + [9907] = 9520, + [9908] = 1131, + [9909] = 9524, + [9910] = 9559, + [9911] = 9539, + [9912] = 9480, + [9913] = 1132, + [9914] = 1133, + [9915] = 9915, + [9916] = 9520, + [9917] = 9519, + [9918] = 9509, + [9919] = 9482, + [9920] = 9787, + [9921] = 1134, + [9922] = 1135, + [9923] = 9507, + [9924] = 1117, + [9925] = 9552, + [9926] = 9566, + [9927] = 1014, + [9928] = 9577, + [9929] = 9559, + [9930] = 9544, + [9931] = 9584, + [9932] = 1152, + [9933] = 9539, + [9934] = 9552, + [9935] = 9539, + [9936] = 1170, + [9937] = 9547, + [9938] = 1118, + [9939] = 1154, + [9940] = 9547, + [9941] = 1123, + [9942] = 9498, + [9943] = 9547, + [9944] = 9547, + [9945] = 9547, + [9946] = 9547, + [9947] = 9547, + [9948] = 9547, + [9949] = 9547, + [9950] = 9547, + [9951] = 9547, + [9952] = 9547, + [9953] = 9547, + [9954] = 9547, + [9955] = 9547, + [9956] = 9547, + [9957] = 9547, + [9958] = 9547, + [9959] = 9547, + [9960] = 9547, + [9961] = 9547, + [9962] = 9547, + [9963] = 9547, + [9964] = 1155, + [9965] = 9486, + [9966] = 1157, + [9967] = 9487, + [9968] = 9464, + [9969] = 9575, + [9970] = 1072, + [9971] = 9473, + [9972] = 9464, + [9973] = 9741, + [9974] = 9482, + [9975] = 9792, + [9976] = 9507, + [9977] = 9557, + [9978] = 9473, + [9979] = 9486, + [9980] = 9498, + [9981] = 1159, + [9982] = 9507, + [9983] = 9497, + [9984] = 9558, + [9985] = 9559, + [9986] = 9577, + [9987] = 9480, + [9988] = 9520, + [9989] = 9552, + [9990] = 9990, + [9991] = 9991, + [9992] = 1162, + [9993] = 9492, + [9994] = 1163, + [9995] = 9466, + [9996] = 9544, + [9997] = 9547, + [9998] = 1167, + [9999] = 9685, + [10000] = 9516, + [10001] = 9783, + [10002] = 9626, + [10003] = 9746, + [10004] = 1169, + [10005] = 9746, + [10006] = 9500, + [10007] = 9783, + [10008] = 9678, + [10009] = 9474, + [10010] = 1174, + [10011] = 1013, + [10012] = 9486, + [10013] = 9500, + [10014] = 1175, + [10015] = 9510, + [10016] = 1178, + [10017] = 1179, + [10018] = 9492, + [10019] = 1181, + [10020] = 1186, + [10021] = 9507, + [10022] = 9559, + [10023] = 9500, + [10024] = 1184, + [10025] = 1183, + [10026] = 1182, + [10027] = 9520, + [10028] = 1180, + [10029] = 9678, + [10030] = 9783, + [10031] = 9497, + [10032] = 1177, + [10033] = 9783, + [10034] = 9464, + [10035] = 1176, + [10036] = 1171, + [10037] = 9783, + [10038] = 9552, + [10039] = 9792, + [10040] = 9787, + [10041] = 1168, + [10042] = 9783, + [10043] = 9792, + [10044] = 9787, + [10045] = 10045, + [10046] = 9783, + [10047] = 10047, + [10048] = 9466, + [10049] = 9497, + [10050] = 9626, + [10051] = 1164, + [10052] = 1153, + [10053] = 1151, + [10054] = 9510, + [10055] = 9626, + [10056] = 1150, + [10057] = 1149, + [10058] = 9510, + [10059] = 9500, + [10060] = 9509, + [10061] = 10061, + [10062] = 9500, + [10063] = 9566, + [10064] = 9520, + [10065] = 1148, + [10066] = 9552, + [10067] = 9486, + [10068] = 9552, + [10069] = 9519, + [10070] = 9500, + [10071] = 9486, + [10072] = 9520, + [10073] = 9509, + [10074] = 9552, + [10075] = 9552, + [10076] = 9486, + [10077] = 9559, + [10078] = 9482, + [10079] = 9520, + [10080] = 9466, + [10081] = 9500, + [10082] = 9468, + [10083] = 9547, + [10084] = 9509, + [10085] = 1166, + [10086] = 1140, + [10087] = 9500, + [10088] = 9507, + [10089] = 9520, + [10090] = 1127, + [10091] = 9510, + [10092] = 9500, + [10093] = 9520, + [10094] = 9552, + [10095] = 9509, + [10096] = 9486, + [10097] = 10097, + [10098] = 9539, + [10099] = 9480, + [10100] = 9539, + [10101] = 9552, + [10102] = 9559, + [10103] = 9507, + [10104] = 9486, + [10105] = 9520, + [10106] = 9552, + [10107] = 9520, + [10108] = 9482, + [10109] = 9509, + [10110] = 9539, + [10111] = 9500, + [10112] = 9464, + [10113] = 9500, + [10114] = 1129, + [10115] = 9486, + [10116] = 9507, + [10117] = 9500, + [10118] = 9486, + [10119] = 9520, + [10120] = 9552, + [10121] = 9520, + [10122] = 9552, + [10123] = 9482, + [10124] = 9486, + [10125] = 9509, + [10126] = 9539, + [10127] = 9539, + [10128] = 9464, + [10129] = 9500, + [10130] = 9486, + [10131] = 9507, + [10132] = 9500, + [10133] = 9520, + [10134] = 9552, + [10135] = 9510, + [10136] = 9626, + [10137] = 9510, + [10138] = 9626, + [10139] = 9510, + [10140] = 9626, + [10141] = 9510, + [10142] = 9626, + [10143] = 9486, + [10144] = 9486, + [10145] = 9741, + [10146] = 9552, + [10147] = 9500, + [10148] = 9520, + [10149] = 9482, + [10150] = 9741, + [10151] = 9741, + [10152] = 9741, + [10153] = 9497, + [10154] = 9509, }; static TSCharacterRange sym__alpha_identifier_character_set_1[] = { @@ -20135,12 +20144,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [18] = {.lex_state = 1, .external_lex_state = 4}, [19] = {.lex_state = 1, .external_lex_state = 4}, [20] = {.lex_state = 1, .external_lex_state = 4}, - [21] = {.lex_state = 1, .external_lex_state = 4}, + [21] = {.lex_state = 1, .external_lex_state = 3}, [22] = {.lex_state = 1, .external_lex_state = 3}, [23] = {.lex_state = 1, .external_lex_state = 4}, - [24] = {.lex_state = 1, .external_lex_state = 3}, - [25] = {.lex_state = 1, .external_lex_state = 4}, - [26] = {.lex_state = 1, .external_lex_state = 3}, + [24] = {.lex_state = 1, .external_lex_state = 4}, + [25] = {.lex_state = 1, .external_lex_state = 3}, + [26] = {.lex_state = 1, .external_lex_state = 4}, [27] = {.lex_state = 1, .external_lex_state = 4}, [28] = {.lex_state = 1, .external_lex_state = 3}, [29] = {.lex_state = 1, .external_lex_state = 3}, @@ -20154,18 +20163,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [37] = {.lex_state = 1, .external_lex_state = 4}, [38] = {.lex_state = 1, .external_lex_state = 4}, [39] = {.lex_state = 1, .external_lex_state = 4}, - [40] = {.lex_state = 1, .external_lex_state = 4}, + [40] = {.lex_state = 1, .external_lex_state = 3}, [41] = {.lex_state = 1, .external_lex_state = 4}, [42] = {.lex_state = 1, .external_lex_state = 4}, - [43] = {.lex_state = 1, .external_lex_state = 3}, - [44] = {.lex_state = 1, .external_lex_state = 3}, - [45] = {.lex_state = 1, .external_lex_state = 4}, - [46] = {.lex_state = 1, .external_lex_state = 4}, - [47] = {.lex_state = 1, .external_lex_state = 4}, - [48] = {.lex_state = 1, .external_lex_state = 3}, + [43] = {.lex_state = 1, .external_lex_state = 4}, + [44] = {.lex_state = 1, .external_lex_state = 4}, + [45] = {.lex_state = 1, .external_lex_state = 3}, + [46] = {.lex_state = 1, .external_lex_state = 3}, + [47] = {.lex_state = 1, .external_lex_state = 3}, + [48] = {.lex_state = 1, .external_lex_state = 4}, [49] = {.lex_state = 1, .external_lex_state = 4}, [50] = {.lex_state = 1, .external_lex_state = 4}, - [51] = {.lex_state = 1, .external_lex_state = 3}, + [51] = {.lex_state = 1, .external_lex_state = 4}, [52] = {.lex_state = 321, .external_lex_state = 2}, [53] = {.lex_state = 321, .external_lex_state = 2}, [54] = {.lex_state = 321, .external_lex_state = 2}, @@ -20205,12 +20214,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [88] = {.lex_state = 321, .external_lex_state = 2}, [89] = {.lex_state = 321, .external_lex_state = 2}, [90] = {.lex_state = 321, .external_lex_state = 2}, - [91] = {.lex_state = 321, .external_lex_state = 2}, + [91] = {.lex_state = 321, .external_lex_state = 5}, [92] = {.lex_state = 321, .external_lex_state = 2}, [93] = {.lex_state = 321, .external_lex_state = 2}, [94] = {.lex_state = 321, .external_lex_state = 2}, [95] = {.lex_state = 321, .external_lex_state = 2}, - [96] = {.lex_state = 321, .external_lex_state = 2}, + [96] = {.lex_state = 321, .external_lex_state = 5}, [97] = {.lex_state = 321, .external_lex_state = 2}, [98] = {.lex_state = 321, .external_lex_state = 2}, [99] = {.lex_state = 321, .external_lex_state = 2}, @@ -20222,11 +20231,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [105] = {.lex_state = 321, .external_lex_state = 2}, [106] = {.lex_state = 321, .external_lex_state = 2}, [107] = {.lex_state = 321, .external_lex_state = 2}, - [108] = {.lex_state = 321, .external_lex_state = 5}, + [108] = {.lex_state = 321, .external_lex_state = 2}, [109] = {.lex_state = 321, .external_lex_state = 2}, [110] = {.lex_state = 321, .external_lex_state = 2}, [111] = {.lex_state = 321, .external_lex_state = 2}, - [112] = {.lex_state = 321, .external_lex_state = 5}, + [112] = {.lex_state = 321, .external_lex_state = 2}, [113] = {.lex_state = 321, .external_lex_state = 2}, [114] = {.lex_state = 321, .external_lex_state = 2}, [115] = {.lex_state = 321, .external_lex_state = 2}, @@ -20337,7 +20346,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [220] = {.lex_state = 321, .external_lex_state = 2}, [221] = {.lex_state = 321, .external_lex_state = 2}, [222] = {.lex_state = 321, .external_lex_state = 2}, - [223] = {.lex_state = 1, .external_lex_state = 3}, + [223] = {.lex_state = 321, .external_lex_state = 2}, [224] = {.lex_state = 321, .external_lex_state = 2}, [225] = {.lex_state = 321, .external_lex_state = 2}, [226] = {.lex_state = 321, .external_lex_state = 2}, @@ -20372,7 +20381,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [255] = {.lex_state = 321, .external_lex_state = 2}, [256] = {.lex_state = 321, .external_lex_state = 2}, [257] = {.lex_state = 321, .external_lex_state = 2}, - [258] = {.lex_state = 321, .external_lex_state = 2}, + [258] = {.lex_state = 1, .external_lex_state = 3}, [259] = {.lex_state = 321, .external_lex_state = 2}, [260] = {.lex_state = 1, .external_lex_state = 4}, [261] = {.lex_state = 1, .external_lex_state = 4}, @@ -20413,7 +20422,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [296] = {.lex_state = 2, .external_lex_state = 4}, [297] = {.lex_state = 2, .external_lex_state = 4}, [298] = {.lex_state = 2, .external_lex_state = 3}, - [299] = {.lex_state = 1, .external_lex_state = 4}, + [299] = {.lex_state = 2, .external_lex_state = 4}, [300] = {.lex_state = 1, .external_lex_state = 4}, [301] = {.lex_state = 1, .external_lex_state = 4}, [302] = {.lex_state = 1, .external_lex_state = 4}, @@ -20421,7 +20430,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [304] = {.lex_state = 1, .external_lex_state = 4}, [305] = {.lex_state = 1, .external_lex_state = 4}, [306] = {.lex_state = 1, .external_lex_state = 4}, - [307] = {.lex_state = 2, .external_lex_state = 4}, + [307] = {.lex_state = 1, .external_lex_state = 4}, [308] = {.lex_state = 1, .external_lex_state = 4}, [309] = {.lex_state = 2, .external_lex_state = 4}, [310] = {.lex_state = 1, .external_lex_state = 4}, @@ -20473,9 +20482,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [356] = {.lex_state = 2, .external_lex_state = 4}, [357] = {.lex_state = 2, .external_lex_state = 4}, [358] = {.lex_state = 2, .external_lex_state = 3}, - [359] = {.lex_state = 1, .external_lex_state = 4}, + [359] = {.lex_state = 2, .external_lex_state = 4}, [360] = {.lex_state = 1, .external_lex_state = 4}, - [361] = {.lex_state = 2, .external_lex_state = 4}, + [361] = {.lex_state = 1, .external_lex_state = 4}, [362] = {.lex_state = 1, .external_lex_state = 4}, [363] = {.lex_state = 1, .external_lex_state = 4}, [364] = {.lex_state = 1, .external_lex_state = 4}, @@ -20483,14 +20492,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [366] = {.lex_state = 1, .external_lex_state = 4}, [367] = {.lex_state = 1, .external_lex_state = 4}, [368] = {.lex_state = 1, .external_lex_state = 4}, - [369] = {.lex_state = 1, .external_lex_state = 4}, + [369] = {.lex_state = 2, .external_lex_state = 4}, [370] = {.lex_state = 1, .external_lex_state = 4}, [371] = {.lex_state = 1, .external_lex_state = 4}, [372] = {.lex_state = 1, .external_lex_state = 4}, [373] = {.lex_state = 1, .external_lex_state = 4}, [374] = {.lex_state = 1, .external_lex_state = 4}, [375] = {.lex_state = 1, .external_lex_state = 4}, - [376] = {.lex_state = 2, .external_lex_state = 4}, + [376] = {.lex_state = 1, .external_lex_state = 4}, [377] = {.lex_state = 1, .external_lex_state = 4}, [378] = {.lex_state = 1, .external_lex_state = 4}, [379] = {.lex_state = 1, .external_lex_state = 4}, @@ -20790,12 +20799,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [673] = {.lex_state = 1, .external_lex_state = 4}, [674] = {.lex_state = 1, .external_lex_state = 4}, [675] = {.lex_state = 12, .external_lex_state = 2}, - [676] = {.lex_state = 12, .external_lex_state = 2}, + [676] = {.lex_state = 13, .external_lex_state = 7}, [677] = {.lex_state = 13, .external_lex_state = 7}, [678] = {.lex_state = 12, .external_lex_state = 2}, - [679] = {.lex_state = 12, .external_lex_state = 2}, - [680] = {.lex_state = 12, .external_lex_state = 2}, - [681] = {.lex_state = 12, .external_lex_state = 2}, + [679] = {.lex_state = 13, .external_lex_state = 7}, + [680] = {.lex_state = 13, .external_lex_state = 7}, + [681] = {.lex_state = 13, .external_lex_state = 7}, [682] = {.lex_state = 12, .external_lex_state = 2}, [683] = {.lex_state = 12, .external_lex_state = 2}, [684] = {.lex_state = 12, .external_lex_state = 2}, @@ -20809,33 +20818,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [692] = {.lex_state = 12, .external_lex_state = 2}, [693] = {.lex_state = 12, .external_lex_state = 2}, [694] = {.lex_state = 12, .external_lex_state = 2}, - [695] = {.lex_state = 12, .external_lex_state = 2}, - [696] = {.lex_state = 12, .external_lex_state = 2}, + [695] = {.lex_state = 13, .external_lex_state = 7}, + [696] = {.lex_state = 13, .external_lex_state = 7}, [697] = {.lex_state = 12, .external_lex_state = 2}, - [698] = {.lex_state = 12, .external_lex_state = 2}, + [698] = {.lex_state = 13, .external_lex_state = 7}, [699] = {.lex_state = 13, .external_lex_state = 7}, [700] = {.lex_state = 12, .external_lex_state = 2}, - [701] = {.lex_state = 13, .external_lex_state = 7}, - [702] = {.lex_state = 13, .external_lex_state = 7}, - [703] = {.lex_state = 13, .external_lex_state = 7}, - [704] = {.lex_state = 13, .external_lex_state = 7}, - [705] = {.lex_state = 13, .external_lex_state = 7}, - [706] = {.lex_state = 13, .external_lex_state = 7}, - [707] = {.lex_state = 13, .external_lex_state = 7}, - [708] = {.lex_state = 13, .external_lex_state = 7}, - [709] = {.lex_state = 12, .external_lex_state = 2}, + [701] = {.lex_state = 12, .external_lex_state = 2}, + [702] = {.lex_state = 12, .external_lex_state = 2}, + [703] = {.lex_state = 12, .external_lex_state = 2}, + [704] = {.lex_state = 12, .external_lex_state = 2}, + [705] = {.lex_state = 12, .external_lex_state = 2}, + [706] = {.lex_state = 12, .external_lex_state = 2}, + [707] = {.lex_state = 12, .external_lex_state = 2}, + [708] = {.lex_state = 12, .external_lex_state = 2}, + [709] = {.lex_state = 13, .external_lex_state = 7}, [710] = {.lex_state = 13, .external_lex_state = 7}, [711] = {.lex_state = 13, .external_lex_state = 7}, - [712] = {.lex_state = 13, .external_lex_state = 6}, + [712] = {.lex_state = 1, .external_lex_state = 4}, [713] = {.lex_state = 1, .external_lex_state = 4}, [714] = {.lex_state = 13, .external_lex_state = 6}, - [715] = {.lex_state = 13, .external_lex_state = 6}, - [716] = {.lex_state = 13, .external_lex_state = 6}, - [717] = {.lex_state = 13, .external_lex_state = 6}, + [715] = {.lex_state = 1, .external_lex_state = 4}, + [716] = {.lex_state = 1, .external_lex_state = 4}, + [717] = {.lex_state = 1, .external_lex_state = 4}, [718] = {.lex_state = 1, .external_lex_state = 4}, [719] = {.lex_state = 1, .external_lex_state = 4}, [720] = {.lex_state = 1, .external_lex_state = 4}, - [721] = {.lex_state = 1, .external_lex_state = 4}, + [721] = {.lex_state = 13, .external_lex_state = 6}, [722] = {.lex_state = 1, .external_lex_state = 4}, [723] = {.lex_state = 1, .external_lex_state = 4}, [724] = {.lex_state = 1, .external_lex_state = 4}, @@ -20848,79 +20857,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [731] = {.lex_state = 1, .external_lex_state = 4}, [732] = {.lex_state = 1, .external_lex_state = 4}, [733] = {.lex_state = 1, .external_lex_state = 4}, - [734] = {.lex_state = 1, .external_lex_state = 4}, - [735] = {.lex_state = 1, .external_lex_state = 4}, - [736] = {.lex_state = 1, .external_lex_state = 4}, + [734] = {.lex_state = 13, .external_lex_state = 6}, + [735] = {.lex_state = 13, .external_lex_state = 6}, + [736] = {.lex_state = 13, .external_lex_state = 6}, [737] = {.lex_state = 1, .external_lex_state = 4}, [738] = {.lex_state = 13, .external_lex_state = 6}, [739] = {.lex_state = 1, .external_lex_state = 4}, [740] = {.lex_state = 1, .external_lex_state = 4}, - [741] = {.lex_state = 1, .external_lex_state = 4}, + [741] = {.lex_state = 13, .external_lex_state = 6}, [742] = {.lex_state = 1, .external_lex_state = 4}, [743] = {.lex_state = 1, .external_lex_state = 4}, [744] = {.lex_state = 1, .external_lex_state = 4}, - [745] = {.lex_state = 13, .external_lex_state = 6}, + [745] = {.lex_state = 1, .external_lex_state = 4}, [746] = {.lex_state = 13, .external_lex_state = 6}, - [747] = {.lex_state = 13, .external_lex_state = 6}, + [747] = {.lex_state = 1, .external_lex_state = 4}, [748] = {.lex_state = 13, .external_lex_state = 6}, - [749] = {.lex_state = 1, .external_lex_state = 4}, + [749] = {.lex_state = 13, .external_lex_state = 6}, [750] = {.lex_state = 13, .external_lex_state = 6}, [751] = {.lex_state = 13, .external_lex_state = 6}, - [752] = {.lex_state = 9, .external_lex_state = 2}, - [753] = {.lex_state = 9, .external_lex_state = 2}, - [754] = {.lex_state = 13, .external_lex_state = 7}, - [755] = {.lex_state = 9, .external_lex_state = 2}, - [756] = {.lex_state = 13, .external_lex_state = 7}, - [757] = {.lex_state = 9, .external_lex_state = 2}, + [752] = {.lex_state = 13, .external_lex_state = 7}, + [753] = {.lex_state = 13, .external_lex_state = 7}, + [754] = {.lex_state = 9, .external_lex_state = 2}, + [755] = {.lex_state = 13, .external_lex_state = 7}, + [756] = {.lex_state = 9, .external_lex_state = 2}, + [757] = {.lex_state = 1, .external_lex_state = 4}, [758] = {.lex_state = 9, .external_lex_state = 2}, - [759] = {.lex_state = 13, .external_lex_state = 7}, + [759] = {.lex_state = 9, .external_lex_state = 2}, [760] = {.lex_state = 13, .external_lex_state = 7}, - [761] = {.lex_state = 9, .external_lex_state = 2}, + [761] = {.lex_state = 1, .external_lex_state = 4}, [762] = {.lex_state = 1, .external_lex_state = 4}, - [763] = {.lex_state = 9, .external_lex_state = 2}, + [763] = {.lex_state = 1, .external_lex_state = 4}, [764] = {.lex_state = 9, .external_lex_state = 2}, - [765] = {.lex_state = 9, .external_lex_state = 2}, - [766] = {.lex_state = 9, .external_lex_state = 2}, - [767] = {.lex_state = 1, .external_lex_state = 4}, + [765] = {.lex_state = 1, .external_lex_state = 4}, + [766] = {.lex_state = 1, .external_lex_state = 4}, + [767] = {.lex_state = 9, .external_lex_state = 2}, [768] = {.lex_state = 13, .external_lex_state = 7}, - [769] = {.lex_state = 1, .external_lex_state = 4}, + [769] = {.lex_state = 13, .external_lex_state = 7}, [770] = {.lex_state = 9, .external_lex_state = 2}, - [771] = {.lex_state = 9, .external_lex_state = 2}, - [772] = {.lex_state = 13, .external_lex_state = 7}, + [771] = {.lex_state = 13, .external_lex_state = 7}, + [772] = {.lex_state = 9, .external_lex_state = 2}, [773] = {.lex_state = 9, .external_lex_state = 2}, - [774] = {.lex_state = 13, .external_lex_state = 7}, - [775] = {.lex_state = 13, .external_lex_state = 7}, + [774] = {.lex_state = 9, .external_lex_state = 2}, + [775] = {.lex_state = 9, .external_lex_state = 2}, [776] = {.lex_state = 9, .external_lex_state = 2}, [777] = {.lex_state = 9, .external_lex_state = 2}, [778] = {.lex_state = 9, .external_lex_state = 2}, - [779] = {.lex_state = 1, .external_lex_state = 4}, + [779] = {.lex_state = 9, .external_lex_state = 2}, [780] = {.lex_state = 9, .external_lex_state = 2}, [781] = {.lex_state = 9, .external_lex_state = 2}, - [782] = {.lex_state = 1, .external_lex_state = 4}, + [782] = {.lex_state = 9, .external_lex_state = 2}, [783] = {.lex_state = 9, .external_lex_state = 2}, - [784] = {.lex_state = 9, .external_lex_state = 2}, - [785] = {.lex_state = 9, .external_lex_state = 2}, - [786] = {.lex_state = 9, .external_lex_state = 2}, - [787] = {.lex_state = 1, .external_lex_state = 4}, + [784] = {.lex_state = 13, .external_lex_state = 7}, + [785] = {.lex_state = 13, .external_lex_state = 7}, + [786] = {.lex_state = 13, .external_lex_state = 7}, + [787] = {.lex_state = 9, .external_lex_state = 2}, [788] = {.lex_state = 9, .external_lex_state = 2}, - [789] = {.lex_state = 9, .external_lex_state = 2}, - [790] = {.lex_state = 13, .external_lex_state = 7}, - [791] = {.lex_state = 1, .external_lex_state = 4}, + [789] = {.lex_state = 13, .external_lex_state = 7}, + [790] = {.lex_state = 9, .external_lex_state = 2}, + [791] = {.lex_state = 13, .external_lex_state = 7}, [792] = {.lex_state = 1, .external_lex_state = 4}, - [793] = {.lex_state = 13, .external_lex_state = 7}, - [794] = {.lex_state = 13, .external_lex_state = 7}, + [793] = {.lex_state = 9, .external_lex_state = 2}, + [794] = {.lex_state = 1, .external_lex_state = 4}, [795] = {.lex_state = 9, .external_lex_state = 2}, [796] = {.lex_state = 9, .external_lex_state = 2}, - [797] = {.lex_state = 13, .external_lex_state = 7}, + [797] = {.lex_state = 9, .external_lex_state = 2}, [798] = {.lex_state = 9, .external_lex_state = 2}, [799] = {.lex_state = 13, .external_lex_state = 6}, [800] = {.lex_state = 13, .external_lex_state = 6}, [801] = {.lex_state = 13, .external_lex_state = 6}, - [802] = {.lex_state = 13, .external_lex_state = 6}, + [802] = {.lex_state = 1, .external_lex_state = 4}, [803] = {.lex_state = 13, .external_lex_state = 6}, [804] = {.lex_state = 13, .external_lex_state = 6}, [805] = {.lex_state = 13, .external_lex_state = 6}, - [806] = {.lex_state = 1, .external_lex_state = 4}, + [806] = {.lex_state = 13, .external_lex_state = 6}, [807] = {.lex_state = 13, .external_lex_state = 6}, [808] = {.lex_state = 13, .external_lex_state = 6}, [809] = {.lex_state = 13, .external_lex_state = 6}, @@ -20932,30 +20941,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [815] = {.lex_state = 1, .external_lex_state = 4}, [816] = {.lex_state = 1, .external_lex_state = 4}, [817] = {.lex_state = 1, .external_lex_state = 4}, - [818] = {.lex_state = 12, .external_lex_state = 2}, + [818] = {.lex_state = 1, .external_lex_state = 4}, [819] = {.lex_state = 1, .external_lex_state = 4}, [820] = {.lex_state = 1, .external_lex_state = 4}, [821] = {.lex_state = 1, .external_lex_state = 4}, [822] = {.lex_state = 1, .external_lex_state = 4}, [823] = {.lex_state = 1, .external_lex_state = 4}, - [824] = {.lex_state = 1, .external_lex_state = 4}, + [824] = {.lex_state = 12, .external_lex_state = 2}, [825] = {.lex_state = 1, .external_lex_state = 4}, [826] = {.lex_state = 1, .external_lex_state = 4}, [827] = {.lex_state = 1, .external_lex_state = 4}, - [828] = {.lex_state = 1, .external_lex_state = 3}, + [828] = {.lex_state = 1, .external_lex_state = 4}, [829] = {.lex_state = 1, .external_lex_state = 4}, - [830] = {.lex_state = 1, .external_lex_state = 3}, - [831] = {.lex_state = 1, .external_lex_state = 3}, + [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 = 1, .external_lex_state = 4}, [836] = {.lex_state = 1, .external_lex_state = 4}, - [837] = {.lex_state = 1, .external_lex_state = 4}, + [837] = {.lex_state = 1, .external_lex_state = 3}, [838] = {.lex_state = 1, .external_lex_state = 4}, [839] = {.lex_state = 1, .external_lex_state = 4}, [840] = {.lex_state = 1, .external_lex_state = 4}, - [841] = {.lex_state = 1, .external_lex_state = 4}, + [841] = {.lex_state = 1, .external_lex_state = 3}, [842] = {.lex_state = 1, .external_lex_state = 4}, [843] = {.lex_state = 1, .external_lex_state = 4}, [844] = {.lex_state = 1, .external_lex_state = 4}, @@ -20963,9 +20972,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [846] = {.lex_state = 1, .external_lex_state = 4}, [847] = {.lex_state = 1, .external_lex_state = 4}, [848] = {.lex_state = 1, .external_lex_state = 4}, - [849] = {.lex_state = 1, .external_lex_state = 3}, + [849] = {.lex_state = 1, .external_lex_state = 4}, [850] = {.lex_state = 1, .external_lex_state = 4}, - [851] = {.lex_state = 1, .external_lex_state = 4}, + [851] = {.lex_state = 1, .external_lex_state = 3}, [852] = {.lex_state = 1, .external_lex_state = 4}, [853] = {.lex_state = 1, .external_lex_state = 4}, [854] = {.lex_state = 1, .external_lex_state = 4}, @@ -20975,7 +20984,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [861] = {.lex_state = 1, .external_lex_state = 3}, [862] = {.lex_state = 1, .external_lex_state = 4}, [863] = {.lex_state = 13, .external_lex_state = 7}, [864] = {.lex_state = 1, .external_lex_state = 4}, @@ -20984,54 +20993,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [867] = {.lex_state = 1, .external_lex_state = 4}, [868] = {.lex_state = 1, .external_lex_state = 4}, [869] = {.lex_state = 1, .external_lex_state = 4}, - [870] = {.lex_state = 1, .external_lex_state = 4}, + [870] = {.lex_state = 13, .external_lex_state = 7}, [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}, [876] = {.lex_state = 1, .external_lex_state = 4}, - [877] = {.lex_state = 1, .external_lex_state = 4}, - [878] = {.lex_state = 1, .external_lex_state = 4}, + [877] = {.lex_state = 13, .external_lex_state = 7}, + [878] = {.lex_state = 13, .external_lex_state = 7}, [879] = {.lex_state = 1, .external_lex_state = 4}, [880] = {.lex_state = 1, .external_lex_state = 4}, [881] = {.lex_state = 1, .external_lex_state = 4}, [882] = {.lex_state = 1, .external_lex_state = 4}, [883] = {.lex_state = 1, .external_lex_state = 4}, [884] = {.lex_state = 1, .external_lex_state = 4}, - [885] = {.lex_state = 1, .external_lex_state = 4}, + [885] = {.lex_state = 13, .external_lex_state = 7}, [886] = {.lex_state = 1, .external_lex_state = 4}, [887] = {.lex_state = 1, .external_lex_state = 4}, - [888] = {.lex_state = 13, .external_lex_state = 7}, + [888] = {.lex_state = 1, .external_lex_state = 4}, [889] = {.lex_state = 1, .external_lex_state = 4}, [890] = {.lex_state = 13, .external_lex_state = 7}, [891] = {.lex_state = 1, .external_lex_state = 4}, [892] = {.lex_state = 1, .external_lex_state = 4}, [893] = {.lex_state = 1, .external_lex_state = 4}, [894] = {.lex_state = 1, .external_lex_state = 4}, - [895] = {.lex_state = 13, .external_lex_state = 7}, + [895] = {.lex_state = 1, .external_lex_state = 4}, [896] = {.lex_state = 1, .external_lex_state = 4}, [897] = {.lex_state = 1, .external_lex_state = 4}, [898] = {.lex_state = 1, .external_lex_state = 4}, [899] = {.lex_state = 1, .external_lex_state = 4}, [900] = {.lex_state = 1, .external_lex_state = 4}, - [901] = {.lex_state = 13, .external_lex_state = 7}, + [901] = {.lex_state = 1, .external_lex_state = 4}, [902] = {.lex_state = 1, .external_lex_state = 4}, [903] = {.lex_state = 1, .external_lex_state = 4}, [904] = {.lex_state = 1, .external_lex_state = 4}, [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}, + [906] = {.lex_state = 13, .external_lex_state = 7}, + [907] = {.lex_state = 13, .external_lex_state = 7}, + [908] = {.lex_state = 13, .external_lex_state = 7}, [909] = {.lex_state = 13, .external_lex_state = 7}, [910] = {.lex_state = 1, .external_lex_state = 4}, - [911] = {.lex_state = 1, .external_lex_state = 4}, + [911] = {.lex_state = 13, .external_lex_state = 7}, [912] = {.lex_state = 13, .external_lex_state = 7}, - [913] = {.lex_state = 13, .external_lex_state = 7}, - [914] = {.lex_state = 13, .external_lex_state = 7}, - [915] = {.lex_state = 13, .external_lex_state = 7}, - [916] = {.lex_state = 13, .external_lex_state = 7}, - [917] = {.lex_state = 13, .external_lex_state = 7}, + [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}, + [917] = {.lex_state = 1, .external_lex_state = 4}, [918] = {.lex_state = 1, .external_lex_state = 4}, [919] = {.lex_state = 1, .external_lex_state = 4}, [920] = {.lex_state = 1, .external_lex_state = 4}, @@ -21040,8 +21049,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [923] = {.lex_state = 1, .external_lex_state = 4}, [924] = {.lex_state = 1, .external_lex_state = 4}, [925] = {.lex_state = 1, .external_lex_state = 4}, - [926] = {.lex_state = 1, .external_lex_state = 4}, - [927] = {.lex_state = 2, .external_lex_state = 4}, + [926] = {.lex_state = 2, .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}, @@ -21051,21 +21060,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [934] = {.lex_state = 1, .external_lex_state = 4}, [935] = {.lex_state = 1, .external_lex_state = 4}, [936] = {.lex_state = 1, .external_lex_state = 4}, - [937] = {.lex_state = 2, .external_lex_state = 4}, + [937] = {.lex_state = 1, .external_lex_state = 4}, [938] = {.lex_state = 1, .external_lex_state = 4}, [939] = {.lex_state = 1, .external_lex_state = 4}, [940] = {.lex_state = 1, .external_lex_state = 4}, - [941] = {.lex_state = 1, .external_lex_state = 4}, - [942] = {.lex_state = 1, .external_lex_state = 4}, + [941] = {.lex_state = 13, .external_lex_state = 6}, + [942] = {.lex_state = 13, .external_lex_state = 6}, [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 = 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}, + [947] = {.lex_state = 13, .external_lex_state = 6}, + [948] = {.lex_state = 13, .external_lex_state = 6}, + [949] = {.lex_state = 13, .external_lex_state = 6}, [950] = {.lex_state = 1, .external_lex_state = 4}, - [951] = {.lex_state = 1, .external_lex_state = 4}, + [951] = {.lex_state = 13, .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}, @@ -21081,32 +21090,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 3, .external_lex_state = 4}, + [967] = {.lex_state = 1, .external_lex_state = 4}, [968] = {.lex_state = 1, .external_lex_state = 4}, - [969] = {.lex_state = 2, .external_lex_state = 4}, - [970] = {.lex_state = 2, .external_lex_state = 4}, - [971] = {.lex_state = 2, .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 = 1, .external_lex_state = 4}, - [973] = {.lex_state = 1, .external_lex_state = 4}, - [974] = {.lex_state = 2, .external_lex_state = 4}, - [975] = {.lex_state = 2, .external_lex_state = 4}, - [976] = {.lex_state = 2, .external_lex_state = 4}, - [977] = {.lex_state = 13, .external_lex_state = 6}, + [973] = {.lex_state = 2, .external_lex_state = 4}, + [974] = {.lex_state = 1, .external_lex_state = 4}, + [975] = {.lex_state = 1, .external_lex_state = 4}, + [976] = {.lex_state = 1, .external_lex_state = 4}, + [977] = {.lex_state = 1, .external_lex_state = 4}, [978] = {.lex_state = 1, .external_lex_state = 4}, [979] = {.lex_state = 1, .external_lex_state = 4}, - [980] = {.lex_state = 13, .external_lex_state = 6}, + [980] = {.lex_state = 1, .external_lex_state = 4}, [981] = {.lex_state = 1, .external_lex_state = 4}, - [982] = {.lex_state = 2, .external_lex_state = 4}, + [982] = {.lex_state = 1, .external_lex_state = 4}, [983] = {.lex_state = 1, .external_lex_state = 4}, - [984] = {.lex_state = 13, .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}, + [986] = {.lex_state = 2, .external_lex_state = 4}, [987] = {.lex_state = 1, .external_lex_state = 4}, [988] = {.lex_state = 1, .external_lex_state = 4}, - [989] = {.lex_state = 13, .external_lex_state = 6}, - [990] = {.lex_state = 13, .external_lex_state = 6}, - [991] = {.lex_state = 1, .external_lex_state = 4}, - [992] = {.lex_state = 1, .external_lex_state = 4}, + [989] = {.lex_state = 2, .external_lex_state = 4}, + [990] = {.lex_state = 1, .external_lex_state = 4}, + [991] = {.lex_state = 2, .external_lex_state = 4}, + [992] = {.lex_state = 2, .external_lex_state = 4}, [993] = {.lex_state = 13, .external_lex_state = 6}, [994] = {.lex_state = 13, .external_lex_state = 6}, [995] = {.lex_state = 13, .external_lex_state = 6}, @@ -21114,44 +21123,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [997] = {.lex_state = 2, .external_lex_state = 4}, [998] = {.lex_state = 2, .external_lex_state = 4}, [999] = {.lex_state = 13, .external_lex_state = 6}, - [1000] = {.lex_state = 13, .external_lex_state = 6}, - [1001] = {.lex_state = 13, .external_lex_state = 6}, + [1000] = {.lex_state = 2, .external_lex_state = 4}, + [1001] = {.lex_state = 2, .external_lex_state = 4}, [1002] = {.lex_state = 2, .external_lex_state = 4}, - [1003] = {.lex_state = 2, .external_lex_state = 4}, + [1003] = {.lex_state = 3, .external_lex_state = 4}, [1004] = {.lex_state = 2, .external_lex_state = 4}, [1005] = {.lex_state = 2, .external_lex_state = 4}, - [1006] = {.lex_state = 2, .external_lex_state = 4}, - [1007] = {.lex_state = 1, .external_lex_state = 4}, - [1008] = {.lex_state = 1, .external_lex_state = 4}, + [1006] = {.lex_state = 13, .external_lex_state = 6}, + [1007] = {.lex_state = 2, .external_lex_state = 4}, + [1008] = {.lex_state = 2, .external_lex_state = 4}, [1009] = {.lex_state = 1, .external_lex_state = 4}, [1010] = {.lex_state = 2, .external_lex_state = 4}, [1011] = {.lex_state = 2, .external_lex_state = 4}, - [1012] = {.lex_state = 1, .external_lex_state = 4}, + [1012] = {.lex_state = 2, .external_lex_state = 4}, [1013] = {.lex_state = 1, .external_lex_state = 4}, [1014] = {.lex_state = 1, .external_lex_state = 4}, [1015] = {.lex_state = 1, .external_lex_state = 4}, [1016] = {.lex_state = 1, .external_lex_state = 4}, - [1017] = {.lex_state = 13, .external_lex_state = 7}, - [1018] = {.lex_state = 13, .external_lex_state = 7}, - [1019] = {.lex_state = 13, .external_lex_state = 7}, + [1017] = {.lex_state = 1, .external_lex_state = 4}, + [1018] = {.lex_state = 1, .external_lex_state = 4}, + [1019] = {.lex_state = 1, .external_lex_state = 4}, [1020] = {.lex_state = 1, .external_lex_state = 4}, [1021] = {.lex_state = 1, .external_lex_state = 4}, - [1022] = {.lex_state = 13, .external_lex_state = 7}, + [1022] = {.lex_state = 1, .external_lex_state = 4}, [1023] = {.lex_state = 1, .external_lex_state = 4}, - [1024] = {.lex_state = 13, .external_lex_state = 7}, - [1025] = {.lex_state = 13, .external_lex_state = 7}, + [1024] = {.lex_state = 1, .external_lex_state = 4}, + [1025] = {.lex_state = 1, .external_lex_state = 4}, [1026] = {.lex_state = 13, .external_lex_state = 7}, - [1027] = {.lex_state = 13, .external_lex_state = 7}, - [1028] = {.lex_state = 1, .external_lex_state = 4}, - [1029] = {.lex_state = 13, .external_lex_state = 7}, + [1027] = {.lex_state = 1, .external_lex_state = 4}, + [1028] = {.lex_state = 13, .external_lex_state = 7}, + [1029] = {.lex_state = 1, .external_lex_state = 4}, [1030] = {.lex_state = 1, .external_lex_state = 4}, [1031] = {.lex_state = 13, .external_lex_state = 7}, - [1032] = {.lex_state = 1, .external_lex_state = 4}, + [1032] = {.lex_state = 13, .external_lex_state = 7}, [1033] = {.lex_state = 1, .external_lex_state = 4}, [1034] = {.lex_state = 1, .external_lex_state = 4}, - [1035] = {.lex_state = 1, .external_lex_state = 4}, + [1035] = {.lex_state = 13, .external_lex_state = 7}, [1036] = {.lex_state = 1, .external_lex_state = 4}, - [1037] = {.lex_state = 13, .external_lex_state = 7}, + [1037] = {.lex_state = 1, .external_lex_state = 4}, [1038] = {.lex_state = 1, .external_lex_state = 4}, [1039] = {.lex_state = 1, .external_lex_state = 4}, [1040] = {.lex_state = 1, .external_lex_state = 4}, @@ -21159,11 +21168,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1042] = {.lex_state = 1, .external_lex_state = 4}, [1043] = {.lex_state = 1, .external_lex_state = 4}, [1044] = {.lex_state = 1, .external_lex_state = 4}, - [1045] = {.lex_state = 1, .external_lex_state = 4}, + [1045] = {.lex_state = 13, .external_lex_state = 7}, [1046] = {.lex_state = 1, .external_lex_state = 4}, [1047] = {.lex_state = 1, .external_lex_state = 4}, [1048] = {.lex_state = 1, .external_lex_state = 4}, - [1049] = {.lex_state = 13, .external_lex_state = 7}, + [1049] = {.lex_state = 1, .external_lex_state = 4}, [1050] = {.lex_state = 1, .external_lex_state = 4}, [1051] = {.lex_state = 1, .external_lex_state = 4}, [1052] = {.lex_state = 1, .external_lex_state = 4}, @@ -21255,12 +21264,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1138] = {.lex_state = 1, .external_lex_state = 4}, [1139] = {.lex_state = 1, .external_lex_state = 4}, [1140] = {.lex_state = 1, .external_lex_state = 4}, - [1141] = {.lex_state = 1, .external_lex_state = 4}, - [1142] = {.lex_state = 1, .external_lex_state = 4}, - [1143] = {.lex_state = 1, .external_lex_state = 4}, - [1144] = {.lex_state = 1, .external_lex_state = 4}, - [1145] = {.lex_state = 1, .external_lex_state = 4}, - [1146] = {.lex_state = 1, .external_lex_state = 4}, + [1141] = {.lex_state = 13, .external_lex_state = 7}, + [1142] = {.lex_state = 13, .external_lex_state = 7}, + [1143] = {.lex_state = 13, .external_lex_state = 7}, + [1144] = {.lex_state = 13, .external_lex_state = 7}, + [1145] = {.lex_state = 13, .external_lex_state = 7}, + [1146] = {.lex_state = 13, .external_lex_state = 7}, [1147] = {.lex_state = 1, .external_lex_state = 4}, [1148] = {.lex_state = 1, .external_lex_state = 4}, [1149] = {.lex_state = 1, .external_lex_state = 4}, @@ -21301,158 +21310,158 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1184] = {.lex_state = 1, .external_lex_state = 4}, [1185] = {.lex_state = 1, .external_lex_state = 4}, [1186] = {.lex_state = 1, .external_lex_state = 4}, - [1187] = {.lex_state = 13, .external_lex_state = 7}, + [1187] = {.lex_state = 2, .external_lex_state = 4}, [1188] = {.lex_state = 2, .external_lex_state = 4}, - [1189] = {.lex_state = 13, .external_lex_state = 7}, + [1189] = {.lex_state = 2, .external_lex_state = 4}, [1190] = {.lex_state = 13, .external_lex_state = 6}, [1191] = {.lex_state = 13, .external_lex_state = 6}, - [1192] = {.lex_state = 2, .external_lex_state = 4}, + [1192] = {.lex_state = 13, .external_lex_state = 6}, [1193] = {.lex_state = 13, .external_lex_state = 6}, - [1194] = {.lex_state = 13, .external_lex_state = 7}, + [1194] = {.lex_state = 13, .external_lex_state = 6}, [1195] = {.lex_state = 13, .external_lex_state = 6}, [1196] = {.lex_state = 13, .external_lex_state = 6}, - [1197] = {.lex_state = 2, .external_lex_state = 4}, - [1198] = {.lex_state = 13, .external_lex_state = 6}, + [1197] = {.lex_state = 13, .external_lex_state = 6}, + [1198] = {.lex_state = 1, .external_lex_state = 4}, [1199] = {.lex_state = 13, .external_lex_state = 6}, [1200] = {.lex_state = 13, .external_lex_state = 6}, [1201] = {.lex_state = 13, .external_lex_state = 6}, [1202] = {.lex_state = 13, .external_lex_state = 6}, - [1203] = {.lex_state = 13, .external_lex_state = 7}, - [1204] = {.lex_state = 13, .external_lex_state = 6}, - [1205] = {.lex_state = 13, .external_lex_state = 6}, - [1206] = {.lex_state = 13, .external_lex_state = 6}, + [1203] = {.lex_state = 13, .external_lex_state = 6}, + [1204] = {.lex_state = 1, .external_lex_state = 4}, + [1205] = {.lex_state = 1, .external_lex_state = 4}, + [1206] = {.lex_state = 13, .external_lex_state = 7}, [1207] = {.lex_state = 13, .external_lex_state = 6}, [1208] = {.lex_state = 13, .external_lex_state = 6}, - [1209] = {.lex_state = 13, .external_lex_state = 6}, - [1210] = {.lex_state = 13, .external_lex_state = 6}, + [1209] = {.lex_state = 1, .external_lex_state = 4}, + [1210] = {.lex_state = 1, .external_lex_state = 3}, [1211] = {.lex_state = 1, .external_lex_state = 3}, - [1212] = {.lex_state = 1, .external_lex_state = 3}, - [1213] = {.lex_state = 2, .external_lex_state = 4}, - [1214] = {.lex_state = 13, .external_lex_state = 6}, + [1212] = {.lex_state = 13, .external_lex_state = 7}, + [1213] = {.lex_state = 13, .external_lex_state = 6}, + [1214] = {.lex_state = 2, .external_lex_state = 4}, [1215] = {.lex_state = 2, .external_lex_state = 4}, - [1216] = {.lex_state = 2, .external_lex_state = 4}, - [1217] = {.lex_state = 13, .external_lex_state = 6}, + [1216] = {.lex_state = 13, .external_lex_state = 7}, + [1217] = {.lex_state = 2, .external_lex_state = 4}, [1218] = {.lex_state = 2, .external_lex_state = 4}, - [1219] = {.lex_state = 2, .external_lex_state = 4}, + [1219] = {.lex_state = 13, .external_lex_state = 6}, [1220] = {.lex_state = 2, .external_lex_state = 4}, [1221] = {.lex_state = 2, .external_lex_state = 4}, [1222] = {.lex_state = 2, .external_lex_state = 4}, [1223] = {.lex_state = 2, .external_lex_state = 4}, [1224] = {.lex_state = 2, .external_lex_state = 4}, [1225] = {.lex_state = 13, .external_lex_state = 7}, - [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 = 13, .external_lex_state = 7}, - [1230] = {.lex_state = 2, .external_lex_state = 4}, + [1226] = {.lex_state = 13, .external_lex_state = 7}, + [1227] = {.lex_state = 2, .external_lex_state = 4}, + [1228] = {.lex_state = 2, .external_lex_state = 4}, + [1229] = {.lex_state = 2, .external_lex_state = 4}, + [1230] = {.lex_state = 1, .external_lex_state = 4}, [1231] = {.lex_state = 2, .external_lex_state = 4}, - [1232] = {.lex_state = 1, .external_lex_state = 4}, + [1232] = {.lex_state = 13, .external_lex_state = 7}, [1233] = {.lex_state = 2, .external_lex_state = 4}, - [1234] = {.lex_state = 2, .external_lex_state = 4}, - [1235] = {.lex_state = 1, .external_lex_state = 4}, - [1236] = {.lex_state = 9, .external_lex_state = 2}, - [1237] = {.lex_state = 1, .external_lex_state = 4}, + [1234] = {.lex_state = 13, .external_lex_state = 6}, + [1235] = {.lex_state = 13, .external_lex_state = 6}, + [1236] = {.lex_state = 1, .external_lex_state = 4}, + [1237] = {.lex_state = 9, .external_lex_state = 2}, [1238] = {.lex_state = 1, .external_lex_state = 4}, - [1239] = {.lex_state = 1, .external_lex_state = 4}, + [1239] = {.lex_state = 9, .external_lex_state = 2}, [1240] = {.lex_state = 1, .external_lex_state = 4}, - [1241] = {.lex_state = 1, .external_lex_state = 4}, - [1242] = {.lex_state = 1, .external_lex_state = 4}, + [1241] = {.lex_state = 9, .external_lex_state = 2}, + [1242] = {.lex_state = 13, .external_lex_state = 6}, [1243] = {.lex_state = 9, .external_lex_state = 2}, - [1244] = {.lex_state = 1, .external_lex_state = 4}, - [1245] = {.lex_state = 1, .external_lex_state = 4}, + [1244] = {.lex_state = 9, .external_lex_state = 2}, + [1245] = {.lex_state = 9, .external_lex_state = 2}, [1246] = {.lex_state = 9, .external_lex_state = 2}, [1247] = {.lex_state = 9, .external_lex_state = 2}, - [1248] = {.lex_state = 1, .external_lex_state = 4}, - [1249] = {.lex_state = 1, .external_lex_state = 4}, + [1248] = {.lex_state = 9, .external_lex_state = 2}, + [1249] = {.lex_state = 9, .external_lex_state = 2}, [1250] = {.lex_state = 1, .external_lex_state = 4}, [1251] = {.lex_state = 1, .external_lex_state = 4}, [1252] = {.lex_state = 1, .external_lex_state = 4}, - [1253] = {.lex_state = 13, .external_lex_state = 6}, + [1253] = {.lex_state = 1, .external_lex_state = 4}, [1254] = {.lex_state = 9, .external_lex_state = 2}, - [1255] = {.lex_state = 1, .external_lex_state = 4}, + [1255] = {.lex_state = 13, .external_lex_state = 6}, [1256] = {.lex_state = 1, .external_lex_state = 4}, - [1257] = {.lex_state = 9, .external_lex_state = 2}, - [1258] = {.lex_state = 1, .external_lex_state = 4}, + [1257] = {.lex_state = 1, .external_lex_state = 4}, + [1258] = {.lex_state = 9, .external_lex_state = 2}, [1259] = {.lex_state = 9, .external_lex_state = 2}, [1260] = {.lex_state = 1, .external_lex_state = 4}, [1261] = {.lex_state = 1, .external_lex_state = 4}, - [1262] = {.lex_state = 13, .external_lex_state = 6}, + [1262] = {.lex_state = 1, .external_lex_state = 4}, [1263] = {.lex_state = 13, .external_lex_state = 6}, - [1264] = {.lex_state = 9, .external_lex_state = 2}, - [1265] = {.lex_state = 9, .external_lex_state = 2}, - [1266] = {.lex_state = 9, .external_lex_state = 2}, - [1267] = {.lex_state = 1, .external_lex_state = 4}, - [1268] = {.lex_state = 9, .external_lex_state = 2}, - [1269] = {.lex_state = 9, .external_lex_state = 2}, - [1270] = {.lex_state = 13, .external_lex_state = 6}, - [1271] = {.lex_state = 1, .external_lex_state = 4}, - [1272] = {.lex_state = 1, .external_lex_state = 4}, - [1273] = {.lex_state = 9, .external_lex_state = 2}, - [1274] = {.lex_state = 1, .external_lex_state = 4}, + [1264] = {.lex_state = 1, .external_lex_state = 4}, + [1265] = {.lex_state = 1, .external_lex_state = 4}, + [1266] = {.lex_state = 1, .external_lex_state = 4}, + [1267] = {.lex_state = 9, .external_lex_state = 2}, + [1268] = {.lex_state = 1, .external_lex_state = 4}, + [1269] = {.lex_state = 1, .external_lex_state = 4}, + [1270] = {.lex_state = 1, .external_lex_state = 4}, + [1271] = {.lex_state = 13, .external_lex_state = 6}, + [1272] = {.lex_state = 9, .external_lex_state = 2}, + [1273] = {.lex_state = 1, .external_lex_state = 4}, + [1274] = {.lex_state = 13, .external_lex_state = 6}, [1275] = {.lex_state = 9, .external_lex_state = 2}, - [1276] = {.lex_state = 1, .external_lex_state = 4}, + [1276] = {.lex_state = 9, .external_lex_state = 2}, [1277] = {.lex_state = 9, .external_lex_state = 2}, - [1278] = {.lex_state = 1, .external_lex_state = 4}, + [1278] = {.lex_state = 9, .external_lex_state = 2}, [1279] = {.lex_state = 1, .external_lex_state = 4}, - [1280] = {.lex_state = 9, .external_lex_state = 2}, - [1281] = {.lex_state = 9, .external_lex_state = 2}, + [1280] = {.lex_state = 1, .external_lex_state = 4}, + [1281] = {.lex_state = 1, .external_lex_state = 4}, [1282] = {.lex_state = 9, .external_lex_state = 2}, [1283] = {.lex_state = 9, .external_lex_state = 2}, [1284] = {.lex_state = 9, .external_lex_state = 2}, [1285] = {.lex_state = 1, .external_lex_state = 4}, [1286] = {.lex_state = 1, .external_lex_state = 4}, - [1287] = {.lex_state = 9, .external_lex_state = 2}, + [1287] = {.lex_state = 1, .external_lex_state = 4}, [1288] = {.lex_state = 13, .external_lex_state = 6}, - [1289] = {.lex_state = 9, .external_lex_state = 2}, + [1289] = {.lex_state = 1, .external_lex_state = 4}, [1290] = {.lex_state = 9, .external_lex_state = 2}, - [1291] = {.lex_state = 13, .external_lex_state = 6}, - [1292] = {.lex_state = 9, .external_lex_state = 2}, - [1293] = {.lex_state = 9, .external_lex_state = 2}, - [1294] = {.lex_state = 9, .external_lex_state = 2}, - [1295] = {.lex_state = 9, .external_lex_state = 2}, + [1291] = {.lex_state = 9, .external_lex_state = 2}, + [1292] = {.lex_state = 1, .external_lex_state = 4}, + [1293] = {.lex_state = 13, .external_lex_state = 6}, + [1294] = {.lex_state = 1, .external_lex_state = 4}, + [1295] = {.lex_state = 1, .external_lex_state = 4}, [1296] = {.lex_state = 9, .external_lex_state = 2}, [1297] = {.lex_state = 1, .external_lex_state = 4}, [1298] = {.lex_state = 1, .external_lex_state = 4}, - [1299] = {.lex_state = 1, .external_lex_state = 3}, - [1300] = {.lex_state = 1, .external_lex_state = 3}, - [1301] = {.lex_state = 1, .external_lex_state = 4}, - [1302] = {.lex_state = 1, .external_lex_state = 4}, + [1299] = {.lex_state = 1, .external_lex_state = 4}, + [1300] = {.lex_state = 1, .external_lex_state = 4}, + [1301] = {.lex_state = 9, .external_lex_state = 2}, + [1302] = {.lex_state = 9, .external_lex_state = 2}, [1303] = {.lex_state = 1, .external_lex_state = 4}, - [1304] = {.lex_state = 1, .external_lex_state = 4}, + [1304] = {.lex_state = 13, .external_lex_state = 6}, [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}, + [1308] = {.lex_state = 1, .external_lex_state = 3}, [1309] = {.lex_state = 1, .external_lex_state = 4}, [1310] = {.lex_state = 9, .external_lex_state = 2}, - [1311] = {.lex_state = 9, .external_lex_state = 2}, - [1312] = {.lex_state = 13, .external_lex_state = 6}, - [1313] = {.lex_state = 13, .external_lex_state = 6}, - [1314] = {.lex_state = 9, .external_lex_state = 2}, - [1315] = {.lex_state = 13, .external_lex_state = 6}, - [1316] = {.lex_state = 13, .external_lex_state = 6}, - [1317] = {.lex_state = 9, .external_lex_state = 2}, - [1318] = {.lex_state = 13, .external_lex_state = 6}, - [1319] = {.lex_state = 1, .external_lex_state = 4}, - [1320] = {.lex_state = 13, .external_lex_state = 6}, - [1321] = {.lex_state = 13, .external_lex_state = 6}, - [1322] = {.lex_state = 1, .external_lex_state = 4}, - [1323] = {.lex_state = 1, .external_lex_state = 4}, - [1324] = {.lex_state = 1, .external_lex_state = 4}, - [1325] = {.lex_state = 1, .external_lex_state = 4}, - [1326] = {.lex_state = 1, .external_lex_state = 4}, + [1311] = {.lex_state = 13, .external_lex_state = 6}, + [1312] = {.lex_state = 9, .external_lex_state = 2}, + [1313] = {.lex_state = 1, .external_lex_state = 4}, + [1314] = {.lex_state = 13, .external_lex_state = 6}, + [1315] = {.lex_state = 9, .external_lex_state = 2}, + [1316] = {.lex_state = 1, .external_lex_state = 4}, + [1317] = {.lex_state = 13, .external_lex_state = 6}, + [1318] = {.lex_state = 1, .external_lex_state = 4}, + [1319] = {.lex_state = 13, .external_lex_state = 6}, + [1320] = {.lex_state = 9, .external_lex_state = 2}, + [1321] = {.lex_state = 9, .external_lex_state = 2}, + [1322] = {.lex_state = 9, .external_lex_state = 2}, + [1323] = {.lex_state = 9, .external_lex_state = 2}, + [1324] = {.lex_state = 9, .external_lex_state = 2}, + [1325] = {.lex_state = 9, .external_lex_state = 2}, + [1326] = {.lex_state = 9, .external_lex_state = 2}, [1327] = {.lex_state = 1, .external_lex_state = 4}, [1328] = {.lex_state = 9, .external_lex_state = 2}, [1329] = {.lex_state = 9, .external_lex_state = 2}, - [1330] = {.lex_state = 9, .external_lex_state = 2}, + [1330] = {.lex_state = 1, .external_lex_state = 4}, [1331] = {.lex_state = 9, .external_lex_state = 2}, - [1332] = {.lex_state = 9, .external_lex_state = 2}, + [1332] = {.lex_state = 1, .external_lex_state = 4}, [1333] = {.lex_state = 9, .external_lex_state = 2}, [1334] = {.lex_state = 9, .external_lex_state = 2}, - [1335] = {.lex_state = 13, .external_lex_state = 6}, - [1336] = {.lex_state = 9, .external_lex_state = 2}, - [1337] = {.lex_state = 9, .external_lex_state = 2}, - [1338] = {.lex_state = 9, .external_lex_state = 2}, + [1335] = {.lex_state = 1, .external_lex_state = 3}, + [1336] = {.lex_state = 1, .external_lex_state = 4}, + [1337] = {.lex_state = 1, .external_lex_state = 4}, + [1338] = {.lex_state = 13, .external_lex_state = 6}, [1339] = {.lex_state = 1, .external_lex_state = 4}, [1340] = {.lex_state = 9, .external_lex_state = 2}, [1341] = {.lex_state = 9, .external_lex_state = 2}, @@ -21461,7 +21470,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1344] = {.lex_state = 9, .external_lex_state = 2}, [1345] = {.lex_state = 9, .external_lex_state = 2}, [1346] = {.lex_state = 9, .external_lex_state = 2}, - [1347] = {.lex_state = 1, .external_lex_state = 4}, + [1347] = {.lex_state = 9, .external_lex_state = 2}, [1348] = {.lex_state = 9, .external_lex_state = 2}, [1349] = {.lex_state = 9, .external_lex_state = 2}, [1350] = {.lex_state = 9, .external_lex_state = 2}, @@ -21469,7 +21478,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1352] = {.lex_state = 9, .external_lex_state = 2}, [1353] = {.lex_state = 9, .external_lex_state = 2}, [1354] = {.lex_state = 9, .external_lex_state = 2}, - [1355] = {.lex_state = 9, .external_lex_state = 2}, + [1355] = {.lex_state = 13, .external_lex_state = 6}, [1356] = {.lex_state = 9, .external_lex_state = 2}, [1357] = {.lex_state = 9, .external_lex_state = 2}, [1358] = {.lex_state = 9, .external_lex_state = 2}, @@ -21498,51 +21507,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1381] = {.lex_state = 9, .external_lex_state = 2}, [1382] = {.lex_state = 9, .external_lex_state = 2}, [1383] = {.lex_state = 13, .external_lex_state = 7}, - [1384] = {.lex_state = 1, .external_lex_state = 4}, - [1385] = {.lex_state = 13, .external_lex_state = 7}, - [1386] = {.lex_state = 9, .external_lex_state = 2}, - [1387] = {.lex_state = 1, .external_lex_state = 4}, - [1388] = {.lex_state = 13, .external_lex_state = 7}, - [1389] = {.lex_state = 13, .external_lex_state = 7}, - [1390] = {.lex_state = 13, .external_lex_state = 7}, - [1391] = {.lex_state = 13, .external_lex_state = 7}, - [1392] = {.lex_state = 13, .external_lex_state = 7}, - [1393] = {.lex_state = 13, .external_lex_state = 7}, - [1394] = {.lex_state = 13, .external_lex_state = 7}, - [1395] = {.lex_state = 13, .external_lex_state = 7}, - [1396] = {.lex_state = 13, .external_lex_state = 7}, - [1397] = {.lex_state = 13, .external_lex_state = 7}, + [1384] = {.lex_state = 9, .external_lex_state = 2}, + [1385] = {.lex_state = 9, .external_lex_state = 2}, + [1386] = {.lex_state = 1, .external_lex_state = 4}, + [1387] = {.lex_state = 13, .external_lex_state = 6}, + [1388] = {.lex_state = 13, .external_lex_state = 6}, + [1389] = {.lex_state = 1, .external_lex_state = 4}, + [1390] = {.lex_state = 1, .external_lex_state = 4}, + [1391] = {.lex_state = 1, .external_lex_state = 4}, + [1392] = {.lex_state = 1, .external_lex_state = 4}, + [1393] = {.lex_state = 1, .external_lex_state = 4}, + [1394] = {.lex_state = 1, .external_lex_state = 4}, + [1395] = {.lex_state = 13, .external_lex_state = 6}, + [1396] = {.lex_state = 13, .external_lex_state = 6}, + [1397] = {.lex_state = 9, .external_lex_state = 2}, [1398] = {.lex_state = 13, .external_lex_state = 7}, - [1399] = {.lex_state = 13, .external_lex_state = 6}, - [1400] = {.lex_state = 1, .external_lex_state = 4}, - [1401] = {.lex_state = 13, .external_lex_state = 6}, - [1402] = {.lex_state = 13, .external_lex_state = 6}, + [1399] = {.lex_state = 13, .external_lex_state = 7}, + [1400] = {.lex_state = 13, .external_lex_state = 7}, + [1401] = {.lex_state = 13, .external_lex_state = 7}, + [1402] = {.lex_state = 13, .external_lex_state = 7}, [1403] = {.lex_state = 1, .external_lex_state = 4}, - [1404] = {.lex_state = 9, .external_lex_state = 2}, + [1404] = {.lex_state = 13, .external_lex_state = 7}, [1405] = {.lex_state = 13, .external_lex_state = 7}, - [1406] = {.lex_state = 13, .external_lex_state = 6}, - [1407] = {.lex_state = 1, .external_lex_state = 4}, - [1408] = {.lex_state = 1, .external_lex_state = 4}, - [1409] = {.lex_state = 1, .external_lex_state = 4}, - [1410] = {.lex_state = 1, .external_lex_state = 4}, + [1406] = {.lex_state = 13, .external_lex_state = 7}, + [1407] = {.lex_state = 13, .external_lex_state = 7}, + [1408] = {.lex_state = 13, .external_lex_state = 6}, + [1409] = {.lex_state = 13, .external_lex_state = 7}, + [1410] = {.lex_state = 13, .external_lex_state = 7}, [1411] = {.lex_state = 13, .external_lex_state = 7}, - [1412] = {.lex_state = 13, .external_lex_state = 7}, - [1413] = {.lex_state = 9, .external_lex_state = 2}, - [1414] = {.lex_state = 13, .external_lex_state = 6}, - [1415] = {.lex_state = 13, .external_lex_state = 7}, - [1416] = {.lex_state = 13, .external_lex_state = 7}, + [1412] = {.lex_state = 13, .external_lex_state = 6}, + [1413] = {.lex_state = 13, .external_lex_state = 7}, + [1414] = {.lex_state = 1, .external_lex_state = 4}, + [1415] = {.lex_state = 13, .external_lex_state = 6}, + [1416] = {.lex_state = 13, .external_lex_state = 6}, [1417] = {.lex_state = 1, .external_lex_state = 4}, - [1418] = {.lex_state = 13, .external_lex_state = 6}, - [1419] = {.lex_state = 1, .external_lex_state = 4}, - [1420] = {.lex_state = 13, .external_lex_state = 6}, - [1421] = {.lex_state = 13, .external_lex_state = 7}, - [1422] = {.lex_state = 1, .external_lex_state = 4}, - [1423] = {.lex_state = 13, .external_lex_state = 6}, + [1418] = {.lex_state = 1, .external_lex_state = 4}, + [1419] = {.lex_state = 13, .external_lex_state = 7}, + [1420] = {.lex_state = 13, .external_lex_state = 7}, + [1421] = {.lex_state = 1, .external_lex_state = 4}, + [1422] = {.lex_state = 13, .external_lex_state = 7}, + [1423] = {.lex_state = 1, .external_lex_state = 4}, [1424] = {.lex_state = 1, .external_lex_state = 4}, - [1425] = {.lex_state = 1, .external_lex_state = 4}, - [1426] = {.lex_state = 1, .external_lex_state = 4}, + [1425] = {.lex_state = 13, .external_lex_state = 7}, + [1426] = {.lex_state = 13, .external_lex_state = 7}, [1427] = {.lex_state = 9, .external_lex_state = 2}, - [1428] = {.lex_state = 2, .external_lex_state = 4}, + [1428] = {.lex_state = 9, .external_lex_state = 2}, [1429] = {.lex_state = 9, .external_lex_state = 2}, [1430] = {.lex_state = 9, .external_lex_state = 2}, [1431] = {.lex_state = 9, .external_lex_state = 2}, @@ -21594,7 +21603,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1477] = {.lex_state = 9, .external_lex_state = 2}, [1478] = {.lex_state = 9, .external_lex_state = 2}, [1479] = {.lex_state = 9, .external_lex_state = 2}, - [1480] = {.lex_state = 9, .external_lex_state = 2}, + [1480] = {.lex_state = 1, .external_lex_state = 4}, [1481] = {.lex_state = 9, .external_lex_state = 2}, [1482] = {.lex_state = 9, .external_lex_state = 2}, [1483] = {.lex_state = 9, .external_lex_state = 2}, @@ -21628,14 +21637,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1511] = {.lex_state = 9, .external_lex_state = 2}, [1512] = {.lex_state = 9, .external_lex_state = 2}, [1513] = {.lex_state = 9, .external_lex_state = 2}, - [1514] = {.lex_state = 1, .external_lex_state = 4}, + [1514] = {.lex_state = 9, .external_lex_state = 2}, [1515] = {.lex_state = 9, .external_lex_state = 2}, [1516] = {.lex_state = 9, .external_lex_state = 2}, [1517] = {.lex_state = 9, .external_lex_state = 2}, [1518] = {.lex_state = 9, .external_lex_state = 2}, [1519] = {.lex_state = 9, .external_lex_state = 2}, [1520] = {.lex_state = 9, .external_lex_state = 2}, - [1521] = {.lex_state = 9, .external_lex_state = 2}, + [1521] = {.lex_state = 1, .external_lex_state = 4}, [1522] = {.lex_state = 9, .external_lex_state = 2}, [1523] = {.lex_state = 9, .external_lex_state = 2}, [1524] = {.lex_state = 9, .external_lex_state = 2}, @@ -21688,26 +21697,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1571] = {.lex_state = 9, .external_lex_state = 2}, [1572] = {.lex_state = 9, .external_lex_state = 2}, [1573] = {.lex_state = 9, .external_lex_state = 2}, - [1574] = {.lex_state = 2, .external_lex_state = 4}, + [1574] = {.lex_state = 9, .external_lex_state = 2}, [1575] = {.lex_state = 9, .external_lex_state = 2}, [1576] = {.lex_state = 9, .external_lex_state = 2}, - [1577] = {.lex_state = 9, .external_lex_state = 2}, + [1577] = {.lex_state = 1, .external_lex_state = 4}, [1578] = {.lex_state = 9, .external_lex_state = 2}, [1579] = {.lex_state = 9, .external_lex_state = 2}, - [1580] = {.lex_state = 9, .external_lex_state = 2}, + [1580] = {.lex_state = 2, .external_lex_state = 4}, [1581] = {.lex_state = 9, .external_lex_state = 2}, - [1582] = {.lex_state = 9, .external_lex_state = 2}, + [1582] = {.lex_state = 1, .external_lex_state = 4}, [1583] = {.lex_state = 9, .external_lex_state = 2}, [1584] = {.lex_state = 9, .external_lex_state = 2}, [1585] = {.lex_state = 9, .external_lex_state = 2}, [1586] = {.lex_state = 9, .external_lex_state = 2}, [1587] = {.lex_state = 9, .external_lex_state = 2}, [1588] = {.lex_state = 9, .external_lex_state = 2}, - [1589] = {.lex_state = 2, .external_lex_state = 4}, + [1589] = {.lex_state = 9, .external_lex_state = 2}, [1590] = {.lex_state = 9, .external_lex_state = 2}, [1591] = {.lex_state = 9, .external_lex_state = 2}, [1592] = {.lex_state = 9, .external_lex_state = 2}, - [1593] = {.lex_state = 9, .external_lex_state = 2}, + [1593] = {.lex_state = 1, .external_lex_state = 4}, [1594] = {.lex_state = 9, .external_lex_state = 2}, [1595] = {.lex_state = 9, .external_lex_state = 2}, [1596] = {.lex_state = 9, .external_lex_state = 2}, @@ -21726,34 +21735,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1609] = {.lex_state = 9, .external_lex_state = 2}, [1610] = {.lex_state = 9, .external_lex_state = 2}, [1611] = {.lex_state = 9, .external_lex_state = 2}, - [1612] = {.lex_state = 13, .external_lex_state = 6}, + [1612] = {.lex_state = 9, .external_lex_state = 2}, [1613] = {.lex_state = 9, .external_lex_state = 2}, - [1614] = {.lex_state = 9, .external_lex_state = 2}, + [1614] = {.lex_state = 2, .external_lex_state = 4}, [1615] = {.lex_state = 9, .external_lex_state = 2}, [1616] = {.lex_state = 9, .external_lex_state = 2}, [1617] = {.lex_state = 9, .external_lex_state = 2}, [1618] = {.lex_state = 9, .external_lex_state = 2}, - [1619] = {.lex_state = 13, .external_lex_state = 6}, - [1620] = {.lex_state = 13, .external_lex_state = 6}, - [1621] = {.lex_state = 13, .external_lex_state = 6}, - [1622] = {.lex_state = 13, .external_lex_state = 6}, - [1623] = {.lex_state = 2, .external_lex_state = 4}, + [1619] = {.lex_state = 9, .external_lex_state = 2}, + [1620] = {.lex_state = 9, .external_lex_state = 2}, + [1621] = {.lex_state = 9, .external_lex_state = 2}, + [1622] = {.lex_state = 9, .external_lex_state = 2}, + [1623] = {.lex_state = 9, .external_lex_state = 2}, [1624] = {.lex_state = 9, .external_lex_state = 2}, [1625] = {.lex_state = 9, .external_lex_state = 2}, - [1626] = {.lex_state = 13, .external_lex_state = 6}, - [1627] = {.lex_state = 13, .external_lex_state = 6}, - [1628] = {.lex_state = 13, .external_lex_state = 6}, - [1629] = {.lex_state = 13, .external_lex_state = 6}, - [1630] = {.lex_state = 13, .external_lex_state = 6}, + [1626] = {.lex_state = 9, .external_lex_state = 2}, + [1627] = {.lex_state = 9, .external_lex_state = 2}, + [1628] = {.lex_state = 9, .external_lex_state = 2}, + [1629] = {.lex_state = 9, .external_lex_state = 2}, + [1630] = {.lex_state = 9, .external_lex_state = 2}, [1631] = {.lex_state = 9, .external_lex_state = 2}, - [1632] = {.lex_state = 13, .external_lex_state = 6}, + [1632] = {.lex_state = 9, .external_lex_state = 2}, [1633] = {.lex_state = 9, .external_lex_state = 2}, [1634] = {.lex_state = 9, .external_lex_state = 2}, - [1635] = {.lex_state = 13, .external_lex_state = 6}, + [1635] = {.lex_state = 1, .external_lex_state = 4}, [1636] = {.lex_state = 9, .external_lex_state = 2}, [1637] = {.lex_state = 9, .external_lex_state = 2}, - [1638] = {.lex_state = 9, .external_lex_state = 2}, - [1639] = {.lex_state = 9, .external_lex_state = 2}, + [1638] = {.lex_state = 1, .external_lex_state = 4}, + [1639] = {.lex_state = 1, .external_lex_state = 4}, [1640] = {.lex_state = 9, .external_lex_state = 2}, [1641] = {.lex_state = 9, .external_lex_state = 2}, [1642] = {.lex_state = 9, .external_lex_state = 2}, @@ -21774,23 +21783,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1657] = {.lex_state = 9, .external_lex_state = 2}, [1658] = {.lex_state = 9, .external_lex_state = 2}, [1659] = {.lex_state = 9, .external_lex_state = 2}, - [1660] = {.lex_state = 13, .external_lex_state = 6}, + [1660] = {.lex_state = 9, .external_lex_state = 2}, [1661] = {.lex_state = 9, .external_lex_state = 2}, [1662] = {.lex_state = 9, .external_lex_state = 2}, [1663] = {.lex_state = 9, .external_lex_state = 2}, [1664] = {.lex_state = 9, .external_lex_state = 2}, [1665] = {.lex_state = 9, .external_lex_state = 2}, [1666] = {.lex_state = 9, .external_lex_state = 2}, - [1667] = {.lex_state = 13, .external_lex_state = 6}, + [1667] = {.lex_state = 9, .external_lex_state = 2}, [1668] = {.lex_state = 9, .external_lex_state = 2}, - [1669] = {.lex_state = 2, .external_lex_state = 4}, - [1670] = {.lex_state = 2, .external_lex_state = 4}, + [1669] = {.lex_state = 9, .external_lex_state = 2}, + [1670] = {.lex_state = 9, .external_lex_state = 2}, [1671] = {.lex_state = 9, .external_lex_state = 2}, - [1672] = {.lex_state = 13, .external_lex_state = 6}, + [1672] = {.lex_state = 9, .external_lex_state = 2}, [1673] = {.lex_state = 9, .external_lex_state = 2}, [1674] = {.lex_state = 9, .external_lex_state = 2}, [1675] = {.lex_state = 9, .external_lex_state = 2}, - [1676] = {.lex_state = 2, .external_lex_state = 4}, + [1676] = {.lex_state = 9, .external_lex_state = 2}, [1677] = {.lex_state = 9, .external_lex_state = 2}, [1678] = {.lex_state = 9, .external_lex_state = 2}, [1679] = {.lex_state = 9, .external_lex_state = 2}, @@ -21802,10 +21811,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1685] = {.lex_state = 9, .external_lex_state = 2}, [1686] = {.lex_state = 9, .external_lex_state = 2}, [1687] = {.lex_state = 9, .external_lex_state = 2}, - [1688] = {.lex_state = 2, .external_lex_state = 4}, - [1689] = {.lex_state = 9, .external_lex_state = 2}, - [1690] = {.lex_state = 2, .external_lex_state = 4}, - [1691] = {.lex_state = 2, .external_lex_state = 4}, + [1688] = {.lex_state = 9, .external_lex_state = 2}, + [1689] = {.lex_state = 1, .external_lex_state = 4}, + [1690] = {.lex_state = 9, .external_lex_state = 2}, + [1691] = {.lex_state = 9, .external_lex_state = 2}, [1692] = {.lex_state = 9, .external_lex_state = 2}, [1693] = {.lex_state = 9, .external_lex_state = 2}, [1694] = {.lex_state = 9, .external_lex_state = 2}, @@ -21818,41 +21827,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1701] = {.lex_state = 9, .external_lex_state = 2}, [1702] = {.lex_state = 9, .external_lex_state = 2}, [1703] = {.lex_state = 9, .external_lex_state = 2}, - [1704] = {.lex_state = 1, .external_lex_state = 4}, + [1704] = {.lex_state = 9, .external_lex_state = 2}, [1705] = {.lex_state = 9, .external_lex_state = 2}, - [1706] = {.lex_state = 9, .external_lex_state = 2}, + [1706] = {.lex_state = 1, .external_lex_state = 4}, [1707] = {.lex_state = 9, .external_lex_state = 2}, [1708] = {.lex_state = 9, .external_lex_state = 2}, [1709] = {.lex_state = 9, .external_lex_state = 2}, [1710] = {.lex_state = 9, .external_lex_state = 2}, [1711] = {.lex_state = 9, .external_lex_state = 2}, [1712] = {.lex_state = 9, .external_lex_state = 2}, - [1713] = {.lex_state = 9, .external_lex_state = 2}, - [1714] = {.lex_state = 9, .external_lex_state = 2}, - [1715] = {.lex_state = 9, .external_lex_state = 2}, - [1716] = {.lex_state = 9, .external_lex_state = 2}, + [1713] = {.lex_state = 1, .external_lex_state = 4}, + [1714] = {.lex_state = 13, .external_lex_state = 6}, + [1715] = {.lex_state = 1, .external_lex_state = 4}, + [1716] = {.lex_state = 2, .external_lex_state = 4}, [1717] = {.lex_state = 9, .external_lex_state = 2}, [1718] = {.lex_state = 9, .external_lex_state = 2}, - [1719] = {.lex_state = 9, .external_lex_state = 2}, + [1719] = {.lex_state = 13, .external_lex_state = 6}, [1720] = {.lex_state = 9, .external_lex_state = 2}, [1721] = {.lex_state = 9, .external_lex_state = 2}, [1722] = {.lex_state = 9, .external_lex_state = 2}, - [1723] = {.lex_state = 2, .external_lex_state = 4}, - [1724] = {.lex_state = 2, .external_lex_state = 4}, + [1723] = {.lex_state = 9, .external_lex_state = 2}, + [1724] = {.lex_state = 9, .external_lex_state = 2}, [1725] = {.lex_state = 9, .external_lex_state = 2}, - [1726] = {.lex_state = 2, .external_lex_state = 4}, + [1726] = {.lex_state = 9, .external_lex_state = 2}, [1727] = {.lex_state = 9, .external_lex_state = 2}, - [1728] = {.lex_state = 13, .external_lex_state = 6}, + [1728] = {.lex_state = 9, .external_lex_state = 2}, [1729] = {.lex_state = 9, .external_lex_state = 2}, [1730] = {.lex_state = 9, .external_lex_state = 2}, [1731] = {.lex_state = 9, .external_lex_state = 2}, [1732] = {.lex_state = 9, .external_lex_state = 2}, [1733] = {.lex_state = 9, .external_lex_state = 2}, [1734] = {.lex_state = 9, .external_lex_state = 2}, - [1735] = {.lex_state = 9, .external_lex_state = 2}, - [1736] = {.lex_state = 9, .external_lex_state = 2}, + [1735] = {.lex_state = 13, .external_lex_state = 6}, + [1736] = {.lex_state = 2, .external_lex_state = 4}, [1737] = {.lex_state = 9, .external_lex_state = 2}, - [1738] = {.lex_state = 9, .external_lex_state = 2}, + [1738] = {.lex_state = 2, .external_lex_state = 4}, [1739] = {.lex_state = 9, .external_lex_state = 2}, [1740] = {.lex_state = 9, .external_lex_state = 2}, [1741] = {.lex_state = 9, .external_lex_state = 2}, @@ -21860,15 +21869,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1743] = {.lex_state = 9, .external_lex_state = 2}, [1744] = {.lex_state = 9, .external_lex_state = 2}, [1745] = {.lex_state = 9, .external_lex_state = 2}, - [1746] = {.lex_state = 9, .external_lex_state = 2}, + [1746] = {.lex_state = 2, .external_lex_state = 4}, [1747] = {.lex_state = 9, .external_lex_state = 2}, - [1748] = {.lex_state = 9, .external_lex_state = 2}, + [1748] = {.lex_state = 13, .external_lex_state = 6}, [1749] = {.lex_state = 9, .external_lex_state = 2}, [1750] = {.lex_state = 9, .external_lex_state = 2}, [1751] = {.lex_state = 9, .external_lex_state = 2}, [1752] = {.lex_state = 9, .external_lex_state = 2}, [1753] = {.lex_state = 9, .external_lex_state = 2}, - [1754] = {.lex_state = 9, .external_lex_state = 2}, + [1754] = {.lex_state = 13, .external_lex_state = 6}, [1755] = {.lex_state = 9, .external_lex_state = 2}, [1756] = {.lex_state = 9, .external_lex_state = 2}, [1757] = {.lex_state = 9, .external_lex_state = 2}, @@ -21882,8 +21891,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1765] = {.lex_state = 9, .external_lex_state = 2}, [1766] = {.lex_state = 9, .external_lex_state = 2}, [1767] = {.lex_state = 9, .external_lex_state = 2}, - [1768] = {.lex_state = 9, .external_lex_state = 2}, - [1769] = {.lex_state = 9, .external_lex_state = 2}, + [1768] = {.lex_state = 1, .external_lex_state = 4}, + [1769] = {.lex_state = 1, .external_lex_state = 4}, [1770] = {.lex_state = 9, .external_lex_state = 2}, [1771] = {.lex_state = 9, .external_lex_state = 2}, [1772] = {.lex_state = 9, .external_lex_state = 2}, @@ -21895,7 +21904,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1778] = {.lex_state = 9, .external_lex_state = 2}, [1779] = {.lex_state = 9, .external_lex_state = 2}, [1780] = {.lex_state = 9, .external_lex_state = 2}, - [1781] = {.lex_state = 9, .external_lex_state = 2}, + [1781] = {.lex_state = 13, .external_lex_state = 6}, [1782] = {.lex_state = 9, .external_lex_state = 2}, [1783] = {.lex_state = 9, .external_lex_state = 2}, [1784] = {.lex_state = 9, .external_lex_state = 2}, @@ -21908,22 +21917,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1791] = {.lex_state = 9, .external_lex_state = 2}, [1792] = {.lex_state = 9, .external_lex_state = 2}, [1793] = {.lex_state = 9, .external_lex_state = 2}, - [1794] = {.lex_state = 1, .external_lex_state = 4}, + [1794] = {.lex_state = 9, .external_lex_state = 2}, [1795] = {.lex_state = 9, .external_lex_state = 2}, - [1796] = {.lex_state = 9, .external_lex_state = 2}, + [1796] = {.lex_state = 13, .external_lex_state = 6}, [1797] = {.lex_state = 9, .external_lex_state = 2}, [1798] = {.lex_state = 9, .external_lex_state = 2}, [1799] = {.lex_state = 9, .external_lex_state = 2}, - [1800] = {.lex_state = 9, .external_lex_state = 2}, - [1801] = {.lex_state = 9, .external_lex_state = 2}, - [1802] = {.lex_state = 9, .external_lex_state = 2}, - [1803] = {.lex_state = 9, .external_lex_state = 2}, + [1800] = {.lex_state = 13, .external_lex_state = 6}, + [1801] = {.lex_state = 13, .external_lex_state = 6}, + [1802] = {.lex_state = 2, .external_lex_state = 4}, + [1803] = {.lex_state = 2, .external_lex_state = 4}, [1804] = {.lex_state = 9, .external_lex_state = 2}, [1805] = {.lex_state = 9, .external_lex_state = 2}, [1806] = {.lex_state = 9, .external_lex_state = 2}, [1807] = {.lex_state = 9, .external_lex_state = 2}, [1808] = {.lex_state = 9, .external_lex_state = 2}, - [1809] = {.lex_state = 9, .external_lex_state = 2}, + [1809] = {.lex_state = 13, .external_lex_state = 6}, [1810] = {.lex_state = 9, .external_lex_state = 2}, [1811] = {.lex_state = 9, .external_lex_state = 2}, [1812] = {.lex_state = 9, .external_lex_state = 2}, @@ -21934,7 +21943,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1817] = {.lex_state = 9, .external_lex_state = 2}, [1818] = {.lex_state = 9, .external_lex_state = 2}, [1819] = {.lex_state = 9, .external_lex_state = 2}, - [1820] = {.lex_state = 9, .external_lex_state = 2}, + [1820] = {.lex_state = 13, .external_lex_state = 6}, [1821] = {.lex_state = 9, .external_lex_state = 2}, [1822] = {.lex_state = 9, .external_lex_state = 2}, [1823] = {.lex_state = 9, .external_lex_state = 2}, @@ -21967,7 +21976,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1850] = {.lex_state = 9, .external_lex_state = 2}, [1851] = {.lex_state = 9, .external_lex_state = 2}, [1852] = {.lex_state = 9, .external_lex_state = 2}, - [1853] = {.lex_state = 9, .external_lex_state = 2}, + [1853] = {.lex_state = 13, .external_lex_state = 6}, [1854] = {.lex_state = 9, .external_lex_state = 2}, [1855] = {.lex_state = 9, .external_lex_state = 2}, [1856] = {.lex_state = 9, .external_lex_state = 2}, @@ -21992,7 +22001,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1875] = {.lex_state = 9, .external_lex_state = 2}, [1876] = {.lex_state = 9, .external_lex_state = 2}, [1877] = {.lex_state = 9, .external_lex_state = 2}, - [1878] = {.lex_state = 9, .external_lex_state = 2}, + [1878] = {.lex_state = 13, .external_lex_state = 6}, [1879] = {.lex_state = 9, .external_lex_state = 2}, [1880] = {.lex_state = 9, .external_lex_state = 2}, [1881] = {.lex_state = 9, .external_lex_state = 2}, @@ -22024,29 +22033,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1907] = {.lex_state = 9, .external_lex_state = 2}, [1908] = {.lex_state = 9, .external_lex_state = 2}, [1909] = {.lex_state = 9, .external_lex_state = 2}, - [1910] = {.lex_state = 1, .external_lex_state = 4}, - [1911] = {.lex_state = 13, .external_lex_state = 6}, + [1910] = {.lex_state = 9, .external_lex_state = 2}, + [1911] = {.lex_state = 9, .external_lex_state = 2}, [1912] = {.lex_state = 9, .external_lex_state = 2}, [1913] = {.lex_state = 9, .external_lex_state = 2}, - [1914] = {.lex_state = 2, .external_lex_state = 4}, + [1914] = {.lex_state = 9, .external_lex_state = 2}, [1915] = {.lex_state = 9, .external_lex_state = 2}, [1916] = {.lex_state = 9, .external_lex_state = 2}, [1917] = {.lex_state = 9, .external_lex_state = 2}, - [1918] = {.lex_state = 13, .external_lex_state = 6}, + [1918] = {.lex_state = 9, .external_lex_state = 2}, [1919] = {.lex_state = 9, .external_lex_state = 2}, [1920] = {.lex_state = 9, .external_lex_state = 2}, [1921] = {.lex_state = 9, .external_lex_state = 2}, - [1922] = {.lex_state = 1, .external_lex_state = 4}, + [1922] = {.lex_state = 9, .external_lex_state = 2}, [1923] = {.lex_state = 9, .external_lex_state = 2}, [1924] = {.lex_state = 9, .external_lex_state = 2}, [1925] = {.lex_state = 9, .external_lex_state = 2}, [1926] = {.lex_state = 9, .external_lex_state = 2}, [1927] = {.lex_state = 9, .external_lex_state = 2}, - [1928] = {.lex_state = 1, .external_lex_state = 4}, + [1928] = {.lex_state = 9, .external_lex_state = 2}, [1929] = {.lex_state = 9, .external_lex_state = 2}, - [1930] = {.lex_state = 2, .external_lex_state = 4}, + [1930] = {.lex_state = 9, .external_lex_state = 2}, [1931] = {.lex_state = 9, .external_lex_state = 2}, - [1932] = {.lex_state = 9, .external_lex_state = 2}, + [1932] = {.lex_state = 1, .external_lex_state = 4}, [1933] = {.lex_state = 9, .external_lex_state = 2}, [1934] = {.lex_state = 9, .external_lex_state = 2}, [1935] = {.lex_state = 9, .external_lex_state = 2}, @@ -22056,41 +22065,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1939] = {.lex_state = 9, .external_lex_state = 2}, [1940] = {.lex_state = 9, .external_lex_state = 2}, [1941] = {.lex_state = 9, .external_lex_state = 2}, - [1942] = {.lex_state = 13, .external_lex_state = 6}, + [1942] = {.lex_state = 9, .external_lex_state = 2}, [1943] = {.lex_state = 9, .external_lex_state = 2}, [1944] = {.lex_state = 9, .external_lex_state = 2}, - [1945] = {.lex_state = 9, .external_lex_state = 2}, - [1946] = {.lex_state = 9, .external_lex_state = 2}, + [1945] = {.lex_state = 13, .external_lex_state = 6}, + [1946] = {.lex_state = 2, .external_lex_state = 4}, [1947] = {.lex_state = 9, .external_lex_state = 2}, - [1948] = {.lex_state = 9, .external_lex_state = 2}, + [1948] = {.lex_state = 2, .external_lex_state = 4}, [1949] = {.lex_state = 9, .external_lex_state = 2}, [1950] = {.lex_state = 9, .external_lex_state = 2}, - [1951] = {.lex_state = 9, .external_lex_state = 2}, + [1951] = {.lex_state = 2, .external_lex_state = 4}, [1952] = {.lex_state = 9, .external_lex_state = 2}, - [1953] = {.lex_state = 9, .external_lex_state = 2}, - [1954] = {.lex_state = 9, .external_lex_state = 2}, - [1955] = {.lex_state = 9, .external_lex_state = 2}, - [1956] = {.lex_state = 9, .external_lex_state = 2}, + [1953] = {.lex_state = 2, .external_lex_state = 4}, + [1954] = {.lex_state = 2, .external_lex_state = 4}, + [1955] = {.lex_state = 2, .external_lex_state = 4}, + [1956] = {.lex_state = 2, .external_lex_state = 4}, [1957] = {.lex_state = 9, .external_lex_state = 2}, [1958] = {.lex_state = 9, .external_lex_state = 2}, [1959] = {.lex_state = 9, .external_lex_state = 2}, - [1960] = {.lex_state = 2, .external_lex_state = 4}, + [1960] = {.lex_state = 9, .external_lex_state = 2}, [1961] = {.lex_state = 9, .external_lex_state = 2}, - [1962] = {.lex_state = 9, .external_lex_state = 2}, + [1962] = {.lex_state = 2, .external_lex_state = 4}, [1963] = {.lex_state = 9, .external_lex_state = 2}, [1964] = {.lex_state = 9, .external_lex_state = 2}, [1965] = {.lex_state = 9, .external_lex_state = 2}, [1966] = {.lex_state = 9, .external_lex_state = 2}, [1967] = {.lex_state = 9, .external_lex_state = 2}, [1968] = {.lex_state = 9, .external_lex_state = 2}, - [1969] = {.lex_state = 13, .external_lex_state = 6}, - [1970] = {.lex_state = 9, .external_lex_state = 2}, + [1969] = {.lex_state = 9, .external_lex_state = 2}, + [1970] = {.lex_state = 2, .external_lex_state = 4}, [1971] = {.lex_state = 9, .external_lex_state = 2}, - [1972] = {.lex_state = 9, .external_lex_state = 2}, + [1972] = {.lex_state = 2, .external_lex_state = 4}, [1973] = {.lex_state = 9, .external_lex_state = 2}, [1974] = {.lex_state = 9, .external_lex_state = 2}, [1975] = {.lex_state = 9, .external_lex_state = 2}, - [1976] = {.lex_state = 9, .external_lex_state = 2}, + [1976] = {.lex_state = 13, .external_lex_state = 6}, [1977] = {.lex_state = 9, .external_lex_state = 2}, [1978] = {.lex_state = 9, .external_lex_state = 2}, [1979] = {.lex_state = 9, .external_lex_state = 2}, @@ -22105,7 +22114,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1988] = {.lex_state = 9, .external_lex_state = 2}, [1989] = {.lex_state = 9, .external_lex_state = 2}, [1990] = {.lex_state = 9, .external_lex_state = 2}, - [1991] = {.lex_state = 9, .external_lex_state = 2}, + [1991] = {.lex_state = 13, .external_lex_state = 6}, [1992] = {.lex_state = 9, .external_lex_state = 2}, [1993] = {.lex_state = 9, .external_lex_state = 2}, [1994] = {.lex_state = 9, .external_lex_state = 2}, @@ -22116,20 +22125,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1999] = {.lex_state = 9, .external_lex_state = 2}, [2000] = {.lex_state = 9, .external_lex_state = 2}, [2001] = {.lex_state = 9, .external_lex_state = 2}, - [2002] = {.lex_state = 9, .external_lex_state = 2}, + [2002] = {.lex_state = 13, .external_lex_state = 6}, [2003] = {.lex_state = 9, .external_lex_state = 2}, [2004] = {.lex_state = 9, .external_lex_state = 2}, - [2005] = {.lex_state = 9, .external_lex_state = 2}, + [2005] = {.lex_state = 13, .external_lex_state = 6}, [2006] = {.lex_state = 9, .external_lex_state = 2}, - [2007] = {.lex_state = 9, .external_lex_state = 2}, - [2008] = {.lex_state = 9, .external_lex_state = 2}, - [2009] = {.lex_state = 9, .external_lex_state = 2}, + [2007] = {.lex_state = 13, .external_lex_state = 6}, + [2008] = {.lex_state = 13, .external_lex_state = 6}, + [2009] = {.lex_state = 13, .external_lex_state = 6}, [2010] = {.lex_state = 9, .external_lex_state = 2}, [2011] = {.lex_state = 9, .external_lex_state = 2}, - [2012] = {.lex_state = 9, .external_lex_state = 2}, - [2013] = {.lex_state = 9, .external_lex_state = 2}, - [2014] = {.lex_state = 9, .external_lex_state = 2}, - [2015] = {.lex_state = 9, .external_lex_state = 2}, + [2012] = {.lex_state = 13, .external_lex_state = 6}, + [2013] = {.lex_state = 13, .external_lex_state = 6}, + [2014] = {.lex_state = 13, .external_lex_state = 6}, + [2015] = {.lex_state = 13, .external_lex_state = 6}, [2016] = {.lex_state = 9, .external_lex_state = 2}, [2017] = {.lex_state = 9, .external_lex_state = 2}, [2018] = {.lex_state = 9, .external_lex_state = 2}, @@ -22138,15 +22147,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2021] = {.lex_state = 9, .external_lex_state = 2}, [2022] = {.lex_state = 9, .external_lex_state = 2}, [2023] = {.lex_state = 9, .external_lex_state = 2}, - [2024] = {.lex_state = 1, .external_lex_state = 4}, - [2025] = {.lex_state = 9, .external_lex_state = 2}, + [2024] = {.lex_state = 9, .external_lex_state = 2}, + [2025] = {.lex_state = 13, .external_lex_state = 6}, [2026] = {.lex_state = 9, .external_lex_state = 2}, - [2027] = {.lex_state = 9, .external_lex_state = 2}, + [2027] = {.lex_state = 13, .external_lex_state = 6}, [2028] = {.lex_state = 9, .external_lex_state = 2}, - [2029] = {.lex_state = 9, .external_lex_state = 2}, + [2029] = {.lex_state = 13, .external_lex_state = 6}, [2030] = {.lex_state = 9, .external_lex_state = 2}, [2031] = {.lex_state = 9, .external_lex_state = 2}, - [2032] = {.lex_state = 1, .external_lex_state = 4}, + [2032] = {.lex_state = 9, .external_lex_state = 2}, [2033] = {.lex_state = 9, .external_lex_state = 2}, [2034] = {.lex_state = 9, .external_lex_state = 2}, [2035] = {.lex_state = 9, .external_lex_state = 2}, @@ -22167,8 +22176,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2050] = {.lex_state = 9, .external_lex_state = 2}, [2051] = {.lex_state = 9, .external_lex_state = 2}, [2052] = {.lex_state = 9, .external_lex_state = 2}, - [2053] = {.lex_state = 13, .external_lex_state = 6}, - [2054] = {.lex_state = 13, .external_lex_state = 6}, + [2053] = {.lex_state = 9, .external_lex_state = 2}, + [2054] = {.lex_state = 9, .external_lex_state = 2}, [2055] = {.lex_state = 9, .external_lex_state = 2}, [2056] = {.lex_state = 9, .external_lex_state = 2}, [2057] = {.lex_state = 9, .external_lex_state = 2}, @@ -22181,9 +22190,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2064] = {.lex_state = 9, .external_lex_state = 2}, [2065] = {.lex_state = 9, .external_lex_state = 2}, [2066] = {.lex_state = 9, .external_lex_state = 2}, - [2067] = {.lex_state = 13, .external_lex_state = 6}, + [2067] = {.lex_state = 9, .external_lex_state = 2}, [2068] = {.lex_state = 9, .external_lex_state = 2}, - [2069] = {.lex_state = 1, .external_lex_state = 4}, + [2069] = {.lex_state = 9, .external_lex_state = 2}, [2070] = {.lex_state = 9, .external_lex_state = 2}, [2071] = {.lex_state = 9, .external_lex_state = 2}, [2072] = {.lex_state = 9, .external_lex_state = 2}, @@ -22208,7 +22217,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2091] = {.lex_state = 9, .external_lex_state = 2}, [2092] = {.lex_state = 9, .external_lex_state = 2}, [2093] = {.lex_state = 9, .external_lex_state = 2}, - [2094] = {.lex_state = 1, .external_lex_state = 4}, + [2094] = {.lex_state = 9, .external_lex_state = 2}, [2095] = {.lex_state = 9, .external_lex_state = 2}, [2096] = {.lex_state = 9, .external_lex_state = 2}, [2097] = {.lex_state = 9, .external_lex_state = 2}, @@ -22224,10 +22233,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2107] = {.lex_state = 9, .external_lex_state = 2}, [2108] = {.lex_state = 9, .external_lex_state = 2}, [2109] = {.lex_state = 9, .external_lex_state = 2}, - [2110] = {.lex_state = 2, .external_lex_state = 4}, + [2110] = {.lex_state = 9, .external_lex_state = 2}, [2111] = {.lex_state = 9, .external_lex_state = 2}, [2112] = {.lex_state = 9, .external_lex_state = 2}, - [2113] = {.lex_state = 2, .external_lex_state = 4}, + [2113] = {.lex_state = 9, .external_lex_state = 2}, [2114] = {.lex_state = 9, .external_lex_state = 2}, [2115] = {.lex_state = 9, .external_lex_state = 2}, [2116] = {.lex_state = 9, .external_lex_state = 2}, @@ -22258,8 +22267,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2141] = {.lex_state = 9, .external_lex_state = 2}, [2142] = {.lex_state = 9, .external_lex_state = 2}, [2143] = {.lex_state = 9, .external_lex_state = 2}, - [2144] = {.lex_state = 1, .external_lex_state = 4}, - [2145] = {.lex_state = 13, .external_lex_state = 6}, + [2144] = {.lex_state = 9, .external_lex_state = 2}, + [2145] = {.lex_state = 9, .external_lex_state = 2}, [2146] = {.lex_state = 9, .external_lex_state = 2}, [2147] = {.lex_state = 9, .external_lex_state = 2}, [2148] = {.lex_state = 9, .external_lex_state = 2}, @@ -22268,7 +22277,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2151] = {.lex_state = 9, .external_lex_state = 2}, [2152] = {.lex_state = 9, .external_lex_state = 2}, [2153] = {.lex_state = 9, .external_lex_state = 2}, - [2154] = {.lex_state = 13, .external_lex_state = 6}, + [2154] = {.lex_state = 9, .external_lex_state = 2}, [2155] = {.lex_state = 9, .external_lex_state = 2}, [2156] = {.lex_state = 9, .external_lex_state = 2}, [2157] = {.lex_state = 9, .external_lex_state = 2}, @@ -22277,21 +22286,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2160] = {.lex_state = 9, .external_lex_state = 2}, [2161] = {.lex_state = 9, .external_lex_state = 2}, [2162] = {.lex_state = 9, .external_lex_state = 2}, - [2163] = {.lex_state = 13, .external_lex_state = 6}, + [2163] = {.lex_state = 9, .external_lex_state = 2}, [2164] = {.lex_state = 9, .external_lex_state = 2}, [2165] = {.lex_state = 9, .external_lex_state = 2}, [2166] = {.lex_state = 9, .external_lex_state = 2}, [2167] = {.lex_state = 9, .external_lex_state = 2}, - [2168] = {.lex_state = 13, .external_lex_state = 6}, + [2168] = {.lex_state = 9, .external_lex_state = 2}, [2169] = {.lex_state = 9, .external_lex_state = 2}, - [2170] = {.lex_state = 13, .external_lex_state = 6}, + [2170] = {.lex_state = 9, .external_lex_state = 2}, [2171] = {.lex_state = 9, .external_lex_state = 2}, [2172] = {.lex_state = 9, .external_lex_state = 2}, [2173] = {.lex_state = 9, .external_lex_state = 2}, - [2174] = {.lex_state = 1, .external_lex_state = 4}, + [2174] = {.lex_state = 9, .external_lex_state = 2}, [2175] = {.lex_state = 9, .external_lex_state = 2}, - [2176] = {.lex_state = 1, .external_lex_state = 4}, - [2177] = {.lex_state = 1, .external_lex_state = 4}, + [2176] = {.lex_state = 9, .external_lex_state = 2}, + [2177] = {.lex_state = 9, .external_lex_state = 2}, [2178] = {.lex_state = 9, .external_lex_state = 2}, [2179] = {.lex_state = 9, .external_lex_state = 2}, [2180] = {.lex_state = 9, .external_lex_state = 2}, @@ -22299,243 +22308,243 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2182] = {.lex_state = 9, .external_lex_state = 2}, [2183] = {.lex_state = 9, .external_lex_state = 2}, [2184] = {.lex_state = 9, .external_lex_state = 2}, - [2185] = {.lex_state = 1, .external_lex_state = 4}, + [2185] = {.lex_state = 9, .external_lex_state = 2}, [2186] = {.lex_state = 9, .external_lex_state = 2}, [2187] = {.lex_state = 9, .external_lex_state = 2}, - [2188] = {.lex_state = 13, .external_lex_state = 7}, - [2189] = {.lex_state = 11, .external_lex_state = 5}, - [2190] = {.lex_state = 11, .external_lex_state = 5}, + [2188] = {.lex_state = 1, .external_lex_state = 4}, + [2189] = {.lex_state = 13, .external_lex_state = 7}, + [2190] = {.lex_state = 13, .external_lex_state = 6}, [2191] = {.lex_state = 13, .external_lex_state = 6}, - [2192] = {.lex_state = 13, .external_lex_state = 7}, - [2193] = {.lex_state = 1, .external_lex_state = 4}, - [2194] = {.lex_state = 13, .external_lex_state = 6}, + [2192] = {.lex_state = 13, .external_lex_state = 6}, + [2193] = {.lex_state = 13, .external_lex_state = 7}, + [2194] = {.lex_state = 13, .external_lex_state = 7}, [2195] = {.lex_state = 13, .external_lex_state = 6}, - [2196] = {.lex_state = 13, .external_lex_state = 6}, - [2197] = {.lex_state = 1, .external_lex_state = 4}, - [2198] = {.lex_state = 1, .external_lex_state = 4}, + [2196] = {.lex_state = 13, .external_lex_state = 7}, + [2197] = {.lex_state = 13, .external_lex_state = 7}, + [2198] = {.lex_state = 13, .external_lex_state = 6}, [2199] = {.lex_state = 13, .external_lex_state = 7}, - [2200] = {.lex_state = 13, .external_lex_state = 7}, - [2201] = {.lex_state = 1, .external_lex_state = 4}, + [2200] = {.lex_state = 13, .external_lex_state = 6}, + [2201] = {.lex_state = 13, .external_lex_state = 6}, [2202] = {.lex_state = 13, .external_lex_state = 6}, - [2203] = {.lex_state = 13, .external_lex_state = 7}, - [2204] = {.lex_state = 1, .external_lex_state = 4}, - [2205] = {.lex_state = 1, .external_lex_state = 4}, - [2206] = {.lex_state = 13, .external_lex_state = 6}, - [2207] = {.lex_state = 1, .external_lex_state = 4}, - [2208] = {.lex_state = 13, .external_lex_state = 7}, - [2209] = {.lex_state = 13, .external_lex_state = 6}, - [2210] = {.lex_state = 11, .external_lex_state = 5}, + [2203] = {.lex_state = 13, .external_lex_state = 6}, + [2204] = {.lex_state = 13, .external_lex_state = 6}, + [2205] = {.lex_state = 13, .external_lex_state = 7}, + [2206] = {.lex_state = 13, .external_lex_state = 7}, + [2207] = {.lex_state = 13, .external_lex_state = 7}, + [2208] = {.lex_state = 13, .external_lex_state = 6}, + [2209] = {.lex_state = 13, .external_lex_state = 7}, + [2210] = {.lex_state = 13, .external_lex_state = 6}, [2211] = {.lex_state = 13, .external_lex_state = 6}, [2212] = {.lex_state = 13, .external_lex_state = 6}, - [2213] = {.lex_state = 11, .external_lex_state = 5}, + [2213] = {.lex_state = 13, .external_lex_state = 7}, [2214] = {.lex_state = 13, .external_lex_state = 6}, - [2215] = {.lex_state = 13, .external_lex_state = 6}, - [2216] = {.lex_state = 13, .external_lex_state = 7}, + [2215] = {.lex_state = 11, .external_lex_state = 5}, + [2216] = {.lex_state = 13, .external_lex_state = 6}, [2217] = {.lex_state = 1, .external_lex_state = 4}, [2218] = {.lex_state = 13, .external_lex_state = 6}, - [2219] = {.lex_state = 13, .external_lex_state = 7}, + [2219] = {.lex_state = 1, .external_lex_state = 4}, [2220] = {.lex_state = 13, .external_lex_state = 7}, - [2221] = {.lex_state = 13, .external_lex_state = 6}, + [2221] = {.lex_state = 13, .external_lex_state = 7}, [2222] = {.lex_state = 13, .external_lex_state = 7}, - [2223] = {.lex_state = 1, .external_lex_state = 4}, - [2224] = {.lex_state = 13, .external_lex_state = 7}, - [2225] = {.lex_state = 13, .external_lex_state = 6}, - [2226] = {.lex_state = 1, .external_lex_state = 4}, - [2227] = {.lex_state = 13, .external_lex_state = 6}, + [2223] = {.lex_state = 11, .external_lex_state = 5}, + [2224] = {.lex_state = 13, .external_lex_state = 6}, + [2225] = {.lex_state = 13, .external_lex_state = 7}, + [2226] = {.lex_state = 13, .external_lex_state = 7}, + [2227] = {.lex_state = 13, .external_lex_state = 7}, [2228] = {.lex_state = 13, .external_lex_state = 7}, [2229] = {.lex_state = 13, .external_lex_state = 7}, - [2230] = {.lex_state = 13, .external_lex_state = 7}, + [2230] = {.lex_state = 1, .external_lex_state = 4}, [2231] = {.lex_state = 13, .external_lex_state = 7}, - [2232] = {.lex_state = 13, .external_lex_state = 6}, - [2233] = {.lex_state = 13, .external_lex_state = 6}, + [2232] = {.lex_state = 13, .external_lex_state = 7}, + [2233] = {.lex_state = 11, .external_lex_state = 5}, [2234] = {.lex_state = 13, .external_lex_state = 7}, [2235] = {.lex_state = 13, .external_lex_state = 7}, [2236] = {.lex_state = 13, .external_lex_state = 7}, - [2237] = {.lex_state = 13, .external_lex_state = 7}, - [2238] = {.lex_state = 13, .external_lex_state = 7}, - [2239] = {.lex_state = 13, .external_lex_state = 6}, + [2237] = {.lex_state = 11, .external_lex_state = 5}, + [2238] = {.lex_state = 1, .external_lex_state = 4}, + [2239] = {.lex_state = 13, .external_lex_state = 7}, [2240] = {.lex_state = 1, .external_lex_state = 4}, - [2241] = {.lex_state = 13, .external_lex_state = 7}, + [2241] = {.lex_state = 1, .external_lex_state = 4}, [2242] = {.lex_state = 1, .external_lex_state = 4}, - [2243] = {.lex_state = 13, .external_lex_state = 7}, + [2243] = {.lex_state = 1, .external_lex_state = 4}, [2244] = {.lex_state = 13, .external_lex_state = 7}, - [2245] = {.lex_state = 13, .external_lex_state = 7}, - [2246] = {.lex_state = 13, .external_lex_state = 7}, - [2247] = {.lex_state = 13, .external_lex_state = 7}, + [2245] = {.lex_state = 1, .external_lex_state = 4}, + [2246] = {.lex_state = 1, .external_lex_state = 4}, + [2247] = {.lex_state = 1, .external_lex_state = 4}, [2248] = {.lex_state = 13, .external_lex_state = 7}, - [2249] = {.lex_state = 13, .external_lex_state = 7}, - [2250] = {.lex_state = 2, .external_lex_state = 4}, - [2251] = {.lex_state = 13, .external_lex_state = 7}, - [2252] = {.lex_state = 13, .external_lex_state = 6}, - [2253] = {.lex_state = 13, .external_lex_state = 6}, - [2254] = {.lex_state = 1, .external_lex_state = 3}, + [2249] = {.lex_state = 13, .external_lex_state = 6}, + [2250] = {.lex_state = 13, .external_lex_state = 6}, + [2251] = {.lex_state = 13, .external_lex_state = 6}, + [2252] = {.lex_state = 13, .external_lex_state = 7}, + [2253] = {.lex_state = 11, .external_lex_state = 5}, + [2254] = {.lex_state = 13, .external_lex_state = 6}, [2255] = {.lex_state = 13, .external_lex_state = 6}, [2256] = {.lex_state = 13, .external_lex_state = 7}, [2257] = {.lex_state = 13, .external_lex_state = 6}, - [2258] = {.lex_state = 11, .external_lex_state = 5}, + [2258] = {.lex_state = 13, .external_lex_state = 6}, [2259] = {.lex_state = 13, .external_lex_state = 6}, - [2260] = {.lex_state = 13, .external_lex_state = 7}, + [2260] = {.lex_state = 13, .external_lex_state = 6}, [2261] = {.lex_state = 13, .external_lex_state = 6}, [2262] = {.lex_state = 13, .external_lex_state = 6}, - [2263] = {.lex_state = 13, .external_lex_state = 6}, - [2264] = {.lex_state = 2, .external_lex_state = 4}, - [2265] = {.lex_state = 1, .external_lex_state = 3}, - [2266] = {.lex_state = 2, .external_lex_state = 4}, - [2267] = {.lex_state = 2, .external_lex_state = 4}, - [2268] = {.lex_state = 13, .external_lex_state = 6}, - [2269] = {.lex_state = 13, .external_lex_state = 6}, - [2270] = {.lex_state = 2, .external_lex_state = 4}, + [2263] = {.lex_state = 2, .external_lex_state = 4}, + [2264] = {.lex_state = 13, .external_lex_state = 7}, + [2265] = {.lex_state = 13, .external_lex_state = 7}, + [2266] = {.lex_state = 13, .external_lex_state = 7}, + [2267] = {.lex_state = 13, .external_lex_state = 7}, + [2268] = {.lex_state = 13, .external_lex_state = 7}, + [2269] = {.lex_state = 13, .external_lex_state = 7}, + [2270] = {.lex_state = 13, .external_lex_state = 7}, [2271] = {.lex_state = 2, .external_lex_state = 4}, [2272] = {.lex_state = 2, .external_lex_state = 4}, - [2273] = {.lex_state = 13, .external_lex_state = 7}, + [2273] = {.lex_state = 2, .external_lex_state = 4}, [2274] = {.lex_state = 2, .external_lex_state = 4}, - [2275] = {.lex_state = 2, .external_lex_state = 4}, - [2276] = {.lex_state = 13, .external_lex_state = 7}, - [2277] = {.lex_state = 13, .external_lex_state = 6}, + [2275] = {.lex_state = 1, .external_lex_state = 3}, + [2276] = {.lex_state = 13, .external_lex_state = 6}, + [2277] = {.lex_state = 2, .external_lex_state = 4}, [2278] = {.lex_state = 2, .external_lex_state = 4}, [2279] = {.lex_state = 2, .external_lex_state = 4}, - [2280] = {.lex_state = 13, .external_lex_state = 7}, - [2281] = {.lex_state = 13, .external_lex_state = 7}, + [2280] = {.lex_state = 1, .external_lex_state = 3}, + [2281] = {.lex_state = 2, .external_lex_state = 4}, [2282] = {.lex_state = 2, .external_lex_state = 4}, - [2283] = {.lex_state = 11, .external_lex_state = 5}, - [2284] = {.lex_state = 13, .external_lex_state = 6}, - [2285] = {.lex_state = 13, .external_lex_state = 7}, + [2283] = {.lex_state = 13, .external_lex_state = 7}, + [2284] = {.lex_state = 13, .external_lex_state = 7}, + [2285] = {.lex_state = 2, .external_lex_state = 4}, [2286] = {.lex_state = 13, .external_lex_state = 6}, - [2287] = {.lex_state = 2, .external_lex_state = 4}, - [2288] = {.lex_state = 13, .external_lex_state = 7}, - [2289] = {.lex_state = 13, .external_lex_state = 6}, - [2290] = {.lex_state = 11, .external_lex_state = 5}, + [2287] = {.lex_state = 13, .external_lex_state = 7}, + [2288] = {.lex_state = 13, .external_lex_state = 6}, + [2289] = {.lex_state = 2, .external_lex_state = 4}, + [2290] = {.lex_state = 13, .external_lex_state = 6}, [2291] = {.lex_state = 13, .external_lex_state = 6}, [2292] = {.lex_state = 11, .external_lex_state = 5}, - [2293] = {.lex_state = 13, .external_lex_state = 6}, + [2293] = {.lex_state = 2, .external_lex_state = 4}, [2294] = {.lex_state = 13, .external_lex_state = 6}, - [2295] = {.lex_state = 2, .external_lex_state = 4}, - [2296] = {.lex_state = 2, .external_lex_state = 4}, - [2297] = {.lex_state = 13, .external_lex_state = 6}, - [2298] = {.lex_state = 13, .external_lex_state = 7}, - [2299] = {.lex_state = 13, .external_lex_state = 6}, - [2300] = {.lex_state = 13, .external_lex_state = 6}, - [2301] = {.lex_state = 13, .external_lex_state = 7}, + [2295] = {.lex_state = 13, .external_lex_state = 6}, + [2296] = {.lex_state = 13, .external_lex_state = 6}, + [2297] = {.lex_state = 2, .external_lex_state = 4}, + [2298] = {.lex_state = 13, .external_lex_state = 6}, + [2299] = {.lex_state = 11, .external_lex_state = 5}, + [2300] = {.lex_state = 2, .external_lex_state = 4}, + [2301] = {.lex_state = 13, .external_lex_state = 6}, [2302] = {.lex_state = 13, .external_lex_state = 6}, - [2303] = {.lex_state = 13, .external_lex_state = 6}, - [2304] = {.lex_state = 2, .external_lex_state = 4}, - [2305] = {.lex_state = 11, .external_lex_state = 5}, - [2306] = {.lex_state = 13, .external_lex_state = 7}, + [2303] = {.lex_state = 11, .external_lex_state = 5}, + [2304] = {.lex_state = 11, .external_lex_state = 5}, + [2305] = {.lex_state = 2, .external_lex_state = 4}, + [2306] = {.lex_state = 2, .external_lex_state = 4}, [2307] = {.lex_state = 13, .external_lex_state = 6}, [2308] = {.lex_state = 13, .external_lex_state = 6}, - [2309] = {.lex_state = 13, .external_lex_state = 7}, - [2310] = {.lex_state = 13, .external_lex_state = 6}, + [2309] = {.lex_state = 13, .external_lex_state = 6}, + [2310] = {.lex_state = 13, .external_lex_state = 7}, [2311] = {.lex_state = 13, .external_lex_state = 7}, [2312] = {.lex_state = 13, .external_lex_state = 6}, - [2313] = {.lex_state = 13, .external_lex_state = 6}, - [2314] = {.lex_state = 2, .external_lex_state = 4}, + [2313] = {.lex_state = 13, .external_lex_state = 7}, + [2314] = {.lex_state = 13, .external_lex_state = 6}, [2315] = {.lex_state = 13, .external_lex_state = 6}, - [2316] = {.lex_state = 13, .external_lex_state = 7}, - [2317] = {.lex_state = 13, .external_lex_state = 6}, + [2316] = {.lex_state = 13, .external_lex_state = 6}, + [2317] = {.lex_state = 1, .external_lex_state = 4}, [2318] = {.lex_state = 13, .external_lex_state = 6}, [2319] = {.lex_state = 13, .external_lex_state = 6}, - [2320] = {.lex_state = 13, .external_lex_state = 6}, - [2321] = {.lex_state = 13, .external_lex_state = 7}, - [2322] = {.lex_state = 13, .external_lex_state = 6}, - [2323] = {.lex_state = 13, .external_lex_state = 7}, - [2324] = {.lex_state = 13, .external_lex_state = 6}, + [2320] = {.lex_state = 13, .external_lex_state = 7}, + [2321] = {.lex_state = 1, .external_lex_state = 4}, + [2322] = {.lex_state = 1, .external_lex_state = 4}, + [2323] = {.lex_state = 13, .external_lex_state = 6}, + [2324] = {.lex_state = 13, .external_lex_state = 7}, [2325] = {.lex_state = 13, .external_lex_state = 6}, [2326] = {.lex_state = 13, .external_lex_state = 6}, - [2327] = {.lex_state = 13, .external_lex_state = 6}, - [2328] = {.lex_state = 13, .external_lex_state = 7}, - [2329] = {.lex_state = 13, .external_lex_state = 6}, + [2327] = {.lex_state = 13, .external_lex_state = 7}, + [2328] = {.lex_state = 1, .external_lex_state = 4}, + [2329] = {.lex_state = 11, .external_lex_state = 5}, [2330] = {.lex_state = 13, .external_lex_state = 6}, [2331] = {.lex_state = 13, .external_lex_state = 6}, [2332] = {.lex_state = 13, .external_lex_state = 6}, - [2333] = {.lex_state = 13, .external_lex_state = 7}, - [2334] = {.lex_state = 13, .external_lex_state = 6}, - [2335] = {.lex_state = 13, .external_lex_state = 7}, + [2333] = {.lex_state = 13, .external_lex_state = 6}, + [2334] = {.lex_state = 13, .external_lex_state = 7}, + [2335] = {.lex_state = 13, .external_lex_state = 6}, [2336] = {.lex_state = 13, .external_lex_state = 6}, [2337] = {.lex_state = 13, .external_lex_state = 6}, [2338] = {.lex_state = 13, .external_lex_state = 6}, - [2339] = {.lex_state = 13, .external_lex_state = 7}, - [2340] = {.lex_state = 13, .external_lex_state = 6}, - [2341] = {.lex_state = 11, .external_lex_state = 5}, + [2339] = {.lex_state = 13, .external_lex_state = 6}, + [2340] = {.lex_state = 1, .external_lex_state = 4}, + [2341] = {.lex_state = 13, .external_lex_state = 6}, [2342] = {.lex_state = 13, .external_lex_state = 6}, [2343] = {.lex_state = 13, .external_lex_state = 6}, - [2344] = {.lex_state = 13, .external_lex_state = 7}, - [2345] = {.lex_state = 13, .external_lex_state = 7}, + [2344] = {.lex_state = 13, .external_lex_state = 6}, + [2345] = {.lex_state = 13, .external_lex_state = 6}, [2346] = {.lex_state = 13, .external_lex_state = 6}, - [2347] = {.lex_state = 13, .external_lex_state = 7}, - [2348] = {.lex_state = 13, .external_lex_state = 6}, + [2347] = {.lex_state = 11, .external_lex_state = 5}, + [2348] = {.lex_state = 1, .external_lex_state = 4}, [2349] = {.lex_state = 13, .external_lex_state = 6}, - [2350] = {.lex_state = 13, .external_lex_state = 7}, - [2351] = {.lex_state = 1, .external_lex_state = 4}, + [2350] = {.lex_state = 13, .external_lex_state = 6}, + [2351] = {.lex_state = 13, .external_lex_state = 7}, [2352] = {.lex_state = 13, .external_lex_state = 6}, [2353] = {.lex_state = 13, .external_lex_state = 6}, - [2354] = {.lex_state = 1, .external_lex_state = 4}, + [2354] = {.lex_state = 13, .external_lex_state = 6}, [2355] = {.lex_state = 11, .external_lex_state = 5}, [2356] = {.lex_state = 13, .external_lex_state = 6}, - [2357] = {.lex_state = 11, .external_lex_state = 5}, - [2358] = {.lex_state = 13, .external_lex_state = 6}, - [2359] = {.lex_state = 13, .external_lex_state = 7}, + [2357] = {.lex_state = 13, .external_lex_state = 6}, + [2358] = {.lex_state = 1, .external_lex_state = 4}, + [2359] = {.lex_state = 13, .external_lex_state = 6}, [2360] = {.lex_state = 13, .external_lex_state = 7}, [2361] = {.lex_state = 13, .external_lex_state = 6}, - [2362] = {.lex_state = 1, .external_lex_state = 4}, - [2363] = {.lex_state = 13, .external_lex_state = 7}, - [2364] = {.lex_state = 1, .external_lex_state = 4}, - [2365] = {.lex_state = 13, .external_lex_state = 6}, - [2366] = {.lex_state = 13, .external_lex_state = 6}, - [2367] = {.lex_state = 13, .external_lex_state = 6}, - [2368] = {.lex_state = 13, .external_lex_state = 7}, - [2369] = {.lex_state = 13, .external_lex_state = 6}, - [2370] = {.lex_state = 13, .external_lex_state = 6}, + [2362] = {.lex_state = 13, .external_lex_state = 6}, + [2363] = {.lex_state = 1, .external_lex_state = 4}, + [2364] = {.lex_state = 13, .external_lex_state = 6}, + [2365] = {.lex_state = 13, .external_lex_state = 7}, + [2366] = {.lex_state = 13, .external_lex_state = 7}, + [2367] = {.lex_state = 11, .external_lex_state = 5}, + [2368] = {.lex_state = 13, .external_lex_state = 6}, + [2369] = {.lex_state = 13, .external_lex_state = 7}, + [2370] = {.lex_state = 13, .external_lex_state = 7}, [2371] = {.lex_state = 13, .external_lex_state = 7}, - [2372] = {.lex_state = 11, .external_lex_state = 5}, + [2372] = {.lex_state = 13, .external_lex_state = 6}, [2373] = {.lex_state = 13, .external_lex_state = 7}, - [2374] = {.lex_state = 13, .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 = 1, .external_lex_state = 4}, - [2380] = {.lex_state = 1, .external_lex_state = 4}, + [2374] = {.lex_state = 13, .external_lex_state = 7}, + [2375] = {.lex_state = 13, .external_lex_state = 7}, + [2376] = {.lex_state = 13, .external_lex_state = 6}, + [2377] = {.lex_state = 13, .external_lex_state = 7}, + [2378] = {.lex_state = 13, .external_lex_state = 7}, + [2379] = {.lex_state = 13, .external_lex_state = 7}, + [2380] = {.lex_state = 13, .external_lex_state = 6}, [2381] = {.lex_state = 13, .external_lex_state = 6}, - [2382] = {.lex_state = 13, .external_lex_state = 6}, - [2383] = {.lex_state = 13, .external_lex_state = 6}, + [2382] = {.lex_state = 1, .external_lex_state = 4}, + [2383] = {.lex_state = 1, .external_lex_state = 4}, [2384] = {.lex_state = 13, .external_lex_state = 7}, [2385] = {.lex_state = 13, .external_lex_state = 7}, [2386] = {.lex_state = 13, .external_lex_state = 7}, - [2387] = {.lex_state = 13, .external_lex_state = 7}, - [2388] = {.lex_state = 13, .external_lex_state = 6}, - [2389] = {.lex_state = 13, .external_lex_state = 7}, + [2387] = {.lex_state = 11, .external_lex_state = 5}, + [2388] = {.lex_state = 13, .external_lex_state = 7}, + [2389] = {.lex_state = 13, .external_lex_state = 6}, [2390] = {.lex_state = 13, .external_lex_state = 6}, - [2391] = {.lex_state = 11, .external_lex_state = 5}, - [2392] = {.lex_state = 13, .external_lex_state = 6}, - [2393] = {.lex_state = 11, .external_lex_state = 5}, + [2391] = {.lex_state = 13, .external_lex_state = 6}, + [2392] = {.lex_state = 13, .external_lex_state = 7}, + [2393] = {.lex_state = 13, .external_lex_state = 6}, [2394] = {.lex_state = 13, .external_lex_state = 6}, - [2395] = {.lex_state = 13, .external_lex_state = 6}, + [2395] = {.lex_state = 13, .external_lex_state = 7}, [2396] = {.lex_state = 13, .external_lex_state = 7}, [2397] = {.lex_state = 13, .external_lex_state = 7}, - [2398] = {.lex_state = 13, .external_lex_state = 7}, + [2398] = {.lex_state = 11, .external_lex_state = 5}, [2399] = {.lex_state = 13, .external_lex_state = 7}, [2400] = {.lex_state = 13, .external_lex_state = 6}, [2401] = {.lex_state = 13, .external_lex_state = 7}, [2402] = {.lex_state = 13, .external_lex_state = 7}, [2403] = {.lex_state = 13, .external_lex_state = 7}, [2404] = {.lex_state = 13, .external_lex_state = 7}, - [2405] = {.lex_state = 11, .external_lex_state = 5}, - [2406] = {.lex_state = 11, .external_lex_state = 5}, - [2407] = {.lex_state = 13, .external_lex_state = 7}, + [2405] = {.lex_state = 13, .external_lex_state = 7}, + [2406] = {.lex_state = 13, .external_lex_state = 6}, + [2407] = {.lex_state = 11, .external_lex_state = 5}, [2408] = {.lex_state = 13, .external_lex_state = 7}, - [2409] = {.lex_state = 13, .external_lex_state = 6}, + [2409] = {.lex_state = 13, .external_lex_state = 7}, [2410] = {.lex_state = 13, .external_lex_state = 7}, - [2411] = {.lex_state = 11, .external_lex_state = 5}, + [2411] = {.lex_state = 13, .external_lex_state = 6}, [2412] = {.lex_state = 13, .external_lex_state = 7}, [2413] = {.lex_state = 13, .external_lex_state = 7}, [2414] = {.lex_state = 13, .external_lex_state = 7}, [2415] = {.lex_state = 13, .external_lex_state = 7}, - [2416] = {.lex_state = 13, .external_lex_state = 6}, - [2417] = {.lex_state = 13, .external_lex_state = 7}, + [2416] = {.lex_state = 11, .external_lex_state = 5}, + [2417] = {.lex_state = 11, .external_lex_state = 5}, [2418] = {.lex_state = 13, .external_lex_state = 7}, [2419] = {.lex_state = 13, .external_lex_state = 7}, [2420] = {.lex_state = 13, .external_lex_state = 6}, - [2421] = {.lex_state = 13, .external_lex_state = 7}, + [2421] = {.lex_state = 13, .external_lex_state = 6}, [2422] = {.lex_state = 13, .external_lex_state = 6}, [2423] = {.lex_state = 13, .external_lex_state = 6}, [2424] = {.lex_state = 13, .external_lex_state = 6}, @@ -22548,66 +22557,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2431] = {.lex_state = 13, .external_lex_state = 6}, [2432] = {.lex_state = 13, .external_lex_state = 6}, [2433] = {.lex_state = 13, .external_lex_state = 6}, - [2434] = {.lex_state = 13, .external_lex_state = 6}, - [2435] = {.lex_state = 13, .external_lex_state = 6}, + [2434] = {.lex_state = 13, .external_lex_state = 7}, + [2435] = {.lex_state = 13, .external_lex_state = 7}, [2436] = {.lex_state = 13, .external_lex_state = 6}, [2437] = {.lex_state = 13, .external_lex_state = 6}, [2438] = {.lex_state = 13, .external_lex_state = 6}, - [2439] = {.lex_state = 13, .external_lex_state = 6}, - [2440] = {.lex_state = 13, .external_lex_state = 6}, - [2441] = {.lex_state = 13, .external_lex_state = 7}, + [2439] = {.lex_state = 13, .external_lex_state = 7}, + [2440] = {.lex_state = 13, .external_lex_state = 7}, + [2441] = {.lex_state = 13, .external_lex_state = 6}, [2442] = {.lex_state = 13, .external_lex_state = 7}, [2443] = {.lex_state = 13, .external_lex_state = 6}, [2444] = {.lex_state = 13, .external_lex_state = 6}, [2445] = {.lex_state = 13, .external_lex_state = 6}, - [2446] = {.lex_state = 13, .external_lex_state = 6}, + [2446] = {.lex_state = 13, .external_lex_state = 7}, [2447] = {.lex_state = 13, .external_lex_state = 7}, [2448] = {.lex_state = 13, .external_lex_state = 6}, - [2449] = {.lex_state = 13, .external_lex_state = 7}, + [2449] = {.lex_state = 13, .external_lex_state = 6}, [2450] = {.lex_state = 13, .external_lex_state = 7}, [2451] = {.lex_state = 13, .external_lex_state = 6}, [2452] = {.lex_state = 13, .external_lex_state = 7}, - [2453] = {.lex_state = 13, .external_lex_state = 6}, - [2454] = {.lex_state = 13, .external_lex_state = 7}, - [2455] = {.lex_state = 13, .external_lex_state = 7}, + [2453] = {.lex_state = 13, .external_lex_state = 7}, + [2454] = {.lex_state = 13, .external_lex_state = 6}, + [2455] = {.lex_state = 13, .external_lex_state = 6}, [2456] = {.lex_state = 13, .external_lex_state = 7}, - [2457] = {.lex_state = 13, .external_lex_state = 7}, + [2457] = {.lex_state = 13, .external_lex_state = 6}, [2458] = {.lex_state = 13, .external_lex_state = 7}, [2459] = {.lex_state = 13, .external_lex_state = 7}, - [2460] = {.lex_state = 13, .external_lex_state = 6}, - [2461] = {.lex_state = 13, .external_lex_state = 7}, + [2460] = {.lex_state = 13, .external_lex_state = 7}, + [2461] = {.lex_state = 13, .external_lex_state = 6}, [2462] = {.lex_state = 13, .external_lex_state = 7}, [2463] = {.lex_state = 13, .external_lex_state = 7}, [2464] = {.lex_state = 13, .external_lex_state = 7}, [2465] = {.lex_state = 13, .external_lex_state = 6}, [2466] = {.lex_state = 13, .external_lex_state = 7}, [2467] = {.lex_state = 13, .external_lex_state = 7}, - [2468] = {.lex_state = 13, .external_lex_state = 6}, - [2469] = {.lex_state = 13, .external_lex_state = 7}, - [2470] = {.lex_state = 13, .external_lex_state = 6}, - [2471] = {.lex_state = 13, .external_lex_state = 6}, - [2472] = {.lex_state = 13, .external_lex_state = 6}, - [2473] = {.lex_state = 13, .external_lex_state = 6}, + [2468] = {.lex_state = 13, .external_lex_state = 7}, + [2469] = {.lex_state = 13, .external_lex_state = 6}, + [2470] = {.lex_state = 13, .external_lex_state = 7}, + [2471] = {.lex_state = 13, .external_lex_state = 7}, + [2472] = {.lex_state = 13, .external_lex_state = 7}, + [2473] = {.lex_state = 13, .external_lex_state = 7}, [2474] = {.lex_state = 13, .external_lex_state = 6}, [2475] = {.lex_state = 13, .external_lex_state = 6}, - [2476] = {.lex_state = 13, .external_lex_state = 6}, + [2476] = {.lex_state = 13, .external_lex_state = 7}, [2477] = {.lex_state = 13, .external_lex_state = 6}, [2478] = {.lex_state = 13, .external_lex_state = 6}, - [2479] = {.lex_state = 13, .external_lex_state = 6}, + [2479] = {.lex_state = 13, .external_lex_state = 7}, [2480] = {.lex_state = 13, .external_lex_state = 6}, - [2481] = {.lex_state = 13, .external_lex_state = 6}, + [2481] = {.lex_state = 13, .external_lex_state = 7}, [2482] = {.lex_state = 13, .external_lex_state = 7}, [2483] = {.lex_state = 13, .external_lex_state = 7}, - [2484] = {.lex_state = 13, .external_lex_state = 6}, + [2484] = {.lex_state = 13, .external_lex_state = 7}, [2485] = {.lex_state = 13, .external_lex_state = 6}, [2486] = {.lex_state = 13, .external_lex_state = 7}, [2487] = {.lex_state = 13, .external_lex_state = 7}, - [2488] = {.lex_state = 13, .external_lex_state = 6}, - [2489] = {.lex_state = 13, .external_lex_state = 7}, + [2488] = {.lex_state = 13, .external_lex_state = 7}, + [2489] = {.lex_state = 13, .external_lex_state = 6}, [2490] = {.lex_state = 13, .external_lex_state = 7}, [2491] = {.lex_state = 13, .external_lex_state = 7}, [2492] = {.lex_state = 13, .external_lex_state = 6}, - [2493] = {.lex_state = 13, .external_lex_state = 7}, + [2493] = {.lex_state = 13, .external_lex_state = 6}, [2494] = {.lex_state = 13, .external_lex_state = 6}, [2495] = {.lex_state = 13, .external_lex_state = 7}, [2496] = {.lex_state = 13, .external_lex_state = 7}, @@ -22615,37 +22624,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2498] = {.lex_state = 13, .external_lex_state = 7}, [2499] = {.lex_state = 13, .external_lex_state = 6}, [2500] = {.lex_state = 13, .external_lex_state = 7}, - [2501] = {.lex_state = 13, .external_lex_state = 7}, + [2501] = {.lex_state = 13, .external_lex_state = 6}, [2502] = {.lex_state = 13, .external_lex_state = 7}, [2503] = {.lex_state = 13, .external_lex_state = 7}, [2504] = {.lex_state = 13, .external_lex_state = 7}, - [2505] = {.lex_state = 13, .external_lex_state = 7}, + [2505] = {.lex_state = 13, .external_lex_state = 6}, [2506] = {.lex_state = 13, .external_lex_state = 7}, [2507] = {.lex_state = 13, .external_lex_state = 7}, [2508] = {.lex_state = 13, .external_lex_state = 7}, [2509] = {.lex_state = 13, .external_lex_state = 7}, - [2510] = {.lex_state = 13, .external_lex_state = 7}, - [2511] = {.lex_state = 13, .external_lex_state = 7}, - [2512] = {.lex_state = 13, .external_lex_state = 7}, + [2510] = {.lex_state = 13, .external_lex_state = 6}, + [2511] = {.lex_state = 13, .external_lex_state = 6}, + [2512] = {.lex_state = 13, .external_lex_state = 6}, [2513] = {.lex_state = 13, .external_lex_state = 7}, - [2514] = {.lex_state = 13, .external_lex_state = 7}, - [2515] = {.lex_state = 13, .external_lex_state = 7}, - [2516] = {.lex_state = 13, .external_lex_state = 6}, - [2517] = {.lex_state = 13, .external_lex_state = 7}, + [2514] = {.lex_state = 13, .external_lex_state = 6}, + [2515] = {.lex_state = 13, .external_lex_state = 6}, + [2516] = {.lex_state = 13, .external_lex_state = 7}, + [2517] = {.lex_state = 13, .external_lex_state = 6}, [2518] = {.lex_state = 13, .external_lex_state = 7}, - [2519] = {.lex_state = 13, .external_lex_state = 7}, - [2520] = {.lex_state = 13, .external_lex_state = 7}, - [2521] = {.lex_state = 13, .external_lex_state = 7}, + [2519] = {.lex_state = 13, .external_lex_state = 6}, + [2520] = {.lex_state = 13, .external_lex_state = 6}, + [2521] = {.lex_state = 13, .external_lex_state = 6}, [2522] = {.lex_state = 13, .external_lex_state = 7}, - [2523] = {.lex_state = 13, .external_lex_state = 6}, - [2524] = {.lex_state = 13, .external_lex_state = 7}, + [2523] = {.lex_state = 13, .external_lex_state = 7}, + [2524] = {.lex_state = 13, .external_lex_state = 6}, [2525] = {.lex_state = 13, .external_lex_state = 6}, - [2526] = {.lex_state = 13, .external_lex_state = 6}, - [2527] = {.lex_state = 13, .external_lex_state = 6}, - [2528] = {.lex_state = 13, .external_lex_state = 6}, + [2526] = {.lex_state = 13, .external_lex_state = 7}, + [2527] = {.lex_state = 13, .external_lex_state = 7}, + [2528] = {.lex_state = 13, .external_lex_state = 7}, [2529] = {.lex_state = 13, .external_lex_state = 6}, [2530] = {.lex_state = 13, .external_lex_state = 6}, - [2531] = {.lex_state = 13, .external_lex_state = 7}, + [2531] = {.lex_state = 13, .external_lex_state = 6}, [2532] = {.lex_state = 13, .external_lex_state = 6}, [2533] = {.lex_state = 13, .external_lex_state = 6}, [2534] = {.lex_state = 13, .external_lex_state = 6}, @@ -22655,90 +22664,90 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2538] = {.lex_state = 13, .external_lex_state = 6}, [2539] = {.lex_state = 13, .external_lex_state = 6}, [2540] = {.lex_state = 13, .external_lex_state = 6}, - [2541] = {.lex_state = 13, .external_lex_state = 6}, + [2541] = {.lex_state = 13, .external_lex_state = 7}, [2542] = {.lex_state = 13, .external_lex_state = 6}, [2543] = {.lex_state = 13, .external_lex_state = 6}, - [2544] = {.lex_state = 13, .external_lex_state = 6}, - [2545] = {.lex_state = 13, .external_lex_state = 7}, + [2544] = {.lex_state = 11, .external_lex_state = 5}, + [2545] = {.lex_state = 13, .external_lex_state = 6}, [2546] = {.lex_state = 13, .external_lex_state = 6}, [2547] = {.lex_state = 13, .external_lex_state = 7}, - [2548] = {.lex_state = 13, .external_lex_state = 6}, - [2549] = {.lex_state = 13, .external_lex_state = 6}, - [2550] = {.lex_state = 13, .external_lex_state = 7}, - [2551] = {.lex_state = 13, .external_lex_state = 7}, + [2548] = {.lex_state = 11, .external_lex_state = 5}, + [2549] = {.lex_state = 13, .external_lex_state = 7}, + [2550] = {.lex_state = 13, .external_lex_state = 6}, + [2551] = {.lex_state = 13, .external_lex_state = 6}, [2552] = {.lex_state = 13, .external_lex_state = 6}, - [2553] = {.lex_state = 13, .external_lex_state = 7}, + [2553] = {.lex_state = 13, .external_lex_state = 6}, [2554] = {.lex_state = 13, .external_lex_state = 6}, - [2555] = {.lex_state = 13, .external_lex_state = 7}, - [2556] = {.lex_state = 13, .external_lex_state = 7}, - [2557] = {.lex_state = 13, .external_lex_state = 7}, - [2558] = {.lex_state = 13, .external_lex_state = 7}, - [2559] = {.lex_state = 13, .external_lex_state = 7}, + [2555] = {.lex_state = 13, .external_lex_state = 6}, + [2556] = {.lex_state = 13, .external_lex_state = 6}, + [2557] = {.lex_state = 11, .external_lex_state = 5}, + [2558] = {.lex_state = 11, .external_lex_state = 5}, + [2559] = {.lex_state = 11, .external_lex_state = 5}, [2560] = {.lex_state = 13, .external_lex_state = 6}, [2561] = {.lex_state = 13, .external_lex_state = 7}, [2562] = {.lex_state = 13, .external_lex_state = 6}, [2563] = {.lex_state = 13, .external_lex_state = 7}, [2564] = {.lex_state = 13, .external_lex_state = 7}, [2565] = {.lex_state = 13, .external_lex_state = 6}, - [2566] = {.lex_state = 13, .external_lex_state = 6}, + [2566] = {.lex_state = 13, .external_lex_state = 7}, [2567] = {.lex_state = 13, .external_lex_state = 7}, [2568] = {.lex_state = 13, .external_lex_state = 7}, [2569] = {.lex_state = 13, .external_lex_state = 7}, - [2570] = {.lex_state = 13, .external_lex_state = 7}, - [2571] = {.lex_state = 13, .external_lex_state = 7}, - [2572] = {.lex_state = 13, .external_lex_state = 6}, - [2573] = {.lex_state = 13, .external_lex_state = 7}, - [2574] = {.lex_state = 13, .external_lex_state = 7}, - [2575] = {.lex_state = 13, .external_lex_state = 7}, - [2576] = {.lex_state = 13, .external_lex_state = 7}, + [2570] = {.lex_state = 13, .external_lex_state = 6}, + [2571] = {.lex_state = 11, .external_lex_state = 5}, + [2572] = {.lex_state = 13, .external_lex_state = 7}, + [2573] = {.lex_state = 13, .external_lex_state = 6}, + [2574] = {.lex_state = 13, .external_lex_state = 6}, + [2575] = {.lex_state = 13, .external_lex_state = 6}, + [2576] = {.lex_state = 13, .external_lex_state = 6}, [2577] = {.lex_state = 13, .external_lex_state = 6}, - [2578] = {.lex_state = 11, .external_lex_state = 5}, - [2579] = {.lex_state = 11, .external_lex_state = 5}, - [2580] = {.lex_state = 11, .external_lex_state = 5}, + [2578] = {.lex_state = 13, .external_lex_state = 6}, + [2579] = {.lex_state = 13, .external_lex_state = 6}, + [2580] = {.lex_state = 13, .external_lex_state = 7}, [2581] = {.lex_state = 13, .external_lex_state = 7}, - [2582] = {.lex_state = 11, .external_lex_state = 5}, - [2583] = {.lex_state = 13, .external_lex_state = 6}, - [2584] = {.lex_state = 11, .external_lex_state = 5}, - [2585] = {.lex_state = 13, .external_lex_state = 6}, - [2586] = {.lex_state = 13, .external_lex_state = 6}, - [2587] = {.lex_state = 13, .external_lex_state = 6}, + [2582] = {.lex_state = 13, .external_lex_state = 7}, + [2583] = {.lex_state = 13, .external_lex_state = 7}, + [2584] = {.lex_state = 13, .external_lex_state = 7}, + [2585] = {.lex_state = 13, .external_lex_state = 7}, + [2586] = {.lex_state = 13, .external_lex_state = 7}, + [2587] = {.lex_state = 13, .external_lex_state = 7}, [2588] = {.lex_state = 13, .external_lex_state = 6}, - [2589] = {.lex_state = 13, .external_lex_state = 6}, + [2589] = {.lex_state = 13, .external_lex_state = 7}, [2590] = {.lex_state = 13, .external_lex_state = 6}, - [2591] = {.lex_state = 11, .external_lex_state = 5}, - [2592] = {.lex_state = 13, .external_lex_state = 6}, - [2593] = {.lex_state = 13, .external_lex_state = 6}, - [2594] = {.lex_state = 13, .external_lex_state = 7}, - [2595] = {.lex_state = 13, .external_lex_state = 6}, + [2591] = {.lex_state = 13, .external_lex_state = 7}, + [2592] = {.lex_state = 13, .external_lex_state = 7}, + [2593] = {.lex_state = 13, .external_lex_state = 7}, + [2594] = {.lex_state = 13, .external_lex_state = 6}, + [2595] = {.lex_state = 13, .external_lex_state = 7}, [2596] = {.lex_state = 13, .external_lex_state = 6}, [2597] = {.lex_state = 13, .external_lex_state = 7}, - [2598] = {.lex_state = 13, .external_lex_state = 6}, + [2598] = {.lex_state = 13, .external_lex_state = 7}, [2599] = {.lex_state = 13, .external_lex_state = 7}, - [2600] = {.lex_state = 13, .external_lex_state = 7}, - [2601] = {.lex_state = 13, .external_lex_state = 6}, - [2602] = {.lex_state = 13, .external_lex_state = 6}, + [2600] = {.lex_state = 13, .external_lex_state = 6}, + [2601] = {.lex_state = 13, .external_lex_state = 7}, + [2602] = {.lex_state = 13, .external_lex_state = 7}, [2603] = {.lex_state = 13, .external_lex_state = 7}, [2604] = {.lex_state = 13, .external_lex_state = 7}, - [2605] = {.lex_state = 13, .external_lex_state = 6}, + [2605] = {.lex_state = 13, .external_lex_state = 7}, [2606] = {.lex_state = 13, .external_lex_state = 7}, - [2607] = {.lex_state = 13, .external_lex_state = 6}, - [2608] = {.lex_state = 13, .external_lex_state = 6}, - [2609] = {.lex_state = 13, .external_lex_state = 6}, - [2610] = {.lex_state = 13, .external_lex_state = 6}, - [2611] = {.lex_state = 11, .external_lex_state = 5}, - [2612] = {.lex_state = 13, .external_lex_state = 7}, - [2613] = {.lex_state = 13, .external_lex_state = 7}, + [2607] = {.lex_state = 13, .external_lex_state = 7}, + [2608] = {.lex_state = 13, .external_lex_state = 7}, + [2609] = {.lex_state = 13, .external_lex_state = 7}, + [2610] = {.lex_state = 13, .external_lex_state = 7}, + [2611] = {.lex_state = 13, .external_lex_state = 7}, + [2612] = {.lex_state = 13, .external_lex_state = 6}, + [2613] = {.lex_state = 13, .external_lex_state = 6}, [2614] = {.lex_state = 13, .external_lex_state = 7}, - [2615] = {.lex_state = 13, .external_lex_state = 7}, - [2616] = {.lex_state = 13, .external_lex_state = 7}, + [2615] = {.lex_state = 13, .external_lex_state = 6}, + [2616] = {.lex_state = 13, .external_lex_state = 6}, [2617] = {.lex_state = 13, .external_lex_state = 6}, [2618] = {.lex_state = 13, .external_lex_state = 7}, [2619] = {.lex_state = 13, .external_lex_state = 7}, - [2620] = {.lex_state = 11, .external_lex_state = 5}, - [2621] = {.lex_state = 13, .external_lex_state = 6}, + [2620] = {.lex_state = 13, .external_lex_state = 7}, + [2621] = {.lex_state = 13, .external_lex_state = 7}, [2622] = {.lex_state = 13, .external_lex_state = 7}, - [2623] = {.lex_state = 11, .external_lex_state = 5}, - [2624] = {.lex_state = 13, .external_lex_state = 6}, + [2623] = {.lex_state = 13, .external_lex_state = 6}, + [2624] = {.lex_state = 13, .external_lex_state = 7}, [2625] = {.lex_state = 13, .external_lex_state = 7}, [2626] = {.lex_state = 13, .external_lex_state = 7}, [2627] = {.lex_state = 13, .external_lex_state = 7}, @@ -22747,58 +22756,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2630] = {.lex_state = 13, .external_lex_state = 7}, [2631] = {.lex_state = 13, .external_lex_state = 7}, [2632] = {.lex_state = 13, .external_lex_state = 7}, - [2633] = {.lex_state = 13, .external_lex_state = 7}, + [2633] = {.lex_state = 11, .external_lex_state = 5}, [2634] = {.lex_state = 13, .external_lex_state = 7}, - [2635] = {.lex_state = 13, .external_lex_state = 7}, + [2635] = {.lex_state = 13, .external_lex_state = 6}, [2636] = {.lex_state = 13, .external_lex_state = 7}, [2637] = {.lex_state = 13, .external_lex_state = 7}, - [2638] = {.lex_state = 13, .external_lex_state = 7}, - [2639] = {.lex_state = 11, .external_lex_state = 5}, - [2640] = {.lex_state = 13, .external_lex_state = 6}, - [2641] = {.lex_state = 13, .external_lex_state = 6}, - [2642] = {.lex_state = 11, .external_lex_state = 5}, + [2638] = {.lex_state = 13, .external_lex_state = 6}, + [2639] = {.lex_state = 13, .external_lex_state = 7}, + [2640] = {.lex_state = 13, .external_lex_state = 7}, + [2641] = {.lex_state = 13, .external_lex_state = 7}, + [2642] = {.lex_state = 13, .external_lex_state = 7}, [2643] = {.lex_state = 13, .external_lex_state = 7}, - [2644] = {.lex_state = 11, .external_lex_state = 5}, + [2644] = {.lex_state = 13, .external_lex_state = 7}, [2645] = {.lex_state = 13, .external_lex_state = 7}, [2646] = {.lex_state = 13, .external_lex_state = 7}, - [2647] = {.lex_state = 11, .external_lex_state = 5}, + [2647] = {.lex_state = 13, .external_lex_state = 7}, [2648] = {.lex_state = 13, .external_lex_state = 7}, [2649] = {.lex_state = 13, .external_lex_state = 7}, [2650] = {.lex_state = 13, .external_lex_state = 7}, - [2651] = {.lex_state = 13, .external_lex_state = 6}, - [2652] = {.lex_state = 13, .external_lex_state = 7}, + [2651] = {.lex_state = 11, .external_lex_state = 5}, + [2652] = {.lex_state = 13, .external_lex_state = 6}, [2653] = {.lex_state = 13, .external_lex_state = 7}, - [2654] = {.lex_state = 13, .external_lex_state = 7}, + [2654] = {.lex_state = 11, .external_lex_state = 5}, [2655] = {.lex_state = 13, .external_lex_state = 7}, [2656] = {.lex_state = 13, .external_lex_state = 7}, - [2657] = {.lex_state = 13, .external_lex_state = 7}, - [2658] = {.lex_state = 13, .external_lex_state = 7}, - [2659] = {.lex_state = 13, .external_lex_state = 7}, - [2660] = {.lex_state = 13, .external_lex_state = 7}, - [2661] = {.lex_state = 13, .external_lex_state = 6}, + [2657] = {.lex_state = 13, .external_lex_state = 6}, + [2658] = {.lex_state = 13, .external_lex_state = 6}, + [2659] = {.lex_state = 13, .external_lex_state = 6}, + [2660] = {.lex_state = 13, .external_lex_state = 6}, + [2661] = {.lex_state = 11, .external_lex_state = 5}, [2662] = {.lex_state = 13, .external_lex_state = 7}, - [2663] = {.lex_state = 13, .external_lex_state = 7}, - [2664] = {.lex_state = 13, .external_lex_state = 6}, + [2663] = {.lex_state = 11, .external_lex_state = 5}, + [2664] = {.lex_state = 13, .external_lex_state = 7}, [2665] = {.lex_state = 13, .external_lex_state = 6}, - [2666] = {.lex_state = 13, .external_lex_state = 7}, + [2666] = {.lex_state = 13, .external_lex_state = 6}, [2667] = {.lex_state = 13, .external_lex_state = 7}, [2668] = {.lex_state = 13, .external_lex_state = 7}, - [2669] = {.lex_state = 13, .external_lex_state = 7}, - [2670] = {.lex_state = 13, .external_lex_state = 6}, + [2669] = {.lex_state = 11, .external_lex_state = 5}, + [2670] = {.lex_state = 13, .external_lex_state = 7}, [2671] = {.lex_state = 13, .external_lex_state = 7}, - [2672] = {.lex_state = 13, .external_lex_state = 6}, + [2672] = {.lex_state = 13, .external_lex_state = 7}, [2673] = {.lex_state = 13, .external_lex_state = 7}, [2674] = {.lex_state = 11, .external_lex_state = 5}, [2675] = {.lex_state = 13, .external_lex_state = 7}, - [2676] = {.lex_state = 13, .external_lex_state = 7}, - [2677] = {.lex_state = 13, .external_lex_state = 7}, - [2678] = {.lex_state = 13, .external_lex_state = 7}, + [2676] = {.lex_state = 11, .external_lex_state = 5}, + [2677] = {.lex_state = 13, .external_lex_state = 6}, + [2678] = {.lex_state = 13, .external_lex_state = 6}, [2679] = {.lex_state = 13, .external_lex_state = 7}, [2680] = {.lex_state = 13, .external_lex_state = 6}, [2681] = {.lex_state = 13, .external_lex_state = 6}, [2682] = {.lex_state = 13, .external_lex_state = 6}, - [2683] = {.lex_state = 13, .external_lex_state = 7}, - [2684] = {.lex_state = 13, .external_lex_state = 6}, + [2683] = {.lex_state = 13, .external_lex_state = 6}, + [2684] = {.lex_state = 13, .external_lex_state = 7}, [2685] = {.lex_state = 13, .external_lex_state = 6}, [2686] = {.lex_state = 13, .external_lex_state = 6}, [2687] = {.lex_state = 13, .external_lex_state = 6}, @@ -22806,441 +22815,441 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2689] = {.lex_state = 13, .external_lex_state = 6}, [2690] = {.lex_state = 13, .external_lex_state = 6}, [2691] = {.lex_state = 13, .external_lex_state = 7}, - [2692] = {.lex_state = 13, .external_lex_state = 6}, - [2693] = {.lex_state = 13, .external_lex_state = 6}, + [2692] = {.lex_state = 13, .external_lex_state = 7}, + [2693] = {.lex_state = 13, .external_lex_state = 7}, [2694] = {.lex_state = 13, .external_lex_state = 6}, - [2695] = {.lex_state = 13, .external_lex_state = 6}, + [2695] = {.lex_state = 13, .external_lex_state = 7}, [2696] = {.lex_state = 13, .external_lex_state = 6}, - [2697] = {.lex_state = 13, .external_lex_state = 7}, + [2697] = {.lex_state = 13, .external_lex_state = 6}, [2698] = {.lex_state = 13, .external_lex_state = 6}, [2699] = {.lex_state = 13, .external_lex_state = 6}, - [2700] = {.lex_state = 13, .external_lex_state = 7}, + [2700] = {.lex_state = 13, .external_lex_state = 6}, [2701] = {.lex_state = 13, .external_lex_state = 6}, - [2702] = {.lex_state = 13, .external_lex_state = 6}, - [2703] = {.lex_state = 13, .external_lex_state = 6}, - [2704] = {.lex_state = 13, .external_lex_state = 7}, - [2705] = {.lex_state = 13, .external_lex_state = 7}, + [2702] = {.lex_state = 13, .external_lex_state = 7}, + [2703] = {.lex_state = 13, .external_lex_state = 7}, + [2704] = {.lex_state = 13, .external_lex_state = 6}, + [2705] = {.lex_state = 13, .external_lex_state = 6}, [2706] = {.lex_state = 13, .external_lex_state = 7}, - [2707] = {.lex_state = 13, .external_lex_state = 7}, - [2708] = {.lex_state = 13, .external_lex_state = 7}, - [2709] = {.lex_state = 13, .external_lex_state = 7}, + [2707] = {.lex_state = 13, .external_lex_state = 6}, + [2708] = {.lex_state = 13, .external_lex_state = 6}, + [2709] = {.lex_state = 13, .external_lex_state = 6}, [2710] = {.lex_state = 13, .external_lex_state = 7}, - [2711] = {.lex_state = 13, .external_lex_state = 7}, + [2711] = {.lex_state = 13, .external_lex_state = 6}, [2712] = {.lex_state = 13, .external_lex_state = 7}, - [2713] = {.lex_state = 13, .external_lex_state = 7}, - [2714] = {.lex_state = 13, .external_lex_state = 6}, - [2715] = {.lex_state = 13, .external_lex_state = 6}, - [2716] = {.lex_state = 13, .external_lex_state = 6}, - [2717] = {.lex_state = 13, .external_lex_state = 7}, - [2718] = {.lex_state = 13, .external_lex_state = 7}, + [2713] = {.lex_state = 13, .external_lex_state = 6}, + [2714] = {.lex_state = 13, .external_lex_state = 7}, + [2715] = {.lex_state = 13, .external_lex_state = 7}, + [2716] = {.lex_state = 13, .external_lex_state = 7}, + [2717] = {.lex_state = 13, .external_lex_state = 6}, + [2718] = {.lex_state = 13, .external_lex_state = 6}, [2719] = {.lex_state = 13, .external_lex_state = 7}, [2720] = {.lex_state = 13, .external_lex_state = 7}, [2721] = {.lex_state = 13, .external_lex_state = 7}, - [2722] = {.lex_state = 13, .external_lex_state = 7}, - [2723] = {.lex_state = 13, .external_lex_state = 7}, - [2724] = {.lex_state = 13, .external_lex_state = 7}, + [2722] = {.lex_state = 13, .external_lex_state = 6}, + [2723] = {.lex_state = 13, .external_lex_state = 6}, + [2724] = {.lex_state = 13, .external_lex_state = 6}, [2725] = {.lex_state = 13, .external_lex_state = 7}, [2726] = {.lex_state = 13, .external_lex_state = 7}, - [2727] = {.lex_state = 13, .external_lex_state = 6}, - [2728] = {.lex_state = 13, .external_lex_state = 6}, + [2727] = {.lex_state = 13, .external_lex_state = 7}, + [2728] = {.lex_state = 13, .external_lex_state = 7}, [2729] = {.lex_state = 13, .external_lex_state = 7}, - [2730] = {.lex_state = 13, .external_lex_state = 6}, - [2731] = {.lex_state = 13, .external_lex_state = 6}, - [2732] = {.lex_state = 13, .external_lex_state = 6}, - [2733] = {.lex_state = 13, .external_lex_state = 6}, + [2730] = {.lex_state = 13, .external_lex_state = 7}, + [2731] = {.lex_state = 13, .external_lex_state = 7}, + [2732] = {.lex_state = 13, .external_lex_state = 7}, + [2733] = {.lex_state = 13, .external_lex_state = 7}, [2734] = {.lex_state = 13, .external_lex_state = 7}, - [2735] = {.lex_state = 13, .external_lex_state = 6}, + [2735] = {.lex_state = 2, .external_lex_state = 4}, [2736] = {.lex_state = 13, .external_lex_state = 6}, - [2737] = {.lex_state = 13, .external_lex_state = 6}, + [2737] = {.lex_state = 2, .external_lex_state = 4}, [2738] = {.lex_state = 13, .external_lex_state = 6}, [2739] = {.lex_state = 13, .external_lex_state = 6}, [2740] = {.lex_state = 13, .external_lex_state = 6}, [2741] = {.lex_state = 13, .external_lex_state = 6}, - [2742] = {.lex_state = 13, .external_lex_state = 6}, + [2742] = {.lex_state = 2, .external_lex_state = 4}, [2743] = {.lex_state = 13, .external_lex_state = 6}, - [2744] = {.lex_state = 2, .external_lex_state = 4}, + [2744] = {.lex_state = 13, .external_lex_state = 6}, [2745] = {.lex_state = 13, .external_lex_state = 6}, [2746] = {.lex_state = 13, .external_lex_state = 6}, - [2747] = {.lex_state = 2, .external_lex_state = 4}, + [2747] = {.lex_state = 13, .external_lex_state = 6}, [2748] = {.lex_state = 13, .external_lex_state = 6}, [2749] = {.lex_state = 13, .external_lex_state = 6}, - [2750] = {.lex_state = 2, .external_lex_state = 4}, - [2751] = {.lex_state = 2, .external_lex_state = 4}, - [2752] = {.lex_state = 13, .external_lex_state = 6}, + [2750] = {.lex_state = 13, .external_lex_state = 6}, + [2751] = {.lex_state = 13, .external_lex_state = 6}, + [2752] = {.lex_state = 2, .external_lex_state = 4}, [2753] = {.lex_state = 13, .external_lex_state = 7}, [2754] = {.lex_state = 13, .external_lex_state = 7}, [2755] = {.lex_state = 13, .external_lex_state = 7}, [2756] = {.lex_state = 13, .external_lex_state = 7}, - [2757] = {.lex_state = 2, .external_lex_state = 4}, + [2757] = {.lex_state = 13, .external_lex_state = 7}, [2758] = {.lex_state = 13, .external_lex_state = 7}, [2759] = {.lex_state = 13, .external_lex_state = 7}, [2760] = {.lex_state = 13, .external_lex_state = 7}, - [2761] = {.lex_state = 13, .external_lex_state = 7}, + [2761] = {.lex_state = 2, .external_lex_state = 4}, [2762] = {.lex_state = 13, .external_lex_state = 7}, [2763] = {.lex_state = 13, .external_lex_state = 7}, [2764] = {.lex_state = 13, .external_lex_state = 7}, [2765] = {.lex_state = 13, .external_lex_state = 7}, - [2766] = {.lex_state = 2, .external_lex_state = 4}, + [2766] = {.lex_state = 13, .external_lex_state = 7}, [2767] = {.lex_state = 13, .external_lex_state = 7}, [2768] = {.lex_state = 13, .external_lex_state = 7}, [2769] = {.lex_state = 13, .external_lex_state = 7}, - [2770] = {.lex_state = 2, .external_lex_state = 4}, - [2771] = {.lex_state = 2, .external_lex_state = 4}, - [2772] = {.lex_state = 13, .external_lex_state = 6}, - [2773] = {.lex_state = 13, .external_lex_state = 6}, - [2774] = {.lex_state = 2, .external_lex_state = 4}, - [2775] = {.lex_state = 13, .external_lex_state = 7}, - [2776] = {.lex_state = 2, .external_lex_state = 4}, - [2777] = {.lex_state = 13, .external_lex_state = 6}, - [2778] = {.lex_state = 13, .external_lex_state = 7}, + [2770] = {.lex_state = 13, .external_lex_state = 7}, + [2771] = {.lex_state = 13, .external_lex_state = 7}, + [2772] = {.lex_state = 2, .external_lex_state = 4}, + [2773] = {.lex_state = 13, .external_lex_state = 7}, + [2774] = {.lex_state = 13, .external_lex_state = 7}, + [2775] = {.lex_state = 2, .external_lex_state = 4}, + [2776] = {.lex_state = 13, .external_lex_state = 7}, + [2777] = {.lex_state = 13, .external_lex_state = 7}, + [2778] = {.lex_state = 2, .external_lex_state = 4}, [2779] = {.lex_state = 13, .external_lex_state = 7}, - [2780] = {.lex_state = 13, .external_lex_state = 7}, - [2781] = {.lex_state = 2, .external_lex_state = 4}, - [2782] = {.lex_state = 13, .external_lex_state = 6}, - [2783] = {.lex_state = 13, .external_lex_state = 7}, - [2784] = {.lex_state = 13, .external_lex_state = 7}, - [2785] = {.lex_state = 13, .external_lex_state = 7}, - [2786] = {.lex_state = 13, .external_lex_state = 7}, + [2780] = {.lex_state = 2, .external_lex_state = 4}, + [2781] = {.lex_state = 13, .external_lex_state = 7}, + [2782] = {.lex_state = 13, .external_lex_state = 7}, + [2783] = {.lex_state = 2, .external_lex_state = 4}, + [2784] = {.lex_state = 2, .external_lex_state = 4}, + [2785] = {.lex_state = 2, .external_lex_state = 4}, + [2786] = {.lex_state = 2, .external_lex_state = 4}, [2787] = {.lex_state = 13, .external_lex_state = 7}, [2788] = {.lex_state = 13, .external_lex_state = 7}, - [2789] = {.lex_state = 13, .external_lex_state = 7}, - [2790] = {.lex_state = 13, .external_lex_state = 7}, + [2789] = {.lex_state = 13, .external_lex_state = 6}, + [2790] = {.lex_state = 2, .external_lex_state = 4}, [2791] = {.lex_state = 13, .external_lex_state = 7}, [2792] = {.lex_state = 13, .external_lex_state = 7}, - [2793] = {.lex_state = 13, .external_lex_state = 7}, - [2794] = {.lex_state = 2, .external_lex_state = 4}, + [2793] = {.lex_state = 2, .external_lex_state = 4}, + [2794] = {.lex_state = 13, .external_lex_state = 6}, [2795] = {.lex_state = 13, .external_lex_state = 7}, [2796] = {.lex_state = 13, .external_lex_state = 7}, [2797] = {.lex_state = 13, .external_lex_state = 7}, [2798] = {.lex_state = 13, .external_lex_state = 7}, - [2799] = {.lex_state = 2, .external_lex_state = 4}, + [2799] = {.lex_state = 13, .external_lex_state = 7}, [2800] = {.lex_state = 2, .external_lex_state = 4}, - [2801] = {.lex_state = 2, .external_lex_state = 4}, - [2802] = {.lex_state = 13, .external_lex_state = 7}, + [2801] = {.lex_state = 13, .external_lex_state = 7}, + [2802] = {.lex_state = 2, .external_lex_state = 4}, [2803] = {.lex_state = 13, .external_lex_state = 7}, - [2804] = {.lex_state = 2, .external_lex_state = 4}, - [2805] = {.lex_state = 2, .external_lex_state = 4}, + [2804] = {.lex_state = 13, .external_lex_state = 6}, + [2805] = {.lex_state = 13, .external_lex_state = 7}, [2806] = {.lex_state = 13, .external_lex_state = 7}, - [2807] = {.lex_state = 13, .external_lex_state = 7}, + [2807] = {.lex_state = 13, .external_lex_state = 6}, [2808] = {.lex_state = 13, .external_lex_state = 7}, [2809] = {.lex_state = 13, .external_lex_state = 7}, - [2810] = {.lex_state = 13, .external_lex_state = 6}, + [2810] = {.lex_state = 2, .external_lex_state = 4}, [2811] = {.lex_state = 13, .external_lex_state = 6}, - [2812] = {.lex_state = 2, .external_lex_state = 4}, - [2813] = {.lex_state = 2, .external_lex_state = 4}, - [2814] = {.lex_state = 2, .external_lex_state = 4}, + [2812] = {.lex_state = 13, .external_lex_state = 6}, + [2813] = {.lex_state = 13, .external_lex_state = 6}, + [2814] = {.lex_state = 13, .external_lex_state = 6}, [2815] = {.lex_state = 2, .external_lex_state = 4}, - [2816] = {.lex_state = 2, .external_lex_state = 4}, - [2817] = {.lex_state = 11, .external_lex_state = 5}, - [2818] = {.lex_state = 13, .external_lex_state = 7}, - [2819] = {.lex_state = 13, .external_lex_state = 6}, - [2820] = {.lex_state = 13, .external_lex_state = 6}, - [2821] = {.lex_state = 2, .external_lex_state = 4}, - [2822] = {.lex_state = 2, .external_lex_state = 4}, + [2816] = {.lex_state = 13, .external_lex_state = 6}, + [2817] = {.lex_state = 13, .external_lex_state = 6}, + [2818] = {.lex_state = 2, .external_lex_state = 4}, + [2819] = {.lex_state = 11, .external_lex_state = 5}, + [2820] = {.lex_state = 2, .external_lex_state = 4}, + [2821] = {.lex_state = 13, .external_lex_state = 6}, + [2822] = {.lex_state = 13, .external_lex_state = 6}, [2823] = {.lex_state = 2, .external_lex_state = 4}, - [2824] = {.lex_state = 2, .external_lex_state = 4}, - [2825] = {.lex_state = 2, .external_lex_state = 4}, - [2826] = {.lex_state = 2, .external_lex_state = 4}, + [2824] = {.lex_state = 2, .external_lex_state = 3}, + [2825] = {.lex_state = 13, .external_lex_state = 6}, + [2826] = {.lex_state = 13, .external_lex_state = 6}, [2827] = {.lex_state = 2, .external_lex_state = 4}, - [2828] = {.lex_state = 13, .external_lex_state = 6}, - [2829] = {.lex_state = 2, .external_lex_state = 4}, - [2830] = {.lex_state = 2, .external_lex_state = 4}, + [2828] = {.lex_state = 2, .external_lex_state = 4}, + [2829] = {.lex_state = 13, .external_lex_state = 6}, + [2830] = {.lex_state = 13, .external_lex_state = 6}, [2831] = {.lex_state = 13, .external_lex_state = 6}, - [2832] = {.lex_state = 13, .external_lex_state = 6}, - [2833] = {.lex_state = 2, .external_lex_state = 4}, - [2834] = {.lex_state = 2, .external_lex_state = 4}, + [2832] = {.lex_state = 2, .external_lex_state = 4}, + [2833] = {.lex_state = 13, .external_lex_state = 6}, + [2834] = {.lex_state = 13, .external_lex_state = 6}, [2835] = {.lex_state = 2, .external_lex_state = 4}, - [2836] = {.lex_state = 13, .external_lex_state = 6}, + [2836] = {.lex_state = 2, .external_lex_state = 4}, [2837] = {.lex_state = 2, .external_lex_state = 4}, - [2838] = {.lex_state = 2, .external_lex_state = 4}, - [2839] = {.lex_state = 13, .external_lex_state = 6}, - [2840] = {.lex_state = 2, .external_lex_state = 4}, - [2841] = {.lex_state = 13, .external_lex_state = 6}, + [2838] = {.lex_state = 13, .external_lex_state = 6}, + [2839] = {.lex_state = 2, .external_lex_state = 4}, + [2840] = {.lex_state = 13, .external_lex_state = 6}, + [2841] = {.lex_state = 2, .external_lex_state = 4}, [2842] = {.lex_state = 13, .external_lex_state = 6}, - [2843] = {.lex_state = 2, .external_lex_state = 4}, - [2844] = {.lex_state = 13, .external_lex_state = 7}, - [2845] = {.lex_state = 2, .external_lex_state = 4}, - [2846] = {.lex_state = 11, .external_lex_state = 5}, + [2843] = {.lex_state = 13, .external_lex_state = 6}, + [2844] = {.lex_state = 2, .external_lex_state = 4}, + [2845] = {.lex_state = 13, .external_lex_state = 6}, + [2846] = {.lex_state = 13, .external_lex_state = 6}, [2847] = {.lex_state = 2, .external_lex_state = 3}, - [2848] = {.lex_state = 2, .external_lex_state = 4}, - [2849] = {.lex_state = 13, .external_lex_state = 6}, - [2850] = {.lex_state = 13, .external_lex_state = 6}, + [2848] = {.lex_state = 13, .external_lex_state = 7}, + [2849] = {.lex_state = 2, .external_lex_state = 4}, + [2850] = {.lex_state = 2, .external_lex_state = 4}, [2851] = {.lex_state = 13, .external_lex_state = 6}, - [2852] = {.lex_state = 13, .external_lex_state = 6}, - [2853] = {.lex_state = 13, .external_lex_state = 6}, + [2852] = {.lex_state = 2, .external_lex_state = 4}, + [2853] = {.lex_state = 11, .external_lex_state = 5}, [2854] = {.lex_state = 13, .external_lex_state = 6}, - [2855] = {.lex_state = 2, .external_lex_state = 4}, - [2856] = {.lex_state = 11, .external_lex_state = 5}, - [2857] = {.lex_state = 2, .external_lex_state = 4}, + [2855] = {.lex_state = 13, .external_lex_state = 6}, + [2856] = {.lex_state = 2, .external_lex_state = 4}, + [2857] = {.lex_state = 2, .external_lex_state = 3}, [2858] = {.lex_state = 2, .external_lex_state = 4}, - [2859] = {.lex_state = 13, .external_lex_state = 6}, + [2859] = {.lex_state = 2, .external_lex_state = 4}, [2860] = {.lex_state = 13, .external_lex_state = 6}, - [2861] = {.lex_state = 13, .external_lex_state = 6}, + [2861] = {.lex_state = 2, .external_lex_state = 4}, [2862] = {.lex_state = 13, .external_lex_state = 6}, - [2863] = {.lex_state = 13, .external_lex_state = 6}, - [2864] = {.lex_state = 2, .external_lex_state = 4}, + [2863] = {.lex_state = 2, .external_lex_state = 4}, + [2864] = {.lex_state = 13, .external_lex_state = 6}, [2865] = {.lex_state = 2, .external_lex_state = 4}, - [2866] = {.lex_state = 13, .external_lex_state = 6}, - [2867] = {.lex_state = 2, .external_lex_state = 4}, - [2868] = {.lex_state = 2, .external_lex_state = 3}, - [2869] = {.lex_state = 2, .external_lex_state = 3}, + [2866] = {.lex_state = 2, .external_lex_state = 4}, + [2867] = {.lex_state = 13, .external_lex_state = 6}, + [2868] = {.lex_state = 2, .external_lex_state = 4}, + [2869] = {.lex_state = 2, .external_lex_state = 4}, [2870] = {.lex_state = 2, .external_lex_state = 3}, - [2871] = {.lex_state = 13, .external_lex_state = 6}, - [2872] = {.lex_state = 13, .external_lex_state = 6}, + [2871] = {.lex_state = 2, .external_lex_state = 4}, + [2872] = {.lex_state = 11, .external_lex_state = 5}, [2873] = {.lex_state = 2, .external_lex_state = 4}, - [2874] = {.lex_state = 13, .external_lex_state = 6}, - [2875] = {.lex_state = 13, .external_lex_state = 6}, - [2876] = {.lex_state = 13, .external_lex_state = 6}, - [2877] = {.lex_state = 13, .external_lex_state = 6}, + [2874] = {.lex_state = 13, .external_lex_state = 7}, + [2875] = {.lex_state = 2, .external_lex_state = 4}, + [2876] = {.lex_state = 2, .external_lex_state = 4}, + [2877] = {.lex_state = 2, .external_lex_state = 4}, [2878] = {.lex_state = 2, .external_lex_state = 4}, - [2879] = {.lex_state = 2, .external_lex_state = 4}, - [2880] = {.lex_state = 11, .external_lex_state = 5}, + [2879] = {.lex_state = 13, .external_lex_state = 6}, + [2880] = {.lex_state = 2, .external_lex_state = 4}, [2881] = {.lex_state = 13, .external_lex_state = 6}, - [2882] = {.lex_state = 2, .external_lex_state = 4}, + [2882] = {.lex_state = 11, .external_lex_state = 5}, [2883] = {.lex_state = 2, .external_lex_state = 4}, - [2884] = {.lex_state = 2, .external_lex_state = 4}, - [2885] = {.lex_state = 13, .external_lex_state = 7}, - [2886] = {.lex_state = 2, .external_lex_state = 4}, + [2884] = {.lex_state = 13, .external_lex_state = 7}, + [2885] = {.lex_state = 13, .external_lex_state = 6}, + [2886] = {.lex_state = 13, .external_lex_state = 7}, [2887] = {.lex_state = 13, .external_lex_state = 7}, - [2888] = {.lex_state = 13, .external_lex_state = 7}, - [2889] = {.lex_state = 11, .external_lex_state = 5}, - [2890] = {.lex_state = 13, .external_lex_state = 7}, - [2891] = {.lex_state = 2, .external_lex_state = 4}, + [2888] = {.lex_state = 11, .external_lex_state = 5}, + [2889] = {.lex_state = 13, .external_lex_state = 7}, + [2890] = {.lex_state = 2, .external_lex_state = 4}, + [2891] = {.lex_state = 13, .external_lex_state = 7}, [2892] = {.lex_state = 13, .external_lex_state = 7}, - [2893] = {.lex_state = 2, .external_lex_state = 4}, - [2894] = {.lex_state = 2, .external_lex_state = 4}, - [2895] = {.lex_state = 13, .external_lex_state = 7}, - [2896] = {.lex_state = 2, .external_lex_state = 4}, - [2897] = {.lex_state = 2, .external_lex_state = 4}, + [2893] = {.lex_state = 13, .external_lex_state = 7}, + [2894] = {.lex_state = 13, .external_lex_state = 6}, + [2895] = {.lex_state = 2, .external_lex_state = 4}, + [2896] = {.lex_state = 11, .external_lex_state = 5}, + [2897] = {.lex_state = 13, .external_lex_state = 7}, [2898] = {.lex_state = 2, .external_lex_state = 4}, - [2899] = {.lex_state = 13, .external_lex_state = 6}, - [2900] = {.lex_state = 13, .external_lex_state = 7}, - [2901] = {.lex_state = 2, .external_lex_state = 4}, - [2902] = {.lex_state = 2, .external_lex_state = 4}, - [2903] = {.lex_state = 13, .external_lex_state = 7}, - [2904] = {.lex_state = 13, .external_lex_state = 6}, + [2899] = {.lex_state = 13, .external_lex_state = 7}, + [2900] = {.lex_state = 2, .external_lex_state = 4}, + [2901] = {.lex_state = 13, .external_lex_state = 7}, + [2902] = {.lex_state = 13, .external_lex_state = 7}, + [2903] = {.lex_state = 11, .external_lex_state = 5}, + [2904] = {.lex_state = 2, .external_lex_state = 4}, [2905] = {.lex_state = 2, .external_lex_state = 4}, [2906] = {.lex_state = 2, .external_lex_state = 4}, [2907] = {.lex_state = 2, .external_lex_state = 4}, [2908] = {.lex_state = 13, .external_lex_state = 7}, - [2909] = {.lex_state = 13, .external_lex_state = 6}, - [2910] = {.lex_state = 2, .external_lex_state = 4}, - [2911] = {.lex_state = 13, .external_lex_state = 7}, - [2912] = {.lex_state = 13, .external_lex_state = 7}, + [2909] = {.lex_state = 2, .external_lex_state = 4}, + [2910] = {.lex_state = 13, .external_lex_state = 6}, + [2911] = {.lex_state = 2, .external_lex_state = 4}, + [2912] = {.lex_state = 13, .external_lex_state = 6}, [2913] = {.lex_state = 2, .external_lex_state = 4}, - [2914] = {.lex_state = 13, .external_lex_state = 7}, - [2915] = {.lex_state = 13, .external_lex_state = 7}, + [2914] = {.lex_state = 2, .external_lex_state = 4}, + [2915] = {.lex_state = 2, .external_lex_state = 4}, [2916] = {.lex_state = 2, .external_lex_state = 4}, - [2917] = {.lex_state = 13, .external_lex_state = 7}, + [2917] = {.lex_state = 2, .external_lex_state = 4}, [2918] = {.lex_state = 2, .external_lex_state = 4}, - [2919] = {.lex_state = 2, .external_lex_state = 4}, + [2919] = {.lex_state = 13, .external_lex_state = 7}, [2920] = {.lex_state = 13, .external_lex_state = 7}, [2921] = {.lex_state = 2, .external_lex_state = 4}, - [2922] = {.lex_state = 2, .external_lex_state = 4}, - [2923] = {.lex_state = 13, .external_lex_state = 6}, + [2922] = {.lex_state = 13, .external_lex_state = 7}, + [2923] = {.lex_state = 13, .external_lex_state = 7}, [2924] = {.lex_state = 13, .external_lex_state = 6}, [2925] = {.lex_state = 2, .external_lex_state = 4}, [2926] = {.lex_state = 2, .external_lex_state = 4}, - [2927] = {.lex_state = 13, .external_lex_state = 6}, - [2928] = {.lex_state = 13, .external_lex_state = 7}, - [2929] = {.lex_state = 13, .external_lex_state = 7}, - [2930] = {.lex_state = 13, .external_lex_state = 6}, + [2927] = {.lex_state = 2, .external_lex_state = 4}, + [2928] = {.lex_state = 2, .external_lex_state = 4}, + [2929] = {.lex_state = 2, .external_lex_state = 4}, + [2930] = {.lex_state = 2, .external_lex_state = 4}, [2931] = {.lex_state = 2, .external_lex_state = 4}, - [2932] = {.lex_state = 13, .external_lex_state = 6}, - [2933] = {.lex_state = 13, .external_lex_state = 7}, + [2932] = {.lex_state = 2, .external_lex_state = 4}, + [2933] = {.lex_state = 2, .external_lex_state = 4}, [2934] = {.lex_state = 13, .external_lex_state = 7}, [2935] = {.lex_state = 13, .external_lex_state = 7}, - [2936] = {.lex_state = 13, .external_lex_state = 7}, - [2937] = {.lex_state = 2, .external_lex_state = 4}, + [2936] = {.lex_state = 2, .external_lex_state = 4}, + [2937] = {.lex_state = 13, .external_lex_state = 7}, [2938] = {.lex_state = 13, .external_lex_state = 7}, - [2939] = {.lex_state = 11, .external_lex_state = 5}, - [2940] = {.lex_state = 13, .external_lex_state = 6}, - [2941] = {.lex_state = 13, .external_lex_state = 7}, + [2939] = {.lex_state = 2, .external_lex_state = 4}, + [2940] = {.lex_state = 2, .external_lex_state = 4}, + [2941] = {.lex_state = 2, .external_lex_state = 4}, [2942] = {.lex_state = 2, .external_lex_state = 4}, - [2943] = {.lex_state = 13, .external_lex_state = 7}, - [2944] = {.lex_state = 13, .external_lex_state = 6}, - [2945] = {.lex_state = 2, .external_lex_state = 4}, + [2943] = {.lex_state = 13, .external_lex_state = 6}, + [2944] = {.lex_state = 13, .external_lex_state = 7}, + [2945] = {.lex_state = 13, .external_lex_state = 6}, [2946] = {.lex_state = 2, .external_lex_state = 4}, [2947] = {.lex_state = 2, .external_lex_state = 4}, - [2948] = {.lex_state = 2, .external_lex_state = 4}, + [2948] = {.lex_state = 13, .external_lex_state = 7}, [2949] = {.lex_state = 2, .external_lex_state = 4}, - [2950] = {.lex_state = 13, .external_lex_state = 6}, + [2950] = {.lex_state = 13, .external_lex_state = 7}, [2951] = {.lex_state = 13, .external_lex_state = 7}, - [2952] = {.lex_state = 13, .external_lex_state = 7}, - [2953] = {.lex_state = 2, .external_lex_state = 4}, - [2954] = {.lex_state = 2, .external_lex_state = 4}, - [2955] = {.lex_state = 2, .external_lex_state = 4}, - [2956] = {.lex_state = 11, .external_lex_state = 5}, - [2957] = {.lex_state = 2, .external_lex_state = 4}, + [2952] = {.lex_state = 2, .external_lex_state = 4}, + [2953] = {.lex_state = 13, .external_lex_state = 7}, + [2954] = {.lex_state = 13, .external_lex_state = 7}, + [2955] = {.lex_state = 13, .external_lex_state = 7}, + [2956] = {.lex_state = 2, .external_lex_state = 4}, + [2957] = {.lex_state = 13, .external_lex_state = 6}, [2958] = {.lex_state = 2, .external_lex_state = 4}, [2959] = {.lex_state = 2, .external_lex_state = 4}, [2960] = {.lex_state = 2, .external_lex_state = 4}, [2961] = {.lex_state = 13, .external_lex_state = 6}, [2962] = {.lex_state = 2, .external_lex_state = 4}, - [2963] = {.lex_state = 2, .external_lex_state = 4}, - [2964] = {.lex_state = 13, .external_lex_state = 7}, - [2965] = {.lex_state = 2, .external_lex_state = 4}, - [2966] = {.lex_state = 13, .external_lex_state = 7}, + [2963] = {.lex_state = 13, .external_lex_state = 6}, + [2964] = {.lex_state = 13, .external_lex_state = 6}, + [2965] = {.lex_state = 13, .external_lex_state = 7}, + [2966] = {.lex_state = 13, .external_lex_state = 6}, [2967] = {.lex_state = 2, .external_lex_state = 4}, [2968] = {.lex_state = 2, .external_lex_state = 4}, [2969] = {.lex_state = 2, .external_lex_state = 4}, - [2970] = {.lex_state = 13, .external_lex_state = 6}, + [2970] = {.lex_state = 2, .external_lex_state = 4}, [2971] = {.lex_state = 13, .external_lex_state = 6}, - [2972] = {.lex_state = 13, .external_lex_state = 6}, + [2972] = {.lex_state = 2, .external_lex_state = 4}, [2973] = {.lex_state = 13, .external_lex_state = 6}, [2974] = {.lex_state = 13, .external_lex_state = 6}, - [2975] = {.lex_state = 2, .external_lex_state = 4}, - [2976] = {.lex_state = 13, .external_lex_state = 6}, - [2977] = {.lex_state = 13, .external_lex_state = 7}, - [2978] = {.lex_state = 2, .external_lex_state = 4}, - [2979] = {.lex_state = 13, .external_lex_state = 7}, - [2980] = {.lex_state = 2, .external_lex_state = 4}, - [2981] = {.lex_state = 13, .external_lex_state = 7}, - [2982] = {.lex_state = 2, .external_lex_state = 4}, - [2983] = {.lex_state = 2, .external_lex_state = 4}, - [2984] = {.lex_state = 2, .external_lex_state = 4}, - [2985] = {.lex_state = 2, .external_lex_state = 4}, + [2975] = {.lex_state = 13, .external_lex_state = 6}, + [2976] = {.lex_state = 2, .external_lex_state = 4}, + [2977] = {.lex_state = 2, .external_lex_state = 4}, + [2978] = {.lex_state = 13, .external_lex_state = 6}, + [2979] = {.lex_state = 2, .external_lex_state = 4}, + [2980] = {.lex_state = 13, .external_lex_state = 6}, + [2981] = {.lex_state = 13, .external_lex_state = 6}, + [2982] = {.lex_state = 13, .external_lex_state = 6}, + [2983] = {.lex_state = 13, .external_lex_state = 6}, + [2984] = {.lex_state = 13, .external_lex_state = 6}, + [2985] = {.lex_state = 13, .external_lex_state = 6}, [2986] = {.lex_state = 2, .external_lex_state = 4}, [2987] = {.lex_state = 2, .external_lex_state = 4}, - [2988] = {.lex_state = 13, .external_lex_state = 6}, - [2989] = {.lex_state = 2, .external_lex_state = 4}, + [2988] = {.lex_state = 2, .external_lex_state = 4}, + [2989] = {.lex_state = 13, .external_lex_state = 6}, [2990] = {.lex_state = 2, .external_lex_state = 4}, [2991] = {.lex_state = 2, .external_lex_state = 4}, - [2992] = {.lex_state = 2, .external_lex_state = 4}, + [2992] = {.lex_state = 13, .external_lex_state = 6}, [2993] = {.lex_state = 2, .external_lex_state = 4}, [2994] = {.lex_state = 2, .external_lex_state = 4}, [2995] = {.lex_state = 2, .external_lex_state = 4}, - [2996] = {.lex_state = 4, .external_lex_state = 4}, - [2997] = {.lex_state = 11, .external_lex_state = 5}, - [2998] = {.lex_state = 2, .external_lex_state = 4}, - [2999] = {.lex_state = 2, .external_lex_state = 4}, - [3000] = {.lex_state = 2, .external_lex_state = 4}, - [3001] = {.lex_state = 2, .external_lex_state = 4}, - [3002] = {.lex_state = 13, .external_lex_state = 7}, - [3003] = {.lex_state = 11, .external_lex_state = 5}, - [3004] = {.lex_state = 13, .external_lex_state = 6}, - [3005] = {.lex_state = 11, .external_lex_state = 5}, + [2996] = {.lex_state = 2, .external_lex_state = 4}, + [2997] = {.lex_state = 13, .external_lex_state = 6}, + [2998] = {.lex_state = 13, .external_lex_state = 6}, + [2999] = {.lex_state = 13, .external_lex_state = 6}, + [3000] = {.lex_state = 13, .external_lex_state = 6}, + [3001] = {.lex_state = 13, .external_lex_state = 6}, + [3002] = {.lex_state = 2, .external_lex_state = 4}, + [3003] = {.lex_state = 2, .external_lex_state = 4}, + [3004] = {.lex_state = 2, .external_lex_state = 4}, + [3005] = {.lex_state = 2, .external_lex_state = 4}, [3006] = {.lex_state = 2, .external_lex_state = 4}, - [3007] = {.lex_state = 11, .external_lex_state = 5}, + [3007] = {.lex_state = 2, .external_lex_state = 4}, [3008] = {.lex_state = 2, .external_lex_state = 4}, [3009] = {.lex_state = 2, .external_lex_state = 4}, - [3010] = {.lex_state = 13, .external_lex_state = 6}, + [3010] = {.lex_state = 2, .external_lex_state = 4}, [3011] = {.lex_state = 2, .external_lex_state = 4}, [3012] = {.lex_state = 2, .external_lex_state = 4}, [3013] = {.lex_state = 2, .external_lex_state = 4}, - [3014] = {.lex_state = 2, .external_lex_state = 4}, - [3015] = {.lex_state = 13, .external_lex_state = 6}, + [3014] = {.lex_state = 13, .external_lex_state = 7}, + [3015] = {.lex_state = 2, .external_lex_state = 4}, [3016] = {.lex_state = 2, .external_lex_state = 4}, - [3017] = {.lex_state = 13, .external_lex_state = 6}, - [3018] = {.lex_state = 13, .external_lex_state = 6}, + [3017] = {.lex_state = 2, .external_lex_state = 4}, + [3018] = {.lex_state = 2, .external_lex_state = 4}, [3019] = {.lex_state = 2, .external_lex_state = 4}, [3020] = {.lex_state = 13, .external_lex_state = 6}, - [3021] = {.lex_state = 13, .external_lex_state = 6}, + [3021] = {.lex_state = 2, .external_lex_state = 4}, [3022] = {.lex_state = 2, .external_lex_state = 4}, - [3023] = {.lex_state = 2, .external_lex_state = 4}, + [3023] = {.lex_state = 321, .external_lex_state = 2}, [3024] = {.lex_state = 2, .external_lex_state = 4}, [3025] = {.lex_state = 2, .external_lex_state = 4}, - [3026] = {.lex_state = 13, .external_lex_state = 6}, - [3027] = {.lex_state = 13, .external_lex_state = 6}, + [3026] = {.lex_state = 2, .external_lex_state = 4}, + [3027] = {.lex_state = 2, .external_lex_state = 4}, [3028] = {.lex_state = 2, .external_lex_state = 4}, [3029] = {.lex_state = 13, .external_lex_state = 6}, - [3030] = {.lex_state = 2, .external_lex_state = 4}, + [3030] = {.lex_state = 13, .external_lex_state = 6}, [3031] = {.lex_state = 2, .external_lex_state = 4}, - [3032] = {.lex_state = 2, .external_lex_state = 4}, - [3033] = {.lex_state = 13, .external_lex_state = 6}, - [3034] = {.lex_state = 13, .external_lex_state = 6}, + [3032] = {.lex_state = 13, .external_lex_state = 6}, + [3033] = {.lex_state = 2, .external_lex_state = 4}, + [3034] = {.lex_state = 2, .external_lex_state = 4}, [3035] = {.lex_state = 2, .external_lex_state = 4}, - [3036] = {.lex_state = 2, .external_lex_state = 4}, + [3036] = {.lex_state = 13, .external_lex_state = 6}, [3037] = {.lex_state = 2, .external_lex_state = 4}, [3038] = {.lex_state = 2, .external_lex_state = 4}, - [3039] = {.lex_state = 2, .external_lex_state = 4}, + [3039] = {.lex_state = 11, .external_lex_state = 5}, [3040] = {.lex_state = 2, .external_lex_state = 4}, [3041] = {.lex_state = 2, .external_lex_state = 4}, - [3042] = {.lex_state = 13, .external_lex_state = 6}, - [3043] = {.lex_state = 2, .external_lex_state = 4}, - [3044] = {.lex_state = 2, .external_lex_state = 4}, - [3045] = {.lex_state = 2, .external_lex_state = 4}, - [3046] = {.lex_state = 321, .external_lex_state = 2}, - [3047] = {.lex_state = 13, .external_lex_state = 6}, - [3048] = {.lex_state = 13, .external_lex_state = 6}, - [3049] = {.lex_state = 2, .external_lex_state = 4}, - [3050] = {.lex_state = 13, .external_lex_state = 6}, - [3051] = {.lex_state = 13, .external_lex_state = 6}, - [3052] = {.lex_state = 2, .external_lex_state = 4}, + [3042] = {.lex_state = 2, .external_lex_state = 4}, + [3043] = {.lex_state = 13, .external_lex_state = 6}, + [3044] = {.lex_state = 13, .external_lex_state = 6}, + [3045] = {.lex_state = 11, .external_lex_state = 5}, + [3046] = {.lex_state = 2, .external_lex_state = 4}, + [3047] = {.lex_state = 2, .external_lex_state = 4}, + [3048] = {.lex_state = 2, .external_lex_state = 4}, + [3049] = {.lex_state = 13, .external_lex_state = 6}, + [3050] = {.lex_state = 13, .external_lex_state = 7}, + [3051] = {.lex_state = 11, .external_lex_state = 5}, + [3052] = {.lex_state = 13, .external_lex_state = 7}, [3053] = {.lex_state = 2, .external_lex_state = 4}, [3054] = {.lex_state = 2, .external_lex_state = 4}, - [3055] = {.lex_state = 13, .external_lex_state = 6}, - [3056] = {.lex_state = 13, .external_lex_state = 6}, - [3057] = {.lex_state = 2, .external_lex_state = 4}, + [3055] = {.lex_state = 11, .external_lex_state = 5}, + [3056] = {.lex_state = 13, .external_lex_state = 7}, + [3057] = {.lex_state = 4, .external_lex_state = 4}, [3058] = {.lex_state = 2, .external_lex_state = 4}, [3059] = {.lex_state = 2, .external_lex_state = 4}, - [3060] = {.lex_state = 13, .external_lex_state = 6}, + [3060] = {.lex_state = 2, .external_lex_state = 4}, [3061] = {.lex_state = 13, .external_lex_state = 6}, [3062] = {.lex_state = 2, .external_lex_state = 4}, [3063] = {.lex_state = 2, .external_lex_state = 4}, - [3064] = {.lex_state = 13, .external_lex_state = 6}, - [3065] = {.lex_state = 13, .external_lex_state = 6}, + [3064] = {.lex_state = 2, .external_lex_state = 4}, + [3065] = {.lex_state = 2, .external_lex_state = 4}, [3066] = {.lex_state = 2, .external_lex_state = 4}, - [3067] = {.lex_state = 13, .external_lex_state = 6}, + [3067] = {.lex_state = 2, .external_lex_state = 4}, [3068] = {.lex_state = 2, .external_lex_state = 4}, - [3069] = {.lex_state = 13, .external_lex_state = 6}, + [3069] = {.lex_state = 2, .external_lex_state = 4}, [3070] = {.lex_state = 13, .external_lex_state = 6}, - [3071] = {.lex_state = 2, .external_lex_state = 4}, - [3072] = {.lex_state = 2, .external_lex_state = 4}, + [3071] = {.lex_state = 13, .external_lex_state = 6}, + [3072] = {.lex_state = 13, .external_lex_state = 7}, [3073] = {.lex_state = 2, .external_lex_state = 4}, [3074] = {.lex_state = 2, .external_lex_state = 4}, - [3075] = {.lex_state = 11, .external_lex_state = 5}, - [3076] = {.lex_state = 13, .external_lex_state = 6}, + [3075] = {.lex_state = 2, .external_lex_state = 4}, + [3076] = {.lex_state = 2, .external_lex_state = 4}, [3077] = {.lex_state = 2, .external_lex_state = 4}, - [3078] = {.lex_state = 13, .external_lex_state = 6}, - [3079] = {.lex_state = 13, .external_lex_state = 7}, - [3080] = {.lex_state = 13, .external_lex_state = 6}, + [3078] = {.lex_state = 11, .external_lex_state = 5}, + [3079] = {.lex_state = 2, .external_lex_state = 4}, + [3080] = {.lex_state = 11, .external_lex_state = 5}, [3081] = {.lex_state = 2, .external_lex_state = 4}, - [3082] = {.lex_state = 13, .external_lex_state = 6}, - [3083] = {.lex_state = 13, .external_lex_state = 6}, - [3084] = {.lex_state = 2, .external_lex_state = 4}, - [3085] = {.lex_state = 13, .external_lex_state = 6}, - [3086] = {.lex_state = 2, .external_lex_state = 4}, + [3082] = {.lex_state = 2, .external_lex_state = 4}, + [3083] = {.lex_state = 2, .external_lex_state = 4}, + [3084] = {.lex_state = 13, .external_lex_state = 6}, + [3085] = {.lex_state = 11, .external_lex_state = 5}, + [3086] = {.lex_state = 13, .external_lex_state = 6}, [3087] = {.lex_state = 2, .external_lex_state = 4}, [3088] = {.lex_state = 2, .external_lex_state = 4}, - [3089] = {.lex_state = 2, .external_lex_state = 4}, - [3090] = {.lex_state = 2, .external_lex_state = 4}, - [3091] = {.lex_state = 2, .external_lex_state = 4}, + [3089] = {.lex_state = 13, .external_lex_state = 6}, + [3090] = {.lex_state = 13, .external_lex_state = 6}, + [3091] = {.lex_state = 13, .external_lex_state = 6}, [3092] = {.lex_state = 2, .external_lex_state = 4}, [3093] = {.lex_state = 2, .external_lex_state = 4}, - [3094] = {.lex_state = 2, .external_lex_state = 4}, + [3094] = {.lex_state = 13, .external_lex_state = 6}, [3095] = {.lex_state = 2, .external_lex_state = 4}, [3096] = {.lex_state = 13, .external_lex_state = 6}, - [3097] = {.lex_state = 13, .external_lex_state = 6}, + [3097] = {.lex_state = 2, .external_lex_state = 4}, [3098] = {.lex_state = 2, .external_lex_state = 4}, [3099] = {.lex_state = 2, .external_lex_state = 4}, - [3100] = {.lex_state = 2, .external_lex_state = 4}, - [3101] = {.lex_state = 13, .external_lex_state = 6}, + [3100] = {.lex_state = 13, .external_lex_state = 6}, + [3101] = {.lex_state = 2, .external_lex_state = 4}, [3102] = {.lex_state = 2, .external_lex_state = 4}, [3103] = {.lex_state = 2, .external_lex_state = 4}, [3104] = {.lex_state = 2, .external_lex_state = 4}, [3105] = {.lex_state = 2, .external_lex_state = 4}, [3106] = {.lex_state = 2, .external_lex_state = 4}, [3107] = {.lex_state = 2, .external_lex_state = 4}, - [3108] = {.lex_state = 13, .external_lex_state = 6}, + [3108] = {.lex_state = 2, .external_lex_state = 4}, [3109] = {.lex_state = 13, .external_lex_state = 6}, [3110] = {.lex_state = 2, .external_lex_state = 4}, - [3111] = {.lex_state = 11, .external_lex_state = 5}, + [3111] = {.lex_state = 2, .external_lex_state = 4}, [3112] = {.lex_state = 2, .external_lex_state = 4}, [3113] = {.lex_state = 2, .external_lex_state = 4}, [3114] = {.lex_state = 2, .external_lex_state = 4}, - [3115] = {.lex_state = 13, .external_lex_state = 6}, - [3116] = {.lex_state = 321, .external_lex_state = 2}, - [3117] = {.lex_state = 2, .external_lex_state = 4}, + [3115] = {.lex_state = 2, .external_lex_state = 4}, + [3116] = {.lex_state = 2, .external_lex_state = 4}, + [3117] = {.lex_state = 13, .external_lex_state = 6}, [3118] = {.lex_state = 2, .external_lex_state = 4}, [3119] = {.lex_state = 2, .external_lex_state = 4}, [3120] = {.lex_state = 2, .external_lex_state = 4}, [3121] = {.lex_state = 2, .external_lex_state = 4}, - [3122] = {.lex_state = 13, .external_lex_state = 6}, + [3122] = {.lex_state = 2, .external_lex_state = 4}, [3123] = {.lex_state = 2, .external_lex_state = 4}, - [3124] = {.lex_state = 11, .external_lex_state = 5}, + [3124] = {.lex_state = 2, .external_lex_state = 4}, [3125] = {.lex_state = 2, .external_lex_state = 4}, - [3126] = {.lex_state = 2, .external_lex_state = 4}, + [3126] = {.lex_state = 13, .external_lex_state = 6}, [3127] = {.lex_state = 2, .external_lex_state = 4}, [3128] = {.lex_state = 2, .external_lex_state = 4}, [3129] = {.lex_state = 2, .external_lex_state = 4}, @@ -23251,87 +23260,87 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3134] = {.lex_state = 2, .external_lex_state = 4}, [3135] = {.lex_state = 2, .external_lex_state = 4}, [3136] = {.lex_state = 2, .external_lex_state = 4}, - [3137] = {.lex_state = 13, .external_lex_state = 6}, + [3137] = {.lex_state = 2, .external_lex_state = 4}, [3138] = {.lex_state = 2, .external_lex_state = 4}, - [3139] = {.lex_state = 2, .external_lex_state = 4}, + [3139] = {.lex_state = 13, .external_lex_state = 6}, [3140] = {.lex_state = 2, .external_lex_state = 4}, [3141] = {.lex_state = 2, .external_lex_state = 4}, [3142] = {.lex_state = 2, .external_lex_state = 4}, [3143] = {.lex_state = 2, .external_lex_state = 4}, - [3144] = {.lex_state = 13, .external_lex_state = 6}, - [3145] = {.lex_state = 13, .external_lex_state = 6}, - [3146] = {.lex_state = 2, .external_lex_state = 4}, + [3144] = {.lex_state = 2, .external_lex_state = 4}, + [3145] = {.lex_state = 2, .external_lex_state = 4}, + [3146] = {.lex_state = 13, .external_lex_state = 6}, [3147] = {.lex_state = 2, .external_lex_state = 4}, [3148] = {.lex_state = 2, .external_lex_state = 4}, - [3149] = {.lex_state = 2, .external_lex_state = 4}, - [3150] = {.lex_state = 2, .external_lex_state = 4}, + [3149] = {.lex_state = 11, .external_lex_state = 5}, + [3150] = {.lex_state = 11, .external_lex_state = 5}, [3151] = {.lex_state = 2, .external_lex_state = 4}, - [3152] = {.lex_state = 2, .external_lex_state = 4}, + [3152] = {.lex_state = 13, .external_lex_state = 6}, [3153] = {.lex_state = 2, .external_lex_state = 4}, [3154] = {.lex_state = 2, .external_lex_state = 4}, [3155] = {.lex_state = 11, .external_lex_state = 5}, [3156] = {.lex_state = 2, .external_lex_state = 4}, - [3157] = {.lex_state = 13, .external_lex_state = 6}, + [3157] = {.lex_state = 2, .external_lex_state = 4}, [3158] = {.lex_state = 2, .external_lex_state = 4}, [3159] = {.lex_state = 2, .external_lex_state = 4}, [3160] = {.lex_state = 2, .external_lex_state = 4}, [3161] = {.lex_state = 2, .external_lex_state = 4}, [3162] = {.lex_state = 2, .external_lex_state = 4}, [3163] = {.lex_state = 2, .external_lex_state = 4}, - [3164] = {.lex_state = 11, .external_lex_state = 5}, - [3165] = {.lex_state = 13, .external_lex_state = 6}, + [3164] = {.lex_state = 2, .external_lex_state = 4}, + [3165] = {.lex_state = 2, .external_lex_state = 4}, [3166] = {.lex_state = 2, .external_lex_state = 4}, [3167] = {.lex_state = 2, .external_lex_state = 4}, - [3168] = {.lex_state = 2, .external_lex_state = 4}, + [3168] = {.lex_state = 13, .external_lex_state = 6}, [3169] = {.lex_state = 2, .external_lex_state = 4}, [3170] = {.lex_state = 2, .external_lex_state = 4}, - [3171] = {.lex_state = 13, .external_lex_state = 6}, + [3171] = {.lex_state = 2, .external_lex_state = 4}, [3172] = {.lex_state = 2, .external_lex_state = 4}, - [3173] = {.lex_state = 13, .external_lex_state = 6}, + [3173] = {.lex_state = 2, .external_lex_state = 4}, [3174] = {.lex_state = 2, .external_lex_state = 4}, [3175] = {.lex_state = 13, .external_lex_state = 6}, [3176] = {.lex_state = 2, .external_lex_state = 4}, - [3177] = {.lex_state = 2, .external_lex_state = 4}, - [3178] = {.lex_state = 11, .external_lex_state = 5}, + [3177] = {.lex_state = 13, .external_lex_state = 6}, + [3178] = {.lex_state = 2, .external_lex_state = 4}, [3179] = {.lex_state = 2, .external_lex_state = 4}, - [3180] = {.lex_state = 11, .external_lex_state = 5}, + [3180] = {.lex_state = 2, .external_lex_state = 4}, [3181] = {.lex_state = 2, .external_lex_state = 4}, [3182] = {.lex_state = 2, .external_lex_state = 4}, [3183] = {.lex_state = 2, .external_lex_state = 4}, - [3184] = {.lex_state = 13, .external_lex_state = 6}, + [3184] = {.lex_state = 2, .external_lex_state = 4}, [3185] = {.lex_state = 2, .external_lex_state = 4}, - [3186] = {.lex_state = 2, .external_lex_state = 4}, + [3186] = {.lex_state = 13, .external_lex_state = 6}, [3187] = {.lex_state = 2, .external_lex_state = 4}, [3188] = {.lex_state = 2, .external_lex_state = 4}, - [3189] = {.lex_state = 2, .external_lex_state = 4}, + [3189] = {.lex_state = 13, .external_lex_state = 6}, [3190] = {.lex_state = 13, .external_lex_state = 6}, [3191] = {.lex_state = 2, .external_lex_state = 4}, - [3192] = {.lex_state = 2, .external_lex_state = 4}, - [3193] = {.lex_state = 2, .external_lex_state = 4}, + [3192] = {.lex_state = 13, .external_lex_state = 6}, + [3193] = {.lex_state = 13, .external_lex_state = 6}, [3194] = {.lex_state = 2, .external_lex_state = 4}, [3195] = {.lex_state = 2, .external_lex_state = 4}, - [3196] = {.lex_state = 11, .external_lex_state = 5}, + [3196] = {.lex_state = 2, .external_lex_state = 4}, [3197] = {.lex_state = 2, .external_lex_state = 4}, [3198] = {.lex_state = 13, .external_lex_state = 6}, - [3199] = {.lex_state = 2, .external_lex_state = 4}, + [3199] = {.lex_state = 13, .external_lex_state = 6}, [3200] = {.lex_state = 13, .external_lex_state = 6}, - [3201] = {.lex_state = 2, .external_lex_state = 4}, - [3202] = {.lex_state = 2, .external_lex_state = 4}, + [3201] = {.lex_state = 321, .external_lex_state = 2}, + [3202] = {.lex_state = 13, .external_lex_state = 6}, [3203] = {.lex_state = 2, .external_lex_state = 4}, [3204] = {.lex_state = 2, .external_lex_state = 4}, - [3205] = {.lex_state = 2, .external_lex_state = 4}, - [3206] = {.lex_state = 2, .external_lex_state = 4}, + [3205] = {.lex_state = 13, .external_lex_state = 6}, + [3206] = {.lex_state = 11, .external_lex_state = 5}, [3207] = {.lex_state = 2, .external_lex_state = 4}, [3208] = {.lex_state = 13, .external_lex_state = 6}, [3209] = {.lex_state = 2, .external_lex_state = 4}, [3210] = {.lex_state = 2, .external_lex_state = 4}, [3211] = {.lex_state = 2, .external_lex_state = 4}, [3212] = {.lex_state = 2, .external_lex_state = 4}, - [3213] = {.lex_state = 13, .external_lex_state = 6}, - [3214] = {.lex_state = 2, .external_lex_state = 4}, - [3215] = {.lex_state = 2, .external_lex_state = 4}, + [3213] = {.lex_state = 2, .external_lex_state = 4}, + [3214] = {.lex_state = 13, .external_lex_state = 6}, + [3215] = {.lex_state = 13, .external_lex_state = 6}, [3216] = {.lex_state = 2, .external_lex_state = 4}, - [3217] = {.lex_state = 13, .external_lex_state = 6}, + [3217] = {.lex_state = 2, .external_lex_state = 4}, [3218] = {.lex_state = 2, .external_lex_state = 4}, [3219] = {.lex_state = 2, .external_lex_state = 4}, [3220] = {.lex_state = 2, .external_lex_state = 4}, @@ -23343,18 +23352,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3226] = {.lex_state = 2, .external_lex_state = 4}, [3227] = {.lex_state = 2, .external_lex_state = 4}, [3228] = {.lex_state = 2, .external_lex_state = 4}, - [3229] = {.lex_state = 2, .external_lex_state = 4}, + [3229] = {.lex_state = 13, .external_lex_state = 6}, [3230] = {.lex_state = 2, .external_lex_state = 4}, - [3231] = {.lex_state = 2, .external_lex_state = 4}, + [3231] = {.lex_state = 13, .external_lex_state = 6}, [3232] = {.lex_state = 2, .external_lex_state = 4}, [3233] = {.lex_state = 2, .external_lex_state = 4}, [3234] = {.lex_state = 2, .external_lex_state = 4}, - [3235] = {.lex_state = 13, .external_lex_state = 6}, + [3235] = {.lex_state = 2, .external_lex_state = 4}, [3236] = {.lex_state = 2, .external_lex_state = 4}, [3237] = {.lex_state = 2, .external_lex_state = 4}, [3238] = {.lex_state = 2, .external_lex_state = 4}, - [3239] = {.lex_state = 2, .external_lex_state = 4}, - [3240] = {.lex_state = 2, .external_lex_state = 4}, + [3239] = {.lex_state = 13, .external_lex_state = 6}, + [3240] = {.lex_state = 13, .external_lex_state = 6}, [3241] = {.lex_state = 2, .external_lex_state = 4}, [3242] = {.lex_state = 2, .external_lex_state = 4}, [3243] = {.lex_state = 2, .external_lex_state = 4}, @@ -23366,64 +23375,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3249] = {.lex_state = 13, .external_lex_state = 6}, [3250] = {.lex_state = 2, .external_lex_state = 4}, [3251] = {.lex_state = 2, .external_lex_state = 4}, - [3252] = {.lex_state = 13, .external_lex_state = 6}, + [3252] = {.lex_state = 2, .external_lex_state = 4}, [3253] = {.lex_state = 2, .external_lex_state = 4}, [3254] = {.lex_state = 2, .external_lex_state = 4}, [3255] = {.lex_state = 2, .external_lex_state = 4}, - [3256] = {.lex_state = 2, .external_lex_state = 4}, + [3256] = {.lex_state = 13, .external_lex_state = 6}, [3257] = {.lex_state = 2, .external_lex_state = 4}, [3258] = {.lex_state = 2, .external_lex_state = 4}, - [3259] = {.lex_state = 2, .external_lex_state = 4}, + [3259] = {.lex_state = 13, .external_lex_state = 6}, [3260] = {.lex_state = 2, .external_lex_state = 4}, [3261] = {.lex_state = 2, .external_lex_state = 4}, - [3262] = {.lex_state = 13, .external_lex_state = 6}, + [3262] = {.lex_state = 2, .external_lex_state = 4}, [3263] = {.lex_state = 2, .external_lex_state = 4}, [3264] = {.lex_state = 2, .external_lex_state = 4}, - [3265] = {.lex_state = 13, .external_lex_state = 6}, + [3265] = {.lex_state = 2, .external_lex_state = 4}, [3266] = {.lex_state = 2, .external_lex_state = 4}, - [3267] = {.lex_state = 2, .external_lex_state = 4}, + [3267] = {.lex_state = 11, .external_lex_state = 5}, [3268] = {.lex_state = 2, .external_lex_state = 4}, [3269] = {.lex_state = 2, .external_lex_state = 4}, [3270] = {.lex_state = 2, .external_lex_state = 4}, - [3271] = {.lex_state = 13, .external_lex_state = 6}, - [3272] = {.lex_state = 13, .external_lex_state = 6}, - [3273] = {.lex_state = 13, .external_lex_state = 7}, + [3271] = {.lex_state = 13, .external_lex_state = 7}, + [3272] = {.lex_state = 14, .external_lex_state = 6}, + [3273] = {.lex_state = 13, .external_lex_state = 6}, [3274] = {.lex_state = 13, .external_lex_state = 6}, - [3275] = {.lex_state = 14, .external_lex_state = 6}, + [3275] = {.lex_state = 13, .external_lex_state = 6}, [3276] = {.lex_state = 13, .external_lex_state = 6}, - [3277] = {.lex_state = 2, .external_lex_state = 3}, + [3277] = {.lex_state = 2, .external_lex_state = 4}, [3278] = {.lex_state = 13, .external_lex_state = 6}, - [3279] = {.lex_state = 2, .external_lex_state = 3}, - [3280] = {.lex_state = 14, .external_lex_state = 6}, + [3279] = {.lex_state = 13, .external_lex_state = 6}, + [3280] = {.lex_state = 13, .external_lex_state = 6}, [3281] = {.lex_state = 13, .external_lex_state = 6}, - [3282] = {.lex_state = 13, .external_lex_state = 6}, - [3283] = {.lex_state = 13, .external_lex_state = 6}, - [3284] = {.lex_state = 13, .external_lex_state = 6}, + [3282] = {.lex_state = 2, .external_lex_state = 4}, + [3283] = {.lex_state = 2, .external_lex_state = 4}, + [3284] = {.lex_state = 2, .external_lex_state = 4}, [3285] = {.lex_state = 13, .external_lex_state = 6}, - [3286] = {.lex_state = 14, .external_lex_state = 6}, + [3286] = {.lex_state = 13, .external_lex_state = 7}, [3287] = {.lex_state = 13, .external_lex_state = 6}, - [3288] = {.lex_state = 14, .external_lex_state = 6}, - [3289] = {.lex_state = 13, .external_lex_state = 6}, + [3288] = {.lex_state = 13, .external_lex_state = 7}, + [3289] = {.lex_state = 2, .external_lex_state = 4}, [3290] = {.lex_state = 13, .external_lex_state = 7}, - [3291] = {.lex_state = 13, .external_lex_state = 6}, + [3291] = {.lex_state = 14, .external_lex_state = 6}, [3292] = {.lex_state = 13, .external_lex_state = 6}, [3293] = {.lex_state = 13, .external_lex_state = 7}, - [3294] = {.lex_state = 13, .external_lex_state = 6}, - [3295] = {.lex_state = 13, .external_lex_state = 6}, - [3296] = {.lex_state = 13, .external_lex_state = 7}, - [3297] = {.lex_state = 13, .external_lex_state = 7}, - [3298] = {.lex_state = 13, .external_lex_state = 7}, + [3294] = {.lex_state = 13, .external_lex_state = 7}, + [3295] = {.lex_state = 14, .external_lex_state = 6}, + [3296] = {.lex_state = 15, .external_lex_state = 6}, + [3297] = {.lex_state = 14, .external_lex_state = 6}, + [3298] = {.lex_state = 14, .external_lex_state = 6}, [3299] = {.lex_state = 13, .external_lex_state = 6}, [3300] = {.lex_state = 13, .external_lex_state = 6}, - [3301] = {.lex_state = 13, .external_lex_state = 6}, + [3301] = {.lex_state = 14, .external_lex_state = 6}, [3302] = {.lex_state = 13, .external_lex_state = 6}, [3303] = {.lex_state = 13, .external_lex_state = 6}, [3304] = {.lex_state = 13, .external_lex_state = 6}, - [3305] = {.lex_state = 13, .external_lex_state = 7}, - [3306] = {.lex_state = 13, .external_lex_state = 7}, - [3307] = {.lex_state = 14, .external_lex_state = 6}, + [3305] = {.lex_state = 13, .external_lex_state = 6}, + [3306] = {.lex_state = 13, .external_lex_state = 6}, + [3307] = {.lex_state = 2, .external_lex_state = 3}, [3308] = {.lex_state = 13, .external_lex_state = 6}, - [3309] = {.lex_state = 13, .external_lex_state = 6}, + [3309] = {.lex_state = 2, .external_lex_state = 3}, [3310] = {.lex_state = 13, .external_lex_state = 6}, [3311] = {.lex_state = 13, .external_lex_state = 6}, [3312] = {.lex_state = 13, .external_lex_state = 6}, @@ -23435,148 +23444,148 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3318] = {.lex_state = 13, .external_lex_state = 6}, [3319] = {.lex_state = 13, .external_lex_state = 6}, [3320] = {.lex_state = 13, .external_lex_state = 6}, - [3321] = {.lex_state = 13, .external_lex_state = 6}, - [3322] = {.lex_state = 13, .external_lex_state = 6}, - [3323] = {.lex_state = 13, .external_lex_state = 6}, - [3324] = {.lex_state = 14, .external_lex_state = 6}, - [3325] = {.lex_state = 13, .external_lex_state = 7}, - [3326] = {.lex_state = 2, .external_lex_state = 4}, + [3321] = {.lex_state = 13, .external_lex_state = 7}, + [3322] = {.lex_state = 14, .external_lex_state = 6}, + [3323] = {.lex_state = 14, .external_lex_state = 6}, + [3324] = {.lex_state = 13, .external_lex_state = 6}, + [3325] = {.lex_state = 13, .external_lex_state = 6}, + [3326] = {.lex_state = 14, .external_lex_state = 6}, [3327] = {.lex_state = 13, .external_lex_state = 6}, - [3328] = {.lex_state = 2, .external_lex_state = 4}, + [3328] = {.lex_state = 14, .external_lex_state = 6}, [3329] = {.lex_state = 13, .external_lex_state = 6}, - [3330] = {.lex_state = 2, .external_lex_state = 4}, - [3331] = {.lex_state = 2, .external_lex_state = 4}, - [3332] = {.lex_state = 2, .external_lex_state = 4}, - [3333] = {.lex_state = 13, .external_lex_state = 6}, - [3334] = {.lex_state = 13, .external_lex_state = 6}, - [3335] = {.lex_state = 13, .external_lex_state = 6}, - [3336] = {.lex_state = 13, .external_lex_state = 6}, - [3337] = {.lex_state = 14, .external_lex_state = 6}, - [3338] = {.lex_state = 14, .external_lex_state = 6}, + [3330] = {.lex_state = 13, .external_lex_state = 6}, + [3331] = {.lex_state = 14, .external_lex_state = 6}, + [3332] = {.lex_state = 13, .external_lex_state = 7}, + [3333] = {.lex_state = 14, .external_lex_state = 6}, + [3334] = {.lex_state = 13, .external_lex_state = 7}, + [3335] = {.lex_state = 13, .external_lex_state = 7}, + [3336] = {.lex_state = 13, .external_lex_state = 7}, + [3337] = {.lex_state = 13, .external_lex_state = 6}, + [3338] = {.lex_state = 13, .external_lex_state = 6}, [3339] = {.lex_state = 13, .external_lex_state = 6}, - [3340] = {.lex_state = 13, .external_lex_state = 6}, - [3341] = {.lex_state = 13, .external_lex_state = 6}, - [3342] = {.lex_state = 13, .external_lex_state = 7}, - [3343] = {.lex_state = 14, .external_lex_state = 6}, - [3344] = {.lex_state = 14, .external_lex_state = 6}, + [3340] = {.lex_state = 14, .external_lex_state = 6}, + [3341] = {.lex_state = 14, .external_lex_state = 6}, + [3342] = {.lex_state = 13, .external_lex_state = 6}, + [3343] = {.lex_state = 13, .external_lex_state = 6}, + [3344] = {.lex_state = 13, .external_lex_state = 6}, [3345] = {.lex_state = 13, .external_lex_state = 6}, - [3346] = {.lex_state = 13, .external_lex_state = 7}, - [3347] = {.lex_state = 13, .external_lex_state = 7}, - [3348] = {.lex_state = 15, .external_lex_state = 6}, - [3349] = {.lex_state = 13, .external_lex_state = 6}, + [3346] = {.lex_state = 14, .external_lex_state = 6}, + [3347] = {.lex_state = 13, .external_lex_state = 6}, + [3348] = {.lex_state = 13, .external_lex_state = 6}, + [3349] = {.lex_state = 13, .external_lex_state = 7}, [3350] = {.lex_state = 13, .external_lex_state = 6}, [3351] = {.lex_state = 13, .external_lex_state = 6}, [3352] = {.lex_state = 14, .external_lex_state = 6}, - [3353] = {.lex_state = 14, .external_lex_state = 6}, + [3353] = {.lex_state = 13, .external_lex_state = 6}, [3354] = {.lex_state = 14, .external_lex_state = 6}, - [3355] = {.lex_state = 13, .external_lex_state = 6}, + [3355] = {.lex_state = 14, .external_lex_state = 6}, [3356] = {.lex_state = 13, .external_lex_state = 6}, - [3357] = {.lex_state = 14, .external_lex_state = 6}, - [3358] = {.lex_state = 14, .external_lex_state = 6}, - [3359] = {.lex_state = 14, .external_lex_state = 6}, - [3360] = {.lex_state = 14, .external_lex_state = 6}, - [3361] = {.lex_state = 14, .external_lex_state = 6}, + [3357] = {.lex_state = 13, .external_lex_state = 6}, + [3358] = {.lex_state = 13, .external_lex_state = 6}, + [3359] = {.lex_state = 13, .external_lex_state = 6}, + [3360] = {.lex_state = 13, .external_lex_state = 6}, + [3361] = {.lex_state = 13, .external_lex_state = 6}, [3362] = {.lex_state = 13, .external_lex_state = 6}, [3363] = {.lex_state = 13, .external_lex_state = 6}, - [3364] = {.lex_state = 13, .external_lex_state = 7}, - [3365] = {.lex_state = 13, .external_lex_state = 6}, + [3364] = {.lex_state = 13, .external_lex_state = 6}, + [3365] = {.lex_state = 13, .external_lex_state = 7}, [3366] = {.lex_state = 13, .external_lex_state = 6}, [3367] = {.lex_state = 13, .external_lex_state = 6}, - [3368] = {.lex_state = 13, .external_lex_state = 7}, - [3369] = {.lex_state = 13, .external_lex_state = 7}, + [3368] = {.lex_state = 13, .external_lex_state = 6}, + [3369] = {.lex_state = 13, .external_lex_state = 6}, [3370] = {.lex_state = 13, .external_lex_state = 7}, - [3371] = {.lex_state = 13, .external_lex_state = 7}, + [3371] = {.lex_state = 13, .external_lex_state = 6}, [3372] = {.lex_state = 13, .external_lex_state = 6}, [3373] = {.lex_state = 13, .external_lex_state = 6}, - [3374] = {.lex_state = 13, .external_lex_state = 6}, - [3375] = {.lex_state = 13, .external_lex_state = 7}, - [3376] = {.lex_state = 13, .external_lex_state = 7}, - [3377] = {.lex_state = 13, .external_lex_state = 7}, - [3378] = {.lex_state = 13, .external_lex_state = 7}, - [3379] = {.lex_state = 13, .external_lex_state = 7}, - [3380] = {.lex_state = 13, .external_lex_state = 6}, + [3374] = {.lex_state = 13, .external_lex_state = 7}, + [3375] = {.lex_state = 11, .external_lex_state = 5}, + [3376] = {.lex_state = 13, .external_lex_state = 6}, + [3377] = {.lex_state = 13, .external_lex_state = 6}, + [3378] = {.lex_state = 13, .external_lex_state = 6}, + [3379] = {.lex_state = 11, .external_lex_state = 5}, + [3380] = {.lex_state = 13, .external_lex_state = 7}, [3381] = {.lex_state = 13, .external_lex_state = 6}, [3382] = {.lex_state = 13, .external_lex_state = 6}, - [3383] = {.lex_state = 321, .external_lex_state = 2}, + [3383] = {.lex_state = 13, .external_lex_state = 6}, [3384] = {.lex_state = 13, .external_lex_state = 6}, - [3385] = {.lex_state = 13, .external_lex_state = 7}, - [3386] = {.lex_state = 13, .external_lex_state = 7}, + [3385] = {.lex_state = 13, .external_lex_state = 6}, + [3386] = {.lex_state = 13, .external_lex_state = 6}, [3387] = {.lex_state = 13, .external_lex_state = 6}, [3388] = {.lex_state = 13, .external_lex_state = 6}, [3389] = {.lex_state = 13, .external_lex_state = 6}, [3390] = {.lex_state = 13, .external_lex_state = 6}, [3391] = {.lex_state = 13, .external_lex_state = 6}, [3392] = {.lex_state = 13, .external_lex_state = 6}, - [3393] = {.lex_state = 2, .external_lex_state = 4}, + [3393] = {.lex_state = 13, .external_lex_state = 6}, [3394] = {.lex_state = 13, .external_lex_state = 6}, - [3395] = {.lex_state = 2, .external_lex_state = 4}, + [3395] = {.lex_state = 13, .external_lex_state = 6}, [3396] = {.lex_state = 13, .external_lex_state = 6}, - [3397] = {.lex_state = 13, .external_lex_state = 7}, + [3397] = {.lex_state = 321, .external_lex_state = 2}, [3398] = {.lex_state = 13, .external_lex_state = 6}, [3399] = {.lex_state = 13, .external_lex_state = 6}, - [3400] = {.lex_state = 13, .external_lex_state = 7}, + [3400] = {.lex_state = 13, .external_lex_state = 6}, [3401] = {.lex_state = 13, .external_lex_state = 6}, [3402] = {.lex_state = 13, .external_lex_state = 6}, - [3403] = {.lex_state = 13, .external_lex_state = 6}, + [3403] = {.lex_state = 321, .external_lex_state = 2}, [3404] = {.lex_state = 13, .external_lex_state = 6}, [3405] = {.lex_state = 13, .external_lex_state = 6}, - [3406] = {.lex_state = 11, .external_lex_state = 5}, + [3406] = {.lex_state = 13, .external_lex_state = 6}, [3407] = {.lex_state = 13, .external_lex_state = 6}, [3408] = {.lex_state = 13, .external_lex_state = 6}, [3409] = {.lex_state = 13, .external_lex_state = 6}, [3410] = {.lex_state = 13, .external_lex_state = 6}, - [3411] = {.lex_state = 2, .external_lex_state = 4}, - [3412] = {.lex_state = 2, .external_lex_state = 4}, + [3411] = {.lex_state = 13, .external_lex_state = 7}, + [3412] = {.lex_state = 13, .external_lex_state = 6}, [3413] = {.lex_state = 13, .external_lex_state = 6}, - [3414] = {.lex_state = 13, .external_lex_state = 6}, + [3414] = {.lex_state = 2, .external_lex_state = 4}, [3415] = {.lex_state = 13, .external_lex_state = 6}, - [3416] = {.lex_state = 13, .external_lex_state = 6}, + [3416] = {.lex_state = 2, .external_lex_state = 4}, [3417] = {.lex_state = 13, .external_lex_state = 6}, - [3418] = {.lex_state = 13, .external_lex_state = 6}, - [3419] = {.lex_state = 13, .external_lex_state = 7}, + [3418] = {.lex_state = 13, .external_lex_state = 7}, + [3419] = {.lex_state = 11, .external_lex_state = 5}, [3420] = {.lex_state = 13, .external_lex_state = 6}, - [3421] = {.lex_state = 13, .external_lex_state = 6}, - [3422] = {.lex_state = 13, .external_lex_state = 6}, - [3423] = {.lex_state = 13, .external_lex_state = 7}, - [3424] = {.lex_state = 2, .external_lex_state = 4}, + [3421] = {.lex_state = 13, .external_lex_state = 7}, + [3422] = {.lex_state = 13, .external_lex_state = 7}, + [3423] = {.lex_state = 13, .external_lex_state = 6}, + [3424] = {.lex_state = 13, .external_lex_state = 7}, [3425] = {.lex_state = 13, .external_lex_state = 6}, - [3426] = {.lex_state = 13, .external_lex_state = 6}, + [3426] = {.lex_state = 13, .external_lex_state = 7}, [3427] = {.lex_state = 13, .external_lex_state = 6}, - [3428] = {.lex_state = 13, .external_lex_state = 6}, + [3428] = {.lex_state = 2, .external_lex_state = 4}, [3429] = {.lex_state = 2, .external_lex_state = 4}, - [3430] = {.lex_state = 2, .external_lex_state = 4}, - [3431] = {.lex_state = 2, .external_lex_state = 4}, - [3432] = {.lex_state = 13, .external_lex_state = 6}, - [3433] = {.lex_state = 13, .external_lex_state = 6}, - [3434] = {.lex_state = 13, .external_lex_state = 6}, + [3430] = {.lex_state = 13, .external_lex_state = 6}, + [3431] = {.lex_state = 321, .external_lex_state = 2}, + [3432] = {.lex_state = 321, .external_lex_state = 2}, + [3433] = {.lex_state = 2, .external_lex_state = 4}, + [3434] = {.lex_state = 2, .external_lex_state = 4}, [3435] = {.lex_state = 13, .external_lex_state = 6}, - [3436] = {.lex_state = 2, .external_lex_state = 4}, + [3436] = {.lex_state = 13, .external_lex_state = 6}, [3437] = {.lex_state = 13, .external_lex_state = 6}, - [3438] = {.lex_state = 2, .external_lex_state = 4}, - [3439] = {.lex_state = 2, .external_lex_state = 4}, - [3440] = {.lex_state = 2, .external_lex_state = 4}, - [3441] = {.lex_state = 2, .external_lex_state = 4}, + [3438] = {.lex_state = 13, .external_lex_state = 7}, + [3439] = {.lex_state = 13, .external_lex_state = 6}, + [3440] = {.lex_state = 13, .external_lex_state = 7}, + [3441] = {.lex_state = 13, .external_lex_state = 7}, [3442] = {.lex_state = 13, .external_lex_state = 6}, - [3443] = {.lex_state = 11, .external_lex_state = 5}, - [3444] = {.lex_state = 11, .external_lex_state = 5}, - [3445] = {.lex_state = 11, .external_lex_state = 5}, + [3443] = {.lex_state = 13, .external_lex_state = 6}, + [3444] = {.lex_state = 13, .external_lex_state = 6}, + [3445] = {.lex_state = 13, .external_lex_state = 6}, [3446] = {.lex_state = 13, .external_lex_state = 6}, [3447] = {.lex_state = 13, .external_lex_state = 6}, - [3448] = {.lex_state = 321, .external_lex_state = 2}, - [3449] = {.lex_state = 321, .external_lex_state = 2}, - [3450] = {.lex_state = 13, .external_lex_state = 6}, + [3448] = {.lex_state = 13, .external_lex_state = 6}, + [3449] = {.lex_state = 2, .external_lex_state = 4}, + [3450] = {.lex_state = 2, .external_lex_state = 4}, [3451] = {.lex_state = 13, .external_lex_state = 6}, [3452] = {.lex_state = 13, .external_lex_state = 6}, [3453] = {.lex_state = 13, .external_lex_state = 6}, - [3454] = {.lex_state = 13, .external_lex_state = 6}, - [3455] = {.lex_state = 13, .external_lex_state = 6}, - [3456] = {.lex_state = 2, .external_lex_state = 4}, - [3457] = {.lex_state = 13, .external_lex_state = 6}, + [3454] = {.lex_state = 11, .external_lex_state = 5}, + [3455] = {.lex_state = 13, .external_lex_state = 7}, + [3456] = {.lex_state = 13, .external_lex_state = 6}, + [3457] = {.lex_state = 11, .external_lex_state = 5}, [3458] = {.lex_state = 13, .external_lex_state = 6}, - [3459] = {.lex_state = 13, .external_lex_state = 6}, + [3459] = {.lex_state = 11, .external_lex_state = 5}, [3460] = {.lex_state = 13, .external_lex_state = 6}, - [3461] = {.lex_state = 2, .external_lex_state = 4}, - [3462] = {.lex_state = 13, .external_lex_state = 6}, + [3461] = {.lex_state = 13, .external_lex_state = 6}, + [3462] = {.lex_state = 321, .external_lex_state = 2}, [3463] = {.lex_state = 13, .external_lex_state = 6}, [3464] = {.lex_state = 13, .external_lex_state = 6}, [3465] = {.lex_state = 13, .external_lex_state = 6}, @@ -23584,397 +23593,397 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3467] = {.lex_state = 13, .external_lex_state = 6}, [3468] = {.lex_state = 13, .external_lex_state = 6}, [3469] = {.lex_state = 13, .external_lex_state = 6}, - [3470] = {.lex_state = 13, .external_lex_state = 6}, + [3470] = {.lex_state = 13, .external_lex_state = 7}, [3471] = {.lex_state = 13, .external_lex_state = 6}, - [3472] = {.lex_state = 13, .external_lex_state = 6}, + [3472] = {.lex_state = 2, .external_lex_state = 4}, [3473] = {.lex_state = 13, .external_lex_state = 6}, - [3474] = {.lex_state = 13, .external_lex_state = 6}, - [3475] = {.lex_state = 13, .external_lex_state = 6}, + [3474] = {.lex_state = 2, .external_lex_state = 4}, + [3475] = {.lex_state = 2, .external_lex_state = 4}, [3476] = {.lex_state = 13, .external_lex_state = 6}, - [3477] = {.lex_state = 13, .external_lex_state = 6}, - [3478] = {.lex_state = 13, .external_lex_state = 6}, + [3477] = {.lex_state = 13, .external_lex_state = 7}, + [3478] = {.lex_state = 13, .external_lex_state = 7}, [3479] = {.lex_state = 13, .external_lex_state = 6}, - [3480] = {.lex_state = 13, .external_lex_state = 6}, + [3480] = {.lex_state = 13, .external_lex_state = 7}, [3481] = {.lex_state = 13, .external_lex_state = 6}, [3482] = {.lex_state = 13, .external_lex_state = 6}, - [3483] = {.lex_state = 11, .external_lex_state = 5}, + [3483] = {.lex_state = 13, .external_lex_state = 7}, [3484] = {.lex_state = 13, .external_lex_state = 6}, - [3485] = {.lex_state = 11, .external_lex_state = 5}, + [3485] = {.lex_state = 13, .external_lex_state = 6}, [3486] = {.lex_state = 13, .external_lex_state = 6}, - [3487] = {.lex_state = 13, .external_lex_state = 6}, - [3488] = {.lex_state = 13, .external_lex_state = 6}, + [3487] = {.lex_state = 13, .external_lex_state = 7}, + [3488] = {.lex_state = 13, .external_lex_state = 7}, [3489] = {.lex_state = 13, .external_lex_state = 6}, - [3490] = {.lex_state = 13, .external_lex_state = 6}, + [3490] = {.lex_state = 13, .external_lex_state = 7}, [3491] = {.lex_state = 13, .external_lex_state = 6}, - [3492] = {.lex_state = 13, .external_lex_state = 6}, - [3493] = {.lex_state = 13, .external_lex_state = 6}, + [3492] = {.lex_state = 2, .external_lex_state = 4}, + [3493] = {.lex_state = 2, .external_lex_state = 4}, [3494] = {.lex_state = 13, .external_lex_state = 6}, - [3495] = {.lex_state = 13, .external_lex_state = 6}, - [3496] = {.lex_state = 13, .external_lex_state = 6}, + [3495] = {.lex_state = 11, .external_lex_state = 5}, + [3496] = {.lex_state = 11, .external_lex_state = 5}, [3497] = {.lex_state = 13, .external_lex_state = 6}, - [3498] = {.lex_state = 321, .external_lex_state = 2}, + [3498] = {.lex_state = 2, .external_lex_state = 4}, [3499] = {.lex_state = 13, .external_lex_state = 6}, - [3500] = {.lex_state = 13, .external_lex_state = 6}, + [3500] = {.lex_state = 2, .external_lex_state = 4}, [3501] = {.lex_state = 13, .external_lex_state = 6}, [3502] = {.lex_state = 13, .external_lex_state = 6}, [3503] = {.lex_state = 13, .external_lex_state = 6}, - [3504] = {.lex_state = 13, .external_lex_state = 6}, - [3505] = {.lex_state = 13, .external_lex_state = 6}, + [3504] = {.lex_state = 11, .external_lex_state = 5}, + [3505] = {.lex_state = 2, .external_lex_state = 4}, [3506] = {.lex_state = 13, .external_lex_state = 6}, - [3507] = {.lex_state = 13, .external_lex_state = 6}, + [3507] = {.lex_state = 2, .external_lex_state = 4}, [3508] = {.lex_state = 13, .external_lex_state = 6}, - [3509] = {.lex_state = 13, .external_lex_state = 6}, - [3510] = {.lex_state = 13, .external_lex_state = 6}, - [3511] = {.lex_state = 13, .external_lex_state = 6}, - [3512] = {.lex_state = 13, .external_lex_state = 6}, + [3509] = {.lex_state = 2, .external_lex_state = 4}, + [3510] = {.lex_state = 2, .external_lex_state = 4}, + [3511] = {.lex_state = 2, .external_lex_state = 4}, + [3512] = {.lex_state = 2, .external_lex_state = 4}, [3513] = {.lex_state = 13, .external_lex_state = 6}, [3514] = {.lex_state = 13, .external_lex_state = 6}, [3515] = {.lex_state = 13, .external_lex_state = 6}, [3516] = {.lex_state = 13, .external_lex_state = 6}, - [3517] = {.lex_state = 11, .external_lex_state = 5}, - [3518] = {.lex_state = 11, .external_lex_state = 5}, - [3519] = {.lex_state = 13, .external_lex_state = 6}, + [3517] = {.lex_state = 2, .external_lex_state = 4}, + [3518] = {.lex_state = 13, .external_lex_state = 6}, + [3519] = {.lex_state = 11, .external_lex_state = 5}, [3520] = {.lex_state = 13, .external_lex_state = 6}, [3521] = {.lex_state = 13, .external_lex_state = 6}, [3522] = {.lex_state = 13, .external_lex_state = 6}, - [3523] = {.lex_state = 13, .external_lex_state = 6}, + [3523] = {.lex_state = 13, .external_lex_state = 7}, [3524] = {.lex_state = 13, .external_lex_state = 6}, [3525] = {.lex_state = 13, .external_lex_state = 6}, - [3526] = {.lex_state = 13, .external_lex_state = 6}, - [3527] = {.lex_state = 13, .external_lex_state = 6}, - [3528] = {.lex_state = 13, .external_lex_state = 6}, + [3526] = {.lex_state = 2, .external_lex_state = 4}, + [3527] = {.lex_state = 11, .external_lex_state = 5}, + [3528] = {.lex_state = 11, .external_lex_state = 5}, [3529] = {.lex_state = 13, .external_lex_state = 6}, - [3530] = {.lex_state = 13, .external_lex_state = 6}, + [3530] = {.lex_state = 2, .external_lex_state = 4}, [3531] = {.lex_state = 13, .external_lex_state = 6}, - [3532] = {.lex_state = 13, .external_lex_state = 6}, + [3532] = {.lex_state = 13, .external_lex_state = 7}, [3533] = {.lex_state = 13, .external_lex_state = 6}, [3534] = {.lex_state = 13, .external_lex_state = 6}, - [3535] = {.lex_state = 11, .external_lex_state = 5}, + [3535] = {.lex_state = 2, .external_lex_state = 4}, [3536] = {.lex_state = 13, .external_lex_state = 6}, - [3537] = {.lex_state = 13, .external_lex_state = 7}, - [3538] = {.lex_state = 321, .external_lex_state = 2}, + [3537] = {.lex_state = 2, .external_lex_state = 4}, + [3538] = {.lex_state = 13, .external_lex_state = 6}, [3539] = {.lex_state = 13, .external_lex_state = 6}, - [3540] = {.lex_state = 11, .external_lex_state = 5}, + [3540] = {.lex_state = 13, .external_lex_state = 6}, [3541] = {.lex_state = 13, .external_lex_state = 6}, - [3542] = {.lex_state = 13, .external_lex_state = 7}, + [3542] = {.lex_state = 13, .external_lex_state = 6}, [3543] = {.lex_state = 13, .external_lex_state = 6}, - [3544] = {.lex_state = 13, .external_lex_state = 7}, - [3545] = {.lex_state = 13, .external_lex_state = 7}, - [3546] = {.lex_state = 13, .external_lex_state = 7}, - [3547] = {.lex_state = 13, .external_lex_state = 7}, - [3548] = {.lex_state = 13, .external_lex_state = 6}, + [3544] = {.lex_state = 13, .external_lex_state = 6}, + [3545] = {.lex_state = 13, .external_lex_state = 6}, + [3546] = {.lex_state = 13, .external_lex_state = 6}, + [3547] = {.lex_state = 13, .external_lex_state = 6}, + [3548] = {.lex_state = 13, .external_lex_state = 7}, [3549] = {.lex_state = 13, .external_lex_state = 6}, - [3550] = {.lex_state = 13, .external_lex_state = 7}, - [3551] = {.lex_state = 13, .external_lex_state = 6}, - [3552] = {.lex_state = 13, .external_lex_state = 7}, - [3553] = {.lex_state = 13, .external_lex_state = 7}, - [3554] = {.lex_state = 13, .external_lex_state = 7}, - [3555] = {.lex_state = 13, .external_lex_state = 7}, + [3550] = {.lex_state = 11, .external_lex_state = 5}, + [3551] = {.lex_state = 2, .external_lex_state = 4}, + [3552] = {.lex_state = 13, .external_lex_state = 6}, + [3553] = {.lex_state = 13, .external_lex_state = 6}, + [3554] = {.lex_state = 13, .external_lex_state = 6}, + [3555] = {.lex_state = 13, .external_lex_state = 6}, [3556] = {.lex_state = 13, .external_lex_state = 7}, - [3557] = {.lex_state = 13, .external_lex_state = 7}, + [3557] = {.lex_state = 13, .external_lex_state = 6}, [3558] = {.lex_state = 13, .external_lex_state = 6}, - [3559] = {.lex_state = 13, .external_lex_state = 6}, - [3560] = {.lex_state = 11, .external_lex_state = 5}, - [3561] = {.lex_state = 13, .external_lex_state = 7}, + [3559] = {.lex_state = 13, .external_lex_state = 7}, + [3560] = {.lex_state = 13, .external_lex_state = 6}, + [3561] = {.lex_state = 13, .external_lex_state = 6}, [3562] = {.lex_state = 13, .external_lex_state = 6}, - [3563] = {.lex_state = 13, .external_lex_state = 7}, - [3564] = {.lex_state = 13, .external_lex_state = 6}, - [3565] = {.lex_state = 2, .external_lex_state = 4}, - [3566] = {.lex_state = 2, .external_lex_state = 4}, - [3567] = {.lex_state = 2, .external_lex_state = 4}, + [3563] = {.lex_state = 13, .external_lex_state = 6}, + [3564] = {.lex_state = 13, .external_lex_state = 7}, + [3565] = {.lex_state = 13, .external_lex_state = 6}, + [3566] = {.lex_state = 13, .external_lex_state = 6}, + [3567] = {.lex_state = 13, .external_lex_state = 6}, [3568] = {.lex_state = 13, .external_lex_state = 6}, - [3569] = {.lex_state = 2, .external_lex_state = 4}, + [3569] = {.lex_state = 13, .external_lex_state = 6}, [3570] = {.lex_state = 13, .external_lex_state = 6}, - [3571] = {.lex_state = 13, .external_lex_state = 6}, - [3572] = {.lex_state = 2, .external_lex_state = 4}, - [3573] = {.lex_state = 11, .external_lex_state = 5}, + [3571] = {.lex_state = 13, .external_lex_state = 7}, + [3572] = {.lex_state = 13, .external_lex_state = 7}, + [3573] = {.lex_state = 13, .external_lex_state = 6}, [3574] = {.lex_state = 13, .external_lex_state = 6}, [3575] = {.lex_state = 13, .external_lex_state = 6}, [3576] = {.lex_state = 13, .external_lex_state = 6}, [3577] = {.lex_state = 13, .external_lex_state = 6}, [3578] = {.lex_state = 13, .external_lex_state = 6}, [3579] = {.lex_state = 13, .external_lex_state = 6}, - [3580] = {.lex_state = 13, .external_lex_state = 7}, + [3580] = {.lex_state = 13, .external_lex_state = 6}, [3581] = {.lex_state = 13, .external_lex_state = 6}, [3582] = {.lex_state = 13, .external_lex_state = 6}, - [3583] = {.lex_state = 2, .external_lex_state = 4}, + [3583] = {.lex_state = 13, .external_lex_state = 6}, [3584] = {.lex_state = 13, .external_lex_state = 6}, - [3585] = {.lex_state = 2, .external_lex_state = 4}, + [3585] = {.lex_state = 13, .external_lex_state = 6}, [3586] = {.lex_state = 13, .external_lex_state = 6}, - [3587] = {.lex_state = 11, .external_lex_state = 5}, - [3588] = {.lex_state = 2, .external_lex_state = 4}, + [3587] = {.lex_state = 13, .external_lex_state = 6}, + [3588] = {.lex_state = 13, .external_lex_state = 6}, [3589] = {.lex_state = 13, .external_lex_state = 6}, - [3590] = {.lex_state = 13, .external_lex_state = 6}, - [3591] = {.lex_state = 2, .external_lex_state = 4}, - [3592] = {.lex_state = 13, .external_lex_state = 6}, + [3590] = {.lex_state = 13, .external_lex_state = 7}, + [3591] = {.lex_state = 13, .external_lex_state = 6}, + [3592] = {.lex_state = 13, .external_lex_state = 7}, [3593] = {.lex_state = 13, .external_lex_state = 6}, [3594] = {.lex_state = 13, .external_lex_state = 6}, [3595] = {.lex_state = 13, .external_lex_state = 6}, [3596] = {.lex_state = 13, .external_lex_state = 6}, - [3597] = {.lex_state = 2, .external_lex_state = 4}, - [3598] = {.lex_state = 13, .external_lex_state = 7}, - [3599] = {.lex_state = 2, .external_lex_state = 4}, - [3600] = {.lex_state = 2, .external_lex_state = 4}, - [3601] = {.lex_state = 2, .external_lex_state = 4}, + [3597] = {.lex_state = 13, .external_lex_state = 6}, + [3598] = {.lex_state = 13, .external_lex_state = 6}, + [3599] = {.lex_state = 13, .external_lex_state = 6}, + [3600] = {.lex_state = 13, .external_lex_state = 7}, + [3601] = {.lex_state = 13, .external_lex_state = 7}, [3602] = {.lex_state = 13, .external_lex_state = 7}, - [3603] = {.lex_state = 2, .external_lex_state = 4}, - [3604] = {.lex_state = 321, .external_lex_state = 2}, - [3605] = {.lex_state = 2, .external_lex_state = 4}, - [3606] = {.lex_state = 2, .external_lex_state = 4}, - [3607] = {.lex_state = 321, .external_lex_state = 2}, + [3603] = {.lex_state = 13, .external_lex_state = 7}, + [3604] = {.lex_state = 13, .external_lex_state = 7}, + [3605] = {.lex_state = 13, .external_lex_state = 7}, + [3606] = {.lex_state = 13, .external_lex_state = 7}, + [3607] = {.lex_state = 13, .external_lex_state = 7}, [3608] = {.lex_state = 2, .external_lex_state = 4}, - [3609] = {.lex_state = 2, .external_lex_state = 4}, + [3609] = {.lex_state = 13, .external_lex_state = 7}, [3610] = {.lex_state = 13, .external_lex_state = 7}, - [3611] = {.lex_state = 2, .external_lex_state = 4}, + [3611] = {.lex_state = 13, .external_lex_state = 7}, [3612] = {.lex_state = 2, .external_lex_state = 4}, - [3613] = {.lex_state = 2, .external_lex_state = 4}, + [3613] = {.lex_state = 13, .external_lex_state = 7}, [3614] = {.lex_state = 2, .external_lex_state = 4}, - [3615] = {.lex_state = 13, .external_lex_state = 6}, - [3616] = {.lex_state = 13, .external_lex_state = 6}, - [3617] = {.lex_state = 321, .external_lex_state = 2}, + [3615] = {.lex_state = 13, .external_lex_state = 7}, + [3616] = {.lex_state = 13, .external_lex_state = 7}, + [3617] = {.lex_state = 13, .external_lex_state = 6}, [3618] = {.lex_state = 13, .external_lex_state = 7}, - [3619] = {.lex_state = 13, .external_lex_state = 7}, - [3620] = {.lex_state = 2, .external_lex_state = 4}, - [3621] = {.lex_state = 2, .external_lex_state = 4}, - [3622] = {.lex_state = 2, .external_lex_state = 4}, - [3623] = {.lex_state = 2, .external_lex_state = 4}, - [3624] = {.lex_state = 2, .external_lex_state = 4}, + [3619] = {.lex_state = 13, .external_lex_state = 6}, + [3620] = {.lex_state = 13, .external_lex_state = 7}, + [3621] = {.lex_state = 321, .external_lex_state = 2}, + [3622] = {.lex_state = 13, .external_lex_state = 7}, + [3623] = {.lex_state = 13, .external_lex_state = 7}, + [3624] = {.lex_state = 13, .external_lex_state = 7}, [3625] = {.lex_state = 13, .external_lex_state = 7}, - [3626] = {.lex_state = 13, .external_lex_state = 6}, - [3627] = {.lex_state = 13, .external_lex_state = 6}, + [3626] = {.lex_state = 13, .external_lex_state = 7}, + [3627] = {.lex_state = 11, .external_lex_state = 5}, [3628] = {.lex_state = 13, .external_lex_state = 7}, - [3629] = {.lex_state = 13, .external_lex_state = 7}, + [3629] = {.lex_state = 11, .external_lex_state = 5}, [3630] = {.lex_state = 13, .external_lex_state = 7}, - [3631] = {.lex_state = 13, .external_lex_state = 6}, - [3632] = {.lex_state = 13, .external_lex_state = 7}, - [3633] = {.lex_state = 13, .external_lex_state = 7}, - [3634] = {.lex_state = 13, .external_lex_state = 6}, - [3635] = {.lex_state = 13, .external_lex_state = 7}, - [3636] = {.lex_state = 13, .external_lex_state = 7}, - [3637] = {.lex_state = 321, .external_lex_state = 2}, - [3638] = {.lex_state = 13, .external_lex_state = 6}, - [3639] = {.lex_state = 13, .external_lex_state = 7}, - [3640] = {.lex_state = 13, .external_lex_state = 7}, + [3631] = {.lex_state = 13, .external_lex_state = 7}, + [3632] = {.lex_state = 2, .external_lex_state = 4}, + [3633] = {.lex_state = 13, .external_lex_state = 6}, + [3634] = {.lex_state = 13, .external_lex_state = 7}, + [3635] = {.lex_state = 13, .external_lex_state = 6}, + [3636] = {.lex_state = 2, .external_lex_state = 4}, + [3637] = {.lex_state = 11, .external_lex_state = 5}, + [3638] = {.lex_state = 13, .external_lex_state = 7}, + [3639] = {.lex_state = 2, .external_lex_state = 4}, + [3640] = {.lex_state = 13, .external_lex_state = 6}, [3641] = {.lex_state = 13, .external_lex_state = 7}, [3642] = {.lex_state = 13, .external_lex_state = 7}, [3643] = {.lex_state = 13, .external_lex_state = 7}, - [3644] = {.lex_state = 321, .external_lex_state = 2}, - [3645] = {.lex_state = 13, .external_lex_state = 7}, - [3646] = {.lex_state = 13, .external_lex_state = 7}, + [3644] = {.lex_state = 13, .external_lex_state = 7}, + [3645] = {.lex_state = 13, .external_lex_state = 6}, + [3646] = {.lex_state = 2, .external_lex_state = 4}, [3647] = {.lex_state = 13, .external_lex_state = 7}, - [3648] = {.lex_state = 13, .external_lex_state = 7}, - [3649] = {.lex_state = 13, .external_lex_state = 7}, - [3650] = {.lex_state = 13, .external_lex_state = 7}, + [3648] = {.lex_state = 11, .external_lex_state = 5}, + [3649] = {.lex_state = 2, .external_lex_state = 3}, + [3650] = {.lex_state = 2, .external_lex_state = 3}, [3651] = {.lex_state = 13, .external_lex_state = 7}, - [3652] = {.lex_state = 11, .external_lex_state = 5}, - [3653] = {.lex_state = 13, .external_lex_state = 7}, - [3654] = {.lex_state = 13, .external_lex_state = 7}, - [3655] = {.lex_state = 11, .external_lex_state = 5}, + [3652] = {.lex_state = 13, .external_lex_state = 7}, + [3653] = {.lex_state = 321, .external_lex_state = 2}, + [3654] = {.lex_state = 321, .external_lex_state = 2}, + [3655] = {.lex_state = 13, .external_lex_state = 7}, [3656] = {.lex_state = 13, .external_lex_state = 7}, - [3657] = {.lex_state = 321, .external_lex_state = 2}, - [3658] = {.lex_state = 2, .external_lex_state = 4}, + [3657] = {.lex_state = 13, .external_lex_state = 7}, + [3658] = {.lex_state = 11, .external_lex_state = 5}, [3659] = {.lex_state = 13, .external_lex_state = 7}, [3660] = {.lex_state = 13, .external_lex_state = 7}, - [3661] = {.lex_state = 13, .external_lex_state = 7}, - [3662] = {.lex_state = 11, .external_lex_state = 5}, - [3663] = {.lex_state = 13, .external_lex_state = 7}, - [3664] = {.lex_state = 13, .external_lex_state = 7}, - [3665] = {.lex_state = 13, .external_lex_state = 7}, + [3661] = {.lex_state = 321, .external_lex_state = 2}, + [3662] = {.lex_state = 13, .external_lex_state = 6}, + [3663] = {.lex_state = 13, .external_lex_state = 6}, + [3664] = {.lex_state = 321, .external_lex_state = 2}, + [3665] = {.lex_state = 2, .external_lex_state = 4}, [3666] = {.lex_state = 13, .external_lex_state = 7}, - [3667] = {.lex_state = 13, .external_lex_state = 7}, + [3667] = {.lex_state = 2, .external_lex_state = 4}, [3668] = {.lex_state = 13, .external_lex_state = 7}, - [3669] = {.lex_state = 13, .external_lex_state = 6}, + [3669] = {.lex_state = 13, .external_lex_state = 7}, [3670] = {.lex_state = 13, .external_lex_state = 7}, - [3671] = {.lex_state = 13, .external_lex_state = 7}, - [3672] = {.lex_state = 13, .external_lex_state = 7}, + [3671] = {.lex_state = 2, .external_lex_state = 4}, + [3672] = {.lex_state = 13, .external_lex_state = 6}, [3673] = {.lex_state = 13, .external_lex_state = 7}, - [3674] = {.lex_state = 13, .external_lex_state = 7}, + [3674] = {.lex_state = 2, .external_lex_state = 4}, [3675] = {.lex_state = 13, .external_lex_state = 7}, - [3676] = {.lex_state = 13, .external_lex_state = 7}, - [3677] = {.lex_state = 11, .external_lex_state = 5}, - [3678] = {.lex_state = 11, .external_lex_state = 5}, - [3679] = {.lex_state = 11, .external_lex_state = 5}, - [3680] = {.lex_state = 13, .external_lex_state = 7}, + [3676] = {.lex_state = 2, .external_lex_state = 4}, + [3677] = {.lex_state = 13, .external_lex_state = 7}, + [3678] = {.lex_state = 13, .external_lex_state = 7}, + [3679] = {.lex_state = 13, .external_lex_state = 7}, + [3680] = {.lex_state = 2, .external_lex_state = 4}, [3681] = {.lex_state = 2, .external_lex_state = 4}, [3682] = {.lex_state = 13, .external_lex_state = 7}, - [3683] = {.lex_state = 13, .external_lex_state = 7}, - [3684] = {.lex_state = 11, .external_lex_state = 5}, + [3683] = {.lex_state = 2, .external_lex_state = 4}, + [3684] = {.lex_state = 13, .external_lex_state = 7}, [3685] = {.lex_state = 13, .external_lex_state = 7}, - [3686] = {.lex_state = 321, .external_lex_state = 2}, - [3687] = {.lex_state = 13, .external_lex_state = 6}, - [3688] = {.lex_state = 13, .external_lex_state = 7}, - [3689] = {.lex_state = 13, .external_lex_state = 7}, - [3690] = {.lex_state = 2, .external_lex_state = 3}, - [3691] = {.lex_state = 2, .external_lex_state = 3}, - [3692] = {.lex_state = 13, .external_lex_state = 6}, - [3693] = {.lex_state = 13, .external_lex_state = 7}, + [3686] = {.lex_state = 2, .external_lex_state = 4}, + [3687] = {.lex_state = 2, .external_lex_state = 4}, + [3688] = {.lex_state = 2, .external_lex_state = 4}, + [3689] = {.lex_state = 2, .external_lex_state = 4}, + [3690] = {.lex_state = 13, .external_lex_state = 7}, + [3691] = {.lex_state = 13, .external_lex_state = 6}, + [3692] = {.lex_state = 11, .external_lex_state = 5}, + [3693] = {.lex_state = 2, .external_lex_state = 4}, [3694] = {.lex_state = 2, .external_lex_state = 4}, - [3695] = {.lex_state = 13, .external_lex_state = 7}, - [3696] = {.lex_state = 2, .external_lex_state = 4}, - [3697] = {.lex_state = 2, .external_lex_state = 4}, - [3698] = {.lex_state = 2, .external_lex_state = 4}, - [3699] = {.lex_state = 2, .external_lex_state = 4}, - [3700] = {.lex_state = 11, .external_lex_state = 5}, + [3695] = {.lex_state = 11, .external_lex_state = 5}, + [3696] = {.lex_state = 11, .external_lex_state = 5}, + [3697] = {.lex_state = 13, .external_lex_state = 7}, + [3698] = {.lex_state = 13, .external_lex_state = 7}, + [3699] = {.lex_state = 321, .external_lex_state = 2}, + [3700] = {.lex_state = 2, .external_lex_state = 4}, [3701] = {.lex_state = 2, .external_lex_state = 4}, [3702] = {.lex_state = 2, .external_lex_state = 4}, - [3703] = {.lex_state = 2, .external_lex_state = 4}, + [3703] = {.lex_state = 321, .external_lex_state = 2}, [3704] = {.lex_state = 2, .external_lex_state = 4}, [3705] = {.lex_state = 2, .external_lex_state = 4}, - [3706] = {.lex_state = 13, .external_lex_state = 7}, + [3706] = {.lex_state = 2, .external_lex_state = 4}, [3707] = {.lex_state = 13, .external_lex_state = 7}, - [3708] = {.lex_state = 2, .external_lex_state = 4}, + [3708] = {.lex_state = 14, .external_lex_state = 7}, [3709] = {.lex_state = 13, .external_lex_state = 7}, [3710] = {.lex_state = 13, .external_lex_state = 7}, - [3711] = {.lex_state = 2, .external_lex_state = 4}, - [3712] = {.lex_state = 14, .external_lex_state = 7}, - [3713] = {.lex_state = 14, .external_lex_state = 7}, - [3714] = {.lex_state = 14, .external_lex_state = 7}, - [3715] = {.lex_state = 2, .external_lex_state = 4}, + [3711] = {.lex_state = 13, .external_lex_state = 7}, + [3712] = {.lex_state = 13, .external_lex_state = 7}, + [3713] = {.lex_state = 13, .external_lex_state = 6}, + [3714] = {.lex_state = 13, .external_lex_state = 7}, + [3715] = {.lex_state = 321, .external_lex_state = 2}, [3716] = {.lex_state = 13, .external_lex_state = 7}, - [3717] = {.lex_state = 2, .external_lex_state = 4}, - [3718] = {.lex_state = 2, .external_lex_state = 4}, - [3719] = {.lex_state = 2, .external_lex_state = 4}, - [3720] = {.lex_state = 14, .external_lex_state = 7}, - [3721] = {.lex_state = 14, .external_lex_state = 7}, - [3722] = {.lex_state = 14, .external_lex_state = 7}, - [3723] = {.lex_state = 14, .external_lex_state = 7}, - [3724] = {.lex_state = 14, .external_lex_state = 7}, - [3725] = {.lex_state = 14, .external_lex_state = 7}, - [3726] = {.lex_state = 14, .external_lex_state = 7}, - [3727] = {.lex_state = 14, .external_lex_state = 7}, + [3717] = {.lex_state = 13, .external_lex_state = 7}, + [3718] = {.lex_state = 13, .external_lex_state = 7}, + [3719] = {.lex_state = 13, .external_lex_state = 7}, + [3720] = {.lex_state = 13, .external_lex_state = 7}, + [3721] = {.lex_state = 13, .external_lex_state = 7}, + [3722] = {.lex_state = 13, .external_lex_state = 7}, + [3723] = {.lex_state = 13, .external_lex_state = 7}, + [3724] = {.lex_state = 13, .external_lex_state = 6}, + [3725] = {.lex_state = 13, .external_lex_state = 6}, + [3726] = {.lex_state = 13, .external_lex_state = 7}, + [3727] = {.lex_state = 13, .external_lex_state = 6}, [3728] = {.lex_state = 13, .external_lex_state = 7}, [3729] = {.lex_state = 13, .external_lex_state = 7}, - [3730] = {.lex_state = 14, .external_lex_state = 7}, - [3731] = {.lex_state = 2, .external_lex_state = 4}, - [3732] = {.lex_state = 2, .external_lex_state = 4}, - [3733] = {.lex_state = 13, .external_lex_state = 7}, - [3734] = {.lex_state = 13, .external_lex_state = 7}, - [3735] = {.lex_state = 13, .external_lex_state = 7}, - [3736] = {.lex_state = 13, .external_lex_state = 7}, - [3737] = {.lex_state = 13, .external_lex_state = 7}, + [3730] = {.lex_state = 13, .external_lex_state = 7}, + [3731] = {.lex_state = 14, .external_lex_state = 7}, + [3732] = {.lex_state = 13, .external_lex_state = 6}, + [3733] = {.lex_state = 13, .external_lex_state = 6}, + [3734] = {.lex_state = 13, .external_lex_state = 6}, + [3735] = {.lex_state = 2, .external_lex_state = 4}, + [3736] = {.lex_state = 13, .external_lex_state = 6}, + [3737] = {.lex_state = 13, .external_lex_state = 6}, [3738] = {.lex_state = 13, .external_lex_state = 7}, [3739] = {.lex_state = 2, .external_lex_state = 4}, [3740] = {.lex_state = 13, .external_lex_state = 6}, - [3741] = {.lex_state = 13, .external_lex_state = 7}, - [3742] = {.lex_state = 13, .external_lex_state = 7}, + [3741] = {.lex_state = 321, .external_lex_state = 2}, + [3742] = {.lex_state = 13, .external_lex_state = 6}, [3743] = {.lex_state = 13, .external_lex_state = 7}, [3744] = {.lex_state = 13, .external_lex_state = 6}, - [3745] = {.lex_state = 321, .external_lex_state = 2}, - [3746] = {.lex_state = 13, .external_lex_state = 7}, - [3747] = {.lex_state = 13, .external_lex_state = 6}, - [3748] = {.lex_state = 13, .external_lex_state = 6}, + [3745] = {.lex_state = 13, .external_lex_state = 7}, + [3746] = {.lex_state = 13, .external_lex_state = 6}, + [3747] = {.lex_state = 13, .external_lex_state = 7}, + [3748] = {.lex_state = 13, .external_lex_state = 7}, [3749] = {.lex_state = 13, .external_lex_state = 7}, - [3750] = {.lex_state = 13, .external_lex_state = 6}, - [3751] = {.lex_state = 2, .external_lex_state = 4}, + [3750] = {.lex_state = 13, .external_lex_state = 7}, + [3751] = {.lex_state = 14, .external_lex_state = 7}, [3752] = {.lex_state = 13, .external_lex_state = 7}, - [3753] = {.lex_state = 13, .external_lex_state = 6}, - [3754] = {.lex_state = 13, .external_lex_state = 6}, - [3755] = {.lex_state = 13, .external_lex_state = 7}, + [3753] = {.lex_state = 13, .external_lex_state = 7}, + [3754] = {.lex_state = 13, .external_lex_state = 7}, + [3755] = {.lex_state = 14, .external_lex_state = 7}, [3756] = {.lex_state = 13, .external_lex_state = 7}, - [3757] = {.lex_state = 11, .external_lex_state = 5}, - [3758] = {.lex_state = 321, .external_lex_state = 2}, + [3757] = {.lex_state = 321, .external_lex_state = 2}, + [3758] = {.lex_state = 15, .external_lex_state = 7}, [3759] = {.lex_state = 14, .external_lex_state = 7}, [3760] = {.lex_state = 14, .external_lex_state = 7}, [3761] = {.lex_state = 14, .external_lex_state = 7}, - [3762] = {.lex_state = 13, .external_lex_state = 7}, - [3763] = {.lex_state = 13, .external_lex_state = 6}, - [3764] = {.lex_state = 13, .external_lex_state = 6}, - [3765] = {.lex_state = 13, .external_lex_state = 6}, + [3762] = {.lex_state = 14, .external_lex_state = 7}, + [3763] = {.lex_state = 14, .external_lex_state = 7}, + [3764] = {.lex_state = 14, .external_lex_state = 7}, + [3765] = {.lex_state = 13, .external_lex_state = 7}, [3766] = {.lex_state = 13, .external_lex_state = 7}, - [3767] = {.lex_state = 321, .external_lex_state = 2}, - [3768] = {.lex_state = 13, .external_lex_state = 6}, - [3769] = {.lex_state = 13, .external_lex_state = 6}, + [3767] = {.lex_state = 13, .external_lex_state = 7}, + [3768] = {.lex_state = 13, .external_lex_state = 7}, + [3769] = {.lex_state = 11, .external_lex_state = 5}, [3770] = {.lex_state = 13, .external_lex_state = 6}, [3771] = {.lex_state = 13, .external_lex_state = 7}, [3772] = {.lex_state = 13, .external_lex_state = 6}, - [3773] = {.lex_state = 13, .external_lex_state = 7}, - [3774] = {.lex_state = 13, .external_lex_state = 7}, - [3775] = {.lex_state = 2, .external_lex_state = 4}, + [3773] = {.lex_state = 14, .external_lex_state = 7}, + [3774] = {.lex_state = 14, .external_lex_state = 7}, + [3775] = {.lex_state = 13, .external_lex_state = 7}, [3776] = {.lex_state = 13, .external_lex_state = 7}, [3777] = {.lex_state = 13, .external_lex_state = 7}, - [3778] = {.lex_state = 321, .external_lex_state = 2}, - [3779] = {.lex_state = 13, .external_lex_state = 7}, - [3780] = {.lex_state = 13, .external_lex_state = 6}, - [3781] = {.lex_state = 13, .external_lex_state = 6}, - [3782] = {.lex_state = 13, .external_lex_state = 6}, - [3783] = {.lex_state = 13, .external_lex_state = 7}, + [3778] = {.lex_state = 13, .external_lex_state = 7}, + [3779] = {.lex_state = 14, .external_lex_state = 7}, + [3780] = {.lex_state = 13, .external_lex_state = 7}, + [3781] = {.lex_state = 14, .external_lex_state = 7}, + [3782] = {.lex_state = 2, .external_lex_state = 4}, + [3783] = {.lex_state = 13, .external_lex_state = 6}, [3784] = {.lex_state = 13, .external_lex_state = 7}, [3785] = {.lex_state = 13, .external_lex_state = 7}, - [3786] = {.lex_state = 13, .external_lex_state = 7}, - [3787] = {.lex_state = 13, .external_lex_state = 7}, + [3786] = {.lex_state = 14, .external_lex_state = 7}, + [3787] = {.lex_state = 13, .external_lex_state = 6}, [3788] = {.lex_state = 13, .external_lex_state = 7}, - [3789] = {.lex_state = 321, .external_lex_state = 2}, + [3789] = {.lex_state = 13, .external_lex_state = 7}, [3790] = {.lex_state = 13, .external_lex_state = 7}, - [3791] = {.lex_state = 13, .external_lex_state = 7}, - [3792] = {.lex_state = 14, .external_lex_state = 7}, + [3791] = {.lex_state = 13, .external_lex_state = 6}, + [3792] = {.lex_state = 13, .external_lex_state = 7}, [3793] = {.lex_state = 13, .external_lex_state = 7}, - [3794] = {.lex_state = 14, .external_lex_state = 7}, - [3795] = {.lex_state = 13, .external_lex_state = 7}, - [3796] = {.lex_state = 13, .external_lex_state = 6}, - [3797] = {.lex_state = 13, .external_lex_state = 7}, - [3798] = {.lex_state = 2, .external_lex_state = 4}, - [3799] = {.lex_state = 11, .external_lex_state = 5}, - [3800] = {.lex_state = 13, .external_lex_state = 7}, + [3794] = {.lex_state = 321, .external_lex_state = 2}, + [3795] = {.lex_state = 2, .external_lex_state = 4}, + [3796] = {.lex_state = 2, .external_lex_state = 4}, + [3797] = {.lex_state = 2, .external_lex_state = 4}, + [3798] = {.lex_state = 13, .external_lex_state = 6}, + [3799] = {.lex_state = 2, .external_lex_state = 4}, + [3800] = {.lex_state = 2, .external_lex_state = 4}, [3801] = {.lex_state = 13, .external_lex_state = 7}, - [3802] = {.lex_state = 14, .external_lex_state = 7}, - [3803] = {.lex_state = 13, .external_lex_state = 7}, - [3804] = {.lex_state = 13, .external_lex_state = 7}, - [3805] = {.lex_state = 13, .external_lex_state = 7}, - [3806] = {.lex_state = 321, .external_lex_state = 2}, - [3807] = {.lex_state = 13, .external_lex_state = 7}, - [3808] = {.lex_state = 13, .external_lex_state = 7}, - [3809] = {.lex_state = 13, .external_lex_state = 7}, - [3810] = {.lex_state = 13, .external_lex_state = 7}, + [3802] = {.lex_state = 2, .external_lex_state = 4}, + [3803] = {.lex_state = 14, .external_lex_state = 7}, + [3804] = {.lex_state = 2, .external_lex_state = 4}, + [3805] = {.lex_state = 2, .external_lex_state = 4}, + [3806] = {.lex_state = 13, .external_lex_state = 7}, + [3807] = {.lex_state = 14, .external_lex_state = 7}, + [3808] = {.lex_state = 321, .external_lex_state = 2}, + [3809] = {.lex_state = 2, .external_lex_state = 4}, + [3810] = {.lex_state = 14, .external_lex_state = 7}, [3811] = {.lex_state = 13, .external_lex_state = 7}, - [3812] = {.lex_state = 13, .external_lex_state = 7}, - [3813] = {.lex_state = 2, .external_lex_state = 4}, - [3814] = {.lex_state = 15, .external_lex_state = 7}, + [3812] = {.lex_state = 2, .external_lex_state = 4}, + [3813] = {.lex_state = 321, .external_lex_state = 2}, + [3814] = {.lex_state = 2, .external_lex_state = 4}, [3815] = {.lex_state = 13, .external_lex_state = 7}, [3816] = {.lex_state = 13, .external_lex_state = 7}, - [3817] = {.lex_state = 13, .external_lex_state = 6}, - [3818] = {.lex_state = 13, .external_lex_state = 6}, + [3817] = {.lex_state = 13, .external_lex_state = 7}, + [3818] = {.lex_state = 13, .external_lex_state = 7}, [3819] = {.lex_state = 13, .external_lex_state = 7}, [3820] = {.lex_state = 13, .external_lex_state = 7}, - [3821] = {.lex_state = 2, .external_lex_state = 4}, - [3822] = {.lex_state = 13, .external_lex_state = 7}, + [3821] = {.lex_state = 11, .external_lex_state = 5}, + [3822] = {.lex_state = 13, .external_lex_state = 6}, [3823] = {.lex_state = 13, .external_lex_state = 7}, - [3824] = {.lex_state = 13, .external_lex_state = 7}, - [3825] = {.lex_state = 13, .external_lex_state = 7}, + [3824] = {.lex_state = 14, .external_lex_state = 6}, + [3825] = {.lex_state = 2, .external_lex_state = 4}, [3826] = {.lex_state = 13, .external_lex_state = 7}, [3827] = {.lex_state = 13, .external_lex_state = 7}, [3828] = {.lex_state = 13, .external_lex_state = 7}, [3829] = {.lex_state = 13, .external_lex_state = 7}, - [3830] = {.lex_state = 2, .external_lex_state = 4}, + [3830] = {.lex_state = 13, .external_lex_state = 7}, [3831] = {.lex_state = 13, .external_lex_state = 7}, - [3832] = {.lex_state = 321, .external_lex_state = 2}, + [3832] = {.lex_state = 13, .external_lex_state = 7}, [3833] = {.lex_state = 13, .external_lex_state = 7}, [3834] = {.lex_state = 13, .external_lex_state = 7}, [3835] = {.lex_state = 13, .external_lex_state = 7}, [3836] = {.lex_state = 13, .external_lex_state = 7}, [3837] = {.lex_state = 13, .external_lex_state = 7}, - [3838] = {.lex_state = 13, .external_lex_state = 7}, - [3839] = {.lex_state = 13, .external_lex_state = 6}, + [3838] = {.lex_state = 321, .external_lex_state = 2}, + [3839] = {.lex_state = 13, .external_lex_state = 7}, [3840] = {.lex_state = 13, .external_lex_state = 7}, [3841] = {.lex_state = 13, .external_lex_state = 7}, - [3842] = {.lex_state = 13, .external_lex_state = 6}, + [3842] = {.lex_state = 13, .external_lex_state = 7}, [3843] = {.lex_state = 13, .external_lex_state = 7}, [3844] = {.lex_state = 13, .external_lex_state = 7}, - [3845] = {.lex_state = 2, .external_lex_state = 4}, - [3846] = {.lex_state = 2, .external_lex_state = 4}, + [3845] = {.lex_state = 13, .external_lex_state = 7}, + [3846] = {.lex_state = 13, .external_lex_state = 7}, [3847] = {.lex_state = 13, .external_lex_state = 7}, [3848] = {.lex_state = 13, .external_lex_state = 7}, [3849] = {.lex_state = 13, .external_lex_state = 7}, - [3850] = {.lex_state = 13, .external_lex_state = 7}, - [3851] = {.lex_state = 2, .external_lex_state = 4}, + [3850] = {.lex_state = 13, .external_lex_state = 6}, + [3851] = {.lex_state = 13, .external_lex_state = 6}, [3852] = {.lex_state = 13, .external_lex_state = 7}, [3853] = {.lex_state = 13, .external_lex_state = 7}, - [3854] = {.lex_state = 13, .external_lex_state = 7}, + [3854] = {.lex_state = 321, .external_lex_state = 2}, [3855] = {.lex_state = 13, .external_lex_state = 7}, [3856] = {.lex_state = 13, .external_lex_state = 7}, [3857] = {.lex_state = 13, .external_lex_state = 7}, - [3858] = {.lex_state = 13, .external_lex_state = 6}, + [3858] = {.lex_state = 13, .external_lex_state = 7}, [3859] = {.lex_state = 13, .external_lex_state = 7}, - [3860] = {.lex_state = 13, .external_lex_state = 7}, + [3860] = {.lex_state = 13, .external_lex_state = 6}, [3861] = {.lex_state = 13, .external_lex_state = 7}, [3862] = {.lex_state = 13, .external_lex_state = 7}, [3863] = {.lex_state = 13, .external_lex_state = 7}, @@ -23995,10 +24004,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3878] = {.lex_state = 13, .external_lex_state = 7}, [3879] = {.lex_state = 13, .external_lex_state = 7}, [3880] = {.lex_state = 13, .external_lex_state = 7}, - [3881] = {.lex_state = 13, .external_lex_state = 7}, + [3881] = {.lex_state = 13, .external_lex_state = 6}, [3882] = {.lex_state = 13, .external_lex_state = 7}, [3883] = {.lex_state = 13, .external_lex_state = 7}, - [3884] = {.lex_state = 13, .external_lex_state = 7}, + [3884] = {.lex_state = 2, .external_lex_state = 4}, [3885] = {.lex_state = 13, .external_lex_state = 7}, [3886] = {.lex_state = 13, .external_lex_state = 7}, [3887] = {.lex_state = 13, .external_lex_state = 7}, @@ -24016,68 +24025,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3899] = {.lex_state = 13, .external_lex_state = 7}, [3900] = {.lex_state = 13, .external_lex_state = 7}, [3901] = {.lex_state = 13, .external_lex_state = 7}, - [3902] = {.lex_state = 13, .external_lex_state = 7}, - [3903] = {.lex_state = 2, .external_lex_state = 4}, + [3902] = {.lex_state = 13, .external_lex_state = 6}, + [3903] = {.lex_state = 13, .external_lex_state = 7}, [3904] = {.lex_state = 13, .external_lex_state = 7}, [3905] = {.lex_state = 13, .external_lex_state = 7}, - [3906] = {.lex_state = 321, .external_lex_state = 2}, + [3906] = {.lex_state = 13, .external_lex_state = 6}, [3907] = {.lex_state = 13, .external_lex_state = 7}, - [3908] = {.lex_state = 2, .external_lex_state = 4}, + [3908] = {.lex_state = 13, .external_lex_state = 7}, [3909] = {.lex_state = 13, .external_lex_state = 7}, [3910] = {.lex_state = 13, .external_lex_state = 7}, [3911] = {.lex_state = 13, .external_lex_state = 7}, [3912] = {.lex_state = 13, .external_lex_state = 7}, [3913] = {.lex_state = 13, .external_lex_state = 7}, - [3914] = {.lex_state = 2, .external_lex_state = 4}, - [3915] = {.lex_state = 321, .external_lex_state = 2}, + [3914] = {.lex_state = 13, .external_lex_state = 7}, + [3915] = {.lex_state = 2, .external_lex_state = 4}, [3916] = {.lex_state = 13, .external_lex_state = 7}, - [3917] = {.lex_state = 13, .external_lex_state = 7}, - [3918] = {.lex_state = 13, .external_lex_state = 7}, - [3919] = {.lex_state = 2, .external_lex_state = 4}, + [3917] = {.lex_state = 2, .external_lex_state = 4}, + [3918] = {.lex_state = 13, .external_lex_state = 6}, + [3919] = {.lex_state = 321, .external_lex_state = 2}, [3920] = {.lex_state = 13, .external_lex_state = 7}, - [3921] = {.lex_state = 13, .external_lex_state = 7}, + [3921] = {.lex_state = 321, .external_lex_state = 2}, [3922] = {.lex_state = 13, .external_lex_state = 7}, [3923] = {.lex_state = 13, .external_lex_state = 7}, [3924] = {.lex_state = 13, .external_lex_state = 7}, [3925] = {.lex_state = 13, .external_lex_state = 7}, - [3926] = {.lex_state = 13, .external_lex_state = 7}, - [3927] = {.lex_state = 13, .external_lex_state = 7}, + [3926] = {.lex_state = 13, .external_lex_state = 6}, + [3927] = {.lex_state = 13, .external_lex_state = 6}, [3928] = {.lex_state = 13, .external_lex_state = 7}, - [3929] = {.lex_state = 14, .external_lex_state = 6}, - [3930] = {.lex_state = 14, .external_lex_state = 6}, - [3931] = {.lex_state = 13, .external_lex_state = 7}, + [3929] = {.lex_state = 13, .external_lex_state = 6}, + [3930] = {.lex_state = 13, .external_lex_state = 7}, + [3931] = {.lex_state = 13, .external_lex_state = 6}, [3932] = {.lex_state = 13, .external_lex_state = 7}, [3933] = {.lex_state = 13, .external_lex_state = 7}, - [3934] = {.lex_state = 13, .external_lex_state = 7}, - [3935] = {.lex_state = 13, .external_lex_state = 7}, + [3934] = {.lex_state = 13, .external_lex_state = 6}, + [3935] = {.lex_state = 13, .external_lex_state = 6}, [3936] = {.lex_state = 13, .external_lex_state = 7}, [3937] = {.lex_state = 13, .external_lex_state = 7}, [3938] = {.lex_state = 13, .external_lex_state = 7}, [3939] = {.lex_state = 13, .external_lex_state = 7}, - [3940] = {.lex_state = 14, .external_lex_state = 6}, - [3941] = {.lex_state = 2, .external_lex_state = 4}, - [3942] = {.lex_state = 14, .external_lex_state = 6}, - [3943] = {.lex_state = 14, .external_lex_state = 6}, - [3944] = {.lex_state = 14, .external_lex_state = 6}, - [3945] = {.lex_state = 14, .external_lex_state = 6}, - [3946] = {.lex_state = 14, .external_lex_state = 6}, - [3947] = {.lex_state = 14, .external_lex_state = 6}, - [3948] = {.lex_state = 14, .external_lex_state = 6}, + [3940] = {.lex_state = 13, .external_lex_state = 7}, + [3941] = {.lex_state = 13, .external_lex_state = 6}, + [3942] = {.lex_state = 321, .external_lex_state = 2}, + [3943] = {.lex_state = 13, .external_lex_state = 7}, + [3944] = {.lex_state = 13, .external_lex_state = 7}, + [3945] = {.lex_state = 13, .external_lex_state = 7}, + [3946] = {.lex_state = 13, .external_lex_state = 7}, + [3947] = {.lex_state = 13, .external_lex_state = 7}, + [3948] = {.lex_state = 13, .external_lex_state = 7}, [3949] = {.lex_state = 13, .external_lex_state = 7}, - [3950] = {.lex_state = 14, .external_lex_state = 6}, - [3951] = {.lex_state = 13, .external_lex_state = 6}, - [3952] = {.lex_state = 14, .external_lex_state = 6}, + [3950] = {.lex_state = 13, .external_lex_state = 7}, + [3951] = {.lex_state = 13, .external_lex_state = 7}, + [3952] = {.lex_state = 2, .external_lex_state = 4}, [3953] = {.lex_state = 13, .external_lex_state = 7}, - [3954] = {.lex_state = 14, .external_lex_state = 6}, - [3955] = {.lex_state = 13, .external_lex_state = 6}, - [3956] = {.lex_state = 13, .external_lex_state = 6}, + [3954] = {.lex_state = 13, .external_lex_state = 7}, + [3955] = {.lex_state = 13, .external_lex_state = 7}, + [3956] = {.lex_state = 13, .external_lex_state = 7}, [3957] = {.lex_state = 13, .external_lex_state = 7}, [3958] = {.lex_state = 13, .external_lex_state = 7}, - [3959] = {.lex_state = 13, .external_lex_state = 7}, - [3960] = {.lex_state = 13, .external_lex_state = 7}, - [3961] = {.lex_state = 321, .external_lex_state = 2}, + [3959] = {.lex_state = 321, .external_lex_state = 2}, + [3960] = {.lex_state = 2, .external_lex_state = 4}, + [3961] = {.lex_state = 2, .external_lex_state = 4}, [3962] = {.lex_state = 13, .external_lex_state = 7}, - [3963] = {.lex_state = 13, .external_lex_state = 6}, + [3963] = {.lex_state = 2, .external_lex_state = 4}, [3964] = {.lex_state = 13, .external_lex_state = 7}, [3965] = {.lex_state = 13, .external_lex_state = 7}, [3966] = {.lex_state = 13, .external_lex_state = 7}, @@ -24086,313 +24095,313 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3969] = {.lex_state = 13, .external_lex_state = 7}, [3970] = {.lex_state = 13, .external_lex_state = 7}, [3971] = {.lex_state = 13, .external_lex_state = 7}, - [3972] = {.lex_state = 13, .external_lex_state = 6}, - [3973] = {.lex_state = 13, .external_lex_state = 6}, + [3972] = {.lex_state = 2, .external_lex_state = 4}, + [3973] = {.lex_state = 13, .external_lex_state = 7}, [3974] = {.lex_state = 13, .external_lex_state = 7}, [3975] = {.lex_state = 13, .external_lex_state = 7}, [3976] = {.lex_state = 13, .external_lex_state = 7}, [3977] = {.lex_state = 13, .external_lex_state = 7}, [3978] = {.lex_state = 13, .external_lex_state = 7}, - [3979] = {.lex_state = 13, .external_lex_state = 6}, + [3979] = {.lex_state = 2, .external_lex_state = 4}, [3980] = {.lex_state = 13, .external_lex_state = 7}, [3981] = {.lex_state = 13, .external_lex_state = 7}, - [3982] = {.lex_state = 13, .external_lex_state = 6}, - [3983] = {.lex_state = 321, .external_lex_state = 2}, - [3984] = {.lex_state = 2, .external_lex_state = 4}, - [3985] = {.lex_state = 13, .external_lex_state = 7}, - [3986] = {.lex_state = 321, .external_lex_state = 2}, - [3987] = {.lex_state = 13, .external_lex_state = 7}, - [3988] = {.lex_state = 13, .external_lex_state = 7}, - [3989] = {.lex_state = 13, .external_lex_state = 7}, - [3990] = {.lex_state = 13, .external_lex_state = 6}, - [3991] = {.lex_state = 13, .external_lex_state = 6}, + [3982] = {.lex_state = 13, .external_lex_state = 7}, + [3983] = {.lex_state = 14, .external_lex_state = 6}, + [3984] = {.lex_state = 14, .external_lex_state = 6}, + [3985] = {.lex_state = 14, .external_lex_state = 6}, + [3986] = {.lex_state = 14, .external_lex_state = 6}, + [3987] = {.lex_state = 14, .external_lex_state = 6}, + [3988] = {.lex_state = 14, .external_lex_state = 6}, + [3989] = {.lex_state = 14, .external_lex_state = 6}, + [3990] = {.lex_state = 13, .external_lex_state = 7}, + [3991] = {.lex_state = 13, .external_lex_state = 7}, [3992] = {.lex_state = 13, .external_lex_state = 7}, - [3993] = {.lex_state = 13, .external_lex_state = 7}, - [3994] = {.lex_state = 13, .external_lex_state = 7}, - [3995] = {.lex_state = 2, .external_lex_state = 4}, - [3996] = {.lex_state = 14, .external_lex_state = 6}, - [3997] = {.lex_state = 13, .external_lex_state = 7}, - [3998] = {.lex_state = 13, .external_lex_state = 7}, - [3999] = {.lex_state = 13, .external_lex_state = 7}, - [4000] = {.lex_state = 321, .external_lex_state = 2}, + [3993] = {.lex_state = 14, .external_lex_state = 6}, + [3994] = {.lex_state = 14, .external_lex_state = 6}, + [3995] = {.lex_state = 13, .external_lex_state = 7}, + [3996] = {.lex_state = 13, .external_lex_state = 7}, + [3997] = {.lex_state = 14, .external_lex_state = 6}, + [3998] = {.lex_state = 2, .external_lex_state = 4}, + [3999] = {.lex_state = 2, .external_lex_state = 4}, + [4000] = {.lex_state = 13, .external_lex_state = 7}, [4001] = {.lex_state = 13, .external_lex_state = 7}, - [4002] = {.lex_state = 2, .external_lex_state = 4}, - [4003] = {.lex_state = 14, .external_lex_state = 6}, - [4004] = {.lex_state = 14, .external_lex_state = 6}, + [4002] = {.lex_state = 321, .external_lex_state = 2}, + [4003] = {.lex_state = 13, .external_lex_state = 7}, + [4004] = {.lex_state = 13, .external_lex_state = 7}, [4005] = {.lex_state = 13, .external_lex_state = 7}, - [4006] = {.lex_state = 13, .external_lex_state = 6}, + [4006] = {.lex_state = 13, .external_lex_state = 7}, [4007] = {.lex_state = 13, .external_lex_state = 7}, - [4008] = {.lex_state = 13, .external_lex_state = 7}, + [4008] = {.lex_state = 14, .external_lex_state = 6}, [4009] = {.lex_state = 13, .external_lex_state = 7}, - [4010] = {.lex_state = 2, .external_lex_state = 4}, - [4011] = {.lex_state = 14, .external_lex_state = 6}, - [4012] = {.lex_state = 2, .external_lex_state = 4}, - [4013] = {.lex_state = 13, .external_lex_state = 7}, + [4010] = {.lex_state = 13, .external_lex_state = 7}, + [4011] = {.lex_state = 2, .external_lex_state = 4}, + [4012] = {.lex_state = 13, .external_lex_state = 7}, + [4013] = {.lex_state = 2, .external_lex_state = 4}, [4014] = {.lex_state = 13, .external_lex_state = 7}, - [4015] = {.lex_state = 2, .external_lex_state = 4}, + [4015] = {.lex_state = 13, .external_lex_state = 7}, [4016] = {.lex_state = 13, .external_lex_state = 7}, [4017] = {.lex_state = 13, .external_lex_state = 7}, - [4018] = {.lex_state = 321, .external_lex_state = 2}, - [4019] = {.lex_state = 13, .external_lex_state = 7}, - [4020] = {.lex_state = 13, .external_lex_state = 7}, - [4021] = {.lex_state = 13, .external_lex_state = 7}, - [4022] = {.lex_state = 13, .external_lex_state = 7}, + [4018] = {.lex_state = 14, .external_lex_state = 6}, + [4019] = {.lex_state = 14, .external_lex_state = 6}, + [4020] = {.lex_state = 14, .external_lex_state = 6}, + [4021] = {.lex_state = 14, .external_lex_state = 6}, + [4022] = {.lex_state = 14, .external_lex_state = 6}, [4023] = {.lex_state = 13, .external_lex_state = 7}, - [4024] = {.lex_state = 13, .external_lex_state = 7}, - [4025] = {.lex_state = 13, .external_lex_state = 6}, + [4024] = {.lex_state = 13, .external_lex_state = 6}, + [4025] = {.lex_state = 13, .external_lex_state = 7}, [4026] = {.lex_state = 13, .external_lex_state = 7}, - [4027] = {.lex_state = 13, .external_lex_state = 7}, + [4027] = {.lex_state = 2, .external_lex_state = 4}, [4028] = {.lex_state = 13, .external_lex_state = 7}, - [4029] = {.lex_state = 13, .external_lex_state = 7}, - [4030] = {.lex_state = 13, .external_lex_state = 7}, + [4029] = {.lex_state = 13, .external_lex_state = 6}, + [4030] = {.lex_state = 13, .external_lex_state = 6}, [4031] = {.lex_state = 13, .external_lex_state = 7}, [4032] = {.lex_state = 13, .external_lex_state = 7}, - [4033] = {.lex_state = 13, .external_lex_state = 7}, - [4034] = {.lex_state = 13, .external_lex_state = 6}, + [4033] = {.lex_state = 13, .external_lex_state = 6}, + [4034] = {.lex_state = 321, .external_lex_state = 2}, [4035] = {.lex_state = 13, .external_lex_state = 7}, - [4036] = {.lex_state = 13, .external_lex_state = 7}, - [4037] = {.lex_state = 13, .external_lex_state = 6}, + [4036] = {.lex_state = 321, .external_lex_state = 2}, + [4037] = {.lex_state = 13, .external_lex_state = 7}, [4038] = {.lex_state = 321, .external_lex_state = 2}, - [4039] = {.lex_state = 13, .external_lex_state = 6}, - [4040] = {.lex_state = 321, .external_lex_state = 2}, - [4041] = {.lex_state = 13, .external_lex_state = 6}, - [4042] = {.lex_state = 13, .external_lex_state = 6}, - [4043] = {.lex_state = 13, .external_lex_state = 6}, + [4039] = {.lex_state = 13, .external_lex_state = 7}, + [4040] = {.lex_state = 13, .external_lex_state = 7}, + [4041] = {.lex_state = 2, .external_lex_state = 4}, + [4042] = {.lex_state = 14, .external_lex_state = 7}, + [4043] = {.lex_state = 14, .external_lex_state = 7}, [4044] = {.lex_state = 2, .external_lex_state = 4}, [4045] = {.lex_state = 2, .external_lex_state = 4}, [4046] = {.lex_state = 2, .external_lex_state = 4}, - [4047] = {.lex_state = 13, .external_lex_state = 6}, - [4048] = {.lex_state = 2, .external_lex_state = 4}, + [4047] = {.lex_state = 14, .external_lex_state = 7}, + [4048] = {.lex_state = 14, .external_lex_state = 7}, [4049] = {.lex_state = 2, .external_lex_state = 4}, - [4050] = {.lex_state = 13, .external_lex_state = 7}, - [4051] = {.lex_state = 13, .external_lex_state = 7}, - [4052] = {.lex_state = 13, .external_lex_state = 7}, - [4053] = {.lex_state = 2, .external_lex_state = 4}, - [4054] = {.lex_state = 13, .external_lex_state = 7}, - [4055] = {.lex_state = 13, .external_lex_state = 6}, - [4056] = {.lex_state = 13, .external_lex_state = 6}, - [4057] = {.lex_state = 13, .external_lex_state = 6}, - [4058] = {.lex_state = 14, .external_lex_state = 7}, - [4059] = {.lex_state = 2, .external_lex_state = 4}, - [4060] = {.lex_state = 2, .external_lex_state = 4}, - [4061] = {.lex_state = 2, .external_lex_state = 4}, - [4062] = {.lex_state = 13, .external_lex_state = 6}, - [4063] = {.lex_state = 14, .external_lex_state = 7}, - [4064] = {.lex_state = 14, .external_lex_state = 7}, - [4065] = {.lex_state = 13, .external_lex_state = 6}, + [4050] = {.lex_state = 2, .external_lex_state = 4}, + [4051] = {.lex_state = 14, .external_lex_state = 7}, + [4052] = {.lex_state = 13, .external_lex_state = 6}, + [4053] = {.lex_state = 14, .external_lex_state = 7}, + [4054] = {.lex_state = 2, .external_lex_state = 4}, + [4055] = {.lex_state = 2, .external_lex_state = 4}, + [4056] = {.lex_state = 14, .external_lex_state = 7}, + [4057] = {.lex_state = 13, .external_lex_state = 7}, + [4058] = {.lex_state = 2, .external_lex_state = 4}, + [4059] = {.lex_state = 14, .external_lex_state = 7}, + [4060] = {.lex_state = 14, .external_lex_state = 7}, + [4061] = {.lex_state = 14, .external_lex_state = 7}, + [4062] = {.lex_state = 14, .external_lex_state = 7}, + [4063] = {.lex_state = 13, .external_lex_state = 6}, + [4064] = {.lex_state = 13, .external_lex_state = 6}, + [4065] = {.lex_state = 13, .external_lex_state = 7}, [4066] = {.lex_state = 14, .external_lex_state = 7}, [4067] = {.lex_state = 13, .external_lex_state = 7}, - [4068] = {.lex_state = 14, .external_lex_state = 7}, - [4069] = {.lex_state = 14, .external_lex_state = 7}, - [4070] = {.lex_state = 14, .external_lex_state = 7}, + [4068] = {.lex_state = 2, .external_lex_state = 4}, + [4069] = {.lex_state = 13, .external_lex_state = 7}, + [4070] = {.lex_state = 2, .external_lex_state = 4}, [4071] = {.lex_state = 14, .external_lex_state = 7}, - [4072] = {.lex_state = 14, .external_lex_state = 7}, - [4073] = {.lex_state = 14, .external_lex_state = 7}, - [4074] = {.lex_state = 14, .external_lex_state = 7}, + [4072] = {.lex_state = 13, .external_lex_state = 6}, + [4073] = {.lex_state = 13, .external_lex_state = 7}, + [4074] = {.lex_state = 13, .external_lex_state = 6}, [4075] = {.lex_state = 13, .external_lex_state = 6}, - [4076] = {.lex_state = 14, .external_lex_state = 7}, - [4077] = {.lex_state = 13, .external_lex_state = 6}, - [4078] = {.lex_state = 14, .external_lex_state = 7}, - [4079] = {.lex_state = 14, .external_lex_state = 7}, - [4080] = {.lex_state = 14, .external_lex_state = 7}, - [4081] = {.lex_state = 14, .external_lex_state = 7}, + [4076] = {.lex_state = 13, .external_lex_state = 6}, + [4077] = {.lex_state = 14, .external_lex_state = 7}, + [4078] = {.lex_state = 13, .external_lex_state = 6}, + [4079] = {.lex_state = 13, .external_lex_state = 6}, + [4080] = {.lex_state = 13, .external_lex_state = 6}, + [4081] = {.lex_state = 13, .external_lex_state = 6}, [4082] = {.lex_state = 14, .external_lex_state = 7}, - [4083] = {.lex_state = 13, .external_lex_state = 6}, - [4084] = {.lex_state = 13, .external_lex_state = 6}, + [4083] = {.lex_state = 14, .external_lex_state = 7}, + [4084] = {.lex_state = 2, .external_lex_state = 4}, [4085] = {.lex_state = 13, .external_lex_state = 6}, - [4086] = {.lex_state = 13, .external_lex_state = 6}, + [4086] = {.lex_state = 14, .external_lex_state = 7}, [4087] = {.lex_state = 13, .external_lex_state = 6}, - [4088] = {.lex_state = 2, .external_lex_state = 4}, + [4088] = {.lex_state = 13, .external_lex_state = 6}, [4089] = {.lex_state = 13, .external_lex_state = 6}, [4090] = {.lex_state = 13, .external_lex_state = 6}, - [4091] = {.lex_state = 2, .external_lex_state = 4}, - [4092] = {.lex_state = 2, .external_lex_state = 4}, + [4091] = {.lex_state = 13, .external_lex_state = 6}, + [4092] = {.lex_state = 13, .external_lex_state = 6}, [4093] = {.lex_state = 13, .external_lex_state = 7}, [4094] = {.lex_state = 14, .external_lex_state = 6}, [4095] = {.lex_state = 13, .external_lex_state = 7}, - [4096] = {.lex_state = 14, .external_lex_state = 6}, + [4096] = {.lex_state = 13, .external_lex_state = 7}, [4097] = {.lex_state = 14, .external_lex_state = 6}, - [4098] = {.lex_state = 13, .external_lex_state = 7}, - [4099] = {.lex_state = 14, .external_lex_state = 6}, - [4100] = {.lex_state = 14, .external_lex_state = 6}, + [4098] = {.lex_state = 14, .external_lex_state = 6}, + [4099] = {.lex_state = 13, .external_lex_state = 6}, + [4100] = {.lex_state = 13, .external_lex_state = 7}, [4101] = {.lex_state = 13, .external_lex_state = 7}, [4102] = {.lex_state = 14, .external_lex_state = 6}, - [4103] = {.lex_state = 14, .external_lex_state = 6}, - [4104] = {.lex_state = 14, .external_lex_state = 6}, + [4103] = {.lex_state = 2, .external_lex_state = 3}, + [4104] = {.lex_state = 13, .external_lex_state = 7}, [4105] = {.lex_state = 14, .external_lex_state = 6}, - [4106] = {.lex_state = 13, .external_lex_state = 6}, - [4107] = {.lex_state = 13, .external_lex_state = 7}, - [4108] = {.lex_state = 14, .external_lex_state = 6}, - [4109] = {.lex_state = 14, .external_lex_state = 6}, + [4106] = {.lex_state = 13, .external_lex_state = 7}, + [4107] = {.lex_state = 13, .external_lex_state = 6}, + [4108] = {.lex_state = 13, .external_lex_state = 7}, + [4109] = {.lex_state = 13, .external_lex_state = 7}, [4110] = {.lex_state = 13, .external_lex_state = 7}, [4111] = {.lex_state = 14, .external_lex_state = 6}, - [4112] = {.lex_state = 14, .external_lex_state = 6}, + [4112] = {.lex_state = 13, .external_lex_state = 6}, [4113] = {.lex_state = 13, .external_lex_state = 7}, - [4114] = {.lex_state = 13, .external_lex_state = 6}, - [4115] = {.lex_state = 13, .external_lex_state = 7}, - [4116] = {.lex_state = 14, .external_lex_state = 6}, - [4117] = {.lex_state = 13, .external_lex_state = 7}, - [4118] = {.lex_state = 2, .external_lex_state = 3}, - [4119] = {.lex_state = 13, .external_lex_state = 7}, + [4114] = {.lex_state = 13, .external_lex_state = 7}, + [4115] = {.lex_state = 14, .external_lex_state = 6}, + [4116] = {.lex_state = 13, .external_lex_state = 7}, + [4117] = {.lex_state = 2, .external_lex_state = 3}, + [4118] = {.lex_state = 14, .external_lex_state = 6}, + [4119] = {.lex_state = 13, .external_lex_state = 6}, [4120] = {.lex_state = 13, .external_lex_state = 7}, - [4121] = {.lex_state = 13, .external_lex_state = 7}, - [4122] = {.lex_state = 13, .external_lex_state = 7}, + [4121] = {.lex_state = 13, .external_lex_state = 6}, + [4122] = {.lex_state = 14, .external_lex_state = 6}, [4123] = {.lex_state = 13, .external_lex_state = 7}, - [4124] = {.lex_state = 13, .external_lex_state = 7}, - [4125] = {.lex_state = 13, .external_lex_state = 7}, + [4124] = {.lex_state = 14, .external_lex_state = 6}, + [4125] = {.lex_state = 14, .external_lex_state = 6}, [4126] = {.lex_state = 13, .external_lex_state = 7}, - [4127] = {.lex_state = 13, .external_lex_state = 6}, + [4127] = {.lex_state = 14, .external_lex_state = 6}, [4128] = {.lex_state = 13, .external_lex_state = 7}, [4129] = {.lex_state = 13, .external_lex_state = 7}, - [4130] = {.lex_state = 13, .external_lex_state = 6}, - [4131] = {.lex_state = 14, .external_lex_state = 6}, - [4132] = {.lex_state = 13, .external_lex_state = 6}, - [4133] = {.lex_state = 14, .external_lex_state = 6}, - [4134] = {.lex_state = 13, .external_lex_state = 7}, + [4130] = {.lex_state = 14, .external_lex_state = 6}, + [4131] = {.lex_state = 13, .external_lex_state = 6}, + [4132] = {.lex_state = 14, .external_lex_state = 6}, + [4133] = {.lex_state = 13, .external_lex_state = 7}, + [4134] = {.lex_state = 14, .external_lex_state = 6}, [4135] = {.lex_state = 13, .external_lex_state = 7}, [4136] = {.lex_state = 13, .external_lex_state = 7}, [4137] = {.lex_state = 13, .external_lex_state = 6}, - [4138] = {.lex_state = 14, .external_lex_state = 6}, - [4139] = {.lex_state = 13, .external_lex_state = 7}, - [4140] = {.lex_state = 13, .external_lex_state = 6}, + [4138] = {.lex_state = 13, .external_lex_state = 7}, + [4139] = {.lex_state = 14, .external_lex_state = 6}, + [4140] = {.lex_state = 14, .external_lex_state = 6}, [4141] = {.lex_state = 14, .external_lex_state = 6}, - [4142] = {.lex_state = 2, .external_lex_state = 3}, - [4143] = {.lex_state = 13, .external_lex_state = 6}, + [4142] = {.lex_state = 13, .external_lex_state = 6}, + [4143] = {.lex_state = 13, .external_lex_state = 7}, [4144] = {.lex_state = 2, .external_lex_state = 4}, - [4145] = {.lex_state = 10, .external_lex_state = 2}, - [4146] = {.lex_state = 2, .external_lex_state = 4}, - [4147] = {.lex_state = 13, .external_lex_state = 7}, - [4148] = {.lex_state = 13, .external_lex_state = 6}, + [4145] = {.lex_state = 13, .external_lex_state = 6}, + [4146] = {.lex_state = 13, .external_lex_state = 7}, + [4147] = {.lex_state = 13, .external_lex_state = 6}, + [4148] = {.lex_state = 13, .external_lex_state = 7}, [4149] = {.lex_state = 13, .external_lex_state = 7}, - [4150] = {.lex_state = 13, .external_lex_state = 6}, - [4151] = {.lex_state = 13, .external_lex_state = 7}, - [4152] = {.lex_state = 13, .external_lex_state = 7}, - [4153] = {.lex_state = 2, .external_lex_state = 4}, + [4150] = {.lex_state = 13, .external_lex_state = 7}, + [4151] = {.lex_state = 2, .external_lex_state = 4}, + [4152] = {.lex_state = 13, .external_lex_state = 6}, + [4153] = {.lex_state = 13, .external_lex_state = 6}, [4154] = {.lex_state = 13, .external_lex_state = 6}, [4155] = {.lex_state = 2, .external_lex_state = 4}, [4156] = {.lex_state = 2, .external_lex_state = 4}, - [4157] = {.lex_state = 2, .external_lex_state = 4}, - [4158] = {.lex_state = 13, .external_lex_state = 7}, - [4159] = {.lex_state = 13, .external_lex_state = 7}, - [4160] = {.lex_state = 13, .external_lex_state = 7}, + [4157] = {.lex_state = 13, .external_lex_state = 7}, + [4158] = {.lex_state = 13, .external_lex_state = 6}, + [4159] = {.lex_state = 13, .external_lex_state = 6}, + [4160] = {.lex_state = 2, .external_lex_state = 4}, [4161] = {.lex_state = 13, .external_lex_state = 6}, - [4162] = {.lex_state = 13, .external_lex_state = 6}, - [4163] = {.lex_state = 13, .external_lex_state = 6}, + [4162] = {.lex_state = 2, .external_lex_state = 4}, + [4163] = {.lex_state = 2, .external_lex_state = 4}, [4164] = {.lex_state = 13, .external_lex_state = 7}, - [4165] = {.lex_state = 13, .external_lex_state = 6}, - [4166] = {.lex_state = 2, .external_lex_state = 4}, - [4167] = {.lex_state = 13, .external_lex_state = 6}, - [4168] = {.lex_state = 13, .external_lex_state = 6}, - [4169] = {.lex_state = 13, .external_lex_state = 7}, + [4165] = {.lex_state = 13, .external_lex_state = 7}, + [4166] = {.lex_state = 13, .external_lex_state = 7}, + [4167] = {.lex_state = 13, .external_lex_state = 7}, + [4168] = {.lex_state = 13, .external_lex_state = 7}, + [4169] = {.lex_state = 13, .external_lex_state = 6}, [4170] = {.lex_state = 13, .external_lex_state = 7}, - [4171] = {.lex_state = 2, .external_lex_state = 4}, - [4172] = {.lex_state = 13, .external_lex_state = 7}, + [4171] = {.lex_state = 13, .external_lex_state = 6}, + [4172] = {.lex_state = 13, .external_lex_state = 6}, [4173] = {.lex_state = 13, .external_lex_state = 7}, - [4174] = {.lex_state = 13, .external_lex_state = 7}, + [4174] = {.lex_state = 13, .external_lex_state = 6}, [4175] = {.lex_state = 13, .external_lex_state = 7}, [4176] = {.lex_state = 13, .external_lex_state = 7}, [4177] = {.lex_state = 13, .external_lex_state = 7}, [4178] = {.lex_state = 13, .external_lex_state = 6}, [4179] = {.lex_state = 2, .external_lex_state = 4}, - [4180] = {.lex_state = 2, .external_lex_state = 4}, - [4181] = {.lex_state = 13, .external_lex_state = 6}, - [4182] = {.lex_state = 13, .external_lex_state = 7}, + [4180] = {.lex_state = 13, .external_lex_state = 7}, + [4181] = {.lex_state = 13, .external_lex_state = 7}, + [4182] = {.lex_state = 2, .external_lex_state = 4}, [4183] = {.lex_state = 13, .external_lex_state = 7}, [4184] = {.lex_state = 13, .external_lex_state = 7}, - [4185] = {.lex_state = 13, .external_lex_state = 7}, - [4186] = {.lex_state = 13, .external_lex_state = 6}, - [4187] = {.lex_state = 13, .external_lex_state = 6}, - [4188] = {.lex_state = 13, .external_lex_state = 6}, - [4189] = {.lex_state = 13, .external_lex_state = 7}, + [4185] = {.lex_state = 13, .external_lex_state = 6}, + [4186] = {.lex_state = 13, .external_lex_state = 7}, + [4187] = {.lex_state = 10, .external_lex_state = 2}, + [4188] = {.lex_state = 13, .external_lex_state = 7}, + [4189] = {.lex_state = 13, .external_lex_state = 6}, [4190] = {.lex_state = 13, .external_lex_state = 7}, - [4191] = {.lex_state = 13, .external_lex_state = 6}, + [4191] = {.lex_state = 13, .external_lex_state = 7}, [4192] = {.lex_state = 13, .external_lex_state = 6}, - [4193] = {.lex_state = 13, .external_lex_state = 7}, + [4193] = {.lex_state = 2, .external_lex_state = 4}, [4194] = {.lex_state = 13, .external_lex_state = 6}, - [4195] = {.lex_state = 13, .external_lex_state = 6}, + [4195] = {.lex_state = 13, .external_lex_state = 7}, [4196] = {.lex_state = 13, .external_lex_state = 7}, [4197] = {.lex_state = 13, .external_lex_state = 7}, [4198] = {.lex_state = 13, .external_lex_state = 6}, [4199] = {.lex_state = 13, .external_lex_state = 7}, - [4200] = {.lex_state = 13, .external_lex_state = 7}, - [4201] = {.lex_state = 13, .external_lex_state = 6}, + [4200] = {.lex_state = 13, .external_lex_state = 6}, + [4201] = {.lex_state = 13, .external_lex_state = 7}, [4202] = {.lex_state = 13, .external_lex_state = 7}, [4203] = {.lex_state = 13, .external_lex_state = 6}, - [4204] = {.lex_state = 13, .external_lex_state = 6}, - [4205] = {.lex_state = 13, .external_lex_state = 7}, + [4204] = {.lex_state = 13, .external_lex_state = 7}, + [4205] = {.lex_state = 13, .external_lex_state = 6}, [4206] = {.lex_state = 13, .external_lex_state = 7}, - [4207] = {.lex_state = 13, .external_lex_state = 7}, + [4207] = {.lex_state = 13, .external_lex_state = 6}, [4208] = {.lex_state = 13, .external_lex_state = 7}, - [4209] = {.lex_state = 13, .external_lex_state = 6}, + [4209] = {.lex_state = 13, .external_lex_state = 7}, [4210] = {.lex_state = 13, .external_lex_state = 6}, - [4211] = {.lex_state = 13, .external_lex_state = 6}, + [4211] = {.lex_state = 13, .external_lex_state = 7}, [4212] = {.lex_state = 13, .external_lex_state = 7}, [4213] = {.lex_state = 13, .external_lex_state = 6}, - [4214] = {.lex_state = 13, .external_lex_state = 7}, - [4215] = {.lex_state = 13, .external_lex_state = 7}, + [4214] = {.lex_state = 13, .external_lex_state = 6}, + [4215] = {.lex_state = 13, .external_lex_state = 6}, [4216] = {.lex_state = 13, .external_lex_state = 7}, [4217] = {.lex_state = 13, .external_lex_state = 6}, [4218] = {.lex_state = 13, .external_lex_state = 7}, [4219] = {.lex_state = 13, .external_lex_state = 6}, [4220] = {.lex_state = 13, .external_lex_state = 6}, [4221] = {.lex_state = 13, .external_lex_state = 7}, - [4222] = {.lex_state = 13, .external_lex_state = 7}, - [4223] = {.lex_state = 13, .external_lex_state = 6}, - [4224] = {.lex_state = 14, .external_lex_state = 7}, - [4225] = {.lex_state = 13, .external_lex_state = 7}, + [4222] = {.lex_state = 14, .external_lex_state = 7}, + [4223] = {.lex_state = 13, .external_lex_state = 7}, + [4224] = {.lex_state = 13, .external_lex_state = 7}, + [4225] = {.lex_state = 14, .external_lex_state = 7}, [4226] = {.lex_state = 14, .external_lex_state = 7}, [4227] = {.lex_state = 14, .external_lex_state = 7}, [4228] = {.lex_state = 13, .external_lex_state = 7}, - [4229] = {.lex_state = 14, .external_lex_state = 7}, - [4230] = {.lex_state = 13, .external_lex_state = 6}, + [4229] = {.lex_state = 13, .external_lex_state = 7}, + [4230] = {.lex_state = 13, .external_lex_state = 7}, [4231] = {.lex_state = 14, .external_lex_state = 7}, - [4232] = {.lex_state = 14, .external_lex_state = 7}, - [4233] = {.lex_state = 13, .external_lex_state = 7}, + [4232] = {.lex_state = 13, .external_lex_state = 7}, + [4233] = {.lex_state = 14, .external_lex_state = 7}, [4234] = {.lex_state = 14, .external_lex_state = 7}, [4235] = {.lex_state = 14, .external_lex_state = 7}, [4236] = {.lex_state = 14, .external_lex_state = 7}, [4237] = {.lex_state = 13, .external_lex_state = 7}, - [4238] = {.lex_state = 13, .external_lex_state = 7}, - [4239] = {.lex_state = 14, .external_lex_state = 7}, + [4238] = {.lex_state = 14, .external_lex_state = 7}, + [4239] = {.lex_state = 13, .external_lex_state = 6}, [4240] = {.lex_state = 13, .external_lex_state = 7}, - [4241] = {.lex_state = 13, .external_lex_state = 7}, - [4242] = {.lex_state = 14, .external_lex_state = 7}, - [4243] = {.lex_state = 13, .external_lex_state = 7}, + [4241] = {.lex_state = 14, .external_lex_state = 7}, + [4242] = {.lex_state = 13, .external_lex_state = 7}, + [4243] = {.lex_state = 14, .external_lex_state = 7}, [4244] = {.lex_state = 14, .external_lex_state = 7}, [4245] = {.lex_state = 14, .external_lex_state = 7}, [4246] = {.lex_state = 13, .external_lex_state = 7}, [4247] = {.lex_state = 14, .external_lex_state = 7}, [4248] = {.lex_state = 14, .external_lex_state = 7}, - [4249] = {.lex_state = 14, .external_lex_state = 7}, + [4249] = {.lex_state = 13, .external_lex_state = 7}, [4250] = {.lex_state = 13, .external_lex_state = 7}, - [4251] = {.lex_state = 13, .external_lex_state = 7}, + [4251] = {.lex_state = 14, .external_lex_state = 7}, [4252] = {.lex_state = 13, .external_lex_state = 7}, - [4253] = {.lex_state = 14, .external_lex_state = 7}, - [4254] = {.lex_state = 13, .external_lex_state = 7}, - [4255] = {.lex_state = 14, .external_lex_state = 7}, + [4253] = {.lex_state = 13, .external_lex_state = 7}, + [4254] = {.lex_state = 14, .external_lex_state = 7}, + [4255] = {.lex_state = 13, .external_lex_state = 6}, [4256] = {.lex_state = 14, .external_lex_state = 6}, [4257] = {.lex_state = 13, .external_lex_state = 7}, [4258] = {.lex_state = 14, .external_lex_state = 6}, [4259] = {.lex_state = 14, .external_lex_state = 6}, - [4260] = {.lex_state = 14, .external_lex_state = 6}, + [4260] = {.lex_state = 13, .external_lex_state = 7}, [4261] = {.lex_state = 14, .external_lex_state = 6}, [4262] = {.lex_state = 14, .external_lex_state = 6}, [4263] = {.lex_state = 14, .external_lex_state = 6}, [4264] = {.lex_state = 14, .external_lex_state = 6}, [4265] = {.lex_state = 14, .external_lex_state = 6}, - [4266] = {.lex_state = 14, .external_lex_state = 6}, + [4266] = {.lex_state = 13, .external_lex_state = 7}, [4267] = {.lex_state = 14, .external_lex_state = 6}, - [4268] = {.lex_state = 13, .external_lex_state = 7}, - [4269] = {.lex_state = 13, .external_lex_state = 7}, + [4268] = {.lex_state = 14, .external_lex_state = 6}, + [4269] = {.lex_state = 14, .external_lex_state = 6}, [4270] = {.lex_state = 14, .external_lex_state = 6}, - [4271] = {.lex_state = 13, .external_lex_state = 7}, + [4271] = {.lex_state = 14, .external_lex_state = 6}, [4272] = {.lex_state = 14, .external_lex_state = 6}, - [4273] = {.lex_state = 13, .external_lex_state = 7}, - [4274] = {.lex_state = 13, .external_lex_state = 7}, + [4273] = {.lex_state = 14, .external_lex_state = 6}, + [4274] = {.lex_state = 14, .external_lex_state = 6}, [4275] = {.lex_state = 13, .external_lex_state = 7}, - [4276] = {.lex_state = 14, .external_lex_state = 6}, - [4277] = {.lex_state = 14, .external_lex_state = 6}, - [4278] = {.lex_state = 14, .external_lex_state = 6}, + [4276] = {.lex_state = 13, .external_lex_state = 7}, + [4277] = {.lex_state = 13, .external_lex_state = 7}, + [4278] = {.lex_state = 13, .external_lex_state = 7}, [4279] = {.lex_state = 13, .external_lex_state = 7}, [4280] = {.lex_state = 14, .external_lex_state = 6}, [4281] = {.lex_state = 14, .external_lex_state = 7}, @@ -24402,113 +24411,113 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4285] = {.lex_state = 14, .external_lex_state = 7}, [4286] = {.lex_state = 13, .external_lex_state = 6}, [4287] = {.lex_state = 14, .external_lex_state = 7}, - [4288] = {.lex_state = 14, .external_lex_state = 7}, - [4289] = {.lex_state = 14, .external_lex_state = 7}, - [4290] = {.lex_state = 13, .external_lex_state = 6}, + [4288] = {.lex_state = 13, .external_lex_state = 6}, + [4289] = {.lex_state = 13, .external_lex_state = 6}, + [4290] = {.lex_state = 14, .external_lex_state = 7}, [4291] = {.lex_state = 14, .external_lex_state = 7}, [4292] = {.lex_state = 14, .external_lex_state = 7}, [4293] = {.lex_state = 14, .external_lex_state = 7}, - [4294] = {.lex_state = 13, .external_lex_state = 6}, + [4294] = {.lex_state = 14, .external_lex_state = 7}, [4295] = {.lex_state = 14, .external_lex_state = 7}, - [4296] = {.lex_state = 13, .external_lex_state = 6}, + [4296] = {.lex_state = 14, .external_lex_state = 7}, [4297] = {.lex_state = 14, .external_lex_state = 7}, - [4298] = {.lex_state = 14, .external_lex_state = 7}, + [4298] = {.lex_state = 13, .external_lex_state = 6}, [4299] = {.lex_state = 14, .external_lex_state = 7}, - [4300] = {.lex_state = 14, .external_lex_state = 7}, + [4300] = {.lex_state = 13, .external_lex_state = 6}, [4301] = {.lex_state = 14, .external_lex_state = 7}, [4302] = {.lex_state = 14, .external_lex_state = 7}, - [4303] = {.lex_state = 13, .external_lex_state = 6}, + [4303] = {.lex_state = 14, .external_lex_state = 7}, [4304] = {.lex_state = 13, .external_lex_state = 7}, - [4305] = {.lex_state = 14, .external_lex_state = 6}, - [4306] = {.lex_state = 13, .external_lex_state = 7}, - [4307] = {.lex_state = 14, .external_lex_state = 6}, + [4305] = {.lex_state = 23, .external_lex_state = 8}, + [4306] = {.lex_state = 23, .external_lex_state = 8}, + [4307] = {.lex_state = 23, .external_lex_state = 8}, [4308] = {.lex_state = 14, .external_lex_state = 6}, - [4309] = {.lex_state = 14, .external_lex_state = 6}, + [4309] = {.lex_state = 23, .external_lex_state = 8}, [4310] = {.lex_state = 14, .external_lex_state = 6}, - [4311] = {.lex_state = 13, .external_lex_state = 7}, - [4312] = {.lex_state = 14, .external_lex_state = 6}, - [4313] = {.lex_state = 13, .external_lex_state = 7}, - [4314] = {.lex_state = 14, .external_lex_state = 6}, - [4315] = {.lex_state = 14, .external_lex_state = 6}, - [4316] = {.lex_state = 14, .external_lex_state = 6}, - [4317] = {.lex_state = 13, .external_lex_state = 7}, - [4318] = {.lex_state = 13, .external_lex_state = 7}, - [4319] = {.lex_state = 14, .external_lex_state = 6}, - [4320] = {.lex_state = 14, .external_lex_state = 6}, - [4321] = {.lex_state = 14, .external_lex_state = 6}, - [4322] = {.lex_state = 14, .external_lex_state = 6}, + [4311] = {.lex_state = 23, .external_lex_state = 8}, + [4312] = {.lex_state = 23, .external_lex_state = 8}, + [4313] = {.lex_state = 23, .external_lex_state = 8}, + [4314] = {.lex_state = 23, .external_lex_state = 8}, + [4315] = {.lex_state = 23, .external_lex_state = 8}, + [4316] = {.lex_state = 23, .external_lex_state = 8}, + [4317] = {.lex_state = 23, .external_lex_state = 8}, + [4318] = {.lex_state = 23, .external_lex_state = 8}, + [4319] = {.lex_state = 23, .external_lex_state = 8}, + [4320] = {.lex_state = 23, .external_lex_state = 8}, + [4321] = {.lex_state = 23, .external_lex_state = 8}, + [4322] = {.lex_state = 23, .external_lex_state = 8}, [4323] = {.lex_state = 23, .external_lex_state = 8}, [4324] = {.lex_state = 23, .external_lex_state = 8}, [4325] = {.lex_state = 23, .external_lex_state = 8}, - [4326] = {.lex_state = 14, .external_lex_state = 6}, + [4326] = {.lex_state = 23, .external_lex_state = 8}, [4327] = {.lex_state = 23, .external_lex_state = 8}, [4328] = {.lex_state = 14, .external_lex_state = 6}, - [4329] = {.lex_state = 14, .external_lex_state = 6}, - [4330] = {.lex_state = 14, .external_lex_state = 6}, - [4331] = {.lex_state = 23, .external_lex_state = 8}, - [4332] = {.lex_state = 14, .external_lex_state = 6}, - [4333] = {.lex_state = 14, .external_lex_state = 6}, - [4334] = {.lex_state = 23, .external_lex_state = 8}, - [4335] = {.lex_state = 14, .external_lex_state = 6}, - [4336] = {.lex_state = 23, .external_lex_state = 8}, - [4337] = {.lex_state = 23, .external_lex_state = 8}, + [4329] = {.lex_state = 23, .external_lex_state = 8}, + [4330] = {.lex_state = 23, .external_lex_state = 8}, + [4331] = {.lex_state = 14, .external_lex_state = 6}, + [4332] = {.lex_state = 23, .external_lex_state = 8}, + [4333] = {.lex_state = 23, .external_lex_state = 8}, + [4334] = {.lex_state = 14, .external_lex_state = 6}, + [4335] = {.lex_state = 23, .external_lex_state = 8}, + [4336] = {.lex_state = 13, .external_lex_state = 7}, + [4337] = {.lex_state = 13, .external_lex_state = 7}, [4338] = {.lex_state = 23, .external_lex_state = 8}, - [4339] = {.lex_state = 14, .external_lex_state = 6}, - [4340] = {.lex_state = 23, .external_lex_state = 8}, + [4339] = {.lex_state = 23, .external_lex_state = 8}, + [4340] = {.lex_state = 14, .external_lex_state = 6}, [4341] = {.lex_state = 23, .external_lex_state = 8}, [4342] = {.lex_state = 23, .external_lex_state = 8}, [4343] = {.lex_state = 23, .external_lex_state = 8}, [4344] = {.lex_state = 23, .external_lex_state = 8}, - [4345] = {.lex_state = 23, .external_lex_state = 8}, + [4345] = {.lex_state = 14, .external_lex_state = 6}, [4346] = {.lex_state = 23, .external_lex_state = 8}, - [4347] = {.lex_state = 23, .external_lex_state = 8}, - [4348] = {.lex_state = 14, .external_lex_state = 6}, + [4347] = {.lex_state = 14, .external_lex_state = 6}, + [4348] = {.lex_state = 23, .external_lex_state = 8}, [4349] = {.lex_state = 23, .external_lex_state = 8}, [4350] = {.lex_state = 14, .external_lex_state = 6}, - [4351] = {.lex_state = 23, .external_lex_state = 8}, + [4351] = {.lex_state = 13, .external_lex_state = 7}, [4352] = {.lex_state = 23, .external_lex_state = 8}, - [4353] = {.lex_state = 23, .external_lex_state = 8}, - [4354] = {.lex_state = 14, .external_lex_state = 6}, + [4353] = {.lex_state = 13, .external_lex_state = 7}, + [4354] = {.lex_state = 23, .external_lex_state = 8}, [4355] = {.lex_state = 23, .external_lex_state = 8}, [4356] = {.lex_state = 23, .external_lex_state = 8}, [4357] = {.lex_state = 23, .external_lex_state = 8}, [4358] = {.lex_state = 23, .external_lex_state = 8}, [4359] = {.lex_state = 23, .external_lex_state = 8}, [4360] = {.lex_state = 23, .external_lex_state = 8}, - [4361] = {.lex_state = 23, .external_lex_state = 8}, - [4362] = {.lex_state = 14, .external_lex_state = 6}, + [4361] = {.lex_state = 13, .external_lex_state = 7}, + [4362] = {.lex_state = 23, .external_lex_state = 8}, [4363] = {.lex_state = 23, .external_lex_state = 8}, [4364] = {.lex_state = 23, .external_lex_state = 8}, [4365] = {.lex_state = 23, .external_lex_state = 8}, [4366] = {.lex_state = 23, .external_lex_state = 8}, - [4367] = {.lex_state = 23, .external_lex_state = 8}, - [4368] = {.lex_state = 23, .external_lex_state = 8}, + [4367] = {.lex_state = 14, .external_lex_state = 6}, + [4368] = {.lex_state = 14, .external_lex_state = 6}, [4369] = {.lex_state = 23, .external_lex_state = 8}, [4370] = {.lex_state = 23, .external_lex_state = 8}, [4371] = {.lex_state = 23, .external_lex_state = 8}, [4372] = {.lex_state = 23, .external_lex_state = 8}, - [4373] = {.lex_state = 14, .external_lex_state = 6}, + [4373] = {.lex_state = 23, .external_lex_state = 8}, [4374] = {.lex_state = 23, .external_lex_state = 8}, - [4375] = {.lex_state = 23, .external_lex_state = 8}, + [4375] = {.lex_state = 14, .external_lex_state = 6}, [4376] = {.lex_state = 23, .external_lex_state = 8}, - [4377] = {.lex_state = 23, .external_lex_state = 8}, - [4378] = {.lex_state = 23, .external_lex_state = 8}, - [4379] = {.lex_state = 23, .external_lex_state = 8}, - [4380] = {.lex_state = 23, .external_lex_state = 8}, - [4381] = {.lex_state = 23, .external_lex_state = 8}, - [4382] = {.lex_state = 23, .external_lex_state = 8}, - [4383] = {.lex_state = 23, .external_lex_state = 8}, - [4384] = {.lex_state = 23, .external_lex_state = 8}, - [4385] = {.lex_state = 23, .external_lex_state = 8}, + [4377] = {.lex_state = 14, .external_lex_state = 6}, + [4378] = {.lex_state = 14, .external_lex_state = 6}, + [4379] = {.lex_state = 14, .external_lex_state = 6}, + [4380] = {.lex_state = 14, .external_lex_state = 6}, + [4381] = {.lex_state = 321, .external_lex_state = 2}, + [4382] = {.lex_state = 321, .external_lex_state = 2}, + [4383] = {.lex_state = 14, .external_lex_state = 6}, + [4384] = {.lex_state = 14, .external_lex_state = 6}, + [4385] = {.lex_state = 14, .external_lex_state = 6}, [4386] = {.lex_state = 14, .external_lex_state = 6}, - [4387] = {.lex_state = 23, .external_lex_state = 8}, - [4388] = {.lex_state = 23, .external_lex_state = 8}, + [4387] = {.lex_state = 14, .external_lex_state = 6}, + [4388] = {.lex_state = 14, .external_lex_state = 6}, [4389] = {.lex_state = 14, .external_lex_state = 6}, - [4390] = {.lex_state = 23, .external_lex_state = 8}, - [4391] = {.lex_state = 23, .external_lex_state = 8}, - [4392] = {.lex_state = 23, .external_lex_state = 8}, - [4393] = {.lex_state = 321, .external_lex_state = 2}, - [4394] = {.lex_state = 321, .external_lex_state = 2}, + [4390] = {.lex_state = 14, .external_lex_state = 6}, + [4391] = {.lex_state = 14, .external_lex_state = 6}, + [4392] = {.lex_state = 14, .external_lex_state = 6}, + [4393] = {.lex_state = 14, .external_lex_state = 6}, + [4394] = {.lex_state = 14, .external_lex_state = 6}, [4395] = {.lex_state = 14, .external_lex_state = 6}, [4396] = {.lex_state = 14, .external_lex_state = 6}, [4397] = {.lex_state = 14, .external_lex_state = 6}, @@ -24643,10 +24652,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4526] = {.lex_state = 14, .external_lex_state = 6}, [4527] = {.lex_state = 14, .external_lex_state = 6}, [4528] = {.lex_state = 14, .external_lex_state = 6}, - [4529] = {.lex_state = 12, .external_lex_state = 5}, - [4530] = {.lex_state = 14, .external_lex_state = 6}, + [4529] = {.lex_state = 14, .external_lex_state = 6}, + [4530] = {.lex_state = 12, .external_lex_state = 5}, [4531] = {.lex_state = 14, .external_lex_state = 6}, - [4532] = {.lex_state = 14, .external_lex_state = 6}, + [4532] = {.lex_state = 12, .external_lex_state = 5}, [4533] = {.lex_state = 14, .external_lex_state = 6}, [4534] = {.lex_state = 14, .external_lex_state = 6}, [4535] = {.lex_state = 12, .external_lex_state = 5}, @@ -24655,42 +24664,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4538] = {.lex_state = 14, .external_lex_state = 6}, [4539] = {.lex_state = 14, .external_lex_state = 6}, [4540] = {.lex_state = 14, .external_lex_state = 6}, - [4541] = {.lex_state = 12, .external_lex_state = 5}, + [4541] = {.lex_state = 14, .external_lex_state = 6}, [4542] = {.lex_state = 14, .external_lex_state = 6}, [4543] = {.lex_state = 14, .external_lex_state = 6}, [4544] = {.lex_state = 14, .external_lex_state = 6}, [4545] = {.lex_state = 14, .external_lex_state = 7}, - [4546] = {.lex_state = 14, .external_lex_state = 6}, + [4546] = {.lex_state = 12, .external_lex_state = 5}, [4547] = {.lex_state = 14, .external_lex_state = 6}, [4548] = {.lex_state = 14, .external_lex_state = 6}, - [4549] = {.lex_state = 14, .external_lex_state = 7}, + [4549] = {.lex_state = 14, .external_lex_state = 6}, [4550] = {.lex_state = 14, .external_lex_state = 6}, - [4551] = {.lex_state = 14, .external_lex_state = 6}, + [4551] = {.lex_state = 12, .external_lex_state = 5}, [4552] = {.lex_state = 14, .external_lex_state = 6}, - [4553] = {.lex_state = 14, .external_lex_state = 6}, + [4553] = {.lex_state = 14, .external_lex_state = 7}, [4554] = {.lex_state = 14, .external_lex_state = 6}, [4555] = {.lex_state = 14, .external_lex_state = 6}, - [4556] = {.lex_state = 14, .external_lex_state = 6}, + [4556] = {.lex_state = 14, .external_lex_state = 7}, [4557] = {.lex_state = 14, .external_lex_state = 6}, [4558] = {.lex_state = 14, .external_lex_state = 6}, [4559] = {.lex_state = 14, .external_lex_state = 6}, - [4560] = {.lex_state = 12, .external_lex_state = 5}, + [4560] = {.lex_state = 14, .external_lex_state = 6}, [4561] = {.lex_state = 14, .external_lex_state = 6}, - [4562] = {.lex_state = 14, .external_lex_state = 7}, + [4562] = {.lex_state = 14, .external_lex_state = 6}, [4563] = {.lex_state = 14, .external_lex_state = 6}, - [4564] = {.lex_state = 12, .external_lex_state = 5}, + [4564] = {.lex_state = 14, .external_lex_state = 6}, [4565] = {.lex_state = 14, .external_lex_state = 6}, - [4566] = {.lex_state = 14, .external_lex_state = 6}, + [4566] = {.lex_state = 14, .external_lex_state = 7}, [4567] = {.lex_state = 14, .external_lex_state = 6}, - [4568] = {.lex_state = 14, .external_lex_state = 7}, + [4568] = {.lex_state = 14, .external_lex_state = 6}, [4569] = {.lex_state = 14, .external_lex_state = 6}, [4570] = {.lex_state = 14, .external_lex_state = 6}, [4571] = {.lex_state = 14, .external_lex_state = 6}, [4572] = {.lex_state = 14, .external_lex_state = 6}, [4573] = {.lex_state = 14, .external_lex_state = 6}, - [4574] = {.lex_state = 14, .external_lex_state = 6}, + [4574] = {.lex_state = 12, .external_lex_state = 5}, [4575] = {.lex_state = 14, .external_lex_state = 6}, - [4576] = {.lex_state = 12, .external_lex_state = 5}, + [4576] = {.lex_state = 14, .external_lex_state = 6}, [4577] = {.lex_state = 14, .external_lex_state = 6}, [4578] = {.lex_state = 14, .external_lex_state = 6}, [4579] = {.lex_state = 14, .external_lex_state = 6}, @@ -24698,102 +24707,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4581] = {.lex_state = 14, .external_lex_state = 6}, [4582] = {.lex_state = 14, .external_lex_state = 6}, [4583] = {.lex_state = 14, .external_lex_state = 6}, - [4584] = {.lex_state = 14, .external_lex_state = 7}, + [4584] = {.lex_state = 14, .external_lex_state = 6}, [4585] = {.lex_state = 14, .external_lex_state = 6}, [4586] = {.lex_state = 14, .external_lex_state = 6}, [4587] = {.lex_state = 14, .external_lex_state = 6}, [4588] = {.lex_state = 14, .external_lex_state = 6}, [4589] = {.lex_state = 14, .external_lex_state = 6}, [4590] = {.lex_state = 14, .external_lex_state = 6}, - [4591] = {.lex_state = 14, .external_lex_state = 6}, + [4591] = {.lex_state = 12, .external_lex_state = 5}, [4592] = {.lex_state = 14, .external_lex_state = 6}, - [4593] = {.lex_state = 12, .external_lex_state = 5}, - [4594] = {.lex_state = 14, .external_lex_state = 7}, - [4595] = {.lex_state = 12, .external_lex_state = 5}, + [4593] = {.lex_state = 14, .external_lex_state = 6}, + [4594] = {.lex_state = 14, .external_lex_state = 6}, + [4595] = {.lex_state = 14, .external_lex_state = 6}, [4596] = {.lex_state = 14, .external_lex_state = 6}, - [4597] = {.lex_state = 14, .external_lex_state = 7}, + [4597] = {.lex_state = 14, .external_lex_state = 6}, [4598] = {.lex_state = 14, .external_lex_state = 6}, - [4599] = {.lex_state = 12, .external_lex_state = 5}, + [4599] = {.lex_state = 14, .external_lex_state = 6}, [4600] = {.lex_state = 14, .external_lex_state = 6}, [4601] = {.lex_state = 14, .external_lex_state = 6}, - [4602] = {.lex_state = 12, .external_lex_state = 5}, + [4602] = {.lex_state = 14, .external_lex_state = 7}, [4603] = {.lex_state = 14, .external_lex_state = 6}, [4604] = {.lex_state = 14, .external_lex_state = 6}, [4605] = {.lex_state = 14, .external_lex_state = 6}, [4606] = {.lex_state = 14, .external_lex_state = 6}, [4607] = {.lex_state = 14, .external_lex_state = 6}, [4608] = {.lex_state = 14, .external_lex_state = 6}, - [4609] = {.lex_state = 14, .external_lex_state = 6}, + [4609] = {.lex_state = 14, .external_lex_state = 7}, [4610] = {.lex_state = 14, .external_lex_state = 6}, - [4611] = {.lex_state = 14, .external_lex_state = 6}, - [4612] = {.lex_state = 14, .external_lex_state = 6}, - [4613] = {.lex_state = 14, .external_lex_state = 6}, - [4614] = {.lex_state = 14, .external_lex_state = 6}, + [4611] = {.lex_state = 12, .external_lex_state = 5}, + [4612] = {.lex_state = 12, .external_lex_state = 5}, + [4613] = {.lex_state = 12, .external_lex_state = 5}, + [4614] = {.lex_state = 14, .external_lex_state = 7}, [4615] = {.lex_state = 14, .external_lex_state = 6}, - [4616] = {.lex_state = 14, .external_lex_state = 6}, + [4616] = {.lex_state = 14, .external_lex_state = 7}, [4617] = {.lex_state = 14, .external_lex_state = 6}, - [4618] = {.lex_state = 14, .external_lex_state = 7}, - [4619] = {.lex_state = 14, .external_lex_state = 7}, + [4618] = {.lex_state = 14, .external_lex_state = 6}, + [4619] = {.lex_state = 14, .external_lex_state = 6}, [4620] = {.lex_state = 12, .external_lex_state = 5}, [4621] = {.lex_state = 14, .external_lex_state = 6}, - [4622] = {.lex_state = 14, .external_lex_state = 6}, - [4623] = {.lex_state = 14, .external_lex_state = 6}, - [4624] = {.lex_state = 14, .external_lex_state = 6}, - [4625] = {.lex_state = 14, .external_lex_state = 6}, - [4626] = {.lex_state = 14, .external_lex_state = 6}, - [4627] = {.lex_state = 14, .external_lex_state = 6}, - [4628] = {.lex_state = 14, .external_lex_state = 6}, + [4622] = {.lex_state = 12, .external_lex_state = 5}, + [4623] = {.lex_state = 12, .external_lex_state = 5}, + [4624] = {.lex_state = 12, .external_lex_state = 5}, + [4625] = {.lex_state = 12, .external_lex_state = 5}, + [4626] = {.lex_state = 12, .external_lex_state = 5}, + [4627] = {.lex_state = 12, .external_lex_state = 5}, + [4628] = {.lex_state = 12, .external_lex_state = 5}, [4629] = {.lex_state = 14, .external_lex_state = 6}, [4630] = {.lex_state = 14, .external_lex_state = 6}, - [4631] = {.lex_state = 12, .external_lex_state = 5}, + [4631] = {.lex_state = 14, .external_lex_state = 6}, [4632] = {.lex_state = 14, .external_lex_state = 6}, - [4633] = {.lex_state = 12, .external_lex_state = 5}, - [4634] = {.lex_state = 12, .external_lex_state = 5}, + [4633] = {.lex_state = 14, .external_lex_state = 6}, + [4634] = {.lex_state = 14, .external_lex_state = 6}, [4635] = {.lex_state = 14, .external_lex_state = 6}, - [4636] = {.lex_state = 12, .external_lex_state = 5}, - [4637] = {.lex_state = 14, .external_lex_state = 7}, - [4638] = {.lex_state = 16, .external_lex_state = 6}, + [4636] = {.lex_state = 14, .external_lex_state = 6}, + [4637] = {.lex_state = 12, .external_lex_state = 5}, + [4638] = {.lex_state = 14, .external_lex_state = 6}, [4639] = {.lex_state = 14, .external_lex_state = 6}, - [4640] = {.lex_state = 12, .external_lex_state = 5}, - [4641] = {.lex_state = 14, .external_lex_state = 7}, - [4642] = {.lex_state = 14, .external_lex_state = 7}, - [4643] = {.lex_state = 14, .external_lex_state = 6}, - [4644] = {.lex_state = 14, .external_lex_state = 7}, + [4640] = {.lex_state = 14, .external_lex_state = 7}, + [4641] = {.lex_state = 14, .external_lex_state = 6}, + [4642] = {.lex_state = 14, .external_lex_state = 6}, + [4643] = {.lex_state = 14, .external_lex_state = 7}, + [4644] = {.lex_state = 14, .external_lex_state = 6}, [4645] = {.lex_state = 14, .external_lex_state = 6}, - [4646] = {.lex_state = 14, .external_lex_state = 7}, + [4646] = {.lex_state = 12, .external_lex_state = 5}, [4647] = {.lex_state = 14, .external_lex_state = 6}, [4648] = {.lex_state = 12, .external_lex_state = 5}, - [4649] = {.lex_state = 14, .external_lex_state = 7}, - [4650] = {.lex_state = 14, .external_lex_state = 6}, + [4649] = {.lex_state = 12, .external_lex_state = 5}, + [4650] = {.lex_state = 12, .external_lex_state = 5}, [4651] = {.lex_state = 14, .external_lex_state = 6}, [4652] = {.lex_state = 14, .external_lex_state = 6}, - [4653] = {.lex_state = 14, .external_lex_state = 7}, - [4654] = {.lex_state = 12, .external_lex_state = 5}, + [4653] = {.lex_state = 14, .external_lex_state = 6}, + [4654] = {.lex_state = 14, .external_lex_state = 6}, [4655] = {.lex_state = 14, .external_lex_state = 6}, - [4656] = {.lex_state = 12, .external_lex_state = 5}, + [4656] = {.lex_state = 14, .external_lex_state = 6}, [4657] = {.lex_state = 14, .external_lex_state = 6}, [4658] = {.lex_state = 14, .external_lex_state = 6}, [4659] = {.lex_state = 14, .external_lex_state = 6}, [4660] = {.lex_state = 14, .external_lex_state = 6}, - [4661] = {.lex_state = 14, .external_lex_state = 6}, - [4662] = {.lex_state = 14, .external_lex_state = 7}, + [4661] = {.lex_state = 16, .external_lex_state = 6}, + [4662] = {.lex_state = 14, .external_lex_state = 6}, [4663] = {.lex_state = 14, .external_lex_state = 6}, [4664] = {.lex_state = 14, .external_lex_state = 6}, - [4665] = {.lex_state = 14, .external_lex_state = 6}, - [4666] = {.lex_state = 14, .external_lex_state = 6}, + [4665] = {.lex_state = 14, .external_lex_state = 7}, + [4666] = {.lex_state = 14, .external_lex_state = 7}, [4667] = {.lex_state = 14, .external_lex_state = 6}, - [4668] = {.lex_state = 14, .external_lex_state = 6}, - [4669] = {.lex_state = 12, .external_lex_state = 5}, + [4668] = {.lex_state = 14, .external_lex_state = 7}, + [4669] = {.lex_state = 14, .external_lex_state = 7}, [4670] = {.lex_state = 14, .external_lex_state = 6}, [4671] = {.lex_state = 14, .external_lex_state = 6}, - [4672] = {.lex_state = 12, .external_lex_state = 5}, - [4673] = {.lex_state = 14, .external_lex_state = 6}, + [4672] = {.lex_state = 14, .external_lex_state = 7}, + [4673] = {.lex_state = 14, .external_lex_state = 7}, [4674] = {.lex_state = 14, .external_lex_state = 6}, [4675] = {.lex_state = 14, .external_lex_state = 6}, [4676] = {.lex_state = 14, .external_lex_state = 6}, [4677] = {.lex_state = 14, .external_lex_state = 6}, [4678] = {.lex_state = 14, .external_lex_state = 6}, - [4679] = {.lex_state = 12, .external_lex_state = 5}, + [4679] = {.lex_state = 14, .external_lex_state = 6}, [4680] = {.lex_state = 14, .external_lex_state = 6}, [4681] = {.lex_state = 14, .external_lex_state = 6}, [4682] = {.lex_state = 14, .external_lex_state = 6}, @@ -24802,8 +24811,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4685] = {.lex_state = 14, .external_lex_state = 6}, [4686] = {.lex_state = 14, .external_lex_state = 6}, [4687] = {.lex_state = 14, .external_lex_state = 6}, - [4688] = {.lex_state = 14, .external_lex_state = 6}, - [4689] = {.lex_state = 12, .external_lex_state = 5}, + [4688] = {.lex_state = 14, .external_lex_state = 7}, + [4689] = {.lex_state = 14, .external_lex_state = 6}, [4690] = {.lex_state = 14, .external_lex_state = 6}, [4691] = {.lex_state = 14, .external_lex_state = 6}, [4692] = {.lex_state = 14, .external_lex_state = 6}, @@ -24829,21 +24838,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4712] = {.lex_state = 14, .external_lex_state = 6}, [4713] = {.lex_state = 14, .external_lex_state = 6}, [4714] = {.lex_state = 14, .external_lex_state = 6}, - [4715] = {.lex_state = 14, .external_lex_state = 6}, + [4715] = {.lex_state = 14, .external_lex_state = 7}, [4716] = {.lex_state = 14, .external_lex_state = 6}, - [4717] = {.lex_state = 14, .external_lex_state = 7}, - [4718] = {.lex_state = 14, .external_lex_state = 6}, - [4719] = {.lex_state = 14, .external_lex_state = 6}, + [4717] = {.lex_state = 14, .external_lex_state = 6}, + [4718] = {.lex_state = 14, .external_lex_state = 7}, + [4719] = {.lex_state = 14, .external_lex_state = 7}, [4720] = {.lex_state = 14, .external_lex_state = 6}, [4721] = {.lex_state = 14, .external_lex_state = 6}, [4722] = {.lex_state = 14, .external_lex_state = 6}, - [4723] = {.lex_state = 14, .external_lex_state = 6}, - [4724] = {.lex_state = 14, .external_lex_state = 7}, - [4725] = {.lex_state = 14, .external_lex_state = 6}, - [4726] = {.lex_state = 14, .external_lex_state = 6}, - [4727] = {.lex_state = 14, .external_lex_state = 6}, + [4723] = {.lex_state = 14, .external_lex_state = 7}, + [4724] = {.lex_state = 14, .external_lex_state = 6}, + [4725] = {.lex_state = 14, .external_lex_state = 7}, + [4726] = {.lex_state = 14, .external_lex_state = 7}, + [4727] = {.lex_state = 14, .external_lex_state = 7}, [4728] = {.lex_state = 14, .external_lex_state = 6}, - [4729] = {.lex_state = 14, .external_lex_state = 6}, + [4729] = {.lex_state = 14, .external_lex_state = 7}, [4730] = {.lex_state = 14, .external_lex_state = 6}, [4731] = {.lex_state = 14, .external_lex_state = 6}, [4732] = {.lex_state = 14, .external_lex_state = 6}, @@ -24855,36 +24864,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4738] = {.lex_state = 14, .external_lex_state = 6}, [4739] = {.lex_state = 14, .external_lex_state = 6}, [4740] = {.lex_state = 14, .external_lex_state = 6}, - [4741] = {.lex_state = 14, .external_lex_state = 7}, + [4741] = {.lex_state = 14, .external_lex_state = 6}, [4742] = {.lex_state = 14, .external_lex_state = 6}, [4743] = {.lex_state = 14, .external_lex_state = 6}, [4744] = {.lex_state = 14, .external_lex_state = 6}, [4745] = {.lex_state = 14, .external_lex_state = 6}, [4746] = {.lex_state = 14, .external_lex_state = 6}, - [4747] = {.lex_state = 14, .external_lex_state = 7}, + [4747] = {.lex_state = 14, .external_lex_state = 6}, [4748] = {.lex_state = 14, .external_lex_state = 6}, [4749] = {.lex_state = 14, .external_lex_state = 6}, - [4750] = {.lex_state = 14, .external_lex_state = 7}, + [4750] = {.lex_state = 14, .external_lex_state = 6}, [4751] = {.lex_state = 14, .external_lex_state = 6}, [4752] = {.lex_state = 14, .external_lex_state = 6}, [4753] = {.lex_state = 14, .external_lex_state = 6}, [4754] = {.lex_state = 14, .external_lex_state = 6}, - [4755] = {.lex_state = 14, .external_lex_state = 7}, + [4755] = {.lex_state = 14, .external_lex_state = 6}, [4756] = {.lex_state = 14, .external_lex_state = 6}, - [4757] = {.lex_state = 14, .external_lex_state = 6}, + [4757] = {.lex_state = 14, .external_lex_state = 7}, [4758] = {.lex_state = 14, .external_lex_state = 6}, - [4759] = {.lex_state = 14, .external_lex_state = 7}, - [4760] = {.lex_state = 14, .external_lex_state = 7}, + [4759] = {.lex_state = 14, .external_lex_state = 6}, + [4760] = {.lex_state = 14, .external_lex_state = 6}, [4761] = {.lex_state = 14, .external_lex_state = 7}, [4762] = {.lex_state = 14, .external_lex_state = 6}, - [4763] = {.lex_state = 14, .external_lex_state = 6}, + [4763] = {.lex_state = 14, .external_lex_state = 7}, [4764] = {.lex_state = 14, .external_lex_state = 6}, - [4765] = {.lex_state = 14, .external_lex_state = 7}, - [4766] = {.lex_state = 14, .external_lex_state = 6}, - [4767] = {.lex_state = 14, .external_lex_state = 7}, - [4768] = {.lex_state = 14, .external_lex_state = 7}, + [4765] = {.lex_state = 14, .external_lex_state = 6}, + [4766] = {.lex_state = 14, .external_lex_state = 7}, + [4767] = {.lex_state = 14, .external_lex_state = 6}, + [4768] = {.lex_state = 14, .external_lex_state = 6}, [4769] = {.lex_state = 14, .external_lex_state = 6}, - [4770] = {.lex_state = 14, .external_lex_state = 6}, + [4770] = {.lex_state = 14, .external_lex_state = 7}, [4771] = {.lex_state = 14, .external_lex_state = 6}, [4772] = {.lex_state = 14, .external_lex_state = 6}, [4773] = {.lex_state = 14, .external_lex_state = 6}, @@ -24892,12 +24901,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4775] = {.lex_state = 14, .external_lex_state = 6}, [4776] = {.lex_state = 14, .external_lex_state = 6}, [4777] = {.lex_state = 14, .external_lex_state = 6}, - [4778] = {.lex_state = 14, .external_lex_state = 6}, - [4779] = {.lex_state = 14, .external_lex_state = 6}, + [4778] = {.lex_state = 14, .external_lex_state = 7}, + [4779] = {.lex_state = 14, .external_lex_state = 7}, [4780] = {.lex_state = 14, .external_lex_state = 6}, [4781] = {.lex_state = 14, .external_lex_state = 6}, [4782] = {.lex_state = 14, .external_lex_state = 6}, - [4783] = {.lex_state = 14, .external_lex_state = 6}, + [4783] = {.lex_state = 14, .external_lex_state = 7}, [4784] = {.lex_state = 14, .external_lex_state = 6}, [4785] = {.lex_state = 14, .external_lex_state = 6}, [4786] = {.lex_state = 14, .external_lex_state = 6}, @@ -24906,10 +24915,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4789] = {.lex_state = 14, .external_lex_state = 6}, [4790] = {.lex_state = 14, .external_lex_state = 6}, [4791] = {.lex_state = 14, .external_lex_state = 6}, - [4792] = {.lex_state = 14, .external_lex_state = 6}, + [4792] = {.lex_state = 14, .external_lex_state = 7}, [4793] = {.lex_state = 14, .external_lex_state = 6}, [4794] = {.lex_state = 14, .external_lex_state = 6}, - [4795] = {.lex_state = 14, .external_lex_state = 6}, + [4795] = {.lex_state = 14, .external_lex_state = 7}, [4796] = {.lex_state = 14, .external_lex_state = 6}, [4797] = {.lex_state = 14, .external_lex_state = 6}, [4798] = {.lex_state = 14, .external_lex_state = 6}, @@ -24917,13 +24926,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4800] = {.lex_state = 14, .external_lex_state = 6}, [4801] = {.lex_state = 14, .external_lex_state = 6}, [4802] = {.lex_state = 14, .external_lex_state = 6}, - [4803] = {.lex_state = 14, .external_lex_state = 6}, + [4803] = {.lex_state = 14, .external_lex_state = 7}, [4804] = {.lex_state = 14, .external_lex_state = 6}, - [4805] = {.lex_state = 14, .external_lex_state = 6}, - [4806] = {.lex_state = 14, .external_lex_state = 7}, + [4805] = {.lex_state = 14, .external_lex_state = 7}, + [4806] = {.lex_state = 14, .external_lex_state = 6}, [4807] = {.lex_state = 14, .external_lex_state = 7}, - [4808] = {.lex_state = 14, .external_lex_state = 7}, - [4809] = {.lex_state = 14, .external_lex_state = 7}, + [4808] = {.lex_state = 14, .external_lex_state = 6}, + [4809] = {.lex_state = 14, .external_lex_state = 6}, [4810] = {.lex_state = 14, .external_lex_state = 6}, [4811] = {.lex_state = 14, .external_lex_state = 6}, [4812] = {.lex_state = 14, .external_lex_state = 6}, @@ -24939,8 +24948,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4822] = {.lex_state = 14, .external_lex_state = 6}, [4823] = {.lex_state = 14, .external_lex_state = 6}, [4824] = {.lex_state = 14, .external_lex_state = 6}, - [4825] = {.lex_state = 14, .external_lex_state = 7}, - [4826] = {.lex_state = 14, .external_lex_state = 7}, + [4825] = {.lex_state = 14, .external_lex_state = 6}, + [4826] = {.lex_state = 14, .external_lex_state = 6}, [4827] = {.lex_state = 14, .external_lex_state = 6}, [4828] = {.lex_state = 14, .external_lex_state = 6}, [4829] = {.lex_state = 14, .external_lex_state = 6}, @@ -24955,262 +24964,262 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4838] = {.lex_state = 14, .external_lex_state = 6}, [4839] = {.lex_state = 14, .external_lex_state = 6}, [4840] = {.lex_state = 14, .external_lex_state = 6}, - [4841] = {.lex_state = 14, .external_lex_state = 7}, + [4841] = {.lex_state = 14, .external_lex_state = 6}, [4842] = {.lex_state = 14, .external_lex_state = 6}, - [4843] = {.lex_state = 14, .external_lex_state = 7}, + [4843] = {.lex_state = 14, .external_lex_state = 6}, [4844] = {.lex_state = 14, .external_lex_state = 6}, [4845] = {.lex_state = 14, .external_lex_state = 6}, [4846] = {.lex_state = 14, .external_lex_state = 6}, - [4847] = {.lex_state = 14, .external_lex_state = 7}, + [4847] = {.lex_state = 14, .external_lex_state = 6}, [4848] = {.lex_state = 14, .external_lex_state = 6}, - [4849] = {.lex_state = 14, .external_lex_state = 7}, - [4850] = {.lex_state = 14, .external_lex_state = 7}, + [4849] = {.lex_state = 14, .external_lex_state = 6}, + [4850] = {.lex_state = 14, .external_lex_state = 6}, [4851] = {.lex_state = 14, .external_lex_state = 6}, [4852] = {.lex_state = 12, .external_lex_state = 5}, - [4853] = {.lex_state = 14, .external_lex_state = 6}, + [4853] = {.lex_state = 12, .external_lex_state = 5}, [4854] = {.lex_state = 14, .external_lex_state = 6}, - [4855] = {.lex_state = 14, .external_lex_state = 6}, - [4856] = {.lex_state = 14, .external_lex_state = 6}, + [4855] = {.lex_state = 14, .external_lex_state = 7}, + [4856] = {.lex_state = 12, .external_lex_state = 5}, [4857] = {.lex_state = 12, .external_lex_state = 5}, [4858] = {.lex_state = 14, .external_lex_state = 6}, [4859] = {.lex_state = 14, .external_lex_state = 6}, - [4860] = {.lex_state = 14, .external_lex_state = 7}, + [4860] = {.lex_state = 12, .external_lex_state = 5}, [4861] = {.lex_state = 14, .external_lex_state = 6}, [4862] = {.lex_state = 14, .external_lex_state = 7}, [4863] = {.lex_state = 14, .external_lex_state = 6}, [4864] = {.lex_state = 14, .external_lex_state = 6}, [4865] = {.lex_state = 14, .external_lex_state = 7}, - [4866] = {.lex_state = 14, .external_lex_state = 7}, - [4867] = {.lex_state = 14, .external_lex_state = 6}, - [4868] = {.lex_state = 14, .external_lex_state = 7}, - [4869] = {.lex_state = 14, .external_lex_state = 7}, - [4870] = {.lex_state = 14, .external_lex_state = 6}, + [4866] = {.lex_state = 14, .external_lex_state = 6}, + [4867] = {.lex_state = 14, .external_lex_state = 7}, + [4868] = {.lex_state = 14, .external_lex_state = 6}, + [4869] = {.lex_state = 14, .external_lex_state = 6}, + [4870] = {.lex_state = 14, .external_lex_state = 7}, [4871] = {.lex_state = 14, .external_lex_state = 6}, [4872] = {.lex_state = 14, .external_lex_state = 7}, - [4873] = {.lex_state = 14, .external_lex_state = 6}, + [4873] = {.lex_state = 14, .external_lex_state = 7}, [4874] = {.lex_state = 14, .external_lex_state = 6}, - [4875] = {.lex_state = 14, .external_lex_state = 7}, + [4875] = {.lex_state = 14, .external_lex_state = 6}, [4876] = {.lex_state = 14, .external_lex_state = 6}, - [4877] = {.lex_state = 14, .external_lex_state = 6}, + [4877] = {.lex_state = 14, .external_lex_state = 7}, [4878] = {.lex_state = 14, .external_lex_state = 6}, [4879] = {.lex_state = 14, .external_lex_state = 6}, [4880] = {.lex_state = 14, .external_lex_state = 6}, - [4881] = {.lex_state = 12, .external_lex_state = 5}, - [4882] = {.lex_state = 12, .external_lex_state = 5}, + [4881] = {.lex_state = 14, .external_lex_state = 6}, + [4882] = {.lex_state = 14, .external_lex_state = 7}, [4883] = {.lex_state = 14, .external_lex_state = 6}, [4884] = {.lex_state = 14, .external_lex_state = 6}, - [4885] = {.lex_state = 12, .external_lex_state = 5}, - [4886] = {.lex_state = 14, .external_lex_state = 6}, + [4885] = {.lex_state = 14, .external_lex_state = 6}, + [4886] = {.lex_state = 14, .external_lex_state = 7}, [4887] = {.lex_state = 14, .external_lex_state = 6}, [4888] = {.lex_state = 14, .external_lex_state = 6}, [4889] = {.lex_state = 14, .external_lex_state = 7}, [4890] = {.lex_state = 14, .external_lex_state = 7}, - [4891] = {.lex_state = 14, .external_lex_state = 7}, - [4892] = {.lex_state = 14, .external_lex_state = 7}, - [4893] = {.lex_state = 12, .external_lex_state = 5}, - [4894] = {.lex_state = 14, .external_lex_state = 7}, + [4891] = {.lex_state = 14, .external_lex_state = 6}, + [4892] = {.lex_state = 14, .external_lex_state = 6}, + [4893] = {.lex_state = 14, .external_lex_state = 7}, + [4894] = {.lex_state = 12, .external_lex_state = 5}, [4895] = {.lex_state = 14, .external_lex_state = 7}, - [4896] = {.lex_state = 14, .external_lex_state = 6}, - [4897] = {.lex_state = 14, .external_lex_state = 6}, - [4898] = {.lex_state = 14, .external_lex_state = 6}, - [4899] = {.lex_state = 14, .external_lex_state = 6}, - [4900] = {.lex_state = 14, .external_lex_state = 7}, - [4901] = {.lex_state = 14, .external_lex_state = 7}, - [4902] = {.lex_state = 14, .external_lex_state = 7}, - [4903] = {.lex_state = 14, .external_lex_state = 7}, + [4896] = {.lex_state = 14, .external_lex_state = 7}, + [4897] = {.lex_state = 14, .external_lex_state = 7}, + [4898] = {.lex_state = 14, .external_lex_state = 7}, + [4899] = {.lex_state = 14, .external_lex_state = 7}, + [4900] = {.lex_state = 12, .external_lex_state = 5}, + [4901] = {.lex_state = 12, .external_lex_state = 5}, + [4902] = {.lex_state = 12, .external_lex_state = 5}, + [4903] = {.lex_state = 12, .external_lex_state = 5}, [4904] = {.lex_state = 12, .external_lex_state = 5}, - [4905] = {.lex_state = 14, .external_lex_state = 7}, - [4906] = {.lex_state = 12, .external_lex_state = 5}, + [4905] = {.lex_state = 12, .external_lex_state = 5}, + [4906] = {.lex_state = 14, .external_lex_state = 7}, [4907] = {.lex_state = 12, .external_lex_state = 5}, [4908] = {.lex_state = 12, .external_lex_state = 5}, - [4909] = {.lex_state = 12, .external_lex_state = 5}, - [4910] = {.lex_state = 14, .external_lex_state = 6}, + [4909] = {.lex_state = 14, .external_lex_state = 7}, + [4910] = {.lex_state = 12, .external_lex_state = 5}, [4911] = {.lex_state = 14, .external_lex_state = 7}, - [4912] = {.lex_state = 14, .external_lex_state = 7}, - [4913] = {.lex_state = 14, .external_lex_state = 6}, - [4914] = {.lex_state = 14, .external_lex_state = 6}, + [4912] = {.lex_state = 12, .external_lex_state = 5}, + [4913] = {.lex_state = 14, .external_lex_state = 7}, + [4914] = {.lex_state = 14, .external_lex_state = 7}, [4915] = {.lex_state = 12, .external_lex_state = 5}, - [4916] = {.lex_state = 14, .external_lex_state = 7}, - [4917] = {.lex_state = 14, .external_lex_state = 6}, - [4918] = {.lex_state = 14, .external_lex_state = 7}, + [4916] = {.lex_state = 12, .external_lex_state = 5}, + [4917] = {.lex_state = 14, .external_lex_state = 7}, + [4918] = {.lex_state = 12, .external_lex_state = 5}, [4919] = {.lex_state = 14, .external_lex_state = 7}, - [4920] = {.lex_state = 14, .external_lex_state = 6}, + [4920] = {.lex_state = 14, .external_lex_state = 7}, [4921] = {.lex_state = 12, .external_lex_state = 5}, [4922] = {.lex_state = 12, .external_lex_state = 5}, - [4923] = {.lex_state = 12, .external_lex_state = 5}, + [4923] = {.lex_state = 14, .external_lex_state = 7}, [4924] = {.lex_state = 14, .external_lex_state = 7}, - [4925] = {.lex_state = 14, .external_lex_state = 7}, - [4926] = {.lex_state = 14, .external_lex_state = 7}, - [4927] = {.lex_state = 14, .external_lex_state = 7}, + [4925] = {.lex_state = 12, .external_lex_state = 5}, + [4926] = {.lex_state = 12, .external_lex_state = 5}, + [4927] = {.lex_state = 14, .external_lex_state = 6}, [4928] = {.lex_state = 14, .external_lex_state = 7}, [4929] = {.lex_state = 14, .external_lex_state = 7}, - [4930] = {.lex_state = 14, .external_lex_state = 7}, + [4930] = {.lex_state = 14, .external_lex_state = 6}, [4931] = {.lex_state = 14, .external_lex_state = 7}, - [4932] = {.lex_state = 14, .external_lex_state = 7}, - [4933] = {.lex_state = 12, .external_lex_state = 5}, - [4934] = {.lex_state = 12, .external_lex_state = 5}, + [4932] = {.lex_state = 14, .external_lex_state = 6}, + [4933] = {.lex_state = 14, .external_lex_state = 7}, + [4934] = {.lex_state = 14, .external_lex_state = 7}, [4935] = {.lex_state = 14, .external_lex_state = 7}, - [4936] = {.lex_state = 12, .external_lex_state = 5}, + [4936] = {.lex_state = 14, .external_lex_state = 6}, [4937] = {.lex_state = 14, .external_lex_state = 7}, [4938] = {.lex_state = 14, .external_lex_state = 7}, - [4939] = {.lex_state = 12, .external_lex_state = 5}, + [4939] = {.lex_state = 14, .external_lex_state = 6}, [4940] = {.lex_state = 14, .external_lex_state = 7}, [4941] = {.lex_state = 14, .external_lex_state = 7}, [4942] = {.lex_state = 14, .external_lex_state = 7}, [4943] = {.lex_state = 14, .external_lex_state = 7}, - [4944] = {.lex_state = 14, .external_lex_state = 7}, + [4944] = {.lex_state = 14, .external_lex_state = 6}, [4945] = {.lex_state = 14, .external_lex_state = 7}, - [4946] = {.lex_state = 12, .external_lex_state = 5}, + [4946] = {.lex_state = 14, .external_lex_state = 7}, [4947] = {.lex_state = 14, .external_lex_state = 7}, [4948] = {.lex_state = 14, .external_lex_state = 7}, [4949] = {.lex_state = 14, .external_lex_state = 7}, - [4950] = {.lex_state = 12, .external_lex_state = 5}, + [4950] = {.lex_state = 14, .external_lex_state = 6}, [4951] = {.lex_state = 14, .external_lex_state = 7}, [4952] = {.lex_state = 14, .external_lex_state = 7}, [4953] = {.lex_state = 14, .external_lex_state = 7}, [4954] = {.lex_state = 14, .external_lex_state = 7}, [4955] = {.lex_state = 14, .external_lex_state = 7}, [4956] = {.lex_state = 14, .external_lex_state = 7}, - [4957] = {.lex_state = 14, .external_lex_state = 6}, + [4957] = {.lex_state = 14, .external_lex_state = 7}, [4958] = {.lex_state = 14, .external_lex_state = 7}, - [4959] = {.lex_state = 12, .external_lex_state = 5}, - [4960] = {.lex_state = 12, .external_lex_state = 5}, - [4961] = {.lex_state = 14, .external_lex_state = 7}, + [4959] = {.lex_state = 14, .external_lex_state = 6}, + [4960] = {.lex_state = 14, .external_lex_state = 7}, + [4961] = {.lex_state = 14, .external_lex_state = 6}, [4962] = {.lex_state = 14, .external_lex_state = 7}, [4963] = {.lex_state = 14, .external_lex_state = 7}, - [4964] = {.lex_state = 14, .external_lex_state = 7}, + [4964] = {.lex_state = 12, .external_lex_state = 5}, [4965] = {.lex_state = 14, .external_lex_state = 7}, [4966] = {.lex_state = 14, .external_lex_state = 7}, [4967] = {.lex_state = 14, .external_lex_state = 7}, [4968] = {.lex_state = 14, .external_lex_state = 7}, [4969] = {.lex_state = 14, .external_lex_state = 7}, [4970] = {.lex_state = 14, .external_lex_state = 6}, - [4971] = {.lex_state = 14, .external_lex_state = 6}, + [4971] = {.lex_state = 14, .external_lex_state = 7}, [4972] = {.lex_state = 14, .external_lex_state = 7}, - [4973] = {.lex_state = 14, .external_lex_state = 6}, - [4974] = {.lex_state = 14, .external_lex_state = 6}, - [4975] = {.lex_state = 14, .external_lex_state = 7}, - [4976] = {.lex_state = 14, .external_lex_state = 6}, + [4973] = {.lex_state = 14, .external_lex_state = 7}, + [4974] = {.lex_state = 14, .external_lex_state = 7}, + [4975] = {.lex_state = 14, .external_lex_state = 6}, + [4976] = {.lex_state = 12, .external_lex_state = 5}, [4977] = {.lex_state = 14, .external_lex_state = 7}, [4978] = {.lex_state = 14, .external_lex_state = 7}, - [4979] = {.lex_state = 12, .external_lex_state = 5}, - [4980] = {.lex_state = 14, .external_lex_state = 7}, + [4979] = {.lex_state = 14, .external_lex_state = 7}, + [4980] = {.lex_state = 14, .external_lex_state = 6}, [4981] = {.lex_state = 14, .external_lex_state = 7}, - [4982] = {.lex_state = 12, .external_lex_state = 5}, + [4982] = {.lex_state = 14, .external_lex_state = 7}, [4983] = {.lex_state = 14, .external_lex_state = 7}, - [4984] = {.lex_state = 14, .external_lex_state = 7}, - [4985] = {.lex_state = 14, .external_lex_state = 6}, - [4986] = {.lex_state = 12, .external_lex_state = 5}, + [4984] = {.lex_state = 16, .external_lex_state = 7}, + [4985] = {.lex_state = 14, .external_lex_state = 7}, + [4986] = {.lex_state = 14, .external_lex_state = 7}, [4987] = {.lex_state = 14, .external_lex_state = 6}, [4988] = {.lex_state = 14, .external_lex_state = 6}, [4989] = {.lex_state = 14, .external_lex_state = 7}, - [4990] = {.lex_state = 14, .external_lex_state = 7}, - [4991] = {.lex_state = 12, .external_lex_state = 5}, - [4992] = {.lex_state = 12, .external_lex_state = 5}, - [4993] = {.lex_state = 12, .external_lex_state = 5}, - [4994] = {.lex_state = 12, .external_lex_state = 5}, + [4990] = {.lex_state = 12, .external_lex_state = 5}, + [4991] = {.lex_state = 14, .external_lex_state = 7}, + [4992] = {.lex_state = 14, .external_lex_state = 7}, + [4993] = {.lex_state = 14, .external_lex_state = 7}, + [4994] = {.lex_state = 14, .external_lex_state = 7}, [4995] = {.lex_state = 14, .external_lex_state = 7}, - [4996] = {.lex_state = 14, .external_lex_state = 7}, + [4996] = {.lex_state = 14, .external_lex_state = 6}, [4997] = {.lex_state = 14, .external_lex_state = 7}, - [4998] = {.lex_state = 14, .external_lex_state = 6}, - [4999] = {.lex_state = 14, .external_lex_state = 7}, + [4998] = {.lex_state = 14, .external_lex_state = 7}, + [4999] = {.lex_state = 14, .external_lex_state = 6}, [5000] = {.lex_state = 14, .external_lex_state = 7}, - [5001] = {.lex_state = 12, .external_lex_state = 5}, + [5001] = {.lex_state = 14, .external_lex_state = 7}, [5002] = {.lex_state = 14, .external_lex_state = 7}, - [5003] = {.lex_state = 12, .external_lex_state = 5}, - [5004] = {.lex_state = 14, .external_lex_state = 7}, - [5005] = {.lex_state = 12, .external_lex_state = 5}, - [5006] = {.lex_state = 12, .external_lex_state = 5}, - [5007] = {.lex_state = 14, .external_lex_state = 6}, - [5008] = {.lex_state = 12, .external_lex_state = 5}, - [5009] = {.lex_state = 14, .external_lex_state = 6}, - [5010] = {.lex_state = 14, .external_lex_state = 7}, - [5011] = {.lex_state = 14, .external_lex_state = 6}, + [5003] = {.lex_state = 14, .external_lex_state = 7}, + [5004] = {.lex_state = 12, .external_lex_state = 5}, + [5005] = {.lex_state = 14, .external_lex_state = 6}, + [5006] = {.lex_state = 14, .external_lex_state = 6}, + [5007] = {.lex_state = 12, .external_lex_state = 5}, + [5008] = {.lex_state = 14, .external_lex_state = 6}, + [5009] = {.lex_state = 14, .external_lex_state = 7}, + [5010] = {.lex_state = 12, .external_lex_state = 5}, + [5011] = {.lex_state = 14, .external_lex_state = 7}, [5012] = {.lex_state = 14, .external_lex_state = 7}, [5013] = {.lex_state = 14, .external_lex_state = 7}, [5014] = {.lex_state = 14, .external_lex_state = 7}, - [5015] = {.lex_state = 14, .external_lex_state = 6}, - [5016] = {.lex_state = 14, .external_lex_state = 7}, - [5017] = {.lex_state = 14, .external_lex_state = 7}, - [5018] = {.lex_state = 12, .external_lex_state = 5}, - [5019] = {.lex_state = 14, .external_lex_state = 7}, - [5020] = {.lex_state = 14, .external_lex_state = 7}, - [5021] = {.lex_state = 12, .external_lex_state = 5}, - [5022] = {.lex_state = 12, .external_lex_state = 5}, + [5015] = {.lex_state = 14, .external_lex_state = 7}, + [5016] = {.lex_state = 12, .external_lex_state = 5}, + [5017] = {.lex_state = 12, .external_lex_state = 5}, + [5018] = {.lex_state = 14, .external_lex_state = 6}, + [5019] = {.lex_state = 12, .external_lex_state = 5}, + [5020] = {.lex_state = 14, .external_lex_state = 6}, + [5021] = {.lex_state = 14, .external_lex_state = 6}, + [5022] = {.lex_state = 14, .external_lex_state = 7}, [5023] = {.lex_state = 14, .external_lex_state = 7}, [5024] = {.lex_state = 14, .external_lex_state = 7}, - [5025] = {.lex_state = 14, .external_lex_state = 7}, + [5025] = {.lex_state = 14, .external_lex_state = 6}, [5026] = {.lex_state = 14, .external_lex_state = 7}, - [5027] = {.lex_state = 14, .external_lex_state = 7}, - [5028] = {.lex_state = 12, .external_lex_state = 5}, - [5029] = {.lex_state = 12, .external_lex_state = 5}, + [5027] = {.lex_state = 12, .external_lex_state = 5}, + [5028] = {.lex_state = 14, .external_lex_state = 6}, + [5029] = {.lex_state = 14, .external_lex_state = 7}, [5030] = {.lex_state = 14, .external_lex_state = 7}, - [5031] = {.lex_state = 14, .external_lex_state = 7}, + [5031] = {.lex_state = 14, .external_lex_state = 6}, [5032] = {.lex_state = 12, .external_lex_state = 5}, - [5033] = {.lex_state = 12, .external_lex_state = 5}, + [5033] = {.lex_state = 14, .external_lex_state = 6}, [5034] = {.lex_state = 14, .external_lex_state = 7}, [5035] = {.lex_state = 12, .external_lex_state = 5}, - [5036] = {.lex_state = 14, .external_lex_state = 7}, + [5036] = {.lex_state = 12, .external_lex_state = 5}, [5037] = {.lex_state = 14, .external_lex_state = 7}, - [5038] = {.lex_state = 12, .external_lex_state = 5}, + [5038] = {.lex_state = 14, .external_lex_state = 7}, [5039] = {.lex_state = 12, .external_lex_state = 5}, - [5040] = {.lex_state = 14, .external_lex_state = 7}, - [5041] = {.lex_state = 14, .external_lex_state = 7}, - [5042] = {.lex_state = 14, .external_lex_state = 6}, + [5040] = {.lex_state = 12, .external_lex_state = 5}, + [5041] = {.lex_state = 12, .external_lex_state = 5}, + [5042] = {.lex_state = 12, .external_lex_state = 5}, [5043] = {.lex_state = 12, .external_lex_state = 5}, - [5044] = {.lex_state = 12, .external_lex_state = 5}, - [5045] = {.lex_state = 14, .external_lex_state = 7}, - [5046] = {.lex_state = 12, .external_lex_state = 5}, - [5047] = {.lex_state = 14, .external_lex_state = 6}, - [5048] = {.lex_state = 14, .external_lex_state = 6}, - [5049] = {.lex_state = 14, .external_lex_state = 7}, - [5050] = {.lex_state = 14, .external_lex_state = 7}, - [5051] = {.lex_state = 14, .external_lex_state = 7}, + [5044] = {.lex_state = 14, .external_lex_state = 7}, + [5045] = {.lex_state = 12, .external_lex_state = 5}, + [5046] = {.lex_state = 14, .external_lex_state = 7}, + [5047] = {.lex_state = 12, .external_lex_state = 5}, + [5048] = {.lex_state = 14, .external_lex_state = 7}, + [5049] = {.lex_state = 12, .external_lex_state = 5}, + [5050] = {.lex_state = 12, .external_lex_state = 5}, + [5051] = {.lex_state = 12, .external_lex_state = 5}, [5052] = {.lex_state = 12, .external_lex_state = 5}, - [5053] = {.lex_state = 14, .external_lex_state = 6}, + [5053] = {.lex_state = 14, .external_lex_state = 7}, [5054] = {.lex_state = 12, .external_lex_state = 5}, - [5055] = {.lex_state = 14, .external_lex_state = 6}, + [5055] = {.lex_state = 12, .external_lex_state = 5}, [5056] = {.lex_state = 12, .external_lex_state = 5}, - [5057] = {.lex_state = 12, .external_lex_state = 5}, + [5057] = {.lex_state = 14, .external_lex_state = 7}, [5058] = {.lex_state = 12, .external_lex_state = 5}, - [5059] = {.lex_state = 14, .external_lex_state = 6}, - [5060] = {.lex_state = 14, .external_lex_state = 6}, - [5061] = {.lex_state = 16, .external_lex_state = 7}, - [5062] = {.lex_state = 14, .external_lex_state = 7}, + [5059] = {.lex_state = 12, .external_lex_state = 5}, + [5060] = {.lex_state = 12, .external_lex_state = 5}, + [5061] = {.lex_state = 14, .external_lex_state = 6}, + [5062] = {.lex_state = 14, .external_lex_state = 6}, [5063] = {.lex_state = 14, .external_lex_state = 7}, [5064] = {.lex_state = 14, .external_lex_state = 7}, [5065] = {.lex_state = 14, .external_lex_state = 7}, [5066] = {.lex_state = 14, .external_lex_state = 7}, [5067] = {.lex_state = 14, .external_lex_state = 7}, [5068] = {.lex_state = 14, .external_lex_state = 7}, - [5069] = {.lex_state = 12, .external_lex_state = 5}, - [5070] = {.lex_state = 12, .external_lex_state = 5}, + [5069] = {.lex_state = 14, .external_lex_state = 7}, + [5070] = {.lex_state = 14, .external_lex_state = 7}, [5071] = {.lex_state = 14, .external_lex_state = 7}, - [5072] = {.lex_state = 14, .external_lex_state = 7}, - [5073] = {.lex_state = 14, .external_lex_state = 6}, - [5074] = {.lex_state = 14, .external_lex_state = 7}, - [5075] = {.lex_state = 14, .external_lex_state = 7}, - [5076] = {.lex_state = 14, .external_lex_state = 6}, - [5077] = {.lex_state = 14, .external_lex_state = 7}, + [5072] = {.lex_state = 12, .external_lex_state = 5}, + [5073] = {.lex_state = 12, .external_lex_state = 5}, + [5074] = {.lex_state = 12, .external_lex_state = 5}, + [5075] = {.lex_state = 12, .external_lex_state = 5}, + [5076] = {.lex_state = 12, .external_lex_state = 5}, + [5077] = {.lex_state = 12, .external_lex_state = 5}, [5078] = {.lex_state = 14, .external_lex_state = 7}, - [5079] = {.lex_state = 14, .external_lex_state = 7}, - [5080] = {.lex_state = 12, .external_lex_state = 5}, - [5081] = {.lex_state = 14, .external_lex_state = 7}, + [5079] = {.lex_state = 12, .external_lex_state = 5}, + [5080] = {.lex_state = 14, .external_lex_state = 7}, + [5081] = {.lex_state = 12, .external_lex_state = 5}, [5082] = {.lex_state = 14, .external_lex_state = 7}, [5083] = {.lex_state = 14, .external_lex_state = 7}, - [5084] = {.lex_state = 14, .external_lex_state = 6}, + [5084] = {.lex_state = 14, .external_lex_state = 7}, [5085] = {.lex_state = 14, .external_lex_state = 7}, [5086] = {.lex_state = 14, .external_lex_state = 7}, [5087] = {.lex_state = 14, .external_lex_state = 7}, - [5088] = {.lex_state = 12, .external_lex_state = 5}, - [5089] = {.lex_state = 14, .external_lex_state = 7}, + [5088] = {.lex_state = 14, .external_lex_state = 7}, + [5089] = {.lex_state = 12, .external_lex_state = 5}, [5090] = {.lex_state = 14, .external_lex_state = 7}, - [5091] = {.lex_state = 12, .external_lex_state = 5}, - [5092] = {.lex_state = 12, .external_lex_state = 5}, + [5091] = {.lex_state = 14, .external_lex_state = 7}, + [5092] = {.lex_state = 14, .external_lex_state = 7}, [5093] = {.lex_state = 14, .external_lex_state = 7}, [5094] = {.lex_state = 14, .external_lex_state = 7}, [5095] = {.lex_state = 14, .external_lex_state = 7}, - [5096] = {.lex_state = 12, .external_lex_state = 5}, + [5096] = {.lex_state = 14, .external_lex_state = 7}, [5097] = {.lex_state = 14, .external_lex_state = 7}, [5098] = {.lex_state = 14, .external_lex_state = 7}, [5099] = {.lex_state = 14, .external_lex_state = 7}, @@ -25220,23 +25229,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5103] = {.lex_state = 14, .external_lex_state = 7}, [5104] = {.lex_state = 14, .external_lex_state = 7}, [5105] = {.lex_state = 14, .external_lex_state = 7}, - [5106] = {.lex_state = 14, .external_lex_state = 7}, + [5106] = {.lex_state = 12, .external_lex_state = 5}, [5107] = {.lex_state = 14, .external_lex_state = 7}, [5108] = {.lex_state = 12, .external_lex_state = 5}, - [5109] = {.lex_state = 14, .external_lex_state = 7}, + [5109] = {.lex_state = 12, .external_lex_state = 5}, [5110] = {.lex_state = 14, .external_lex_state = 7}, - [5111] = {.lex_state = 14, .external_lex_state = 6}, + [5111] = {.lex_state = 14, .external_lex_state = 7}, [5112] = {.lex_state = 14, .external_lex_state = 7}, [5113] = {.lex_state = 14, .external_lex_state = 7}, [5114] = {.lex_state = 14, .external_lex_state = 7}, - [5115] = {.lex_state = 14, .external_lex_state = 7}, - [5116] = {.lex_state = 14, .external_lex_state = 7}, - [5117] = {.lex_state = 14, .external_lex_state = 7}, + [5115] = {.lex_state = 14, .external_lex_state = 6}, + [5116] = {.lex_state = 12, .external_lex_state = 5}, + [5117] = {.lex_state = 14, .external_lex_state = 6}, [5118] = {.lex_state = 14, .external_lex_state = 7}, - [5119] = {.lex_state = 14, .external_lex_state = 7}, + [5119] = {.lex_state = 12, .external_lex_state = 5}, [5120] = {.lex_state = 14, .external_lex_state = 7}, - [5121] = {.lex_state = 14, .external_lex_state = 7}, - [5122] = {.lex_state = 14, .external_lex_state = 7}, + [5121] = {.lex_state = 14, .external_lex_state = 6}, + [5122] = {.lex_state = 12, .external_lex_state = 5}, [5123] = {.lex_state = 14, .external_lex_state = 7}, [5124] = {.lex_state = 14, .external_lex_state = 7}, [5125] = {.lex_state = 14, .external_lex_state = 7}, @@ -25245,11 +25254,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5128] = {.lex_state = 14, .external_lex_state = 7}, [5129] = {.lex_state = 14, .external_lex_state = 7}, [5130] = {.lex_state = 14, .external_lex_state = 7}, - [5131] = {.lex_state = 14, .external_lex_state = 7}, - [5132] = {.lex_state = 14, .external_lex_state = 7}, + [5131] = {.lex_state = 14, .external_lex_state = 6}, + [5132] = {.lex_state = 14, .external_lex_state = 6}, [5133] = {.lex_state = 14, .external_lex_state = 7}, [5134] = {.lex_state = 14, .external_lex_state = 7}, - [5135] = {.lex_state = 14, .external_lex_state = 7}, + [5135] = {.lex_state = 14, .external_lex_state = 6}, [5136] = {.lex_state = 14, .external_lex_state = 7}, [5137] = {.lex_state = 14, .external_lex_state = 7}, [5138] = {.lex_state = 14, .external_lex_state = 6}, @@ -25257,12 +25266,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5140] = {.lex_state = 14, .external_lex_state = 7}, [5141] = {.lex_state = 14, .external_lex_state = 7}, [5142] = {.lex_state = 14, .external_lex_state = 7}, - [5143] = {.lex_state = 14, .external_lex_state = 7}, + [5143] = {.lex_state = 14, .external_lex_state = 6}, [5144] = {.lex_state = 14, .external_lex_state = 7}, [5145] = {.lex_state = 14, .external_lex_state = 7}, [5146] = {.lex_state = 14, .external_lex_state = 7}, [5147] = {.lex_state = 14, .external_lex_state = 7}, - [5148] = {.lex_state = 12, .external_lex_state = 5}, + [5148] = {.lex_state = 14, .external_lex_state = 7}, [5149] = {.lex_state = 14, .external_lex_state = 7}, [5150] = {.lex_state = 14, .external_lex_state = 7}, [5151] = {.lex_state = 14, .external_lex_state = 7}, @@ -25270,98 +25279,98 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5153] = {.lex_state = 14, .external_lex_state = 7}, [5154] = {.lex_state = 14, .external_lex_state = 7}, [5155] = {.lex_state = 14, .external_lex_state = 7}, - [5156] = {.lex_state = 14, .external_lex_state = 7}, + [5156] = {.lex_state = 14, .external_lex_state = 6}, [5157] = {.lex_state = 14, .external_lex_state = 7}, [5158] = {.lex_state = 14, .external_lex_state = 7}, [5159] = {.lex_state = 14, .external_lex_state = 7}, [5160] = {.lex_state = 14, .external_lex_state = 7}, [5161] = {.lex_state = 14, .external_lex_state = 7}, - [5162] = {.lex_state = 12, .external_lex_state = 5}, + [5162] = {.lex_state = 14, .external_lex_state = 7}, [5163] = {.lex_state = 14, .external_lex_state = 7}, - [5164] = {.lex_state = 14, .external_lex_state = 7}, + [5164] = {.lex_state = 14, .external_lex_state = 6}, [5165] = {.lex_state = 14, .external_lex_state = 7}, [5166] = {.lex_state = 14, .external_lex_state = 7}, [5167] = {.lex_state = 14, .external_lex_state = 7}, [5168] = {.lex_state = 14, .external_lex_state = 7}, [5169] = {.lex_state = 14, .external_lex_state = 7}, - [5170] = {.lex_state = 12, .external_lex_state = 5}, - [5171] = {.lex_state = 14, .external_lex_state = 6}, + [5170] = {.lex_state = 14, .external_lex_state = 7}, + [5171] = {.lex_state = 14, .external_lex_state = 7}, [5172] = {.lex_state = 14, .external_lex_state = 7}, [5173] = {.lex_state = 14, .external_lex_state = 7}, [5174] = {.lex_state = 14, .external_lex_state = 7}, [5175] = {.lex_state = 14, .external_lex_state = 7}, [5176] = {.lex_state = 14, .external_lex_state = 7}, - [5177] = {.lex_state = 14, .external_lex_state = 7}, - [5178] = {.lex_state = 14, .external_lex_state = 7}, + [5177] = {.lex_state = 14, .external_lex_state = 6}, + [5178] = {.lex_state = 14, .external_lex_state = 6}, [5179] = {.lex_state = 14, .external_lex_state = 7}, - [5180] = {.lex_state = 12, .external_lex_state = 5}, + [5180] = {.lex_state = 14, .external_lex_state = 7}, [5181] = {.lex_state = 14, .external_lex_state = 7}, [5182] = {.lex_state = 14, .external_lex_state = 7}, [5183] = {.lex_state = 14, .external_lex_state = 7}, - [5184] = {.lex_state = 14, .external_lex_state = 7}, - [5185] = {.lex_state = 12, .external_lex_state = 5}, - [5186] = {.lex_state = 14, .external_lex_state = 7}, + [5184] = {.lex_state = 12, .external_lex_state = 5}, + [5185] = {.lex_state = 14, .external_lex_state = 7}, + [5186] = {.lex_state = 12, .external_lex_state = 5}, [5187] = {.lex_state = 14, .external_lex_state = 7}, - [5188] = {.lex_state = 14, .external_lex_state = 7}, + [5188] = {.lex_state = 12, .external_lex_state = 5}, [5189] = {.lex_state = 14, .external_lex_state = 7}, [5190] = {.lex_state = 14, .external_lex_state = 7}, [5191] = {.lex_state = 14, .external_lex_state = 7}, - [5192] = {.lex_state = 14, .external_lex_state = 7}, + [5192] = {.lex_state = 14, .external_lex_state = 6}, [5193] = {.lex_state = 14, .external_lex_state = 7}, [5194] = {.lex_state = 14, .external_lex_state = 7}, [5195] = {.lex_state = 14, .external_lex_state = 7}, [5196] = {.lex_state = 14, .external_lex_state = 7}, [5197] = {.lex_state = 14, .external_lex_state = 7}, - [5198] = {.lex_state = 14, .external_lex_state = 6}, + [5198] = {.lex_state = 14, .external_lex_state = 7}, [5199] = {.lex_state = 14, .external_lex_state = 7}, [5200] = {.lex_state = 14, .external_lex_state = 7}, [5201] = {.lex_state = 14, .external_lex_state = 7}, [5202] = {.lex_state = 14, .external_lex_state = 7}, [5203] = {.lex_state = 14, .external_lex_state = 6}, - [5204] = {.lex_state = 14, .external_lex_state = 6}, + [5204] = {.lex_state = 14, .external_lex_state = 7}, [5205] = {.lex_state = 14, .external_lex_state = 7}, - [5206] = {.lex_state = 14, .external_lex_state = 6}, - [5207] = {.lex_state = 14, .external_lex_state = 7}, + [5206] = {.lex_state = 14, .external_lex_state = 7}, + [5207] = {.lex_state = 12, .external_lex_state = 5}, [5208] = {.lex_state = 14, .external_lex_state = 7}, - [5209] = {.lex_state = 12, .external_lex_state = 5}, + [5209] = {.lex_state = 14, .external_lex_state = 7}, [5210] = {.lex_state = 14, .external_lex_state = 7}, [5211] = {.lex_state = 14, .external_lex_state = 7}, - [5212] = {.lex_state = 14, .external_lex_state = 6}, - [5213] = {.lex_state = 14, .external_lex_state = 7}, + [5212] = {.lex_state = 14, .external_lex_state = 7}, + [5213] = {.lex_state = 14, .external_lex_state = 6}, [5214] = {.lex_state = 14, .external_lex_state = 7}, - [5215] = {.lex_state = 12, .external_lex_state = 5}, - [5216] = {.lex_state = 14, .external_lex_state = 6}, - [5217] = {.lex_state = 14, .external_lex_state = 6}, + [5215] = {.lex_state = 14, .external_lex_state = 7}, + [5216] = {.lex_state = 14, .external_lex_state = 7}, + [5217] = {.lex_state = 14, .external_lex_state = 7}, [5218] = {.lex_state = 14, .external_lex_state = 7}, [5219] = {.lex_state = 14, .external_lex_state = 7}, - [5220] = {.lex_state = 12, .external_lex_state = 5}, + [5220] = {.lex_state = 14, .external_lex_state = 7}, [5221] = {.lex_state = 14, .external_lex_state = 7}, [5222] = {.lex_state = 14, .external_lex_state = 7}, [5223] = {.lex_state = 14, .external_lex_state = 7}, - [5224] = {.lex_state = 12, .external_lex_state = 5}, - [5225] = {.lex_state = 12, .external_lex_state = 5}, - [5226] = {.lex_state = 14, .external_lex_state = 6}, + [5224] = {.lex_state = 14, .external_lex_state = 7}, + [5225] = {.lex_state = 14, .external_lex_state = 7}, + [5226] = {.lex_state = 14, .external_lex_state = 7}, [5227] = {.lex_state = 14, .external_lex_state = 7}, [5228] = {.lex_state = 14, .external_lex_state = 7}, [5229] = {.lex_state = 14, .external_lex_state = 7}, - [5230] = {.lex_state = 14, .external_lex_state = 7}, - [5231] = {.lex_state = 14, .external_lex_state = 6}, + [5230] = {.lex_state = 14, .external_lex_state = 6}, + [5231] = {.lex_state = 14, .external_lex_state = 7}, [5232] = {.lex_state = 14, .external_lex_state = 7}, [5233] = {.lex_state = 14, .external_lex_state = 7}, [5234] = {.lex_state = 14, .external_lex_state = 7}, [5235] = {.lex_state = 14, .external_lex_state = 7}, [5236] = {.lex_state = 14, .external_lex_state = 7}, [5237] = {.lex_state = 14, .external_lex_state = 7}, - [5238] = {.lex_state = 14, .external_lex_state = 7}, - [5239] = {.lex_state = 14, .external_lex_state = 6}, + [5238] = {.lex_state = 14, .external_lex_state = 6}, + [5239] = {.lex_state = 14, .external_lex_state = 7}, [5240] = {.lex_state = 14, .external_lex_state = 7}, - [5241] = {.lex_state = 12, .external_lex_state = 5}, + [5241] = {.lex_state = 14, .external_lex_state = 7}, [5242] = {.lex_state = 14, .external_lex_state = 7}, - [5243] = {.lex_state = 14, .external_lex_state = 6}, + [5243] = {.lex_state = 14, .external_lex_state = 7}, [5244] = {.lex_state = 14, .external_lex_state = 7}, [5245] = {.lex_state = 14, .external_lex_state = 7}, [5246] = {.lex_state = 14, .external_lex_state = 7}, - [5247] = {.lex_state = 14, .external_lex_state = 7}, + [5247] = {.lex_state = 14, .external_lex_state = 6}, [5248] = {.lex_state = 14, .external_lex_state = 7}, [5249] = {.lex_state = 14, .external_lex_state = 7}, [5250] = {.lex_state = 14, .external_lex_state = 7}, @@ -25371,66 +25380,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5254] = {.lex_state = 14, .external_lex_state = 7}, [5255] = {.lex_state = 14, .external_lex_state = 7}, [5256] = {.lex_state = 14, .external_lex_state = 7}, - [5257] = {.lex_state = 14, .external_lex_state = 6}, + [5257] = {.lex_state = 14, .external_lex_state = 7}, [5258] = {.lex_state = 14, .external_lex_state = 7}, [5259] = {.lex_state = 14, .external_lex_state = 7}, [5260] = {.lex_state = 12, .external_lex_state = 5}, [5261] = {.lex_state = 12, .external_lex_state = 5}, [5262] = {.lex_state = 14, .external_lex_state = 6}, - [5263] = {.lex_state = 12, .external_lex_state = 5}, - [5264] = {.lex_state = 12, .external_lex_state = 5}, + [5263] = {.lex_state = 14, .external_lex_state = 6}, + [5264] = {.lex_state = 14, .external_lex_state = 6}, [5265] = {.lex_state = 14, .external_lex_state = 6}, - [5266] = {.lex_state = 12, .external_lex_state = 5}, - [5267] = {.lex_state = 12, .external_lex_state = 5}, + [5266] = {.lex_state = 14, .external_lex_state = 6}, + [5267] = {.lex_state = 14, .external_lex_state = 6}, [5268] = {.lex_state = 12, .external_lex_state = 5}, - [5269] = {.lex_state = 12, .external_lex_state = 5}, - [5270] = {.lex_state = 14, .external_lex_state = 6}, - [5271] = {.lex_state = 14, .external_lex_state = 7}, - [5272] = {.lex_state = 14, .external_lex_state = 7}, - [5273] = {.lex_state = 14, .external_lex_state = 6}, - [5274] = {.lex_state = 14, .external_lex_state = 7}, - [5275] = {.lex_state = 14, .external_lex_state = 7}, - [5276] = {.lex_state = 12, .external_lex_state = 5}, - [5277] = {.lex_state = 12, .external_lex_state = 5}, + [5269] = {.lex_state = 14, .external_lex_state = 7}, + [5270] = {.lex_state = 12, .external_lex_state = 5}, + [5271] = {.lex_state = 14, .external_lex_state = 6}, + [5272] = {.lex_state = 14, .external_lex_state = 6}, + [5273] = {.lex_state = 14, .external_lex_state = 7}, + [5274] = {.lex_state = 14, .external_lex_state = 6}, + [5275] = {.lex_state = 14, .external_lex_state = 6}, + [5276] = {.lex_state = 14, .external_lex_state = 6}, + [5277] = {.lex_state = 14, .external_lex_state = 6}, [5278] = {.lex_state = 14, .external_lex_state = 6}, - [5279] = {.lex_state = 14, .external_lex_state = 7}, - [5280] = {.lex_state = 12, .external_lex_state = 5}, - [5281] = {.lex_state = 12, .external_lex_state = 5}, - [5282] = {.lex_state = 14, .external_lex_state = 6}, + [5279] = {.lex_state = 12, .external_lex_state = 5}, + [5280] = {.lex_state = 14, .external_lex_state = 6}, + [5281] = {.lex_state = 14, .external_lex_state = 6}, + [5282] = {.lex_state = 12, .external_lex_state = 5}, [5283] = {.lex_state = 12, .external_lex_state = 5}, [5284] = {.lex_state = 14, .external_lex_state = 6}, - [5285] = {.lex_state = 14, .external_lex_state = 7}, + [5285] = {.lex_state = 14, .external_lex_state = 6}, [5286] = {.lex_state = 12, .external_lex_state = 5}, [5287] = {.lex_state = 12, .external_lex_state = 5}, - [5288] = {.lex_state = 14, .external_lex_state = 6}, + [5288] = {.lex_state = 12, .external_lex_state = 5}, [5289] = {.lex_state = 12, .external_lex_state = 5}, - [5290] = {.lex_state = 14, .external_lex_state = 6}, + [5290] = {.lex_state = 12, .external_lex_state = 5}, [5291] = {.lex_state = 12, .external_lex_state = 5}, - [5292] = {.lex_state = 14, .external_lex_state = 6}, - [5293] = {.lex_state = 14, .external_lex_state = 6}, - [5294] = {.lex_state = 14, .external_lex_state = 6}, - [5295] = {.lex_state = 12, .external_lex_state = 5}, - [5296] = {.lex_state = 12, .external_lex_state = 5}, - [5297] = {.lex_state = 14, .external_lex_state = 6}, + [5292] = {.lex_state = 12, .external_lex_state = 5}, + [5293] = {.lex_state = 12, .external_lex_state = 5}, + [5294] = {.lex_state = 12, .external_lex_state = 5}, + [5295] = {.lex_state = 14, .external_lex_state = 7}, + [5296] = {.lex_state = 14, .external_lex_state = 7}, + [5297] = {.lex_state = 14, .external_lex_state = 7}, [5298] = {.lex_state = 12, .external_lex_state = 5}, - [5299] = {.lex_state = 14, .external_lex_state = 7}, - [5300] = {.lex_state = 14, .external_lex_state = 7}, - [5301] = {.lex_state = 14, .external_lex_state = 6}, + [5299] = {.lex_state = 12, .external_lex_state = 5}, + [5300] = {.lex_state = 12, .external_lex_state = 5}, + [5301] = {.lex_state = 12, .external_lex_state = 5}, [5302] = {.lex_state = 12, .external_lex_state = 5}, - [5303] = {.lex_state = 12, .external_lex_state = 5}, + [5303] = {.lex_state = 14, .external_lex_state = 7}, [5304] = {.lex_state = 12, .external_lex_state = 5}, [5305] = {.lex_state = 12, .external_lex_state = 5}, - [5306] = {.lex_state = 14, .external_lex_state = 6}, - [5307] = {.lex_state = 14, .external_lex_state = 6}, - [5308] = {.lex_state = 14, .external_lex_state = 6}, + [5306] = {.lex_state = 14, .external_lex_state = 7}, + [5307] = {.lex_state = 12, .external_lex_state = 5}, + [5308] = {.lex_state = 14, .external_lex_state = 7}, [5309] = {.lex_state = 14, .external_lex_state = 6}, - [5310] = {.lex_state = 14, .external_lex_state = 6}, - [5311] = {.lex_state = 14, .external_lex_state = 6}, - [5312] = {.lex_state = 14, .external_lex_state = 7}, - [5313] = {.lex_state = 14, .external_lex_state = 7}, + [5310] = {.lex_state = 12, .external_lex_state = 5}, + [5311] = {.lex_state = 9, .external_lex_state = 2}, + [5312] = {.lex_state = 12, .external_lex_state = 5}, + [5313] = {.lex_state = 14, .external_lex_state = 6}, [5314] = {.lex_state = 12, .external_lex_state = 5}, [5315] = {.lex_state = 12, .external_lex_state = 5}, - [5316] = {.lex_state = 12, .external_lex_state = 5}, + [5316] = {.lex_state = 14, .external_lex_state = 6}, [5317] = {.lex_state = 12, .external_lex_state = 5}, [5318] = {.lex_state = 12, .external_lex_state = 5}, [5319] = {.lex_state = 12, .external_lex_state = 5}, @@ -25439,26 +25448,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5322] = {.lex_state = 12, .external_lex_state = 5}, [5323] = {.lex_state = 12, .external_lex_state = 5}, [5324] = {.lex_state = 12, .external_lex_state = 5}, - [5325] = {.lex_state = 12, .external_lex_state = 5}, + [5325] = {.lex_state = 25, .external_lex_state = 9}, [5326] = {.lex_state = 14, .external_lex_state = 6}, [5327] = {.lex_state = 12, .external_lex_state = 5}, [5328] = {.lex_state = 12, .external_lex_state = 5}, - [5329] = {.lex_state = 14, .external_lex_state = 7}, - [5330] = {.lex_state = 12, .external_lex_state = 5}, - [5331] = {.lex_state = 14, .external_lex_state = 7}, - [5332] = {.lex_state = 25, .external_lex_state = 9}, + [5329] = {.lex_state = 12, .external_lex_state = 5}, + [5330] = {.lex_state = 14, .external_lex_state = 6}, + [5331] = {.lex_state = 12, .external_lex_state = 5}, + [5332] = {.lex_state = 12, .external_lex_state = 5}, [5333] = {.lex_state = 12, .external_lex_state = 5}, - [5334] = {.lex_state = 14, .external_lex_state = 6}, - [5335] = {.lex_state = 14, .external_lex_state = 7}, - [5336] = {.lex_state = 12, .external_lex_state = 5}, - [5337] = {.lex_state = 12, .external_lex_state = 5}, + [5334] = {.lex_state = 12, .external_lex_state = 5}, + [5335] = {.lex_state = 12, .external_lex_state = 5}, + [5336] = {.lex_state = 14, .external_lex_state = 7}, + [5337] = {.lex_state = 14, .external_lex_state = 7}, [5338] = {.lex_state = 12, .external_lex_state = 5}, [5339] = {.lex_state = 14, .external_lex_state = 7}, - [5340] = {.lex_state = 12, .external_lex_state = 5}, - [5341] = {.lex_state = 12, .external_lex_state = 5}, - [5342] = {.lex_state = 12, .external_lex_state = 5}, + [5340] = {.lex_state = 14, .external_lex_state = 6}, + [5341] = {.lex_state = 14, .external_lex_state = 7}, + [5342] = {.lex_state = 14, .external_lex_state = 7}, [5343] = {.lex_state = 12, .external_lex_state = 5}, - [5344] = {.lex_state = 9, .external_lex_state = 2}, + [5344] = {.lex_state = 12, .external_lex_state = 5}, [5345] = {.lex_state = 12, .external_lex_state = 5}, [5346] = {.lex_state = 12, .external_lex_state = 5}, [5347] = {.lex_state = 12, .external_lex_state = 5}, @@ -25467,13 +25476,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5350] = {.lex_state = 12, .external_lex_state = 5}, [5351] = {.lex_state = 12, .external_lex_state = 5}, [5352] = {.lex_state = 12, .external_lex_state = 5}, - [5353] = {.lex_state = 14, .external_lex_state = 6}, + [5353] = {.lex_state = 12, .external_lex_state = 5}, [5354] = {.lex_state = 12, .external_lex_state = 5}, [5355] = {.lex_state = 14, .external_lex_state = 7}, - [5356] = {.lex_state = 14, .external_lex_state = 7}, - [5357] = {.lex_state = 14, .external_lex_state = 7}, - [5358] = {.lex_state = 12, .external_lex_state = 5}, - [5359] = {.lex_state = 9, .external_lex_state = 2}, + [5356] = {.lex_state = 12, .external_lex_state = 5}, + [5357] = {.lex_state = 12, .external_lex_state = 5}, + [5358] = {.lex_state = 14, .external_lex_state = 7}, + [5359] = {.lex_state = 12, .external_lex_state = 5}, [5360] = {.lex_state = 12, .external_lex_state = 5}, [5361] = {.lex_state = 12, .external_lex_state = 5}, [5362] = {.lex_state = 12, .external_lex_state = 5}, @@ -25481,305 +25490,305 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5364] = {.lex_state = 12, .external_lex_state = 5}, [5365] = {.lex_state = 12, .external_lex_state = 5}, [5366] = {.lex_state = 12, .external_lex_state = 5}, - [5367] = {.lex_state = 9, .external_lex_state = 2}, + [5367] = {.lex_state = 12, .external_lex_state = 5}, [5368] = {.lex_state = 12, .external_lex_state = 5}, [5369] = {.lex_state = 12, .external_lex_state = 5}, [5370] = {.lex_state = 12, .external_lex_state = 5}, - [5371] = {.lex_state = 12, .external_lex_state = 5}, - [5372] = {.lex_state = 14, .external_lex_state = 6}, + [5371] = {.lex_state = 25, .external_lex_state = 9}, + [5372] = {.lex_state = 12, .external_lex_state = 5}, [5373] = {.lex_state = 12, .external_lex_state = 5}, [5374] = {.lex_state = 12, .external_lex_state = 5}, [5375] = {.lex_state = 12, .external_lex_state = 5}, [5376] = {.lex_state = 12, .external_lex_state = 5}, [5377] = {.lex_state = 12, .external_lex_state = 5}, - [5378] = {.lex_state = 12, .external_lex_state = 5}, - [5379] = {.lex_state = 12, .external_lex_state = 5}, - [5380] = {.lex_state = 12, .external_lex_state = 5}, - [5381] = {.lex_state = 14, .external_lex_state = 7}, + [5378] = {.lex_state = 14, .external_lex_state = 7}, + [5379] = {.lex_state = 14, .external_lex_state = 7}, + [5380] = {.lex_state = 14, .external_lex_state = 7}, + [5381] = {.lex_state = 12, .external_lex_state = 5}, [5382] = {.lex_state = 12, .external_lex_state = 5}, [5383] = {.lex_state = 12, .external_lex_state = 5}, [5384] = {.lex_state = 12, .external_lex_state = 5}, - [5385] = {.lex_state = 12, .external_lex_state = 5}, - [5386] = {.lex_state = 14, .external_lex_state = 7}, + [5385] = {.lex_state = 25, .external_lex_state = 9}, + [5386] = {.lex_state = 12, .external_lex_state = 5}, [5387] = {.lex_state = 14, .external_lex_state = 7}, [5388] = {.lex_state = 12, .external_lex_state = 5}, - [5389] = {.lex_state = 14, .external_lex_state = 6}, + [5389] = {.lex_state = 14, .external_lex_state = 7}, [5390] = {.lex_state = 12, .external_lex_state = 5}, [5391] = {.lex_state = 14, .external_lex_state = 7}, [5392] = {.lex_state = 12, .external_lex_state = 5}, - [5393] = {.lex_state = 14, .external_lex_state = 7}, + [5393] = {.lex_state = 12, .external_lex_state = 5}, [5394] = {.lex_state = 12, .external_lex_state = 5}, - [5395] = {.lex_state = 12, .external_lex_state = 5}, + [5395] = {.lex_state = 14, .external_lex_state = 7}, [5396] = {.lex_state = 12, .external_lex_state = 5}, - [5397] = {.lex_state = 14, .external_lex_state = 7}, - [5398] = {.lex_state = 14, .external_lex_state = 7}, + [5397] = {.lex_state = 12, .external_lex_state = 5}, + [5398] = {.lex_state = 12, .external_lex_state = 5}, [5399] = {.lex_state = 12, .external_lex_state = 5}, - [5400] = {.lex_state = 25, .external_lex_state = 9}, + [5400] = {.lex_state = 12, .external_lex_state = 5}, [5401] = {.lex_state = 12, .external_lex_state = 5}, - [5402] = {.lex_state = 12, .external_lex_state = 5}, + [5402] = {.lex_state = 14, .external_lex_state = 7}, [5403] = {.lex_state = 14, .external_lex_state = 7}, - [5404] = {.lex_state = 14, .external_lex_state = 7}, - [5405] = {.lex_state = 25, .external_lex_state = 9}, - [5406] = {.lex_state = 14, .external_lex_state = 6}, - [5407] = {.lex_state = 12, .external_lex_state = 5}, - [5408] = {.lex_state = 12, .external_lex_state = 5}, - [5409] = {.lex_state = 12, .external_lex_state = 5}, - [5410] = {.lex_state = 12, .external_lex_state = 5}, - [5411] = {.lex_state = 12, .external_lex_state = 5}, - [5412] = {.lex_state = 12, .external_lex_state = 5}, + [5404] = {.lex_state = 12, .external_lex_state = 5}, + [5405] = {.lex_state = 14, .external_lex_state = 7}, + [5406] = {.lex_state = 14, .external_lex_state = 7}, + [5407] = {.lex_state = 9, .external_lex_state = 2}, + [5408] = {.lex_state = 14, .external_lex_state = 7}, + [5409] = {.lex_state = 14, .external_lex_state = 7}, + [5410] = {.lex_state = 14, .external_lex_state = 7}, + [5411] = {.lex_state = 14, .external_lex_state = 7}, + [5412] = {.lex_state = 14, .external_lex_state = 6}, [5413] = {.lex_state = 14, .external_lex_state = 7}, - [5414] = {.lex_state = 12, .external_lex_state = 5}, - [5415] = {.lex_state = 14, .external_lex_state = 7}, + [5414] = {.lex_state = 14, .external_lex_state = 6}, + [5415] = {.lex_state = 9, .external_lex_state = 2}, [5416] = {.lex_state = 25, .external_lex_state = 9}, - [5417] = {.lex_state = 14, .external_lex_state = 7}, - [5418] = {.lex_state = 14, .external_lex_state = 7}, - [5419] = {.lex_state = 14, .external_lex_state = 7}, - [5420] = {.lex_state = 14, .external_lex_state = 7}, - [5421] = {.lex_state = 14, .external_lex_state = 7}, - [5422] = {.lex_state = 14, .external_lex_state = 7}, + [5417] = {.lex_state = 12, .external_lex_state = 5}, + [5418] = {.lex_state = 12, .external_lex_state = 5}, + [5419] = {.lex_state = 14, .external_lex_state = 6}, + [5420] = {.lex_state = 14, .external_lex_state = 6}, + [5421] = {.lex_state = 14, .external_lex_state = 6}, + [5422] = {.lex_state = 25, .external_lex_state = 8}, [5423] = {.lex_state = 14, .external_lex_state = 7}, - [5424] = {.lex_state = 14, .external_lex_state = 7}, - [5425] = {.lex_state = 14, .external_lex_state = 7}, - [5426] = {.lex_state = 23, .external_lex_state = 9}, - [5427] = {.lex_state = 14, .external_lex_state = 7}, - [5428] = {.lex_state = 14, .external_lex_state = 7}, - [5429] = {.lex_state = 23, .external_lex_state = 9}, - [5430] = {.lex_state = 9, .external_lex_state = 2}, - [5431] = {.lex_state = 9, .external_lex_state = 2}, - [5432] = {.lex_state = 14, .external_lex_state = 7}, - [5433] = {.lex_state = 14, .external_lex_state = 7}, + [5424] = {.lex_state = 14, .external_lex_state = 6}, + [5425] = {.lex_state = 14, .external_lex_state = 6}, + [5426] = {.lex_state = 23, .external_lex_state = 8}, + [5427] = {.lex_state = 9, .external_lex_state = 2}, + [5428] = {.lex_state = 9, .external_lex_state = 2}, + [5429] = {.lex_state = 23, .external_lex_state = 8}, + [5430] = {.lex_state = 23, .external_lex_state = 8}, + [5431] = {.lex_state = 14, .external_lex_state = 7}, + [5432] = {.lex_state = 23, .external_lex_state = 9}, + [5433] = {.lex_state = 14, .external_lex_state = 6}, [5434] = {.lex_state = 14, .external_lex_state = 7}, - [5435] = {.lex_state = 9, .external_lex_state = 2}, - [5436] = {.lex_state = 12, .external_lex_state = 2}, - [5437] = {.lex_state = 23, .external_lex_state = 9}, - [5438] = {.lex_state = 14, .external_lex_state = 7}, - [5439] = {.lex_state = 14, .external_lex_state = 7}, - [5440] = {.lex_state = 14, .external_lex_state = 7}, - [5441] = {.lex_state = 12, .external_lex_state = 2}, - [5442] = {.lex_state = 14, .external_lex_state = 7}, + [5435] = {.lex_state = 14, .external_lex_state = 7}, + [5436] = {.lex_state = 14, .external_lex_state = 6}, + [5437] = {.lex_state = 14, .external_lex_state = 7}, + [5438] = {.lex_state = 23, .external_lex_state = 8}, + [5439] = {.lex_state = 25, .external_lex_state = 8}, + [5440] = {.lex_state = 14, .external_lex_state = 6}, + [5441] = {.lex_state = 14, .external_lex_state = 6}, + [5442] = {.lex_state = 23, .external_lex_state = 8}, [5443] = {.lex_state = 14, .external_lex_state = 7}, - [5444] = {.lex_state = 25, .external_lex_state = 8}, - [5445] = {.lex_state = 14, .external_lex_state = 7}, - [5446] = {.lex_state = 14, .external_lex_state = 7}, - [5447] = {.lex_state = 14, .external_lex_state = 6}, - [5448] = {.lex_state = 25, .external_lex_state = 8}, + [5444] = {.lex_state = 23, .external_lex_state = 8}, + [5445] = {.lex_state = 14, .external_lex_state = 6}, + [5446] = {.lex_state = 12, .external_lex_state = 2}, + [5447] = {.lex_state = 14, .external_lex_state = 7}, + [5448] = {.lex_state = 23, .external_lex_state = 9}, [5449] = {.lex_state = 14, .external_lex_state = 7}, [5450] = {.lex_state = 14, .external_lex_state = 6}, - [5451] = {.lex_state = 14, .external_lex_state = 6}, - [5452] = {.lex_state = 23, .external_lex_state = 9}, + [5451] = {.lex_state = 14, .external_lex_state = 7}, + [5452] = {.lex_state = 23, .external_lex_state = 8}, [5453] = {.lex_state = 14, .external_lex_state = 7}, - [5454] = {.lex_state = 25, .external_lex_state = 8}, + [5454] = {.lex_state = 14, .external_lex_state = 6}, [5455] = {.lex_state = 14, .external_lex_state = 7}, [5456] = {.lex_state = 14, .external_lex_state = 6}, [5457] = {.lex_state = 14, .external_lex_state = 7}, - [5458] = {.lex_state = 14, .external_lex_state = 6}, - [5459] = {.lex_state = 14, .external_lex_state = 6}, - [5460] = {.lex_state = 23, .external_lex_state = 9}, + [5458] = {.lex_state = 9, .external_lex_state = 2}, + [5459] = {.lex_state = 14, .external_lex_state = 7}, + [5460] = {.lex_state = 14, .external_lex_state = 7}, [5461] = {.lex_state = 14, .external_lex_state = 6}, - [5462] = {.lex_state = 14, .external_lex_state = 6}, - [5463] = {.lex_state = 14, .external_lex_state = 6}, - [5464] = {.lex_state = 14, .external_lex_state = 6}, - [5465] = {.lex_state = 9, .external_lex_state = 2}, - [5466] = {.lex_state = 14, .external_lex_state = 6}, - [5467] = {.lex_state = 14, .external_lex_state = 6}, - [5468] = {.lex_state = 14, .external_lex_state = 7}, - [5469] = {.lex_state = 14, .external_lex_state = 6}, - [5470] = {.lex_state = 14, .external_lex_state = 6}, - [5471] = {.lex_state = 14, .external_lex_state = 6}, + [5462] = {.lex_state = 14, .external_lex_state = 7}, + [5463] = {.lex_state = 14, .external_lex_state = 7}, + [5464] = {.lex_state = 14, .external_lex_state = 7}, + [5465] = {.lex_state = 12, .external_lex_state = 2}, + [5466] = {.lex_state = 23, .external_lex_state = 8}, + [5467] = {.lex_state = 9, .external_lex_state = 2}, + [5468] = {.lex_state = 14, .external_lex_state = 6}, + [5469] = {.lex_state = 14, .external_lex_state = 7}, + [5470] = {.lex_state = 23, .external_lex_state = 8}, + [5471] = {.lex_state = 14, .external_lex_state = 7}, [5472] = {.lex_state = 25, .external_lex_state = 8}, [5473] = {.lex_state = 14, .external_lex_state = 6}, - [5474] = {.lex_state = 9, .external_lex_state = 2}, - [5475] = {.lex_state = 14, .external_lex_state = 6}, - [5476] = {.lex_state = 23, .external_lex_state = 8}, - [5477] = {.lex_state = 14, .external_lex_state = 6}, - [5478] = {.lex_state = 14, .external_lex_state = 6}, - [5479] = {.lex_state = 14, .external_lex_state = 6}, - [5480] = {.lex_state = 14, .external_lex_state = 6}, - [5481] = {.lex_state = 23, .external_lex_state = 8}, - [5482] = {.lex_state = 23, .external_lex_state = 8}, - [5483] = {.lex_state = 14, .external_lex_state = 7}, - [5484] = {.lex_state = 14, .external_lex_state = 7}, - [5485] = {.lex_state = 14, .external_lex_state = 7}, - [5486] = {.lex_state = 23, .external_lex_state = 8}, + [5474] = {.lex_state = 14, .external_lex_state = 6}, + [5475] = {.lex_state = 14, .external_lex_state = 7}, + [5476] = {.lex_state = 25, .external_lex_state = 8}, + [5477] = {.lex_state = 23, .external_lex_state = 9}, + [5478] = {.lex_state = 14, .external_lex_state = 7}, + [5479] = {.lex_state = 14, .external_lex_state = 7}, + [5480] = {.lex_state = 14, .external_lex_state = 7}, + [5481] = {.lex_state = 9, .external_lex_state = 2}, + [5482] = {.lex_state = 23, .external_lex_state = 9}, + [5483] = {.lex_state = 23, .external_lex_state = 9}, + [5484] = {.lex_state = 14, .external_lex_state = 6}, + [5485] = {.lex_state = 14, .external_lex_state = 6}, + [5486] = {.lex_state = 9, .external_lex_state = 2}, [5487] = {.lex_state = 14, .external_lex_state = 7}, - [5488] = {.lex_state = 25, .external_lex_state = 9}, - [5489] = {.lex_state = 9, .external_lex_state = 2}, + [5488] = {.lex_state = 14, .external_lex_state = 7}, + [5489] = {.lex_state = 25, .external_lex_state = 9}, [5490] = {.lex_state = 23, .external_lex_state = 8}, - [5491] = {.lex_state = 14, .external_lex_state = 7}, - [5492] = {.lex_state = 25, .external_lex_state = 9}, - [5493] = {.lex_state = 14, .external_lex_state = 6}, - [5494] = {.lex_state = 14, .external_lex_state = 7}, - [5495] = {.lex_state = 23, .external_lex_state = 8}, + [5491] = {.lex_state = 9, .external_lex_state = 2}, + [5492] = {.lex_state = 14, .external_lex_state = 7}, + [5493] = {.lex_state = 14, .external_lex_state = 7}, + [5494] = {.lex_state = 25, .external_lex_state = 9}, + [5495] = {.lex_state = 14, .external_lex_state = 7}, [5496] = {.lex_state = 23, .external_lex_state = 8}, - [5497] = {.lex_state = 25, .external_lex_state = 9}, - [5498] = {.lex_state = 9, .external_lex_state = 2}, - [5499] = {.lex_state = 14, .external_lex_state = 7}, - [5500] = {.lex_state = 14, .external_lex_state = 6}, - [5501] = {.lex_state = 23, .external_lex_state = 8}, - [5502] = {.lex_state = 14, .external_lex_state = 6}, - [5503] = {.lex_state = 14, .external_lex_state = 7}, - [5504] = {.lex_state = 14, .external_lex_state = 6}, - [5505] = {.lex_state = 23, .external_lex_state = 8}, + [5497] = {.lex_state = 23, .external_lex_state = 8}, + [5498] = {.lex_state = 23, .external_lex_state = 8}, + [5499] = {.lex_state = 23, .external_lex_state = 8}, + [5500] = {.lex_state = 14, .external_lex_state = 7}, + [5501] = {.lex_state = 14, .external_lex_state = 7}, + [5502] = {.lex_state = 14, .external_lex_state = 7}, + [5503] = {.lex_state = 23, .external_lex_state = 8}, + [5504] = {.lex_state = 23, .external_lex_state = 8}, + [5505] = {.lex_state = 14, .external_lex_state = 7}, [5506] = {.lex_state = 23, .external_lex_state = 8}, [5507] = {.lex_state = 23, .external_lex_state = 8}, [5508] = {.lex_state = 23, .external_lex_state = 8}, - [5509] = {.lex_state = 14, .external_lex_state = 6}, + [5509] = {.lex_state = 23, .external_lex_state = 8}, [5510] = {.lex_state = 14, .external_lex_state = 7}, - [5511] = {.lex_state = 23, .external_lex_state = 8}, - [5512] = {.lex_state = 23, .external_lex_state = 8}, + [5511] = {.lex_state = 14, .external_lex_state = 6}, + [5512] = {.lex_state = 14, .external_lex_state = 6}, [5513] = {.lex_state = 14, .external_lex_state = 7}, - [5514] = {.lex_state = 25, .external_lex_state = 9}, - [5515] = {.lex_state = 9, .external_lex_state = 2}, - [5516] = {.lex_state = 14, .external_lex_state = 6}, - [5517] = {.lex_state = 9, .external_lex_state = 2}, - [5518] = {.lex_state = 23, .external_lex_state = 8}, - [5519] = {.lex_state = 14, .external_lex_state = 7}, + [5514] = {.lex_state = 9, .external_lex_state = 2}, + [5515] = {.lex_state = 14, .external_lex_state = 7}, + [5516] = {.lex_state = 23, .external_lex_state = 8}, + [5517] = {.lex_state = 14, .external_lex_state = 7}, + [5518] = {.lex_state = 14, .external_lex_state = 7}, + [5519] = {.lex_state = 23, .external_lex_state = 8}, [5520] = {.lex_state = 23, .external_lex_state = 8}, - [5521] = {.lex_state = 14, .external_lex_state = 7}, - [5522] = {.lex_state = 14, .external_lex_state = 6}, + [5521] = {.lex_state = 25, .external_lex_state = 9}, + [5522] = {.lex_state = 14, .external_lex_state = 7}, [5523] = {.lex_state = 14, .external_lex_state = 6}, - [5524] = {.lex_state = 14, .external_lex_state = 7}, - [5525] = {.lex_state = 14, .external_lex_state = 7}, - [5526] = {.lex_state = 9, .external_lex_state = 2}, - [5527] = {.lex_state = 14, .external_lex_state = 7}, - [5528] = {.lex_state = 14, .external_lex_state = 7}, - [5529] = {.lex_state = 14, .external_lex_state = 7}, - [5530] = {.lex_state = 9, .external_lex_state = 2}, + [5524] = {.lex_state = 23, .external_lex_state = 8}, + [5525] = {.lex_state = 23, .external_lex_state = 8}, + [5526] = {.lex_state = 23, .external_lex_state = 8}, + [5527] = {.lex_state = 14, .external_lex_state = 6}, + [5528] = {.lex_state = 14, .external_lex_state = 6}, + [5529] = {.lex_state = 25, .external_lex_state = 9}, + [5530] = {.lex_state = 14, .external_lex_state = 7}, [5531] = {.lex_state = 23, .external_lex_state = 8}, [5532] = {.lex_state = 23, .external_lex_state = 8}, - [5533] = {.lex_state = 14, .external_lex_state = 7}, + [5533] = {.lex_state = 14, .external_lex_state = 6}, [5534] = {.lex_state = 23, .external_lex_state = 8}, [5535] = {.lex_state = 23, .external_lex_state = 8}, [5536] = {.lex_state = 14, .external_lex_state = 6}, - [5537] = {.lex_state = 23, .external_lex_state = 9}, - [5538] = {.lex_state = 14, .external_lex_state = 6}, - [5539] = {.lex_state = 14, .external_lex_state = 7}, - [5540] = {.lex_state = 14, .external_lex_state = 7}, - [5541] = {.lex_state = 14, .external_lex_state = 7}, + [5537] = {.lex_state = 14, .external_lex_state = 6}, + [5538] = {.lex_state = 9, .external_lex_state = 2}, + [5539] = {.lex_state = 23, .external_lex_state = 8}, + [5540] = {.lex_state = 9, .external_lex_state = 2}, + [5541] = {.lex_state = 14, .external_lex_state = 6}, [5542] = {.lex_state = 23, .external_lex_state = 8}, [5543] = {.lex_state = 23, .external_lex_state = 8}, - [5544] = {.lex_state = 23, .external_lex_state = 8}, - [5545] = {.lex_state = 14, .external_lex_state = 7}, - [5546] = {.lex_state = 23, .external_lex_state = 9}, + [5544] = {.lex_state = 14, .external_lex_state = 6}, + [5545] = {.lex_state = 23, .external_lex_state = 8}, + [5546] = {.lex_state = 14, .external_lex_state = 6}, [5547] = {.lex_state = 14, .external_lex_state = 7}, - [5548] = {.lex_state = 23, .external_lex_state = 8}, - [5549] = {.lex_state = 14, .external_lex_state = 6}, + [5548] = {.lex_state = 14, .external_lex_state = 7}, + [5549] = {.lex_state = 9, .external_lex_state = 2}, [5550] = {.lex_state = 23, .external_lex_state = 8}, [5551] = {.lex_state = 23, .external_lex_state = 8}, - [5552] = {.lex_state = 9, .external_lex_state = 2}, - [5553] = {.lex_state = 23, .external_lex_state = 8}, - [5554] = {.lex_state = 14, .external_lex_state = 7}, - [5555] = {.lex_state = 9, .external_lex_state = 2}, + [5552] = {.lex_state = 23, .external_lex_state = 8}, + [5553] = {.lex_state = 9, .external_lex_state = 2}, + [5554] = {.lex_state = 14, .external_lex_state = 6}, + [5555] = {.lex_state = 14, .external_lex_state = 7}, [5556] = {.lex_state = 14, .external_lex_state = 7}, [5557] = {.lex_state = 23, .external_lex_state = 8}, - [5558] = {.lex_state = 23, .external_lex_state = 8}, - [5559] = {.lex_state = 9, .external_lex_state = 2}, + [5558] = {.lex_state = 14, .external_lex_state = 6}, + [5559] = {.lex_state = 25, .external_lex_state = 8}, [5560] = {.lex_state = 9, .external_lex_state = 2}, - [5561] = {.lex_state = 23, .external_lex_state = 8}, - [5562] = {.lex_state = 9, .external_lex_state = 2}, - [5563] = {.lex_state = 23, .external_lex_state = 8}, + [5561] = {.lex_state = 14, .external_lex_state = 7}, + [5562] = {.lex_state = 14, .external_lex_state = 6}, + [5563] = {.lex_state = 25, .external_lex_state = 8}, [5564] = {.lex_state = 23, .external_lex_state = 8}, [5565] = {.lex_state = 14, .external_lex_state = 7}, [5566] = {.lex_state = 14, .external_lex_state = 7}, - [5567] = {.lex_state = 23, .external_lex_state = 9}, - [5568] = {.lex_state = 25, .external_lex_state = 8}, - [5569] = {.lex_state = 23, .external_lex_state = 9}, - [5570] = {.lex_state = 25, .external_lex_state = 8}, + [5567] = {.lex_state = 23, .external_lex_state = 8}, + [5568] = {.lex_state = 9, .external_lex_state = 2}, + [5569] = {.lex_state = 9, .external_lex_state = 2}, + [5570] = {.lex_state = 23, .external_lex_state = 8}, [5571] = {.lex_state = 14, .external_lex_state = 7}, [5572] = {.lex_state = 25, .external_lex_state = 8}, - [5573] = {.lex_state = 23, .external_lex_state = 8}, - [5574] = {.lex_state = 23, .external_lex_state = 8}, - [5575] = {.lex_state = 23, .external_lex_state = 8}, - [5576] = {.lex_state = 23, .external_lex_state = 8}, + [5573] = {.lex_state = 14, .external_lex_state = 7}, + [5574] = {.lex_state = 14, .external_lex_state = 6}, + [5575] = {.lex_state = 23, .external_lex_state = 9}, + [5576] = {.lex_state = 14, .external_lex_state = 7}, [5577] = {.lex_state = 9, .external_lex_state = 2}, - [5578] = {.lex_state = 9, .external_lex_state = 2}, - [5579] = {.lex_state = 23, .external_lex_state = 8}, - [5580] = {.lex_state = 23, .external_lex_state = 8}, - [5581] = {.lex_state = 25, .external_lex_state = 8}, + [5578] = {.lex_state = 14, .external_lex_state = 6}, + [5579] = {.lex_state = 14, .external_lex_state = 7}, + [5580] = {.lex_state = 9, .external_lex_state = 2}, + [5581] = {.lex_state = 23, .external_lex_state = 9}, [5582] = {.lex_state = 23, .external_lex_state = 8}, [5583] = {.lex_state = 23, .external_lex_state = 8}, - [5584] = {.lex_state = 23, .external_lex_state = 8}, + [5584] = {.lex_state = 9, .external_lex_state = 2}, [5585] = {.lex_state = 9, .external_lex_state = 2}, - [5586] = {.lex_state = 23, .external_lex_state = 8}, - [5587] = {.lex_state = 14, .external_lex_state = 6}, - [5588] = {.lex_state = 23, .external_lex_state = 9}, + [5586] = {.lex_state = 9, .external_lex_state = 2}, + [5587] = {.lex_state = 14, .external_lex_state = 7}, + [5588] = {.lex_state = 14, .external_lex_state = 7}, [5589] = {.lex_state = 14, .external_lex_state = 7}, - [5590] = {.lex_state = 9, .external_lex_state = 2}, + [5590] = {.lex_state = 23, .external_lex_state = 9}, [5591] = {.lex_state = 14, .external_lex_state = 7}, - [5592] = {.lex_state = 14, .external_lex_state = 6}, - [5593] = {.lex_state = 23, .external_lex_state = 8}, - [5594] = {.lex_state = 14, .external_lex_state = 6}, - [5595] = {.lex_state = 14, .external_lex_state = 7}, - [5596] = {.lex_state = 14, .external_lex_state = 7}, + [5592] = {.lex_state = 25, .external_lex_state = 8}, + [5593] = {.lex_state = 14, .external_lex_state = 6}, + [5594] = {.lex_state = 23, .external_lex_state = 9}, + [5595] = {.lex_state = 23, .external_lex_state = 8}, + [5596] = {.lex_state = 23, .external_lex_state = 9}, [5597] = {.lex_state = 23, .external_lex_state = 8}, - [5598] = {.lex_state = 14, .external_lex_state = 7}, + [5598] = {.lex_state = 23, .external_lex_state = 8}, [5599] = {.lex_state = 23, .external_lex_state = 8}, [5600] = {.lex_state = 23, .external_lex_state = 8}, [5601] = {.lex_state = 14, .external_lex_state = 7}, - [5602] = {.lex_state = 23, .external_lex_state = 8}, - [5603] = {.lex_state = 14, .external_lex_state = 7}, + [5602] = {.lex_state = 14, .external_lex_state = 7}, + [5603] = {.lex_state = 23, .external_lex_state = 8}, [5604] = {.lex_state = 14, .external_lex_state = 7}, - [5605] = {.lex_state = 23, .external_lex_state = 8}, + [5605] = {.lex_state = 14, .external_lex_state = 7}, [5606] = {.lex_state = 14, .external_lex_state = 7}, - [5607] = {.lex_state = 14, .external_lex_state = 7}, + [5607] = {.lex_state = 23, .external_lex_state = 8}, [5608] = {.lex_state = 23, .external_lex_state = 8}, [5609] = {.lex_state = 23, .external_lex_state = 8}, - [5610] = {.lex_state = 23, .external_lex_state = 8}, + [5610] = {.lex_state = 14, .external_lex_state = 7}, [5611] = {.lex_state = 23, .external_lex_state = 8}, [5612] = {.lex_state = 14, .external_lex_state = 7}, [5613] = {.lex_state = 23, .external_lex_state = 8}, [5614] = {.lex_state = 23, .external_lex_state = 8}, - [5615] = {.lex_state = 23, .external_lex_state = 8}, + [5615] = {.lex_state = 14, .external_lex_state = 7}, [5616] = {.lex_state = 23, .external_lex_state = 8}, [5617] = {.lex_state = 14, .external_lex_state = 6}, - [5618] = {.lex_state = 23, .external_lex_state = 8}, - [5619] = {.lex_state = 14, .external_lex_state = 6}, - [5620] = {.lex_state = 23, .external_lex_state = 8}, - [5621] = {.lex_state = 14, .external_lex_state = 6}, + [5618] = {.lex_state = 14, .external_lex_state = 6}, + [5619] = {.lex_state = 23, .external_lex_state = 8}, + [5620] = {.lex_state = 9, .external_lex_state = 5}, + [5621] = {.lex_state = 9, .external_lex_state = 5}, [5622] = {.lex_state = 14, .external_lex_state = 6}, - [5623] = {.lex_state = 9, .external_lex_state = 5}, + [5623] = {.lex_state = 23, .external_lex_state = 8}, [5624] = {.lex_state = 14, .external_lex_state = 6}, [5625] = {.lex_state = 14, .external_lex_state = 6}, - [5626] = {.lex_state = 9, .external_lex_state = 5}, - [5627] = {.lex_state = 23, .external_lex_state = 8}, - [5628] = {.lex_state = 23, .external_lex_state = 8}, - [5629] = {.lex_state = 32, .external_lex_state = 9}, + [5626] = {.lex_state = 14, .external_lex_state = 6}, + [5627] = {.lex_state = 32, .external_lex_state = 9}, + [5628] = {.lex_state = 14, .external_lex_state = 7}, + [5629] = {.lex_state = 14, .external_lex_state = 7}, [5630] = {.lex_state = 32, .external_lex_state = 9}, - [5631] = {.lex_state = 23, .external_lex_state = 8}, - [5632] = {.lex_state = 32, .external_lex_state = 9}, - [5633] = {.lex_state = 23, .external_lex_state = 8}, - [5634] = {.lex_state = 14, .external_lex_state = 7}, - [5635] = {.lex_state = 14, .external_lex_state = 7}, - [5636] = {.lex_state = 14, .external_lex_state = 7}, - [5637] = {.lex_state = 9, .external_lex_state = 2}, + [5631] = {.lex_state = 14, .external_lex_state = 7}, + [5632] = {.lex_state = 23, .external_lex_state = 8}, + [5633] = {.lex_state = 32, .external_lex_state = 9}, + [5634] = {.lex_state = 9, .external_lex_state = 2}, + [5635] = {.lex_state = 9, .external_lex_state = 2}, + [5636] = {.lex_state = 23, .external_lex_state = 8}, + [5637] = {.lex_state = 32, .external_lex_state = 9}, [5638] = {.lex_state = 32, .external_lex_state = 9}, [5639] = {.lex_state = 14, .external_lex_state = 7}, - [5640] = {.lex_state = 32, .external_lex_state = 9}, - [5641] = {.lex_state = 9, .external_lex_state = 2}, - [5642] = {.lex_state = 14, .external_lex_state = 7}, - [5643] = {.lex_state = 14, .external_lex_state = 7}, + [5640] = {.lex_state = 23, .external_lex_state = 8}, + [5641] = {.lex_state = 14, .external_lex_state = 7}, + [5642] = {.lex_state = 32, .external_lex_state = 9}, + [5643] = {.lex_state = 23, .external_lex_state = 8}, [5644] = {.lex_state = 23, .external_lex_state = 8}, - [5645] = {.lex_state = 32, .external_lex_state = 9}, + [5645] = {.lex_state = 14, .external_lex_state = 7}, [5646] = {.lex_state = 32, .external_lex_state = 9}, [5647] = {.lex_state = 23, .external_lex_state = 8}, [5648] = {.lex_state = 32, .external_lex_state = 9}, - [5649] = {.lex_state = 14, .external_lex_state = 6}, - [5650] = {.lex_state = 14, .external_lex_state = 6}, - [5651] = {.lex_state = 32, .external_lex_state = 9}, + [5649] = {.lex_state = 23, .external_lex_state = 8}, + [5650] = {.lex_state = 23, .external_lex_state = 8}, + [5651] = {.lex_state = 23, .external_lex_state = 8}, [5652] = {.lex_state = 32, .external_lex_state = 9}, [5653] = {.lex_state = 23, .external_lex_state = 8}, - [5654] = {.lex_state = 23, .external_lex_state = 8}, + [5654] = {.lex_state = 32, .external_lex_state = 9}, [5655] = {.lex_state = 23, .external_lex_state = 8}, [5656] = {.lex_state = 14, .external_lex_state = 6}, [5657] = {.lex_state = 23, .external_lex_state = 8}, - [5658] = {.lex_state = 23, .external_lex_state = 8}, + [5658] = {.lex_state = 32, .external_lex_state = 9}, [5659] = {.lex_state = 32, .external_lex_state = 9}, - [5660] = {.lex_state = 32, .external_lex_state = 9}, - [5661] = {.lex_state = 23, .external_lex_state = 8}, + [5660] = {.lex_state = 23, .external_lex_state = 8}, + [5661] = {.lex_state = 32, .external_lex_state = 9}, [5662] = {.lex_state = 23, .external_lex_state = 8}, - [5663] = {.lex_state = 32, .external_lex_state = 9}, + [5663] = {.lex_state = 14, .external_lex_state = 6}, [5664] = {.lex_state = 32, .external_lex_state = 9}, - [5665] = {.lex_state = 23, .external_lex_state = 8}, + [5665] = {.lex_state = 14, .external_lex_state = 6}, [5666] = {.lex_state = 23, .external_lex_state = 8}, [5667] = {.lex_state = 23, .external_lex_state = 8}, [5668] = {.lex_state = 23, .external_lex_state = 8}, @@ -25790,91 +25799,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5673] = {.lex_state = 23, .external_lex_state = 8}, [5674] = {.lex_state = 23, .external_lex_state = 8}, [5675] = {.lex_state = 23, .external_lex_state = 8}, - [5676] = {.lex_state = 23, .external_lex_state = 9}, + [5676] = {.lex_state = 23, .external_lex_state = 8}, [5677] = {.lex_state = 23, .external_lex_state = 8}, - [5678] = {.lex_state = 23, .external_lex_state = 9}, - [5679] = {.lex_state = 23, .external_lex_state = 8}, + [5678] = {.lex_state = 23, .external_lex_state = 8}, + [5679] = {.lex_state = 23, .external_lex_state = 9}, [5680] = {.lex_state = 23, .external_lex_state = 8}, - [5681] = {.lex_state = 23, .external_lex_state = 8}, - [5682] = {.lex_state = 23, .external_lex_state = 8}, + [5681] = {.lex_state = 23, .external_lex_state = 9}, + [5682] = {.lex_state = 23, .external_lex_state = 9}, [5683] = {.lex_state = 23, .external_lex_state = 9}, - [5684] = {.lex_state = 25, .external_lex_state = 9}, - [5685] = {.lex_state = 23, .external_lex_state = 9}, + [5684] = {.lex_state = 23, .external_lex_state = 8}, + [5685] = {.lex_state = 25, .external_lex_state = 9}, [5686] = {.lex_state = 23, .external_lex_state = 8}, [5687] = {.lex_state = 23, .external_lex_state = 8}, [5688] = {.lex_state = 23, .external_lex_state = 8}, [5689] = {.lex_state = 25, .external_lex_state = 9}, [5690] = {.lex_state = 23, .external_lex_state = 8}, - [5691] = {.lex_state = 23, .external_lex_state = 9}, - [5692] = {.lex_state = 24, .external_lex_state = 8}, + [5691] = {.lex_state = 23, .external_lex_state = 8}, + [5692] = {.lex_state = 23, .external_lex_state = 8}, [5693] = {.lex_state = 27, .external_lex_state = 8}, [5694] = {.lex_state = 27, .external_lex_state = 8}, - [5695] = {.lex_state = 23, .external_lex_state = 9}, - [5696] = {.lex_state = 24, .external_lex_state = 8}, - [5697] = {.lex_state = 23, .external_lex_state = 8}, - [5698] = {.lex_state = 27, .external_lex_state = 8}, - [5699] = {.lex_state = 27, .external_lex_state = 8}, - [5700] = {.lex_state = 23, .external_lex_state = 8}, + [5695] = {.lex_state = 24, .external_lex_state = 8}, + [5696] = {.lex_state = 27, .external_lex_state = 8}, + [5697] = {.lex_state = 24, .external_lex_state = 8}, + [5698] = {.lex_state = 23, .external_lex_state = 8}, + [5699] = {.lex_state = 23, .external_lex_state = 9}, + [5700] = {.lex_state = 27, .external_lex_state = 8}, [5701] = {.lex_state = 23, .external_lex_state = 9}, [5702] = {.lex_state = 23, .external_lex_state = 9}, [5703] = {.lex_state = 23, .external_lex_state = 8}, - [5704] = {.lex_state = 23, .external_lex_state = 9}, - [5705] = {.lex_state = 23, .external_lex_state = 8}, + [5704] = {.lex_state = 27, .external_lex_state = 8}, + [5705] = {.lex_state = 23, .external_lex_state = 9}, [5706] = {.lex_state = 27, .external_lex_state = 8}, [5707] = {.lex_state = 23, .external_lex_state = 8}, - [5708] = {.lex_state = 23, .external_lex_state = 8}, - [5709] = {.lex_state = 27, .external_lex_state = 8}, + [5708] = {.lex_state = 23, .external_lex_state = 9}, + [5709] = {.lex_state = 23, .external_lex_state = 8}, [5710] = {.lex_state = 23, .external_lex_state = 9}, [5711] = {.lex_state = 23, .external_lex_state = 9}, [5712] = {.lex_state = 23, .external_lex_state = 9}, [5713] = {.lex_state = 23, .external_lex_state = 9}, [5714] = {.lex_state = 23, .external_lex_state = 8}, [5715] = {.lex_state = 23, .external_lex_state = 9}, - [5716] = {.lex_state = 26, .external_lex_state = 8}, + [5716] = {.lex_state = 23, .external_lex_state = 8}, [5717] = {.lex_state = 26, .external_lex_state = 8}, - [5718] = {.lex_state = 26, .external_lex_state = 8}, - [5719] = {.lex_state = 26, .external_lex_state = 8}, - [5720] = {.lex_state = 26, .external_lex_state = 8}, - [5721] = {.lex_state = 26, .external_lex_state = 8}, - [5722] = {.lex_state = 23, .external_lex_state = 9}, + [5718] = {.lex_state = 23, .external_lex_state = 8}, + [5719] = {.lex_state = 23, .external_lex_state = 8}, + [5720] = {.lex_state = 23, .external_lex_state = 8}, + [5721] = {.lex_state = 23, .external_lex_state = 8}, + [5722] = {.lex_state = 23, .external_lex_state = 8}, [5723] = {.lex_state = 26, .external_lex_state = 8}, - [5724] = {.lex_state = 26, .external_lex_state = 8}, + [5724] = {.lex_state = 23, .external_lex_state = 8}, [5725] = {.lex_state = 23, .external_lex_state = 8}, - [5726] = {.lex_state = 26, .external_lex_state = 8}, - [5727] = {.lex_state = 26, .external_lex_state = 8}, - [5728] = {.lex_state = 23, .external_lex_state = 8}, - [5729] = {.lex_state = 23, .external_lex_state = 8}, - [5730] = {.lex_state = 26, .external_lex_state = 8}, - [5731] = {.lex_state = 23, .external_lex_state = 8}, - [5732] = {.lex_state = 23, .external_lex_state = 9}, - [5733] = {.lex_state = 23, .external_lex_state = 8}, - [5734] = {.lex_state = 23, .external_lex_state = 8}, - [5735] = {.lex_state = 23, .external_lex_state = 9}, + [5726] = {.lex_state = 23, .external_lex_state = 8}, + [5727] = {.lex_state = 23, .external_lex_state = 8}, + [5728] = {.lex_state = 26, .external_lex_state = 8}, + [5729] = {.lex_state = 26, .external_lex_state = 8}, + [5730] = {.lex_state = 23, .external_lex_state = 8}, + [5731] = {.lex_state = 26, .external_lex_state = 8}, + [5732] = {.lex_state = 23, .external_lex_state = 8}, + [5733] = {.lex_state = 26, .external_lex_state = 8}, + [5734] = {.lex_state = 26, .external_lex_state = 8}, + [5735] = {.lex_state = 23, .external_lex_state = 8}, [5736] = {.lex_state = 26, .external_lex_state = 8}, [5737] = {.lex_state = 26, .external_lex_state = 8}, [5738] = {.lex_state = 26, .external_lex_state = 8}, [5739] = {.lex_state = 26, .external_lex_state = 8}, [5740] = {.lex_state = 26, .external_lex_state = 8}, - [5741] = {.lex_state = 26, .external_lex_state = 8}, + [5741] = {.lex_state = 23, .external_lex_state = 9}, [5742] = {.lex_state = 23, .external_lex_state = 8}, - [5743] = {.lex_state = 23, .external_lex_state = 8}, - [5744] = {.lex_state = 23, .external_lex_state = 8}, - [5745] = {.lex_state = 23, .external_lex_state = 8}, - [5746] = {.lex_state = 26, .external_lex_state = 8}, - [5747] = {.lex_state = 23, .external_lex_state = 8}, - [5748] = {.lex_state = 23, .external_lex_state = 8}, - [5749] = {.lex_state = 23, .external_lex_state = 8}, + [5743] = {.lex_state = 26, .external_lex_state = 8}, + [5744] = {.lex_state = 23, .external_lex_state = 9}, + [5745] = {.lex_state = 26, .external_lex_state = 8}, + [5746] = {.lex_state = 23, .external_lex_state = 9}, + [5747] = {.lex_state = 26, .external_lex_state = 8}, + [5748] = {.lex_state = 26, .external_lex_state = 8}, + [5749] = {.lex_state = 23, .external_lex_state = 9}, [5750] = {.lex_state = 23, .external_lex_state = 8}, - [5751] = {.lex_state = 23, .external_lex_state = 8}, + [5751] = {.lex_state = 26, .external_lex_state = 8}, [5752] = {.lex_state = 26, .external_lex_state = 8}, - [5753] = {.lex_state = 23, .external_lex_state = 8}, + [5753] = {.lex_state = 26, .external_lex_state = 8}, [5754] = {.lex_state = 23, .external_lex_state = 8}, - [5755] = {.lex_state = 26, .external_lex_state = 8}, + [5755] = {.lex_state = 23, .external_lex_state = 8}, [5756] = {.lex_state = 23, .external_lex_state = 8}, - [5757] = {.lex_state = 23, .external_lex_state = 8}, - [5758] = {.lex_state = 23, .external_lex_state = 9}, + [5757] = {.lex_state = 26, .external_lex_state = 8}, + [5758] = {.lex_state = 26, .external_lex_state = 8}, [5759] = {.lex_state = 23, .external_lex_state = 8}, - [5760] = {.lex_state = 26, .external_lex_state = 8}, + [5760] = {.lex_state = 23, .external_lex_state = 8}, [5761] = {.lex_state = 23, .external_lex_state = 9}, [5762] = {.lex_state = 23, .external_lex_state = 9}, [5763] = {.lex_state = 23, .external_lex_state = 9}, @@ -25883,17 +25892,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5766] = {.lex_state = 23, .external_lex_state = 8}, [5767] = {.lex_state = 23, .external_lex_state = 9}, [5768] = {.lex_state = 23, .external_lex_state = 9}, - [5769] = {.lex_state = 23, .external_lex_state = 8}, - [5770] = {.lex_state = 23, .external_lex_state = 8}, - [5771] = {.lex_state = 23, .external_lex_state = 8}, + [5769] = {.lex_state = 23, .external_lex_state = 9}, + [5770] = {.lex_state = 23, .external_lex_state = 9}, + [5771] = {.lex_state = 23, .external_lex_state = 9}, [5772] = {.lex_state = 23, .external_lex_state = 8}, [5773] = {.lex_state = 23, .external_lex_state = 8}, [5774] = {.lex_state = 23, .external_lex_state = 8}, [5775] = {.lex_state = 23, .external_lex_state = 9}, [5776] = {.lex_state = 23, .external_lex_state = 8}, [5777] = {.lex_state = 23, .external_lex_state = 9}, - [5778] = {.lex_state = 23, .external_lex_state = 8}, - [5779] = {.lex_state = 23, .external_lex_state = 8}, + [5778] = {.lex_state = 23, .external_lex_state = 9}, + [5779] = {.lex_state = 23, .external_lex_state = 9}, [5780] = {.lex_state = 23, .external_lex_state = 8}, [5781] = {.lex_state = 23, .external_lex_state = 8}, [5782] = {.lex_state = 23, .external_lex_state = 8}, @@ -25901,25 +25910,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5784] = {.lex_state = 23, .external_lex_state = 8}, [5785] = {.lex_state = 23, .external_lex_state = 8}, [5786] = {.lex_state = 23, .external_lex_state = 8}, - [5787] = {.lex_state = 23, .external_lex_state = 9}, + [5787] = {.lex_state = 23, .external_lex_state = 8}, [5788] = {.lex_state = 23, .external_lex_state = 8}, [5789] = {.lex_state = 23, .external_lex_state = 8}, [5790] = {.lex_state = 23, .external_lex_state = 8}, - [5791] = {.lex_state = 23, .external_lex_state = 9}, - [5792] = {.lex_state = 23, .external_lex_state = 9}, + [5791] = {.lex_state = 23, .external_lex_state = 8}, + [5792] = {.lex_state = 23, .external_lex_state = 8}, [5793] = {.lex_state = 23, .external_lex_state = 8}, [5794] = {.lex_state = 23, .external_lex_state = 8}, - [5795] = {.lex_state = 23, .external_lex_state = 9}, - [5796] = {.lex_state = 23, .external_lex_state = 9}, + [5795] = {.lex_state = 23, .external_lex_state = 8}, + [5796] = {.lex_state = 23, .external_lex_state = 8}, [5797] = {.lex_state = 23, .external_lex_state = 8}, [5798] = {.lex_state = 23, .external_lex_state = 8}, [5799] = {.lex_state = 23, .external_lex_state = 9}, [5800] = {.lex_state = 23, .external_lex_state = 9}, [5801] = {.lex_state = 23, .external_lex_state = 9}, [5802] = {.lex_state = 23, .external_lex_state = 8}, - [5803] = {.lex_state = 23, .external_lex_state = 8}, + [5803] = {.lex_state = 23, .external_lex_state = 9}, [5804] = {.lex_state = 23, .external_lex_state = 9}, - [5805] = {.lex_state = 23, .external_lex_state = 9}, + [5805] = {.lex_state = 23, .external_lex_state = 8}, [5806] = {.lex_state = 23, .external_lex_state = 9}, [5807] = {.lex_state = 23, .external_lex_state = 8}, [5808] = {.lex_state = 23, .external_lex_state = 9}, @@ -25929,70 +25938,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5812] = {.lex_state = 23, .external_lex_state = 8}, [5813] = {.lex_state = 23, .external_lex_state = 8}, [5814] = {.lex_state = 23, .external_lex_state = 8}, - [5815] = {.lex_state = 23, .external_lex_state = 9}, + [5815] = {.lex_state = 23, .external_lex_state = 8}, [5816] = {.lex_state = 23, .external_lex_state = 8}, [5817] = {.lex_state = 23, .external_lex_state = 8}, - [5818] = {.lex_state = 23, .external_lex_state = 8}, - [5819] = {.lex_state = 23, .external_lex_state = 9}, + [5818] = {.lex_state = 23, .external_lex_state = 9}, + [5819] = {.lex_state = 23, .external_lex_state = 8}, [5820] = {.lex_state = 23, .external_lex_state = 8}, [5821] = {.lex_state = 23, .external_lex_state = 8}, [5822] = {.lex_state = 23, .external_lex_state = 8}, [5823] = {.lex_state = 23, .external_lex_state = 8}, [5824] = {.lex_state = 23, .external_lex_state = 8}, - [5825] = {.lex_state = 29, .external_lex_state = 8}, - [5826] = {.lex_state = 23, .external_lex_state = 8}, + [5825] = {.lex_state = 23, .external_lex_state = 8}, + [5826] = {.lex_state = 29, .external_lex_state = 8}, [5827] = {.lex_state = 23, .external_lex_state = 8}, - [5828] = {.lex_state = 29, .external_lex_state = 8}, + [5828] = {.lex_state = 23, .external_lex_state = 9}, [5829] = {.lex_state = 23, .external_lex_state = 8}, [5830] = {.lex_state = 23, .external_lex_state = 8}, [5831] = {.lex_state = 23, .external_lex_state = 8}, - [5832] = {.lex_state = 23, .external_lex_state = 8}, + [5832] = {.lex_state = 29, .external_lex_state = 8}, [5833] = {.lex_state = 23, .external_lex_state = 8}, [5834] = {.lex_state = 23, .external_lex_state = 9}, - [5835] = {.lex_state = 25, .external_lex_state = 9}, - [5836] = {.lex_state = 25, .external_lex_state = 9}, - [5837] = {.lex_state = 29, .external_lex_state = 8}, - [5838] = {.lex_state = 23, .external_lex_state = 8}, - [5839] = {.lex_state = 23, .external_lex_state = 8}, - [5840] = {.lex_state = 23, .external_lex_state = 8}, + [5835] = {.lex_state = 23, .external_lex_state = 8}, + [5836] = {.lex_state = 23, .external_lex_state = 8}, + [5837] = {.lex_state = 23, .external_lex_state = 8}, + [5838] = {.lex_state = 29, .external_lex_state = 8}, + [5839] = {.lex_state = 25, .external_lex_state = 9}, + [5840] = {.lex_state = 29, .external_lex_state = 8}, [5841] = {.lex_state = 29, .external_lex_state = 8}, [5842] = {.lex_state = 29, .external_lex_state = 8}, [5843] = {.lex_state = 29, .external_lex_state = 8}, - [5844] = {.lex_state = 29, .external_lex_state = 8}, - [5845] = {.lex_state = 26, .external_lex_state = 8}, - [5846] = {.lex_state = 23, .external_lex_state = 8}, - [5847] = {.lex_state = 26, .external_lex_state = 8}, + [5844] = {.lex_state = 25, .external_lex_state = 9}, + [5845] = {.lex_state = 23, .external_lex_state = 8}, + [5846] = {.lex_state = 29, .external_lex_state = 8}, + [5847] = {.lex_state = 23, .external_lex_state = 8}, [5848] = {.lex_state = 23, .external_lex_state = 8}, - [5849] = {.lex_state = 26, .external_lex_state = 8}, + [5849] = {.lex_state = 23, .external_lex_state = 8}, [5850] = {.lex_state = 26, .external_lex_state = 8}, - [5851] = {.lex_state = 29, .external_lex_state = 8}, + [5851] = {.lex_state = 26, .external_lex_state = 8}, [5852] = {.lex_state = 23, .external_lex_state = 8}, - [5853] = {.lex_state = 26, .external_lex_state = 8}, - [5854] = {.lex_state = 26, .external_lex_state = 8}, + [5853] = {.lex_state = 23, .external_lex_state = 8}, + [5854] = {.lex_state = 23, .external_lex_state = 8}, [5855] = {.lex_state = 23, .external_lex_state = 8}, - [5856] = {.lex_state = 25, .external_lex_state = 8}, + [5856] = {.lex_state = 23, .external_lex_state = 8}, [5857] = {.lex_state = 26, .external_lex_state = 8}, [5858] = {.lex_state = 23, .external_lex_state = 8}, - [5859] = {.lex_state = 26, .external_lex_state = 8}, - [5860] = {.lex_state = 29, .external_lex_state = 8}, + [5859] = {.lex_state = 23, .external_lex_state = 8}, + [5860] = {.lex_state = 26, .external_lex_state = 8}, [5861] = {.lex_state = 23, .external_lex_state = 8}, - [5862] = {.lex_state = 26, .external_lex_state = 8}, - [5863] = {.lex_state = 25, .external_lex_state = 8}, - [5864] = {.lex_state = 23, .external_lex_state = 8}, + [5862] = {.lex_state = 23, .external_lex_state = 8}, + [5863] = {.lex_state = 23, .external_lex_state = 8}, + [5864] = {.lex_state = 26, .external_lex_state = 8}, [5865] = {.lex_state = 26, .external_lex_state = 8}, [5866] = {.lex_state = 29, .external_lex_state = 8}, - [5867] = {.lex_state = 23, .external_lex_state = 8}, - [5868] = {.lex_state = 26, .external_lex_state = 8}, + [5867] = {.lex_state = 26, .external_lex_state = 8}, + [5868] = {.lex_state = 25, .external_lex_state = 8}, [5869] = {.lex_state = 23, .external_lex_state = 8}, [5870] = {.lex_state = 23, .external_lex_state = 8}, - [5871] = {.lex_state = 23, .external_lex_state = 8}, - [5872] = {.lex_state = 23, .external_lex_state = 8}, - [5873] = {.lex_state = 23, .external_lex_state = 8}, + [5871] = {.lex_state = 26, .external_lex_state = 8}, + [5872] = {.lex_state = 26, .external_lex_state = 8}, + [5873] = {.lex_state = 26, .external_lex_state = 8}, [5874] = {.lex_state = 23, .external_lex_state = 8}, - [5875] = {.lex_state = 23, .external_lex_state = 8}, - [5876] = {.lex_state = 26, .external_lex_state = 8}, - [5877] = {.lex_state = 23, .external_lex_state = 8}, - [5878] = {.lex_state = 23, .external_lex_state = 8}, + [5875] = {.lex_state = 26, .external_lex_state = 8}, + [5876] = {.lex_state = 25, .external_lex_state = 8}, + [5877] = {.lex_state = 26, .external_lex_state = 8}, + [5878] = {.lex_state = 29, .external_lex_state = 8}, [5879] = {.lex_state = 26, .external_lex_state = 8}, [5880] = {.lex_state = 26, .external_lex_state = 8}, [5881] = {.lex_state = 26, .external_lex_state = 8}, @@ -26027,17 +26036,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5910] = {.lex_state = 26, .external_lex_state = 8}, [5911] = {.lex_state = 26, .external_lex_state = 8}, [5912] = {.lex_state = 26, .external_lex_state = 8}, - [5913] = {.lex_state = 26, .external_lex_state = 8}, + [5913] = {.lex_state = 29, .external_lex_state = 8}, [5914] = {.lex_state = 26, .external_lex_state = 8}, [5915] = {.lex_state = 26, .external_lex_state = 8}, [5916] = {.lex_state = 26, .external_lex_state = 8}, [5917] = {.lex_state = 26, .external_lex_state = 8}, [5918] = {.lex_state = 26, .external_lex_state = 8}, - [5919] = {.lex_state = 29, .external_lex_state = 8}, + [5919] = {.lex_state = 26, .external_lex_state = 8}, [5920] = {.lex_state = 26, .external_lex_state = 8}, [5921] = {.lex_state = 26, .external_lex_state = 8}, [5922] = {.lex_state = 26, .external_lex_state = 8}, - [5923] = {.lex_state = 26, .external_lex_state = 8}, + [5923] = {.lex_state = 29, .external_lex_state = 8}, [5924] = {.lex_state = 26, .external_lex_state = 8}, [5925] = {.lex_state = 26, .external_lex_state = 8}, [5926] = {.lex_state = 26, .external_lex_state = 8}, @@ -26056,7 +26065,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5939] = {.lex_state = 26, .external_lex_state = 8}, [5940] = {.lex_state = 26, .external_lex_state = 8}, [5941] = {.lex_state = 26, .external_lex_state = 8}, - [5942] = {.lex_state = 26, .external_lex_state = 8}, + [5942] = {.lex_state = 29, .external_lex_state = 8}, [5943] = {.lex_state = 26, .external_lex_state = 8}, [5944] = {.lex_state = 26, .external_lex_state = 8}, [5945] = {.lex_state = 26, .external_lex_state = 8}, @@ -26096,7 +26105,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5979] = {.lex_state = 26, .external_lex_state = 8}, [5980] = {.lex_state = 26, .external_lex_state = 8}, [5981] = {.lex_state = 26, .external_lex_state = 8}, - [5982] = {.lex_state = 26, .external_lex_state = 8}, + [5982] = {.lex_state = 29, .external_lex_state = 8}, [5983] = {.lex_state = 26, .external_lex_state = 8}, [5984] = {.lex_state = 26, .external_lex_state = 8}, [5985] = {.lex_state = 26, .external_lex_state = 8}, @@ -26133,7 +26142,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6016] = {.lex_state = 26, .external_lex_state = 8}, [6017] = {.lex_state = 26, .external_lex_state = 8}, [6018] = {.lex_state = 26, .external_lex_state = 8}, - [6019] = {.lex_state = 26, .external_lex_state = 8}, + [6019] = {.lex_state = 29, .external_lex_state = 8}, [6020] = {.lex_state = 26, .external_lex_state = 8}, [6021] = {.lex_state = 26, .external_lex_state = 8}, [6022] = {.lex_state = 26, .external_lex_state = 8}, @@ -26142,7 +26151,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6025] = {.lex_state = 26, .external_lex_state = 8}, [6026] = {.lex_state = 26, .external_lex_state = 8}, [6027] = {.lex_state = 26, .external_lex_state = 8}, - [6028] = {.lex_state = 26, .external_lex_state = 8}, + [6028] = {.lex_state = 29, .external_lex_state = 8}, [6029] = {.lex_state = 26, .external_lex_state = 8}, [6030] = {.lex_state = 26, .external_lex_state = 8}, [6031] = {.lex_state = 26, .external_lex_state = 8}, @@ -26171,9 +26180,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6054] = {.lex_state = 26, .external_lex_state = 8}, [6055] = {.lex_state = 26, .external_lex_state = 8}, [6056] = {.lex_state = 26, .external_lex_state = 8}, - [6057] = {.lex_state = 26, .external_lex_state = 8}, + [6057] = {.lex_state = 29, .external_lex_state = 8}, [6058] = {.lex_state = 26, .external_lex_state = 8}, - [6059] = {.lex_state = 26, .external_lex_state = 8}, + [6059] = {.lex_state = 29, .external_lex_state = 8}, [6060] = {.lex_state = 26, .external_lex_state = 8}, [6061] = {.lex_state = 26, .external_lex_state = 8}, [6062] = {.lex_state = 26, .external_lex_state = 8}, @@ -26181,13 +26190,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6064] = {.lex_state = 26, .external_lex_state = 8}, [6065] = {.lex_state = 26, .external_lex_state = 8}, [6066] = {.lex_state = 26, .external_lex_state = 8}, - [6067] = {.lex_state = 20, .external_lex_state = 8}, + [6067] = {.lex_state = 26, .external_lex_state = 8}, [6068] = {.lex_state = 26, .external_lex_state = 8}, [6069] = {.lex_state = 26, .external_lex_state = 8}, [6070] = {.lex_state = 26, .external_lex_state = 8}, [6071] = {.lex_state = 26, .external_lex_state = 8}, [6072] = {.lex_state = 26, .external_lex_state = 8}, - [6073] = {.lex_state = 20, .external_lex_state = 8}, + [6073] = {.lex_state = 26, .external_lex_state = 8}, [6074] = {.lex_state = 26, .external_lex_state = 8}, [6075] = {.lex_state = 26, .external_lex_state = 8}, [6076] = {.lex_state = 26, .external_lex_state = 8}, @@ -26198,7 +26207,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6081] = {.lex_state = 26, .external_lex_state = 8}, [6082] = {.lex_state = 26, .external_lex_state = 8}, [6083] = {.lex_state = 26, .external_lex_state = 8}, - [6084] = {.lex_state = 29, .external_lex_state = 8}, + [6084] = {.lex_state = 26, .external_lex_state = 8}, [6085] = {.lex_state = 26, .external_lex_state = 8}, [6086] = {.lex_state = 26, .external_lex_state = 8}, [6087] = {.lex_state = 26, .external_lex_state = 8}, @@ -26222,7 +26231,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6105] = {.lex_state = 26, .external_lex_state = 8}, [6106] = {.lex_state = 26, .external_lex_state = 8}, [6107] = {.lex_state = 26, .external_lex_state = 8}, - [6108] = {.lex_state = 26, .external_lex_state = 8}, + [6108] = {.lex_state = 29, .external_lex_state = 8}, [6109] = {.lex_state = 26, .external_lex_state = 8}, [6110] = {.lex_state = 26, .external_lex_state = 8}, [6111] = {.lex_state = 26, .external_lex_state = 8}, @@ -26255,7 +26264,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6138] = {.lex_state = 26, .external_lex_state = 8}, [6139] = {.lex_state = 26, .external_lex_state = 8}, [6140] = {.lex_state = 26, .external_lex_state = 8}, - [6141] = {.lex_state = 29, .external_lex_state = 8}, + [6141] = {.lex_state = 26, .external_lex_state = 8}, [6142] = {.lex_state = 26, .external_lex_state = 8}, [6143] = {.lex_state = 26, .external_lex_state = 8}, [6144] = {.lex_state = 26, .external_lex_state = 8}, @@ -26269,12 +26278,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6152] = {.lex_state = 26, .external_lex_state = 8}, [6153] = {.lex_state = 26, .external_lex_state = 8}, [6154] = {.lex_state = 26, .external_lex_state = 8}, - [6155] = {.lex_state = 29, .external_lex_state = 8}, + [6155] = {.lex_state = 26, .external_lex_state = 8}, [6156] = {.lex_state = 26, .external_lex_state = 8}, [6157] = {.lex_state = 26, .external_lex_state = 8}, [6158] = {.lex_state = 26, .external_lex_state = 8}, [6159] = {.lex_state = 26, .external_lex_state = 8}, - [6160] = {.lex_state = 26, .external_lex_state = 8}, + [6160] = {.lex_state = 29, .external_lex_state = 8}, [6161] = {.lex_state = 26, .external_lex_state = 8}, [6162] = {.lex_state = 26, .external_lex_state = 8}, [6163] = {.lex_state = 26, .external_lex_state = 8}, @@ -26300,7 +26309,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6183] = {.lex_state = 26, .external_lex_state = 8}, [6184] = {.lex_state = 26, .external_lex_state = 8}, [6185] = {.lex_state = 26, .external_lex_state = 8}, - [6186] = {.lex_state = 29, .external_lex_state = 8}, + [6186] = {.lex_state = 26, .external_lex_state = 8}, [6187] = {.lex_state = 26, .external_lex_state = 8}, [6188] = {.lex_state = 26, .external_lex_state = 8}, [6189] = {.lex_state = 26, .external_lex_state = 8}, @@ -26331,7 +26340,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6214] = {.lex_state = 26, .external_lex_state = 8}, [6215] = {.lex_state = 26, .external_lex_state = 8}, [6216] = {.lex_state = 26, .external_lex_state = 8}, - [6217] = {.lex_state = 29, .external_lex_state = 8}, + [6217] = {.lex_state = 26, .external_lex_state = 8}, [6218] = {.lex_state = 26, .external_lex_state = 8}, [6219] = {.lex_state = 26, .external_lex_state = 8}, [6220] = {.lex_state = 26, .external_lex_state = 8}, @@ -26354,8 +26363,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6237] = {.lex_state = 26, .external_lex_state = 8}, [6238] = {.lex_state = 26, .external_lex_state = 8}, [6239] = {.lex_state = 26, .external_lex_state = 8}, - [6240] = {.lex_state = 29, .external_lex_state = 8}, - [6241] = {.lex_state = 29, .external_lex_state = 8}, + [6240] = {.lex_state = 26, .external_lex_state = 8}, + [6241] = {.lex_state = 26, .external_lex_state = 8}, [6242] = {.lex_state = 26, .external_lex_state = 8}, [6243] = {.lex_state = 26, .external_lex_state = 8}, [6244] = {.lex_state = 26, .external_lex_state = 8}, @@ -26376,7 +26385,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6259] = {.lex_state = 26, .external_lex_state = 8}, [6260] = {.lex_state = 26, .external_lex_state = 8}, [6261] = {.lex_state = 26, .external_lex_state = 8}, - [6262] = {.lex_state = 29, .external_lex_state = 8}, + [6262] = {.lex_state = 26, .external_lex_state = 8}, [6263] = {.lex_state = 26, .external_lex_state = 8}, [6264] = {.lex_state = 26, .external_lex_state = 8}, [6265] = {.lex_state = 26, .external_lex_state = 8}, @@ -26429,7 +26438,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6312] = {.lex_state = 26, .external_lex_state = 8}, [6313] = {.lex_state = 26, .external_lex_state = 8}, [6314] = {.lex_state = 26, .external_lex_state = 8}, - [6315] = {.lex_state = 29, .external_lex_state = 8}, + [6315] = {.lex_state = 26, .external_lex_state = 8}, [6316] = {.lex_state = 26, .external_lex_state = 8}, [6317] = {.lex_state = 26, .external_lex_state = 8}, [6318] = {.lex_state = 26, .external_lex_state = 8}, @@ -26461,7 +26470,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6344] = {.lex_state = 26, .external_lex_state = 8}, [6345] = {.lex_state = 26, .external_lex_state = 8}, [6346] = {.lex_state = 26, .external_lex_state = 8}, - [6347] = {.lex_state = 29, .external_lex_state = 8}, + [6347] = {.lex_state = 26, .external_lex_state = 8}, [6348] = {.lex_state = 26, .external_lex_state = 8}, [6349] = {.lex_state = 26, .external_lex_state = 8}, [6350] = {.lex_state = 26, .external_lex_state = 8}, @@ -26470,12 +26479,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6353] = {.lex_state = 26, .external_lex_state = 8}, [6354] = {.lex_state = 26, .external_lex_state = 8}, [6355] = {.lex_state = 26, .external_lex_state = 8}, - [6356] = {.lex_state = 26, .external_lex_state = 8}, + [6356] = {.lex_state = 20, .external_lex_state = 8}, [6357] = {.lex_state = 26, .external_lex_state = 8}, [6358] = {.lex_state = 26, .external_lex_state = 8}, [6359] = {.lex_state = 26, .external_lex_state = 8}, [6360] = {.lex_state = 26, .external_lex_state = 8}, - [6361] = {.lex_state = 26, .external_lex_state = 8}, + [6361] = {.lex_state = 20, .external_lex_state = 8}, [6362] = {.lex_state = 26, .external_lex_state = 8}, [6363] = {.lex_state = 26, .external_lex_state = 8}, [6364] = {.lex_state = 26, .external_lex_state = 8}, @@ -26499,7 +26508,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6382] = {.lex_state = 26, .external_lex_state = 8}, [6383] = {.lex_state = 26, .external_lex_state = 8}, [6384] = {.lex_state = 26, .external_lex_state = 8}, - [6385] = {.lex_state = 26, .external_lex_state = 8}, + [6385] = {.lex_state = 29, .external_lex_state = 8}, [6386] = {.lex_state = 26, .external_lex_state = 8}, [6387] = {.lex_state = 26, .external_lex_state = 8}, [6388] = {.lex_state = 26, .external_lex_state = 8}, @@ -26649,9 +26658,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6532] = {.lex_state = 26, .external_lex_state = 8}, [6533] = {.lex_state = 26, .external_lex_state = 8}, [6534] = {.lex_state = 26, .external_lex_state = 8}, - [6535] = {.lex_state = 20, .external_lex_state = 8}, + [6535] = {.lex_state = 26, .external_lex_state = 8}, [6536] = {.lex_state = 26, .external_lex_state = 8}, - [6537] = {.lex_state = 26, .external_lex_state = 8}, + [6537] = {.lex_state = 20, .external_lex_state = 8}, [6538] = {.lex_state = 26, .external_lex_state = 8}, [6539] = {.lex_state = 26, .external_lex_state = 8}, [6540] = {.lex_state = 26, .external_lex_state = 8}, @@ -26661,7 +26670,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6544] = {.lex_state = 26, .external_lex_state = 8}, [6545] = {.lex_state = 26, .external_lex_state = 8}, [6546] = {.lex_state = 26, .external_lex_state = 8}, - [6547] = {.lex_state = 26, .external_lex_state = 8}, + [6547] = {.lex_state = 20, .external_lex_state = 8}, [6548] = {.lex_state = 26, .external_lex_state = 8}, [6549] = {.lex_state = 26, .external_lex_state = 8}, [6550] = {.lex_state = 26, .external_lex_state = 8}, @@ -26685,7 +26694,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6568] = {.lex_state = 26, .external_lex_state = 8}, [6569] = {.lex_state = 26, .external_lex_state = 8}, [6570] = {.lex_state = 26, .external_lex_state = 8}, - [6571] = {.lex_state = 20, .external_lex_state = 8}, + [6571] = {.lex_state = 26, .external_lex_state = 8}, [6572] = {.lex_state = 26, .external_lex_state = 8}, [6573] = {.lex_state = 26, .external_lex_state = 8}, [6574] = {.lex_state = 26, .external_lex_state = 8}, @@ -26705,97 +26714,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6588] = {.lex_state = 28, .external_lex_state = 8}, [6589] = {.lex_state = 28, .external_lex_state = 8}, [6590] = {.lex_state = 28, .external_lex_state = 8}, - [6591] = {.lex_state = 28, .external_lex_state = 8}, - [6592] = {.lex_state = 20, .external_lex_state = 8}, + [6591] = {.lex_state = 20, .external_lex_state = 8}, + [6592] = {.lex_state = 28, .external_lex_state = 8}, [6593] = {.lex_state = 28, .external_lex_state = 8}, [6594] = {.lex_state = 28, .external_lex_state = 8}, [6595] = {.lex_state = 20, .external_lex_state = 8}, [6596] = {.lex_state = 28, .external_lex_state = 8}, [6597] = {.lex_state = 28, .external_lex_state = 8}, [6598] = {.lex_state = 28, .external_lex_state = 8}, - [6599] = {.lex_state = 28, .external_lex_state = 8}, + [6599] = {.lex_state = 20, .external_lex_state = 8}, [6600] = {.lex_state = 28, .external_lex_state = 8}, [6601] = {.lex_state = 28, .external_lex_state = 8}, [6602] = {.lex_state = 28, .external_lex_state = 8}, [6603] = {.lex_state = 28, .external_lex_state = 8}, [6604] = {.lex_state = 28, .external_lex_state = 8}, - [6605] = {.lex_state = 20, .external_lex_state = 8}, + [6605] = {.lex_state = 28, .external_lex_state = 8}, [6606] = {.lex_state = 28, .external_lex_state = 8}, - [6607] = {.lex_state = 28, .external_lex_state = 8}, + [6607] = {.lex_state = 20, .external_lex_state = 8}, [6608] = {.lex_state = 28, .external_lex_state = 8}, [6609] = {.lex_state = 28, .external_lex_state = 8}, [6610] = {.lex_state = 28, .external_lex_state = 8}, - [6611] = {.lex_state = 20, .external_lex_state = 8}, + [6611] = {.lex_state = 28, .external_lex_state = 8}, [6612] = {.lex_state = 28, .external_lex_state = 8}, [6613] = {.lex_state = 28, .external_lex_state = 8}, - [6614] = {.lex_state = 20, .external_lex_state = 8}, + [6614] = {.lex_state = 28, .external_lex_state = 8}, [6615] = {.lex_state = 28, .external_lex_state = 8}, - [6616] = {.lex_state = 28, .external_lex_state = 8}, + [6616] = {.lex_state = 20, .external_lex_state = 8}, [6617] = {.lex_state = 26, .external_lex_state = 8}, - [6618] = {.lex_state = 26, .external_lex_state = 8}, + [6618] = {.lex_state = 20, .external_lex_state = 8}, [6619] = {.lex_state = 26, .external_lex_state = 8}, [6620] = {.lex_state = 26, .external_lex_state = 8}, - [6621] = {.lex_state = 26, .external_lex_state = 8}, - [6622] = {.lex_state = 20, .external_lex_state = 8}, + [6621] = {.lex_state = 20, .external_lex_state = 8}, + [6622] = {.lex_state = 26, .external_lex_state = 8}, [6623] = {.lex_state = 26, .external_lex_state = 8}, [6624] = {.lex_state = 26, .external_lex_state = 8}, - [6625] = {.lex_state = 26, .external_lex_state = 8}, - [6626] = {.lex_state = 20, .external_lex_state = 8}, - [6627] = {.lex_state = 26, .external_lex_state = 8}, + [6625] = {.lex_state = 20, .external_lex_state = 8}, + [6626] = {.lex_state = 26, .external_lex_state = 8}, + [6627] = {.lex_state = 20, .external_lex_state = 8}, [6628] = {.lex_state = 26, .external_lex_state = 8}, [6629] = {.lex_state = 26, .external_lex_state = 8}, [6630] = {.lex_state = 20, .external_lex_state = 8}, [6631] = {.lex_state = 26, .external_lex_state = 8}, - [6632] = {.lex_state = 20, .external_lex_state = 8}, - [6633] = {.lex_state = 20, .external_lex_state = 8}, + [6632] = {.lex_state = 26, .external_lex_state = 8}, + [6633] = {.lex_state = 26, .external_lex_state = 8}, [6634] = {.lex_state = 26, .external_lex_state = 8}, [6635] = {.lex_state = 26, .external_lex_state = 8}, [6636] = {.lex_state = 20, .external_lex_state = 8}, - [6637] = {.lex_state = 20, .external_lex_state = 8}, + [6637] = {.lex_state = 26, .external_lex_state = 8}, [6638] = {.lex_state = 20, .external_lex_state = 8}, [6639] = {.lex_state = 20, .external_lex_state = 8}, - [6640] = {.lex_state = 20, .external_lex_state = 8}, + [6640] = {.lex_state = 26, .external_lex_state = 8}, [6641] = {.lex_state = 20, .external_lex_state = 8}, [6642] = {.lex_state = 26, .external_lex_state = 8}, [6643] = {.lex_state = 26, .external_lex_state = 8}, - [6644] = {.lex_state = 26, .external_lex_state = 8}, + [6644] = {.lex_state = 28, .external_lex_state = 8}, [6645] = {.lex_state = 26, .external_lex_state = 8}, [6646] = {.lex_state = 26, .external_lex_state = 8}, [6647] = {.lex_state = 26, .external_lex_state = 8}, [6648] = {.lex_state = 26, .external_lex_state = 8}, - [6649] = {.lex_state = 20, .external_lex_state = 8}, + [6649] = {.lex_state = 26, .external_lex_state = 8}, [6650] = {.lex_state = 26, .external_lex_state = 8}, - [6651] = {.lex_state = 20, .external_lex_state = 8}, - [6652] = {.lex_state = 20, .external_lex_state = 8}, + [6651] = {.lex_state = 26, .external_lex_state = 8}, + [6652] = {.lex_state = 26, .external_lex_state = 8}, [6653] = {.lex_state = 26, .external_lex_state = 8}, [6654] = {.lex_state = 26, .external_lex_state = 8}, [6655] = {.lex_state = 26, .external_lex_state = 8}, [6656] = {.lex_state = 26, .external_lex_state = 8}, [6657] = {.lex_state = 26, .external_lex_state = 8}, - [6658] = {.lex_state = 20, .external_lex_state = 8}, - [6659] = {.lex_state = 26, .external_lex_state = 8}, - [6660] = {.lex_state = 20, .external_lex_state = 8}, - [6661] = {.lex_state = 26, .external_lex_state = 8}, + [6658] = {.lex_state = 26, .external_lex_state = 8}, + [6659] = {.lex_state = 20, .external_lex_state = 8}, + [6660] = {.lex_state = 26, .external_lex_state = 8}, + [6661] = {.lex_state = 20, .external_lex_state = 8}, [6662] = {.lex_state = 20, .external_lex_state = 8}, [6663] = {.lex_state = 26, .external_lex_state = 8}, - [6664] = {.lex_state = 20, .external_lex_state = 8}, + [6664] = {.lex_state = 26, .external_lex_state = 8}, [6665] = {.lex_state = 20, .external_lex_state = 8}, - [6666] = {.lex_state = 26, .external_lex_state = 8}, - [6667] = {.lex_state = 26, .external_lex_state = 8}, - [6668] = {.lex_state = 28, .external_lex_state = 8}, - [6669] = {.lex_state = 26, .external_lex_state = 8}, - [6670] = {.lex_state = 26, .external_lex_state = 8}, - [6671] = {.lex_state = 26, .external_lex_state = 8}, + [6666] = {.lex_state = 20, .external_lex_state = 8}, + [6667] = {.lex_state = 20, .external_lex_state = 8}, + [6668] = {.lex_state = 26, .external_lex_state = 8}, + [6669] = {.lex_state = 20, .external_lex_state = 8}, + [6670] = {.lex_state = 20, .external_lex_state = 8}, + [6671] = {.lex_state = 20, .external_lex_state = 8}, [6672] = {.lex_state = 26, .external_lex_state = 8}, [6673] = {.lex_state = 26, .external_lex_state = 8}, - [6674] = {.lex_state = 26, .external_lex_state = 8}, + [6674] = {.lex_state = 20, .external_lex_state = 8}, [6675] = {.lex_state = 20, .external_lex_state = 8}, [6676] = {.lex_state = 26, .external_lex_state = 8}, [6677] = {.lex_state = 26, .external_lex_state = 8}, [6678] = {.lex_state = 20, .external_lex_state = 8}, [6679] = {.lex_state = 26, .external_lex_state = 8}, [6680] = {.lex_state = 26, .external_lex_state = 8}, - [6681] = {.lex_state = 28, .external_lex_state = 8}, + [6681] = {.lex_state = 20, .external_lex_state = 8}, [6682] = {.lex_state = 28, .external_lex_state = 8}, [6683] = {.lex_state = 28, .external_lex_state = 8}, [6684] = {.lex_state = 28, .external_lex_state = 8}, @@ -26810,7 +26819,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6693] = {.lex_state = 28, .external_lex_state = 8}, [6694] = {.lex_state = 28, .external_lex_state = 8}, [6695] = {.lex_state = 28, .external_lex_state = 8}, - [6696] = {.lex_state = 20, .external_lex_state = 8}, + [6696] = {.lex_state = 28, .external_lex_state = 8}, [6697] = {.lex_state = 28, .external_lex_state = 8}, [6698] = {.lex_state = 28, .external_lex_state = 8}, [6699] = {.lex_state = 28, .external_lex_state = 8}, @@ -26836,13 +26845,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6719] = {.lex_state = 28, .external_lex_state = 8}, [6720] = {.lex_state = 28, .external_lex_state = 8}, [6721] = {.lex_state = 28, .external_lex_state = 8}, - [6722] = {.lex_state = 28, .external_lex_state = 8}, + [6722] = {.lex_state = 20, .external_lex_state = 8}, [6723] = {.lex_state = 28, .external_lex_state = 8}, [6724] = {.lex_state = 28, .external_lex_state = 8}, [6725] = {.lex_state = 28, .external_lex_state = 8}, [6726] = {.lex_state = 28, .external_lex_state = 8}, [6727] = {.lex_state = 28, .external_lex_state = 8}, - [6728] = {.lex_state = 20, .external_lex_state = 8}, + [6728] = {.lex_state = 28, .external_lex_state = 8}, [6729] = {.lex_state = 28, .external_lex_state = 8}, [6730] = {.lex_state = 28, .external_lex_state = 8}, [6731] = {.lex_state = 28, .external_lex_state = 8}, @@ -27245,15 +27254,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7128] = {.lex_state = 20, .external_lex_state = 8}, [7129] = {.lex_state = 20, .external_lex_state = 8}, [7130] = {.lex_state = 20, .external_lex_state = 8}, - [7131] = {.lex_state = 20, .external_lex_state = 8}, + [7131] = {.lex_state = 1, .external_lex_state = 6}, [7132] = {.lex_state = 20, .external_lex_state = 8}, [7133] = {.lex_state = 20, .external_lex_state = 8}, [7134] = {.lex_state = 20, .external_lex_state = 8}, [7135] = {.lex_state = 20, .external_lex_state = 8}, - [7136] = {.lex_state = 20, .external_lex_state = 8}, + [7136] = {.lex_state = 27, .external_lex_state = 8}, [7137] = {.lex_state = 20, .external_lex_state = 8}, [7138] = {.lex_state = 20, .external_lex_state = 8}, - [7139] = {.lex_state = 20, .external_lex_state = 8}, + [7139] = {.lex_state = 27, .external_lex_state = 8}, [7140] = {.lex_state = 20, .external_lex_state = 8}, [7141] = {.lex_state = 20, .external_lex_state = 8}, [7142] = {.lex_state = 20, .external_lex_state = 8}, @@ -27269,7 +27278,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7152] = {.lex_state = 20, .external_lex_state = 8}, [7153] = {.lex_state = 20, .external_lex_state = 8}, [7154] = {.lex_state = 20, .external_lex_state = 8}, - [7155] = {.lex_state = 20, .external_lex_state = 8}, + [7155] = {.lex_state = 1, .external_lex_state = 6}, [7156] = {.lex_state = 20, .external_lex_state = 8}, [7157] = {.lex_state = 20, .external_lex_state = 8}, [7158] = {.lex_state = 20, .external_lex_state = 8}, @@ -27282,13 +27291,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7165] = {.lex_state = 20, .external_lex_state = 8}, [7166] = {.lex_state = 20, .external_lex_state = 8}, [7167] = {.lex_state = 20, .external_lex_state = 8}, - [7168] = {.lex_state = 27, .external_lex_state = 8}, + [7168] = {.lex_state = 20, .external_lex_state = 8}, [7169] = {.lex_state = 20, .external_lex_state = 8}, - [7170] = {.lex_state = 1, .external_lex_state = 6}, + [7170] = {.lex_state = 20, .external_lex_state = 8}, [7171] = {.lex_state = 20, .external_lex_state = 8}, [7172] = {.lex_state = 20, .external_lex_state = 8}, [7173] = {.lex_state = 20, .external_lex_state = 8}, - [7174] = {.lex_state = 27, .external_lex_state = 8}, + [7174] = {.lex_state = 20, .external_lex_state = 8}, [7175] = {.lex_state = 20, .external_lex_state = 8}, [7176] = {.lex_state = 20, .external_lex_state = 8}, [7177] = {.lex_state = 20, .external_lex_state = 8}, @@ -27298,7 +27307,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7181] = {.lex_state = 20, .external_lex_state = 8}, [7182] = {.lex_state = 20, .external_lex_state = 8}, [7183] = {.lex_state = 20, .external_lex_state = 8}, - [7184] = {.lex_state = 1, .external_lex_state = 6}, + [7184] = {.lex_state = 20, .external_lex_state = 8}, [7185] = {.lex_state = 20, .external_lex_state = 8}, [7186] = {.lex_state = 20, .external_lex_state = 8}, [7187] = {.lex_state = 20, .external_lex_state = 8}, @@ -27319,33 +27328,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7202] = {.lex_state = 20, .external_lex_state = 8}, [7203] = {.lex_state = 20, .external_lex_state = 8}, [7204] = {.lex_state = 20, .external_lex_state = 8}, - [7205] = {.lex_state = 20, .external_lex_state = 8}, + [7205] = {.lex_state = 26, .external_lex_state = 8}, [7206] = {.lex_state = 27, .external_lex_state = 8}, [7207] = {.lex_state = 26, .external_lex_state = 8}, [7208] = {.lex_state = 28, .external_lex_state = 8}, - [7209] = {.lex_state = 27, .external_lex_state = 8}, + [7209] = {.lex_state = 26, .external_lex_state = 8}, [7210] = {.lex_state = 27, .external_lex_state = 8}, - [7211] = {.lex_state = 27, .external_lex_state = 8}, - [7212] = {.lex_state = 26, .external_lex_state = 8}, - [7213] = {.lex_state = 27, .external_lex_state = 8}, - [7214] = {.lex_state = 26, .external_lex_state = 8}, + [7211] = {.lex_state = 28, .external_lex_state = 8}, + [7212] = {.lex_state = 27, .external_lex_state = 8}, + [7213] = {.lex_state = 20, .external_lex_state = 8}, + [7214] = {.lex_state = 27, .external_lex_state = 8}, [7215] = {.lex_state = 26, .external_lex_state = 8}, - [7216] = {.lex_state = 28, .external_lex_state = 8}, - [7217] = {.lex_state = 26, .external_lex_state = 8}, + [7216] = {.lex_state = 26, .external_lex_state = 8}, + [7217] = {.lex_state = 27, .external_lex_state = 8}, [7218] = {.lex_state = 20, .external_lex_state = 8}, [7219] = {.lex_state = 20, .external_lex_state = 8}, - [7220] = {.lex_state = 27, .external_lex_state = 8}, + [7220] = {.lex_state = 20, .external_lex_state = 8}, [7221] = {.lex_state = 20, .external_lex_state = 8}, [7222] = {.lex_state = 20, .external_lex_state = 8}, [7223] = {.lex_state = 20, .external_lex_state = 8}, - [7224] = {.lex_state = 20, .external_lex_state = 8}, - [7225] = {.lex_state = 27, .external_lex_state = 8}, + [7224] = {.lex_state = 27, .external_lex_state = 8}, + [7225] = {.lex_state = 20, .external_lex_state = 8}, [7226] = {.lex_state = 20, .external_lex_state = 8}, [7227] = {.lex_state = 20, .external_lex_state = 8}, [7228] = {.lex_state = 20, .external_lex_state = 8}, [7229] = {.lex_state = 20, .external_lex_state = 8}, [7230] = {.lex_state = 27, .external_lex_state = 8}, - [7231] = {.lex_state = 20, .external_lex_state = 8}, + [7231] = {.lex_state = 28, .external_lex_state = 8}, [7232] = {.lex_state = 20, .external_lex_state = 8}, [7233] = {.lex_state = 20, .external_lex_state = 8}, [7234] = {.lex_state = 20, .external_lex_state = 8}, @@ -27354,21 +27363,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7237] = {.lex_state = 20, .external_lex_state = 8}, [7238] = {.lex_state = 20, .external_lex_state = 8}, [7239] = {.lex_state = 20, .external_lex_state = 8}, - [7240] = {.lex_state = 20, .external_lex_state = 8}, + [7240] = {.lex_state = 27, .external_lex_state = 8}, [7241] = {.lex_state = 20, .external_lex_state = 8}, - [7242] = {.lex_state = 28, .external_lex_state = 8}, + [7242] = {.lex_state = 20, .external_lex_state = 8}, [7243] = {.lex_state = 20, .external_lex_state = 8}, [7244] = {.lex_state = 20, .external_lex_state = 8}, [7245] = {.lex_state = 20, .external_lex_state = 8}, [7246] = {.lex_state = 20, .external_lex_state = 8}, - [7247] = {.lex_state = 27, .external_lex_state = 8}, + [7247] = {.lex_state = 20, .external_lex_state = 8}, [7248] = {.lex_state = 20, .external_lex_state = 8}, - [7249] = {.lex_state = 20, .external_lex_state = 8}, - [7250] = {.lex_state = 20, .external_lex_state = 8}, + [7249] = {.lex_state = 27, .external_lex_state = 8}, + [7250] = {.lex_state = 28, .external_lex_state = 8}, [7251] = {.lex_state = 20, .external_lex_state = 8}, [7252] = {.lex_state = 20, .external_lex_state = 8}, [7253] = {.lex_state = 20, .external_lex_state = 8}, - [7254] = {.lex_state = 20, .external_lex_state = 8}, + [7254] = {.lex_state = 27, .external_lex_state = 8}, [7255] = {.lex_state = 20, .external_lex_state = 8}, [7256] = {.lex_state = 20, .external_lex_state = 8}, [7257] = {.lex_state = 20, .external_lex_state = 8}, @@ -27384,18 +27393,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7267] = {.lex_state = 20, .external_lex_state = 8}, [7268] = {.lex_state = 20, .external_lex_state = 8}, [7269] = {.lex_state = 20, .external_lex_state = 8}, - [7270] = {.lex_state = 28, .external_lex_state = 8}, - [7271] = {.lex_state = 27, .external_lex_state = 8}, + [7270] = {.lex_state = 20, .external_lex_state = 8}, + [7271] = {.lex_state = 20, .external_lex_state = 8}, [7272] = {.lex_state = 20, .external_lex_state = 8}, [7273] = {.lex_state = 20, .external_lex_state = 8}, - [7274] = {.lex_state = 27, .external_lex_state = 8}, + [7274] = {.lex_state = 26, .external_lex_state = 8}, [7275] = {.lex_state = 20, .external_lex_state = 8}, [7276] = {.lex_state = 20, .external_lex_state = 8}, [7277] = {.lex_state = 20, .external_lex_state = 8}, - [7278] = {.lex_state = 27, .external_lex_state = 8}, - [7279] = {.lex_state = 27, .external_lex_state = 8}, + [7278] = {.lex_state = 20, .external_lex_state = 8}, + [7279] = {.lex_state = 20, .external_lex_state = 8}, [7280] = {.lex_state = 20, .external_lex_state = 8}, - [7281] = {.lex_state = 26, .external_lex_state = 8}, + [7281] = {.lex_state = 20, .external_lex_state = 8}, [7282] = {.lex_state = 20, .external_lex_state = 8}, [7283] = {.lex_state = 20, .external_lex_state = 8}, [7284] = {.lex_state = 20, .external_lex_state = 8}, @@ -27404,35 +27413,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7287] = {.lex_state = 20, .external_lex_state = 8}, [7288] = {.lex_state = 27, .external_lex_state = 8}, [7289] = {.lex_state = 20, .external_lex_state = 8}, - [7290] = {.lex_state = 27, .external_lex_state = 8}, + [7290] = {.lex_state = 20, .external_lex_state = 8}, [7291] = {.lex_state = 20, .external_lex_state = 8}, [7292] = {.lex_state = 20, .external_lex_state = 8}, [7293] = {.lex_state = 20, .external_lex_state = 8}, [7294] = {.lex_state = 20, .external_lex_state = 8}, - [7295] = {.lex_state = 27, .external_lex_state = 8}, - [7296] = {.lex_state = 20, .external_lex_state = 8}, + [7295] = {.lex_state = 20, .external_lex_state = 8}, + [7296] = {.lex_state = 26, .external_lex_state = 8}, [7297] = {.lex_state = 20, .external_lex_state = 8}, [7298] = {.lex_state = 20, .external_lex_state = 8}, - [7299] = {.lex_state = 20, .external_lex_state = 8}, - [7300] = {.lex_state = 28, .external_lex_state = 8}, + [7299] = {.lex_state = 28, .external_lex_state = 8}, + [7300] = {.lex_state = 20, .external_lex_state = 8}, [7301] = {.lex_state = 20, .external_lex_state = 8}, - [7302] = {.lex_state = 20, .external_lex_state = 8}, + [7302] = {.lex_state = 28, .external_lex_state = 8}, [7303] = {.lex_state = 20, .external_lex_state = 8}, [7304] = {.lex_state = 20, .external_lex_state = 8}, [7305] = {.lex_state = 20, .external_lex_state = 8}, [7306] = {.lex_state = 20, .external_lex_state = 8}, [7307] = {.lex_state = 20, .external_lex_state = 8}, - [7308] = {.lex_state = 28, .external_lex_state = 8}, - [7309] = {.lex_state = 20, .external_lex_state = 8}, + [7308] = {.lex_state = 20, .external_lex_state = 8}, + [7309] = {.lex_state = 27, .external_lex_state = 8}, [7310] = {.lex_state = 20, .external_lex_state = 8}, [7311] = {.lex_state = 20, .external_lex_state = 8}, [7312] = {.lex_state = 20, .external_lex_state = 8}, [7313] = {.lex_state = 20, .external_lex_state = 8}, - [7314] = {.lex_state = 27, .external_lex_state = 8}, + [7314] = {.lex_state = 20, .external_lex_state = 8}, [7315] = {.lex_state = 20, .external_lex_state = 8}, - [7316] = {.lex_state = 28, .external_lex_state = 8}, + [7316] = {.lex_state = 20, .external_lex_state = 8}, [7317] = {.lex_state = 20, .external_lex_state = 8}, - [7318] = {.lex_state = 20, .external_lex_state = 8}, + [7318] = {.lex_state = 28, .external_lex_state = 8}, [7319] = {.lex_state = 20, .external_lex_state = 8}, [7320] = {.lex_state = 20, .external_lex_state = 8}, [7321] = {.lex_state = 20, .external_lex_state = 8}, @@ -27442,38 +27451,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7325] = {.lex_state = 20, .external_lex_state = 8}, [7326] = {.lex_state = 20, .external_lex_state = 8}, [7327] = {.lex_state = 28, .external_lex_state = 8}, - [7328] = {.lex_state = 20, .external_lex_state = 8}, + [7328] = {.lex_state = 27, .external_lex_state = 8}, [7329] = {.lex_state = 20, .external_lex_state = 8}, [7330] = {.lex_state = 20, .external_lex_state = 8}, [7331] = {.lex_state = 20, .external_lex_state = 8}, [7332] = {.lex_state = 20, .external_lex_state = 8}, [7333] = {.lex_state = 27, .external_lex_state = 8}, [7334] = {.lex_state = 20, .external_lex_state = 8}, - [7335] = {.lex_state = 27, .external_lex_state = 8}, - [7336] = {.lex_state = 28, .external_lex_state = 8}, + [7335] = {.lex_state = 20, .external_lex_state = 8}, + [7336] = {.lex_state = 20, .external_lex_state = 8}, [7337] = {.lex_state = 20, .external_lex_state = 8}, [7338] = {.lex_state = 27, .external_lex_state = 8}, [7339] = {.lex_state = 20, .external_lex_state = 8}, - [7340] = {.lex_state = 20, .external_lex_state = 8}, + [7340] = {.lex_state = 27, .external_lex_state = 8}, [7341] = {.lex_state = 20, .external_lex_state = 8}, - [7342] = {.lex_state = 20, .external_lex_state = 8}, - [7343] = {.lex_state = 20, .external_lex_state = 8}, - [7344] = {.lex_state = 20, .external_lex_state = 8}, + [7342] = {.lex_state = 27, .external_lex_state = 8}, + [7343] = {.lex_state = 27, .external_lex_state = 8}, + [7344] = {.lex_state = 27, .external_lex_state = 8}, [7345] = {.lex_state = 20, .external_lex_state = 8}, [7346] = {.lex_state = 20, .external_lex_state = 8}, [7347] = {.lex_state = 20, .external_lex_state = 8}, - [7348] = {.lex_state = 20, .external_lex_state = 8}, + [7348] = {.lex_state = 28, .external_lex_state = 8}, [7349] = {.lex_state = 20, .external_lex_state = 8}, [7350] = {.lex_state = 20, .external_lex_state = 8}, [7351] = {.lex_state = 27, .external_lex_state = 8}, - [7352] = {.lex_state = 26, .external_lex_state = 8}, + [7352] = {.lex_state = 27, .external_lex_state = 8}, [7353] = {.lex_state = 20, .external_lex_state = 8}, - [7354] = {.lex_state = 20, .external_lex_state = 8}, + [7354] = {.lex_state = 26, .external_lex_state = 8}, [7355] = {.lex_state = 20, .external_lex_state = 8}, [7356] = {.lex_state = 20, .external_lex_state = 8}, [7357] = {.lex_state = 20, .external_lex_state = 8}, [7358] = {.lex_state = 20, .external_lex_state = 8}, - [7359] = {.lex_state = 28, .external_lex_state = 8}, + [7359] = {.lex_state = 20, .external_lex_state = 8}, [7360] = {.lex_state = 20, .external_lex_state = 8}, [7361] = {.lex_state = 20, .external_lex_state = 8}, [7362] = {.lex_state = 20, .external_lex_state = 8}, @@ -27512,11 +27521,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7395] = {.lex_state = 20, .external_lex_state = 8}, [7396] = {.lex_state = 20, .external_lex_state = 8}, [7397] = {.lex_state = 20, .external_lex_state = 8}, - [7398] = {.lex_state = 26, .external_lex_state = 8}, + [7398] = {.lex_state = 20, .external_lex_state = 8}, [7399] = {.lex_state = 20, .external_lex_state = 8}, [7400] = {.lex_state = 20, .external_lex_state = 8}, [7401] = {.lex_state = 20, .external_lex_state = 8}, - [7402] = {.lex_state = 20, .external_lex_state = 8}, + [7402] = {.lex_state = 28, .external_lex_state = 8}, [7403] = {.lex_state = 20, .external_lex_state = 8}, [7404] = {.lex_state = 20, .external_lex_state = 8}, [7405] = {.lex_state = 20, .external_lex_state = 8}, @@ -27538,7 +27547,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7421] = {.lex_state = 20, .external_lex_state = 8}, [7422] = {.lex_state = 20, .external_lex_state = 8}, [7423] = {.lex_state = 20, .external_lex_state = 8}, - [7424] = {.lex_state = 20, .external_lex_state = 8}, + [7424] = {.lex_state = 20, .external_lex_state = 9}, [7425] = {.lex_state = 20, .external_lex_state = 8}, [7426] = {.lex_state = 20, .external_lex_state = 8}, [7427] = {.lex_state = 20, .external_lex_state = 8}, @@ -27557,11 +27566,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7440] = {.lex_state = 20, .external_lex_state = 8}, [7441] = {.lex_state = 20, .external_lex_state = 8}, [7442] = {.lex_state = 20, .external_lex_state = 8}, - [7443] = {.lex_state = 28, .external_lex_state = 8}, + [7443] = {.lex_state = 20, .external_lex_state = 8}, [7444] = {.lex_state = 20, .external_lex_state = 8}, [7445] = {.lex_state = 20, .external_lex_state = 8}, [7446] = {.lex_state = 20, .external_lex_state = 8}, - [7447] = {.lex_state = 20, .external_lex_state = 8}, + [7447] = {.lex_state = 26, .external_lex_state = 8}, [7448] = {.lex_state = 20, .external_lex_state = 8}, [7449] = {.lex_state = 20, .external_lex_state = 8}, [7450] = {.lex_state = 20, .external_lex_state = 8}, @@ -27573,10 +27582,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7456] = {.lex_state = 20, .external_lex_state = 8}, [7457] = {.lex_state = 20, .external_lex_state = 8}, [7458] = {.lex_state = 20, .external_lex_state = 8}, - [7459] = {.lex_state = 20, .external_lex_state = 8}, + [7459] = {.lex_state = 26, .external_lex_state = 8}, [7460] = {.lex_state = 20, .external_lex_state = 8}, - [7461] = {.lex_state = 20, .external_lex_state = 8}, - [7462] = {.lex_state = 28, .external_lex_state = 8}, + [7461] = {.lex_state = 26, .external_lex_state = 8}, + [7462] = {.lex_state = 20, .external_lex_state = 8}, [7463] = {.lex_state = 20, .external_lex_state = 8}, [7464] = {.lex_state = 20, .external_lex_state = 8}, [7465] = {.lex_state = 20, .external_lex_state = 8}, @@ -27593,7 +27602,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7476] = {.lex_state = 20, .external_lex_state = 8}, [7477] = {.lex_state = 20, .external_lex_state = 8}, [7478] = {.lex_state = 20, .external_lex_state = 8}, - [7479] = {.lex_state = 28, .external_lex_state = 8}, + [7479] = {.lex_state = 20, .external_lex_state = 8}, [7480] = {.lex_state = 20, .external_lex_state = 8}, [7481] = {.lex_state = 20, .external_lex_state = 8}, [7482] = {.lex_state = 20, .external_lex_state = 8}, @@ -27609,13 +27618,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7492] = {.lex_state = 20, .external_lex_state = 8}, [7493] = {.lex_state = 20, .external_lex_state = 8}, [7494] = {.lex_state = 20, .external_lex_state = 8}, - [7495] = {.lex_state = 20, .external_lex_state = 8}, + [7495] = {.lex_state = 28, .external_lex_state = 8}, [7496] = {.lex_state = 20, .external_lex_state = 8}, [7497] = {.lex_state = 20, .external_lex_state = 8}, [7498] = {.lex_state = 20, .external_lex_state = 8}, [7499] = {.lex_state = 20, .external_lex_state = 8}, - [7500] = {.lex_state = 20, .external_lex_state = 9}, - [7501] = {.lex_state = 26, .external_lex_state = 8}, + [7500] = {.lex_state = 20, .external_lex_state = 8}, + [7501] = {.lex_state = 20, .external_lex_state = 8}, [7502] = {.lex_state = 20, .external_lex_state = 8}, [7503] = {.lex_state = 20, .external_lex_state = 8}, [7504] = {.lex_state = 20, .external_lex_state = 8}, @@ -27624,7 +27633,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7507] = {.lex_state = 20, .external_lex_state = 8}, [7508] = {.lex_state = 20, .external_lex_state = 8}, [7509] = {.lex_state = 20, .external_lex_state = 8}, - [7510] = {.lex_state = 20, .external_lex_state = 8}, + [7510] = {.lex_state = 28, .external_lex_state = 8}, [7511] = {.lex_state = 20, .external_lex_state = 8}, [7512] = {.lex_state = 20, .external_lex_state = 8}, [7513] = {.lex_state = 20, .external_lex_state = 8}, @@ -27648,11 +27657,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7531] = {.lex_state = 20, .external_lex_state = 8}, [7532] = {.lex_state = 20, .external_lex_state = 8}, [7533] = {.lex_state = 20, .external_lex_state = 8}, - [7534] = {.lex_state = 20, .external_lex_state = 8}, + [7534] = {.lex_state = 28, .external_lex_state = 8}, [7535] = {.lex_state = 20, .external_lex_state = 8}, [7536] = {.lex_state = 20, .external_lex_state = 8}, [7537] = {.lex_state = 20, .external_lex_state = 8}, - [7538] = {.lex_state = 20, .external_lex_state = 8}, + [7538] = {.lex_state = 28, .external_lex_state = 8}, [7539] = {.lex_state = 20, .external_lex_state = 8}, [7540] = {.lex_state = 20, .external_lex_state = 8}, [7541] = {.lex_state = 20, .external_lex_state = 8}, @@ -27663,7 +27672,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7546] = {.lex_state = 20, .external_lex_state = 8}, [7547] = {.lex_state = 20, .external_lex_state = 8}, [7548] = {.lex_state = 20, .external_lex_state = 8}, - [7549] = {.lex_state = 28, .external_lex_state = 8}, + [7549] = {.lex_state = 20, .external_lex_state = 8}, [7550] = {.lex_state = 20, .external_lex_state = 8}, [7551] = {.lex_state = 20, .external_lex_state = 8}, [7552] = {.lex_state = 20, .external_lex_state = 8}, @@ -27673,35 +27682,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7556] = {.lex_state = 20, .external_lex_state = 8}, [7557] = {.lex_state = 20, .external_lex_state = 8}, [7558] = {.lex_state = 20, .external_lex_state = 8}, - [7559] = {.lex_state = 20, .external_lex_state = 8}, + [7559] = {.lex_state = 26, .external_lex_state = 8}, [7560] = {.lex_state = 20, .external_lex_state = 8}, [7561] = {.lex_state = 20, .external_lex_state = 8}, [7562] = {.lex_state = 20, .external_lex_state = 8}, [7563] = {.lex_state = 20, .external_lex_state = 8}, [7564] = {.lex_state = 20, .external_lex_state = 8}, [7565] = {.lex_state = 20, .external_lex_state = 8}, - [7566] = {.lex_state = 26, .external_lex_state = 8}, + [7566] = {.lex_state = 20, .external_lex_state = 8}, [7567] = {.lex_state = 20, .external_lex_state = 8}, [7568] = {.lex_state = 20, .external_lex_state = 8}, [7569] = {.lex_state = 20, .external_lex_state = 8}, - [7570] = {.lex_state = 20, .external_lex_state = 9}, - [7571] = {.lex_state = 26, .external_lex_state = 8}, + [7570] = {.lex_state = 20, .external_lex_state = 8}, + [7571] = {.lex_state = 20, .external_lex_state = 8}, [7572] = {.lex_state = 20, .external_lex_state = 8}, - [7573] = {.lex_state = 20, .external_lex_state = 8}, - [7574] = {.lex_state = 20, .external_lex_state = 8}, + [7573] = {.lex_state = 20, .external_lex_state = 9}, + [7574] = {.lex_state = 26, .external_lex_state = 8}, [7575] = {.lex_state = 20, .external_lex_state = 8}, [7576] = {.lex_state = 20, .external_lex_state = 8}, [7577] = {.lex_state = 20, .external_lex_state = 8}, [7578] = {.lex_state = 20, .external_lex_state = 8}, [7579] = {.lex_state = 20, .external_lex_state = 8}, [7580] = {.lex_state = 20, .external_lex_state = 8}, - [7581] = {.lex_state = 26, .external_lex_state = 8}, + [7581] = {.lex_state = 20, .external_lex_state = 8}, [7582] = {.lex_state = 20, .external_lex_state = 8}, [7583] = {.lex_state = 20, .external_lex_state = 8}, [7584] = {.lex_state = 20, .external_lex_state = 8}, [7585] = {.lex_state = 20, .external_lex_state = 8}, [7586] = {.lex_state = 20, .external_lex_state = 8}, - [7587] = {.lex_state = 26, .external_lex_state = 8}, + [7587] = {.lex_state = 20, .external_lex_state = 8}, [7588] = {.lex_state = 20, .external_lex_state = 8}, [7589] = {.lex_state = 20, .external_lex_state = 8}, [7590] = {.lex_state = 20, .external_lex_state = 8}, @@ -27717,17 +27726,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7600] = {.lex_state = 20, .external_lex_state = 8}, [7601] = {.lex_state = 20, .external_lex_state = 8}, [7602] = {.lex_state = 20, .external_lex_state = 8}, - [7603] = {.lex_state = 20, .external_lex_state = 8}, + [7603] = {.lex_state = 26, .external_lex_state = 8}, [7604] = {.lex_state = 20, .external_lex_state = 8}, [7605] = {.lex_state = 20, .external_lex_state = 8}, [7606] = {.lex_state = 20, .external_lex_state = 8}, - [7607] = {.lex_state = 20, .external_lex_state = 8}, + [7607] = {.lex_state = 26, .external_lex_state = 8}, [7608] = {.lex_state = 20, .external_lex_state = 8}, - [7609] = {.lex_state = 20, .external_lex_state = 8}, + [7609] = {.lex_state = 26, .external_lex_state = 8}, [7610] = {.lex_state = 20, .external_lex_state = 8}, [7611] = {.lex_state = 20, .external_lex_state = 8}, [7612] = {.lex_state = 20, .external_lex_state = 8}, - [7613] = {.lex_state = 20, .external_lex_state = 8}, + [7613] = {.lex_state = 26, .external_lex_state = 8}, [7614] = {.lex_state = 20, .external_lex_state = 8}, [7615] = {.lex_state = 20, .external_lex_state = 8}, [7616] = {.lex_state = 20, .external_lex_state = 8}, @@ -27735,7 +27744,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7618] = {.lex_state = 20, .external_lex_state = 8}, [7619] = {.lex_state = 20, .external_lex_state = 8}, [7620] = {.lex_state = 20, .external_lex_state = 8}, - [7621] = {.lex_state = 26, .external_lex_state = 8}, + [7621] = {.lex_state = 20, .external_lex_state = 8}, [7622] = {.lex_state = 20, .external_lex_state = 8}, [7623] = {.lex_state = 20, .external_lex_state = 8}, [7624] = {.lex_state = 20, .external_lex_state = 8}, @@ -27782,12 +27791,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7665] = {.lex_state = 20, .external_lex_state = 8}, [7666] = {.lex_state = 20, .external_lex_state = 8}, [7667] = {.lex_state = 20, .external_lex_state = 8}, - [7668] = {.lex_state = 26, .external_lex_state = 8}, + [7668] = {.lex_state = 20, .external_lex_state = 8}, [7669] = {.lex_state = 20, .external_lex_state = 8}, [7670] = {.lex_state = 20, .external_lex_state = 8}, [7671] = {.lex_state = 20, .external_lex_state = 8}, [7672] = {.lex_state = 20, .external_lex_state = 8}, - [7673] = {.lex_state = 26, .external_lex_state = 8}, + [7673] = {.lex_state = 20, .external_lex_state = 8}, [7674] = {.lex_state = 20, .external_lex_state = 8}, [7675] = {.lex_state = 20, .external_lex_state = 8}, [7676] = {.lex_state = 20, .external_lex_state = 8}, @@ -27816,14 +27825,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7699] = {.lex_state = 20, .external_lex_state = 8}, [7700] = {.lex_state = 20, .external_lex_state = 8}, [7701] = {.lex_state = 20, .external_lex_state = 8}, - [7702] = {.lex_state = 26, .external_lex_state = 8}, + [7702] = {.lex_state = 20, .external_lex_state = 8}, [7703] = {.lex_state = 20, .external_lex_state = 8}, [7704] = {.lex_state = 20, .external_lex_state = 8}, [7705] = {.lex_state = 20, .external_lex_state = 8}, [7706] = {.lex_state = 20, .external_lex_state = 8}, [7707] = {.lex_state = 20, .external_lex_state = 8}, [7708] = {.lex_state = 20, .external_lex_state = 8}, - [7709] = {.lex_state = 20, .external_lex_state = 8}, + [7709] = {.lex_state = 26, .external_lex_state = 8}, [7710] = {.lex_state = 20, .external_lex_state = 8}, [7711] = {.lex_state = 20, .external_lex_state = 8}, [7712] = {.lex_state = 20, .external_lex_state = 8}, @@ -27847,14 +27856,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7730] = {.lex_state = 20, .external_lex_state = 8}, [7731] = {.lex_state = 20, .external_lex_state = 8}, [7732] = {.lex_state = 20, .external_lex_state = 8}, - [7733] = {.lex_state = 20, .external_lex_state = 8}, + [7733] = {.lex_state = 26, .external_lex_state = 8}, [7734] = {.lex_state = 20, .external_lex_state = 8}, [7735] = {.lex_state = 20, .external_lex_state = 8}, [7736] = {.lex_state = 20, .external_lex_state = 8}, [7737] = {.lex_state = 20, .external_lex_state = 8}, [7738] = {.lex_state = 20, .external_lex_state = 8}, [7739] = {.lex_state = 20, .external_lex_state = 8}, - [7740] = {.lex_state = 26, .external_lex_state = 8}, + [7740] = {.lex_state = 20, .external_lex_state = 8}, [7741] = {.lex_state = 20, .external_lex_state = 8}, [7742] = {.lex_state = 20, .external_lex_state = 8}, [7743] = {.lex_state = 20, .external_lex_state = 8}, @@ -27901,7 +27910,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7784] = {.lex_state = 20, .external_lex_state = 8}, [7785] = {.lex_state = 20, .external_lex_state = 8}, [7786] = {.lex_state = 20, .external_lex_state = 8}, - [7787] = {.lex_state = 20, .external_lex_state = 8}, + [7787] = {.lex_state = 26, .external_lex_state = 8}, [7788] = {.lex_state = 20, .external_lex_state = 8}, [7789] = {.lex_state = 20, .external_lex_state = 8}, [7790] = {.lex_state = 20, .external_lex_state = 8}, @@ -27914,7 +27923,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7797] = {.lex_state = 20, .external_lex_state = 8}, [7798] = {.lex_state = 20, .external_lex_state = 8}, [7799] = {.lex_state = 20, .external_lex_state = 8}, - [7800] = {.lex_state = 26, .external_lex_state = 8}, + [7800] = {.lex_state = 20, .external_lex_state = 8}, [7801] = {.lex_state = 20, .external_lex_state = 8}, [7802] = {.lex_state = 20, .external_lex_state = 8}, [7803] = {.lex_state = 20, .external_lex_state = 8}, @@ -27948,35 +27957,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7831] = {.lex_state = 20, .external_lex_state = 8}, [7832] = {.lex_state = 20, .external_lex_state = 8}, [7833] = {.lex_state = 20, .external_lex_state = 8}, - [7834] = {.lex_state = 28, .external_lex_state = 8}, + [7834] = {.lex_state = 20, .external_lex_state = 8}, [7835] = {.lex_state = 20, .external_lex_state = 8}, - [7836] = {.lex_state = 28, .external_lex_state = 8}, + [7836] = {.lex_state = 26, .external_lex_state = 8}, [7837] = {.lex_state = 28, .external_lex_state = 8}, - [7838] = {.lex_state = 26, .external_lex_state = 8}, + [7838] = {.lex_state = 28, .external_lex_state = 8}, [7839] = {.lex_state = 28, .external_lex_state = 8}, [7840] = {.lex_state = 28, .external_lex_state = 8}, - [7841] = {.lex_state = 28, .external_lex_state = 8}, - [7842] = {.lex_state = 26, .external_lex_state = 8}, + [7841] = {.lex_state = 33, .external_lex_state = 8}, + [7842] = {.lex_state = 28, .external_lex_state = 8}, [7843] = {.lex_state = 26, .external_lex_state = 8}, [7844] = {.lex_state = 26, .external_lex_state = 8}, - [7845] = {.lex_state = 20, .external_lex_state = 8}, - [7846] = {.lex_state = 20, .external_lex_state = 8}, - [7847] = {.lex_state = 20, .external_lex_state = 8}, - [7848] = {.lex_state = 20, .external_lex_state = 8}, + [7845] = {.lex_state = 26, .external_lex_state = 8}, + [7846] = {.lex_state = 28, .external_lex_state = 8}, + [7847] = {.lex_state = 26, .external_lex_state = 8}, + [7848] = {.lex_state = 28, .external_lex_state = 8}, [7849] = {.lex_state = 20, .external_lex_state = 8}, - [7850] = {.lex_state = 26, .external_lex_state = 8}, - [7851] = {.lex_state = 26, .external_lex_state = 8}, - [7852] = {.lex_state = 26, .external_lex_state = 8}, + [7850] = {.lex_state = 20, .external_lex_state = 8}, + [7851] = {.lex_state = 28, .external_lex_state = 8}, + [7852] = {.lex_state = 20, .external_lex_state = 8}, [7853] = {.lex_state = 26, .external_lex_state = 8}, - [7854] = {.lex_state = 28, .external_lex_state = 8}, - [7855] = {.lex_state = 26, .external_lex_state = 8}, - [7856] = {.lex_state = 28, .external_lex_state = 8}, - [7857] = {.lex_state = 28, .external_lex_state = 8}, - [7858] = {.lex_state = 26, .external_lex_state = 8}, - [7859] = {.lex_state = 28, .external_lex_state = 8}, - [7860] = {.lex_state = 28, .external_lex_state = 8}, - [7861] = {.lex_state = 22, .external_lex_state = 9}, - [7862] = {.lex_state = 20, .external_lex_state = 8}, + [7854] = {.lex_state = 26, .external_lex_state = 8}, + [7855] = {.lex_state = 28, .external_lex_state = 8}, + [7856] = {.lex_state = 26, .external_lex_state = 8}, + [7857] = {.lex_state = 26, .external_lex_state = 8}, + [7858] = {.lex_state = 28, .external_lex_state = 8}, + [7859] = {.lex_state = 20, .external_lex_state = 8}, + [7860] = {.lex_state = 20, .external_lex_state = 8}, + [7861] = {.lex_state = 28, .external_lex_state = 8}, + [7862] = {.lex_state = 26, .external_lex_state = 8}, [7863] = {.lex_state = 20, .external_lex_state = 8}, [7864] = {.lex_state = 20, .external_lex_state = 8}, [7865] = {.lex_state = 20, .external_lex_state = 8}, @@ -28005,7 +28014,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7888] = {.lex_state = 20, .external_lex_state = 8}, [7889] = {.lex_state = 20, .external_lex_state = 8}, [7890] = {.lex_state = 20, .external_lex_state = 8}, - [7891] = {.lex_state = 20, .external_lex_state = 8}, + [7891] = {.lex_state = 22, .external_lex_state = 9}, [7892] = {.lex_state = 20, .external_lex_state = 8}, [7893] = {.lex_state = 20, .external_lex_state = 8}, [7894] = {.lex_state = 20, .external_lex_state = 8}, @@ -28021,13 +28030,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7904] = {.lex_state = 20, .external_lex_state = 8}, [7905] = {.lex_state = 20, .external_lex_state = 8}, [7906] = {.lex_state = 20, .external_lex_state = 8}, - [7907] = {.lex_state = 22, .external_lex_state = 9}, + [7907] = {.lex_state = 20, .external_lex_state = 8}, [7908] = {.lex_state = 20, .external_lex_state = 8}, - [7909] = {.lex_state = 20, .external_lex_state = 8}, + [7909] = {.lex_state = 22, .external_lex_state = 9}, [7910] = {.lex_state = 20, .external_lex_state = 8}, [7911] = {.lex_state = 20, .external_lex_state = 8}, [7912] = {.lex_state = 20, .external_lex_state = 8}, - [7913] = {.lex_state = 22, .external_lex_state = 9}, + [7913] = {.lex_state = 20, .external_lex_state = 8}, [7914] = {.lex_state = 20, .external_lex_state = 8}, [7915] = {.lex_state = 20, .external_lex_state = 8}, [7916] = {.lex_state = 20, .external_lex_state = 8}, @@ -28047,7 +28056,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7930] = {.lex_state = 20, .external_lex_state = 8}, [7931] = {.lex_state = 20, .external_lex_state = 8}, [7932] = {.lex_state = 20, .external_lex_state = 8}, - [7933] = {.lex_state = 22, .external_lex_state = 8}, + [7933] = {.lex_state = 20, .external_lex_state = 8}, [7934] = {.lex_state = 20, .external_lex_state = 8}, [7935] = {.lex_state = 20, .external_lex_state = 8}, [7936] = {.lex_state = 20, .external_lex_state = 8}, @@ -28064,7 +28073,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7947] = {.lex_state = 20, .external_lex_state = 8}, [7948] = {.lex_state = 20, .external_lex_state = 8}, [7949] = {.lex_state = 20, .external_lex_state = 8}, - [7950] = {.lex_state = 20, .external_lex_state = 8}, + [7950] = {.lex_state = 22, .external_lex_state = 8}, [7951] = {.lex_state = 20, .external_lex_state = 8}, [7952] = {.lex_state = 20, .external_lex_state = 8}, [7953] = {.lex_state = 20, .external_lex_state = 8}, @@ -28086,7 +28095,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7969] = {.lex_state = 20, .external_lex_state = 8}, [7970] = {.lex_state = 20, .external_lex_state = 8}, [7971] = {.lex_state = 20, .external_lex_state = 8}, - [7972] = {.lex_state = 20, .external_lex_state = 8}, + [7972] = {.lex_state = 22, .external_lex_state = 9}, [7973] = {.lex_state = 20, .external_lex_state = 8}, [7974] = {.lex_state = 20, .external_lex_state = 8}, [7975] = {.lex_state = 20, .external_lex_state = 8}, @@ -28126,7 +28135,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8009] = {.lex_state = 20, .external_lex_state = 8}, [8010] = {.lex_state = 20, .external_lex_state = 8}, [8011] = {.lex_state = 20, .external_lex_state = 8}, - [8012] = {.lex_state = 33, .external_lex_state = 8}, + [8012] = {.lex_state = 20, .external_lex_state = 8}, [8013] = {.lex_state = 20, .external_lex_state = 8}, [8014] = {.lex_state = 20, .external_lex_state = 8}, [8015] = {.lex_state = 20, .external_lex_state = 8}, @@ -28137,14 +28146,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8020] = {.lex_state = 20, .external_lex_state = 8}, [8021] = {.lex_state = 20, .external_lex_state = 8}, [8022] = {.lex_state = 20, .external_lex_state = 8}, - [8023] = {.lex_state = 20, .external_lex_state = 8}, - [8024] = {.lex_state = 20, .external_lex_state = 8}, + [8023] = {.lex_state = 33, .external_lex_state = 8}, + [8024] = {.lex_state = 22, .external_lex_state = 8}, [8025] = {.lex_state = 20, .external_lex_state = 8}, - [8026] = {.lex_state = 22, .external_lex_state = 8}, + [8026] = {.lex_state = 20, .external_lex_state = 8}, [8027] = {.lex_state = 20, .external_lex_state = 8}, [8028] = {.lex_state = 20, .external_lex_state = 8}, [8029] = {.lex_state = 20, .external_lex_state = 8}, - [8030] = {.lex_state = 20, .external_lex_state = 8}, + [8030] = {.lex_state = 13, .external_lex_state = 8}, [8031] = {.lex_state = 20, .external_lex_state = 8}, [8032] = {.lex_state = 20, .external_lex_state = 8}, [8033] = {.lex_state = 20, .external_lex_state = 8}, @@ -28160,7 +28169,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8043] = {.lex_state = 20, .external_lex_state = 8}, [8044] = {.lex_state = 20, .external_lex_state = 8}, [8045] = {.lex_state = 20, .external_lex_state = 8}, - [8046] = {.lex_state = 20, .external_lex_state = 8}, + [8046] = {.lex_state = 33, .external_lex_state = 8}, [8047] = {.lex_state = 20, .external_lex_state = 8}, [8048] = {.lex_state = 20, .external_lex_state = 8}, [8049] = {.lex_state = 20, .external_lex_state = 8}, @@ -28172,7 +28181,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8055] = {.lex_state = 20, .external_lex_state = 8}, [8056] = {.lex_state = 20, .external_lex_state = 8}, [8057] = {.lex_state = 20, .external_lex_state = 8}, - [8058] = {.lex_state = 20, .external_lex_state = 8}, + [8058] = {.lex_state = 33, .external_lex_state = 8}, [8059] = {.lex_state = 20, .external_lex_state = 8}, [8060] = {.lex_state = 20, .external_lex_state = 8}, [8061] = {.lex_state = 20, .external_lex_state = 8}, @@ -28184,10 +28193,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8067] = {.lex_state = 20, .external_lex_state = 8}, [8068] = {.lex_state = 20, .external_lex_state = 8}, [8069] = {.lex_state = 20, .external_lex_state = 8}, - [8070] = {.lex_state = 22, .external_lex_state = 8}, + [8070] = {.lex_state = 33, .external_lex_state = 8}, [8071] = {.lex_state = 20, .external_lex_state = 8}, [8072] = {.lex_state = 20, .external_lex_state = 8}, - [8073] = {.lex_state = 20, .external_lex_state = 8}, + [8073] = {.lex_state = 33, .external_lex_state = 8}, [8074] = {.lex_state = 20, .external_lex_state = 8}, [8075] = {.lex_state = 20, .external_lex_state = 8}, [8076] = {.lex_state = 20, .external_lex_state = 8}, @@ -28198,13 +28207,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8081] = {.lex_state = 20, .external_lex_state = 8}, [8082] = {.lex_state = 20, .external_lex_state = 8}, [8083] = {.lex_state = 20, .external_lex_state = 8}, - [8084] = {.lex_state = 20, .external_lex_state = 8}, + [8084] = {.lex_state = 22, .external_lex_state = 8}, [8085] = {.lex_state = 20, .external_lex_state = 8}, [8086] = {.lex_state = 20, .external_lex_state = 8}, [8087] = {.lex_state = 20, .external_lex_state = 8}, - [8088] = {.lex_state = 20, .external_lex_state = 8}, + [8088] = {.lex_state = 33, .external_lex_state = 8}, [8089] = {.lex_state = 20, .external_lex_state = 8}, - [8090] = {.lex_state = 20, .external_lex_state = 8}, + [8090] = {.lex_state = 33, .external_lex_state = 8}, [8091] = {.lex_state = 20, .external_lex_state = 8}, [8092] = {.lex_state = 20, .external_lex_state = 8}, [8093] = {.lex_state = 20, .external_lex_state = 8}, @@ -28215,21 +28224,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8098] = {.lex_state = 20, .external_lex_state = 8}, [8099] = {.lex_state = 20, .external_lex_state = 8}, [8100] = {.lex_state = 20, .external_lex_state = 8}, - [8101] = {.lex_state = 20, .external_lex_state = 8}, + [8101] = {.lex_state = 33, .external_lex_state = 8}, [8102] = {.lex_state = 20, .external_lex_state = 8}, [8103] = {.lex_state = 20, .external_lex_state = 8}, [8104] = {.lex_state = 20, .external_lex_state = 8}, - [8105] = {.lex_state = 20, .external_lex_state = 8}, + [8105] = {.lex_state = 33, .external_lex_state = 8}, [8106] = {.lex_state = 20, .external_lex_state = 8}, [8107] = {.lex_state = 20, .external_lex_state = 8}, - [8108] = {.lex_state = 20, .external_lex_state = 8}, - [8109] = {.lex_state = 20, .external_lex_state = 8}, + [8108] = {.lex_state = 13, .external_lex_state = 8}, + [8109] = {.lex_state = 22, .external_lex_state = 8}, [8110] = {.lex_state = 20, .external_lex_state = 8}, [8111] = {.lex_state = 20, .external_lex_state = 8}, [8112] = {.lex_state = 20, .external_lex_state = 8}, [8113] = {.lex_state = 20, .external_lex_state = 8}, [8114] = {.lex_state = 20, .external_lex_state = 8}, - [8115] = {.lex_state = 20, .external_lex_state = 8}, + [8115] = {.lex_state = 22, .external_lex_state = 8}, [8116] = {.lex_state = 20, .external_lex_state = 8}, [8117] = {.lex_state = 20, .external_lex_state = 8}, [8118] = {.lex_state = 20, .external_lex_state = 8}, @@ -28239,32 +28248,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8122] = {.lex_state = 20, .external_lex_state = 8}, [8123] = {.lex_state = 20, .external_lex_state = 8}, [8124] = {.lex_state = 20, .external_lex_state = 8}, - [8125] = {.lex_state = 13, .external_lex_state = 8}, + [8125] = {.lex_state = 20, .external_lex_state = 8}, [8126] = {.lex_state = 20, .external_lex_state = 8}, [8127] = {.lex_state = 20, .external_lex_state = 8}, [8128] = {.lex_state = 20, .external_lex_state = 8}, [8129] = {.lex_state = 20, .external_lex_state = 8}, [8130] = {.lex_state = 20, .external_lex_state = 8}, - [8131] = {.lex_state = 13, .external_lex_state = 8}, + [8131] = {.lex_state = 33, .external_lex_state = 8}, [8132] = {.lex_state = 20, .external_lex_state = 8}, [8133] = {.lex_state = 20, .external_lex_state = 8}, [8134] = {.lex_state = 20, .external_lex_state = 8}, [8135] = {.lex_state = 20, .external_lex_state = 8}, [8136] = {.lex_state = 20, .external_lex_state = 8}, [8137] = {.lex_state = 20, .external_lex_state = 8}, - [8138] = {.lex_state = 22, .external_lex_state = 8}, - [8139] = {.lex_state = 20, .external_lex_state = 8}, + [8138] = {.lex_state = 20, .external_lex_state = 8}, + [8139] = {.lex_state = 33, .external_lex_state = 8}, [8140] = {.lex_state = 20, .external_lex_state = 8}, - [8141] = {.lex_state = 20, .external_lex_state = 8}, + [8141] = {.lex_state = 33, .external_lex_state = 8}, [8142] = {.lex_state = 20, .external_lex_state = 8}, - [8143] = {.lex_state = 20, .external_lex_state = 8}, - [8144] = {.lex_state = 20, .external_lex_state = 8}, + [8143] = {.lex_state = 33, .external_lex_state = 8}, + [8144] = {.lex_state = 33, .external_lex_state = 8}, [8145] = {.lex_state = 20, .external_lex_state = 8}, [8146] = {.lex_state = 20, .external_lex_state = 8}, - [8147] = {.lex_state = 20, .external_lex_state = 8}, + [8147] = {.lex_state = 33, .external_lex_state = 8}, [8148] = {.lex_state = 20, .external_lex_state = 8}, - [8149] = {.lex_state = 20, .external_lex_state = 8}, - [8150] = {.lex_state = 20, .external_lex_state = 8}, + [8149] = {.lex_state = 22, .external_lex_state = 8}, + [8150] = {.lex_state = 33, .external_lex_state = 8}, [8151] = {.lex_state = 20, .external_lex_state = 8}, [8152] = {.lex_state = 20, .external_lex_state = 8}, [8153] = {.lex_state = 20, .external_lex_state = 8}, @@ -28274,10 +28283,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8157] = {.lex_state = 20, .external_lex_state = 8}, [8158] = {.lex_state = 20, .external_lex_state = 8}, [8159] = {.lex_state = 20, .external_lex_state = 8}, - [8160] = {.lex_state = 20, .external_lex_state = 8}, + [8160] = {.lex_state = 33, .external_lex_state = 8}, [8161] = {.lex_state = 20, .external_lex_state = 8}, [8162] = {.lex_state = 20, .external_lex_state = 8}, - [8163] = {.lex_state = 20, .external_lex_state = 8}, + [8163] = {.lex_state = 13, .external_lex_state = 8}, [8164] = {.lex_state = 20, .external_lex_state = 8}, [8165] = {.lex_state = 20, .external_lex_state = 8}, [8166] = {.lex_state = 20, .external_lex_state = 8}, @@ -28295,7 +28304,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8178] = {.lex_state = 20, .external_lex_state = 8}, [8179] = {.lex_state = 20, .external_lex_state = 8}, [8180] = {.lex_state = 20, .external_lex_state = 8}, - [8181] = {.lex_state = 20, .external_lex_state = 8}, + [8181] = {.lex_state = 13, .external_lex_state = 8}, [8182] = {.lex_state = 20, .external_lex_state = 8}, [8183] = {.lex_state = 20, .external_lex_state = 8}, [8184] = {.lex_state = 20, .external_lex_state = 8}, @@ -28323,12 +28332,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8206] = {.lex_state = 20, .external_lex_state = 8}, [8207] = {.lex_state = 20, .external_lex_state = 8}, [8208] = {.lex_state = 20, .external_lex_state = 8}, - [8209] = {.lex_state = 20, .external_lex_state = 8}, - [8210] = {.lex_state = 20, .external_lex_state = 8}, + [8209] = {.lex_state = 33, .external_lex_state = 8}, + [8210] = {.lex_state = 13, .external_lex_state = 8}, [8211] = {.lex_state = 20, .external_lex_state = 8}, [8212] = {.lex_state = 20, .external_lex_state = 8}, [8213] = {.lex_state = 20, .external_lex_state = 8}, - [8214] = {.lex_state = 13, .external_lex_state = 8}, + [8214] = {.lex_state = 33, .external_lex_state = 8}, [8215] = {.lex_state = 20, .external_lex_state = 8}, [8216] = {.lex_state = 20, .external_lex_state = 8}, [8217] = {.lex_state = 20, .external_lex_state = 8}, @@ -28346,21 +28355,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8229] = {.lex_state = 20, .external_lex_state = 8}, [8230] = {.lex_state = 20, .external_lex_state = 8}, [8231] = {.lex_state = 20, .external_lex_state = 8}, - [8232] = {.lex_state = 20, .external_lex_state = 8}, + [8232] = {.lex_state = 22, .external_lex_state = 8}, [8233] = {.lex_state = 20, .external_lex_state = 8}, [8234] = {.lex_state = 20, .external_lex_state = 8}, [8235] = {.lex_state = 20, .external_lex_state = 8}, [8236] = {.lex_state = 20, .external_lex_state = 8}, - [8237] = {.lex_state = 22, .external_lex_state = 8}, + [8237] = {.lex_state = 20, .external_lex_state = 8}, [8238] = {.lex_state = 20, .external_lex_state = 8}, - [8239] = {.lex_state = 20, .external_lex_state = 8}, - [8240] = {.lex_state = 20, .external_lex_state = 8}, + [8239] = {.lex_state = 33, .external_lex_state = 8}, + [8240] = {.lex_state = 33, .external_lex_state = 8}, [8241] = {.lex_state = 20, .external_lex_state = 8}, [8242] = {.lex_state = 20, .external_lex_state = 8}, [8243] = {.lex_state = 20, .external_lex_state = 8}, - [8244] = {.lex_state = 20, .external_lex_state = 8}, - [8245] = {.lex_state = 13, .external_lex_state = 8}, - [8246] = {.lex_state = 20, .external_lex_state = 8}, + [8244] = {.lex_state = 33, .external_lex_state = 8}, + [8245] = {.lex_state = 20, .external_lex_state = 8}, + [8246] = {.lex_state = 33, .external_lex_state = 8}, [8247] = {.lex_state = 20, .external_lex_state = 8}, [8248] = {.lex_state = 20, .external_lex_state = 8}, [8249] = {.lex_state = 20, .external_lex_state = 8}, @@ -28370,304 +28379,304 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8253] = {.lex_state = 20, .external_lex_state = 8}, [8254] = {.lex_state = 20, .external_lex_state = 8}, [8255] = {.lex_state = 20, .external_lex_state = 8}, - [8256] = {.lex_state = 20, .external_lex_state = 8}, + [8256] = {.lex_state = 33, .external_lex_state = 8}, [8257] = {.lex_state = 20, .external_lex_state = 8}, [8258] = {.lex_state = 20, .external_lex_state = 8}, [8259] = {.lex_state = 20, .external_lex_state = 8}, [8260] = {.lex_state = 20, .external_lex_state = 8}, [8261] = {.lex_state = 20, .external_lex_state = 8}, - [8262] = {.lex_state = 13, .external_lex_state = 8}, + [8262] = {.lex_state = 20, .external_lex_state = 8}, [8263] = {.lex_state = 20, .external_lex_state = 8}, [8264] = {.lex_state = 20, .external_lex_state = 8}, [8265] = {.lex_state = 20, .external_lex_state = 8}, [8266] = {.lex_state = 20, .external_lex_state = 8}, [8267] = {.lex_state = 20, .external_lex_state = 8}, - [8268] = {.lex_state = 22, .external_lex_state = 8}, + [8268] = {.lex_state = 33, .external_lex_state = 8}, [8269] = {.lex_state = 20, .external_lex_state = 8}, [8270] = {.lex_state = 20, .external_lex_state = 8}, [8271] = {.lex_state = 20, .external_lex_state = 8}, [8272] = {.lex_state = 20, .external_lex_state = 8}, - [8273] = {.lex_state = 13, .external_lex_state = 8}, + [8273] = {.lex_state = 20, .external_lex_state = 8}, [8274] = {.lex_state = 20, .external_lex_state = 8}, [8275] = {.lex_state = 22, .external_lex_state = 8}, - [8276] = {.lex_state = 22, .external_lex_state = 8}, - [8277] = {.lex_state = 22, .external_lex_state = 8}, + [8276] = {.lex_state = 20, .external_lex_state = 8}, + [8277] = {.lex_state = 20, .external_lex_state = 8}, [8278] = {.lex_state = 20, .external_lex_state = 8}, - [8279] = {.lex_state = 33, .external_lex_state = 8}, - [8280] = {.lex_state = 33, .external_lex_state = 8}, - [8281] = {.lex_state = 33, .external_lex_state = 8}, - [8282] = {.lex_state = 22, .external_lex_state = 8}, - [8283] = {.lex_state = 33, .external_lex_state = 8}, - [8284] = {.lex_state = 22, .external_lex_state = 8}, - [8285] = {.lex_state = 22, .external_lex_state = 9}, - [8286] = {.lex_state = 33, .external_lex_state = 8}, - [8287] = {.lex_state = 33, .external_lex_state = 8}, - [8288] = {.lex_state = 33, .external_lex_state = 8}, - [8289] = {.lex_state = 33, .external_lex_state = 8}, - [8290] = {.lex_state = 33, .external_lex_state = 8}, - [8291] = {.lex_state = 22, .external_lex_state = 8}, - [8292] = {.lex_state = 33, .external_lex_state = 8}, - [8293] = {.lex_state = 33, .external_lex_state = 8}, + [8279] = {.lex_state = 20, .external_lex_state = 8}, + [8280] = {.lex_state = 20, .external_lex_state = 8}, + [8281] = {.lex_state = 20, .external_lex_state = 8}, + [8282] = {.lex_state = 20, .external_lex_state = 8}, + [8283] = {.lex_state = 22, .external_lex_state = 8}, + [8284] = {.lex_state = 20, .external_lex_state = 8}, + [8285] = {.lex_state = 20, .external_lex_state = 8}, + [8286] = {.lex_state = 20, .external_lex_state = 8}, + [8287] = {.lex_state = 20, .external_lex_state = 8}, + [8288] = {.lex_state = 20, .external_lex_state = 8}, + [8289] = {.lex_state = 20, .external_lex_state = 8}, + [8290] = {.lex_state = 20, .external_lex_state = 8}, + [8291] = {.lex_state = 20, .external_lex_state = 8}, + [8292] = {.lex_state = 20, .external_lex_state = 8}, + [8293] = {.lex_state = 20, .external_lex_state = 8}, [8294] = {.lex_state = 33, .external_lex_state = 8}, - [8295] = {.lex_state = 33, .external_lex_state = 8}, + [8295] = {.lex_state = 20, .external_lex_state = 8}, [8296] = {.lex_state = 33, .external_lex_state = 8}, - [8297] = {.lex_state = 22, .external_lex_state = 8}, - [8298] = {.lex_state = 33, .external_lex_state = 8}, - [8299] = {.lex_state = 33, .external_lex_state = 8}, - [8300] = {.lex_state = 33, .external_lex_state = 8}, - [8301] = {.lex_state = 22, .external_lex_state = 8}, - [8302] = {.lex_state = 33, .external_lex_state = 8}, - [8303] = {.lex_state = 33, .external_lex_state = 8}, - [8304] = {.lex_state = 33, .external_lex_state = 8}, - [8305] = {.lex_state = 33, .external_lex_state = 8}, - [8306] = {.lex_state = 33, .external_lex_state = 8}, - [8307] = {.lex_state = 33, .external_lex_state = 8}, - [8308] = {.lex_state = 33, .external_lex_state = 8}, + [8297] = {.lex_state = 20, .external_lex_state = 8}, + [8298] = {.lex_state = 20, .external_lex_state = 8}, + [8299] = {.lex_state = 20, .external_lex_state = 8}, + [8300] = {.lex_state = 13, .external_lex_state = 8}, + [8301] = {.lex_state = 20, .external_lex_state = 8}, + [8302] = {.lex_state = 20, .external_lex_state = 8}, + [8303] = {.lex_state = 20, .external_lex_state = 8}, + [8304] = {.lex_state = 20, .external_lex_state = 8}, + [8305] = {.lex_state = 20, .external_lex_state = 8}, + [8306] = {.lex_state = 20, .external_lex_state = 8}, + [8307] = {.lex_state = 20, .external_lex_state = 8}, + [8308] = {.lex_state = 22, .external_lex_state = 8}, [8309] = {.lex_state = 22, .external_lex_state = 8}, - [8310] = {.lex_state = 20, .external_lex_state = 8}, - [8311] = {.lex_state = 33, .external_lex_state = 8}, + [8310] = {.lex_state = 22, .external_lex_state = 8}, + [8311] = {.lex_state = 22, .external_lex_state = 8}, [8312] = {.lex_state = 22, .external_lex_state = 8}, - [8313] = {.lex_state = 33, .external_lex_state = 8}, + [8313] = {.lex_state = 22, .external_lex_state = 8}, [8314] = {.lex_state = 22, .external_lex_state = 8}, - [8315] = {.lex_state = 33, .external_lex_state = 8}, + [8315] = {.lex_state = 22, .external_lex_state = 8}, [8316] = {.lex_state = 22, .external_lex_state = 8}, - [8317] = {.lex_state = 22, .external_lex_state = 8}, - [8318] = {.lex_state = 22, .external_lex_state = 9}, - [8319] = {.lex_state = 22, .external_lex_state = 9}, - [8320] = {.lex_state = 22, .external_lex_state = 8}, + [8317] = {.lex_state = 22, .external_lex_state = 9}, + [8318] = {.lex_state = 22, .external_lex_state = 8}, + [8319] = {.lex_state = 22, .external_lex_state = 8}, + [8320] = {.lex_state = 22, .external_lex_state = 9}, [8321] = {.lex_state = 22, .external_lex_state = 9}, - [8322] = {.lex_state = 22, .external_lex_state = 9}, - [8323] = {.lex_state = 22, .external_lex_state = 9}, - [8324] = {.lex_state = 22, .external_lex_state = 8}, + [8322] = {.lex_state = 22, .external_lex_state = 8}, + [8323] = {.lex_state = 22, .external_lex_state = 8}, + [8324] = {.lex_state = 22, .external_lex_state = 9}, [8325] = {.lex_state = 22, .external_lex_state = 9}, - [8326] = {.lex_state = 22, .external_lex_state = 9}, - [8327] = {.lex_state = 22, .external_lex_state = 8}, - [8328] = {.lex_state = 22, .external_lex_state = 8}, + [8326] = {.lex_state = 20, .external_lex_state = 8}, + [8327] = {.lex_state = 22, .external_lex_state = 9}, + [8328] = {.lex_state = 22, .external_lex_state = 9}, [8329] = {.lex_state = 22, .external_lex_state = 8}, - [8330] = {.lex_state = 13, .external_lex_state = 8}, - [8331] = {.lex_state = 13, .external_lex_state = 8}, - [8332] = {.lex_state = 13, .external_lex_state = 8}, + [8330] = {.lex_state = 22, .external_lex_state = 9}, + [8331] = {.lex_state = 22, .external_lex_state = 8}, + [8332] = {.lex_state = 22, .external_lex_state = 8}, [8333] = {.lex_state = 22, .external_lex_state = 8}, [8334] = {.lex_state = 22, .external_lex_state = 9}, [8335] = {.lex_state = 22, .external_lex_state = 8}, - [8336] = {.lex_state = 22, .external_lex_state = 9}, - [8337] = {.lex_state = 321, .external_lex_state = 8}, - [8338] = {.lex_state = 321, .external_lex_state = 8}, - [8339] = {.lex_state = 13, .external_lex_state = 8}, - [8340] = {.lex_state = 22, .external_lex_state = 8}, - [8341] = {.lex_state = 22, .external_lex_state = 9}, - [8342] = {.lex_state = 22, .external_lex_state = 9}, - [8343] = {.lex_state = 22, .external_lex_state = 8}, + [8336] = {.lex_state = 321, .external_lex_state = 8}, + [8337] = {.lex_state = 13, .external_lex_state = 8}, + [8338] = {.lex_state = 22, .external_lex_state = 8}, + [8339] = {.lex_state = 22, .external_lex_state = 8}, + [8340] = {.lex_state = 22, .external_lex_state = 9}, + [8341] = {.lex_state = 13, .external_lex_state = 8}, + [8342] = {.lex_state = 321, .external_lex_state = 8}, + [8343] = {.lex_state = 13, .external_lex_state = 8}, [8344] = {.lex_state = 22, .external_lex_state = 8}, - [8345] = {.lex_state = 13, .external_lex_state = 8}, - [8346] = {.lex_state = 22, .external_lex_state = 8}, - [8347] = {.lex_state = 22, .external_lex_state = 9}, + [8345] = {.lex_state = 22, .external_lex_state = 9}, + [8346] = {.lex_state = 22, .external_lex_state = 9}, + [8347] = {.lex_state = 13, .external_lex_state = 8}, [8348] = {.lex_state = 22, .external_lex_state = 9}, - [8349] = {.lex_state = 22, .external_lex_state = 8}, + [8349] = {.lex_state = 22, .external_lex_state = 9}, [8350] = {.lex_state = 22, .external_lex_state = 8}, [8351] = {.lex_state = 13, .external_lex_state = 8}, - [8352] = {.lex_state = 321, .external_lex_state = 8}, - [8353] = {.lex_state = 22, .external_lex_state = 9}, - [8354] = {.lex_state = 321, .external_lex_state = 8}, + [8352] = {.lex_state = 13, .external_lex_state = 8}, + [8353] = {.lex_state = 22, .external_lex_state = 8}, + [8354] = {.lex_state = 22, .external_lex_state = 8}, [8355] = {.lex_state = 321, .external_lex_state = 8}, [8356] = {.lex_state = 321, .external_lex_state = 8}, - [8357] = {.lex_state = 22, .external_lex_state = 9}, + [8357] = {.lex_state = 321, .external_lex_state = 8}, [8358] = {.lex_state = 321, .external_lex_state = 8}, - [8359] = {.lex_state = 22, .external_lex_state = 8}, + [8359] = {.lex_state = 321, .external_lex_state = 8}, [8360] = {.lex_state = 321, .external_lex_state = 8}, [8361] = {.lex_state = 0, .external_lex_state = 8}, - [8362] = {.lex_state = 22, .external_lex_state = 9}, - [8363] = {.lex_state = 22, .external_lex_state = 8}, - [8364] = {.lex_state = 321, .external_lex_state = 8}, - [8365] = {.lex_state = 321, .external_lex_state = 8}, + [8362] = {.lex_state = 13, .external_lex_state = 8}, + [8363] = {.lex_state = 22, .external_lex_state = 9}, + [8364] = {.lex_state = 22, .external_lex_state = 8}, + [8365] = {.lex_state = 22, .external_lex_state = 8}, [8366] = {.lex_state = 22, .external_lex_state = 8}, - [8367] = {.lex_state = 321, .external_lex_state = 8}, + [8367] = {.lex_state = 22, .external_lex_state = 9}, [8368] = {.lex_state = 321, .external_lex_state = 8}, - [8369] = {.lex_state = 22, .external_lex_state = 9}, + [8369] = {.lex_state = 321, .external_lex_state = 8}, [8370] = {.lex_state = 321, .external_lex_state = 8}, - [8371] = {.lex_state = 22, .external_lex_state = 8}, - [8372] = {.lex_state = 321, .external_lex_state = 8}, - [8373] = {.lex_state = 321, .external_lex_state = 8}, + [8371] = {.lex_state = 321, .external_lex_state = 8}, + [8372] = {.lex_state = 22, .external_lex_state = 9}, + [8373] = {.lex_state = 22, .external_lex_state = 9}, [8374] = {.lex_state = 321, .external_lex_state = 8}, - [8375] = {.lex_state = 321, .external_lex_state = 8}, + [8375] = {.lex_state = 22, .external_lex_state = 8}, [8376] = {.lex_state = 321, .external_lex_state = 8}, - [8377] = {.lex_state = 22, .external_lex_state = 8}, - [8378] = {.lex_state = 22, .external_lex_state = 8}, - [8379] = {.lex_state = 22, .external_lex_state = 8}, - [8380] = {.lex_state = 22, .external_lex_state = 9}, - [8381] = {.lex_state = 22, .external_lex_state = 8}, - [8382] = {.lex_state = 321, .external_lex_state = 8}, - [8383] = {.lex_state = 22, .external_lex_state = 9}, + [8377] = {.lex_state = 321, .external_lex_state = 8}, + [8378] = {.lex_state = 321, .external_lex_state = 8}, + [8379] = {.lex_state = 321, .external_lex_state = 8}, + [8380] = {.lex_state = 22, .external_lex_state = 8}, + [8381] = {.lex_state = 321, .external_lex_state = 8}, + [8382] = {.lex_state = 22, .external_lex_state = 9}, + [8383] = {.lex_state = 22, .external_lex_state = 8}, [8384] = {.lex_state = 321, .external_lex_state = 8}, - [8385] = {.lex_state = 13, .external_lex_state = 8}, + [8385] = {.lex_state = 321, .external_lex_state = 8}, [8386] = {.lex_state = 321, .external_lex_state = 8}, - [8387] = {.lex_state = 321, .external_lex_state = 8}, - [8388] = {.lex_state = 22, .external_lex_state = 8}, - [8389] = {.lex_state = 22, .external_lex_state = 9}, + [8387] = {.lex_state = 22, .external_lex_state = 8}, + [8388] = {.lex_state = 22, .external_lex_state = 9}, + [8389] = {.lex_state = 0, .external_lex_state = 8}, [8390] = {.lex_state = 321, .external_lex_state = 8}, - [8391] = {.lex_state = 321, .external_lex_state = 8}, + [8391] = {.lex_state = 22, .external_lex_state = 8}, [8392] = {.lex_state = 22, .external_lex_state = 9}, - [8393] = {.lex_state = 0, .external_lex_state = 8}, + [8393] = {.lex_state = 321, .external_lex_state = 8}, [8394] = {.lex_state = 321, .external_lex_state = 8}, [8395] = {.lex_state = 321, .external_lex_state = 8}, [8396] = {.lex_state = 22, .external_lex_state = 8}, - [8397] = {.lex_state = 0, .external_lex_state = 9}, + [8397] = {.lex_state = 321, .external_lex_state = 8}, [8398] = {.lex_state = 22, .external_lex_state = 9}, - [8399] = {.lex_state = 22, .external_lex_state = 9}, - [8400] = {.lex_state = 22, .external_lex_state = 8}, - [8401] = {.lex_state = 0, .external_lex_state = 9}, - [8402] = {.lex_state = 0, .external_lex_state = 10}, + [8399] = {.lex_state = 22, .external_lex_state = 8}, + [8400] = {.lex_state = 22, .external_lex_state = 9}, + [8401] = {.lex_state = 0, .external_lex_state = 10}, + [8402] = {.lex_state = 0, .external_lex_state = 9}, [8403] = {.lex_state = 22, .external_lex_state = 9}, - [8404] = {.lex_state = 22, .external_lex_state = 8}, - [8405] = {.lex_state = 22, .external_lex_state = 9}, + [8404] = {.lex_state = 0, .external_lex_state = 9}, + [8405] = {.lex_state = 0, .external_lex_state = 9}, [8406] = {.lex_state = 22, .external_lex_state = 8}, [8407] = {.lex_state = 22, .external_lex_state = 9}, - [8408] = {.lex_state = 22, .external_lex_state = 8}, - [8409] = {.lex_state = 0, .external_lex_state = 9}, - [8410] = {.lex_state = 22, .external_lex_state = 9}, + [8408] = {.lex_state = 0, .external_lex_state = 9}, + [8409] = {.lex_state = 0, .external_lex_state = 10}, + [8410] = {.lex_state = 0, .external_lex_state = 10}, [8411] = {.lex_state = 22, .external_lex_state = 9}, - [8412] = {.lex_state = 0, .external_lex_state = 9}, - [8413] = {.lex_state = 0, .external_lex_state = 9}, + [8412] = {.lex_state = 0, .external_lex_state = 10}, + [8413] = {.lex_state = 22, .external_lex_state = 9}, [8414] = {.lex_state = 22, .external_lex_state = 8}, - [8415] = {.lex_state = 0, .external_lex_state = 9}, - [8416] = {.lex_state = 0, .external_lex_state = 10}, - [8417] = {.lex_state = 22, .external_lex_state = 9}, - [8418] = {.lex_state = 22, .external_lex_state = 9}, + [8415] = {.lex_state = 22, .external_lex_state = 8}, + [8416] = {.lex_state = 0, .external_lex_state = 9}, + [8417] = {.lex_state = 0, .external_lex_state = 10}, + [8418] = {.lex_state = 22, .external_lex_state = 8}, [8419] = {.lex_state = 22, .external_lex_state = 9}, [8420] = {.lex_state = 22, .external_lex_state = 9}, - [8421] = {.lex_state = 0, .external_lex_state = 9}, + [8421] = {.lex_state = 0, .external_lex_state = 10}, [8422] = {.lex_state = 22, .external_lex_state = 9}, - [8423] = {.lex_state = 22, .external_lex_state = 8}, - [8424] = {.lex_state = 0, .external_lex_state = 10}, + [8423] = {.lex_state = 0, .external_lex_state = 10}, + [8424] = {.lex_state = 22, .external_lex_state = 9}, [8425] = {.lex_state = 22, .external_lex_state = 8}, - [8426] = {.lex_state = 0, .external_lex_state = 10}, + [8426] = {.lex_state = 321, .external_lex_state = 8}, [8427] = {.lex_state = 0, .external_lex_state = 10}, - [8428] = {.lex_state = 0, .external_lex_state = 10}, + [8428] = {.lex_state = 22, .external_lex_state = 9}, [8429] = {.lex_state = 22, .external_lex_state = 9}, [8430] = {.lex_state = 22, .external_lex_state = 8}, - [8431] = {.lex_state = 321, .external_lex_state = 8}, + [8431] = {.lex_state = 22, .external_lex_state = 9}, [8432] = {.lex_state = 0, .external_lex_state = 9}, [8433] = {.lex_state = 22, .external_lex_state = 9}, [8434] = {.lex_state = 22, .external_lex_state = 8}, [8435] = {.lex_state = 0, .external_lex_state = 10}, - [8436] = {.lex_state = 0, .external_lex_state = 10}, + [8436] = {.lex_state = 22, .external_lex_state = 8}, [8437] = {.lex_state = 22, .external_lex_state = 8}, - [8438] = {.lex_state = 22, .external_lex_state = 9}, + [8438] = {.lex_state = 0, .external_lex_state = 9}, [8439] = {.lex_state = 0, .external_lex_state = 10}, - [8440] = {.lex_state = 0, .external_lex_state = 10}, + [8440] = {.lex_state = 0, .external_lex_state = 9}, [8441] = {.lex_state = 22, .external_lex_state = 9}, [8442] = {.lex_state = 22, .external_lex_state = 9}, [8443] = {.lex_state = 0, .external_lex_state = 10}, [8444] = {.lex_state = 0, .external_lex_state = 9}, - [8445] = {.lex_state = 22, .external_lex_state = 9}, + [8445] = {.lex_state = 0, .external_lex_state = 10}, [8446] = {.lex_state = 22, .external_lex_state = 8}, [8447] = {.lex_state = 22, .external_lex_state = 9}, - [8448] = {.lex_state = 0, .external_lex_state = 9}, - [8449] = {.lex_state = 22, .external_lex_state = 9}, - [8450] = {.lex_state = 0, .external_lex_state = 10}, - [8451] = {.lex_state = 0, .external_lex_state = 10}, - [8452] = {.lex_state = 22, .external_lex_state = 8}, - [8453] = {.lex_state = 0, .external_lex_state = 8}, - [8454] = {.lex_state = 0, .external_lex_state = 8}, + [8448] = {.lex_state = 22, .external_lex_state = 9}, + [8449] = {.lex_state = 0, .external_lex_state = 10}, + [8450] = {.lex_state = 22, .external_lex_state = 9}, + [8451] = {.lex_state = 22, .external_lex_state = 8}, + [8452] = {.lex_state = 0, .external_lex_state = 9}, + [8453] = {.lex_state = 22, .external_lex_state = 9}, + [8454] = {.lex_state = 22, .external_lex_state = 9}, [8455] = {.lex_state = 0, .external_lex_state = 8}, [8456] = {.lex_state = 0, .external_lex_state = 8}, [8457] = {.lex_state = 0, .external_lex_state = 8}, - [8458] = {.lex_state = 22, .external_lex_state = 8}, + [8458] = {.lex_state = 0, .external_lex_state = 8}, [8459] = {.lex_state = 0, .external_lex_state = 8}, - [8460] = {.lex_state = 22, .external_lex_state = 8}, - [8461] = {.lex_state = 0, .external_lex_state = 8}, - [8462] = {.lex_state = 22, .external_lex_state = 8}, - [8463] = {.lex_state = 22, .external_lex_state = 8}, + [8460] = {.lex_state = 0, .external_lex_state = 8}, + [8461] = {.lex_state = 22, .external_lex_state = 9}, + [8462] = {.lex_state = 0, .external_lex_state = 8}, + [8463] = {.lex_state = 0, .external_lex_state = 8}, [8464] = {.lex_state = 0, .external_lex_state = 8}, - [8465] = {.lex_state = 22, .external_lex_state = 8}, + [8465] = {.lex_state = 22, .external_lex_state = 9}, [8466] = {.lex_state = 0, .external_lex_state = 8}, [8467] = {.lex_state = 22, .external_lex_state = 8}, [8468] = {.lex_state = 0, .external_lex_state = 8}, - [8469] = {.lex_state = 22, .external_lex_state = 8}, + [8469] = {.lex_state = 0, .external_lex_state = 9}, [8470] = {.lex_state = 0, .external_lex_state = 8}, - [8471] = {.lex_state = 22, .external_lex_state = 9}, + [8471] = {.lex_state = 0, .external_lex_state = 8}, [8472] = {.lex_state = 0, .external_lex_state = 8}, [8473] = {.lex_state = 22, .external_lex_state = 8}, - [8474] = {.lex_state = 34, .external_lex_state = 8}, + [8474] = {.lex_state = 0, .external_lex_state = 8}, [8475] = {.lex_state = 0, .external_lex_state = 8}, - [8476] = {.lex_state = 22, .external_lex_state = 8}, + [8476] = {.lex_state = 0, .external_lex_state = 8}, [8477] = {.lex_state = 0, .external_lex_state = 8}, - [8478] = {.lex_state = 22, .external_lex_state = 9}, - [8479] = {.lex_state = 22, .external_lex_state = 8}, - [8480] = {.lex_state = 22, .external_lex_state = 9}, + [8478] = {.lex_state = 22, .external_lex_state = 8}, + [8479] = {.lex_state = 0, .external_lex_state = 8}, + [8480] = {.lex_state = 0, .external_lex_state = 8}, [8481] = {.lex_state = 0, .external_lex_state = 8}, - [8482] = {.lex_state = 22, .external_lex_state = 8}, - [8483] = {.lex_state = 22, .external_lex_state = 8}, - [8484] = {.lex_state = 22, .external_lex_state = 8}, + [8482] = {.lex_state = 0, .external_lex_state = 8}, + [8483] = {.lex_state = 0, .external_lex_state = 8}, + [8484] = {.lex_state = 0, .external_lex_state = 8}, [8485] = {.lex_state = 0, .external_lex_state = 8}, [8486] = {.lex_state = 22, .external_lex_state = 9}, [8487] = {.lex_state = 0, .external_lex_state = 8}, - [8488] = {.lex_state = 22, .external_lex_state = 8}, - [8489] = {.lex_state = 0, .external_lex_state = 8}, + [8488] = {.lex_state = 0, .external_lex_state = 8}, + [8489] = {.lex_state = 22, .external_lex_state = 8}, [8490] = {.lex_state = 0, .external_lex_state = 8}, [8491] = {.lex_state = 0, .external_lex_state = 8}, - [8492] = {.lex_state = 0, .external_lex_state = 8}, - [8493] = {.lex_state = 22, .external_lex_state = 8}, + [8492] = {.lex_state = 34, .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 = 22, .external_lex_state = 8}, + [8496] = {.lex_state = 0, .external_lex_state = 8}, [8497] = {.lex_state = 0, .external_lex_state = 8}, [8498] = {.lex_state = 0, .external_lex_state = 8}, - [8499] = {.lex_state = 22, .external_lex_state = 8}, - [8500] = {.lex_state = 22, .external_lex_state = 8}, - [8501] = {.lex_state = 34, .external_lex_state = 8}, - [8502] = {.lex_state = 22, .external_lex_state = 8}, - [8503] = {.lex_state = 22, .external_lex_state = 9}, + [8499] = {.lex_state = 0, .external_lex_state = 8}, + [8500] = {.lex_state = 0, .external_lex_state = 8}, + [8501] = {.lex_state = 0, .external_lex_state = 8}, + [8502] = {.lex_state = 0, .external_lex_state = 8}, + [8503] = {.lex_state = 0, .external_lex_state = 8}, [8504] = {.lex_state = 0, .external_lex_state = 8}, - [8505] = {.lex_state = 0, .external_lex_state = 8}, + [8505] = {.lex_state = 34, .external_lex_state = 8}, [8506] = {.lex_state = 0, .external_lex_state = 8}, - [8507] = {.lex_state = 22, .external_lex_state = 9}, + [8507] = {.lex_state = 0, .external_lex_state = 8}, [8508] = {.lex_state = 0, .external_lex_state = 8}, [8509] = {.lex_state = 0, .external_lex_state = 8}, - [8510] = {.lex_state = 22, .external_lex_state = 9}, - [8511] = {.lex_state = 22, .external_lex_state = 8}, + [8510] = {.lex_state = 0, .external_lex_state = 8}, + [8511] = {.lex_state = 0, .external_lex_state = 8}, [8512] = {.lex_state = 0, .external_lex_state = 8}, [8513] = {.lex_state = 0, .external_lex_state = 8}, [8514] = {.lex_state = 0, .external_lex_state = 8}, [8515] = {.lex_state = 0, .external_lex_state = 8}, [8516] = {.lex_state = 22, .external_lex_state = 8}, [8517] = {.lex_state = 0, .external_lex_state = 8}, - [8518] = {.lex_state = 0, .external_lex_state = 8}, - [8519] = {.lex_state = 0, .external_lex_state = 8}, - [8520] = {.lex_state = 22, .external_lex_state = 9}, - [8521] = {.lex_state = 0, .external_lex_state = 9}, + [8518] = {.lex_state = 34, .external_lex_state = 8}, + [8519] = {.lex_state = 22, .external_lex_state = 8}, + [8520] = {.lex_state = 0, .external_lex_state = 8}, + [8521] = {.lex_state = 22, .external_lex_state = 8}, [8522] = {.lex_state = 0, .external_lex_state = 8}, [8523] = {.lex_state = 0, .external_lex_state = 8}, [8524] = {.lex_state = 0, .external_lex_state = 8}, - [8525] = {.lex_state = 0, .external_lex_state = 8}, - [8526] = {.lex_state = 34, .external_lex_state = 8}, + [8525] = {.lex_state = 22, .external_lex_state = 8}, + [8526] = {.lex_state = 0, .external_lex_state = 8}, [8527] = {.lex_state = 0, .external_lex_state = 8}, [8528] = {.lex_state = 0, .external_lex_state = 8}, [8529] = {.lex_state = 0, .external_lex_state = 8}, [8530] = {.lex_state = 22, .external_lex_state = 9}, [8531] = {.lex_state = 0, .external_lex_state = 8}, - [8532] = {.lex_state = 22, .external_lex_state = 9}, + [8532] = {.lex_state = 22, .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 = 22, .external_lex_state = 9}, + [8535] = {.lex_state = 22, .external_lex_state = 8}, + [8536] = {.lex_state = 22, .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}, + [8538] = {.lex_state = 22, .external_lex_state = 8}, + [8539] = {.lex_state = 34, .external_lex_state = 8}, + [8540] = {.lex_state = 22, .external_lex_state = 8}, [8541] = {.lex_state = 0, .external_lex_state = 8}, - [8542] = {.lex_state = 22, .external_lex_state = 8}, + [8542] = {.lex_state = 0, .external_lex_state = 8}, [8543] = {.lex_state = 22, .external_lex_state = 9}, - [8544] = {.lex_state = 34, .external_lex_state = 8}, - [8545] = {.lex_state = 22, .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 = 22, .external_lex_state = 8}, + [8547] = {.lex_state = 0, .external_lex_state = 8}, [8548] = {.lex_state = 0, .external_lex_state = 8}, - [8549] = {.lex_state = 22, .external_lex_state = 8}, - [8550] = {.lex_state = 22, .external_lex_state = 8}, - [8551] = {.lex_state = 22, .external_lex_state = 8}, + [8549] = {.lex_state = 0, .external_lex_state = 8}, + [8550] = {.lex_state = 0, .external_lex_state = 8}, + [8551] = {.lex_state = 0, .external_lex_state = 8}, [8552] = {.lex_state = 0, .external_lex_state = 8}, - [8553] = {.lex_state = 34, .external_lex_state = 8}, + [8553] = {.lex_state = 0, .external_lex_state = 8}, [8554] = {.lex_state = 0, .external_lex_state = 8}, [8555] = {.lex_state = 0, .external_lex_state = 8}, [8556] = {.lex_state = 0, .external_lex_state = 8}, @@ -28677,176 +28686,176 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8560] = {.lex_state = 0, .external_lex_state = 8}, [8561] = {.lex_state = 0, .external_lex_state = 8}, [8562] = {.lex_state = 0, .external_lex_state = 8}, - [8563] = {.lex_state = 0, .external_lex_state = 8}, + [8563] = {.lex_state = 22, .external_lex_state = 8}, [8564] = {.lex_state = 0, .external_lex_state = 8}, [8565] = {.lex_state = 0, .external_lex_state = 8}, - [8566] = {.lex_state = 0, .external_lex_state = 8}, + [8566] = {.lex_state = 22, .external_lex_state = 8}, [8567] = {.lex_state = 0, .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 = 0, .external_lex_state = 8}, + [8571] = {.lex_state = 22, .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}, + [8573] = {.lex_state = 22, .external_lex_state = 9}, + [8574] = {.lex_state = 22, .external_lex_state = 9}, [8575] = {.lex_state = 0, .external_lex_state = 8}, [8576] = {.lex_state = 22, .external_lex_state = 8}, - [8577] = {.lex_state = 22, .external_lex_state = 8}, + [8577] = {.lex_state = 34, .external_lex_state = 8}, [8578] = {.lex_state = 0, .external_lex_state = 8}, - [8579] = {.lex_state = 0, .external_lex_state = 8}, + [8579] = {.lex_state = 22, .external_lex_state = 8}, [8580] = {.lex_state = 0, .external_lex_state = 8}, - [8581] = {.lex_state = 22, .external_lex_state = 8}, + [8581] = {.lex_state = 22, .external_lex_state = 9}, [8582] = {.lex_state = 0, .external_lex_state = 8}, - [8583] = {.lex_state = 0, .external_lex_state = 9}, + [8583] = {.lex_state = 0, .external_lex_state = 8}, [8584] = {.lex_state = 0, .external_lex_state = 8}, - [8585] = {.lex_state = 0, .external_lex_state = 8}, + [8585] = {.lex_state = 22, .external_lex_state = 8}, [8586] = {.lex_state = 0, .external_lex_state = 8}, [8587] = {.lex_state = 0, .external_lex_state = 8}, [8588] = {.lex_state = 22, .external_lex_state = 8}, [8589] = {.lex_state = 22, .external_lex_state = 8}, - [8590] = {.lex_state = 0, .external_lex_state = 8}, + [8590] = {.lex_state = 22, .external_lex_state = 9}, [8591] = {.lex_state = 22, .external_lex_state = 8}, - [8592] = {.lex_state = 0, .external_lex_state = 8}, - [8593] = {.lex_state = 0, .external_lex_state = 8}, + [8592] = {.lex_state = 22, .external_lex_state = 8}, + [8593] = {.lex_state = 0, .external_lex_state = 9}, [8594] = {.lex_state = 0, .external_lex_state = 8}, [8595] = {.lex_state = 22, .external_lex_state = 8}, - [8596] = {.lex_state = 0, .external_lex_state = 8}, + [8596] = {.lex_state = 22, .external_lex_state = 8}, [8597] = {.lex_state = 0, .external_lex_state = 8}, - [8598] = {.lex_state = 0, .external_lex_state = 8}, - [8599] = {.lex_state = 22, .external_lex_state = 9}, - [8600] = {.lex_state = 0, .external_lex_state = 8}, - [8601] = {.lex_state = 0, .external_lex_state = 8}, - [8602] = {.lex_state = 22, .external_lex_state = 8}, - [8603] = {.lex_state = 0, .external_lex_state = 8}, - [8604] = {.lex_state = 0, .external_lex_state = 8}, - [8605] = {.lex_state = 0, .external_lex_state = 8}, + [8598] = {.lex_state = 22, .external_lex_state = 8}, + [8599] = {.lex_state = 22, .external_lex_state = 8}, + [8600] = {.lex_state = 22, .external_lex_state = 8}, + [8601] = {.lex_state = 22, .external_lex_state = 8}, + [8602] = {.lex_state = 22, .external_lex_state = 9}, + [8603] = {.lex_state = 22, .external_lex_state = 8}, + [8604] = {.lex_state = 22, .external_lex_state = 8}, + [8605] = {.lex_state = 22, .external_lex_state = 9}, [8606] = {.lex_state = 0, .external_lex_state = 8}, - [8607] = {.lex_state = 22, .external_lex_state = 8}, - [8608] = {.lex_state = 0, .external_lex_state = 8}, - [8609] = {.lex_state = 0, .external_lex_state = 8}, - [8610] = {.lex_state = 0, .external_lex_state = 8}, - [8611] = {.lex_state = 0, .external_lex_state = 8}, - [8612] = {.lex_state = 34, .external_lex_state = 8}, - [8613] = {.lex_state = 0, .external_lex_state = 8}, - [8614] = {.lex_state = 0, .external_lex_state = 8}, + [8607] = {.lex_state = 34, .external_lex_state = 8}, + [8608] = {.lex_state = 22, .external_lex_state = 9}, + [8609] = {.lex_state = 22, .external_lex_state = 8}, + [8610] = {.lex_state = 22, .external_lex_state = 8}, + [8611] = {.lex_state = 22, .external_lex_state = 9}, + [8612] = {.lex_state = 0, .external_lex_state = 8}, + [8613] = {.lex_state = 22, .external_lex_state = 8}, + [8614] = {.lex_state = 22, .external_lex_state = 8}, [8615] = {.lex_state = 22, .external_lex_state = 9}, [8616] = {.lex_state = 0, .external_lex_state = 8}, [8617] = {.lex_state = 0, .external_lex_state = 8}, [8618] = {.lex_state = 0, .external_lex_state = 8}, [8619] = {.lex_state = 22, .external_lex_state = 8}, - [8620] = {.lex_state = 22, .external_lex_state = 8}, - [8621] = {.lex_state = 0, .external_lex_state = 8}, - [8622] = {.lex_state = 22, .external_lex_state = 9}, + [8620] = {.lex_state = 0, .external_lex_state = 8}, + [8621] = {.lex_state = 22, .external_lex_state = 9}, + [8622] = {.lex_state = 0, .external_lex_state = 8}, [8623] = {.lex_state = 0, .external_lex_state = 8}, [8624] = {.lex_state = 0, .external_lex_state = 8}, [8625] = {.lex_state = 22, .external_lex_state = 8}, - [8626] = {.lex_state = 0, .external_lex_state = 8}, - [8627] = {.lex_state = 0, .external_lex_state = 8}, + [8626] = {.lex_state = 22, .external_lex_state = 8}, + [8627] = {.lex_state = 22, .external_lex_state = 8}, [8628] = {.lex_state = 0, .external_lex_state = 9}, [8629] = {.lex_state = 0, .external_lex_state = 8}, - [8630] = {.lex_state = 22, .external_lex_state = 11}, - [8631] = {.lex_state = 0, .external_lex_state = 8}, - [8632] = {.lex_state = 22, .external_lex_state = 8}, + [8630] = {.lex_state = 0, .external_lex_state = 8}, + [8631] = {.lex_state = 0, .external_lex_state = 9}, + [8632] = {.lex_state = 0, .external_lex_state = 8}, [8633] = {.lex_state = 22, .external_lex_state = 8}, - [8634] = {.lex_state = 0, .external_lex_state = 8}, - [8635] = {.lex_state = 0, .external_lex_state = 10}, + [8634] = {.lex_state = 0, .external_lex_state = 9}, + [8635] = {.lex_state = 0, .external_lex_state = 9}, [8636] = {.lex_state = 0, .external_lex_state = 8}, [8637] = {.lex_state = 0, .external_lex_state = 8}, [8638] = {.lex_state = 0, .external_lex_state = 8}, - [8639] = {.lex_state = 0, .external_lex_state = 9}, - [8640] = {.lex_state = 0, .external_lex_state = 8}, + [8639] = {.lex_state = 0, .external_lex_state = 8}, + [8640] = {.lex_state = 0, .external_lex_state = 9}, [8641] = {.lex_state = 0, .external_lex_state = 8}, - [8642] = {.lex_state = 0, .external_lex_state = 8}, - [8643] = {.lex_state = 0, .external_lex_state = 8}, + [8642] = {.lex_state = 22, .external_lex_state = 8}, + [8643] = {.lex_state = 22, .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 = 8}, - [8647] = {.lex_state = 0, .external_lex_state = 8}, - [8648] = {.lex_state = 0, .external_lex_state = 9}, + [8647] = {.lex_state = 22, .external_lex_state = 8}, + [8648] = {.lex_state = 0, .external_lex_state = 8}, [8649] = {.lex_state = 0, .external_lex_state = 8}, - [8650] = {.lex_state = 22, .external_lex_state = 8}, + [8650] = {.lex_state = 0, .external_lex_state = 8}, [8651] = {.lex_state = 0, .external_lex_state = 8}, [8652] = {.lex_state = 0, .external_lex_state = 9}, - [8653] = {.lex_state = 0, .external_lex_state = 8}, + [8653] = {.lex_state = 0, .external_lex_state = 9}, [8654] = {.lex_state = 0, .external_lex_state = 9}, [8655] = {.lex_state = 0, .external_lex_state = 9}, [8656] = {.lex_state = 0, .external_lex_state = 9}, - [8657] = {.lex_state = 22, .external_lex_state = 8}, - [8658] = {.lex_state = 0, .external_lex_state = 8}, - [8659] = {.lex_state = 0, .external_lex_state = 9}, - [8660] = {.lex_state = 0, .external_lex_state = 9}, - [8661] = {.lex_state = 22, .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 = 8}, - [8665] = {.lex_state = 0, .external_lex_state = 8}, - [8666] = {.lex_state = 0, .external_lex_state = 9}, + [8657] = {.lex_state = 0, .external_lex_state = 8}, + [8658] = {.lex_state = 22, .external_lex_state = 8}, + [8659] = {.lex_state = 0, .external_lex_state = 10}, + [8660] = {.lex_state = 22, .external_lex_state = 8}, + [8661] = {.lex_state = 0, .external_lex_state = 9}, + [8662] = {.lex_state = 22, .external_lex_state = 8}, + [8663] = {.lex_state = 0, .external_lex_state = 10}, + [8664] = {.lex_state = 0, .external_lex_state = 9}, + [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}, + [8669] = {.lex_state = 0, .external_lex_state = 9}, [8670] = {.lex_state = 0, .external_lex_state = 8}, - [8671] = {.lex_state = 22, .external_lex_state = 8}, - [8672] = {.lex_state = 0, .external_lex_state = 9}, + [8671] = {.lex_state = 0, .external_lex_state = 8}, + [8672] = {.lex_state = 0, .external_lex_state = 8}, [8673] = {.lex_state = 0, .external_lex_state = 8}, - [8674] = {.lex_state = 0, .external_lex_state = 9}, - [8675] = {.lex_state = 22, .external_lex_state = 8}, + [8674] = {.lex_state = 0, .external_lex_state = 8}, + [8675] = {.lex_state = 0, .external_lex_state = 8}, [8676] = {.lex_state = 0, .external_lex_state = 8}, [8677] = {.lex_state = 0, .external_lex_state = 8}, - [8678] = {.lex_state = 0, .external_lex_state = 8}, + [8678] = {.lex_state = 0, .external_lex_state = 9}, [8679] = {.lex_state = 0, .external_lex_state = 8}, [8680] = {.lex_state = 0, .external_lex_state = 8}, [8681] = {.lex_state = 0, .external_lex_state = 8}, - [8682] = {.lex_state = 0, .external_lex_state = 8}, + [8682] = {.lex_state = 22, .external_lex_state = 11}, [8683] = {.lex_state = 0, .external_lex_state = 8}, - [8684] = {.lex_state = 0, .external_lex_state = 9}, - [8685] = {.lex_state = 0, .external_lex_state = 8}, + [8684] = {.lex_state = 0, .external_lex_state = 8}, + [8685] = {.lex_state = 0, .external_lex_state = 10}, [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 = 22, .external_lex_state = 11}, - [8690] = {.lex_state = 321, .external_lex_state = 8}, + [8689] = {.lex_state = 0, .external_lex_state = 9}, + [8690] = {.lex_state = 0, .external_lex_state = 8}, [8691] = {.lex_state = 0, .external_lex_state = 8}, [8692] = {.lex_state = 0, .external_lex_state = 8}, [8693] = {.lex_state = 0, .external_lex_state = 8}, - [8694] = {.lex_state = 0, .external_lex_state = 8}, - [8695] = {.lex_state = 0, .external_lex_state = 8}, + [8694] = {.lex_state = 0, .external_lex_state = 9}, + [8695] = {.lex_state = 0, .external_lex_state = 9}, [8696] = {.lex_state = 0, .external_lex_state = 8}, [8697] = {.lex_state = 0, .external_lex_state = 8}, - [8698] = {.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 = 8}, - [8701] = {.lex_state = 0, .external_lex_state = 9}, - [8702] = {.lex_state = 22, .external_lex_state = 8}, - [8703] = {.lex_state = 0, .external_lex_state = 9}, - [8704] = {.lex_state = 0, .external_lex_state = 8}, - [8705] = {.lex_state = 0, .external_lex_state = 8}, + [8701] = {.lex_state = 0, .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 = 9}, + [8705] = {.lex_state = 22, .external_lex_state = 11}, [8706] = {.lex_state = 22, .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}, + [8707] = {.lex_state = 22, .external_lex_state = 8}, + [8708] = {.lex_state = 0, .external_lex_state = 9}, + [8709] = {.lex_state = 0, .external_lex_state = 9}, [8710] = {.lex_state = 0, .external_lex_state = 9}, - [8711] = {.lex_state = 0, .external_lex_state = 9}, - [8712] = {.lex_state = 0, .external_lex_state = 8}, - [8713] = {.lex_state = 0, .external_lex_state = 8}, + [8711] = {.lex_state = 0, .external_lex_state = 8}, + [8712] = {.lex_state = 0, .external_lex_state = 9}, + [8713] = {.lex_state = 0, .external_lex_state = 9}, [8714] = {.lex_state = 0, .external_lex_state = 8}, [8715] = {.lex_state = 0, .external_lex_state = 8}, - [8716] = {.lex_state = 0, .external_lex_state = 10}, + [8716] = {.lex_state = 0, .external_lex_state = 8}, [8717] = {.lex_state = 0, .external_lex_state = 8}, - [8718] = {.lex_state = 0, .external_lex_state = 9}, + [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 = 0, .external_lex_state = 8}, - [8722] = {.lex_state = 0, .external_lex_state = 8}, - [8723] = {.lex_state = 0, .external_lex_state = 8}, + [8722] = {.lex_state = 22, .external_lex_state = 8}, + [8723] = {.lex_state = 22, .external_lex_state = 8}, [8724] = {.lex_state = 0, .external_lex_state = 8}, [8725] = {.lex_state = 0, .external_lex_state = 8}, [8726] = {.lex_state = 0, .external_lex_state = 8}, [8727] = {.lex_state = 0, .external_lex_state = 8}, [8728] = {.lex_state = 0, .external_lex_state = 8}, [8729] = {.lex_state = 0, .external_lex_state = 8}, - [8730] = {.lex_state = 22, .external_lex_state = 8}, + [8730] = {.lex_state = 0, .external_lex_state = 8}, [8731] = {.lex_state = 0, .external_lex_state = 8}, - [8732] = {.lex_state = 22, .external_lex_state = 8}, + [8732] = {.lex_state = 0, .external_lex_state = 8}, [8733] = {.lex_state = 0, .external_lex_state = 8}, [8734] = {.lex_state = 0, .external_lex_state = 8}, [8735] = {.lex_state = 0, .external_lex_state = 8}, @@ -28854,8 +28863,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8737] = {.lex_state = 0, .external_lex_state = 8}, [8738] = {.lex_state = 0, .external_lex_state = 8}, [8739] = {.lex_state = 0, .external_lex_state = 8}, - [8740] = {.lex_state = 0, .external_lex_state = 10}, - [8741] = {.lex_state = 0, .external_lex_state = 8}, + [8740] = {.lex_state = 0, .external_lex_state = 8}, + [8741] = {.lex_state = 0, .external_lex_state = 9}, [8742] = {.lex_state = 0, .external_lex_state = 8}, [8743] = {.lex_state = 0, .external_lex_state = 8}, [8744] = {.lex_state = 0, .external_lex_state = 8}, @@ -28863,355 +28872,355 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8746] = {.lex_state = 0, .external_lex_state = 8}, [8747] = {.lex_state = 0, .external_lex_state = 8}, [8748] = {.lex_state = 0, .external_lex_state = 8}, - [8749] = {.lex_state = 22, .external_lex_state = 8}, + [8749] = {.lex_state = 0, .external_lex_state = 9}, [8750] = {.lex_state = 0, .external_lex_state = 8}, [8751] = {.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 = 0, .external_lex_state = 8}, - [8755] = {.lex_state = 0, .external_lex_state = 8}, + [8755] = {.lex_state = 321, .external_lex_state = 8}, [8756] = {.lex_state = 0, .external_lex_state = 8}, - [8757] = {.lex_state = 0, .external_lex_state = 8}, - [8758] = {.lex_state = 0, .external_lex_state = 9}, - [8759] = {.lex_state = 0, .external_lex_state = 9}, + [8757] = {.lex_state = 0, .external_lex_state = 9}, + [8758] = {.lex_state = 0, .external_lex_state = 8}, + [8759] = {.lex_state = 0, .external_lex_state = 8}, [8760] = {.lex_state = 0, .external_lex_state = 8}, - [8761] = {.lex_state = 0, .external_lex_state = 9}, + [8761] = {.lex_state = 0, .external_lex_state = 8}, [8762] = {.lex_state = 0, .external_lex_state = 8}, - [8763] = {.lex_state = 0, .external_lex_state = 10}, + [8763] = {.lex_state = 0, .external_lex_state = 8}, [8764] = {.lex_state = 0, .external_lex_state = 8}, - [8765] = {.lex_state = 0, .external_lex_state = 9}, - [8766] = {.lex_state = 0, .external_lex_state = 8}, - [8767] = {.lex_state = 22, .external_lex_state = 8}, + [8765] = {.lex_state = 0, .external_lex_state = 8}, + [8766] = {.lex_state = 22, .external_lex_state = 8}, + [8767] = {.lex_state = 0, .external_lex_state = 8}, [8768] = {.lex_state = 0, .external_lex_state = 8}, [8769] = {.lex_state = 0, .external_lex_state = 8}, [8770] = {.lex_state = 0, .external_lex_state = 8}, - [8771] = {.lex_state = 0, .external_lex_state = 9}, - [8772] = {.lex_state = 0, .external_lex_state = 9}, + [8771] = {.lex_state = 22, .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 = 8}, + [8774] = {.lex_state = 0, .external_lex_state = 9}, [8775] = {.lex_state = 0, .external_lex_state = 8}, [8776] = {.lex_state = 0, .external_lex_state = 8}, - [8777] = {.lex_state = 0, .external_lex_state = 8}, + [8777] = {.lex_state = 0, .external_lex_state = 10}, [8778] = {.lex_state = 0, .external_lex_state = 8}, [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 = 9}, - [8783] = {.lex_state = 0, .external_lex_state = 9}, + [8782] = {.lex_state = 0, .external_lex_state = 8}, + [8783] = {.lex_state = 0, .external_lex_state = 8}, [8784] = {.lex_state = 0, .external_lex_state = 8}, - [8785] = {.lex_state = 0, .external_lex_state = 9}, - [8786] = {.lex_state = 321, .external_lex_state = 8}, + [8785] = {.lex_state = 0, .external_lex_state = 8}, + [8786] = {.lex_state = 0, .external_lex_state = 8}, [8787] = {.lex_state = 0, .external_lex_state = 8}, - [8788] = {.lex_state = 0, .external_lex_state = 9}, + [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 = 22, .external_lex_state = 8}, + [8790] = {.lex_state = 22, .external_lex_state = 8}, + [8791] = {.lex_state = 321, .external_lex_state = 8}, [8792] = {.lex_state = 0, .external_lex_state = 8}, - [8793] = {.lex_state = 321, .external_lex_state = 8}, - [8794] = {.lex_state = 22, .external_lex_state = 8}, + [8793] = {.lex_state = 0, .external_lex_state = 8}, + [8794] = {.lex_state = 0, .external_lex_state = 8}, [8795] = {.lex_state = 0, .external_lex_state = 8}, - [8796] = {.lex_state = 0, .external_lex_state = 8}, + [8796] = {.lex_state = 22, .external_lex_state = 8}, [8797] = {.lex_state = 0, .external_lex_state = 8}, - [8798] = {.lex_state = 22, .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}, + [8800] = {.lex_state = 321, .external_lex_state = 8}, [8801] = {.lex_state = 0, .external_lex_state = 8}, - [8802] = {.lex_state = 321, .external_lex_state = 8}, + [8802] = {.lex_state = 0, .external_lex_state = 8}, [8803] = {.lex_state = 22, .external_lex_state = 8}, - [8804] = {.lex_state = 321, .external_lex_state = 8}, + [8804] = {.lex_state = 0, .external_lex_state = 8}, [8805] = {.lex_state = 0, .external_lex_state = 8}, - [8806] = {.lex_state = 321, .external_lex_state = 8}, - [8807] = {.lex_state = 0, .external_lex_state = 8}, + [8806] = {.lex_state = 22, .external_lex_state = 8}, + [8807] = {.lex_state = 321, .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 = 8}, - [8811] = {.lex_state = 22, .external_lex_state = 8}, + [8809] = {.lex_state = 0, .external_lex_state = 9}, + [8810] = {.lex_state = 22, .external_lex_state = 9}, + [8811] = {.lex_state = 0, .external_lex_state = 8}, [8812] = {.lex_state = 0, .external_lex_state = 8}, - [8813] = {.lex_state = 22, .external_lex_state = 8}, + [8813] = {.lex_state = 321, .external_lex_state = 8}, [8814] = {.lex_state = 0, .external_lex_state = 8}, - [8815] = {.lex_state = 22, .external_lex_state = 8}, - [8816] = {.lex_state = 0, .external_lex_state = 8}, - [8817] = {.lex_state = 22, .external_lex_state = 8}, + [8815] = {.lex_state = 0, .external_lex_state = 8}, + [8816] = {.lex_state = 321, .external_lex_state = 8}, + [8817] = {.lex_state = 0, .external_lex_state = 8}, [8818] = {.lex_state = 22, .external_lex_state = 8}, [8819] = {.lex_state = 0, .external_lex_state = 8}, [8820] = {.lex_state = 0, .external_lex_state = 8}, - [8821] = {.lex_state = 22, .external_lex_state = 8}, + [8821] = {.lex_state = 0, .external_lex_state = 8}, [8822] = {.lex_state = 0, .external_lex_state = 8}, [8823] = {.lex_state = 0, .external_lex_state = 8}, [8824] = {.lex_state = 0, .external_lex_state = 8}, [8825] = {.lex_state = 0, .external_lex_state = 8}, - [8826] = {.lex_state = 321, .external_lex_state = 8}, - [8827] = {.lex_state = 22, .external_lex_state = 8}, - [8828] = {.lex_state = 22, .external_lex_state = 8}, - [8829] = {.lex_state = 321, .external_lex_state = 8}, - [8830] = {.lex_state = 22, .external_lex_state = 8}, + [8826] = {.lex_state = 0, .external_lex_state = 8}, + [8827] = {.lex_state = 0, .external_lex_state = 8}, + [8828] = {.lex_state = 321, .external_lex_state = 8}, + [8829] = {.lex_state = 0, .external_lex_state = 8}, + [8830] = {.lex_state = 0, .external_lex_state = 8}, [8831] = {.lex_state = 0, .external_lex_state = 8}, [8832] = {.lex_state = 0, .external_lex_state = 8}, [8833] = {.lex_state = 321, .external_lex_state = 8}, [8834] = {.lex_state = 0, .external_lex_state = 8}, - [8835] = {.lex_state = 22, .external_lex_state = 8}, - [8836] = {.lex_state = 0, .external_lex_state = 8}, - [8837] = {.lex_state = 22, .external_lex_state = 8}, - [8838] = {.lex_state = 22, .external_lex_state = 8}, + [8835] = {.lex_state = 0, .external_lex_state = 8}, + [8836] = {.lex_state = 321, .external_lex_state = 8}, + [8837] = {.lex_state = 321, .external_lex_state = 8}, + [8838] = {.lex_state = 0, .external_lex_state = 8}, [8839] = {.lex_state = 0, .external_lex_state = 8}, [8840] = {.lex_state = 0, .external_lex_state = 8}, [8841] = {.lex_state = 0, .external_lex_state = 8}, [8842] = {.lex_state = 0, .external_lex_state = 8}, - [8843] = {.lex_state = 22, .external_lex_state = 8}, + [8843] = {.lex_state = 321, .external_lex_state = 8}, [8844] = {.lex_state = 321, .external_lex_state = 8}, - [8845] = {.lex_state = 0, .external_lex_state = 8}, + [8845] = {.lex_state = 321, .external_lex_state = 8}, [8846] = {.lex_state = 321, .external_lex_state = 8}, - [8847] = {.lex_state = 0, .external_lex_state = 8}, + [8847] = {.lex_state = 321, .external_lex_state = 8}, [8848] = {.lex_state = 0, .external_lex_state = 8}, [8849] = {.lex_state = 0, .external_lex_state = 8}, [8850] = {.lex_state = 22, .external_lex_state = 8}, - [8851] = {.lex_state = 321, .external_lex_state = 8}, + [8851] = {.lex_state = 0, .external_lex_state = 8}, [8852] = {.lex_state = 0, .external_lex_state = 8}, - [8853] = {.lex_state = 22, .external_lex_state = 8}, + [8853] = {.lex_state = 0, .external_lex_state = 8}, [8854] = {.lex_state = 0, .external_lex_state = 8}, - [8855] = {.lex_state = 321, .external_lex_state = 8}, + [8855] = {.lex_state = 0, .external_lex_state = 8}, [8856] = {.lex_state = 0, .external_lex_state = 8}, [8857] = {.lex_state = 0, .external_lex_state = 8}, - [8858] = {.lex_state = 0, .external_lex_state = 8}, - [8859] = {.lex_state = 321, .external_lex_state = 8}, - [8860] = {.lex_state = 22, .external_lex_state = 8}, - [8861] = {.lex_state = 321, .external_lex_state = 8}, + [8858] = {.lex_state = 0, .external_lex_state = 9}, + [8859] = {.lex_state = 0, .external_lex_state = 9}, + [8860] = {.lex_state = 321, .external_lex_state = 8}, + [8861] = {.lex_state = 0, .external_lex_state = 8}, [8862] = {.lex_state = 0, .external_lex_state = 8}, - [8863] = {.lex_state = 0, .external_lex_state = 9}, - [8864] = {.lex_state = 321, .external_lex_state = 8}, - [8865] = {.lex_state = 321, .external_lex_state = 8}, + [8863] = {.lex_state = 0, .external_lex_state = 8}, + [8864] = {.lex_state = 22, .external_lex_state = 8}, + [8865] = {.lex_state = 0, .external_lex_state = 8}, [8866] = {.lex_state = 0, .external_lex_state = 8}, - [8867] = {.lex_state = 0, .external_lex_state = 9}, + [8867] = {.lex_state = 0, .external_lex_state = 8}, [8868] = {.lex_state = 22, .external_lex_state = 8}, [8869] = {.lex_state = 0, .external_lex_state = 8}, - [8870] = {.lex_state = 22, .external_lex_state = 8}, + [8870] = {.lex_state = 0, .external_lex_state = 8}, [8871] = {.lex_state = 321, .external_lex_state = 8}, - [8872] = {.lex_state = 0, .external_lex_state = 8}, - [8873] = {.lex_state = 22, .external_lex_state = 8}, + [8872] = {.lex_state = 321, .external_lex_state = 8}, + [8873] = {.lex_state = 321, .external_lex_state = 8}, [8874] = {.lex_state = 0, .external_lex_state = 8}, [8875] = {.lex_state = 0, .external_lex_state = 8}, [8876] = {.lex_state = 0, .external_lex_state = 8}, - [8877] = {.lex_state = 321, .external_lex_state = 8}, - [8878] = {.lex_state = 0, .external_lex_state = 9}, + [8877] = {.lex_state = 0, .external_lex_state = 8}, + [8878] = {.lex_state = 0, .external_lex_state = 8}, [8879] = {.lex_state = 0, .external_lex_state = 8}, - [8880] = {.lex_state = 321, .external_lex_state = 8}, - [8881] = {.lex_state = 0, .external_lex_state = 8}, - [8882] = {.lex_state = 0, .external_lex_state = 8}, + [8880] = {.lex_state = 0, .external_lex_state = 8}, + [8881] = {.lex_state = 22, .external_lex_state = 8}, + [8882] = {.lex_state = 0, .external_lex_state = 9}, [8883] = {.lex_state = 0, .external_lex_state = 8}, [8884] = {.lex_state = 0, .external_lex_state = 8}, [8885] = {.lex_state = 22, .external_lex_state = 8}, [8886] = {.lex_state = 0, .external_lex_state = 8}, - [8887] = {.lex_state = 0, .external_lex_state = 8}, + [8887] = {.lex_state = 22, .external_lex_state = 8}, [8888] = {.lex_state = 0, .external_lex_state = 8}, [8889] = {.lex_state = 0, .external_lex_state = 8}, - [8890] = {.lex_state = 0, .external_lex_state = 8}, - [8891] = {.lex_state = 0, .external_lex_state = 8}, - [8892] = {.lex_state = 0, .external_lex_state = 8}, - [8893] = {.lex_state = 0, .external_lex_state = 8}, - [8894] = {.lex_state = 0, .external_lex_state = 8}, - [8895] = {.lex_state = 321, .external_lex_state = 8}, - [8896] = {.lex_state = 0, .external_lex_state = 8}, + [8890] = {.lex_state = 22, .external_lex_state = 8}, + [8891] = {.lex_state = 22, .external_lex_state = 8}, + [8892] = {.lex_state = 0, .external_lex_state = 9}, + [8893] = {.lex_state = 0, .external_lex_state = 9}, + [8894] = {.lex_state = 22, .external_lex_state = 8}, + [8895] = {.lex_state = 0, .external_lex_state = 8}, + [8896] = {.lex_state = 0, .external_lex_state = 9}, [8897] = {.lex_state = 0, .external_lex_state = 8}, [8898] = {.lex_state = 0, .external_lex_state = 8}, - [8899] = {.lex_state = 22, .external_lex_state = 9}, + [8899] = {.lex_state = 0, .external_lex_state = 8}, [8900] = {.lex_state = 0, .external_lex_state = 9}, - [8901] = {.lex_state = 321, .external_lex_state = 8}, - [8902] = {.lex_state = 0, .external_lex_state = 8}, - [8903] = {.lex_state = 321, .external_lex_state = 8}, - [8904] = {.lex_state = 321, .external_lex_state = 8}, + [8901] = {.lex_state = 22, .external_lex_state = 8}, + [8902] = {.lex_state = 22, .external_lex_state = 8}, + [8903] = {.lex_state = 22, .external_lex_state = 8}, + [8904] = {.lex_state = 22, .external_lex_state = 8}, [8905] = {.lex_state = 22, .external_lex_state = 8}, [8906] = {.lex_state = 0, .external_lex_state = 8}, [8907] = {.lex_state = 0, .external_lex_state = 8}, - [8908] = {.lex_state = 0, .external_lex_state = 8}, + [8908] = {.lex_state = 22, .external_lex_state = 8}, [8909] = {.lex_state = 0, .external_lex_state = 8}, - [8910] = {.lex_state = 22, .external_lex_state = 8}, - [8911] = {.lex_state = 321, .external_lex_state = 8}, + [8910] = {.lex_state = 0, .external_lex_state = 8}, + [8911] = {.lex_state = 0, .external_lex_state = 8}, [8912] = {.lex_state = 0, .external_lex_state = 8}, - [8913] = {.lex_state = 0, .external_lex_state = 9}, + [8913] = {.lex_state = 321, .external_lex_state = 8}, [8914] = {.lex_state = 0, .external_lex_state = 8}, - [8915] = {.lex_state = 321, .external_lex_state = 8}, - [8916] = {.lex_state = 0, .external_lex_state = 8}, - [8917] = {.lex_state = 22, .external_lex_state = 9}, - [8918] = {.lex_state = 22, .external_lex_state = 8}, - [8919] = {.lex_state = 0, .external_lex_state = 8}, + [8915] = {.lex_state = 22, .external_lex_state = 8}, + [8916] = {.lex_state = 22, .external_lex_state = 8}, + [8917] = {.lex_state = 0, .external_lex_state = 8}, + [8918] = {.lex_state = 0, .external_lex_state = 8}, + [8919] = {.lex_state = 22, .external_lex_state = 8}, [8920] = {.lex_state = 0, .external_lex_state = 8}, - [8921] = {.lex_state = 0, .external_lex_state = 9}, - [8922] = {.lex_state = 321, .external_lex_state = 8}, + [8921] = {.lex_state = 321, .external_lex_state = 8}, + [8922] = {.lex_state = 0, .external_lex_state = 8}, [8923] = {.lex_state = 0, .external_lex_state = 8}, - [8924] = {.lex_state = 321, .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}, - [8928] = {.lex_state = 0, .external_lex_state = 8}, + [8924] = {.lex_state = 0, .external_lex_state = 8}, + [8925] = {.lex_state = 321, .external_lex_state = 8}, + [8926] = {.lex_state = 0, .external_lex_state = 8}, + [8927] = {.lex_state = 321, .external_lex_state = 8}, + [8928] = {.lex_state = 321, .external_lex_state = 8}, [8929] = {.lex_state = 0, .external_lex_state = 8}, [8930] = {.lex_state = 22, .external_lex_state = 8}, [8931] = {.lex_state = 0, .external_lex_state = 8}, - [8932] = {.lex_state = 22, .external_lex_state = 8}, + [8932] = {.lex_state = 0, .external_lex_state = 8}, [8933] = {.lex_state = 0, .external_lex_state = 8}, - [8934] = {.lex_state = 22, .external_lex_state = 8}, - [8935] = {.lex_state = 0, .external_lex_state = 9}, + [8934] = {.lex_state = 321, .external_lex_state = 8}, + [8935] = {.lex_state = 0, .external_lex_state = 8}, [8936] = {.lex_state = 0, .external_lex_state = 8}, - [8937] = {.lex_state = 22, .external_lex_state = 8}, - [8938] = {.lex_state = 22, .external_lex_state = 8}, - [8939] = {.lex_state = 0, .external_lex_state = 9}, + [8937] = {.lex_state = 0, .external_lex_state = 8}, + [8938] = {.lex_state = 0, .external_lex_state = 8}, + [8939] = {.lex_state = 0, .external_lex_state = 8}, [8940] = {.lex_state = 321, .external_lex_state = 8}, - [8941] = {.lex_state = 0, .external_lex_state = 8}, + [8941] = {.lex_state = 22, .external_lex_state = 8}, [8942] = {.lex_state = 22, .external_lex_state = 8}, [8943] = {.lex_state = 0, .external_lex_state = 8}, - [8944] = {.lex_state = 22, .external_lex_state = 8}, - [8945] = {.lex_state = 22, .external_lex_state = 8}, + [8944] = {.lex_state = 0, .external_lex_state = 9}, + [8945] = {.lex_state = 0, .external_lex_state = 9}, [8946] = {.lex_state = 321, .external_lex_state = 8}, [8947] = {.lex_state = 22, .external_lex_state = 8}, - [8948] = {.lex_state = 22, .external_lex_state = 8}, - [8949] = {.lex_state = 22, .external_lex_state = 8}, + [8948] = {.lex_state = 0, .external_lex_state = 8}, + [8949] = {.lex_state = 0, .external_lex_state = 8}, [8950] = {.lex_state = 22, .external_lex_state = 8}, [8951] = {.lex_state = 0, .external_lex_state = 8}, - [8952] = {.lex_state = 0, .external_lex_state = 8}, + [8952] = {.lex_state = 321, .external_lex_state = 8}, [8953] = {.lex_state = 22, .external_lex_state = 8}, [8954] = {.lex_state = 0, .external_lex_state = 8}, - [8955] = {.lex_state = 321, .external_lex_state = 8}, - [8956] = {.lex_state = 0, .external_lex_state = 8}, + [8955] = {.lex_state = 0, .external_lex_state = 8}, + [8956] = {.lex_state = 22, .external_lex_state = 8}, [8957] = {.lex_state = 22, .external_lex_state = 8}, [8958] = {.lex_state = 0, .external_lex_state = 8}, [8959] = {.lex_state = 0, .external_lex_state = 8}, - [8960] = {.lex_state = 321, .external_lex_state = 8}, + [8960] = {.lex_state = 0, .external_lex_state = 8}, [8961] = {.lex_state = 0, .external_lex_state = 8}, [8962] = {.lex_state = 22, .external_lex_state = 8}, [8963] = {.lex_state = 0, .external_lex_state = 8}, - [8964] = {.lex_state = 0, .external_lex_state = 9}, + [8964] = {.lex_state = 22, .external_lex_state = 8}, [8965] = {.lex_state = 22, .external_lex_state = 8}, [8966] = {.lex_state = 0, .external_lex_state = 8}, [8967] = {.lex_state = 0, .external_lex_state = 8}, - [8968] = {.lex_state = 0, .external_lex_state = 8}, + [8968] = {.lex_state = 321, .external_lex_state = 8}, [8969] = {.lex_state = 0, .external_lex_state = 8}, - [8970] = {.lex_state = 0, .external_lex_state = 8}, - [8971] = {.lex_state = 0, .external_lex_state = 8}, + [8970] = {.lex_state = 22, .external_lex_state = 8}, + [8971] = {.lex_state = 22, .external_lex_state = 8}, [8972] = {.lex_state = 0, .external_lex_state = 8}, - [8973] = {.lex_state = 0, .external_lex_state = 8}, + [8973] = {.lex_state = 321, .external_lex_state = 8}, [8974] = {.lex_state = 321, .external_lex_state = 8}, - [8975] = {.lex_state = 0, .external_lex_state = 8}, - [8976] = {.lex_state = 321, .external_lex_state = 8}, + [8975] = {.lex_state = 321, .external_lex_state = 8}, + [8976] = {.lex_state = 0, .external_lex_state = 8}, [8977] = {.lex_state = 0, .external_lex_state = 8}, [8978] = {.lex_state = 321, .external_lex_state = 8}, - [8979] = {.lex_state = 22, .external_lex_state = 8}, + [8979] = {.lex_state = 0, .external_lex_state = 8}, [8980] = {.lex_state = 321, .external_lex_state = 8}, [8981] = {.lex_state = 0, .external_lex_state = 8}, [8982] = {.lex_state = 321, .external_lex_state = 8}, [8983] = {.lex_state = 0, .external_lex_state = 8}, - [8984] = {.lex_state = 321, .external_lex_state = 8}, - [8985] = {.lex_state = 0, .external_lex_state = 8}, + [8984] = {.lex_state = 0, .external_lex_state = 9}, + [8985] = {.lex_state = 0, .external_lex_state = 9}, [8986] = {.lex_state = 0, .external_lex_state = 8}, - [8987] = {.lex_state = 321, .external_lex_state = 8}, + [8987] = {.lex_state = 0, .external_lex_state = 8}, [8988] = {.lex_state = 0, .external_lex_state = 8}, [8989] = {.lex_state = 22, .external_lex_state = 8}, - [8990] = {.lex_state = 0, .external_lex_state = 9}, + [8990] = {.lex_state = 0, .external_lex_state = 8}, [8991] = {.lex_state = 321, .external_lex_state = 8}, [8992] = {.lex_state = 0, .external_lex_state = 8}, - [8993] = {.lex_state = 321, .external_lex_state = 8}, - [8994] = {.lex_state = 321, .external_lex_state = 8}, - [8995] = {.lex_state = 0, .external_lex_state = 8}, + [8993] = {.lex_state = 22, .external_lex_state = 8}, + [8994] = {.lex_state = 0, .external_lex_state = 9}, + [8995] = {.lex_state = 22, .external_lex_state = 8}, [8996] = {.lex_state = 0, .external_lex_state = 8}, - [8997] = {.lex_state = 22, .external_lex_state = 8}, - [8998] = {.lex_state = 0, .external_lex_state = 8}, + [8997] = {.lex_state = 0, .external_lex_state = 8}, + [8998] = {.lex_state = 22, .external_lex_state = 8}, [8999] = {.lex_state = 321, .external_lex_state = 8}, [9000] = {.lex_state = 0, .external_lex_state = 8}, - [9001] = {.lex_state = 0, .external_lex_state = 8}, - [9002] = {.lex_state = 321, .external_lex_state = 8}, - [9003] = {.lex_state = 0, .external_lex_state = 8}, - [9004] = {.lex_state = 0, .external_lex_state = 8}, + [9001] = {.lex_state = 22, .external_lex_state = 8}, + [9002] = {.lex_state = 0, .external_lex_state = 8}, + [9003] = {.lex_state = 22, .external_lex_state = 8}, + [9004] = {.lex_state = 22, .external_lex_state = 8}, [9005] = {.lex_state = 0, .external_lex_state = 8}, [9006] = {.lex_state = 22, .external_lex_state = 8}, [9007] = {.lex_state = 0, .external_lex_state = 8}, - [9008] = {.lex_state = 0, .external_lex_state = 8}, + [9008] = {.lex_state = 22, .external_lex_state = 8}, [9009] = {.lex_state = 0, .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}, + [9010] = {.lex_state = 22, .external_lex_state = 8}, + [9011] = {.lex_state = 22, .external_lex_state = 9}, + [9012] = {.lex_state = 321, .external_lex_state = 8}, [9013] = {.lex_state = 0, .external_lex_state = 8}, - [9014] = {.lex_state = 22, .external_lex_state = 8}, - [9015] = {.lex_state = 321, .external_lex_state = 8}, + [9014] = {.lex_state = 0, .external_lex_state = 9}, + [9015] = {.lex_state = 0, .external_lex_state = 8}, [9016] = {.lex_state = 0, .external_lex_state = 8}, [9017] = {.lex_state = 0, .external_lex_state = 8}, [9018] = {.lex_state = 0, .external_lex_state = 8}, - [9019] = {.lex_state = 0, .external_lex_state = 8}, - [9020] = {.lex_state = 321, .external_lex_state = 8}, - [9021] = {.lex_state = 22, .external_lex_state = 8}, - [9022] = {.lex_state = 0, .external_lex_state = 8}, + [9019] = {.lex_state = 321, .external_lex_state = 8}, + [9020] = {.lex_state = 22, .external_lex_state = 8}, + [9021] = {.lex_state = 0, .external_lex_state = 8}, + [9022] = {.lex_state = 321, .external_lex_state = 8}, [9023] = {.lex_state = 0, .external_lex_state = 8}, - [9024] = {.lex_state = 22, .external_lex_state = 8}, - [9025] = {.lex_state = 321, .external_lex_state = 8}, - [9026] = {.lex_state = 22, .external_lex_state = 8}, - [9027] = {.lex_state = 0, .external_lex_state = 9}, - [9028] = {.lex_state = 0, .external_lex_state = 8}, + [9024] = {.lex_state = 0, .external_lex_state = 8}, + [9025] = {.lex_state = 22, .external_lex_state = 8}, + [9026] = {.lex_state = 321, .external_lex_state = 8}, + [9027] = {.lex_state = 0, .external_lex_state = 8}, + [9028] = {.lex_state = 321, .external_lex_state = 8}, [9029] = {.lex_state = 0, .external_lex_state = 8}, - [9030] = {.lex_state = 22, .external_lex_state = 8}, + [9030] = {.lex_state = 0, .external_lex_state = 8}, [9031] = {.lex_state = 321, .external_lex_state = 8}, - [9032] = {.lex_state = 321, .external_lex_state = 8}, - [9033] = {.lex_state = 0, .external_lex_state = 8}, - [9034] = {.lex_state = 0, .external_lex_state = 8}, - [9035] = {.lex_state = 321, .external_lex_state = 8}, - [9036] = {.lex_state = 0, .external_lex_state = 8}, + [9032] = {.lex_state = 0, .external_lex_state = 8}, + [9033] = {.lex_state = 22, .external_lex_state = 8}, + [9034] = {.lex_state = 22, .external_lex_state = 8}, + [9035] = {.lex_state = 0, .external_lex_state = 8}, + [9036] = {.lex_state = 321, .external_lex_state = 8}, [9037] = {.lex_state = 0, .external_lex_state = 8}, - [9038] = {.lex_state = 22, .external_lex_state = 8}, - [9039] = {.lex_state = 22, .external_lex_state = 8}, + [9038] = {.lex_state = 321, .external_lex_state = 8}, + [9039] = {.lex_state = 0, .external_lex_state = 8}, [9040] = {.lex_state = 321, .external_lex_state = 8}, [9041] = {.lex_state = 22, .external_lex_state = 8}, - [9042] = {.lex_state = 0, .external_lex_state = 8}, - [9043] = {.lex_state = 0, .external_lex_state = 8}, + [9042] = {.lex_state = 321, .external_lex_state = 8}, + [9043] = {.lex_state = 22, .external_lex_state = 8}, [9044] = {.lex_state = 22, .external_lex_state = 8}, - [9045] = {.lex_state = 0, .external_lex_state = 8}, - [9046] = {.lex_state = 0, .external_lex_state = 8}, + [9045] = {.lex_state = 22, .external_lex_state = 8}, + [9046] = {.lex_state = 22, .external_lex_state = 8}, [9047] = {.lex_state = 22, .external_lex_state = 8}, [9048] = {.lex_state = 0, .external_lex_state = 8}, - [9049] = {.lex_state = 0, .external_lex_state = 8}, - [9050] = {.lex_state = 0, .external_lex_state = 8}, + [9049] = {.lex_state = 321, .external_lex_state = 8}, + [9050] = {.lex_state = 321, .external_lex_state = 8}, [9051] = {.lex_state = 0, .external_lex_state = 8}, [9052] = {.lex_state = 0, .external_lex_state = 8}, - [9053] = {.lex_state = 321, .external_lex_state = 8}, - [9054] = {.lex_state = 321, .external_lex_state = 8}, + [9053] = {.lex_state = 0, .external_lex_state = 8}, + [9054] = {.lex_state = 22, .external_lex_state = 8}, [9055] = {.lex_state = 0, .external_lex_state = 8}, - [9056] = {.lex_state = 321, .external_lex_state = 8}, - [9057] = {.lex_state = 0, .external_lex_state = 8}, - [9058] = {.lex_state = 321, .external_lex_state = 8}, - [9059] = {.lex_state = 0, .external_lex_state = 8}, + [9056] = {.lex_state = 22, .external_lex_state = 8}, + [9057] = {.lex_state = 321, .external_lex_state = 8}, + [9058] = {.lex_state = 0, .external_lex_state = 8}, + [9059] = {.lex_state = 321, .external_lex_state = 8}, [9060] = {.lex_state = 0, .external_lex_state = 8}, [9061] = {.lex_state = 0, .external_lex_state = 8}, - [9062] = {.lex_state = 0, .external_lex_state = 8}, - [9063] = {.lex_state = 0, .external_lex_state = 8}, + [9062] = {.lex_state = 321, .external_lex_state = 8}, + [9063] = {.lex_state = 321, .external_lex_state = 8}, [9064] = {.lex_state = 0, .external_lex_state = 8}, - [9065] = {.lex_state = 321, .external_lex_state = 8}, + [9065] = {.lex_state = 0, .external_lex_state = 8}, [9066] = {.lex_state = 0, .external_lex_state = 8}, - [9067] = {.lex_state = 0, .external_lex_state = 8}, - [9068] = {.lex_state = 22, .external_lex_state = 8}, - [9069] = {.lex_state = 321, .external_lex_state = 8}, - [9070] = {.lex_state = 22, .external_lex_state = 8}, - [9071] = {.lex_state = 321, .external_lex_state = 8}, + [9067] = {.lex_state = 321, .external_lex_state = 8}, + [9068] = {.lex_state = 0, .external_lex_state = 8}, + [9069] = {.lex_state = 22, .external_lex_state = 8}, + [9070] = {.lex_state = 0, .external_lex_state = 8}, + [9071] = {.lex_state = 22, .external_lex_state = 8}, [9072] = {.lex_state = 0, .external_lex_state = 8}, - [9073] = {.lex_state = 22, .external_lex_state = 8}, - [9074] = {.lex_state = 22, .external_lex_state = 8}, - [9075] = {.lex_state = 22, .external_lex_state = 8}, + [9073] = {.lex_state = 0, .external_lex_state = 8}, + [9074] = {.lex_state = 321, .external_lex_state = 8}, + [9075] = {.lex_state = 0, .external_lex_state = 8}, [9076] = {.lex_state = 22, .external_lex_state = 8}, - [9077] = {.lex_state = 0, .external_lex_state = 8}, + [9077] = {.lex_state = 22, .external_lex_state = 8}, [9078] = {.lex_state = 22, .external_lex_state = 8}, [9079] = {.lex_state = 22, .external_lex_state = 8}, [9080] = {.lex_state = 22, .external_lex_state = 8}, [9081] = {.lex_state = 321, .external_lex_state = 8}, - [9082] = {.lex_state = 0, .external_lex_state = 8}, + [9082] = {.lex_state = 22, .external_lex_state = 8}, [9083] = {.lex_state = 0, .external_lex_state = 8}, - [9084] = {.lex_state = 0, .external_lex_state = 8}, - [9085] = {.lex_state = 0, .external_lex_state = 8}, + [9084] = {.lex_state = 22, .external_lex_state = 8}, + [9085] = {.lex_state = 22, .external_lex_state = 8}, [9086] = {.lex_state = 0, .external_lex_state = 8}, [9087] = {.lex_state = 0, .external_lex_state = 8}, - [9088] = {.lex_state = 0, .external_lex_state = 8}, + [9088] = {.lex_state = 321, .external_lex_state = 8}, [9089] = {.lex_state = 0, .external_lex_state = 8}, - [9090] = {.lex_state = 22, .external_lex_state = 8}, - [9091] = {.lex_state = 0, .external_lex_state = 9}, - [9092] = {.lex_state = 22, .external_lex_state = 8}, + [9090] = {.lex_state = 0, .external_lex_state = 8}, + [9091] = {.lex_state = 321, .external_lex_state = 8}, + [9092] = {.lex_state = 0, .external_lex_state = 8}, [9093] = {.lex_state = 0, .external_lex_state = 8}, - [9094] = {.lex_state = 0, .external_lex_state = 8}, - [9095] = {.lex_state = 0, .external_lex_state = 8}, - [9096] = {.lex_state = 0, .external_lex_state = 8}, - [9097] = {.lex_state = 0, .external_lex_state = 9}, + [9094] = {.lex_state = 321, .external_lex_state = 8}, + [9095] = {.lex_state = 0, .external_lex_state = 9}, + [9096] = {.lex_state = 22, .external_lex_state = 8}, + [9097] = {.lex_state = 0, .external_lex_state = 8}, [9098] = {.lex_state = 0, .external_lex_state = 8}, [9099] = {.lex_state = 0, .external_lex_state = 8}, [9100] = {.lex_state = 0, .external_lex_state = 8}, @@ -29229,7 +29238,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9112] = {.lex_state = 0, .external_lex_state = 8}, [9113] = {.lex_state = 0, .external_lex_state = 8}, [9114] = {.lex_state = 0, .external_lex_state = 8}, - [9115] = {.lex_state = 0, .external_lex_state = 8}, + [9115] = {.lex_state = 32, .external_lex_state = 8}, [9116] = {.lex_state = 0, .external_lex_state = 8}, [9117] = {.lex_state = 0, .external_lex_state = 8}, [9118] = {.lex_state = 0, .external_lex_state = 8}, @@ -29239,22 +29248,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9122] = {.lex_state = 0, .external_lex_state = 8}, [9123] = {.lex_state = 0, .external_lex_state = 8}, [9124] = {.lex_state = 0, .external_lex_state = 8}, - [9125] = {.lex_state = 0, .external_lex_state = 9}, + [9125] = {.lex_state = 0, .external_lex_state = 8}, [9126] = {.lex_state = 0, .external_lex_state = 8}, [9127] = {.lex_state = 0, .external_lex_state = 8}, [9128] = {.lex_state = 0, .external_lex_state = 8}, [9129] = {.lex_state = 0, .external_lex_state = 8}, [9130] = {.lex_state = 0, .external_lex_state = 8}, [9131] = {.lex_state = 0, .external_lex_state = 8}, - [9132] = {.lex_state = 0, .external_lex_state = 9}, + [9132] = {.lex_state = 0, .external_lex_state = 8}, [9133] = {.lex_state = 0, .external_lex_state = 8}, [9134] = {.lex_state = 0, .external_lex_state = 8}, [9135] = {.lex_state = 0, .external_lex_state = 8}, [9136] = {.lex_state = 0, .external_lex_state = 8}, [9137] = {.lex_state = 0, .external_lex_state = 8}, [9138] = {.lex_state = 0, .external_lex_state = 8}, - [9139] = {.lex_state = 0, .external_lex_state = 9}, - [9140] = {.lex_state = 32, .external_lex_state = 8}, + [9139] = {.lex_state = 0, .external_lex_state = 8}, + [9140] = {.lex_state = 0, .external_lex_state = 8}, [9141] = {.lex_state = 0, .external_lex_state = 8}, [9142] = {.lex_state = 0, .external_lex_state = 8}, [9143] = {.lex_state = 0, .external_lex_state = 8}, @@ -29265,51 +29274,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9148] = {.lex_state = 0, .external_lex_state = 8}, [9149] = {.lex_state = 0, .external_lex_state = 8}, [9150] = {.lex_state = 0, .external_lex_state = 8}, - [9151] = {.lex_state = 0, .external_lex_state = 9}, + [9151] = {.lex_state = 0, .external_lex_state = 8}, [9152] = {.lex_state = 0, .external_lex_state = 8}, - [9153] = {.lex_state = 0, .external_lex_state = 8}, + [9153] = {.lex_state = 0, .external_lex_state = 9}, [9154] = {.lex_state = 0, .external_lex_state = 8}, [9155] = {.lex_state = 0, .external_lex_state = 8}, [9156] = {.lex_state = 0, .external_lex_state = 8}, [9157] = {.lex_state = 0, .external_lex_state = 8}, - [9158] = {.lex_state = 0, .external_lex_state = 9}, - [9159] = {.lex_state = 32, .external_lex_state = 8}, + [9158] = {.lex_state = 0, .external_lex_state = 8}, + [9159] = {.lex_state = 0, .external_lex_state = 8}, [9160] = {.lex_state = 0, .external_lex_state = 8}, [9161] = {.lex_state = 0, .external_lex_state = 8}, [9162] = {.lex_state = 0, .external_lex_state = 8}, [9163] = {.lex_state = 0, .external_lex_state = 8}, [9164] = {.lex_state = 0, .external_lex_state = 8}, - [9165] = {.lex_state = 0, .external_lex_state = 9}, + [9165] = {.lex_state = 0, .external_lex_state = 8}, [9166] = {.lex_state = 0, .external_lex_state = 8}, [9167] = {.lex_state = 0, .external_lex_state = 8}, [9168] = {.lex_state = 0, .external_lex_state = 8}, - [9169] = {.lex_state = 0, .external_lex_state = 9}, + [9169] = {.lex_state = 0, .external_lex_state = 8}, [9170] = {.lex_state = 0, .external_lex_state = 8}, - [9171] = {.lex_state = 0, .external_lex_state = 8}, + [9171] = {.lex_state = 0, .external_lex_state = 9}, [9172] = {.lex_state = 0, .external_lex_state = 8}, [9173] = {.lex_state = 0, .external_lex_state = 8}, - [9174] = {.lex_state = 0, .external_lex_state = 8}, + [9174] = {.lex_state = 32, .external_lex_state = 8}, [9175] = {.lex_state = 0, .external_lex_state = 8}, - [9176] = {.lex_state = 0, .external_lex_state = 9}, - [9177] = {.lex_state = 0, .external_lex_state = 9}, + [9176] = {.lex_state = 0, .external_lex_state = 8}, + [9177] = {.lex_state = 0, .external_lex_state = 8}, [9178] = {.lex_state = 0, .external_lex_state = 8}, - [9179] = {.lex_state = 0, .external_lex_state = 9}, + [9179] = {.lex_state = 0, .external_lex_state = 8}, [9180] = {.lex_state = 0, .external_lex_state = 8}, [9181] = {.lex_state = 0, .external_lex_state = 8}, [9182] = {.lex_state = 0, .external_lex_state = 8}, [9183] = {.lex_state = 0, .external_lex_state = 8}, [9184] = {.lex_state = 0, .external_lex_state = 8}, - [9185] = {.lex_state = 0, .external_lex_state = 9}, + [9185] = {.lex_state = 0, .external_lex_state = 8}, [9186] = {.lex_state = 0, .external_lex_state = 8}, - [9187] = {.lex_state = 32, .external_lex_state = 8}, - [9188] = {.lex_state = 32, .external_lex_state = 8}, + [9187] = {.lex_state = 0, .external_lex_state = 8}, + [9188] = {.lex_state = 0, .external_lex_state = 8}, [9189] = {.lex_state = 0, .external_lex_state = 8}, [9190] = {.lex_state = 0, .external_lex_state = 8}, [9191] = {.lex_state = 0, .external_lex_state = 8}, [9192] = {.lex_state = 0, .external_lex_state = 8}, [9193] = {.lex_state = 0, .external_lex_state = 8}, [9194] = {.lex_state = 0, .external_lex_state = 8}, - [9195] = {.lex_state = 0, .external_lex_state = 9}, + [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}, @@ -29323,31 +29332,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9206] = {.lex_state = 0, .external_lex_state = 8}, [9207] = {.lex_state = 0, .external_lex_state = 8}, [9208] = {.lex_state = 0, .external_lex_state = 8}, - [9209] = {.lex_state = 0, .external_lex_state = 8}, + [9209] = {.lex_state = 321, .external_lex_state = 8}, [9210] = {.lex_state = 0, .external_lex_state = 8}, - [9211] = {.lex_state = 0, .external_lex_state = 8}, - [9212] = {.lex_state = 0, .external_lex_state = 8}, + [9211] = {.lex_state = 32, .external_lex_state = 8}, + [9212] = {.lex_state = 0, .external_lex_state = 9}, [9213] = {.lex_state = 0, .external_lex_state = 8}, - [9214] = {.lex_state = 0, .external_lex_state = 8}, - [9215] = {.lex_state = 0, .external_lex_state = 9}, - [9216] = {.lex_state = 0, .external_lex_state = 8}, + [9214] = {.lex_state = 0, .external_lex_state = 9}, + [9215] = {.lex_state = 0, .external_lex_state = 8}, + [9216] = {.lex_state = 0, .external_lex_state = 9}, [9217] = {.lex_state = 0, .external_lex_state = 8}, - [9218] = {.lex_state = 0, .external_lex_state = 8}, - [9219] = {.lex_state = 0, .external_lex_state = 8}, - [9220] = {.lex_state = 0, .external_lex_state = 8}, - [9221] = {.lex_state = 0, .external_lex_state = 8}, - [9222] = {.lex_state = 0, .external_lex_state = 8}, - [9223] = {.lex_state = 0, .external_lex_state = 8}, - [9224] = {.lex_state = 0, .external_lex_state = 9}, + [9218] = {.lex_state = 32, .external_lex_state = 8}, + [9219] = {.lex_state = 32, .external_lex_state = 8}, + [9220] = {.lex_state = 0, .external_lex_state = 9}, + [9221] = {.lex_state = 0, .external_lex_state = 9}, + [9222] = {.lex_state = 0, .external_lex_state = 9}, + [9223] = {.lex_state = 0, .external_lex_state = 9}, + [9224] = {.lex_state = 0, .external_lex_state = 8}, [9225] = {.lex_state = 0, .external_lex_state = 8}, [9226] = {.lex_state = 0, .external_lex_state = 8}, - [9227] = {.lex_state = 0, .external_lex_state = 8}, + [9227] = {.lex_state = 32, .external_lex_state = 8}, [9228] = {.lex_state = 0, .external_lex_state = 8}, - [9229] = {.lex_state = 0, .external_lex_state = 8}, - [9230] = {.lex_state = 32, .external_lex_state = 8}, + [9229] = {.lex_state = 0, .external_lex_state = 9}, + [9230] = {.lex_state = 22, .external_lex_state = 11}, [9231] = {.lex_state = 0, .external_lex_state = 8}, - [9232] = {.lex_state = 0, .external_lex_state = 8}, - [9233] = {.lex_state = 32, .external_lex_state = 8}, + [9232] = {.lex_state = 32, .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}, @@ -29355,565 +29364,565 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9238] = {.lex_state = 0, .external_lex_state = 8}, [9239] = {.lex_state = 0, .external_lex_state = 8}, [9240] = {.lex_state = 0, .external_lex_state = 9}, - [9241] = {.lex_state = 0, .external_lex_state = 9}, - [9242] = {.lex_state = 0, .external_lex_state = 9}, + [9241] = {.lex_state = 0, .external_lex_state = 8}, + [9242] = {.lex_state = 32, .external_lex_state = 8}, [9243] = {.lex_state = 0, .external_lex_state = 9}, [9244] = {.lex_state = 0, .external_lex_state = 8}, - [9245] = {.lex_state = 32, .external_lex_state = 8}, + [9245] = {.lex_state = 0, .external_lex_state = 8}, [9246] = {.lex_state = 32, .external_lex_state = 8}, - [9247] = {.lex_state = 32, .external_lex_state = 8}, - [9248] = {.lex_state = 22, .external_lex_state = 8}, - [9249] = {.lex_state = 0, .external_lex_state = 8}, - [9250] = {.lex_state = 0, .external_lex_state = 8}, + [9247] = {.lex_state = 0, .external_lex_state = 9}, + [9248] = {.lex_state = 0, .external_lex_state = 8}, + [9249] = {.lex_state = 0, .external_lex_state = 9}, + [9250] = {.lex_state = 0, .external_lex_state = 9}, [9251] = {.lex_state = 0, .external_lex_state = 9}, [9252] = {.lex_state = 0, .external_lex_state = 9}, [9253] = {.lex_state = 0, .external_lex_state = 9}, [9254] = {.lex_state = 0, .external_lex_state = 9}, - [9255] = {.lex_state = 0, .external_lex_state = 9}, + [9255] = {.lex_state = 0, .external_lex_state = 8}, [9256] = {.lex_state = 0, .external_lex_state = 8}, [9257] = {.lex_state = 32, .external_lex_state = 8}, [9258] = {.lex_state = 0, .external_lex_state = 8}, - [9259] = {.lex_state = 0, .external_lex_state = 8}, - [9260] = {.lex_state = 321, .external_lex_state = 8}, + [9259] = {.lex_state = 22, .external_lex_state = 8}, + [9260] = {.lex_state = 0, .external_lex_state = 9}, [9261] = {.lex_state = 0, .external_lex_state = 8}, - [9262] = {.lex_state = 0, .external_lex_state = 8}, + [9262] = {.lex_state = 0, .external_lex_state = 9}, [9263] = {.lex_state = 0, .external_lex_state = 8}, [9264] = {.lex_state = 0, .external_lex_state = 9}, - [9265] = {.lex_state = 0, .external_lex_state = 8}, + [9265] = {.lex_state = 0, .external_lex_state = 9}, [9266] = {.lex_state = 0, .external_lex_state = 8}, - [9267] = {.lex_state = 0, .external_lex_state = 9}, + [9267] = {.lex_state = 0, .external_lex_state = 8}, [9268] = {.lex_state = 0, .external_lex_state = 8}, - [9269] = {.lex_state = 0, .external_lex_state = 8}, - [9270] = {.lex_state = 0, .external_lex_state = 8}, + [9269] = {.lex_state = 0, .external_lex_state = 9}, + [9270] = {.lex_state = 0, .external_lex_state = 9}, [9271] = {.lex_state = 0, .external_lex_state = 8}, - [9272] = {.lex_state = 0, .external_lex_state = 8}, - [9273] = {.lex_state = 0, .external_lex_state = 8}, - [9274] = {.lex_state = 32, .external_lex_state = 8}, - [9275] = {.lex_state = 0, .external_lex_state = 8}, - [9276] = {.lex_state = 32, .external_lex_state = 8}, - [9277] = {.lex_state = 0, .external_lex_state = 8}, - [9278] = {.lex_state = 0, .external_lex_state = 9}, - [9279] = {.lex_state = 22, .external_lex_state = 11}, - [9280] = {.lex_state = 0, .external_lex_state = 8}, + [9272] = {.lex_state = 32, .external_lex_state = 8}, + [9273] = {.lex_state = 0, .external_lex_state = 9}, + [9274] = {.lex_state = 0, .external_lex_state = 8}, + [9275] = {.lex_state = 0, .external_lex_state = 9}, + [9276] = {.lex_state = 0, .external_lex_state = 8}, + [9277] = {.lex_state = 0, .external_lex_state = 9}, + [9278] = {.lex_state = 0, .external_lex_state = 8}, + [9279] = {.lex_state = 32, .external_lex_state = 8}, + [9280] = {.lex_state = 32, .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}, [9284] = {.lex_state = 0, .external_lex_state = 9}, - [9285] = {.lex_state = 0, .external_lex_state = 8}, - [9286] = {.lex_state = 0, .external_lex_state = 9}, - [9287] = {.lex_state = 0, .external_lex_state = 8}, + [9285] = {.lex_state = 0, .external_lex_state = 9}, + [9286] = {.lex_state = 32, .external_lex_state = 8}, + [9287] = {.lex_state = 0, .external_lex_state = 9}, [9288] = {.lex_state = 0, .external_lex_state = 8}, - [9289] = {.lex_state = 0, .external_lex_state = 8}, - [9290] = {.lex_state = 0, .external_lex_state = 9}, - [9291] = {.lex_state = 0, .external_lex_state = 8}, - [9292] = {.lex_state = 0, .external_lex_state = 9}, + [9289] = {.lex_state = 22, .external_lex_state = 8}, + [9290] = {.lex_state = 321, .external_lex_state = 8}, + [9291] = {.lex_state = 0, .external_lex_state = 9}, + [9292] = {.lex_state = 0, .external_lex_state = 8}, [9293] = {.lex_state = 0, .external_lex_state = 8}, - [9294] = {.lex_state = 0, .external_lex_state = 9}, - [9295] = {.lex_state = 0, .external_lex_state = 8}, - [9296] = {.lex_state = 32, .external_lex_state = 8}, - [9297] = {.lex_state = 0, .external_lex_state = 9}, - [9298] = {.lex_state = 0, .external_lex_state = 8}, - [9299] = {.lex_state = 0, .external_lex_state = 8}, + [9294] = {.lex_state = 0, .external_lex_state = 8}, + [9295] = {.lex_state = 22, .external_lex_state = 8}, + [9296] = {.lex_state = 0, .external_lex_state = 9}, + [9297] = {.lex_state = 22, .external_lex_state = 8}, + [9298] = {.lex_state = 22, .external_lex_state = 8}, + [9299] = {.lex_state = 22, .external_lex_state = 8}, [9300] = {.lex_state = 0, .external_lex_state = 8}, - [9301] = {.lex_state = 0, .external_lex_state = 9}, - [9302] = {.lex_state = 0, .external_lex_state = 8}, - [9303] = {.lex_state = 0, .external_lex_state = 8}, - [9304] = {.lex_state = 0, .external_lex_state = 8}, + [9301] = {.lex_state = 22, .external_lex_state = 8}, + [9302] = {.lex_state = 22, .external_lex_state = 8}, + [9303] = {.lex_state = 0, .external_lex_state = 9}, + [9304] = {.lex_state = 32, .external_lex_state = 8}, [9305] = {.lex_state = 0, .external_lex_state = 9}, [9306] = {.lex_state = 0, .external_lex_state = 8}, [9307] = {.lex_state = 0, .external_lex_state = 8}, - [9308] = {.lex_state = 0, .external_lex_state = 9}, + [9308] = {.lex_state = 0, .external_lex_state = 8}, [9309] = {.lex_state = 0, .external_lex_state = 8}, [9310] = {.lex_state = 0, .external_lex_state = 8}, - [9311] = {.lex_state = 0, .external_lex_state = 9}, - [9312] = {.lex_state = 32, .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 = 9}, - [9315] = {.lex_state = 22, .external_lex_state = 11}, + [9314] = {.lex_state = 0, .external_lex_state = 8}, + [9315] = {.lex_state = 22, .external_lex_state = 8}, [9316] = {.lex_state = 0, .external_lex_state = 8}, [9317] = {.lex_state = 0, .external_lex_state = 8}, [9318] = {.lex_state = 0, .external_lex_state = 8}, - [9319] = {.lex_state = 0, .external_lex_state = 9}, + [9319] = {.lex_state = 32, .external_lex_state = 8}, [9320] = {.lex_state = 0, .external_lex_state = 8}, [9321] = {.lex_state = 0, .external_lex_state = 8}, - [9322] = {.lex_state = 32, .external_lex_state = 8}, - [9323] = {.lex_state = 0, .external_lex_state = 9}, + [9322] = {.lex_state = 0, .external_lex_state = 8}, + [9323] = {.lex_state = 0, .external_lex_state = 8}, [9324] = {.lex_state = 0, .external_lex_state = 8}, [9325] = {.lex_state = 0, .external_lex_state = 8}, - [9326] = {.lex_state = 0, .external_lex_state = 8}, - [9327] = {.lex_state = 0, .external_lex_state = 9}, + [9326] = {.lex_state = 0, .external_lex_state = 9}, + [9327] = {.lex_state = 32, .external_lex_state = 8}, [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 = 9}, + [9330] = {.lex_state = 321, .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 = 9}, + [9333] = {.lex_state = 0, .external_lex_state = 8}, [9334] = {.lex_state = 0, .external_lex_state = 8}, [9335] = {.lex_state = 0, .external_lex_state = 8}, [9336] = {.lex_state = 0, .external_lex_state = 8}, [9337] = {.lex_state = 0, .external_lex_state = 8}, [9338] = {.lex_state = 0, .external_lex_state = 8}, [9339] = {.lex_state = 0, .external_lex_state = 8}, - [9340] = {.lex_state = 321, .external_lex_state = 8}, - [9341] = {.lex_state = 0, .external_lex_state = 9}, + [9340] = {.lex_state = 0, .external_lex_state = 8}, + [9341] = {.lex_state = 0, .external_lex_state = 8}, [9342] = {.lex_state = 0, .external_lex_state = 8}, [9343] = {.lex_state = 0, .external_lex_state = 8}, [9344] = {.lex_state = 0, .external_lex_state = 8}, [9345] = {.lex_state = 0, .external_lex_state = 8}, [9346] = {.lex_state = 0, .external_lex_state = 8}, - [9347] = {.lex_state = 0, .external_lex_state = 9}, - [9348] = {.lex_state = 0, .external_lex_state = 9}, + [9347] = {.lex_state = 0, .external_lex_state = 8}, + [9348] = {.lex_state = 0, .external_lex_state = 8}, [9349] = {.lex_state = 0, .external_lex_state = 8}, - [9350] = {.lex_state = 0, .external_lex_state = 8}, + [9350] = {.lex_state = 0, .external_lex_state = 9}, [9351] = {.lex_state = 0, .external_lex_state = 8}, - [9352] = {.lex_state = 32, .external_lex_state = 8}, - [9353] = {.lex_state = 22, .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 = 9}, - [9355] = {.lex_state = 0, .external_lex_state = 9}, + [9355] = {.lex_state = 0, .external_lex_state = 8}, [9356] = {.lex_state = 0, .external_lex_state = 9}, [9357] = {.lex_state = 0, .external_lex_state = 8}, - [9358] = {.lex_state = 0, .external_lex_state = 8}, - [9359] = {.lex_state = 0, .external_lex_state = 8}, + [9358] = {.lex_state = 22, .external_lex_state = 11}, + [9359] = {.lex_state = 0, .external_lex_state = 9}, [9360] = {.lex_state = 0, .external_lex_state = 8}, [9361] = {.lex_state = 0, .external_lex_state = 8}, [9362] = {.lex_state = 0, .external_lex_state = 8}, [9363] = {.lex_state = 0, .external_lex_state = 8}, - [9364] = {.lex_state = 0, .external_lex_state = 8}, - [9365] = {.lex_state = 32, .external_lex_state = 8}, - [9366] = {.lex_state = 32, .external_lex_state = 8}, - [9367] = {.lex_state = 22, .external_lex_state = 8}, - [9368] = {.lex_state = 0, .external_lex_state = 8}, - [9369] = {.lex_state = 0, .external_lex_state = 9}, + [9364] = {.lex_state = 0, .external_lex_state = 9}, + [9365] = {.lex_state = 0, .external_lex_state = 8}, + [9366] = {.lex_state = 0, .external_lex_state = 8}, + [9367] = {.lex_state = 0, .external_lex_state = 8}, + [9368] = {.lex_state = 22, .external_lex_state = 8}, + [9369] = {.lex_state = 32, .external_lex_state = 8}, [9370] = {.lex_state = 0, .external_lex_state = 9}, - [9371] = {.lex_state = 0, .external_lex_state = 8}, - [9372] = {.lex_state = 0, .external_lex_state = 9}, - [9373] = {.lex_state = 0, .external_lex_state = 8}, + [9371] = {.lex_state = 22, .external_lex_state = 8}, + [9372] = {.lex_state = 0, .external_lex_state = 8}, + [9373] = {.lex_state = 0, .external_lex_state = 9}, [9374] = {.lex_state = 0, .external_lex_state = 8}, - [9375] = {.lex_state = 0, .external_lex_state = 8}, + [9375] = {.lex_state = 0, .external_lex_state = 9}, [9376] = {.lex_state = 0, .external_lex_state = 8}, - [9377] = {.lex_state = 0, .external_lex_state = 8}, + [9377] = {.lex_state = 0, .external_lex_state = 9}, [9378] = {.lex_state = 0, .external_lex_state = 8}, [9379] = {.lex_state = 0, .external_lex_state = 9}, - [9380] = {.lex_state = 22, .external_lex_state = 8}, - [9381] = {.lex_state = 0, .external_lex_state = 9}, - [9382] = {.lex_state = 321, .external_lex_state = 8}, - [9383] = {.lex_state = 0, .external_lex_state = 9}, - [9384] = {.lex_state = 0, .external_lex_state = 9}, - [9385] = {.lex_state = 32, .external_lex_state = 8}, - [9386] = {.lex_state = 0, .external_lex_state = 9}, - [9387] = {.lex_state = 0, .external_lex_state = 8}, - [9388] = {.lex_state = 0, .external_lex_state = 8}, - [9389] = {.lex_state = 22, .external_lex_state = 8}, - [9390] = {.lex_state = 0, .external_lex_state = 9}, + [9380] = {.lex_state = 0, .external_lex_state = 8}, + [9381] = {.lex_state = 0, .external_lex_state = 8}, + [9382] = {.lex_state = 32, .external_lex_state = 8}, + [9383] = {.lex_state = 0, .external_lex_state = 8}, + [9384] = {.lex_state = 0, .external_lex_state = 8}, + [9385] = {.lex_state = 0, .external_lex_state = 9}, + [9386] = {.lex_state = 0, .external_lex_state = 8}, + [9387] = {.lex_state = 22, .external_lex_state = 8}, + [9388] = {.lex_state = 32, .external_lex_state = 8}, + [9389] = {.lex_state = 0, .external_lex_state = 8}, + [9390] = {.lex_state = 321, .external_lex_state = 8}, [9391] = {.lex_state = 0, .external_lex_state = 9}, - [9392] = {.lex_state = 0, .external_lex_state = 8}, + [9392] = {.lex_state = 0, .external_lex_state = 9}, [9393] = {.lex_state = 0, .external_lex_state = 8}, - [9394] = {.lex_state = 0, .external_lex_state = 8}, - [9395] = {.lex_state = 32, .external_lex_state = 8}, + [9394] = {.lex_state = 321, .external_lex_state = 8}, + [9395] = {.lex_state = 0, .external_lex_state = 8}, [9396] = {.lex_state = 0, .external_lex_state = 8}, [9397] = {.lex_state = 0, .external_lex_state = 8}, - [9398] = {.lex_state = 22, .external_lex_state = 8}, + [9398] = {.lex_state = 0, .external_lex_state = 8}, [9399] = {.lex_state = 0, .external_lex_state = 8}, - [9400] = {.lex_state = 0, .external_lex_state = 9}, - [9401] = {.lex_state = 0, .external_lex_state = 9}, - [9402] = {.lex_state = 321, .external_lex_state = 8}, + [9400] = {.lex_state = 0, .external_lex_state = 8}, + [9401] = {.lex_state = 0, .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 = 32, .external_lex_state = 8}, - [9406] = {.lex_state = 0, .external_lex_state = 8}, - [9407] = {.lex_state = 0, .external_lex_state = 9}, - [9408] = {.lex_state = 22, .external_lex_state = 8}, - [9409] = {.lex_state = 22, .external_lex_state = 8}, + [9405] = {.lex_state = 0, .external_lex_state = 9}, + [9406] = {.lex_state = 32, .external_lex_state = 8}, + [9407] = {.lex_state = 0, .external_lex_state = 8}, + [9408] = {.lex_state = 0, .external_lex_state = 9}, + [9409] = {.lex_state = 0, .external_lex_state = 8}, [9410] = {.lex_state = 0, .external_lex_state = 8}, - [9411] = {.lex_state = 32, .external_lex_state = 8}, - [9412] = {.lex_state = 22, .external_lex_state = 8}, - [9413] = {.lex_state = 0, .external_lex_state = 8}, - [9414] = {.lex_state = 0, .external_lex_state = 8}, + [9411] = {.lex_state = 0, .external_lex_state = 9}, + [9412] = {.lex_state = 0, .external_lex_state = 8}, + [9413] = {.lex_state = 0, .external_lex_state = 9}, + [9414] = {.lex_state = 32, .external_lex_state = 8}, [9415] = {.lex_state = 0, .external_lex_state = 8}, - [9416] = {.lex_state = 0, .external_lex_state = 8}, + [9416] = {.lex_state = 0, .external_lex_state = 9}, [9417] = {.lex_state = 0, .external_lex_state = 8}, - [9418] = {.lex_state = 22, .external_lex_state = 8}, - [9419] = {.lex_state = 0, .external_lex_state = 9}, - [9420] = {.lex_state = 32, .external_lex_state = 8}, + [9418] = {.lex_state = 0, .external_lex_state = 9}, + [9419] = {.lex_state = 0, .external_lex_state = 8}, + [9420] = {.lex_state = 0, .external_lex_state = 8}, [9421] = {.lex_state = 0, .external_lex_state = 9}, - [9422] = {.lex_state = 22, .external_lex_state = 8}, - [9423] = {.lex_state = 0, .external_lex_state = 9}, - [9424] = {.lex_state = 0, .external_lex_state = 8}, - [9425] = {.lex_state = 22, .external_lex_state = 8}, - [9426] = {.lex_state = 0, .external_lex_state = 9}, - [9427] = {.lex_state = 0, .external_lex_state = 8}, + [9422] = {.lex_state = 0, .external_lex_state = 8}, + [9423] = {.lex_state = 32, .external_lex_state = 8}, + [9424] = {.lex_state = 32, .external_lex_state = 8}, + [9425] = {.lex_state = 0, .external_lex_state = 9}, + [9426] = {.lex_state = 0, .external_lex_state = 8}, + [9427] = {.lex_state = 0, .external_lex_state = 9}, [9428] = {.lex_state = 0, .external_lex_state = 9}, [9429] = {.lex_state = 0, .external_lex_state = 9}, - [9430] = {.lex_state = 22, .external_lex_state = 11}, - [9431] = {.lex_state = 22, .external_lex_state = 8}, - [9432] = {.lex_state = 22, .external_lex_state = 8}, - [9433] = {.lex_state = 0, .external_lex_state = 9}, - [9434] = {.lex_state = 32, .external_lex_state = 8}, - [9435] = {.lex_state = 0, .external_lex_state = 8}, - [9436] = {.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}, + [9433] = {.lex_state = 0, .external_lex_state = 8}, + [9434] = {.lex_state = 0, .external_lex_state = 8}, + [9435] = {.lex_state = 321, .external_lex_state = 8}, + [9436] = {.lex_state = 0, .external_lex_state = 9}, [9437] = {.lex_state = 0, .external_lex_state = 9}, - [9438] = {.lex_state = 32, .external_lex_state = 8}, + [9438] = {.lex_state = 0, .external_lex_state = 8}, [9439] = {.lex_state = 0, .external_lex_state = 8}, - [9440] = {.lex_state = 22, .external_lex_state = 8}, - [9441] = {.lex_state = 0, .external_lex_state = 8}, + [9440] = {.lex_state = 0, .external_lex_state = 9}, + [9441] = {.lex_state = 0, .external_lex_state = 9}, [9442] = {.lex_state = 0, .external_lex_state = 9}, [9443] = {.lex_state = 0, .external_lex_state = 9}, - [9444] = {.lex_state = 0, .external_lex_state = 9}, - [9445] = {.lex_state = 0, .external_lex_state = 8}, - [9446] = {.lex_state = 32, .external_lex_state = 8}, - [9447] = {.lex_state = 0, .external_lex_state = 8}, + [9444] = {.lex_state = 32, .external_lex_state = 8}, + [9445] = {.lex_state = 0, .external_lex_state = 9}, + [9446] = {.lex_state = 0, .external_lex_state = 9}, + [9447] = {.lex_state = 32, .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}, + [9449] = {.lex_state = 32, .external_lex_state = 8}, + [9450] = {.lex_state = 0, .external_lex_state = 9}, [9451] = {.lex_state = 0, .external_lex_state = 9}, - [9452] = {.lex_state = 32, .external_lex_state = 8}, - [9453] = {.lex_state = 0, .external_lex_state = 9}, + [9452] = {.lex_state = 0, .external_lex_state = 8}, + [9453] = {.lex_state = 0, .external_lex_state = 8}, [9454] = {.lex_state = 0, .external_lex_state = 8}, - [9455] = {.lex_state = 321, .external_lex_state = 8}, - [9456] = {.lex_state = 0, .external_lex_state = 8}, - [9457] = {.lex_state = 321, .external_lex_state = 8}, + [9455] = {.lex_state = 0, .external_lex_state = 9}, + [9456] = {.lex_state = 0, .external_lex_state = 9}, + [9457] = {.lex_state = 22, .external_lex_state = 11}, [9458] = {.lex_state = 0, .external_lex_state = 9}, - [9459] = {.lex_state = 0, .external_lex_state = 8}, - [9460] = {.lex_state = 0, .external_lex_state = 8}, + [9459] = {.lex_state = 0, .external_lex_state = 9}, + [9460] = {.lex_state = 0, .external_lex_state = 9}, [9461] = {.lex_state = 22, .external_lex_state = 8}, - [9462] = {.lex_state = 0, .external_lex_state = 8}, - [9463] = {.lex_state = 22, .external_lex_state = 8}, - [9464] = {.lex_state = 0, .external_lex_state = 8}, - [9465] = {.lex_state = 0, .external_lex_state = 8}, + [9462] = {.lex_state = 22, .external_lex_state = 8}, + [9463] = {.lex_state = 0, .external_lex_state = 9}, + [9464] = {.lex_state = 22, .external_lex_state = 8}, + [9465] = {.lex_state = 0, .external_lex_state = 9}, [9466] = {.lex_state = 0, .external_lex_state = 8}, - [9467] = {.lex_state = 0, .external_lex_state = 8}, + [9467] = {.lex_state = 22, .external_lex_state = 8}, [9468] = {.lex_state = 0, .external_lex_state = 8}, - [9469] = {.lex_state = 22, .external_lex_state = 8}, + [9469] = {.lex_state = 0, .external_lex_state = 9}, [9470] = {.lex_state = 22, .external_lex_state = 8}, - [9471] = {.lex_state = 22, .external_lex_state = 8}, - [9472] = {.lex_state = 0, .external_lex_state = 8}, + [9471] = {.lex_state = 0, .external_lex_state = 8}, + [9472] = {.lex_state = 22, .external_lex_state = 8}, [9473] = {.lex_state = 0, .external_lex_state = 8}, - [9474] = {.lex_state = 22, .external_lex_state = 8}, + [9474] = {.lex_state = 0, .external_lex_state = 8}, [9475] = {.lex_state = 0, .external_lex_state = 8}, [9476] = {.lex_state = 0, .external_lex_state = 8}, - [9477] = {.lex_state = 0, .external_lex_state = 8}, - [9478] = {.lex_state = 0, .external_lex_state = 8}, + [9477] = {.lex_state = 0, .external_lex_state = 9}, + [9478] = {.lex_state = 22, .external_lex_state = 8}, [9479] = {.lex_state = 0, .external_lex_state = 8}, [9480] = {.lex_state = 0, .external_lex_state = 8}, - [9481] = {.lex_state = 0, .external_lex_state = 8}, - [9482] = {.lex_state = 0, .external_lex_state = 9}, - [9483] = {.lex_state = 0, .external_lex_state = 8}, - [9484] = {.lex_state = 0, .external_lex_state = 9}, - [9485] = {.lex_state = 22, .external_lex_state = 8}, - [9486] = {.lex_state = 22, .external_lex_state = 8}, - [9487] = {.lex_state = 22, .external_lex_state = 8}, - [9488] = {.lex_state = 0, .external_lex_state = 8}, + [9481] = {.lex_state = 0, .external_lex_state = 9}, + [9482] = {.lex_state = 0, .external_lex_state = 8}, + [9483] = {.lex_state = 22, .external_lex_state = 8}, + [9484] = {.lex_state = 0, .external_lex_state = 8}, + [9485] = {.lex_state = 0, .external_lex_state = 8}, + [9486] = {.lex_state = 0, .external_lex_state = 8}, + [9487] = {.lex_state = 0, .external_lex_state = 8}, + [9488] = {.lex_state = 22, .external_lex_state = 8}, [9489] = {.lex_state = 0, .external_lex_state = 8}, - [9490] = {.lex_state = 0, .external_lex_state = 9}, + [9490] = {.lex_state = 22, .external_lex_state = 8}, [9491] = {.lex_state = 0, .external_lex_state = 8}, - [9492] = {.lex_state = 0, .external_lex_state = 9}, + [9492] = {.lex_state = 0, .external_lex_state = 8}, [9493] = {.lex_state = 0, .external_lex_state = 8}, - [9494] = {.lex_state = 0, .external_lex_state = 8}, + [9494] = {.lex_state = 22, .external_lex_state = 8}, [9495] = {.lex_state = 0, .external_lex_state = 8}, - [9496] = {.lex_state = 0, .external_lex_state = 8}, - [9497] = {.lex_state = 22, .external_lex_state = 8}, + [9496] = {.lex_state = 0, .external_lex_state = 9}, + [9497] = {.lex_state = 0, .external_lex_state = 8}, [9498] = {.lex_state = 0, .external_lex_state = 8}, [9499] = {.lex_state = 22, .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 = 9}, + [9502] = {.lex_state = 22, .external_lex_state = 8}, [9503] = {.lex_state = 0, .external_lex_state = 8}, - [9504] = {.lex_state = 22, .external_lex_state = 8}, + [9504] = {.lex_state = 0, .external_lex_state = 8}, [9505] = {.lex_state = 0, .external_lex_state = 8}, - [9506] = {.lex_state = 0, .external_lex_state = 8}, + [9506] = {.lex_state = 22, .external_lex_state = 8}, [9507] = {.lex_state = 0, .external_lex_state = 8}, [9508] = {.lex_state = 22, .external_lex_state = 8}, [9509] = {.lex_state = 0, .external_lex_state = 8}, [9510] = {.lex_state = 22, .external_lex_state = 8}, - [9511] = {.lex_state = 0, .external_lex_state = 8}, + [9511] = {.lex_state = 22, .external_lex_state = 8}, [9512] = {.lex_state = 0, .external_lex_state = 8}, - [9513] = {.lex_state = 0, .external_lex_state = 8}, - [9514] = {.lex_state = 0, .external_lex_state = 8}, - [9515] = {.lex_state = 0, .external_lex_state = 8}, + [9513] = {.lex_state = 22, .external_lex_state = 8}, + [9514] = {.lex_state = 22, .external_lex_state = 8}, + [9515] = {.lex_state = 22, .external_lex_state = 8}, [9516] = {.lex_state = 0, .external_lex_state = 8}, [9517] = {.lex_state = 0, .external_lex_state = 8}, - [9518] = {.lex_state = 0, .external_lex_state = 8}, - [9519] = {.lex_state = 0, .external_lex_state = 8}, - [9520] = {.lex_state = 22, .external_lex_state = 8}, - [9521] = {.lex_state = 0, .external_lex_state = 8}, - [9522] = {.lex_state = 0, .external_lex_state = 8}, + [9518] = {.lex_state = 22, .external_lex_state = 8}, + [9519] = {.lex_state = 321, .external_lex_state = 8}, + [9520] = {.lex_state = 0, .external_lex_state = 8}, + [9521] = {.lex_state = 0, .external_lex_state = 9}, + [9522] = {.lex_state = 22, .external_lex_state = 8}, [9523] = {.lex_state = 0, .external_lex_state = 8}, - [9524] = {.lex_state = 22, .external_lex_state = 8}, - [9525] = {.lex_state = 22, .external_lex_state = 8}, + [9524] = {.lex_state = 0, .external_lex_state = 8}, + [9525] = {.lex_state = 0, .external_lex_state = 8}, [9526] = {.lex_state = 0, .external_lex_state = 8}, - [9527] = {.lex_state = 0, .external_lex_state = 8}, + [9527] = {.lex_state = 22, .external_lex_state = 8}, [9528] = {.lex_state = 0, .external_lex_state = 8}, - [9529] = {.lex_state = 0, .external_lex_state = 8}, - [9530] = {.lex_state = 0, .external_lex_state = 8}, + [9529] = {.lex_state = 22, .external_lex_state = 8}, + [9530] = {.lex_state = 22, .external_lex_state = 8}, [9531] = {.lex_state = 0, .external_lex_state = 8}, - [9532] = {.lex_state = 321, .external_lex_state = 8}, - [9533] = {.lex_state = 22, .external_lex_state = 8}, - [9534] = {.lex_state = 0, .external_lex_state = 8}, - [9535] = {.lex_state = 0, .external_lex_state = 9}, - [9536] = {.lex_state = 0, .external_lex_state = 8}, - [9537] = {.lex_state = 0, .external_lex_state = 8}, - [9538] = {.lex_state = 22, .external_lex_state = 8}, + [9532] = {.lex_state = 0, .external_lex_state = 8}, + [9533] = {.lex_state = 0, .external_lex_state = 8}, + [9534] = {.lex_state = 22, .external_lex_state = 8}, + [9535] = {.lex_state = 0, .external_lex_state = 8}, + [9536] = {.lex_state = 22, .external_lex_state = 8}, + [9537] = {.lex_state = 22, .external_lex_state = 8}, + [9538] = {.lex_state = 0, .external_lex_state = 8}, [9539] = {.lex_state = 0, .external_lex_state = 8}, [9540] = {.lex_state = 0, .external_lex_state = 8}, [9541] = {.lex_state = 0, .external_lex_state = 8}, - [9542] = {.lex_state = 0, .external_lex_state = 8}, + [9542] = {.lex_state = 22, .external_lex_state = 8}, [9543] = {.lex_state = 0, .external_lex_state = 8}, - [9544] = {.lex_state = 22, .external_lex_state = 8}, + [9544] = {.lex_state = 0, .external_lex_state = 8}, [9545] = {.lex_state = 22, .external_lex_state = 8}, - [9546] = {.lex_state = 22, .external_lex_state = 8}, + [9546] = {.lex_state = 0, .external_lex_state = 8}, [9547] = {.lex_state = 0, .external_lex_state = 8}, [9548] = {.lex_state = 0, .external_lex_state = 8}, [9549] = {.lex_state = 22, .external_lex_state = 8}, - [9550] = {.lex_state = 22, .external_lex_state = 8}, - [9551] = {.lex_state = 0, .external_lex_state = 8}, + [9550] = {.lex_state = 0, .external_lex_state = 8}, + [9551] = {.lex_state = 22, .external_lex_state = 8}, [9552] = {.lex_state = 0, .external_lex_state = 8}, - [9553] = {.lex_state = 0, .external_lex_state = 8}, - [9554] = {.lex_state = 22, .external_lex_state = 8}, + [9553] = {.lex_state = 321, .external_lex_state = 8}, + [9554] = {.lex_state = 0, .external_lex_state = 8}, [9555] = {.lex_state = 0, .external_lex_state = 8}, - [9556] = {.lex_state = 22, .external_lex_state = 8}, + [9556] = {.lex_state = 0, .external_lex_state = 8}, [9557] = {.lex_state = 0, .external_lex_state = 8}, - [9558] = {.lex_state = 22, .external_lex_state = 8}, + [9558] = {.lex_state = 0, .external_lex_state = 8}, [9559] = {.lex_state = 0, .external_lex_state = 8}, - [9560] = {.lex_state = 22, .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}, [9564] = {.lex_state = 0, .external_lex_state = 8}, [9565] = {.lex_state = 0, .external_lex_state = 8}, - [9566] = {.lex_state = 22, .external_lex_state = 8}, + [9566] = {.lex_state = 0, .external_lex_state = 8}, [9567] = {.lex_state = 0, .external_lex_state = 8}, - [9568] = {.lex_state = 22, .external_lex_state = 8}, - [9569] = {.lex_state = 0, .external_lex_state = 8}, + [9568] = {.lex_state = 0, .external_lex_state = 8}, + [9569] = {.lex_state = 22, .external_lex_state = 8}, [9570] = {.lex_state = 22, .external_lex_state = 8}, - [9571] = {.lex_state = 22, .external_lex_state = 8}, - [9572] = {.lex_state = 0, .external_lex_state = 8}, + [9571] = {.lex_state = 0, .external_lex_state = 8}, + [9572] = {.lex_state = 22, .external_lex_state = 8}, [9573] = {.lex_state = 22, .external_lex_state = 8}, - [9574] = {.lex_state = 0, .external_lex_state = 8}, + [9574] = {.lex_state = 22, .external_lex_state = 8}, [9575] = {.lex_state = 0, .external_lex_state = 8}, [9576] = {.lex_state = 0, .external_lex_state = 8}, [9577] = {.lex_state = 0, .external_lex_state = 8}, [9578] = {.lex_state = 0, .external_lex_state = 9}, - [9579] = {.lex_state = 0, .external_lex_state = 8}, + [9579] = {.lex_state = 22, .external_lex_state = 8}, [9580] = {.lex_state = 0, .external_lex_state = 8}, [9581] = {.lex_state = 0, .external_lex_state = 8}, [9582] = {.lex_state = 0, .external_lex_state = 8}, - [9583] = {.lex_state = 0, .external_lex_state = 8}, + [9583] = {.lex_state = 22, .external_lex_state = 8}, [9584] = {.lex_state = 0, .external_lex_state = 8}, - [9585] = {.lex_state = 22, .external_lex_state = 8}, + [9585] = {.lex_state = 0, .external_lex_state = 8}, [9586] = {.lex_state = 0, .external_lex_state = 8}, [9587] = {.lex_state = 0, .external_lex_state = 8}, [9588] = {.lex_state = 0, .external_lex_state = 8}, - [9589] = {.lex_state = 0, .external_lex_state = 8}, + [9589] = {.lex_state = 22, .external_lex_state = 8}, [9590] = {.lex_state = 0, .external_lex_state = 8}, [9591] = {.lex_state = 0, .external_lex_state = 8}, - [9592] = {.lex_state = 0, .external_lex_state = 8}, + [9592] = {.lex_state = 22, .external_lex_state = 8}, [9593] = {.lex_state = 0, .external_lex_state = 8}, [9594] = {.lex_state = 0, .external_lex_state = 8}, - [9595] = {.lex_state = 22, .external_lex_state = 8}, - [9596] = {.lex_state = 22, .external_lex_state = 8}, + [9595] = {.lex_state = 0, .external_lex_state = 8}, + [9596] = {.lex_state = 0, .external_lex_state = 8}, [9597] = {.lex_state = 0, .external_lex_state = 8}, [9598] = {.lex_state = 22, .external_lex_state = 8}, - [9599] = {.lex_state = 321, .external_lex_state = 8}, - [9600] = {.lex_state = 22, .external_lex_state = 8}, + [9599] = {.lex_state = 22, .external_lex_state = 8}, + [9600] = {.lex_state = 0, .external_lex_state = 8}, [9601] = {.lex_state = 0, .external_lex_state = 8}, [9602] = {.lex_state = 0, .external_lex_state = 8}, - [9603] = {.lex_state = 0, .external_lex_state = 8}, - [9604] = {.lex_state = 22, .external_lex_state = 8}, + [9603] = {.lex_state = 22, .external_lex_state = 8}, + [9604] = {.lex_state = 0, .external_lex_state = 8}, [9605] = {.lex_state = 22, .external_lex_state = 8}, - [9606] = {.lex_state = 22, .external_lex_state = 8}, - [9607] = {.lex_state = 0, .external_lex_state = 8}, - [9608] = {.lex_state = 22, .external_lex_state = 8}, + [9606] = {.lex_state = 0, .external_lex_state = 8}, + [9607] = {.lex_state = 22, .external_lex_state = 8}, + [9608] = {.lex_state = 0, .external_lex_state = 8}, [9609] = {.lex_state = 0, .external_lex_state = 8}, - [9610] = {.lex_state = 22, .external_lex_state = 8}, - [9611] = {.lex_state = 22, .external_lex_state = 8}, - [9612] = {.lex_state = 22, .external_lex_state = 8}, - [9613] = {.lex_state = 22, .external_lex_state = 8}, - [9614] = {.lex_state = 22, .external_lex_state = 8}, - [9615] = {.lex_state = 22, .external_lex_state = 8}, - [9616] = {.lex_state = 0, .external_lex_state = 8}, + [9610] = {.lex_state = 0, .external_lex_state = 8}, + [9611] = {.lex_state = 0, .external_lex_state = 8}, + [9612] = {.lex_state = 0, .external_lex_state = 8}, + [9613] = {.lex_state = 0, .external_lex_state = 8}, + [9614] = {.lex_state = 0, .external_lex_state = 8}, + [9615] = {.lex_state = 0, .external_lex_state = 8}, + [9616] = {.lex_state = 22, .external_lex_state = 8}, [9617] = {.lex_state = 0, .external_lex_state = 8}, [9618] = {.lex_state = 0, .external_lex_state = 8}, [9619] = {.lex_state = 22, .external_lex_state = 8}, - [9620] = {.lex_state = 22, .external_lex_state = 8}, - [9621] = {.lex_state = 22, .external_lex_state = 8}, - [9622] = {.lex_state = 22, .external_lex_state = 8}, + [9620] = {.lex_state = 0, .external_lex_state = 8}, + [9621] = {.lex_state = 0, .external_lex_state = 8}, + [9622] = {.lex_state = 0, .external_lex_state = 8}, [9623] = {.lex_state = 22, .external_lex_state = 8}, [9624] = {.lex_state = 0, .external_lex_state = 8}, - [9625] = {.lex_state = 0, .external_lex_state = 8}, + [9625] = {.lex_state = 22, .external_lex_state = 8}, [9626] = {.lex_state = 22, .external_lex_state = 8}, - [9627] = {.lex_state = 0, .external_lex_state = 8}, + [9627] = {.lex_state = 22, .external_lex_state = 8}, [9628] = {.lex_state = 0, .external_lex_state = 8}, - [9629] = {.lex_state = 0, .external_lex_state = 8}, - [9630] = {.lex_state = 0, .external_lex_state = 8}, + [9629] = {.lex_state = 22, .external_lex_state = 8}, + [9630] = {.lex_state = 22, .external_lex_state = 8}, [9631] = {.lex_state = 0, .external_lex_state = 8}, [9632] = {.lex_state = 22, .external_lex_state = 8}, - [9633] = {.lex_state = 22, .external_lex_state = 8}, - [9634] = {.lex_state = 0, .external_lex_state = 8}, - [9635] = {.lex_state = 0, .external_lex_state = 8}, + [9633] = {.lex_state = 0, .external_lex_state = 8}, + [9634] = {.lex_state = 22, .external_lex_state = 8}, + [9635] = {.lex_state = 22, .external_lex_state = 8}, [9636] = {.lex_state = 0, .external_lex_state = 8}, [9637] = {.lex_state = 22, .external_lex_state = 8}, [9638] = {.lex_state = 0, .external_lex_state = 8}, - [9639] = {.lex_state = 22, .external_lex_state = 8}, + [9639] = {.lex_state = 0, .external_lex_state = 8}, [9640] = {.lex_state = 22, .external_lex_state = 8}, [9641] = {.lex_state = 0, .external_lex_state = 8}, [9642] = {.lex_state = 0, .external_lex_state = 8}, [9643] = {.lex_state = 0, .external_lex_state = 8}, [9644] = {.lex_state = 22, .external_lex_state = 8}, - [9645] = {.lex_state = 22, .external_lex_state = 8}, - [9646] = {.lex_state = 0, .external_lex_state = 8}, + [9645] = {.lex_state = 0, .external_lex_state = 8}, + [9646] = {.lex_state = 22, .external_lex_state = 8}, [9647] = {.lex_state = 0, .external_lex_state = 8}, - [9648] = {.lex_state = 321, .external_lex_state = 8}, + [9648] = {.lex_state = 0, .external_lex_state = 8}, [9649] = {.lex_state = 0, .external_lex_state = 8}, [9650] = {.lex_state = 22, .external_lex_state = 8}, - [9651] = {.lex_state = 0, .external_lex_state = 8}, - [9652] = {.lex_state = 0, .external_lex_state = 8}, - [9653] = {.lex_state = 0, .external_lex_state = 8}, - [9654] = {.lex_state = 0, .external_lex_state = 8}, - [9655] = {.lex_state = 0, .external_lex_state = 8}, - [9656] = {.lex_state = 321, .external_lex_state = 8}, - [9657] = {.lex_state = 0, .external_lex_state = 8}, + [9651] = {.lex_state = 22, .external_lex_state = 8}, + [9652] = {.lex_state = 22, .external_lex_state = 8}, + [9653] = {.lex_state = 22, .external_lex_state = 8}, + [9654] = {.lex_state = 22, .external_lex_state = 8}, + [9655] = {.lex_state = 22, .external_lex_state = 8}, + [9656] = {.lex_state = 22, .external_lex_state = 8}, + [9657] = {.lex_state = 22, .external_lex_state = 8}, [9658] = {.lex_state = 0, .external_lex_state = 8}, - [9659] = {.lex_state = 22, .external_lex_state = 8}, + [9659] = {.lex_state = 0, .external_lex_state = 8}, [9660] = {.lex_state = 0, .external_lex_state = 8}, - [9661] = {.lex_state = 0, .external_lex_state = 8}, + [9661] = {.lex_state = 22, .external_lex_state = 8}, [9662] = {.lex_state = 22, .external_lex_state = 8}, [9663] = {.lex_state = 22, .external_lex_state = 8}, [9664] = {.lex_state = 0, .external_lex_state = 8}, - [9665] = {.lex_state = 0, .external_lex_state = 8}, + [9665] = {.lex_state = 22, .external_lex_state = 8}, [9666] = {.lex_state = 0, .external_lex_state = 8}, - [9667] = {.lex_state = 22, .external_lex_state = 8}, - [9668] = {.lex_state = 0, .external_lex_state = 8}, - [9669] = {.lex_state = 0, .external_lex_state = 8}, - [9670] = {.lex_state = 22, .external_lex_state = 8}, - [9671] = {.lex_state = 22, .external_lex_state = 8}, + [9667] = {.lex_state = 0, .external_lex_state = 8}, + [9668] = {.lex_state = 22, .external_lex_state = 8}, + [9669] = {.lex_state = 22, .external_lex_state = 8}, + [9670] = {.lex_state = 0, .external_lex_state = 8}, + [9671] = {.lex_state = 0, .external_lex_state = 8}, [9672] = {.lex_state = 0, .external_lex_state = 8}, [9673] = {.lex_state = 0, .external_lex_state = 8}, - [9674] = {.lex_state = 22, .external_lex_state = 8}, + [9674] = {.lex_state = 0, .external_lex_state = 8}, [9675] = {.lex_state = 0, .external_lex_state = 8}, [9676] = {.lex_state = 0, .external_lex_state = 8}, - [9677] = {.lex_state = 0, .external_lex_state = 8}, + [9677] = {.lex_state = 22, .external_lex_state = 8}, [9678] = {.lex_state = 0, .external_lex_state = 8}, [9679] = {.lex_state = 0, .external_lex_state = 8}, [9680] = {.lex_state = 0, .external_lex_state = 8}, - [9681] = {.lex_state = 22, .external_lex_state = 8}, - [9682] = {.lex_state = 22, .external_lex_state = 8}, + [9681] = {.lex_state = 0, .external_lex_state = 8}, + [9682] = {.lex_state = 0, .external_lex_state = 8}, [9683] = {.lex_state = 0, .external_lex_state = 8}, [9684] = {.lex_state = 0, .external_lex_state = 8}, - [9685] = {.lex_state = 0, .external_lex_state = 9}, - [9686] = {.lex_state = 0, .external_lex_state = 9}, - [9687] = {.lex_state = 0, .external_lex_state = 8}, - [9688] = {.lex_state = 0, .external_lex_state = 8}, - [9689] = {.lex_state = 0, .external_lex_state = 8}, + [9685] = {.lex_state = 22, .external_lex_state = 8}, + [9686] = {.lex_state = 22, .external_lex_state = 8}, + [9687] = {.lex_state = 22, .external_lex_state = 8}, + [9688] = {.lex_state = 22, .external_lex_state = 8}, + [9689] = {.lex_state = 22, .external_lex_state = 8}, [9690] = {.lex_state = 0, .external_lex_state = 8}, - [9691] = {.lex_state = 0, .external_lex_state = 9}, - [9692] = {.lex_state = 22, .external_lex_state = 8}, - [9693] = {.lex_state = 22, .external_lex_state = 8}, - [9694] = {.lex_state = 321, .external_lex_state = 8}, - [9695] = {.lex_state = 0, .external_lex_state = 8}, - [9696] = {.lex_state = 0, .external_lex_state = 8}, - [9697] = {.lex_state = 0, .external_lex_state = 8}, + [9691] = {.lex_state = 0, .external_lex_state = 8}, + [9692] = {.lex_state = 0, .external_lex_state = 8}, + [9693] = {.lex_state = 0, .external_lex_state = 8}, + [9694] = {.lex_state = 0, .external_lex_state = 8}, + [9695] = {.lex_state = 22, .external_lex_state = 8}, + [9696] = {.lex_state = 22, .external_lex_state = 8}, + [9697] = {.lex_state = 22, .external_lex_state = 8}, [9698] = {.lex_state = 0, .external_lex_state = 8}, - [9699] = {.lex_state = 22, .external_lex_state = 8}, + [9699] = {.lex_state = 0, .external_lex_state = 8}, [9700] = {.lex_state = 0, .external_lex_state = 8}, - [9701] = {.lex_state = 22, .external_lex_state = 8}, - [9702] = {.lex_state = 22, .external_lex_state = 8}, - [9703] = {.lex_state = 22, .external_lex_state = 8}, - [9704] = {.lex_state = 22, .external_lex_state = 8}, + [9701] = {.lex_state = 0, .external_lex_state = 8}, + [9702] = {.lex_state = 0, .external_lex_state = 8}, + [9703] = {.lex_state = 0, .external_lex_state = 8}, + [9704] = {.lex_state = 0, .external_lex_state = 8}, [9705] = {.lex_state = 0, .external_lex_state = 8}, [9706] = {.lex_state = 0, .external_lex_state = 8}, - [9707] = {.lex_state = 0, .external_lex_state = 8}, - [9708] = {.lex_state = 0, .external_lex_state = 8}, + [9707] = {.lex_state = 22, .external_lex_state = 8}, + [9708] = {.lex_state = 22, .external_lex_state = 8}, [9709] = {.lex_state = 0, .external_lex_state = 8}, [9710] = {.lex_state = 0, .external_lex_state = 8}, - [9711] = {.lex_state = 22, .external_lex_state = 8}, - [9712] = {.lex_state = 0, .external_lex_state = 8}, + [9711] = {.lex_state = 0, .external_lex_state = 8}, + [9712] = {.lex_state = 22, .external_lex_state = 8}, [9713] = {.lex_state = 0, .external_lex_state = 8}, - [9714] = {.lex_state = 0, .external_lex_state = 8}, + [9714] = {.lex_state = 22, .external_lex_state = 8}, [9715] = {.lex_state = 0, .external_lex_state = 8}, - [9716] = {.lex_state = 0, .external_lex_state = 8}, + [9716] = {.lex_state = 22, .external_lex_state = 8}, [9717] = {.lex_state = 0, .external_lex_state = 8}, [9718] = {.lex_state = 22, .external_lex_state = 8}, - [9719] = {.lex_state = 22, .external_lex_state = 8}, + [9719] = {.lex_state = 0, .external_lex_state = 8}, [9720] = {.lex_state = 0, .external_lex_state = 8}, - [9721] = {.lex_state = 22, .external_lex_state = 8}, - [9722] = {.lex_state = 0, .external_lex_state = 8}, - [9723] = {.lex_state = 0, .external_lex_state = 8}, - [9724] = {.lex_state = 22, .external_lex_state = 8}, + [9721] = {.lex_state = 0, .external_lex_state = 8}, + [9722] = {.lex_state = 22, .external_lex_state = 8}, + [9723] = {.lex_state = 22, .external_lex_state = 8}, + [9724] = {.lex_state = 0, .external_lex_state = 8}, [9725] = {.lex_state = 0, .external_lex_state = 8}, [9726] = {.lex_state = 0, .external_lex_state = 8}, [9727] = {.lex_state = 0, .external_lex_state = 8}, [9728] = {.lex_state = 0, .external_lex_state = 8}, [9729] = {.lex_state = 22, .external_lex_state = 8}, - [9730] = {.lex_state = 0, .external_lex_state = 8}, - [9731] = {.lex_state = 22, .external_lex_state = 8}, + [9730] = {.lex_state = 22, .external_lex_state = 8}, + [9731] = {.lex_state = 0, .external_lex_state = 8}, [9732] = {.lex_state = 0, .external_lex_state = 8}, [9733] = {.lex_state = 0, .external_lex_state = 8}, [9734] = {.lex_state = 22, .external_lex_state = 8}, - [9735] = {.lex_state = 0, .external_lex_state = 8}, - [9736] = {.lex_state = 22, .external_lex_state = 8}, + [9735] = {.lex_state = 22, .external_lex_state = 8}, + [9736] = {.lex_state = 0, .external_lex_state = 8}, [9737] = {.lex_state = 0, .external_lex_state = 8}, - [9738] = {.lex_state = 0, .external_lex_state = 8}, + [9738] = {.lex_state = 22, .external_lex_state = 8}, [9739] = {.lex_state = 0, .external_lex_state = 8}, [9740] = {.lex_state = 0, .external_lex_state = 8}, [9741] = {.lex_state = 0, .external_lex_state = 8}, [9742] = {.lex_state = 0, .external_lex_state = 8}, - [9743] = {.lex_state = 0, .external_lex_state = 8}, - [9744] = {.lex_state = 0, .external_lex_state = 8}, - [9745] = {.lex_state = 0, .external_lex_state = 8}, + [9743] = {.lex_state = 22, .external_lex_state = 8}, + [9744] = {.lex_state = 22, .external_lex_state = 8}, + [9745] = {.lex_state = 22, .external_lex_state = 8}, [9746] = {.lex_state = 0, .external_lex_state = 8}, [9747] = {.lex_state = 0, .external_lex_state = 8}, - [9748] = {.lex_state = 22, .external_lex_state = 8}, + [9748] = {.lex_state = 0, .external_lex_state = 8}, [9749] = {.lex_state = 0, .external_lex_state = 8}, [9750] = {.lex_state = 0, .external_lex_state = 8}, - [9751] = {.lex_state = 22, .external_lex_state = 8}, - [9752] = {.lex_state = 0, .external_lex_state = 8}, - [9753] = {.lex_state = 22, .external_lex_state = 8}, - [9754] = {.lex_state = 22, .external_lex_state = 8}, + [9751] = {.lex_state = 0, .external_lex_state = 8}, + [9752] = {.lex_state = 22, .external_lex_state = 8}, + [9753] = {.lex_state = 0, .external_lex_state = 8}, + [9754] = {.lex_state = 0, .external_lex_state = 8}, [9755] = {.lex_state = 22, .external_lex_state = 8}, [9756] = {.lex_state = 0, .external_lex_state = 8}, [9757] = {.lex_state = 0, .external_lex_state = 8}, - [9758] = {.lex_state = 22, .external_lex_state = 8}, - [9759] = {.lex_state = 321, .external_lex_state = 8}, - [9760] = {.lex_state = 0, .external_lex_state = 8}, - [9761] = {.lex_state = 0, .external_lex_state = 8}, + [9758] = {.lex_state = 0, .external_lex_state = 8}, + [9759] = {.lex_state = 0, .external_lex_state = 8}, + [9760] = {.lex_state = 22, .external_lex_state = 8}, + [9761] = {.lex_state = 22, .external_lex_state = 8}, [9762] = {.lex_state = 22, .external_lex_state = 8}, - [9763] = {.lex_state = 0, .external_lex_state = 8}, - [9764] = {.lex_state = 0, .external_lex_state = 8}, + [9763] = {.lex_state = 321, .external_lex_state = 8}, + [9764] = {.lex_state = 22, .external_lex_state = 8}, [9765] = {.lex_state = 0, .external_lex_state = 8}, [9766] = {.lex_state = 0, .external_lex_state = 8}, [9767] = {.lex_state = 0, .external_lex_state = 8}, [9768] = {.lex_state = 0, .external_lex_state = 8}, [9769] = {.lex_state = 0, .external_lex_state = 8}, - [9770] = {.lex_state = 22, .external_lex_state = 8}, + [9770] = {.lex_state = 0, .external_lex_state = 8}, [9771] = {.lex_state = 0, .external_lex_state = 8}, [9772] = {.lex_state = 22, .external_lex_state = 8}, - [9773] = {.lex_state = 0, .external_lex_state = 8}, - [9774] = {.lex_state = 22, .external_lex_state = 8}, + [9773] = {.lex_state = 22, .external_lex_state = 8}, + [9774] = {.lex_state = 0, .external_lex_state = 8}, [9775] = {.lex_state = 0, .external_lex_state = 8}, [9776] = {.lex_state = 0, .external_lex_state = 8}, [9777] = {.lex_state = 22, .external_lex_state = 8}, [9778] = {.lex_state = 22, .external_lex_state = 8}, [9779] = {.lex_state = 0, .external_lex_state = 8}, - [9780] = {.lex_state = 0, .external_lex_state = 8}, + [9780] = {.lex_state = 22, .external_lex_state = 8}, [9781] = {.lex_state = 0, .external_lex_state = 8}, [9782] = {.lex_state = 0, .external_lex_state = 8}, - [9783] = {.lex_state = 0, .external_lex_state = 8}, - [9784] = {.lex_state = 0, .external_lex_state = 8}, + [9783] = {.lex_state = 22, .external_lex_state = 8}, + [9784] = {.lex_state = 22, .external_lex_state = 8}, [9785] = {.lex_state = 0, .external_lex_state = 8}, [9786] = {.lex_state = 0, .external_lex_state = 8}, - [9787] = {.lex_state = 22, .external_lex_state = 8}, + [9787] = {.lex_state = 0, .external_lex_state = 8}, [9788] = {.lex_state = 0, .external_lex_state = 8}, [9789] = {.lex_state = 0, .external_lex_state = 8}, [9790] = {.lex_state = 22, .external_lex_state = 8}, - [9791] = {.lex_state = 0, .external_lex_state = 8}, + [9791] = {.lex_state = 22, .external_lex_state = 8}, [9792] = {.lex_state = 0, .external_lex_state = 8}, - [9793] = {.lex_state = 0, .external_lex_state = 8}, - [9794] = {.lex_state = 22, .external_lex_state = 8}, - [9795] = {.lex_state = 0, .external_lex_state = 8}, - [9796] = {.lex_state = 22, .external_lex_state = 8}, - [9797] = {.lex_state = 22, .external_lex_state = 8}, - [9798] = {.lex_state = 22, .external_lex_state = 8}, - [9799] = {.lex_state = 22, .external_lex_state = 8}, + [9793] = {.lex_state = 22, .external_lex_state = 8}, + [9794] = {.lex_state = 0, .external_lex_state = 8}, + [9795] = {.lex_state = 22, .external_lex_state = 8}, + [9796] = {.lex_state = 0, .external_lex_state = 8}, + [9797] = {.lex_state = 0, .external_lex_state = 8}, + [9798] = {.lex_state = 0, .external_lex_state = 8}, + [9799] = {.lex_state = 0, .external_lex_state = 8}, [9800] = {.lex_state = 0, .external_lex_state = 8}, [9801] = {.lex_state = 0, .external_lex_state = 8}, [9802] = {.lex_state = 0, .external_lex_state = 8}, @@ -29922,97 +29931,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9805] = {.lex_state = 0, .external_lex_state = 8}, [9806] = {.lex_state = 0, .external_lex_state = 8}, [9807] = {.lex_state = 22, .external_lex_state = 8}, - [9808] = {.lex_state = 22, .external_lex_state = 8}, + [9808] = {.lex_state = 0, .external_lex_state = 8}, [9809] = {.lex_state = 0, .external_lex_state = 8}, [9810] = {.lex_state = 0, .external_lex_state = 8}, [9811] = {.lex_state = 0, .external_lex_state = 8}, - [9812] = {.lex_state = 0, .external_lex_state = 8}, - [9813] = {.lex_state = 0, .external_lex_state = 8}, - [9814] = {.lex_state = 22, .external_lex_state = 8}, - [9815] = {.lex_state = 22, .external_lex_state = 8}, + [9812] = {.lex_state = 22, .external_lex_state = 8}, + [9813] = {.lex_state = 0, .external_lex_state = 9}, + [9814] = {.lex_state = 0, .external_lex_state = 8}, + [9815] = {.lex_state = 0, .external_lex_state = 9}, [9816] = {.lex_state = 0, .external_lex_state = 8}, - [9817] = {.lex_state = 22, .external_lex_state = 8}, - [9818] = {.lex_state = 22, .external_lex_state = 8}, - [9819] = {.lex_state = 22, .external_lex_state = 8}, + [9817] = {.lex_state = 0, .external_lex_state = 8}, + [9818] = {.lex_state = 0, .external_lex_state = 8}, + [9819] = {.lex_state = 0, .external_lex_state = 9}, [9820] = {.lex_state = 0, .external_lex_state = 8}, - [9821] = {.lex_state = 0, .external_lex_state = 9}, + [9821] = {.lex_state = 0, .external_lex_state = 8}, [9822] = {.lex_state = 0, .external_lex_state = 8}, [9823] = {.lex_state = 0, .external_lex_state = 8}, - [9824] = {.lex_state = 0, .external_lex_state = 8}, - [9825] = {.lex_state = 0, .external_lex_state = 8}, + [9824] = {.lex_state = 22, .external_lex_state = 8}, + [9825] = {.lex_state = 22, .external_lex_state = 8}, [9826] = {.lex_state = 0, .external_lex_state = 8}, [9827] = {.lex_state = 0, .external_lex_state = 8}, [9828] = {.lex_state = 0, .external_lex_state = 8}, [9829] = {.lex_state = 0, .external_lex_state = 8}, - [9830] = {.lex_state = 22, .external_lex_state = 8}, + [9830] = {.lex_state = 0, .external_lex_state = 8}, [9831] = {.lex_state = 22, .external_lex_state = 8}, [9832] = {.lex_state = 0, .external_lex_state = 8}, - [9833] = {.lex_state = 22, .external_lex_state = 8}, - [9834] = {.lex_state = 0, .external_lex_state = 8}, - [9835] = {.lex_state = 32, .external_lex_state = 8}, + [9833] = {.lex_state = 0, .external_lex_state = 8}, + [9834] = {.lex_state = 321, .external_lex_state = 8}, + [9835] = {.lex_state = 22, .external_lex_state = 8}, [9836] = {.lex_state = 0, .external_lex_state = 8}, - [9837] = {.lex_state = 22, .external_lex_state = 8}, + [9837] = {.lex_state = 0, .external_lex_state = 8}, [9838] = {.lex_state = 0, .external_lex_state = 8}, - [9839] = {.lex_state = 22, .external_lex_state = 8}, + [9839] = {.lex_state = 0, .external_lex_state = 8}, [9840] = {.lex_state = 0, .external_lex_state = 8}, [9841] = {.lex_state = 0, .external_lex_state = 8}, [9842] = {.lex_state = 0, .external_lex_state = 8}, [9843] = {.lex_state = 0, .external_lex_state = 8}, - [9844] = {.lex_state = 0, .external_lex_state = 8}, + [9844] = {.lex_state = 0, .external_lex_state = 9}, [9845] = {.lex_state = 0, .external_lex_state = 8}, - [9846] = {.lex_state = 0, .external_lex_state = 8}, + [9846] = {.lex_state = 0, .external_lex_state = 9}, [9847] = {.lex_state = 22, .external_lex_state = 8}, - [9848] = {.lex_state = 22, .external_lex_state = 8}, + [9848] = {.lex_state = 0, .external_lex_state = 8}, [9849] = {.lex_state = 0, .external_lex_state = 8}, - [9850] = {.lex_state = 0, .external_lex_state = 8}, + [9850] = {.lex_state = 22, .external_lex_state = 8}, [9851] = {.lex_state = 0, .external_lex_state = 8}, [9852] = {.lex_state = 0, .external_lex_state = 8}, [9853] = {.lex_state = 0, .external_lex_state = 8}, - [9854] = {.lex_state = 22, .external_lex_state = 8}, + [9854] = {.lex_state = 0, .external_lex_state = 8}, [9855] = {.lex_state = 0, .external_lex_state = 8}, [9856] = {.lex_state = 0, .external_lex_state = 8}, [9857] = {.lex_state = 0, .external_lex_state = 8}, - [9858] = {.lex_state = 0, .external_lex_state = 8}, - [9859] = {.lex_state = 22, .external_lex_state = 8}, + [9858] = {.lex_state = 22, .external_lex_state = 8}, + [9859] = {.lex_state = 0, .external_lex_state = 8}, [9860] = {.lex_state = 0, .external_lex_state = 8}, - [9861] = {.lex_state = 22, .external_lex_state = 8}, + [9861] = {.lex_state = 0, .external_lex_state = 8}, [9862] = {.lex_state = 0, .external_lex_state = 8}, - [9863] = {.lex_state = 22, .external_lex_state = 8}, - [9864] = {.lex_state = 22, .external_lex_state = 8}, + [9863] = {.lex_state = 0, .external_lex_state = 8}, + [9864] = {.lex_state = 0, .external_lex_state = 8}, [9865] = {.lex_state = 0, .external_lex_state = 8}, [9866] = {.lex_state = 0, .external_lex_state = 8}, - [9867] = {.lex_state = 22, .external_lex_state = 8}, + [9867] = {.lex_state = 0, .external_lex_state = 8}, [9868] = {.lex_state = 0, .external_lex_state = 8}, [9869] = {.lex_state = 22, .external_lex_state = 8}, - [9870] = {.lex_state = 22, .external_lex_state = 8}, - [9871] = {.lex_state = 0, .external_lex_state = 8}, - [9872] = {.lex_state = 0, .external_lex_state = 8}, + [9870] = {.lex_state = 0, .external_lex_state = 8}, + [9871] = {.lex_state = 22, .external_lex_state = 8}, + [9872] = {.lex_state = 22, .external_lex_state = 8}, [9873] = {.lex_state = 0, .external_lex_state = 8}, [9874] = {.lex_state = 22, .external_lex_state = 8}, [9875] = {.lex_state = 22, .external_lex_state = 8}, [9876] = {.lex_state = 0, .external_lex_state = 8}, [9877] = {.lex_state = 22, .external_lex_state = 8}, - [9878] = {.lex_state = 0, .external_lex_state = 8}, + [9878] = {.lex_state = 22, .external_lex_state = 8}, [9879] = {.lex_state = 0, .external_lex_state = 8}, [9880] = {.lex_state = 0, .external_lex_state = 8}, - [9881] = {.lex_state = 0, .external_lex_state = 8}, - [9882] = {.lex_state = 22, .external_lex_state = 8}, - [9883] = {.lex_state = 0, .external_lex_state = 8}, + [9881] = {.lex_state = 22, .external_lex_state = 8}, + [9882] = {.lex_state = 0, .external_lex_state = 8}, + [9883] = {.lex_state = 22, .external_lex_state = 8}, [9884] = {.lex_state = 0, .external_lex_state = 8}, - [9885] = {.lex_state = 22, .external_lex_state = 8}, + [9885] = {.lex_state = 0, .external_lex_state = 8}, [9886] = {.lex_state = 0, .external_lex_state = 8}, - [9887] = {.lex_state = 0, .external_lex_state = 8}, + [9887] = {.lex_state = 22, .external_lex_state = 8}, [9888] = {.lex_state = 22, .external_lex_state = 8}, - [9889] = {.lex_state = 0, .external_lex_state = 8}, + [9889] = {.lex_state = 22, .external_lex_state = 8}, [9890] = {.lex_state = 0, .external_lex_state = 8}, [9891] = {.lex_state = 22, .external_lex_state = 8}, [9892] = {.lex_state = 0, .external_lex_state = 8}, [9893] = {.lex_state = 22, .external_lex_state = 8}, [9894] = {.lex_state = 0, .external_lex_state = 8}, - [9895] = {.lex_state = 0, .external_lex_state = 8}, + [9895] = {.lex_state = 22, .external_lex_state = 8}, [9896] = {.lex_state = 22, .external_lex_state = 8}, [9897] = {.lex_state = 0, .external_lex_state = 8}, - [9898] = {.lex_state = 0, .external_lex_state = 8}, + [9898] = {.lex_state = 22, .external_lex_state = 8}, [9899] = {.lex_state = 22, .external_lex_state = 8}, [9900] = {.lex_state = 0, .external_lex_state = 8}, [9901] = {.lex_state = 0, .external_lex_state = 8}, @@ -30020,7 +30029,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9903] = {.lex_state = 0, .external_lex_state = 8}, [9904] = {.lex_state = 0, .external_lex_state = 8}, [9905] = {.lex_state = 0, .external_lex_state = 8}, - [9906] = {.lex_state = 22, .external_lex_state = 8}, + [9906] = {.lex_state = 0, .external_lex_state = 8}, [9907] = {.lex_state = 0, .external_lex_state = 8}, [9908] = {.lex_state = 22, .external_lex_state = 8}, [9909] = {.lex_state = 0, .external_lex_state = 8}, @@ -30028,34 +30037,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9911] = {.lex_state = 0, .external_lex_state = 8}, [9912] = {.lex_state = 0, .external_lex_state = 8}, [9913] = {.lex_state = 22, .external_lex_state = 8}, - [9914] = {.lex_state = 0, .external_lex_state = 8}, - [9915] = {.lex_state = 0, .external_lex_state = 8}, + [9914] = {.lex_state = 22, .external_lex_state = 8}, + [9915] = {.lex_state = 0, .external_lex_state = 9}, [9916] = {.lex_state = 0, .external_lex_state = 8}, - [9917] = {.lex_state = 0, .external_lex_state = 8}, + [9917] = {.lex_state = 321, .external_lex_state = 8}, [9918] = {.lex_state = 0, .external_lex_state = 8}, - [9919] = {.lex_state = 22, .external_lex_state = 8}, + [9919] = {.lex_state = 0, .external_lex_state = 8}, [9920] = {.lex_state = 0, .external_lex_state = 8}, - [9921] = {.lex_state = 0, .external_lex_state = 8}, + [9921] = {.lex_state = 22, .external_lex_state = 8}, [9922] = {.lex_state = 22, .external_lex_state = 8}, [9923] = {.lex_state = 0, .external_lex_state = 8}, [9924] = {.lex_state = 22, .external_lex_state = 8}, - [9925] = {.lex_state = 22, .external_lex_state = 8}, + [9925] = {.lex_state = 0, .external_lex_state = 8}, [9926] = {.lex_state = 0, .external_lex_state = 8}, - [9927] = {.lex_state = 0, .external_lex_state = 8}, - [9928] = {.lex_state = 22, .external_lex_state = 8}, - [9929] = {.lex_state = 22, .external_lex_state = 8}, + [9927] = {.lex_state = 22, .external_lex_state = 8}, + [9928] = {.lex_state = 0, .external_lex_state = 8}, + [9929] = {.lex_state = 0, .external_lex_state = 8}, [9930] = {.lex_state = 0, .external_lex_state = 8}, [9931] = {.lex_state = 0, .external_lex_state = 8}, [9932] = {.lex_state = 22, .external_lex_state = 8}, [9933] = {.lex_state = 0, .external_lex_state = 8}, [9934] = {.lex_state = 0, .external_lex_state = 8}, [9935] = {.lex_state = 0, .external_lex_state = 8}, - [9936] = {.lex_state = 0, .external_lex_state = 8}, + [9936] = {.lex_state = 22, .external_lex_state = 8}, [9937] = {.lex_state = 0, .external_lex_state = 8}, - [9938] = {.lex_state = 0, .external_lex_state = 8}, - [9939] = {.lex_state = 0, .external_lex_state = 8}, + [9938] = {.lex_state = 22, .external_lex_state = 8}, + [9939] = {.lex_state = 22, .external_lex_state = 8}, [9940] = {.lex_state = 0, .external_lex_state = 8}, - [9941] = {.lex_state = 0, .external_lex_state = 8}, + [9941] = {.lex_state = 22, .external_lex_state = 8}, [9942] = {.lex_state = 0, .external_lex_state = 8}, [9943] = {.lex_state = 0, .external_lex_state = 8}, [9944] = {.lex_state = 0, .external_lex_state = 8}, @@ -30068,7 +30077,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9951] = {.lex_state = 0, .external_lex_state = 8}, [9952] = {.lex_state = 0, .external_lex_state = 8}, [9953] = {.lex_state = 0, .external_lex_state = 8}, - [9954] = {.lex_state = 0, .external_lex_state = 9}, + [9954] = {.lex_state = 0, .external_lex_state = 8}, [9955] = {.lex_state = 0, .external_lex_state = 8}, [9956] = {.lex_state = 0, .external_lex_state = 8}, [9957] = {.lex_state = 0, .external_lex_state = 8}, @@ -30082,114 +30091,114 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [9965] = {.lex_state = 0, .external_lex_state = 8}, [9966] = {.lex_state = 22, .external_lex_state = 8}, [9967] = {.lex_state = 0, .external_lex_state = 8}, - [9968] = {.lex_state = 0, .external_lex_state = 8}, - [9969] = {.lex_state = 22, .external_lex_state = 8}, + [9968] = {.lex_state = 22, .external_lex_state = 8}, + [9969] = {.lex_state = 0, .external_lex_state = 8}, [9970] = {.lex_state = 22, .external_lex_state = 8}, [9971] = {.lex_state = 0, .external_lex_state = 8}, [9972] = {.lex_state = 22, .external_lex_state = 8}, [9973] = {.lex_state = 0, .external_lex_state = 8}, - [9974] = {.lex_state = 22, .external_lex_state = 8}, - [9975] = {.lex_state = 22, .external_lex_state = 8}, + [9974] = {.lex_state = 0, .external_lex_state = 8}, + [9975] = {.lex_state = 0, .external_lex_state = 8}, [9976] = {.lex_state = 0, .external_lex_state = 8}, [9977] = {.lex_state = 0, .external_lex_state = 8}, - [9978] = {.lex_state = 22, .external_lex_state = 8}, + [9978] = {.lex_state = 0, .external_lex_state = 8}, [9979] = {.lex_state = 0, .external_lex_state = 8}, [9980] = {.lex_state = 0, .external_lex_state = 8}, - [9981] = {.lex_state = 0, .external_lex_state = 8}, + [9981] = {.lex_state = 22, .external_lex_state = 8}, [9982] = {.lex_state = 0, .external_lex_state = 8}, [9983] = {.lex_state = 0, .external_lex_state = 8}, [9984] = {.lex_state = 0, .external_lex_state = 8}, [9985] = {.lex_state = 0, .external_lex_state = 8}, [9986] = {.lex_state = 0, .external_lex_state = 8}, - [9987] = {.lex_state = 22, .external_lex_state = 8}, - [9988] = {.lex_state = 22, .external_lex_state = 8}, + [9987] = {.lex_state = 0, .external_lex_state = 8}, + [9988] = {.lex_state = 0, .external_lex_state = 8}, [9989] = {.lex_state = 0, .external_lex_state = 8}, [9990] = {.lex_state = 0, .external_lex_state = 8}, - [9991] = {.lex_state = 22, .external_lex_state = 8}, - [9992] = {.lex_state = 0, .external_lex_state = 8}, - [9993] = {.lex_state = 22, .external_lex_state = 8}, + [9991] = {.lex_state = 32, .external_lex_state = 8}, + [9992] = {.lex_state = 22, .external_lex_state = 8}, + [9993] = {.lex_state = 0, .external_lex_state = 8}, [9994] = {.lex_state = 22, .external_lex_state = 8}, [9995] = {.lex_state = 0, .external_lex_state = 8}, [9996] = {.lex_state = 0, .external_lex_state = 8}, [9997] = {.lex_state = 0, .external_lex_state = 8}, - [9998] = {.lex_state = 0, .external_lex_state = 8}, - [9999] = {.lex_state = 0, .external_lex_state = 8}, + [9998] = {.lex_state = 22, .external_lex_state = 8}, + [9999] = {.lex_state = 22, .external_lex_state = 8}, [10000] = {.lex_state = 0, .external_lex_state = 8}, - [10001] = {.lex_state = 0, .external_lex_state = 8}, - [10002] = {.lex_state = 0, .external_lex_state = 8}, + [10001] = {.lex_state = 22, .external_lex_state = 8}, + [10002] = {.lex_state = 22, .external_lex_state = 8}, [10003] = {.lex_state = 0, .external_lex_state = 8}, [10004] = {.lex_state = 22, .external_lex_state = 8}, [10005] = {.lex_state = 0, .external_lex_state = 8}, - [10006] = {.lex_state = 22, .external_lex_state = 8}, - [10007] = {.lex_state = 0, .external_lex_state = 8}, - [10008] = {.lex_state = 22, .external_lex_state = 8}, + [10006] = {.lex_state = 0, .external_lex_state = 8}, + [10007] = {.lex_state = 22, .external_lex_state = 8}, + [10008] = {.lex_state = 0, .external_lex_state = 8}, [10009] = {.lex_state = 0, .external_lex_state = 8}, - [10010] = {.lex_state = 0, .external_lex_state = 8}, - [10011] = {.lex_state = 0, .external_lex_state = 8}, - [10012] = {.lex_state = 22, .external_lex_state = 8}, + [10010] = {.lex_state = 22, .external_lex_state = 8}, + [10011] = {.lex_state = 22, .external_lex_state = 8}, + [10012] = {.lex_state = 0, .external_lex_state = 8}, [10013] = {.lex_state = 0, .external_lex_state = 8}, [10014] = {.lex_state = 22, .external_lex_state = 8}, [10015] = {.lex_state = 22, .external_lex_state = 8}, - [10016] = {.lex_state = 0, .external_lex_state = 8}, - [10017] = {.lex_state = 0, .external_lex_state = 8}, + [10016] = {.lex_state = 22, .external_lex_state = 8}, + [10017] = {.lex_state = 22, .external_lex_state = 8}, [10018] = {.lex_state = 0, .external_lex_state = 8}, - [10019] = {.lex_state = 0, .external_lex_state = 8}, - [10020] = {.lex_state = 0, .external_lex_state = 8}, - [10021] = {.lex_state = 22, .external_lex_state = 8}, + [10019] = {.lex_state = 22, .external_lex_state = 8}, + [10020] = {.lex_state = 22, .external_lex_state = 8}, + [10021] = {.lex_state = 0, .external_lex_state = 8}, [10022] = {.lex_state = 0, .external_lex_state = 8}, - [10023] = {.lex_state = 22, .external_lex_state = 8}, - [10024] = {.lex_state = 0, .external_lex_state = 8}, - [10025] = {.lex_state = 0, .external_lex_state = 8}, + [10023] = {.lex_state = 0, .external_lex_state = 8}, + [10024] = {.lex_state = 22, .external_lex_state = 8}, + [10025] = {.lex_state = 22, .external_lex_state = 8}, [10026] = {.lex_state = 22, .external_lex_state = 8}, [10027] = {.lex_state = 0, .external_lex_state = 8}, [10028] = {.lex_state = 22, .external_lex_state = 8}, [10029] = {.lex_state = 0, .external_lex_state = 8}, - [10030] = {.lex_state = 0, .external_lex_state = 8}, + [10030] = {.lex_state = 22, .external_lex_state = 8}, [10031] = {.lex_state = 0, .external_lex_state = 8}, - [10032] = {.lex_state = 0, .external_lex_state = 8}, - [10033] = {.lex_state = 0, .external_lex_state = 8}, - [10034] = {.lex_state = 0, .external_lex_state = 8}, - [10035] = {.lex_state = 0, .external_lex_state = 8}, + [10032] = {.lex_state = 22, .external_lex_state = 8}, + [10033] = {.lex_state = 22, .external_lex_state = 8}, + [10034] = {.lex_state = 22, .external_lex_state = 8}, + [10035] = {.lex_state = 22, .external_lex_state = 8}, [10036] = {.lex_state = 22, .external_lex_state = 8}, - [10037] = {.lex_state = 0, .external_lex_state = 8}, + [10037] = {.lex_state = 22, .external_lex_state = 8}, [10038] = {.lex_state = 0, .external_lex_state = 8}, [10039] = {.lex_state = 0, .external_lex_state = 8}, [10040] = {.lex_state = 0, .external_lex_state = 8}, [10041] = {.lex_state = 22, .external_lex_state = 8}, - [10042] = {.lex_state = 0, .external_lex_state = 8}, - [10043] = {.lex_state = 22, .external_lex_state = 8}, + [10042] = {.lex_state = 22, .external_lex_state = 8}, + [10043] = {.lex_state = 0, .external_lex_state = 8}, [10044] = {.lex_state = 0, .external_lex_state = 8}, [10045] = {.lex_state = 0, .external_lex_state = 8}, - [10046] = {.lex_state = 0, .external_lex_state = 8}, + [10046] = {.lex_state = 22, .external_lex_state = 8}, [10047] = {.lex_state = 0, .external_lex_state = 8}, [10048] = {.lex_state = 0, .external_lex_state = 8}, - [10049] = {.lex_state = 22, .external_lex_state = 8}, - [10050] = {.lex_state = 0, .external_lex_state = 8}, - [10051] = {.lex_state = 0, .external_lex_state = 8}, + [10049] = {.lex_state = 0, .external_lex_state = 8}, + [10050] = {.lex_state = 22, .external_lex_state = 8}, + [10051] = {.lex_state = 22, .external_lex_state = 8}, [10052] = {.lex_state = 22, .external_lex_state = 8}, - [10053] = {.lex_state = 0, .external_lex_state = 8}, - [10054] = {.lex_state = 0, .external_lex_state = 8}, + [10053] = {.lex_state = 22, .external_lex_state = 8}, + [10054] = {.lex_state = 22, .external_lex_state = 8}, [10055] = {.lex_state = 22, .external_lex_state = 8}, - [10056] = {.lex_state = 0, .external_lex_state = 8}, - [10057] = {.lex_state = 0, .external_lex_state = 8}, + [10056] = {.lex_state = 22, .external_lex_state = 8}, + [10057] = {.lex_state = 22, .external_lex_state = 8}, [10058] = {.lex_state = 22, .external_lex_state = 8}, [10059] = {.lex_state = 0, .external_lex_state = 8}, [10060] = {.lex_state = 0, .external_lex_state = 8}, [10061] = {.lex_state = 0, .external_lex_state = 8}, - [10062] = {.lex_state = 22, .external_lex_state = 8}, - [10063] = {.lex_state = 22, .external_lex_state = 8}, + [10062] = {.lex_state = 0, .external_lex_state = 8}, + [10063] = {.lex_state = 0, .external_lex_state = 8}, [10064] = {.lex_state = 0, .external_lex_state = 8}, - [10065] = {.lex_state = 0, .external_lex_state = 8}, + [10065] = {.lex_state = 22, .external_lex_state = 8}, [10066] = {.lex_state = 0, .external_lex_state = 8}, [10067] = {.lex_state = 0, .external_lex_state = 8}, - [10068] = {.lex_state = 22, .external_lex_state = 8}, - [10069] = {.lex_state = 0, .external_lex_state = 8}, + [10068] = {.lex_state = 0, .external_lex_state = 8}, + [10069] = {.lex_state = 321, .external_lex_state = 8}, [10070] = {.lex_state = 0, .external_lex_state = 8}, - [10071] = {.lex_state = 22, .external_lex_state = 8}, + [10071] = {.lex_state = 0, .external_lex_state = 8}, [10072] = {.lex_state = 0, .external_lex_state = 8}, - [10073] = {.lex_state = 22, .external_lex_state = 8}, + [10073] = {.lex_state = 0, .external_lex_state = 8}, [10074] = {.lex_state = 0, .external_lex_state = 8}, - [10075] = {.lex_state = 22, .external_lex_state = 8}, + [10075] = {.lex_state = 0, .external_lex_state = 8}, [10076] = {.lex_state = 0, .external_lex_state = 8}, [10077] = {.lex_state = 0, .external_lex_state = 8}, [10078] = {.lex_state = 0, .external_lex_state = 8}, @@ -30197,76 +30206,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [10080] = {.lex_state = 0, .external_lex_state = 8}, [10081] = {.lex_state = 0, .external_lex_state = 8}, [10082] = {.lex_state = 0, .external_lex_state = 8}, - [10083] = {.lex_state = 22, .external_lex_state = 8}, - [10084] = {.lex_state = 22, .external_lex_state = 8}, - [10085] = {.lex_state = 0, .external_lex_state = 8}, - [10086] = {.lex_state = 0, .external_lex_state = 8}, + [10083] = {.lex_state = 0, .external_lex_state = 8}, + [10084] = {.lex_state = 0, .external_lex_state = 8}, + [10085] = {.lex_state = 22, .external_lex_state = 8}, + [10086] = {.lex_state = 22, .external_lex_state = 8}, [10087] = {.lex_state = 0, .external_lex_state = 8}, [10088] = {.lex_state = 0, .external_lex_state = 8}, - [10089] = {.lex_state = 22, .external_lex_state = 8}, + [10089] = {.lex_state = 0, .external_lex_state = 8}, [10090] = {.lex_state = 22, .external_lex_state = 8}, [10091] = {.lex_state = 22, .external_lex_state = 8}, - [10092] = {.lex_state = 22, .external_lex_state = 8}, + [10092] = {.lex_state = 0, .external_lex_state = 8}, [10093] = {.lex_state = 0, .external_lex_state = 8}, - [10094] = {.lex_state = 22, .external_lex_state = 8}, + [10094] = {.lex_state = 0, .external_lex_state = 8}, [10095] = {.lex_state = 0, .external_lex_state = 8}, - [10096] = {.lex_state = 22, .external_lex_state = 8}, - [10097] = {.lex_state = 22, .external_lex_state = 8}, + [10096] = {.lex_state = 0, .external_lex_state = 8}, + [10097] = {.lex_state = 325, .external_lex_state = 8}, [10098] = {.lex_state = 0, .external_lex_state = 8}, [10099] = {.lex_state = 0, .external_lex_state = 8}, [10100] = {.lex_state = 0, .external_lex_state = 8}, - [10101] = {.lex_state = 22, .external_lex_state = 8}, + [10101] = {.lex_state = 0, .external_lex_state = 8}, [10102] = {.lex_state = 0, .external_lex_state = 8}, - [10103] = {.lex_state = 22, .external_lex_state = 8}, + [10103] = {.lex_state = 0, .external_lex_state = 8}, [10104] = {.lex_state = 0, .external_lex_state = 8}, [10105] = {.lex_state = 0, .external_lex_state = 8}, [10106] = {.lex_state = 0, .external_lex_state = 8}, [10107] = {.lex_state = 0, .external_lex_state = 8}, - [10108] = {.lex_state = 22, .external_lex_state = 8}, + [10108] = {.lex_state = 0, .external_lex_state = 8}, [10109] = {.lex_state = 0, .external_lex_state = 8}, - [10110] = {.lex_state = 22, .external_lex_state = 8}, + [10110] = {.lex_state = 0, .external_lex_state = 8}, [10111] = {.lex_state = 0, .external_lex_state = 8}, - [10112] = {.lex_state = 0, .external_lex_state = 8}, + [10112] = {.lex_state = 22, .external_lex_state = 8}, [10113] = {.lex_state = 0, .external_lex_state = 8}, - [10114] = {.lex_state = 0, .external_lex_state = 8}, + [10114] = {.lex_state = 22, .external_lex_state = 8}, [10115] = {.lex_state = 0, .external_lex_state = 8}, - [10116] = {.lex_state = 22, .external_lex_state = 8}, - [10117] = {.lex_state = 22, .external_lex_state = 8}, - [10118] = {.lex_state = 22, .external_lex_state = 8}, + [10116] = {.lex_state = 0, .external_lex_state = 8}, + [10117] = {.lex_state = 0, .external_lex_state = 8}, + [10118] = {.lex_state = 0, .external_lex_state = 8}, [10119] = {.lex_state = 0, .external_lex_state = 8}, [10120] = {.lex_state = 0, .external_lex_state = 8}, [10121] = {.lex_state = 0, .external_lex_state = 8}, - [10122] = {.lex_state = 22, .external_lex_state = 8}, - [10123] = {.lex_state = 0, .external_lex_state = 9}, - [10124] = {.lex_state = 22, .external_lex_state = 8}, + [10122] = {.lex_state = 0, .external_lex_state = 8}, + [10123] = {.lex_state = 0, .external_lex_state = 8}, + [10124] = {.lex_state = 0, .external_lex_state = 8}, [10125] = {.lex_state = 0, .external_lex_state = 8}, [10126] = {.lex_state = 0, .external_lex_state = 8}, - [10127] = {.lex_state = 22, .external_lex_state = 8}, + [10127] = {.lex_state = 0, .external_lex_state = 8}, [10128] = {.lex_state = 22, .external_lex_state = 8}, - [10129] = {.lex_state = 22, .external_lex_state = 8}, - [10130] = {.lex_state = 22, .external_lex_state = 8}, - [10131] = {.lex_state = 22, .external_lex_state = 8}, - [10132] = {.lex_state = 22, .external_lex_state = 8}, - [10133] = {.lex_state = 22, .external_lex_state = 8}, - [10134] = {.lex_state = 22, .external_lex_state = 8}, - [10135] = {.lex_state = 0, .external_lex_state = 9}, - [10136] = {.lex_state = 0, .external_lex_state = 8}, - [10137] = {.lex_state = 0, .external_lex_state = 8}, + [10129] = {.lex_state = 0, .external_lex_state = 8}, + [10130] = {.lex_state = 0, .external_lex_state = 8}, + [10131] = {.lex_state = 0, .external_lex_state = 8}, + [10132] = {.lex_state = 0, .external_lex_state = 8}, + [10133] = {.lex_state = 0, .external_lex_state = 8}, + [10134] = {.lex_state = 0, .external_lex_state = 8}, + [10135] = {.lex_state = 22, .external_lex_state = 8}, + [10136] = {.lex_state = 22, .external_lex_state = 8}, + [10137] = {.lex_state = 22, .external_lex_state = 8}, [10138] = {.lex_state = 22, .external_lex_state = 8}, - [10139] = {.lex_state = 0, .external_lex_state = 8}, + [10139] = {.lex_state = 22, .external_lex_state = 8}, [10140] = {.lex_state = 22, .external_lex_state = 8}, [10141] = {.lex_state = 22, .external_lex_state = 8}, - [10142] = {.lex_state = 0, .external_lex_state = 8}, + [10142] = {.lex_state = 22, .external_lex_state = 8}, [10143] = {.lex_state = 0, .external_lex_state = 8}, - [10144] = {.lex_state = 22, .external_lex_state = 8}, + [10144] = {.lex_state = 0, .external_lex_state = 8}, [10145] = {.lex_state = 0, .external_lex_state = 8}, [10146] = {.lex_state = 0, .external_lex_state = 8}, [10147] = {.lex_state = 0, .external_lex_state = 8}, [10148] = {.lex_state = 0, .external_lex_state = 8}, [10149] = {.lex_state = 0, .external_lex_state = 8}, [10150] = {.lex_state = 0, .external_lex_state = 8}, - [10151] = {.lex_state = 22, .external_lex_state = 8}, - [10152] = {.lex_state = 325, .external_lex_state = 8}, + [10151] = {.lex_state = 0, .external_lex_state = 8}, + [10152] = {.lex_state = 0, .external_lex_state = 8}, + [10153] = {.lex_state = 0, .external_lex_state = 8}, + [10154] = {.lex_state = 0, .external_lex_state = 8}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -30422,94 +30433,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_content] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(10056), + [sym_source_file] = STATE(10061), [sym_shebang_line] = STATE(53), [sym_file_annotation] = STATE(54), - [sym_package_header] = STATE(67), - [sym_import_list] = STATE(66), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), + [sym_package_header] = STATE(68), + [sym_import_list] = STATE(67), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), [aux_sym_source_file_repeat1] = STATE(54), - [aux_sym_source_file_repeat2] = STATE(66), - [aux_sym_source_file_repeat3] = STATE(240), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [aux_sym_source_file_repeat2] = STATE(67), + [aux_sym_source_file_repeat3] = STATE(244), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [ts_builtin_sym_end] = ACTIONS(5), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_POUND_BANG] = ACTIONS(9), @@ -30594,86 +30606,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [2] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9663), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5909), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3368), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(1475), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), @@ -30690,39 +30703,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(133), [anon_sym_COMMA] = ACTIONS(121), [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(151), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(121), + [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(121), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(157), - [anon_sym_do] = ACTIONS(159), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), + [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(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -30737,21 +30750,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -30770,63 +30783,460 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__string_start] = ACTIONS(203), }, [3] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4721), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(3275), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(5887), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4775), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(3298), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(1609), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8023), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(219), + [anon_sym_fun] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(121), + [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(121), + [sym_label] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(237), + [anon_sym_do] = ACTIONS(239), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(243), + [anon_sym_else] = ACTIONS(123), + [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(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [4] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(5887), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4695), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(3298), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(1609), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8023), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_RBRACK] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(211), + [anon_sym_enum] = ACTIONS(213), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(219), + [anon_sym_fun] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(289), + [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(289), + [sym_label] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(237), + [anon_sym_do] = ACTIONS(239), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(243), + [anon_sym_else] = ACTIONS(291), + [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(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_BANG_BANG] = ACTIONS(289), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [5] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10036), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), [sym__primary_expression] = STATE(4525), [sym_parenthesized_expression] = STATE(4525), [sym_collection_literal] = STATE(4525), @@ -30843,112 +31253,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_expression] = STATE(4525), [sym_jump_expression] = STATE(4525), [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1983), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8356), - [sym_modifiers] = STATE(8280), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), [sym_unsigned_literal] = STATE(4525), [sym_long_literal] = STATE(4525), [sym_boolean_literal] = STATE(4525), [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(783), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(215), - [anon_sym_interface] = ACTIONS(215), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_val] = ACTIONS(221), - [anon_sym_var] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(223), - [anon_sym_fun] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(227), - [anon_sym_set] = ACTIONS(229), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_DASH_GT] = ACTIONS(209), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(249), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_RBRACK] = ACTIONS(293), + [anon_sym_DOT] = ACTIONS(295), + [anon_sym_as] = ACTIONS(295), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(295), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_RPAREN] = ACTIONS(293), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_where] = ACTIONS(295), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(315), + [anon_sym_DASH_GT] = ACTIONS(293), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(295), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_QMARK_COLON] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(295), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(293), + [anon_sym_DASH_EQ] = ACTIONS(293), + [anon_sym_STAR_EQ] = ACTIONS(293), + [anon_sym_SLASH_EQ] = ACTIONS(293), + [anon_sym_PERCENT_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_BANGin] = ACTIONS(293), + [anon_sym_is] = ACTIONS(295), + [anon_sym_BANGis] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(295), + [anon_sym_as_QMARK] = ACTIONS(293), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_BANG_BANG] = ACTIONS(293), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -30967,185 +31377,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [4] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3470), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(2133), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8376), - [sym_modifiers] = STATE(8308), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(758), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [6] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5909), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3389), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(1475), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_RBRACK] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(261), - [anon_sym_interface] = ACTIONS(261), - [anon_sym_enum] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_val] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(271), - [anon_sym_fun] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(275), - [anon_sym_set] = ACTIONS(277), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_DASH_GT] = ACTIONS(209), - [sym_label] = ACTIONS(285), - [anon_sym_for] = ACTIONS(287), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(289), + [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(289), + [sym_label] = ACTIONS(149), + [anon_sym_for] = ACTIONS(151), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(153), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(291), + [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(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -31164,185 +31575,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [5] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3481), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(2133), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8376), - [sym_modifiers] = STATE(8308), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), + [7] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6252), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1155), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1727), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8046), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), [aux_sym__statement_repeat1] = STATE(758), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_RBRACK] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(261), - [anon_sym_interface] = ACTIONS(261), - [anon_sym_enum] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_val] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(271), - [anon_sym_fun] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(275), - [anon_sym_set] = ACTIONS(277), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_label] = ACTIONS(285), - [anon_sym_for] = ACTIONS(287), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -31361,185 +31770,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [6] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4743), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(3275), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4525), - [sym_parenthesized_expression] = STATE(4525), - [sym_collection_literal] = STATE(4525), - [sym__literal_constant] = STATE(4525), - [sym_string_literal] = STATE(4525), - [sym_lambda_literal] = STATE(4525), - [sym_anonymous_function] = STATE(4525), - [sym__function_literal] = STATE(4525), - [sym_object_literal] = STATE(4525), - [sym_this_expression] = STATE(4525), - [sym_super_expression] = STATE(4525), - [sym_if_expression] = STATE(4525), - [sym_when_expression] = STATE(4525), - [sym_try_expression] = STATE(4525), - [sym_jump_expression] = STATE(4525), - [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1983), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8356), - [sym_modifiers] = STATE(8280), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4525), - [sym_long_literal] = STATE(4525), - [sym_boolean_literal] = STATE(4525), - [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(783), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [8] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6143), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5160), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(3803), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1684), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8296), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(776), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(215), - [anon_sym_interface] = ACTIONS(215), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_val] = ACTIONS(221), - [anon_sym_var] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(223), - [anon_sym_fun] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(227), - [anon_sym_set] = ACTIONS(229), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(231), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(237), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(249), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(425), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(439), + [sym_label] = ACTIONS(441), + [anon_sym_for] = ACTIONS(443), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(445), + [anon_sym_do] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -31558,182 +31966,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [7] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1028), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(371), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8431), + [9] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6002), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3864), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(1422), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1550), + [sym__postfix_unary_expression] = STATE(8426), [sym_directly_assignable_expression] = STATE(8390), - [sym_modifiers] = STATE(8298), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_modifiers] = STATE(8139), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(351), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(353), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_val] = ACTIONS(359), - [anon_sym_var] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(361), - [anon_sym_fun] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(373), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(469), + [anon_sym_interface] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(477), + [anon_sym_fun] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(481), + [anon_sym_set] = ACTIONS(483), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(489), + [sym_label] = ACTIONS(491), + [anon_sym_for] = ACTIONS(493), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(495), + [anon_sym_do] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -31752,183 +32162,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [8] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3912), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(2116), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8370), - [sym_modifiers] = STATE(8305), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), + [10] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6002), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(1422), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1550), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8139), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(764), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(437), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_val] = ACTIONS(445), - [anon_sym_var] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(447), - [anon_sym_fun] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(459), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(469), + [anon_sym_interface] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(477), + [anon_sym_fun] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(481), + [anon_sym_set] = ACTIONS(483), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(489), + [sym_label] = ACTIONS(491), + [anon_sym_for] = ACTIONS(493), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(495), + [anon_sym_do] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -31947,183 +32358,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [9] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5141), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(3759), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1750), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8395), - [sym_modifiers] = STATE(8311), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), + [11] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10036), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(295), + [anon_sym_as] = ACTIONS(295), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_EQ] = ACTIONS(295), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(293), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(295), + [anon_sym_GT] = ACTIONS(295), + [anon_sym_where] = ACTIONS(295), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(315), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(295), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(293), + [anon_sym_QMARK_COLON] = ACTIONS(293), + [anon_sym_AMP_AMP] = ACTIONS(293), + [anon_sym_PIPE_PIPE] = ACTIONS(293), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(295), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(293), + [anon_sym_DASH_EQ] = ACTIONS(293), + [anon_sym_STAR_EQ] = ACTIONS(293), + [anon_sym_SLASH_EQ] = ACTIONS(293), + [anon_sym_PERCENT_EQ] = ACTIONS(293), + [anon_sym_BANG_EQ] = ACTIONS(295), + [anon_sym_BANG_EQ_EQ] = ACTIONS(293), + [anon_sym_EQ_EQ] = ACTIONS(295), + [anon_sym_EQ_EQ_EQ] = ACTIONS(293), + [anon_sym_LT_EQ] = ACTIONS(293), + [anon_sym_GT_EQ] = ACTIONS(293), + [anon_sym_BANGin] = ACTIONS(293), + [anon_sym_is] = ACTIONS(295), + [anon_sym_BANGis] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(295), + [anon_sym_as_QMARK] = ACTIONS(293), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_BANG_BANG] = ACTIONS(293), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym__automatic_semicolon] = ACTIONS(293), + [sym_safe_nav] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [12] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6224), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3160), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1672), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8058), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(776), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(517), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_val] = ACTIONS(523), - [anon_sym_var] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(525), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(531), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(533), - [sym_label] = ACTIONS(535), - [anon_sym_for] = ACTIONS(537), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(539), - [anon_sym_do] = ACTIONS(541), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(571), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(583), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -32142,177 +32750,374 @@ static const uint16_t ts_parse_table[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(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(625), }, - [10] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5242), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(3759), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1750), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8395), - [sym_modifiers] = STATE(8311), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), + [13] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6224), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3207), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1672), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8058), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(571), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(583), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_BANG_BANG] = ACTIONS(289), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [14] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6143), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5144), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(3803), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1684), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8296), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), [aux_sym__statement_repeat1] = STATE(776), - [aux_sym_modifiers_repeat1] = STATE(5616), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(517), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(425), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_val] = ACTIONS(523), - [anon_sym_var] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(525), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(531), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(533), - [sym_label] = ACTIONS(535), - [anon_sym_for] = ACTIONS(537), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(539), - [anon_sym_do] = ACTIONS(541), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(439), + [sym_label] = ACTIONS(441), + [anon_sym_for] = ACTIONS(443), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(445), + [anon_sym_do] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -32345,7 +33150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -32353,138 +33158,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [11] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9663), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), + [15] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6252), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1132), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1727), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8046), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(758), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACK] = ACTIONS(341), [anon_sym_DOT] = ACTIONS(123), [anon_sym_as] = ACTIONS(123), - [anon_sym_typealias] = ACTIONS(125), + [anon_sym_typealias] = ACTIONS(343), [anon_sym_EQ] = ACTIONS(123), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(351), [anon_sym_COMMA] = ACTIONS(121), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), [anon_sym_LT] = ACTIONS(123), [anon_sym_GT] = ACTIONS(123), [anon_sym_where] = ACTIONS(123), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(151), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(157), - [anon_sym_do] = ACTIONS(159), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), [anon_sym_DOT_DOT] = ACTIONS(121), [anon_sym_QMARK_COLON] = ACTIONS(121), [anon_sym_AMP_AMP] = ACTIONS(121), [anon_sym_PIPE_PIPE] = ACTIONS(121), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(377), [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), [anon_sym_PLUS_EQ] = ACTIONS(121), [anon_sym_DASH_EQ] = ACTIONS(121), [anon_sym_STAR_EQ] = ACTIONS(121), @@ -32499,21 +33305,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGin] = ACTIONS(121), [anon_sym_is] = ACTIONS(123), [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), [anon_sym_SLASH] = ACTIONS(123), [anon_sym_PERCENT] = ACTIONS(123), [anon_sym_as_QMARK] = ACTIONS(121), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(391), [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -32532,378 +33338,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), [sym__automatic_semicolon] = ACTIONS(121), [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [12] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3999), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(2116), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8370), - [sym_modifiers] = STATE(8305), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(764), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(437), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_val] = ACTIONS(445), - [anon_sym_var] = ACTIONS(445), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(447), - [anon_sym_fun] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(459), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), - [anon_sym_BANG_BANG] = ACTIONS(209), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(421), }, - [13] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1132), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(371), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8390), - [sym_modifiers] = STATE(8298), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [16] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6076), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3389), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1991), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(2046), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8393), + [sym_modifiers] = STATE(8144), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(772), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(351), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(353), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_val] = ACTIONS(359), - [anon_sym_var] = ACTIONS(359), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(361), - [anon_sym_fun] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(373), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(639), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -32922,183 +33533,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(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [14] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3187), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(2139), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8373), - [sym_modifiers] = STATE(8313), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [17] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6148), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5160), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4083), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1862), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8256), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(770), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_val] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(573), - [anon_sym_fun] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(577), - [anon_sym_set] = ACTIONS(579), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(585), - [sym_label] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(593), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(661), + [anon_sym_fun] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(665), + [anon_sym_set] = ACTIONS(667), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(669), + [sym_label] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(291), + [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(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33117,183 +33726,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [15] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3123), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(2139), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8373), - [sym_modifiers] = STATE(8313), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [18] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6258), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1155), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1434), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8101), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_val] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(573), - [anon_sym_fun] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(577), - [anon_sym_set] = ACTIONS(579), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(585), - [sym_label] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(593), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(693), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33312,182 +33920,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [16] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4743), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4011), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4525), - [sym_parenthesized_expression] = STATE(4525), - [sym_collection_literal] = STATE(4525), - [sym__literal_constant] = STATE(4525), - [sym_string_literal] = STATE(4525), - [sym_lambda_literal] = STATE(4525), - [sym_anonymous_function] = STATE(4525), - [sym__function_literal] = STATE(4525), - [sym_object_literal] = STATE(4525), - [sym_this_expression] = STATE(4525), - [sym_super_expression] = STATE(4525), - [sym_if_expression] = STATE(4525), - [sym_when_expression] = STATE(4525), - [sym_try_expression] = STATE(4525), - [sym_jump_expression] = STATE(4525), - [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1459), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8368), - [sym_modifiers] = STATE(8307), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4525), - [sym_long_literal] = STATE(4525), - [sym_boolean_literal] = STATE(4525), - [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [19] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6317), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2239), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8240), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_val] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(647), - [anon_sym_fun] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(655), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(163), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(723), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33506,180 +34114,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [17] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3999), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2234), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(1774), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8365), - [sym_modifiers] = STATE(8296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), + [20] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6317), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3864), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2239), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8240), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(755), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(671), - [anon_sym_var] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(673), - [anon_sym_fun] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(681), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(723), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33698,181 +34308,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [18] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1028), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(398), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1653), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8352), - [sym_modifiers] = STATE(8281), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(752), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [21] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6110), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4775), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4019), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(2132), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(699), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(703), - [anon_sym_var] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(705), - [anon_sym_fun] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(713), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(727), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(753), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(239), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -33891,181 +34503,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [19] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1132), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(398), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1653), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8352), - [sym_modifiers] = STATE(8281), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(752), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [22] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6110), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4695), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4019), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(2132), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(699), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(703), - [anon_sym_var] = ACTIONS(703), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(705), - [anon_sym_fun] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(713), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(727), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(753), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(239), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34084,145 +34697,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(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [20] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5242), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4063), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1835), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8364), - [sym_modifiers] = STATE(8306), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(763), - [aux_sym_modifiers_repeat1] = STATE(5616), + [23] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6148), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5144), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4083), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1862), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8256), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(770), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(735), - [anon_sym_var] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(737), - [anon_sym_fun] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(661), + [anon_sym_fun] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(665), + [anon_sym_set] = ACTIONS(667), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(745), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(541), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(669), + [sym_label] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(449), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(343), + [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -34230,29 +34843,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -34285,7 +34898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -34293,551 +34906,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [21] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3912), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2234), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(1774), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8365), - [sym_modifiers] = STATE(8296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(755), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(671), - [anon_sym_var] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(673), - [anon_sym_fun] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(681), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_BANG_BANG] = ACTIONS(341), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [22] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3481), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1635), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(1593), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8382), - [sym_modifiers] = STATE(8294), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(765), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_val] = ACTIONS(761), - [anon_sym_var] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(763), - [anon_sym_fun] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(771), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(291), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_BANG_BANG] = ACTIONS(341), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [23] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3123), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(1687), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8355), - [sym_modifiers] = STATE(8288), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [24] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6346), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3207), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1511), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8268), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(789), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(795), - [anon_sym_fun] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(803), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(593), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(291), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(777), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(289), + [anon_sym_DASH_EQ] = ACTIONS(289), + [anon_sym_STAR_EQ] = ACTIONS(289), + [anon_sym_SLASH_EQ] = ACTIONS(289), + [anon_sym_PERCENT_EQ] = ACTIONS(289), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(291), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -34856,182 +35084,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [24] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4721), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4011), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4525), - [sym_parenthesized_expression] = STATE(4525), - [sym_collection_literal] = STATE(4525), - [sym__literal_constant] = STATE(4525), - [sym_string_literal] = STATE(4525), - [sym_lambda_literal] = STATE(4525), - [sym_anonymous_function] = STATE(4525), - [sym__function_literal] = STATE(4525), - [sym_object_literal] = STATE(4525), - [sym_this_expression] = STATE(4525), - [sym_super_expression] = STATE(4525), - [sym_if_expression] = STATE(4525), - [sym_when_expression] = STATE(4525), - [sym_try_expression] = STATE(4525), - [sym_jump_expression] = STATE(4525), - [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1459), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8368), - [sym_modifiers] = STATE(8307), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4525), - [sym_long_literal] = STATE(4525), - [sym_boolean_literal] = STATE(4525), - [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5616), + [25] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6076), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3368), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1991), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(2046), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8393), + [sym_modifiers] = STATE(8144), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(772), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_RBRACE] = ACTIONS(209), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_val] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(647), - [anon_sym_fun] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(655), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(163), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(639), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35050,180 +35279,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [25] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3187), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(1687), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8355), - [sym_modifiers] = STATE(8288), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [26] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6258), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1132), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1434), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8101), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_class] = ACTIONS(789), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(795), - [anon_sym_fun] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(803), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(593), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(343), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(693), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35242,182 +35472,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [26] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3470), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1635), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(1593), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8382), - [sym_modifiers] = STATE(8294), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(765), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [27] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6346), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3160), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1511), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8268), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_val] = ACTIONS(761), - [anon_sym_var] = ACTIONS(761), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(763), - [anon_sym_fun] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(771), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(291), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(777), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35436,180 +35666,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [27] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5141), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4063), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1835), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8364), - [sym_modifiers] = STATE(8306), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(763), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [28] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6349), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3368), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2291), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1561), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8356), + [sym_modifiers] = STATE(8131), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_class] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(735), - [anon_sym_var] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(737), - [anon_sym_fun] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(745), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(541), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(211), - [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(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(123), + [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(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35628,180 +35859,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(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(203), }, - [28] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4743), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4141), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8387), - [sym_modifiers] = STATE(8299), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [29] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6286), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4775), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4094), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1476), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8368), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_val] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(829), - [anon_sym_fun] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [anon_sym_DASH_GT] = ACTIONS(341), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(161), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(325), [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_else] = ACTIONS(123), + [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(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -35820,179 +36051,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [29] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4721), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4141), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8387), - [sym_modifiers] = STATE(8299), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5616), + [30] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6349), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3389), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2291), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1561), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8356), + [sym_modifiers] = STATE(8131), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(209), + [anon_sym_RBRACK] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_RBRACE] = ACTIONS(289), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_val] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(829), - [anon_sym_fun] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [anon_sym_DASH_GT] = ACTIONS(209), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(843), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_DASH_GT] = ACTIONS(289), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(291), + [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(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36011,179 +36243,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [30] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3470), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2263), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8367), - [sym_modifiers] = STATE(8293), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(780), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [31] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6286), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4695), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4094), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1476), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8368), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_RBRACK] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(849), - [anon_sym_interface] = ACTIONS(849), - [anon_sym_enum] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_val] = ACTIONS(855), - [anon_sym_var] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(857), - [anon_sym_fun] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(863), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_DASH_GT] = ACTIONS(209), - [sym_label] = ACTIONS(867), - [anon_sym_for] = ACTIONS(869), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(871), - [anon_sym_do] = ACTIONS(291), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(875), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_RBRACK] = ACTIONS(289), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_DASH_GT] = ACTIONS(289), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(239), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(243), + [anon_sym_else] = ACTIONS(291), + [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(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36202,179 +36435,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [31] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3481), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2263), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8367), - [sym_modifiers] = STATE(8293), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(780), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [32] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6068), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3160), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1716), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1990), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8090), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_RBRACK] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(849), - [anon_sym_interface] = ACTIONS(849), - [anon_sym_enum] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_val] = ACTIONS(855), - [anon_sym_var] = ACTIONS(855), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), [anon_sym_object] = ACTIONS(857), [anon_sym_fun] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(341), + [anon_sym_SEMI] = ACTIONS(121), [anon_sym_get] = ACTIONS(861), [anon_sym_set] = ACTIONS(863), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), - [anon_sym_DASH_GT] = ACTIONS(341), [sym_label] = ACTIONS(867), [anon_sym_for] = ACTIONS(869), - [anon_sym_in] = ACTIONS(343), + [anon_sym_in] = ACTIONS(123), [anon_sym_while] = ACTIONS(871), - [anon_sym_do] = ACTIONS(291), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), + [anon_sym_if] = ACTIONS(583), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), [anon_sym_PLUS] = ACTIONS(875), [anon_sym_DASH] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), [anon_sym_PLUS_PLUS] = ACTIONS(877), [anon_sym_DASH_DASH] = ACTIONS(877), [anon_sym_BANG] = ACTIONS(875), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36393,170 +36624,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(341), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__string_start] = ACTIONS(625), }, - [32] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5141), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), + [33] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6133), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5160), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8384), - [sym_modifiers] = STATE(8287), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1824), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8244), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(515), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(423), [anon_sym_class] = ACTIONS(881), [anon_sym_interface] = ACTIONS(881), [anon_sym_enum] = ACTIONS(883), [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(209), + [anon_sym_RBRACE] = ACTIONS(289), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_val] = ACTIONS(887), - [anon_sym_var] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(889), - [anon_sym_fun] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(541), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(211), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(291), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -36597,350 +36830,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [33] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3187), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1914), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(1636), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8358), - [sym_modifiers] = STATE(8295), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), + [34] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6133), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5144), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1824), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8244), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(753), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(909), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_val] = ACTIONS(915), - [anon_sym_var] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(917), - [anon_sym_fun] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(923), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(927), - [anon_sym_for] = ACTIONS(929), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(593), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_BANG_BANG] = ACTIONS(341), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [34] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1132), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1745), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8391), - [sym_modifiers] = STATE(8279), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(757), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(941), - [anon_sym_interface] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_val] = ACTIONS(947), - [anon_sym_var] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(949), - [anon_sym_fun] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(955), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(959), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -36959,177 +37004,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(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [35] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1028), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1745), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8391), - [sym_modifiers] = STATE(8279), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6041), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1132), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1931), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8073), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(757), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(941), - [anon_sym_interface] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_val] = ACTIONS(947), - [anon_sym_var] = ACTIONS(947), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(949), - [anon_sym_fun] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(955), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(959), - [anon_sym_for] = ACTIONS(961), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37148,177 +37194,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(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [36] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5242), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8384), - [sym_modifiers] = STATE(8287), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6041), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1155), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1931), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8073), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_val] = ACTIONS(887), - [anon_sym_var] = ACTIONS(887), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(889), - [anon_sym_fun] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(541), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37337,177 +37384,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), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [37] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3999), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2458), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1543), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8394), - [sym_modifiers] = STATE(8292), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(784), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6068), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3207), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1716), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1990), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8090), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_val] = ACTIONS(979), - [anon_sym_var] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(981), - [anon_sym_fun] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(583), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37526,177 +37574,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(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [38] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3912), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2458), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1543), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8394), - [sym_modifiers] = STATE(8292), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6013), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(2092), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8160), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(784), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(773), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_COMMA] = ACTIONS(341), - [anon_sym_val] = ACTIONS(979), - [anon_sym_var] = ACTIONS(979), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_where] = ACTIONS(343), - [anon_sym_object] = ACTIONS(981), - [anon_sym_fun] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37715,177 +37764,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(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [39] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3123), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1914), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(1636), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8358), - [sym_modifiers] = STATE(8295), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(753), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6013), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3864), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(2092), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8160), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(773), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(909), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_val] = ACTIONS(915), - [anon_sym_var] = ACTIONS(915), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(917), - [anon_sym_fun] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(923), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(927), - [anon_sym_for] = ACTIONS(929), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(593), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_where] = ACTIONS(291), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -37904,175 +37954,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [40] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1028), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(525), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1481), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8374), - [sym_modifiers] = STATE(8300), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5988), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3389), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1797), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8105), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(775), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(1009), - [anon_sym_var] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(1011), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38091,175 +38143,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(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [41] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3187), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8283), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(766), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(5914), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3864), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2568), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(1528), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8147), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1035), - [anon_sym_var] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(1037), - [anon_sym_fun] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(593), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38278,175 +38330,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [42] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3999), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2597), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(5914), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3891), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2568), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), [sym__prefix_unary_operator] = STATE(1528), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8354), - [sym_modifiers] = STATE(8304), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8147), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(1061), - [anon_sym_var] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(1063), - [anon_sym_fun] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(497), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38465,176 +38518,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(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [43] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4743), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8289), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6156), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1155), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1747), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8357), + [sym_modifiers] = STATE(8239), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_val] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(1089), - [anon_sym_fun] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1015), + [anon_sym_interface] = ACTIONS(1015), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(1019), + [anon_sym_fun] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1025), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38653,175 +38706,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [44] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4721), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8289), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6156), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1132), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1747), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8357), + [sym_modifiers] = STATE(8239), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_val] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(1089), - [anon_sym_fun] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(239), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1015), + [anon_sym_interface] = ACTIONS(1015), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1019), + [anon_sym_fun] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1025), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -38840,174 +38894,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [45] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3912), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2597), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1528), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8354), - [sym_modifiers] = STATE(8304), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6261), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4695), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8209), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(1061), - [anon_sym_var] = ACTIONS(1061), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(1063), - [anon_sym_fun] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(467), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_interface] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(1043), + [anon_sym_fun] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(1047), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(1055), + [anon_sym_do] = ACTIONS(239), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39026,175 +39083,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(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [46] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1132), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(525), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1481), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8374), - [sym_modifiers] = STATE(8300), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6261), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4775), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8209), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(1009), - [anon_sym_var] = ACTIONS(1009), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(1011), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(381), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_interface] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1043), + [anon_sym_fun] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1047), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1055), + [anon_sym_do] = ACTIONS(239), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39213,363 +39271,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(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [47] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3123), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8283), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(766), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1035), - [anon_sym_var] = ACTIONS(1035), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(1037), - [anon_sym_fun] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(593), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_BANG_BANG] = ACTIONS(209), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [48] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3481), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2525), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1795), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8360), - [sym_modifiers] = STATE(8303), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5988), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3368), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1797), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8105), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(770), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(775), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_val] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(1109), - [anon_sym_fun] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(291), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_BANG_EQ] = ACTIONS(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -39588,143 +39459,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(341), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__string_start] = ACTIONS(203), }, - [49] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5141), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8302), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(761), - [aux_sym_modifiers_repeat1] = STATE(5616), + [48] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6221), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5160), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8214), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(756), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(209), + [anon_sym_RBRACE] = ACTIONS(289), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1133), - [anon_sym_var] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(1135), - [anon_sym_fun] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(1139), - [anon_sym_set] = ACTIONS(1141), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(1061), + [anon_sym_fun] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(1065), + [anon_sym_set] = ACTIONS(1067), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(541), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(211), + [anon_sym_else] = ACTIONS(291), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -39732,24 +39604,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(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), [anon_sym_PLUS] = ACTIONS(69), [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), [anon_sym_PLUS_PLUS] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(71), [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(209), + [anon_sym_BANG_BANG] = ACTIONS(289), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -39790,128 +39662,505 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, + [49] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6300), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3207), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8070), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(759), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(291), + [anon_sym_as] = ACTIONS(291), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(291), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_QMARK_COLON] = ACTIONS(289), + [anon_sym_AMP_AMP] = ACTIONS(289), + [anon_sym_PIPE_PIPE] = ACTIONS(289), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(291), + [anon_sym_BANG_EQ_EQ] = ACTIONS(289), + [anon_sym_EQ_EQ] = ACTIONS(291), + [anon_sym_EQ_EQ_EQ] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(289), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(291), + [anon_sym_PERCENT] = ACTIONS(289), + [anon_sym_as_QMARK] = ACTIONS(289), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_BANG_BANG] = ACTIONS(289), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_safe_nav] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, [50] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5242), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8302), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6300), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3160), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8070), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(761), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(759), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(579), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [51] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6221), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5144), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8214), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(756), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(343), - [anon_sym_as] = ACTIONS(343), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_RBRACE] = ACTIONS(121), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1133), - [anon_sym_var] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_object] = ACTIONS(1135), - [anon_sym_fun] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(341), - [anon_sym_get] = ACTIONS(1139), - [anon_sym_set] = ACTIONS(1141), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_object] = ACTIONS(1061), + [anon_sym_fun] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(1065), + [anon_sym_set] = ACTIONS(1067), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(541), - [anon_sym_DOT_DOT] = ACTIONS(341), - [anon_sym_QMARK_COLON] = ACTIONS(341), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(447), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(343), + [anon_sym_else] = ACTIONS(123), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -39919,24 +40168,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(343), - [anon_sym_BANG_EQ_EQ] = ACTIONS(341), - [anon_sym_EQ_EQ] = ACTIONS(343), - [anon_sym_EQ_EQ_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), [anon_sym_PLUS] = ACTIONS(69), [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(343), - [anon_sym_PERCENT] = ACTIONS(341), - [anon_sym_as_QMARK] = ACTIONS(341), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(121), + [anon_sym_as_QMARK] = ACTIONS(121), [anon_sym_PLUS_PLUS] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(71), [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(341), + [anon_sym_BANG_BANG] = ACTIONS(121), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -39977,286 +40226,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_safe_nav] = ACTIONS(341), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [51] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3470), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2525), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1795), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8360), - [sym_modifiers] = STATE(8303), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(770), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_val] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_object] = ACTIONS(1109), - [anon_sym_fun] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(291), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(209), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_BANG_BANG] = ACTIONS(209), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, [52] = { - [sym_file_annotation] = STATE(3116), - [sym_package_header] = STATE(74), - [sym_import_list] = STATE(80), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat1] = STATE(3116), - [aux_sym_source_file_repeat2] = STATE(80), - [aux_sym_source_file_repeat3] = STATE(219), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1147), + [sym_file_annotation] = STATE(3201), + [sym_package_header] = STATE(80), + [sym_import_list] = STATE(82), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat1] = STATE(3201), + [aux_sym_source_file_repeat2] = STATE(82), + [aux_sym_source_file_repeat3] = STATE(229), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1097), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(13), @@ -40340,92 +40403,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [53] = { [sym_file_annotation] = STATE(52), - [sym_package_header] = STATE(62), - [sym_import_list] = STATE(73), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), + [sym_package_header] = STATE(76), + [sym_import_list] = STATE(78), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), [aux_sym_source_file_repeat1] = STATE(52), - [aux_sym_source_file_repeat2] = STATE(73), - [aux_sym_source_file_repeat3] = STATE(213), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1149), + [aux_sym_source_file_repeat2] = STATE(78), + [aux_sym_source_file_repeat3] = STATE(234), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1099), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(13), @@ -40508,93 +40572,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [54] = { - [sym_file_annotation] = STATE(3116), - [sym_package_header] = STATE(62), - [sym_import_list] = STATE(73), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat1] = STATE(3116), - [aux_sym_source_file_repeat2] = STATE(73), - [aux_sym_source_file_repeat3] = STATE(213), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1149), + [sym_file_annotation] = STATE(3201), + [sym_package_header] = STATE(76), + [sym_import_list] = STATE(78), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat1] = STATE(3201), + [aux_sym_source_file_repeat2] = STATE(78), + [aux_sym_source_file_repeat3] = STATE(234), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1099), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(11), [anon_sym_LBRACK] = ACTIONS(13), @@ -40677,135 +40742,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [55] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9663), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10036), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_in] = ACTIONS(123), - [anon_sym_while] = ACTIONS(157), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_else] = ACTIONS(123), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(121), - [anon_sym_is] = ACTIONS(123), - [anon_sym_BANGis] = ACTIONS(121), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_in] = ACTIONS(295), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(295), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(293), + [anon_sym_is] = ACTIONS(295), + [anon_sym_BANGis] = ACTIONS(293), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(333), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40824,155 +40890,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym__automatic_semicolon] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [56] = { - [sym_type_alias] = STATE(5317), - [sym__declaration] = STATE(5317), - [sym_class_declaration] = STATE(5317), - [sym_function_declaration] = STATE(5317), - [sym_property_declaration] = STATE(5317), - [sym_getter] = STATE(5317), - [sym_setter] = STATE(5317), - [sym_object_declaration] = STATE(5317), - [sym__statement] = STATE(5317), - [sym_control_structure_body] = STATE(5346), - [sym__block] = STATE(5317), - [sym__loop_statement] = STATE(5317), - [sym_for_statement] = STATE(5317), - [sym_while_statement] = STATE(5317), - [sym_do_while_statement] = STATE(5317), - [sym_assignment] = STATE(5317), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8286), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(5404), + [sym__declaration] = STATE(5404), + [sym_class_declaration] = STATE(5404), + [sym_binding_pattern_kind] = STATE(6054), + [sym_function_declaration] = STATE(5404), + [sym_property_declaration] = STATE(5404), + [sym_getter] = STATE(5404), + [sym_setter] = STATE(5404), + [sym_object_declaration] = STATE(5404), + [sym__statement] = STATE(5404), + [sym_control_structure_body] = STATE(5372), + [sym__block] = STATE(5404), + [sym__loop_statement] = STATE(5404), + [sym_for_statement] = STATE(5404), + [sym_while_statement] = STATE(5404), + [sym_do_while_statement] = STATE(5404), + [sym_assignment] = STATE(5404), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(764), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1161), - [anon_sym_fun] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_in] = ACTIONS(343), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(343), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_BANGin] = ACTIONS(341), - [anon_sym_is] = ACTIONS(343), - [anon_sym_BANGis] = ACTIONS(341), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [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(1093), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -40991,155 +41058,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(341), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [57] = { - [sym_type_alias] = STATE(5317), - [sym__declaration] = STATE(5317), - [sym_class_declaration] = STATE(5317), - [sym_function_declaration] = STATE(5317), - [sym_property_declaration] = STATE(5317), - [sym_getter] = STATE(5317), - [sym_setter] = STATE(5317), - [sym_object_declaration] = STATE(5317), - [sym__statement] = STATE(5317), - [sym_control_structure_body] = STATE(5394), - [sym__block] = STATE(5317), - [sym__loop_statement] = STATE(5317), - [sym_for_statement] = STATE(5317), - [sym_while_statement] = STATE(5317), - [sym_do_while_statement] = STATE(5317), - [sym_assignment] = STATE(5317), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8286), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(5404), + [sym__declaration] = STATE(5404), + [sym_class_declaration] = STATE(5404), + [sym_binding_pattern_kind] = STATE(6054), + [sym_function_declaration] = STATE(5404), + [sym_property_declaration] = STATE(5404), + [sym_getter] = STATE(5404), + [sym_setter] = STATE(5404), + [sym_object_declaration] = STATE(5404), + [sym__statement] = STATE(5404), + [sym_control_structure_body] = STATE(5363), + [sym__block] = STATE(5404), + [sym__loop_statement] = STATE(5404), + [sym_for_statement] = STATE(5404), + [sym_while_statement] = STATE(5404), + [sym_do_while_statement] = STATE(5404), + [sym_assignment] = STATE(5404), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(764), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1161), - [anon_sym_fun] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_in] = ACTIONS(291), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(291), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_BANGin] = ACTIONS(289), + [anon_sym_is] = ACTIONS(291), + [anon_sym_BANGis] = ACTIONS(289), + [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(1093), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -41158,110 +41226,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [58] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9478), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9552), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9828), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(10008), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -41270,8 +41339,8 @@ 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_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -41281,7 +41350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1179), + [anon_sym_DASH_GT] = ACTIONS(1127), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -41344,89 +41413,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [59] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9920), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9827), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10031), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(10029), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -41435,8 +41505,8 @@ 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(1181), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -41446,7 +41516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1131), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -41509,99 +41579,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [60] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(10024), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9627), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_import_list] = STATE(3023), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat2] = STATE(3023), + [aux_sym_source_file_repeat3] = STATE(223), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1133), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -41611,7 +41683,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(1187), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -41674,89 +41745,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [61] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9677), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9827), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10049), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9678), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -41765,8 +41837,8 @@ 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(1189), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -41776,7 +41848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1137), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -41839,100 +41911,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [62] = { - [sym_import_list] = STATE(80), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat2] = STATE(80), - [aux_sym_source_file_repeat3] = STATE(219), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1147), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9554), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(10029), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1139), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -41942,6 +42014,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(1131), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -42004,89 +42077,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [63] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9654), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9552), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10095), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9678), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -42095,8 +42169,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1191), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -42106,7 +42180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1179), + [anon_sym_DASH_GT] = ACTIONS(1137), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -42169,89 +42243,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [64] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9884), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9483), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9897), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9789), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -42260,8 +42335,8 @@ 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(1193), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -42271,7 +42346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1145), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -42334,89 +42409,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [65] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(10076), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9676), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9918), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(10029), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -42425,8 +42501,8 @@ 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_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -42436,7 +42512,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(1199), + [anon_sym_DASH_GT] = ACTIONS(1131), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -42499,100 +42575,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [66] = { - [sym_import_list] = STATE(3046), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat2] = STATE(3046), - [aux_sym_source_file_repeat3] = STATE(213), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1149), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9497), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(10008), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1149), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -42602,6 +42678,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(1127), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -42664,90 +42741,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [67] = { - [sym_import_list] = STATE(73), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat2] = STATE(73), - [aux_sym_source_file_repeat3] = STATE(213), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1149), + [sym_import_list] = STATE(3023), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat2] = STATE(3023), + [aux_sym_source_file_repeat3] = STATE(234), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1099), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -42829,99 +42907,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [68] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9881), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9879), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_import_list] = STATE(78), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat2] = STATE(78), + [aux_sym_source_file_repeat3] = STATE(234), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1099), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1201), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -42931,7 +43011,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(1203), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -42994,89 +43073,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [69] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9695), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9879), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9757), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(10008), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -43085,8 +43165,8 @@ 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_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -43096,7 +43176,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(1203), + [anon_sym_DASH_GT] = ACTIONS(1127), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -43159,100 +43239,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [70] = { - [sym_import_list] = STATE(3046), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat2] = STATE(3046), - [aux_sym_source_file_repeat3] = STATE(245), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1207), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10073), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9840), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -43262,6 +43342,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), @@ -43324,89 +43405,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [71] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9594), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9827), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9983), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9789), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -43415,8 +43497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -43426,7 +43508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1145), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -43489,89 +43571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [72] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9512), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9676), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10084), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9886), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -43580,8 +43663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -43591,7 +43674,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(1199), + [anon_sym_DASH_GT] = ACTIONS(1161), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -43654,100 +43737,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [73] = { - [sym_import_list] = STATE(3046), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat2] = STATE(3046), - [aux_sym_source_file_repeat3] = STATE(219), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1147), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9509), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(10008), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1163), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -43757,6 +43840,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(1127), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -43819,100 +43903,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [74] = { - [sym_import_list] = STATE(70), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat2] = STATE(70), - [aux_sym_source_file_repeat3] = STATE(254), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1213), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10060), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9678), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -43922,6 +44006,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(1137), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -43984,89 +44069,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [75] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9984), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9552), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10153), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9840), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -44075,8 +44161,8 @@ 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(1215), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44086,7 +44172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1179), + [anon_sym_DASH_GT] = ACTIONS(1155), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44149,99 +44235,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [76] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9804), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9879), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_import_list] = STATE(82), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat2] = STATE(82), + [aux_sym_source_file_repeat3] = STATE(229), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1097), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1217), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44251,7 +44339,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(1203), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44314,89 +44401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [77] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9618), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9879), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9900), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9886), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -44405,8 +44493,8 @@ 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(1219), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44416,7 +44504,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(1203), + [anon_sym_DASH_GT] = ACTIONS(1161), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44479,99 +44567,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [78] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9715), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9627), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_import_list] = STATE(3023), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat2] = STATE(3023), + [aux_sym_source_file_repeat3] = STATE(229), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1097), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1221), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44581,7 +44671,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(1187), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44644,89 +44733,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [79] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9959), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9552), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9880), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9840), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -44735,8 +44825,8 @@ 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(1223), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -44746,7 +44836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1179), + [anon_sym_DASH_GT] = ACTIONS(1155), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -44809,90 +44899,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [80] = { - [sym_import_list] = STATE(3046), - [sym_import_header] = STATE(8689), - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat2] = STATE(3046), - [aux_sym_source_file_repeat3] = STATE(254), - [aux_sym_import_list_repeat1] = STATE(8689), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1213), + [sym_import_list] = STATE(60), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat2] = STATE(60), + [aux_sym_source_file_repeat3] = STATE(238), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1173), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -44974,89 +45065,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [81] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9915), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9676), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10109), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9886), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -45065,8 +45157,8 @@ 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(1225), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45076,7 +45168,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(1199), + [anon_sym_DASH_GT] = ACTIONS(1161), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45139,99 +45231,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [82] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9845), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9483), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_import_list] = STATE(3023), + [sym_import_header] = STATE(8705), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat2] = STATE(3023), + [aux_sym_source_file_repeat3] = STATE(238), + [aux_sym_import_list_repeat1] = STATE(8705), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1173), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_import] = ACTIONS(17), [anon_sym_typealias] = ACTIONS(19), [anon_sym_class] = ACTIONS(21), [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45241,7 +45335,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(1195), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45304,89 +45397,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [83] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9902), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9483), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10125), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9789), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -45395,8 +45489,8 @@ 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(1229), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45406,7 +45500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1145), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45469,89 +45563,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [84] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9784), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9627), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10154), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(9789), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -45560,8 +45655,8 @@ 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(1231), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45571,7 +45666,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(1187), + [anon_sym_DASH_GT] = ACTIONS(1145), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45634,89 +45729,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [85] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_variable_declaration] = STATE(8893), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9638), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_multi_variable_declaration] = STATE(8893), - [sym_lambda_parameters] = STATE(9827), - [sym__lambda_parameter] = STATE(8893), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5285), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_variable_declaration] = STATE(9007), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9767), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_multi_variable_declaration] = STATE(9007), + [sym_lambda_parameters] = STATE(10029), + [sym__lambda_parameter] = STATE(9007), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5273), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -45725,8 +45821,8 @@ 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(1233), - [anon_sym_LPAREN] = ACTIONS(1177), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1125), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(31), @@ -45736,7 +45832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), - [anon_sym_DASH_GT] = ACTIONS(1183), + [anon_sym_DASH_GT] = ACTIONS(1131), [sym_label] = ACTIONS(45), [anon_sym_for] = ACTIONS(47), [anon_sym_while] = ACTIONS(49), @@ -45799,130 +45895,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [86] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9663), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10036), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -45941,151 +46038,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym__automatic_semicolon] = ACTIONS(121), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym__automatic_semicolon] = ACTIONS(293), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [87] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(5625), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8289), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(5887), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4887), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(3298), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(1609), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8023), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_object] = ACTIONS(1089), - [anon_sym_fun] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1235), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1101), + [anon_sym_LBRACK] = ACTIONS(207), + [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(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(219), + [anon_sym_fun] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(1183), + [anon_sym_get] = ACTIONS(223), + [anon_sym_set] = ACTIONS(225), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_else] = ACTIONS(1237), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(243), + [anon_sym_else] = ACTIONS(1187), + [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(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46104,150 +46202,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [88] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5634), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8302), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(761), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6224), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3254), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1672), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8058), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1133), - [anon_sym_var] = ACTIONS(1133), - [anon_sym_object] = ACTIONS(1135), - [anon_sym_fun] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym_get] = ACTIONS(1139), - [anon_sym_set] = ACTIONS(1141), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1241), - [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(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(583), + [anon_sym_else] = ACTIONS(1193), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46266,150 +46365,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [89] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3261), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(2139), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8373), - [sym_modifiers] = STATE(8313), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6252), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1053), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1727), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8046), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(758), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_object] = ACTIONS(573), - [anon_sym_fun] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(1243), - [anon_sym_get] = ACTIONS(577), - [anon_sym_set] = ACTIONS(579), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(1199), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46428,150 +46528,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [90] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(2217), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1745), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8391), - [sym_modifiers] = STATE(8279), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(757), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6156), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(2363), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1747), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8357), + [sym_modifiers] = STATE(8239), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(941), - [anon_sym_interface] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(947), - [anon_sym_var] = ACTIONS(947), - [anon_sym_object] = ACTIONS(949), - [anon_sym_fun] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(955), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(959), - [anon_sym_for] = ACTIONS(961), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1015), + [anon_sym_interface] = ACTIONS(1015), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1019), + [anon_sym_fun] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1025), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46590,150 +46691,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [91] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(5458), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4141), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8387), - [sym_modifiers] = STATE(8299), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(9391), + [sym__declaration] = STATE(9391), + [sym_class_declaration] = STATE(9391), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9391), + [sym_property_declaration] = STATE(9391), + [sym_getter] = STATE(9391), + [sym_setter] = STATE(9391), + [sym_object_declaration] = STATE(9391), + [sym__statement] = STATE(9391), + [sym_control_structure_body] = STATE(9460), + [sym__block] = STATE(9391), + [sym__loop_statement] = STATE(9391), + [sym_for_statement] = STATE(9391), + [sym_while_statement] = STATE(9391), + [sym_do_while_statement] = STATE(9391), + [sym_assignment] = STATE(9391), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_object] = ACTIONS(829), - [anon_sym_fun] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), + [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(1205), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [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(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46752,150 +46853,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [92] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(4294), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2525), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1795), - [sym__postfix_unary_expression] = STATE(8431), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6258), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1286), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1434), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8101), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1207), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(1211), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [93] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6068), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(4084), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1716), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1990), + [sym__postfix_unary_expression] = STATE(8426), [sym_directly_assignable_expression] = STATE(8360), - [sym_modifiers] = STATE(8303), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(770), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym_modifiers] = STATE(8090), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_object] = ACTIONS(1109), - [anon_sym_fun] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1213), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(579), [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(1259), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(583), + [anon_sym_else] = ACTIONS(1215), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -46914,62 +47180,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__string_start] = ACTIONS(625), }, - [93] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4753), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(3275), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), + [94] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6286), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(5441), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4094), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), [sym__primary_expression] = STATE(4525), [sym_parenthesized_expression] = STATE(4525), [sym_collection_literal] = STATE(4525), @@ -46986,240 +47253,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_expression] = STATE(4525), [sym_jump_expression] = STATE(4525), [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1983), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8356), - [sym_modifiers] = STATE(8280), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [sym__prefix_unary_operator] = STATE(1476), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8368), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), [sym_unsigned_literal] = STATE(4525), [sym_long_literal] = STATE(4525), [sym_boolean_literal] = STATE(4525), [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(783), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(215), - [anon_sym_interface] = ACTIONS(215), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(221), - [anon_sym_var] = ACTIONS(221), - [anon_sym_object] = ACTIONS(223), - [anon_sym_fun] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_get] = ACTIONS(227), - [anon_sym_set] = ACTIONS(229), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1217), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), + [anon_sym_null] = ACTIONS(325), [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(1265), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [94] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3980), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(2116), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8370), - [sym_modifiers] = STATE(8305), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(764), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(445), - [anon_sym_var] = ACTIONS(445), - [anon_sym_object] = ACTIONS(447), - [anon_sym_fun] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(1267), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(1271), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_else] = ACTIONS(1219), + [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(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -47238,150 +47343,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [95] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3437), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(2133), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8376), - [sym_modifiers] = STATE(8308), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(758), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6300), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(4179), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8070), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(759), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(261), - [anon_sym_interface] = ACTIONS(261), - [anon_sym_enum] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [anon_sym_object] = ACTIONS(271), - [anon_sym_fun] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_get] = ACTIONS(275), - [anon_sym_set] = ACTIONS(277), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(285), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(1277), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(1223), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -47400,150 +47506,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [96] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(4060), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1914), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(1636), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8358), - [sym_modifiers] = STATE(8295), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(753), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(9391), + [sym__declaration] = STATE(9391), + [sym_class_declaration] = STATE(9391), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9391), + [sym_property_declaration] = STATE(9391), + [sym_getter] = STATE(9391), + [sym_setter] = STATE(9391), + [sym_object_declaration] = STATE(9391), + [sym__statement] = STATE(9391), + [sym_control_structure_body] = STATE(9305), + [sym__block] = STATE(9391), + [sym__loop_statement] = STATE(9391), + [sym_for_statement] = STATE(9391), + [sym_while_statement] = STATE(9391), + [sym_do_while_statement] = STATE(9391), + [sym_assignment] = STATE(9391), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(909), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(915), - [anon_sym_var] = ACTIONS(915), - [anon_sym_object] = ACTIONS(917), - [anon_sym_fun] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(923), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(927), - [anon_sym_for] = ACTIONS(929), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), + [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(1205), + [anon_sym_RBRACE] = ACTIONS(289), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -47562,306 +47668,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(289), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [97] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(4279), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2458), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1543), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8394), - [sym_modifiers] = STATE(8292), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(784), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(979), - [anon_sym_var] = ACTIONS(979), - [anon_sym_object] = ACTIONS(981), - [anon_sym_fun] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1283), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(1285), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [98] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5202), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(3759), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1750), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8395), - [sym_modifiers] = STATE(8311), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6143), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5069), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(3803), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1684), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8296), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), [aux_sym__statement_repeat1] = STATE(776), - [aux_sym_modifiers_repeat1] = STATE(5616), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(517), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(425), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(429), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(523), - [anon_sym_var] = ACTIONS(523), - [anon_sym_object] = ACTIONS(525), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(531), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1225), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(535), - [anon_sym_for] = ACTIONS(537), - [anon_sym_while] = ACTIONS(539), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(441), + [anon_sym_for] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(1229), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -47894,7 +47840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -47905,131 +47851,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [99] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(4191), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2263), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8367), - [sym_modifiers] = STATE(8293), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), + [98] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5909), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3456), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(1475), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), [aux_sym__statement_repeat1] = STATE(780), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(849), - [anon_sym_interface] = ACTIONS(849), - [anon_sym_enum] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(855), - [anon_sym_var] = ACTIONS(855), - [anon_sym_object] = ACTIONS(857), - [anon_sym_fun] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(1293), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(863), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(867), - [anon_sym_for] = ACTIONS(869), - [anon_sym_while] = ACTIONS(871), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(1295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [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_else] = ACTIONS(1235), + [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(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48048,150 +47995,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [99] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6076), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(4087), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1991), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(2046), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8393), + [sym_modifiers] = STATE(8144), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(772), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [100] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(4136), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2234), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(1774), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8365), - [sym_modifiers] = STATE(8296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6317), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(4135), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2239), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8240), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(755), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(671), - [anon_sym_var] = ACTIONS(671), - [anon_sym_object] = ACTIONS(673), - [anon_sym_fun] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1297), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(1301), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(1247), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48210,150 +48321,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [101] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(2377), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(525), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1481), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8374), - [sym_modifiers] = STATE(8300), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6346), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3434), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1511), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8268), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(1009), - [anon_sym_var] = ACTIONS(1009), - [anon_sym_object] = ACTIONS(1011), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(1305), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48372,150 +48484,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [102] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1066), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(371), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8431), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6002), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3895), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(1422), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1550), + [sym__postfix_unary_expression] = STATE(8426), [sym_directly_assignable_expression] = STATE(8390), - [sym_modifiers] = STATE(8298), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_modifiers] = STATE(8139), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(353), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(359), - [anon_sym_var] = ACTIONS(359), - [anon_sym_object] = ACTIONS(361), - [anon_sym_fun] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(469), + [anon_sym_interface] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(477), + [anon_sym_fun] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_get] = ACTIONS(481), + [anon_sym_set] = ACTIONS(483), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(491), + [anon_sym_for] = ACTIONS(493), + [anon_sym_while] = ACTIONS(495), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48534,150 +48647,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [103] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(4313), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2597), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1528), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8354), - [sym_modifiers] = STATE(8304), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6110), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(5309), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4019), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(2132), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(1061), - [anon_sym_var] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1063), - [anon_sym_fun] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(1315), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48696,62 +48810,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(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [104] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(5309), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4011), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6261), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(5624), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), [sym__primary_expression] = STATE(4525), [sym_parenthesized_expression] = STATE(4525), [sym_collection_literal] = STATE(4525), @@ -48768,78 +48883,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_expression] = STATE(4525), [sym_jump_expression] = STATE(4525), [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1459), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8368), - [sym_modifiers] = STATE(8307), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8209), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), [sym_unsigned_literal] = STATE(4525), [sym_long_literal] = STATE(4525), [sym_boolean_literal] = STATE(4525), [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_object] = ACTIONS(647), - [anon_sym_fun] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1317), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_interface] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1043), + [anon_sym_fun] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_get] = ACTIONS(1047), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1055), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(163), - [anon_sym_else] = ACTIONS(1321), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -48858,150 +48973,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [105] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(4065), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1635), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(1593), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8382), - [sym_modifiers] = STATE(8294), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5988), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(4288), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1797), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8105), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(765), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(775), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(761), - [anon_sym_var] = ACTIONS(761), - [anon_sym_object] = ACTIONS(763), - [anon_sym_fun] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1323), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(1327), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49020,150 +49136,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [106] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3412), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(1687), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8355), - [sym_modifiers] = STATE(8288), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6133), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5605), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1824), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8244), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(789), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_object] = ACTIONS(795), - [anon_sym_fun] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1329), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(1333), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1275), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49182,144 +49299,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [107] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5603), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8431), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6041), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(2217), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1931), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8073), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(1281), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [108] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6013), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(4276), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(2092), + [sym__postfix_unary_expression] = STATE(8426), [sym_directly_assignable_expression] = STATE(8384), - [sym_modifiers] = STATE(8287), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_modifiers] = STATE(8160), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(773), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(1285), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [109] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6148), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5409), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4083), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1862), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8256), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(770), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(429), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(887), - [anon_sym_var] = ACTIONS(887), - [anon_sym_object] = ACTIONS(889), - [anon_sym_fun] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1335), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(661), + [anon_sym_fun] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_get] = ACTIONS(665), + [anon_sym_set] = ACTIONS(667), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(1337), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1291), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [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(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), + [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_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -49352,7 +49796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -49363,112 +49807,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [108] = { - [sym_type_alias] = STATE(9331), - [sym__declaration] = STATE(9331), - [sym_class_declaration] = STATE(9331), - [sym_function_declaration] = STATE(9331), - [sym_property_declaration] = STATE(9331), - [sym_getter] = STATE(9331), - [sym_setter] = STATE(9331), - [sym_object_declaration] = STATE(9331), - [sym__statement] = STATE(9331), - [sym_control_structure_body] = STATE(9305), - [sym__block] = STATE(9331), - [sym__loop_statement] = STATE(9331), - [sym_for_statement] = STATE(9331), - [sym_while_statement] = STATE(9331), - [sym_do_while_statement] = STATE(9331), - [sym_assignment] = STATE(9331), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [110] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(5914), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(4336), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2568), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(1528), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8147), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1293), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(1295), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [111] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6221), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5645), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8214), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(756), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(885), [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_object] = ACTIONS(1061), + [anon_sym_fun] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1297), + [anon_sym_get] = ACTIONS(1065), + [anon_sym_set] = ACTIONS(1067), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(447), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1299), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), [anon_sym_throw] = ACTIONS(61), @@ -49521,135 +50130,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(341), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [109] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(4171), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8283), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(766), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [112] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6349), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(4145), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2291), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1561), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8356), + [sym_modifiers] = STATE(8131), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1035), - [anon_sym_var] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1037), - [anon_sym_fun] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1341), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(1343), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(1303), + [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(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49668,150 +50277,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [110] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1250), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(398), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1653), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8352), - [sym_modifiers] = STATE(8281), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), + [113] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6156), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1171), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1747), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8357), + [sym_modifiers] = STATE(8239), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(752), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(699), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(703), - [anon_sym_var] = ACTIONS(703), - [anon_sym_object] = ACTIONS(705), - [anon_sym_fun] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1345), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(1349), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1015), + [anon_sym_interface] = ACTIONS(1015), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1019), + [anon_sym_fun] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1025), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49830,150 +50439,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [111] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5313), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4063), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1835), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8364), - [sym_modifiers] = STATE(8306), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), + [114] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6110), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4842), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4019), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(2132), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [115] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6156), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1018), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1747), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8357), + [sym_modifiers] = STATE(8239), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(763), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(735), - [anon_sym_var] = ACTIONS(735), - [anon_sym_object] = ACTIONS(737), - [anon_sym_fun] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1355), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1015), + [anon_sym_interface] = ACTIONS(1015), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1019), + [anon_sym_fun] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1025), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -49992,149 +50763,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [112] = { - [sym_type_alias] = STATE(9331), - [sym__declaration] = STATE(9331), - [sym_class_declaration] = STATE(9331), - [sym_function_declaration] = STATE(9331), - [sym_property_declaration] = STATE(9331), - [sym_getter] = STATE(9331), - [sym_setter] = STATE(9331), - [sym_object_declaration] = STATE(9331), - [sym__statement] = STATE(9331), - [sym_control_structure_body] = STATE(9400), - [sym__block] = STATE(9331), - [sym__loop_statement] = STATE(9331), - [sym_for_statement] = STATE(9331), - [sym_while_statement] = STATE(9331), - [sym_do_while_statement] = STATE(9331), - [sym_assignment] = STATE(9331), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [116] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6252), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1016), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1727), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8046), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(758), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1339), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), [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_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50153,150 +50925,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [113] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3862), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(2116), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8370), - [sym_modifiers] = STATE(8305), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), + [117] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6252), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1147), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1727), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8046), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(758), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [118] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6002), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3856), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(1422), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1550), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8139), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(764), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(445), - [anon_sym_var] = ACTIONS(445), - [anon_sym_object] = ACTIONS(447), - [anon_sym_fun] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(469), + [anon_sym_interface] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(477), + [anon_sym_fun] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(481), + [anon_sym_set] = ACTIONS(483), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(491), + [anon_sym_for] = ACTIONS(493), + [anon_sym_while] = ACTIONS(495), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50315,129 +51249,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(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [114] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5229), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8302), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(761), - [aux_sym_modifiers_repeat1] = STATE(5616), + [119] = { + [sym_type_alias] = STATE(9391), + [sym__declaration] = STATE(9391), + [sym_class_declaration] = STATE(9391), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9391), + [sym_property_declaration] = STATE(9391), + [sym_getter] = STATE(9391), + [sym_setter] = STATE(9391), + [sym_object_declaration] = STATE(9391), + [sym__statement] = STATE(9391), + [sym_control_structure_body] = STATE(9373), + [sym__block] = STATE(9391), + [sym__loop_statement] = STATE(9391), + [sym_for_statement] = STATE(9391), + [sym_while_statement] = STATE(9391), + [sym_do_while_statement] = STATE(9391), + [sym_assignment] = STATE(9391), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_typealias] = ACTIONS(19), + [anon_sym_class] = ACTIONS(21), + [anon_sym_interface] = ACTIONS(21), + [anon_sym_enum] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1205), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1133), - [anon_sym_var] = ACTIONS(1133), - [anon_sym_object] = ACTIONS(1135), - [anon_sym_fun] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(1139), - [anon_sym_set] = ACTIONS(1141), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(1317), + [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(1143), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(541), + [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), @@ -50495,130 +51430,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [115] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5094), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(3759), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1750), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8395), - [sym_modifiers] = STATE(8311), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(776), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [120] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6041), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1171), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1931), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8073), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(517), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(523), - [anon_sym_var] = ACTIONS(523), - [anon_sym_object] = ACTIONS(525), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(531), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(535), - [anon_sym_for] = ACTIONS(537), - [anon_sym_while] = ACTIONS(539), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50637,149 +51573,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [116] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1125), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(525), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1481), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8374), - [sym_modifiers] = STATE(8300), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [121] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(5914), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3996), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2568), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(1528), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8147), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(1009), - [anon_sym_var] = ACTIONS(1009), - [anon_sym_object] = ACTIONS(1011), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50798,149 +51735,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [117] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3838), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2597), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1528), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8354), - [sym_modifiers] = STATE(8304), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [122] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5909), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3476), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(1475), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(1061), - [anon_sym_var] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1063), - [anon_sym_fun] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [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(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -50959,149 +51897,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [118] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3390), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2263), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8367), - [sym_modifiers] = STATE(8293), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(780), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [123] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(5914), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3965), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2568), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(1528), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8147), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(849), - [anon_sym_interface] = ACTIONS(849), - [anon_sym_enum] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(855), - [anon_sym_var] = ACTIONS(855), - [anon_sym_object] = ACTIONS(857), - [anon_sym_fun] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(863), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(867), - [anon_sym_for] = ACTIONS(869), - [anon_sym_while] = ACTIONS(871), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51120,149 +52059,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [119] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3388), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2263), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8367), - [sym_modifiers] = STATE(8293), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(780), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [124] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6224), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3236), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1672), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8058), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(849), - [anon_sym_interface] = ACTIONS(849), - [anon_sym_enum] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(855), - [anon_sym_var] = ACTIONS(855), - [anon_sym_object] = ACTIONS(857), - [anon_sym_fun] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(863), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(867), - [anon_sym_for] = ACTIONS(869), - [anon_sym_while] = ACTIONS(871), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51281,138 +52221,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [120] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3373), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2263), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8367), - [sym_modifiers] = STATE(8293), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(780), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [125] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6068), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3236), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1716), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1990), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8090), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(849), - [anon_sym_interface] = ACTIONS(849), - [anon_sym_enum] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(855), - [anon_sym_var] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), [anon_sym_object] = ACTIONS(857), [anon_sym_fun] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1325), [anon_sym_get] = ACTIONS(861), [anon_sym_set] = ACTIONS(863), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), [anon_sym_STAR] = ACTIONS(865), [sym_label] = ACTIONS(867), [anon_sym_for] = ACTIONS(869), [anon_sym_while] = ACTIONS(871), - [anon_sym_do] = ACTIONS(291), + [anon_sym_do] = ACTIONS(579), [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), [anon_sym_PLUS] = ACTIONS(875), [anon_sym_DASH] = ACTIONS(875), [anon_sym_PLUS_PLUS] = ACTIONS(877), @@ -51421,9 +52362,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51442,149 +52383,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__string_start] = ACTIONS(625), }, - [121] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4829), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8289), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), + [126] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6252), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1171), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1727), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8394), + [sym_modifiers] = STATE(8046), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(758), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_object] = ACTIONS(1089), - [anon_sym_fun] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51603,149 +52545,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [122] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3862), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2597), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1528), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8354), - [sym_modifiers] = STATE(8304), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [127] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6349), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3476), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2291), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1561), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8356), + [sym_modifiers] = STATE(8131), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(1061), - [anon_sym_var] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1063), - [anon_sym_fun] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [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(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51764,149 +52707,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [123] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3997), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2597), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1528), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8354), - [sym_modifiers] = STATE(8304), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), + [128] = { + [sym_type_alias] = STATE(5404), + [sym__declaration] = STATE(5404), + [sym_class_declaration] = STATE(5404), + [sym_binding_pattern_kind] = STATE(6054), + [sym_function_declaration] = STATE(5404), + [sym_property_declaration] = STATE(5404), + [sym_getter] = STATE(5404), + [sym_setter] = STATE(5404), + [sym_object_declaration] = STATE(5404), + [sym__statement] = STATE(5404), + [sym_control_structure_body] = STATE(5327), + [sym__block] = STATE(5404), + [sym__loop_statement] = STATE(5404), + [sym_for_statement] = STATE(5404), + [sym_while_statement] = STATE(5404), + [sym_do_while_statement] = STATE(5404), + [sym_assignment] = STATE(5404), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(764), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(1061), - [anon_sym_var] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1063), - [anon_sym_fun] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -51925,149 +52869,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [124] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4727), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4011), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4525), - [sym_parenthesized_expression] = STATE(4525), - [sym_collection_literal] = STATE(4525), - [sym__literal_constant] = STATE(4525), - [sym_string_literal] = STATE(4525), - [sym_lambda_literal] = STATE(4525), - [sym_anonymous_function] = STATE(4525), - [sym__function_literal] = STATE(4525), - [sym_object_literal] = STATE(4525), - [sym_this_expression] = STATE(4525), - [sym_super_expression] = STATE(4525), - [sym_if_expression] = STATE(4525), - [sym_when_expression] = STATE(4525), - [sym_try_expression] = STATE(4525), - [sym_jump_expression] = STATE(4525), - [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1459), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8368), - [sym_modifiers] = STATE(8307), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4525), - [sym_long_literal] = STATE(4525), - [sym_boolean_literal] = STATE(4525), - [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [129] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6013), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3856), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(2092), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8160), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(773), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_object] = ACTIONS(647), - [anon_sym_fun] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52086,149 +53031,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [125] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4733), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4011), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4525), - [sym_parenthesized_expression] = STATE(4525), - [sym_collection_literal] = STATE(4525), - [sym__literal_constant] = STATE(4525), - [sym_string_literal] = STATE(4525), - [sym_lambda_literal] = STATE(4525), - [sym_anonymous_function] = STATE(4525), - [sym__function_literal] = STATE(4525), - [sym_object_literal] = STATE(4525), - [sym_this_expression] = STATE(4525), - [sym_super_expression] = STATE(4525), - [sym_if_expression] = STATE(4525), - [sym_when_expression] = STATE(4525), - [sym_try_expression] = STATE(4525), - [sym_jump_expression] = STATE(4525), - [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1459), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8368), - [sym_modifiers] = STATE(8307), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4525), - [sym_long_literal] = STATE(4525), - [sym_boolean_literal] = STATE(4525), - [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [130] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6041), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1147), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1931), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8073), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_object] = ACTIONS(647), - [anon_sym_fun] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52247,149 +53193,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [126] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3390), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1635), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(1593), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8382), - [sym_modifiers] = STATE(8294), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(765), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [131] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6041), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1016), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1931), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8073), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(761), - [anon_sym_var] = ACTIONS(761), - [anon_sym_object] = ACTIONS(763), - [anon_sym_fun] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52408,149 +53355,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [127] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5237), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4063), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1835), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8364), - [sym_modifiers] = STATE(8306), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(763), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [132] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6041), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1018), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(478), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1931), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8370), + [sym_modifiers] = STATE(8073), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(340), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(777), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(735), - [anon_sym_var] = ACTIONS(735), - [anon_sym_object] = ACTIONS(737), - [anon_sym_fun] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [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(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(907), + [anon_sym_interface] = ACTIONS(907), + [anon_sym_enum] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(913), + [anon_sym_fun] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_get] = ACTIONS(917), + [anon_sym_set] = ACTIONS(919), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52569,149 +53517,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [128] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4771), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4011), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4525), - [sym_parenthesized_expression] = STATE(4525), - [sym_collection_literal] = STATE(4525), - [sym__literal_constant] = STATE(4525), - [sym_string_literal] = STATE(4525), - [sym_lambda_literal] = STATE(4525), - [sym_anonymous_function] = STATE(4525), - [sym__function_literal] = STATE(4525), - [sym_object_literal] = STATE(4525), - [sym_this_expression] = STATE(4525), - [sym_super_expression] = STATE(4525), - [sym_if_expression] = STATE(4525), - [sym_when_expression] = STATE(4525), - [sym_try_expression] = STATE(4525), - [sym_jump_expression] = STATE(4525), - [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1459), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8368), - [sym_modifiers] = STATE(8307), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4525), - [sym_long_literal] = STATE(4525), - [sym_boolean_literal] = STATE(4525), - [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5616), + [133] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5988), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3506), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1797), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8105), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(775), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(219), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(799), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_object] = ACTIONS(647), - [anon_sym_fun] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52730,149 +53679,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [129] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3388), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1635), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(1593), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8382), - [sym_modifiers] = STATE(8294), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(765), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [134] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6224), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3159), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1672), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8058), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(761), - [anon_sym_var] = ACTIONS(761), - [anon_sym_object] = ACTIONS(763), - [anon_sym_fun] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -52891,149 +53841,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [130] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4829), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4141), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8387), - [sym_modifiers] = STATE(8299), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5616), + [135] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6224), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3143), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1672), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8058), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [136] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5988), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3494), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1797), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8105), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(775), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(799), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_object] = ACTIONS(829), - [anon_sym_fun] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53052,149 +54165,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [131] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3234), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8283), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(766), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [137] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6224), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3135), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1007), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1672), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8358), + [sym_modifiers] = STATE(8058), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(338), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(798), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1035), - [anon_sym_var] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1037), - [anon_sym_fun] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_interface] = ACTIONS(551), + [anon_sym_enum] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(559), + [anon_sym_fun] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(563), + [anon_sym_set] = ACTIONS(565), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53213,149 +54327,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [132] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3373), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1635), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(1593), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8382), - [sym_modifiers] = STATE(8294), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), + [138] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5988), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3486), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1797), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8105), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(765), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(775), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(761), - [anon_sym_var] = ACTIONS(761), - [anon_sym_object] = ACTIONS(763), - [anon_sym_fun] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53374,62 +54489,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [133] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4829), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4011), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), + [139] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6261), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4716), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), [sym__primary_expression] = STATE(4525), [sym_parenthesized_expression] = STATE(4525), [sym_collection_literal] = STATE(4525), @@ -53446,238 +54562,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_expression] = STATE(4525), [sym_jump_expression] = STATE(4525), [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1459), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8368), - [sym_modifiers] = STATE(8307), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(350), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8209), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), [sym_unsigned_literal] = STATE(4525), [sym_long_literal] = STATE(4525), [sym_boolean_literal] = STATE(4525), [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(788), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(641), - [anon_sym_interface] = ACTIONS(641), - [anon_sym_enum] = ACTIONS(643), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(645), - [anon_sym_var] = ACTIONS(645), - [anon_sym_object] = ACTIONS(647), - [anon_sym_fun] = ACTIONS(649), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(651), - [anon_sym_set] = ACTIONS(653), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_interface] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1043), + [anon_sym_fun] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(1047), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1055), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [134] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1134), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(525), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1481), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8374), - [sym_modifiers] = STATE(8300), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(1009), - [anon_sym_var] = ACTIONS(1009), - [anon_sym_object] = ACTIONS(1011), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53696,149 +54651,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [135] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5237), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8302), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(761), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [140] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6349), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3486), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2291), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1561), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8356), + [sym_modifiers] = STATE(8131), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1133), - [anon_sym_var] = ACTIONS(1133), - [anon_sym_object] = ACTIONS(1135), - [anon_sym_fun] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(1139), - [anon_sym_set] = ACTIONS(1141), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [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(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -53857,149 +54813,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [136] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3099), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(2139), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8373), - [sym_modifiers] = STATE(8313), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [141] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6349), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3494), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2291), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1561), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8356), + [sym_modifiers] = STATE(8131), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_object] = ACTIONS(573), - [anon_sym_fun] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(577), - [anon_sym_set] = ACTIONS(579), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [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(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54018,149 +54975,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [137] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3879), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2597), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1528), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8354), - [sym_modifiers] = STATE(8304), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(337), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(785), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [142] = { + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6349), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3506), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2291), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1561), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8356), + [sym_modifiers] = STATE(8131), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(342), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(797), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(1057), - [anon_sym_interface] = ACTIONS(1057), - [anon_sym_enum] = ACTIONS(1059), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(1061), - [anon_sym_var] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(1063), - [anon_sym_fun] = ACTIONS(1065), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(1067), - [anon_sym_set] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(795), + [anon_sym_interface] = ACTIONS(795), + [anon_sym_enum] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(801), + [anon_sym_fun] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_get] = ACTIONS(805), + [anon_sym_set] = ACTIONS(807), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [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(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54179,130 +55137,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [138] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5229), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4063), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1835), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8364), - [sym_modifiers] = STATE(8306), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(763), - [aux_sym_modifiers_repeat1] = STATE(5616), + [143] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6148), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5095), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4083), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1862), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8256), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(770), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(429), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(735), - [anon_sym_var] = ACTIONS(735), - [anon_sym_object] = ACTIONS(737), - [anon_sym_fun] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(661), + [anon_sym_fun] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(665), + [anon_sym_set] = ACTIONS(667), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -54311,11 +55270,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(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(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_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -54348,7 +55307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -54359,130 +55318,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [139] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3099), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8283), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(766), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [144] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6013), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3992), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(2092), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8160), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(773), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1035), - [anon_sym_var] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1037), - [anon_sym_fun] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54501,149 +55461,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [140] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3185), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(2139), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8373), - [sym_modifiers] = STATE(8313), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [145] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6013), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3965), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(2092), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8160), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(773), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_object] = ACTIONS(573), - [anon_sym_fun] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(577), - [anon_sym_set] = ACTIONS(579), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54662,149 +55623,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [141] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3133), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(2139), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8373), - [sym_modifiers] = STATE(8313), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [146] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6013), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3996), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2456), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(2092), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8384), + [sym_modifiers] = STATE(8160), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(332), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(773), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_object] = ACTIONS(573), - [anon_sym_fun] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_get] = ACTIONS(577), - [anon_sym_set] = ACTIONS(579), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(937), + [anon_sym_interface] = ACTIONS(937), + [anon_sym_enum] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(943), + [anon_sym_fun] = ACTIONS(945), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(947), + [anon_sym_set] = ACTIONS(949), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54823,149 +55785,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [142] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5229), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8384), - [sym_modifiers] = STATE(8287), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [147] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6261), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4842), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8209), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(887), - [anon_sym_var] = ACTIONS(887), - [anon_sym_object] = ACTIONS(889), - [anon_sym_fun] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_interface] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1043), + [anon_sym_fun] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(1047), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1055), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -54984,149 +55947,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [143] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5210), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8384), - [sym_modifiers] = STATE(8287), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [148] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6261), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4839), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8209), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(887), - [anon_sym_var] = ACTIONS(887), - [anon_sym_object] = ACTIONS(889), - [anon_sym_fun] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_interface] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1043), + [anon_sym_fun] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(1047), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1055), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55145,149 +56109,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [144] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5237), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8384), - [sym_modifiers] = STATE(8287), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [149] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6261), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4834), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8209), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(778), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(887), - [anon_sym_var] = ACTIONS(887), - [anon_sym_object] = ACTIONS(889), - [anon_sym_fun] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(1039), + [anon_sym_interface] = ACTIONS(1039), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1043), + [anon_sym_fun] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(1047), + [anon_sym_set] = ACTIONS(1049), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1055), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55306,149 +56271,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [145] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3997), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2458), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1543), - [sym__postfix_unary_expression] = STATE(8431), + [150] = { + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6252), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1018), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(376), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1727), + [sym__postfix_unary_expression] = STATE(8426), [sym_directly_assignable_expression] = STATE(8394), - [sym_modifiers] = STATE(8292), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(784), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_modifiers] = STATE(8046), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(353), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(758), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(979), - [anon_sym_var] = ACTIONS(979), - [anon_sym_object] = ACTIONS(981), - [anon_sym_fun] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(345), + [anon_sym_interface] = ACTIONS(345), + [anon_sym_enum] = ACTIONS(347), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(353), + [anon_sym_fun] = ACTIONS(355), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_get] = ACTIONS(357), + [anon_sym_set] = ACTIONS(359), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55467,149 +56433,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [146] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4727), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4141), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8387), - [sym_modifiers] = STATE(8299), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [151] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6286), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4834), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4094), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1476), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8368), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_object] = ACTIONS(829), - [anon_sym_fun] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), + [anon_sym_null] = ACTIONS(325), [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), + [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(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55628,149 +56595,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [147] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4733), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4141), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8387), - [sym_modifiers] = STATE(8299), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [152] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10036), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_object] = ACTIONS(829), - [anon_sym_fun] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -55789,143 +56757,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [148] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5094), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4226), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8384), - [sym_modifiers] = STATE(8287), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(339), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), + [153] = { + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6068), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3159), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1716), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1990), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8090), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(786), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [154] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6221), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5176), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8214), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(756), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(881), - [anon_sym_interface] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(883), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), [anon_sym_LBRACE] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(887), - [anon_sym_var] = ACTIONS(887), - [anon_sym_object] = ACTIONS(889), - [anon_sym_fun] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(893), - [anon_sym_set] = ACTIONS(895), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1061), + [anon_sym_fun] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(1065), + [anon_sym_set] = ACTIONS(1067), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(447), [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(545), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [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(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), + [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), @@ -55969,271 +57100,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [149] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9663), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [150] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5210), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8302), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(761), - [aux_sym_modifiers_repeat1] = STATE(5616), + [155] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6221), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5167), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8214), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(756), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), [anon_sym_LBRACE] = ACTIONS(885), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1133), - [anon_sym_var] = ACTIONS(1133), - [anon_sym_object] = ACTIONS(1135), - [anon_sym_fun] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(1139), - [anon_sym_set] = ACTIONS(1141), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1061), + [anon_sym_fun] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(1065), + [anon_sym_set] = ACTIONS(1067), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(541), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(447), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), @@ -56291,130 +57262,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [151] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1170), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1745), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8391), - [sym_modifiers] = STATE(8279), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(757), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [156] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6221), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5165), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8214), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(756), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(941), - [anon_sym_interface] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(947), - [anon_sym_var] = ACTIONS(947), - [anon_sym_object] = ACTIONS(949), - [anon_sym_fun] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(955), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(959), - [anon_sym_for] = ACTIONS(961), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1061), + [anon_sym_fun] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(1065), + [anon_sym_set] = ACTIONS(1067), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56433,149 +57405,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [152] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1134), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1745), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8391), - [sym_modifiers] = STATE(8279), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(757), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [157] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(5887), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4839), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(3298), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(1609), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8023), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(941), - [anon_sym_interface] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(947), - [anon_sym_var] = ACTIONS(947), - [anon_sym_object] = ACTIONS(949), - [anon_sym_fun] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(955), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(959), - [anon_sym_for] = ACTIONS(961), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(207), + [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(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(219), + [anon_sym_fun] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(223), + [anon_sym_set] = ACTIONS(225), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [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(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56594,149 +57567,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [153] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1125), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1745), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8391), - [sym_modifiers] = STATE(8279), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(757), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [158] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6110), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4834), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4019), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(2132), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(941), - [anon_sym_interface] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(947), - [anon_sym_var] = ACTIONS(947), - [anon_sym_object] = ACTIONS(949), - [anon_sym_fun] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(955), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(959), - [anon_sym_for] = ACTIONS(961), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [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(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56755,149 +57729,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [154] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3185), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8283), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(766), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [159] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6148), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5176), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4083), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1862), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8256), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(770), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1035), - [anon_sym_var] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1037), - [anon_sym_fun] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(661), + [anon_sym_fun] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(665), + [anon_sym_set] = ACTIONS(667), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), + [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(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_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -56916,310 +57891,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [155] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3524), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2263), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8367), - [sym_modifiers] = STATE(8293), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(340), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(780), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(849), - [anon_sym_interface] = ACTIONS(849), - [anon_sym_enum] = ACTIONS(851), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(855), - [anon_sym_var] = ACTIONS(855), - [anon_sym_object] = ACTIONS(857), - [anon_sym_fun] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(861), - [anon_sym_set] = ACTIONS(863), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(867), - [anon_sym_for] = ACTIONS(869), - [anon_sym_while] = ACTIONS(871), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [156] = { - [sym_type_alias] = STATE(5317), - [sym__declaration] = STATE(5317), - [sym_class_declaration] = STATE(5317), - [sym_function_declaration] = STATE(5317), - [sym_property_declaration] = STATE(5317), - [sym_getter] = STATE(5317), - [sym_setter] = STATE(5317), - [sym_object_declaration] = STATE(5317), - [sym__statement] = STATE(5317), - [sym_control_structure_body] = STATE(5364), - [sym__block] = STATE(5317), - [sym__loop_statement] = STATE(5317), - [sym_for_statement] = STATE(5317), - [sym_while_statement] = STATE(5317), - [sym_do_while_statement] = STATE(5317), - [sym_assignment] = STATE(5317), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8286), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [160] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6286), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4842), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4094), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1476), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8368), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1161), - [anon_sym_fun] = ACTIONS(1163), - [anon_sym_SEMI] = ACTIONS(1403), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(325), + [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(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57238,149 +58053,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [157] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3133), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8283), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(766), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [161] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6110), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4839), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4019), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(2132), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(1031), - [anon_sym_interface] = ACTIONS(1031), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1035), - [anon_sym_var] = ACTIONS(1035), - [anon_sym_object] = ACTIONS(1037), - [anon_sym_fun] = ACTIONS(1039), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_get] = ACTIONS(1041), - [anon_sym_set] = ACTIONS(1043), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57399,310 +58215,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [158] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4771), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4141), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8387), - [sym_modifiers] = STATE(8299), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(336), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [162] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(5887), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4834), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(3298), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(1609), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8023), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(777), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(821), - [anon_sym_interface] = ACTIONS(821), - [anon_sym_enum] = ACTIONS(823), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(827), - [anon_sym_var] = ACTIONS(827), - [anon_sym_object] = ACTIONS(829), - [anon_sym_fun] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(833), - [anon_sym_set] = ACTIONS(835), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(207), + [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(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(219), + [anon_sym_fun] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_get] = ACTIONS(223), + [anon_sym_set] = ACTIONS(225), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), + [anon_sym_null] = ACTIONS(241), [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [159] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3185), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(1687), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8355), - [sym_modifiers] = STATE(8288), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(789), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_object] = ACTIONS(795), - [anon_sym_fun] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57721,149 +58377,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [160] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1115), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(525), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1481), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8374), - [sym_modifiers] = STATE(8300), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [163] = { + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(5914), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3992), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2568), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(1528), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8147), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(1009), - [anon_sym_var] = ACTIONS(1009), - [anon_sym_object] = ACTIONS(1011), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -57882,62 +58539,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(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [161] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4771), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(3275), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), + [164] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6286), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4716), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4094), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), [sym__primary_expression] = STATE(4525), [sym_parenthesized_expression] = STATE(4525), [sym_collection_literal] = STATE(4525), @@ -57954,238 +58612,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_expression] = STATE(4525), [sym_jump_expression] = STATE(4525), [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1983), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8356), - [sym_modifiers] = STATE(8280), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [sym__prefix_unary_operator] = STATE(1476), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8368), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), [sym_unsigned_literal] = STATE(4525), [sym_long_literal] = STATE(4525), [sym_boolean_literal] = STATE(4525), [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(783), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(215), - [anon_sym_interface] = ACTIONS(215), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(221), - [anon_sym_var] = ACTIONS(221), - [anon_sym_object] = ACTIONS(223), - [anon_sym_fun] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(227), - [anon_sym_set] = ACTIONS(229), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), + [anon_sym_null] = ACTIONS(325), [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [162] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3133), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1914), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(1636), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8358), - [sym_modifiers] = STATE(8295), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(753), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(909), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(915), - [anon_sym_var] = ACTIONS(915), - [anon_sym_object] = ACTIONS(917), - [anon_sym_fun] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(923), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(927), - [anon_sym_for] = ACTIONS(929), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), + [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(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58204,149 +58701,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [163] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3879), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2458), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1543), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8394), - [sym_modifiers] = STATE(8292), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(784), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [165] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(5887), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4842), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(3298), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(1609), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8023), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(979), - [anon_sym_var] = ACTIONS(979), - [anon_sym_object] = ACTIONS(981), - [anon_sym_fun] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(207), + [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(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(219), + [anon_sym_fun] = ACTIONS(221), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_get] = ACTIONS(223), + [anon_sym_set] = ACTIONS(225), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [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(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58365,62 +58863,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(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [164] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4733), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(3275), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), + [166] = { + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6286), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4839), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4094), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), [sym__primary_expression] = STATE(4525), [sym_parenthesized_expression] = STATE(4525), [sym_collection_literal] = STATE(4525), @@ -58437,399 +58936,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_expression] = STATE(4525), [sym_jump_expression] = STATE(4525), [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1983), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8356), - [sym_modifiers] = STATE(8280), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [sym__prefix_unary_operator] = STATE(1476), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8368), + [sym_modifiers] = STATE(8088), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(352), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), [sym_unsigned_literal] = STATE(4525), [sym_long_literal] = STATE(4525), [sym_boolean_literal] = STATE(4525), [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(783), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(793), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(215), - [anon_sym_interface] = ACTIONS(215), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(221), - [anon_sym_var] = ACTIONS(221), - [anon_sym_object] = ACTIONS(223), - [anon_sym_fun] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(227), - [anon_sym_set] = ACTIONS(229), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(233), - [anon_sym_for] = ACTIONS(235), - [anon_sym_while] = ACTIONS(237), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(825), + [anon_sym_enum] = ACTIONS(827), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(831), + [anon_sym_fun] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(1347), + [anon_sym_get] = ACTIONS(835), + [anon_sym_set] = ACTIONS(837), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), + [anon_sym_null] = ACTIONS(325), [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [165] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3997), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2234), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(1774), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8365), - [sym_modifiers] = STATE(8296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(755), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(671), - [anon_sym_var] = ACTIONS(671), - [anon_sym_object] = ACTIONS(673), - [anon_sym_fun] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [166] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3373), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2525), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1795), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8360), - [sym_modifiers] = STATE(8303), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(770), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_object] = ACTIONS(1109), - [anon_sym_fun] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), + [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(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -58848,149 +59025,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [167] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1170), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(398), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1653), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8352), - [sym_modifiers] = STATE(8281), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(752), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6002), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3996), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(1422), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1550), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8139), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(699), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(703), - [anon_sym_var] = ACTIONS(703), - [anon_sym_object] = ACTIONS(705), - [anon_sym_fun] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(469), + [anon_sym_interface] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(477), + [anon_sym_fun] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(481), + [anon_sym_set] = ACTIONS(483), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(491), + [anon_sym_for] = ACTIONS(493), + [anon_sym_while] = ACTIONS(495), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59009,149 +59187,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [168] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3862), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2234), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(1774), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8365), - [sym_modifiers] = STATE(8296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6317), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3996), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2239), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8240), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(755), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(671), - [anon_sym_var] = ACTIONS(671), - [anon_sym_object] = ACTIONS(673), - [anon_sym_fun] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1319), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59170,149 +59349,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [169] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4727), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(3275), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4525), - [sym_parenthesized_expression] = STATE(4525), - [sym_collection_literal] = STATE(4525), - [sym__literal_constant] = STATE(4525), - [sym_string_literal] = STATE(4525), - [sym_lambda_literal] = STATE(4525), - [sym_anonymous_function] = STATE(4525), - [sym__function_literal] = STATE(4525), - [sym_object_literal] = STATE(4525), - [sym_this_expression] = STATE(4525), - [sym_super_expression] = STATE(4525), - [sym_if_expression] = STATE(4525), - [sym_when_expression] = STATE(4525), - [sym_try_expression] = STATE(4525), - [sym_jump_expression] = STATE(4525), - [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1983), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8356), - [sym_modifiers] = STATE(8280), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4525), - [sym_long_literal] = STATE(4525), - [sym_boolean_literal] = STATE(4525), - [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(783), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6317), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3965), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2239), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8240), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(215), - [anon_sym_interface] = ACTIONS(215), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(221), - [anon_sym_var] = ACTIONS(221), - [anon_sym_object] = ACTIONS(223), - [anon_sym_fun] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(227), - [anon_sym_set] = ACTIONS(229), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [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(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59331,149 +59511,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [170] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3838), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(2116), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8370), - [sym_modifiers] = STATE(8305), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(764), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6317), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3992), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2239), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8240), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(445), - [anon_sym_var] = ACTIONS(445), - [anon_sym_object] = ACTIONS(447), - [anon_sym_fun] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59492,149 +59673,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [171] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3133), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(1687), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8355), - [sym_modifiers] = STATE(8288), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6002), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3965), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(1422), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1550), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8139), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(789), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_object] = ACTIONS(795), - [anon_sym_fun] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(469), + [anon_sym_interface] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(477), + [anon_sym_fun] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_get] = ACTIONS(481), + [anon_sym_set] = ACTIONS(483), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(491), + [anon_sym_for] = ACTIONS(493), + [anon_sym_while] = ACTIONS(495), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59653,149 +59835,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [172] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1170), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(525), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1481), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8374), - [sym_modifiers] = STATE(8300), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(334), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(798), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6002), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3992), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(1422), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1550), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8390), + [sym_modifiers] = STATE(8139), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(336), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(788), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(1005), - [anon_sym_interface] = ACTIONS(1005), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(1009), - [anon_sym_var] = ACTIONS(1009), - [anon_sym_object] = ACTIONS(1011), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(1015), - [anon_sym_set] = ACTIONS(1017), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(469), + [anon_sym_interface] = ACTIONS(469), + [anon_sym_enum] = ACTIONS(471), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(477), + [anon_sym_fun] = ACTIONS(479), + [anon_sym_SEMI] = ACTIONS(1345), + [anon_sym_get] = ACTIONS(481), + [anon_sym_set] = ACTIONS(483), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(491), + [anon_sym_for] = ACTIONS(493), + [anon_sym_while] = ACTIONS(495), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59814,149 +59997,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [173] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3879), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(2116), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8370), - [sym_modifiers] = STATE(8305), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(764), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6143), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5176), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(3803), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1684), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8296), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(776), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(445), - [anon_sym_var] = ACTIONS(445), - [anon_sym_object] = ACTIONS(447), - [anon_sym_fun] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(425), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(441), + [anon_sym_for] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -59975,149 +60159,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [174] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1134), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(398), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1653), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8352), - [sym_modifiers] = STATE(8281), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6143), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5167), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(3803), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1684), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8296), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(752), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(776), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(699), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(703), - [anon_sym_var] = ACTIONS(703), - [anon_sym_object] = ACTIONS(705), - [anon_sym_fun] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(425), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(441), + [anon_sym_for] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60136,143 +60321,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [175] = { - [sym_type_alias] = STATE(9331), - [sym__declaration] = STATE(9331), - [sym_class_declaration] = STATE(9331), - [sym_function_declaration] = STATE(9331), - [sym_property_declaration] = STATE(9331), - [sym_getter] = STATE(9331), - [sym_setter] = STATE(9331), - [sym_object_declaration] = STATE(9331), - [sym__statement] = STATE(9331), - [sym_control_structure_body] = STATE(9419), - [sym__block] = STATE(9331), - [sym__loop_statement] = STATE(9331), - [sym_for_statement] = STATE(9331), - [sym_while_statement] = STATE(9331), - [sym_do_while_statement] = STATE(9331), - [sym_assignment] = STATE(9331), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6143), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5165), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(3803), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1684), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8296), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(776), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(1339), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(425), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(429), [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(1407), - [anon_sym_get] = ACTIONS(35), - [anon_sym_set] = ACTIONS(37), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), [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_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(441), + [anon_sym_for] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(451), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [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(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -60305,7 +60491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -60317,129 +60503,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [176] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3234), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(976), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(2139), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8373), - [sym_modifiers] = STATE(8313), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(338), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6143), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5095), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(3803), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1684), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8371), + [sym_modifiers] = STATE(8296), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(345), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(781), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(776), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(565), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(571), - [anon_sym_var] = ACTIONS(571), - [anon_sym_object] = ACTIONS(573), - [anon_sym_fun] = ACTIONS(575), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_get] = ACTIONS(577), - [anon_sym_set] = ACTIONS(579), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(425), + [anon_sym_interface] = ACTIONS(425), + [anon_sym_enum] = ACTIONS(427), + [anon_sym_LBRACE] = ACTIONS(429), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(431), + [anon_sym_fun] = ACTIONS(433), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(435), + [anon_sym_set] = ACTIONS(437), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(441), + [anon_sym_for] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60458,149 +60645,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [177] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1125), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(371), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8390), - [sym_modifiers] = STATE(8298), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5909), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3506), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(1475), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(353), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(359), - [anon_sym_var] = ACTIONS(359), - [anon_sym_object] = ACTIONS(361), - [anon_sym_fun] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [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(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60619,149 +60807,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [178] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1125), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(398), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1653), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8352), - [sym_modifiers] = STATE(8281), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(752), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6076), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3506), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1991), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(2046), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8393), + [sym_modifiers] = STATE(8144), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(772), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(699), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(703), - [anon_sym_var] = ACTIONS(703), - [anon_sym_object] = ACTIONS(705), - [anon_sym_fun] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1329), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -60780,130 +60969,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [179] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5210), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4063), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1835), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8364), - [sym_modifiers] = STATE(8306), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(763), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6148), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5167), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4083), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1862), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8256), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(770), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(521), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(429), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(735), - [anon_sym_var] = ACTIONS(735), - [anon_sym_object] = ACTIONS(737), - [anon_sym_fun] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(661), + [anon_sym_fun] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(665), + [anon_sym_set] = ACTIONS(667), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -60912,11 +61102,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(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(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_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -60949,7 +61139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -60961,129 +61151,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [180] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3524), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1635), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(1593), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8382), - [sym_modifiers] = STATE(8294), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6076), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3494), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1991), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(2046), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8393), + [sym_modifiers] = STATE(8144), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), [sym_annotation] = STATE(351), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(765), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(772), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(757), - [anon_sym_interface] = ACTIONS(757), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(761), - [anon_sym_var] = ACTIONS(761), - [anon_sym_object] = ACTIONS(763), - [anon_sym_fun] = ACTIONS(765), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(767), - [anon_sym_set] = ACTIONS(769), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61102,149 +61293,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [181] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3390), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(2133), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8376), - [sym_modifiers] = STATE(8308), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(758), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6076), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3486), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1991), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(2046), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8393), + [sym_modifiers] = STATE(8144), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(772), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(261), - [anon_sym_interface] = ACTIONS(261), - [anon_sym_enum] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [anon_sym_object] = ACTIONS(271), - [anon_sym_fun] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(275), - [anon_sym_set] = ACTIONS(277), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(285), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61263,149 +61455,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [182] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3388), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(2133), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8376), - [sym_modifiers] = STATE(8308), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(758), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(6110), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4716), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(4019), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(2132), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8381), + [sym_modifiers] = STATE(8294), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(339), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(790), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(261), - [anon_sym_interface] = ACTIONS(261), - [anon_sym_enum] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [anon_sym_object] = ACTIONS(271), - [anon_sym_fun] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(275), - [anon_sym_set] = ACTIONS(277), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(285), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(209), + [anon_sym_class] = ACTIONS(741), + [anon_sym_interface] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(215), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(745), + [anon_sym_fun] = ACTIONS(747), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_get] = ACTIONS(749), + [anon_sym_set] = ACTIONS(751), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61424,149 +61617,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [183] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3373), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(2133), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8376), - [sym_modifiers] = STATE(8308), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(758), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5909), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3494), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(1475), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(261), - [anon_sym_interface] = ACTIONS(261), - [anon_sym_enum] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [anon_sym_object] = ACTIONS(271), - [anon_sym_fun] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_get] = ACTIONS(275), - [anon_sym_set] = ACTIONS(277), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(285), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [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(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61585,149 +61779,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [184] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4829), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(3275), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4525), - [sym_parenthesized_expression] = STATE(4525), - [sym_collection_literal] = STATE(4525), - [sym__literal_constant] = STATE(4525), - [sym_string_literal] = STATE(4525), - [sym_lambda_literal] = STATE(4525), - [sym_anonymous_function] = STATE(4525), - [sym__function_literal] = STATE(4525), - [sym_object_literal] = STATE(4525), - [sym_this_expression] = STATE(4525), - [sym_super_expression] = STATE(4525), - [sym_if_expression] = STATE(4525), - [sym_when_expression] = STATE(4525), - [sym_try_expression] = STATE(4525), - [sym_jump_expression] = STATE(4525), - [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1983), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8356), - [sym_modifiers] = STATE(8280), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(346), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4525), - [sym_long_literal] = STATE(4525), - [sym_boolean_literal] = STATE(4525), - [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(783), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6300), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3135), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8070), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(759), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(215), - [anon_sym_interface] = ACTIONS(215), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_LBRACE] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(221), - [anon_sym_var] = ACTIONS(221), - [anon_sym_object] = ACTIONS(223), - [anon_sym_fun] = ACTIONS(225), - [anon_sym_SEMI] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(227), - [anon_sym_set] = ACTIONS(229), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [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(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61746,149 +61941,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [185] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3524), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2525), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1795), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8360), - [sym_modifiers] = STATE(8303), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(770), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6346), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3135), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1511), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8268), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_object] = ACTIONS(1109), - [anon_sym_fun] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -61907,149 +62103,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [186] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3099), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1914), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(1636), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8358), - [sym_modifiers] = STATE(8295), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6133), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5095), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1824), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8244), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(753), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(909), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(915), - [anon_sym_var] = ACTIONS(915), - [anon_sym_object] = ACTIONS(917), - [anon_sym_fun] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(923), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(927), - [anon_sym_for] = ACTIONS(929), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62068,149 +62265,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [187] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3185), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1914), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(1636), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8358), - [sym_modifiers] = STATE(8295), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(753), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6300), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3143), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8070), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(759), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(909), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(915), - [anon_sym_var] = ACTIONS(915), - [anon_sym_object] = ACTIONS(917), - [anon_sym_fun] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(923), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(927), - [anon_sym_for] = ACTIONS(929), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [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(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62229,149 +62427,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [188] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3862), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2458), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1543), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8394), - [sym_modifiers] = STATE(8292), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(784), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5909), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3486), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1213), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(1475), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8374), + [sym_modifiers] = STATE(8246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(341), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(780), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(979), - [anon_sym_var] = ACTIONS(979), - [anon_sym_object] = ACTIONS(981), - [anon_sym_fun] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1357), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(127), + [anon_sym_interface] = ACTIONS(127), + [anon_sym_enum] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(135), + [anon_sym_fun] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(141), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [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(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62390,149 +62589,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [189] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3234), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(1687), - [sym__postfix_unary_expression] = STATE(8431), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6300), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3159), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), [sym_directly_assignable_expression] = STATE(8355), - [sym_modifiers] = STATE(8288), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_modifiers] = STATE(8070), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(759), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(789), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_object] = ACTIONS(795), - [anon_sym_fun] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62551,149 +62751,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [190] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3838), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2458), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1543), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8394), - [sym_modifiers] = STATE(8292), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(333), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(784), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(4843), + [sym__declaration] = STATE(4843), + [sym_class_declaration] = STATE(4843), + [sym_binding_pattern_kind] = STATE(5887), + [sym_function_declaration] = STATE(4843), + [sym_property_declaration] = STATE(4843), + [sym_getter] = STATE(4843), + [sym_setter] = STATE(4843), + [sym_object_declaration] = STATE(4843), + [sym__statement] = STATE(4843), + [sym_control_structure_body] = STATE(4716), + [sym__block] = STATE(4843), + [sym__loop_statement] = STATE(4843), + [sym_for_statement] = STATE(4843), + [sym_while_statement] = STATE(4843), + [sym_do_while_statement] = STATE(4843), + [sym_assignment] = STATE(4843), + [sym__expression] = STATE(3298), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(1609), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8376), + [sym_modifiers] = STATE(8023), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(346), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(782), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(973), - [anon_sym_interface] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(977), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(979), - [anon_sym_var] = ACTIONS(979), - [anon_sym_object] = ACTIONS(981), - [anon_sym_fun] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(985), - [anon_sym_set] = ACTIONS(987), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(207), + [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(29), + [anon_sym_var] = ACTIONS(29), + [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(1185), + [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(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62712,149 +62913,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [191] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5229), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(3759), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1750), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8395), - [sym_modifiers] = STATE(8311), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(776), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6258), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1018), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1434), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8101), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(517), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(523), - [anon_sym_var] = ACTIONS(523), - [anon_sym_object] = ACTIONS(525), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(531), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(535), - [anon_sym_for] = ACTIONS(537), - [anon_sym_while] = ACTIONS(539), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1309), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -62873,149 +63075,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [192] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5094), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4063), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1835), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8364), - [sym_modifiers] = STATE(8306), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(343), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(763), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6258), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1016), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1434), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8101), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(731), - [anon_sym_interface] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(735), - [anon_sym_var] = ACTIONS(735), - [anon_sym_object] = ACTIONS(737), - [anon_sym_fun] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(741), - [anon_sym_set] = ACTIONS(743), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [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(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63034,149 +63237,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [193] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1115), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(371), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8390), - [sym_modifiers] = STATE(8298), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6258), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1147), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1434), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8101), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(353), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(359), - [anon_sym_var] = ACTIONS(359), - [anon_sym_object] = ACTIONS(361), - [anon_sym_fun] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63195,149 +63399,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [194] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1115), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(469), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1745), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8391), - [sym_modifiers] = STATE(8279), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(352), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(757), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(6317), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3856), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2239), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8385), + [sym_modifiers] = STATE(8240), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(334), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(795), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(941), - [anon_sym_interface] = ACTIONS(941), - [anon_sym_enum] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(947), - [anon_sym_var] = ACTIONS(947), - [anon_sym_object] = ACTIONS(949), - [anon_sym_fun] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_get] = ACTIONS(953), - [anon_sym_set] = ACTIONS(955), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(959), - [anon_sym_for] = ACTIONS(961), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(711), + [anon_sym_interface] = ACTIONS(711), + [anon_sym_enum] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(473), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(715), + [anon_sym_fun] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(719), + [anon_sym_set] = ACTIONS(721), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63356,149 +63561,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [195] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3234), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1914), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(1636), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8358), - [sym_modifiers] = STATE(8295), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(355), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(753), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10036), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(909), - [anon_sym_interface] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(915), - [anon_sym_var] = ACTIONS(915), - [anon_sym_object] = ACTIONS(917), - [anon_sym_fun] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_get] = ACTIONS(921), - [anon_sym_set] = ACTIONS(923), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(927), - [anon_sym_for] = ACTIONS(929), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63517,149 +63723,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(617), - [anon_sym_actual] = ACTIONS(617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [196] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4727), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8289), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6068), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3135), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1716), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1990), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8360), + [sym_modifiers] = STATE(8090), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_object] = ACTIONS(1089), - [anon_sym_fun] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1337), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63678,149 +63885,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [197] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4733), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8289), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(6076), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3476), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(1991), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(2046), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8393), + [sym_modifiers] = STATE(8144), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(351), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(772), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(825), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(627), + [anon_sym_interface] = ACTIONS(627), + [anon_sym_enum] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_object] = ACTIONS(1089), - [anon_sym_fun] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1379), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(631), + [anon_sym_fun] = ACTIONS(633), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(635), + [anon_sym_set] = ACTIONS(637), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -63839,130 +64047,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [198] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5094), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8302), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(761), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6148), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5165), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4083), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1862), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8379), + [sym_modifiers] = STATE(8256), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(347), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(770), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(1129), - [anon_sym_interface] = ACTIONS(1129), - [anon_sym_enum] = ACTIONS(1131), - [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(657), + [anon_sym_interface] = ACTIONS(657), + [anon_sym_enum] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(429), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(1133), - [anon_sym_var] = ACTIONS(1133), - [anon_sym_object] = ACTIONS(1135), - [anon_sym_fun] = ACTIONS(1137), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1139), - [anon_sym_set] = ACTIONS(1141), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(661), + [anon_sym_fun] = ACTIONS(663), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(665), + [anon_sym_set] = ACTIONS(667), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(53), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -63971,11 +64180,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), + [anon_sym_PLUS] = ACTIONS(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_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -64008,7 +64217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -64020,129 +64229,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [199] = { - [sym_type_alias] = STATE(4821), - [sym__declaration] = STATE(4821), - [sym_class_declaration] = STATE(4821), - [sym_function_declaration] = STATE(4821), - [sym_property_declaration] = STATE(4821), - [sym_getter] = STATE(4821), - [sym_setter] = STATE(4821), - [sym_object_declaration] = STATE(4821), - [sym__statement] = STATE(4821), - [sym_control_structure_body] = STATE(4771), - [sym__block] = STATE(4821), - [sym__loop_statement] = STATE(4821), - [sym_for_statement] = STATE(4821), - [sym_while_statement] = STATE(4821), - [sym_do_while_statement] = STATE(4821), - [sym_assignment] = STATE(4821), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8289), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(789), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6346), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3236), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1511), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8268), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(213), - [anon_sym_class] = ACTIONS(1083), - [anon_sym_interface] = ACTIONS(1083), - [anon_sym_enum] = ACTIONS(1085), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(1087), - [anon_sym_var] = ACTIONS(1087), - [anon_sym_object] = ACTIONS(1089), - [anon_sym_fun] = ACTIONS(1091), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_get] = ACTIONS(1093), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1101), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64161,149 +64371,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [200] = { - [sym_type_alias] = STATE(3127), - [sym__declaration] = STATE(3127), - [sym_class_declaration] = STATE(3127), - [sym_function_declaration] = STATE(3127), - [sym_property_declaration] = STATE(3127), - [sym_getter] = STATE(3127), - [sym_setter] = STATE(3127), - [sym_object_declaration] = STATE(3127), - [sym__statement] = STATE(3127), - [sym_control_structure_body] = STATE(3099), - [sym__block] = STATE(3127), - [sym__loop_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_while_statement] = STATE(3127), - [sym_assignment] = STATE(3127), - [sym__expression] = STATE(1218), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(1687), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8355), - [sym_modifiers] = STATE(8288), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(342), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6346), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3143), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1511), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8268), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(561), - [anon_sym_class] = ACTIONS(789), - [anon_sym_interface] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(793), - [anon_sym_var] = ACTIONS(793), - [anon_sym_object] = ACTIONS(795), - [anon_sym_fun] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_get] = ACTIONS(799), - [anon_sym_set] = ACTIONS(801), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64322,149 +64533,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [201] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5210), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(3759), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1750), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8395), - [sym_modifiers] = STATE(8311), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(776), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6346), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3159), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1231), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1511), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8369), + [sym_modifiers] = STATE(8268), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(350), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(779), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(517), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(523), - [anon_sym_var] = ACTIONS(523), - [anon_sym_object] = ACTIONS(525), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(531), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(535), - [anon_sym_for] = ACTIONS(537), - [anon_sym_while] = ACTIONS(539), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(765), + [anon_sym_interface] = ACTIONS(765), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_LBRACE] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(769), + [anon_sym_fun] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(1331), + [anon_sym_get] = ACTIONS(773), + [anon_sym_set] = ACTIONS(775), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64483,149 +64695,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [202] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9663), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6300), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3236), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8070), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(759), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(1073), + [anon_sym_interface] = ACTIONS(1073), + [anon_sym_enum] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1077), + [anon_sym_fun] = ACTIONS(1079), + [anon_sym_SEMI] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1081), + [anon_sym_set] = ACTIONS(1083), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64644,149 +64857,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [203] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3390), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2525), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1795), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8360), - [sym_modifiers] = STATE(8303), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), + [sym_type_alias] = STATE(3442), + [sym__declaration] = STATE(3442), + [sym_class_declaration] = STATE(3442), + [sym_binding_pattern_kind] = STATE(5988), + [sym_function_declaration] = STATE(3442), + [sym_property_declaration] = STATE(3442), + [sym_getter] = STATE(3442), + [sym_setter] = STATE(3442), + [sym_object_declaration] = STATE(3442), + [sym__statement] = STATE(3442), + [sym_control_structure_body] = STATE(3476), + [sym__block] = STATE(3442), + [sym__loop_statement] = STATE(3442), + [sym_for_statement] = STATE(3442), + [sym_while_statement] = STATE(3442), + [sym_do_while_statement] = STATE(3442), + [sym_assignment] = STATE(3442), + [sym__expression] = STATE(2478), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1797), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8386), + [sym_modifiers] = STATE(8105), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(349), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3471), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(770), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(775), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(115), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_object] = ACTIONS(1109), - [anon_sym_fun] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_typealias] = ACTIONS(125), + [anon_sym_class] = ACTIONS(967), + [anon_sym_interface] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(799), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(971), + [anon_sym_fun] = ACTIONS(973), + [anon_sym_SEMI] = ACTIONS(1321), + [anon_sym_get] = ACTIONS(975), + [anon_sym_set] = ACTIONS(977), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(177), + [anon_sym_inner] = ACTIONS(177), + [anon_sym_value] = ACTIONS(177), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64805,149 +65019,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [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), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [204] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3524), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(1196), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(2133), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8376), - [sym_modifiers] = STATE(8308), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(354), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(758), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym_type_alias] = STATE(4039), + [sym__declaration] = STATE(4039), + [sym_class_declaration] = STATE(4039), + [sym_binding_pattern_kind] = STATE(5914), + [sym_function_declaration] = STATE(4039), + [sym_property_declaration] = STATE(4039), + [sym_getter] = STATE(4039), + [sym_setter] = STATE(4039), + [sym_object_declaration] = STATE(4039), + [sym__statement] = STATE(4039), + [sym_control_structure_body] = STATE(3856), + [sym__block] = STATE(4039), + [sym__loop_statement] = STATE(4039), + [sym_for_statement] = STATE(4039), + [sym_while_statement] = STATE(4039), + [sym_do_while_statement] = STATE(4039), + [sym_assignment] = STATE(4039), + [sym__expression] = STATE(2568), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(1528), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8378), + [sym_modifiers] = STATE(8147), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(355), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(767), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(463), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(261), - [anon_sym_interface] = ACTIONS(261), - [anon_sym_enum] = ACTIONS(263), - [anon_sym_LBRACE] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(269), - [anon_sym_var] = ACTIONS(269), - [anon_sym_object] = ACTIONS(271), - [anon_sym_fun] = ACTIONS(273), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(275), - [anon_sym_set] = ACTIONS(277), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(285), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_typealias] = ACTIONS(467), + [anon_sym_class] = ACTIONS(991), + [anon_sym_interface] = ACTIONS(991), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(995), + [anon_sym_fun] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_get] = ACTIONS(999), + [anon_sym_set] = ACTIONS(1001), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(519), + [anon_sym_inner] = ACTIONS(519), + [anon_sym_value] = ACTIONS(519), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -64966,149 +65181,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_expect] = ACTIONS(521), + [anon_sym_actual] = ACTIONS(521), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [205] = { - [sym_type_alias] = STATE(5161), - [sym__declaration] = STATE(5161), - [sym_class_declaration] = STATE(5161), - [sym_function_declaration] = STATE(5161), - [sym_property_declaration] = STATE(5161), - [sym_getter] = STATE(5161), - [sym_setter] = STATE(5161), - [sym_object_declaration] = STATE(5161), - [sym__statement] = STATE(5161), - [sym_control_structure_body] = STATE(5237), - [sym__block] = STATE(5161), - [sym__loop_statement] = STATE(5161), - [sym_for_statement] = STATE(5161), - [sym_while_statement] = STATE(5161), - [sym_do_while_statement] = STATE(5161), - [sym_assignment] = STATE(5161), - [sym__expression] = STATE(3759), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1750), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8395), - [sym_modifiers] = STATE(8311), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(344), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(776), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6258), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1171), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(400), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1434), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8377), + [sym_modifiers] = STATE(8101), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(354), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(754), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(515), - [anon_sym_class] = ACTIONS(517), - [anon_sym_interface] = ACTIONS(517), - [anon_sym_enum] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(521), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_val] = ACTIONS(523), - [anon_sym_var] = ACTIONS(523), - [anon_sym_object] = ACTIONS(525), - [anon_sym_fun] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(1381), - [anon_sym_get] = ACTIONS(529), - [anon_sym_set] = ACTIONS(531), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(535), - [anon_sym_for] = ACTIONS(537), - [anon_sym_while] = ACTIONS(539), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(681), + [anon_sym_interface] = ACTIONS(681), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_LBRACE] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(685), + [anon_sym_fun] = ACTIONS(687), + [anon_sym_SEMI] = ACTIONS(1305), + [anon_sym_get] = ACTIONS(689), + [anon_sym_set] = ACTIONS(691), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65127,149 +65343,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [206] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3879), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2234), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(1774), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8365), - [sym_modifiers] = STATE(8296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(755), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6156), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1147), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1747), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8357), + [sym_modifiers] = STATE(8239), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(671), - [anon_sym_var] = ACTIONS(671), - [anon_sym_object] = ACTIONS(673), - [anon_sym_fun] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1015), + [anon_sym_interface] = ACTIONS(1015), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1019), + [anon_sym_fun] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1025), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65288,149 +65505,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [207] = { - [sym_type_alias] = STATE(3570), - [sym__declaration] = STATE(3570), - [sym_class_declaration] = STATE(3570), - [sym_function_declaration] = STATE(3570), - [sym_property_declaration] = STATE(3570), - [sym_getter] = STATE(3570), - [sym_setter] = STATE(3570), - [sym_object_declaration] = STATE(3570), - [sym__statement] = STATE(3570), - [sym_control_structure_body] = STATE(3388), - [sym__block] = STATE(3570), - [sym__loop_statement] = STATE(3570), - [sym_for_statement] = STATE(3570), - [sym_while_statement] = STATE(3570), - [sym_do_while_statement] = STATE(3570), - [sym_assignment] = STATE(3570), - [sym__expression] = STATE(2525), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1795), - [sym__postfix_unary_expression] = STATE(8431), + [sym_type_alias] = STATE(3131), + [sym__declaration] = STATE(3131), + [sym_class_declaration] = STATE(3131), + [sym_binding_pattern_kind] = STATE(6068), + [sym_function_declaration] = STATE(3131), + [sym_property_declaration] = STATE(3131), + [sym_getter] = STATE(3131), + [sym_setter] = STATE(3131), + [sym_object_declaration] = STATE(3131), + [sym__statement] = STATE(3131), + [sym_control_structure_body] = STATE(3143), + [sym__block] = STATE(3131), + [sym__loop_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_while_statement] = STATE(3131), + [sym_assignment] = STATE(3131), + [sym__expression] = STATE(1716), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1990), + [sym__postfix_unary_expression] = STATE(8426), [sym_directly_assignable_expression] = STATE(8360), - [sym_modifiers] = STATE(8303), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(332), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(770), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(255), + [sym_modifiers] = STATE(8090), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(348), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(781), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_typealias] = ACTIONS(259), - [anon_sym_class] = ACTIONS(1103), - [anon_sym_interface] = ACTIONS(1103), - [anon_sym_enum] = ACTIONS(1105), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_val] = ACTIONS(1107), - [anon_sym_var] = ACTIONS(1107), - [anon_sym_object] = ACTIONS(1109), - [anon_sym_fun] = ACTIONS(1111), - [anon_sym_SEMI] = ACTIONS(1369), - [anon_sym_get] = ACTIONS(1113), - [anon_sym_set] = ACTIONS(1115), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(549), + [anon_sym_class] = ACTIONS(851), + [anon_sym_interface] = ACTIONS(851), + [anon_sym_enum] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(855), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(857), + [anon_sym_fun] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_get] = ACTIONS(861), + [anon_sym_set] = ACTIONS(863), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(579), [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(313), - [anon_sym_inner] = ACTIONS(313), - [anon_sym_value] = ACTIONS(313), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65449,149 +65667,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(315), - [anon_sym_actual] = ACTIONS(315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__string_start] = ACTIONS(625), }, [208] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3838), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(2234), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(1774), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8365), - [sym_modifiers] = STATE(8296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(335), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(755), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), + [sym_type_alias] = STATE(1072), + [sym__declaration] = STATE(1072), + [sym_class_declaration] = STATE(1072), + [sym_binding_pattern_kind] = STATE(6156), + [sym_function_declaration] = STATE(1072), + [sym_property_declaration] = STATE(1072), + [sym_getter] = STATE(1072), + [sym_setter] = STATE(1072), + [sym_object_declaration] = STATE(1072), + [sym__statement] = STATE(1072), + [sym_control_structure_body] = STATE(1016), + [sym__block] = STATE(1072), + [sym__loop_statement] = STATE(1072), + [sym_for_statement] = STATE(1072), + [sym_while_statement] = STATE(1072), + [sym_do_while_statement] = STATE(1072), + [sym_assignment] = STATE(1072), + [sym__expression] = STATE(530), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1747), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8357), + [sym_modifiers] = STATE(8239), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(343), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(796), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(339), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(667), - [anon_sym_interface] = ACTIONS(667), - [anon_sym_enum] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(671), - [anon_sym_var] = ACTIONS(671), - [anon_sym_object] = ACTIONS(673), - [anon_sym_fun] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_get] = ACTIONS(677), - [anon_sym_set] = ACTIONS(679), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_typealias] = ACTIONS(343), + [anon_sym_class] = ACTIONS(1015), + [anon_sym_interface] = ACTIONS(1015), + [anon_sym_enum] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1019), + [anon_sym_fun] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_get] = ACTIONS(1023), + [anon_sym_set] = ACTIONS(1025), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), + [anon_sym_data] = ACTIONS(395), + [anon_sym_inner] = ACTIONS(395), + [anon_sym_value] = ACTIONS(395), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65610,149 +65829,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_expect] = ACTIONS(397), + [anon_sym_actual] = ACTIONS(397), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [209] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1115), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(398), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1653), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8352), - [sym_modifiers] = STATE(8281), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(345), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(752), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6133), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5165), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1824), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8244), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(699), - [anon_sym_interface] = ACTIONS(699), - [anon_sym_enum] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(703), - [anon_sym_var] = ACTIONS(703), - [anon_sym_object] = ACTIONS(705), - [anon_sym_fun] = ACTIONS(707), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_get] = ACTIONS(709), - [anon_sym_set] = ACTIONS(711), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1355), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65771,149 +65991,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [210] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1134), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(371), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8390), - [sym_modifiers] = STATE(8298), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6133), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5167), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1824), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8244), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(353), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(359), - [anon_sym_var] = ACTIONS(359), - [anon_sym_object] = ACTIONS(361), - [anon_sym_fun] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1387), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1353), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -65932,450 +66153,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [211] = { - [sym_type_alias] = STATE(1138), - [sym__declaration] = STATE(1138), - [sym_class_declaration] = STATE(1138), - [sym_function_declaration] = STATE(1138), - [sym_property_declaration] = STATE(1138), - [sym_getter] = STATE(1138), - [sym_setter] = STATE(1138), - [sym_object_declaration] = STATE(1138), - [sym__statement] = STATE(1138), - [sym_control_structure_body] = STATE(1170), - [sym__block] = STATE(1138), - [sym__loop_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_while_statement] = STATE(1138), - [sym_assignment] = STATE(1138), - [sym__expression] = STATE(371), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8390), - [sym_modifiers] = STATE(8298), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(341), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(796), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_typealias] = ACTIONS(349), - [anon_sym_class] = ACTIONS(351), - [anon_sym_interface] = ACTIONS(351), - [anon_sym_enum] = ACTIONS(353), - [anon_sym_LBRACE] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_val] = ACTIONS(359), - [anon_sym_var] = ACTIONS(359), - [anon_sym_object] = ACTIONS(361), - [anon_sym_fun] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1399), - [anon_sym_get] = ACTIONS(365), - [anon_sym_set] = ACTIONS(367), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(403), - [anon_sym_inner] = ACTIONS(403), - [anon_sym_value] = ACTIONS(403), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(405), - [anon_sym_actual] = ACTIONS(405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [212] = { - [sym_type_alias] = STATE(4019), - [sym__declaration] = STATE(4019), - [sym_class_declaration] = STATE(4019), - [sym_function_declaration] = STATE(4019), - [sym_property_declaration] = STATE(4019), - [sym_getter] = STATE(4019), - [sym_setter] = STATE(4019), - [sym_object_declaration] = STATE(4019), - [sym__statement] = STATE(4019), - [sym_control_structure_body] = STATE(3997), - [sym__block] = STATE(4019), - [sym__loop_statement] = STATE(4019), - [sym_for_statement] = STATE(4019), - [sym_while_statement] = STATE(4019), - [sym_do_while_statement] = STATE(4019), - [sym_assignment] = STATE(4019), - [sym__expression] = STATE(1385), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(2116), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8370), - [sym_modifiers] = STATE(8305), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(347), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(764), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_typealias] = ACTIONS(435), - [anon_sym_class] = ACTIONS(437), - [anon_sym_interface] = ACTIONS(437), - [anon_sym_enum] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_val] = ACTIONS(445), - [anon_sym_var] = ACTIONS(445), - [anon_sym_object] = ACTIONS(447), - [anon_sym_fun] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(1375), - [anon_sym_get] = ACTIONS(451), - [anon_sym_set] = ACTIONS(453), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(489), - [anon_sym_inner] = ACTIONS(489), - [anon_sym_value] = ACTIONS(489), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(491), - [anon_sym_actual] = ACTIONS(491), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [213] = { - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat3] = STATE(226), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1147), + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6221), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5095), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8214), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(756), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(1057), + [anon_sym_interface] = ACTIONS(1057), + [anon_sym_enum] = ACTIONS(1059), + [anon_sym_LBRACE] = ACTIONS(885), [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_object] = ACTIONS(1061), + [anon_sym_fun] = ACTIONS(1063), + [anon_sym_SEMI] = ACTIONS(1343), + [anon_sym_get] = ACTIONS(1065), + [anon_sym_set] = ACTIONS(1067), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_do] = ACTIONS(51), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(447), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), @@ -66433,123 +66334,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [214] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9957), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [212] = { + [sym_type_alias] = STATE(5113), + [sym__declaration] = STATE(5113), + [sym_class_declaration] = STATE(5113), + [sym_binding_pattern_kind] = STATE(6133), + [sym_function_declaration] = STATE(5113), + [sym_property_declaration] = STATE(5113), + [sym_getter] = STATE(5113), + [sym_setter] = STATE(5113), + [sym_object_declaration] = STATE(5113), + [sym__statement] = STATE(5113), + [sym_control_structure_body] = STATE(5176), + [sym__block] = STATE(5113), + [sym__loop_statement] = STATE(5113), + [sym_for_statement] = STATE(5113), + [sym_while_statement] = STATE(5113), + [sym_do_while_statement] = STATE(5113), + [sym_assignment] = STATE(5113), + [sym__expression] = STATE(4226), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1824), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8359), + [sym_modifiers] = STATE(8244), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(335), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(787), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1409), + [anon_sym_typealias] = ACTIONS(423), + [anon_sym_class] = ACTIONS(881), + [anon_sym_interface] = ACTIONS(881), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_LBRACE] = ACTIONS(885), [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_object] = ACTIONS(887), + [anon_sym_fun] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_get] = ACTIONS(891), + [anon_sym_set] = ACTIONS(893), [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_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(447), [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(451), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [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(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -66593,246 +66496,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [215] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9854), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [216] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9749), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [213] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9931), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -66841,7 +66585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1413), + [anon_sym_RBRACE] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -66913,86 +66657,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [217] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9983), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [214] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10108), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -67001,7 +66746,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(1359), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -67073,86 +66818,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [218] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9710), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [215] = { + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat3] = STATE(215), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym__alpha_identifier] = ACTIONS(1363), + [anon_sym_AT] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_typealias] = ACTIONS(1372), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_val] = ACTIONS(1387), + [anon_sym_var] = ACTIONS(1387), + [anon_sym_object] = ACTIONS(1390), + [anon_sym_fun] = ACTIONS(1393), + [anon_sym_get] = ACTIONS(1396), + [anon_sym_set] = ACTIONS(1399), + [anon_sym_this] = ACTIONS(1402), + [anon_sym_super] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1408), + [sym_label] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_do] = ACTIONS(1420), + [anon_sym_null] = ACTIONS(1423), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_when] = ACTIONS(1429), + [anon_sym_try] = ACTIONS(1432), + [anon_sym_throw] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1441), + [anon_sym_break] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_PLUS_PLUS] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_BANG] = ACTIONS(1450), + [anon_sym_suspend] = ACTIONS(1453), + [anon_sym_sealed] = ACTIONS(1456), + [anon_sym_annotation] = ACTIONS(1456), + [anon_sym_data] = ACTIONS(1459), + [anon_sym_inner] = ACTIONS(1459), + [anon_sym_value] = ACTIONS(1459), + [anon_sym_override] = ACTIONS(1462), + [anon_sym_lateinit] = ACTIONS(1462), + [anon_sym_public] = ACTIONS(1465), + [anon_sym_private] = ACTIONS(1465), + [anon_sym_internal] = ACTIONS(1465), + [anon_sym_protected] = ACTIONS(1465), + [anon_sym_tailrec] = ACTIONS(1453), + [anon_sym_operator] = ACTIONS(1453), + [anon_sym_infix] = ACTIONS(1453), + [anon_sym_inline] = ACTIONS(1453), + [anon_sym_external] = ACTIONS(1453), + [sym_property_modifier] = ACTIONS(1468), + [anon_sym_abstract] = ACTIONS(1471), + [anon_sym_final] = ACTIONS(1471), + [anon_sym_open] = ACTIONS(1471), + [anon_sym_vararg] = ACTIONS(1474), + [anon_sym_noinline] = ACTIONS(1474), + [anon_sym_crossinline] = ACTIONS(1474), + [anon_sym_expect] = ACTIONS(1477), + [anon_sym_actual] = ACTIONS(1477), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1480), + [anon_sym_continue_AT] = ACTIONS(1483), + [anon_sym_break_AT] = ACTIONS(1486), + [anon_sym_this_AT] = ACTIONS(1489), + [anon_sym_super_AT] = ACTIONS(1492), + [sym_real_literal] = ACTIONS(1495), + [sym_integer_literal] = ACTIONS(1498), + [sym_hex_literal] = ACTIONS(1501), + [sym_bin_literal] = ACTIONS(1501), + [anon_sym_true] = ACTIONS(1504), + [anon_sym_false] = ACTIONS(1504), + [anon_sym_SQUOTE] = ACTIONS(1507), + [sym__backtick_identifier] = ACTIONS(1510), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1513), + }, + [216] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9804), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -67161,7 +67068,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(1417), + [anon_sym_RBRACE] = ACTIONS(1516), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -67233,87 +67140,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [219] = { - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat3] = STATE(226), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1213), + [217] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9909), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -67322,6 +67229,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(1518), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -67393,86 +67301,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [220] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9723), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [218] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9919), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -67481,7 +67390,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(1419), + [anon_sym_RBRACE] = ACTIONS(1520), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -67553,86 +67462,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, + [219] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10007), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1522), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [220] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10046), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, [221] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9763), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9482), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -67641,7 +67873,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(1421), + [anon_sym_RBRACE] = ACTIONS(1526), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -67714,85 +67946,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [222] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(10022), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9864), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -67801,7 +68034,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(1423), + [anon_sym_RBRACE] = ACTIONS(1528), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -67874,245 +68107,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [223] = { - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_RBRACK] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(283), - [anon_sym_DASH_GT] = ACTIONS(1427), - [sym_label] = ACTIONS(309), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(309), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [224] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9766), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat3] = STATE(215), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1530), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -68121,7 +68196,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(1443), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -68193,129 +68267,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [225] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9977), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), + [224] = { + [sym_type_alias] = STATE(5404), + [sym__declaration] = STATE(5404), + [sym_class_declaration] = STATE(5404), + [sym_binding_pattern_kind] = STATE(6054), + [sym_function_declaration] = STATE(5404), + [sym_property_declaration] = STATE(5404), + [sym_getter] = STATE(5404), + [sym_setter] = STATE(5404), + [sym_object_declaration] = STATE(5404), + [sym__statement] = STATE(5404), + [sym_control_structure_body] = STATE(5270), + [sym__block] = STATE(5404), + [sym__loop_statement] = STATE(5404), + [sym_for_statement] = STATE(5404), + [sym_while_statement] = STATE(5404), + [sym_do_while_statement] = STATE(5404), + [sym_assignment] = STATE(5404), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(764), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(557), [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_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -68334,265 +68409,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(89), - [anon_sym_actual] = ACTIONS(89), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [226] = { - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat3] = STATE(226), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1447), - [sym__alpha_identifier] = ACTIONS(1449), - [anon_sym_AT] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_typealias] = ACTIONS(1458), - [anon_sym_class] = ACTIONS(1461), - [anon_sym_interface] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_val] = ACTIONS(1473), - [anon_sym_var] = ACTIONS(1473), - [anon_sym_object] = ACTIONS(1476), - [anon_sym_fun] = ACTIONS(1479), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1485), - [anon_sym_this] = ACTIONS(1488), - [anon_sym_super] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1494), - [sym_label] = ACTIONS(1497), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_do] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_when] = ACTIONS(1515), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_throw] = ACTIONS(1521), - [anon_sym_return] = ACTIONS(1524), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_COLON_COLON] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1533), - [anon_sym_DASH] = ACTIONS(1533), - [anon_sym_PLUS_PLUS] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_suspend] = ACTIONS(1539), - [anon_sym_sealed] = ACTIONS(1542), - [anon_sym_annotation] = ACTIONS(1542), - [anon_sym_data] = ACTIONS(1545), - [anon_sym_inner] = ACTIONS(1545), - [anon_sym_value] = ACTIONS(1545), - [anon_sym_override] = ACTIONS(1548), - [anon_sym_lateinit] = ACTIONS(1548), - [anon_sym_public] = ACTIONS(1551), - [anon_sym_private] = ACTIONS(1551), - [anon_sym_internal] = ACTIONS(1551), - [anon_sym_protected] = ACTIONS(1551), - [anon_sym_tailrec] = ACTIONS(1539), - [anon_sym_operator] = ACTIONS(1539), - [anon_sym_infix] = ACTIONS(1539), - [anon_sym_inline] = ACTIONS(1539), - [anon_sym_external] = ACTIONS(1539), - [sym_property_modifier] = ACTIONS(1554), - [anon_sym_abstract] = ACTIONS(1557), - [anon_sym_final] = ACTIONS(1557), - [anon_sym_open] = ACTIONS(1557), - [anon_sym_vararg] = ACTIONS(1560), - [anon_sym_noinline] = ACTIONS(1560), - [anon_sym_crossinline] = ACTIONS(1560), - [anon_sym_expect] = ACTIONS(1563), - [anon_sym_actual] = ACTIONS(1563), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1566), - [anon_sym_continue_AT] = ACTIONS(1569), - [anon_sym_break_AT] = ACTIONS(1572), - [anon_sym_this_AT] = ACTIONS(1575), - [anon_sym_super_AT] = ACTIONS(1578), - [sym_real_literal] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1584), - [sym_hex_literal] = ACTIONS(1587), - [sym_bin_literal] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [anon_sym_SQUOTE] = ACTIONS(1593), - [sym__backtick_identifier] = ACTIONS(1596), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1599), + [sym__string_start] = ACTIONS(625), }, - [227] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9513), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [225] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9759), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -68601,7 +68517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1602), + [anon_sym_RBRACE] = ACTIONS(1532), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -68673,129 +68589,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [228] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9725), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(7), + [226] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10042), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_typealias] = ACTIONS(19), - [anon_sym_class] = ACTIONS(21), - [anon_sym_interface] = ACTIONS(21), - [anon_sym_enum] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), [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_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(77), - [anon_sym_inner] = ACTIONS(77), - [anon_sym_value] = ACTIONS(77), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -68814,148 +68731,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(89), - [anon_sym_actual] = ACTIONS(89), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_expect] = ACTIONS(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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [229] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(10092), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [227] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10037), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(1606), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -68974,148 +68892,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [230] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9859), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [228] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(9964), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -69134,105 +69053,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [231] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9687), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [229] = { + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat3] = STATE(215), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1173), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -69241,7 +69162,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(1608), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -69313,246 +69233,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [232] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9847), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(1610), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [233] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9522), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [230] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9799), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -69561,7 +69322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1536), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -69633,129 +69394,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [234] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9875), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [231] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(9913), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(1614), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -69774,148 +69536,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [235] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9869), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [232] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10001), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -69934,148 +69697,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [236] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9863), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [233] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(9783), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(1614), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70094,105 +69858,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [237] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9636), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [234] = { + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat3] = STATE(215), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1097), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -70201,7 +69967,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(1616), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -70273,86 +70038,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [238] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9921), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [235] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10033), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [236] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9524), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -70361,7 +70288,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(1618), + [anon_sym_RBRACE] = ACTIONS(1540), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -70433,86 +70360,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [239] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9698), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [237] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9830), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -70521,7 +70449,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(1620), + [anon_sym_RBRACE] = ACTIONS(1542), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -70593,87 +70521,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [240] = { - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat3] = STATE(226), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1149), + [238] = { + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat3] = STATE(215), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1133), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -70753,129 +70682,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [241] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9604), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [239] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9555), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [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(1544), + [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(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -70894,105 +70824,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [242] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9783), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [240] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9576), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -71001,7 +70932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1546), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71073,86 +71004,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [243] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9697), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [241] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9584), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -71161,7 +71093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_RBRACE] = ACTIONS(1548), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71233,129 +71165,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [244] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9815), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), + [242] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(9791), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(1626), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1550), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(261), + [anon_sym_inner] = ACTIONS(261), + [anon_sym_value] = ACTIONS(261), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -71374,106 +71307,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [245] = { - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat3] = STATE(226), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1628), + [243] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9742), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -71482,6 +71415,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(1552), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71553,86 +71487,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [246] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(10074), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [244] = { + [sym_type_alias] = STATE(9153), + [sym__declaration] = STATE(9153), + [sym_class_declaration] = STATE(9153), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9153), + [sym_property_declaration] = STATE(9153), + [sym_getter] = STATE(9153), + [sym_setter] = STATE(9153), + [sym_object_declaration] = STATE(9153), + [sym__statement] = STATE(9153), + [sym__loop_statement] = STATE(9153), + [sym_for_statement] = STATE(9153), + [sym_while_statement] = STATE(9153), + [sym_do_while_statement] = STATE(9153), + [sym_assignment] = STATE(9153), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym_source_file_repeat3] = STATE(215), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [ts_builtin_sym_end] = ACTIONS(1099), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -71641,7 +71577,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(1630), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71713,86 +71648,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [247] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9914), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), + [245] = { + [sym_type_alias] = STATE(5404), + [sym__declaration] = STATE(5404), + [sym_class_declaration] = STATE(5404), + [sym_binding_pattern_kind] = STATE(6054), + [sym_function_declaration] = STATE(5404), + [sym_property_declaration] = STATE(5404), + [sym_getter] = STATE(5404), + [sym_setter] = STATE(5404), + [sym_object_declaration] = STATE(5404), + [sym__statement] = STATE(5404), + [sym_control_structure_body] = STATE(5268), + [sym__block] = STATE(5404), + [sym__loop_statement] = STATE(5404), + [sym_for_statement] = STATE(5404), + [sym_while_statement] = STATE(5404), + [sym_do_while_statement] = STATE(5404), + [sym_assignment] = STATE(5404), + [sym__expression] = STATE(2300), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_modifiers] = STATE(8150), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(337), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(3083), [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(764), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_typealias] = ACTIONS(1101), + [anon_sym_class] = ACTIONS(1103), + [anon_sym_interface] = ACTIONS(1103), + [anon_sym_enum] = ACTIONS(1105), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(1109), + [anon_sym_fun] = ACTIONS(1111), + [anon_sym_get] = ACTIONS(1113), + [anon_sym_set] = ACTIONS(1115), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(601), + [anon_sym_inner] = ACTIONS(601), + [anon_sym_value] = ACTIONS(601), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(603), + [anon_sym_actual] = ACTIONS(603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [246] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10078), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -71801,7 +71898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(21), [anon_sym_enum] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1554), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -71873,129 +71970,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [248] = { - [sym_type_alias] = STATE(5317), - [sym__declaration] = STATE(5317), - [sym_class_declaration] = STATE(5317), - [sym_function_declaration] = STATE(5317), - [sym_property_declaration] = STATE(5317), - [sym_getter] = STATE(5317), - [sym_setter] = STATE(5317), - [sym_object_declaration] = STATE(5317), - [sym__statement] = STATE(5317), - [sym_control_structure_body] = STATE(5305), - [sym__block] = STATE(5317), - [sym__loop_statement] = STATE(5317), - [sym_for_statement] = STATE(5317), - [sym_while_statement] = STATE(5317), - [sym_do_while_statement] = STATE(5317), - [sym_assignment] = STATE(5317), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8286), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [247] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9595), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1161), - [anon_sym_fun] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(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(1556), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -72014,105 +72112,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [249] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9651), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [248] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9873), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -72121,7 +72220,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(1634), + [anon_sym_RBRACE] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72193,129 +72292,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [250] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9970), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), + [249] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9974), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(1411), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), + [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(1560), + [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(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -72334,105 +72434,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(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [251] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9756), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [250] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9829), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -72441,7 +72542,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(1636), + [anon_sym_RBRACE] = ACTIONS(1562), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72513,129 +72614,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [252] = { - [sym_type_alias] = STATE(5317), - [sym__declaration] = STATE(5317), - [sym_class_declaration] = STATE(5317), - [sym_function_declaration] = STATE(5317), - [sym_property_declaration] = STATE(5317), - [sym_getter] = STATE(5317), - [sym_setter] = STATE(5317), - [sym_object_declaration] = STATE(5317), - [sym__statement] = STATE(5317), - [sym_control_structure_body] = STATE(5264), - [sym__block] = STATE(5317), - [sym__loop_statement] = STATE(5317), - [sym_for_statement] = STATE(5317), - [sym_while_statement] = STATE(5317), - [sym_do_while_statement] = STATE(5317), - [sym_assignment] = STATE(5317), - [sym__expression] = STATE(2296), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_modifiers] = STATE(8286), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(348), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(795), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(557), + [251] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10149), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_typealias] = ACTIONS(1151), - [anon_sym_class] = ACTIONS(1153), - [anon_sym_interface] = ACTIONS(1153), - [anon_sym_enum] = ACTIONS(1155), - [anon_sym_LBRACE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_var] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(1161), - [anon_sym_fun] = ACTIONS(1163), - [anon_sym_get] = ACTIONS(1165), - [anon_sym_set] = ACTIONS(1167), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(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(1564), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(31), + [anon_sym_fun] = ACTIONS(33), + [anon_sym_get] = ACTIONS(35), + [anon_sym_set] = ACTIONS(37), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(45), + [anon_sym_for] = ACTIONS(47), + [anon_sym_while] = ACTIONS(49), + [anon_sym_do] = ACTIONS(51), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(71), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(615), - [anon_sym_inner] = ACTIONS(615), - [anon_sym_value] = ACTIONS(615), + [anon_sym_data] = ACTIONS(77), + [anon_sym_inner] = ACTIONS(77), + [anon_sym_value] = ACTIONS(77), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -72654,105 +72756,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(617), - [anon_sym_actual] = ACTIONS(617), + [anon_sym_expect] = ACTIONS(89), + [anon_sym_actual] = ACTIONS(89), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [253] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9580), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [252] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9590), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -72761,7 +72864,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(1638), + [anon_sym_RBRACE] = ACTIONS(1566), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72833,87 +72936,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [254] = { - [sym_type_alias] = STATE(9139), - [sym__declaration] = STATE(9139), - [sym_class_declaration] = STATE(9139), - [sym_function_declaration] = STATE(9139), - [sym_property_declaration] = STATE(9139), - [sym_getter] = STATE(9139), - [sym_setter] = STATE(9139), - [sym_object_declaration] = STATE(9139), - [sym__statement] = STATE(9139), - [sym__loop_statement] = STATE(9139), - [sym_for_statement] = STATE(9139), - [sym_while_statement] = STATE(9139), - [sym_do_while_statement] = STATE(9139), - [sym_assignment] = STATE(9139), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym_source_file_repeat3] = STATE(226), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), - [ts_builtin_sym_end] = ACTIONS(1207), + [253] = { + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(9905), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -72922,6 +73025,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(1568), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -72993,86 +73097,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, + [254] = { + [sym_type_alias] = STATE(9970), + [sym__declaration] = STATE(9970), + [sym_class_declaration] = STATE(9970), + [sym_binding_pattern_kind] = STATE(6302), + [sym_function_declaration] = STATE(9970), + [sym_property_declaration] = STATE(9970), + [sym_getter] = STATE(9970), + [sym_setter] = STATE(9970), + [sym_object_declaration] = STATE(9970), + [sym__statement] = STATE(9970), + [sym_control_structure_body] = STATE(10030), + [sym__block] = STATE(9970), + [sym__loop_statement] = STATE(9970), + [sym_for_statement] = STATE(9970), + [sym_while_statement] = STATE(9970), + [sym_do_while_statement] = STATE(9970), + [sym_assignment] = STATE(9970), + [sym__expression] = STATE(4267), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_modifiers] = STATE(8141), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(344), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_typealias] = ACTIONS(297), + [anon_sym_class] = ACTIONS(299), + [anon_sym_interface] = ACTIONS(299), + [anon_sym_enum] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_object] = ACTIONS(305), + [anon_sym_fun] = ACTIONS(307), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(313), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, [255] = { - [sym_type_alias] = STATE(8759), - [sym__declaration] = STATE(8759), - [sym_class_declaration] = STATE(8759), - [sym_function_declaration] = STATE(8759), - [sym_property_declaration] = STATE(8759), - [sym_getter] = STATE(8759), - [sym_setter] = STATE(8759), - [sym_object_declaration] = STATE(8759), - [sym_statements] = STATE(9617), - [sym__statement] = STATE(8759), - [sym__loop_statement] = STATE(8759), - [sym_for_statement] = STATE(8759), - [sym_while_statement] = STATE(8759), - [sym_do_while_statement] = STATE(8759), - [sym_assignment] = STATE(8759), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(8669), + [sym__declaration] = STATE(8669), + [sym_class_declaration] = STATE(8669), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(8669), + [sym_property_declaration] = STATE(8669), + [sym_getter] = STATE(8669), + [sym_setter] = STATE(8669), + [sym_object_declaration] = STATE(8669), + [sym_statements] = STATE(10123), + [sym__statement] = STATE(8669), + [sym__loop_statement] = STATE(8669), + [sym_for_statement] = STATE(8669), + [sym_while_statement] = STATE(8669), + [sym_do_while_statement] = STATE(8669), + [sym_assignment] = STATE(8669), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -73081,7 +73347,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(1640), + [anon_sym_RBRACE] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -73154,244 +73420,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [256] = { - [sym_type_alias] = STATE(9848), - [sym__declaration] = STATE(9848), - [sym_class_declaration] = STATE(9848), - [sym_function_declaration] = STATE(9848), - [sym_property_declaration] = STATE(9848), - [sym_getter] = STATE(9848), - [sym_setter] = STATE(9848), - [sym_object_declaration] = STATE(9848), - [sym__statement] = STATE(9848), - [sym_control_structure_body] = STATE(9870), - [sym__block] = STATE(9848), - [sym__loop_statement] = STATE(9848), - [sym_for_statement] = STATE(9848), - [sym_while_statement] = STATE(9848), - [sym_do_while_statement] = STATE(9848), - [sym_assignment] = STATE(9848), - [sym__expression] = STATE(4263), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_modifiers] = STATE(8315), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(353), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(773), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(117), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_typealias] = ACTIONS(125), - [anon_sym_class] = ACTIONS(127), - [anon_sym_interface] = ACTIONS(127), - [anon_sym_enum] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(135), - [anon_sym_var] = ACTIONS(135), - [anon_sym_object] = ACTIONS(137), - [anon_sym_fun] = ACTIONS(139), - [anon_sym_get] = ACTIONS(143), - [anon_sym_set] = ACTIONS(145), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(181), - [anon_sym_inner] = ACTIONS(181), - [anon_sym_value] = ACTIONS(181), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(183), - [anon_sym_actual] = ACTIONS(183), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [257] = { - [sym_type_alias] = STATE(9458), - [sym__declaration] = STATE(9458), - [sym_class_declaration] = STATE(9458), - [sym_function_declaration] = STATE(9458), - [sym_property_declaration] = STATE(9458), - [sym_getter] = STATE(9458), - [sym_setter] = STATE(9458), - [sym_object_declaration] = STATE(9458), - [sym__statement] = STATE(9458), - [sym__loop_statement] = STATE(9458), - [sym_for_statement] = STATE(9458), - [sym_while_statement] = STATE(9458), - [sym_do_while_statement] = STATE(9458), - [sym_assignment] = STATE(9458), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(9375), + [sym__declaration] = STATE(9375), + [sym_class_declaration] = STATE(9375), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9375), + [sym_property_declaration] = STATE(9375), + [sym_getter] = STATE(9375), + [sym_setter] = STATE(9375), + [sym_object_declaration] = STATE(9375), + [sym__statement] = STATE(9375), + [sym__loop_statement] = STATE(9375), + [sym_for_statement] = STATE(9375), + [sym_while_statement] = STATE(9375), + [sym_do_while_statement] = STATE(9375), + [sym_assignment] = STATE(9375), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -73400,7 +73507,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(1642), + [anon_sym_RBRACE] = ACTIONS(1572), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -73472,85 +73579,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [258] = { - [sym_type_alias] = STATE(9458), - [sym__declaration] = STATE(9458), - [sym_class_declaration] = STATE(9458), - [sym_function_declaration] = STATE(9458), - [sym_property_declaration] = STATE(9458), - [sym_getter] = STATE(9458), - [sym_setter] = STATE(9458), - [sym_object_declaration] = STATE(9458), - [sym__statement] = STATE(9458), - [sym__loop_statement] = STATE(9458), - [sym_for_statement] = STATE(9458), - [sym_while_statement] = STATE(9458), - [sym_do_while_statement] = STATE(9458), - [sym_assignment] = STATE(9458), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [257] = { + [sym_type_alias] = STATE(9375), + [sym__declaration] = STATE(9375), + [sym_class_declaration] = STATE(9375), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9375), + [sym_property_declaration] = STATE(9375), + [sym_getter] = STATE(9375), + [sym_setter] = STATE(9375), + [sym_object_declaration] = STATE(9375), + [sym__statement] = STATE(9375), + [sym__loop_statement] = STATE(9375), + [sym_for_statement] = STATE(9375), + [sym_while_statement] = STATE(9375), + [sym_do_while_statement] = STATE(9375), + [sym_assignment] = STATE(9375), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -73559,7 +73667,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(1644), + [anon_sym_RBRACE] = ACTIONS(1574), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), @@ -73631,85 +73739,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, + [258] = { + [sym__expression] = STATE(1190), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(147), + [anon_sym_DASH_GT] = ACTIONS(1578), + [sym_label] = ACTIONS(173), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(159), + [anon_sym_else] = ACTIONS(1580), + [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(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(175), + [anon_sym_DASH_DASH] = ACTIONS(175), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, [259] = { - [sym_type_alias] = STATE(9458), - [sym__declaration] = STATE(9458), - [sym_class_declaration] = STATE(9458), - [sym_function_declaration] = STATE(9458), - [sym_property_declaration] = STATE(9458), - [sym_getter] = STATE(9458), - [sym_setter] = STATE(9458), - [sym_object_declaration] = STATE(9458), - [sym__statement] = STATE(9458), - [sym__loop_statement] = STATE(9458), - [sym_for_statement] = STATE(9458), - [sym_while_statement] = STATE(9458), - [sym_do_while_statement] = STATE(9458), - [sym_assignment] = STATE(9458), - [sym__expression] = STATE(4285), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_modifiers] = STATE(8290), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(349), - [sym__single_annotation] = STATE(3915), - [sym__multi_annotation] = STATE(3915), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(771), - [aux_sym_modifiers_repeat1] = STATE(5616), + [sym_type_alias] = STATE(9375), + [sym__declaration] = STATE(9375), + [sym_class_declaration] = STATE(9375), + [sym_binding_pattern_kind] = STATE(6194), + [sym_function_declaration] = STATE(9375), + [sym_property_declaration] = STATE(9375), + [sym_getter] = STATE(9375), + [sym_setter] = STATE(9375), + [sym_object_declaration] = STATE(9375), + [sym__statement] = STATE(9375), + [sym__loop_statement] = STATE(9375), + [sym_for_statement] = STATE(9375), + [sym_while_statement] = STATE(9375), + [sym_do_while_statement] = STATE(9375), + [sym_assignment] = STATE(9375), + [sym__expression] = STATE(4294), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_modifiers] = STATE(8143), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(333), + [sym__single_annotation] = STATE(3942), + [sym__multi_annotation] = STATE(3942), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(783), + [aux_sym_modifiers_repeat1] = STATE(5609), [sym__alpha_identifier] = ACTIONS(7), [anon_sym_AT] = ACTIONS(117), [anon_sym_LBRACK] = ACTIONS(13), @@ -73790,1790 +74059,1790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(113), }, [260] = { - [sym__expression] = STATE(1416), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__expression] = STATE(1411), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(459), - [sym_label] = ACTIONS(485), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(485), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(489), + [sym_label] = ACTIONS(515), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [261] = { - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [sym__expression] = STATE(372), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(373), - [sym_label] = ACTIONS(399), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(399), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [sym_label] = ACTIONS(391), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(391), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [262] = { - [sym__expression] = STATE(2067), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), + [sym__expression] = STATE(1801), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(771), - [sym_label] = ACTIONS(785), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(639), + [sym_label] = ACTIONS(653), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [263] = { - [sym__expression] = STATE(2231), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__expression] = STATE(2222), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(681), - [sym_label] = ACTIONS(695), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(723), + [sym_label] = ACTIONS(737), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(737), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [264] = { - [sym__expression] = STATE(380), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [sym__expression] = STATE(389), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(713), - [sym_label] = ACTIONS(727), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(727), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(693), + [sym_label] = ACTIONS(707), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(707), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [265] = { - [sym__expression] = STATE(2297), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), + [sym__expression] = STATE(2298), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_RBRACK] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_DASH_GT] = ACTIONS(1427), - [sym_label] = ACTIONS(875), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(875), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [anon_sym_DASH_GT] = ACTIONS(1578), + [sym_label] = ACTIONS(819), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(819), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [266] = { - [sym__expression] = STATE(464), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(967), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [267] = { - [sym__expression] = STATE(2447), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__expression] = STATE(2442), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(999), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(961), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [268] = { - [sym__expression] = STATE(2471), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1125), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [269] = { - [sym__expression] = STATE(2545), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [sym__expression] = STATE(2592), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1079), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [270] = { - [sym__expression] = STATE(534), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [sym__expression] = STATE(523), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1035), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [271] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1696), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -75592,128 +75861,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [272] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1696), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -75732,128 +76001,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [273] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -75872,128 +76141,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [274] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -76012,128 +76281,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [275] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -76152,128 +76421,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [276] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -76292,128 +76561,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [277] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3106), + [sym_setter] = STATE(3106), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1764), + [anon_sym_fun] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1768), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1764), + [anon_sym_super] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [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(1712), + [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(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -76432,128 +76701,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1766), }, [278] = { - [sym_getter] = STATE(1105), - [sym_setter] = STATE(1105), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_get] = ACTIONS(1750), + [anon_sym_set] = ACTIONS(1752), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [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(1712), + [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(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -76572,128 +76841,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1772), }, [279] = { - [sym_getter] = STATE(3106), - [sym_setter] = STATE(3106), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1828), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1094), + [sym_setter] = STATE(1094), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1764), + [anon_sym_fun] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1776), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1696), + [anon_sym_this] = ACTIONS(1764), + [anon_sym_super] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [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(1712), + [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(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -76712,128 +76981,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1766), }, [280] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_get] = ACTIONS(1802), - [anon_sym_set] = ACTIONS(1804), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1696), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -76852,128 +77121,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [281] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1696), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -76992,128 +77261,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [282] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_get] = ACTIONS(1746), - [anon_sym_set] = ACTIONS(1748), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(1694), + [anon_sym_set] = ACTIONS(1696), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [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(1712), + [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(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -77132,265 +77401,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1772), }, [283] = { - [sym__expression] = STATE(3288), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(3301), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), [anon_sym_STAR] = ACTIONS(231), - [anon_sym_DASH_GT] = ACTIONS(1427), - [sym_label] = ACTIONS(249), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1844), + [anon_sym_DASH_GT] = ACTIONS(1578), + [sym_label] = ACTIONS(257), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1792), [anon_sym_if] = ACTIONS(243), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(249), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1580), + [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(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(259), + [anon_sym_DASH_DASH] = ACTIONS(259), + [anon_sym_BANG] = ACTIONS(257), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [284] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(1800), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -77409,126 +77678,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [285] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1094), + [sym_setter] = STATE(1094), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1764), + [anon_sym_fun] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1830), + [anon_sym_this] = ACTIONS(1764), + [anon_sym_super] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [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(1712), + [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(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -77547,126 +77816,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1766), }, [286] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(1800), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -77685,126 +77954,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [287] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1830), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -77823,126 +78092,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [288] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1830), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -77961,126 +78230,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [289] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1830), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -78099,126 +78368,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [290] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1830), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [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(1712), + [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(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -78237,126 +78506,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1772), }, [291] = { - [sym_getter] = STATE(1105), - [sym_setter] = STATE(1105), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_get] = ACTIONS(1828), + [anon_sym_set] = ACTIONS(1830), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -78375,126 +78644,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [292] = { - [sym_getter] = STATE(3106), - [sym_setter] = STATE(3106), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1896), - [anon_sym_get] = ACTIONS(1852), - [anon_sym_set] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(1800), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -78513,126 +78782,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [293] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(1800), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [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(1712), + [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(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -78651,126 +78920,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1772), }, [294] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3106), + [sym_setter] = STATE(3106), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1764), + [anon_sym_fun] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1848), + [anon_sym_get] = ACTIONS(1800), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1764), + [anon_sym_super] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [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(1712), + [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(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -78789,126 +79058,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1766), }, [295] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_get] = ACTIONS(1880), - [anon_sym_set] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(1800), + [anon_sym_set] = ACTIONS(1802), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -78927,151 +79196,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [296] = { - [sym__expression] = STATE(3794), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), + [sym__expression] = STATE(991), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(571), + [sym_label] = ACTIONS(597), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [297] = { + [sym__expression] = STATE(3759), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1578), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(533), - [sym_label] = ACTIONS(551), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), - [anon_sym_else] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(439), + [sym_label] = ACTIONS(457), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_else] = ACTIONS(1580), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(457), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -79079,377 +79484,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [297] = { - [sym__expression] = STATE(969), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(585), - [sym_label] = ACTIONS(611), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(611), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, [298] = { - [sym__expression] = STATE(3996), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4022), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(655), - [sym_label] = ACTIONS(663), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(663), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(753), + [sym_label] = ACTIONS(761), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(761), + [anon_sym_DASH] = ACTIONS(761), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(763), + [anon_sym_DASH_DASH] = ACTIONS(763), + [anon_sym_BANG] = ACTIONS(761), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [299] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(669), + [sym_label] = ACTIONS(677), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(1580), + [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(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(677), + [anon_sym_DASH] = ACTIONS(677), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(679), + [anon_sym_DASH_DASH] = ACTIONS(679), + [anon_sym_BANG] = ACTIONS(677), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [300] = { + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(1882), + [anon_sym_set] = ACTIONS(1884), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -79468,122 +79871,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, - [300] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [301] = { + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_get] = ACTIONS(1882), + [anon_sym_set] = ACTIONS(1884), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -79602,122 +80005,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1772), }, - [301] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [302] = { + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(1914), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -79736,122 +80139,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [302] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [303] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(1914), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -79870,122 +80273,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1772), }, - [303] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [304] = { + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(1914), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -80004,122 +80407,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [304] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [305] = { + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(1882), + [anon_sym_set] = ACTIONS(1884), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -80138,122 +80541,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [305] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [306] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_get] = ACTIONS(1882), + [anon_sym_set] = ACTIONS(1884), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -80272,122 +80675,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [306] = { - [sym_getter] = STATE(3106), - [sym_setter] = STATE(3106), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1976), - [anon_sym_get] = ACTIONS(1964), - [anon_sym_set] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [307] = { + [sym_getter] = STATE(1094), + [sym_setter] = STATE(1094), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1764), + [anon_sym_fun] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_get] = ACTIONS(1882), + [anon_sym_set] = ACTIONS(1884), + [anon_sym_this] = ACTIONS(1764), + [anon_sym_super] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -80406,256 +80809,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), - }, - [307] = { - [sym__expression] = STATE(1197), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(803), - [sym_label] = ACTIONS(817), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1766), }, [308] = { - [sym_getter] = STATE(1105), - [sym_setter] = STATE(1105), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(1914), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -80674,256 +80943,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [309] = { - [sym__expression] = STATE(4058), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(745), - [sym_label] = ACTIONS(753), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1429), - [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(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(753), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(777), + [sym_label] = ACTIONS(791), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(791), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [310] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_get] = ACTIONS(1914), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -80942,122 +81211,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [311] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3106), + [sym_setter] = STATE(3106), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_object] = ACTIONS(1764), + [anon_sym_fun] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_get] = ACTIONS(1914), + [anon_sym_set] = ACTIONS(1916), + [anon_sym_this] = ACTIONS(1764), + [anon_sym_super] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -81076,122 +81345,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1766), }, [312] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1932), - [anon_sym_set] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(1882), + [anon_sym_set] = ACTIONS(1884), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -81210,253 +81479,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [313] = { - [sym__expression] = STATE(4109), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4130), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_RBRACK] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [anon_sym_DASH_GT] = ACTIONS(1427), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [anon_sym_DASH_GT] = ACTIONS(1578), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [314] = { - [sym_getter] = STATE(5360), - [sym_setter] = STATE(5360), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_get] = ACTIONS(1950), + [anon_sym_set] = ACTIONS(1952), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -81475,120 +81744,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1772), }, [315] = { - [sym_getter] = STATE(1105), - [sym_setter] = STATE(1105), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(2030), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(5328), + [sym_setter] = STATE(5328), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(1980), + [anon_sym_set] = ACTIONS(1982), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -81607,120 +81876,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [316] = { - [sym_getter] = STATE(5322), - [sym_setter] = STATE(5322), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(1950), + [anon_sym_set] = ACTIONS(1952), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -81739,120 +82008,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [317] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3106), + [sym_setter] = STATE(3106), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1764), + [anon_sym_fun] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_get] = ACTIONS(1950), + [anon_sym_set] = ACTIONS(1952), + [anon_sym_this] = ACTIONS(1764), + [anon_sym_super] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -81871,120 +82140,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1766), }, [318] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(5381), + [sym_setter] = STATE(5381), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(1980), + [anon_sym_set] = ACTIONS(1982), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -82003,120 +82272,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [319] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(1950), + [anon_sym_set] = ACTIONS(1952), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -82135,120 +82404,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [320] = { - [sym_getter] = STATE(5314), - [sym_setter] = STATE(5314), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(1950), + [anon_sym_set] = ACTIONS(1952), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -82267,120 +82536,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [321] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(1950), + [anon_sym_set] = ACTIONS(1952), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -82399,120 +82668,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [322] = { - [sym_getter] = STATE(5375), - [sym_setter] = STATE(5375), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -82531,120 +82800,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [323] = { - [sym_getter] = STATE(5315), - [sym_setter] = STATE(5315), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(5364), + [sym_setter] = STATE(5364), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(1980), + [anon_sym_set] = ACTIONS(1982), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -82663,120 +82932,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [324] = { - [sym_getter] = STATE(3106), - [sym_setter] = STATE(3106), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(2052), - [anon_sym_get] = ACTIONS(2054), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(1980), + [anon_sym_set] = ACTIONS(1982), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -82795,120 +83064,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [325] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_get] = ACTIONS(2054), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -82927,120 +83196,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1772), }, [326] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(2054), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -83059,120 +83328,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [327] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(2032), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -83191,120 +83460,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [328] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_get] = ACTIONS(2054), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(5388), + [sym_setter] = STATE(5388), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1764), + [anon_sym_fun] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(1980), + [anon_sym_set] = ACTIONS(1982), + [anon_sym_this] = ACTIONS(1764), + [anon_sym_super] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -83323,120 +83592,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1766), }, [329] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(2054), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -83455,120 +83724,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [330] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_get] = ACTIONS(2054), - [anon_sym_set] = ACTIONS(2056), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(1094), + [sym_setter] = STATE(1094), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1764), + [anon_sym_fun] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_get] = ACTIONS(1998), + [anon_sym_set] = ACTIONS(2000), + [anon_sym_this] = ACTIONS(1764), + [anon_sym_super] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1764), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -83587,120 +83856,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(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1766), }, [331] = { - [sym_getter] = STATE(5414), - [sym_setter] = STATE(5414), - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(2002), - [anon_sym_set] = ACTIONS(2004), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [sym_getter] = STATE(5348), + [sym_setter] = STATE(5348), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(1980), + [anon_sym_set] = ACTIONS(1982), + [anon_sym_this] = ACTIONS(1770), + [anon_sym_super] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -83719,3419 +83988,3289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1772), }, [332] = { - [sym__expression] = STATE(2470), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2090), - [anon_sym_fun] = ACTIONS(2094), - [anon_sym_get] = ACTIONS(2098), - [anon_sym_set] = ACTIONS(2098), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2108), - [sym_label] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2098), - [anon_sym_inner] = ACTIONS(2098), - [anon_sym_value] = ACTIONS(2098), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2098), - [anon_sym_actual] = ACTIONS(2098), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), + [sym__expression] = STATE(2453), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(2020), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2038), + [anon_sym_fun] = ACTIONS(2042), + [anon_sym_get] = ACTIONS(2046), + [anon_sym_set] = ACTIONS(2046), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_super] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2056), + [sym_label] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_when] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2046), + [anon_sym_inner] = ACTIONS(2046), + [anon_sym_value] = ACTIONS(2046), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2046), + [anon_sym_actual] = ACTIONS(2046), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2094), + [anon_sym_break_AT] = ACTIONS(2097), + [anon_sym_this_AT] = ACTIONS(2100), + [anon_sym_super_AT] = ACTIONS(2103), + [sym_real_literal] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2109), + [sym_hex_literal] = ACTIONS(2112), + [sym_bin_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2118), + [sym__backtick_identifier] = ACTIONS(2121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2124), }, [333] = { - [sym__expression] = STATE(2421), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2191), - [anon_sym_fun] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2209), - [sym_label] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2199), - [anon_sym_inner] = ACTIONS(2199), - [anon_sym_value] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2199), - [anon_sym_actual] = ACTIONS(2199), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), + [sym__expression] = STATE(4293), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(2143), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_this] = ACTIONS(2151), + [anon_sym_super] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2157), + [sym_label] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2147), + [anon_sym_inner] = ACTIONS(2147), + [anon_sym_value] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2147), + [anon_sym_actual] = ACTIONS(2147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2193), + [anon_sym_break_AT] = ACTIONS(2196), + [anon_sym_this_AT] = ACTIONS(2199), + [anon_sym_super_AT] = ACTIONS(2202), + [sym_real_literal] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2208), + [sym_hex_literal] = ACTIONS(2211), + [sym_bin_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2217), + [sym__backtick_identifier] = ACTIONS(2220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2223), }, [334] = { - [sym__expression] = STATE(532), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2290), - [anon_sym_fun] = ACTIONS(2294), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2308), - [sym_label] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2298), - [anon_sym_inner] = ACTIONS(2298), - [anon_sym_value] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2298), - [anon_sym_actual] = ACTIONS(2298), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [sym__expression] = STATE(2221), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(2020), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2038), + [anon_sym_fun] = ACTIONS(2226), + [anon_sym_get] = ACTIONS(2046), + [anon_sym_set] = ACTIONS(2046), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_super] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2230), + [sym_label] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_when] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2046), + [anon_sym_inner] = ACTIONS(2046), + [anon_sym_value] = ACTIONS(2046), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2046), + [anon_sym_actual] = ACTIONS(2046), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2094), + [anon_sym_break_AT] = ACTIONS(2097), + [anon_sym_this_AT] = ACTIONS(2100), + [anon_sym_super_AT] = ACTIONS(2103), + [sym_real_literal] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2109), + [sym_hex_literal] = ACTIONS(2112), + [sym_bin_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2118), + [sym__backtick_identifier] = ACTIONS(2121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2124), }, [335] = { - [sym__expression] = STATE(2236), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2191), - [anon_sym_fun] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2378), - [sym_label] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2199), - [anon_sym_inner] = ACTIONS(2199), - [anon_sym_value] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2199), - [anon_sym_actual] = ACTIONS(2199), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), + [sym__expression] = STATE(4241), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(2248), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_this] = ACTIONS(2151), + [anon_sym_super] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2252), + [sym_label] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2147), + [anon_sym_inner] = ACTIONS(2147), + [anon_sym_value] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2147), + [anon_sym_actual] = ACTIONS(2147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2193), + [anon_sym_break_AT] = ACTIONS(2196), + [anon_sym_this_AT] = ACTIONS(2199), + [anon_sym_super_AT] = ACTIONS(2202), + [sym_real_literal] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2208), + [sym_hex_literal] = ACTIONS(2211), + [sym_bin_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2217), + [sym__backtick_identifier] = ACTIONS(2220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2223), }, [336] = { - [sym__expression] = STATE(4102), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2408), - [anon_sym_fun] = ACTIONS(2412), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2426), - [sym_label] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PLUS_PLUS] = ACTIONS(2456), - [anon_sym_DASH_DASH] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2416), - [anon_sym_inner] = ACTIONS(2416), - [anon_sym_value] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2416), - [anon_sym_actual] = ACTIONS(2416), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(2020), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2038), + [anon_sym_fun] = ACTIONS(2270), + [anon_sym_get] = ACTIONS(2046), + [anon_sym_set] = ACTIONS(2046), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_super] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2274), + [sym_label] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_when] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2046), + [anon_sym_inner] = ACTIONS(2046), + [anon_sym_value] = ACTIONS(2046), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2046), + [anon_sym_actual] = ACTIONS(2046), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2094), + [anon_sym_break_AT] = ACTIONS(2097), + [anon_sym_this_AT] = ACTIONS(2100), + [anon_sym_super_AT] = ACTIONS(2103), + [sym_real_literal] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2109), + [sym_hex_literal] = ACTIONS(2112), + [sym_bin_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2118), + [sym__backtick_identifier] = ACTIONS(2121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2124), }, [337] = { - [sym__expression] = STATE(2547), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2191), - [anon_sym_fun] = ACTIONS(2495), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2499), - [sym_label] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2199), - [anon_sym_inner] = ACTIONS(2199), - [anon_sym_value] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2199), - [anon_sym_actual] = ACTIONS(2199), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), + [sym__expression] = STATE(2293), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_fun] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2312), + [anon_sym_set] = ACTIONS(2312), + [anon_sym_this] = ACTIONS(2316), + [anon_sym_super] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2322), + [sym_label] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_when] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2312), + [anon_sym_inner] = ACTIONS(2312), + [anon_sym_value] = ACTIONS(2312), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2312), + [anon_sym_actual] = ACTIONS(2312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2355), + [anon_sym_break_AT] = ACTIONS(2358), + [anon_sym_this_AT] = ACTIONS(2361), + [anon_sym_super_AT] = ACTIONS(2364), + [sym_real_literal] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2370), + [sym_hex_literal] = ACTIONS(2373), + [sym_bin_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym__backtick_identifier] = ACTIONS(2382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2385), }, [338] = { - [sym__expression] = STATE(970), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2529), - [anon_sym_fun] = ACTIONS(2533), - [anon_sym_get] = ACTIONS(2537), - [anon_sym_set] = ACTIONS(2537), - [anon_sym_this] = ACTIONS(2541), - [anon_sym_super] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2547), - [sym_label] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_when] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2577), - [anon_sym_DASH_DASH] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2577), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2537), - [anon_sym_inner] = ACTIONS(2537), - [anon_sym_value] = ACTIONS(2537), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2537), - [anon_sym_actual] = ACTIONS(2537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2583), - [anon_sym_break_AT] = ACTIONS(2586), - [anon_sym_this_AT] = ACTIONS(2589), - [anon_sym_super_AT] = ACTIONS(2592), - [sym_real_literal] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2598), - [sym_hex_literal] = ACTIONS(2601), - [sym_bin_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2607), - [sym__backtick_identifier] = ACTIONS(2610), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2613), + [sym__expression] = STATE(1012), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_fun] = ACTIONS(2388), + [anon_sym_get] = ACTIONS(2312), + [anon_sym_set] = ACTIONS(2312), + [anon_sym_this] = ACTIONS(2316), + [anon_sym_super] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2392), + [sym_label] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_when] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2312), + [anon_sym_inner] = ACTIONS(2312), + [anon_sym_value] = ACTIONS(2312), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2312), + [anon_sym_actual] = ACTIONS(2312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2355), + [anon_sym_break_AT] = ACTIONS(2358), + [anon_sym_this_AT] = ACTIONS(2361), + [anon_sym_super_AT] = ACTIONS(2364), + [sym_real_literal] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2370), + [sym_hex_literal] = ACTIONS(2373), + [sym_bin_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym__backtick_identifier] = ACTIONS(2382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2385), }, [339] = { - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2628), - [anon_sym_fun] = ACTIONS(2632), - [anon_sym_get] = ACTIONS(2636), - [anon_sym_set] = ACTIONS(2636), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_super] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2646), - [sym_label] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2636), - [anon_sym_inner] = ACTIONS(2636), - [anon_sym_value] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2636), - [anon_sym_actual] = ACTIONS(2636), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2679), - [anon_sym_break_AT] = ACTIONS(2682), - [anon_sym_this_AT] = ACTIONS(2685), - [anon_sym_super_AT] = ACTIONS(2688), - [sym_real_literal] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2694), - [sym_hex_literal] = ACTIONS(2697), - [sym_bin_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2703), - [sym__backtick_identifier] = ACTIONS(2706), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2709), + [sym__expression] = STATE(4021), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_fun] = ACTIONS(2426), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_this] = ACTIONS(2434), + [anon_sym_super] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2440), + [sym_label] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_when] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2430), + [anon_sym_inner] = ACTIONS(2430), + [anon_sym_value] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2430), + [anon_sym_actual] = ACTIONS(2430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2473), + [anon_sym_continue_AT] = ACTIONS(2476), + [anon_sym_break_AT] = ACTIONS(2479), + [anon_sym_this_AT] = ACTIONS(2482), + [anon_sym_super_AT] = ACTIONS(2485), + [sym_real_literal] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2491), + [sym_hex_literal] = ACTIONS(2494), + [sym_bin_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2500), + [sym__backtick_identifier] = ACTIONS(2503), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2506), }, [340] = { - [sym__expression] = STATE(2253), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2090), - [anon_sym_fun] = ACTIONS(2712), - [anon_sym_get] = ACTIONS(2098), - [anon_sym_set] = ACTIONS(2098), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2716), - [sym_label] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2098), - [anon_sym_inner] = ACTIONS(2098), - [anon_sym_value] = ACTIONS(2098), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2098), - [anon_sym_actual] = ACTIONS(2098), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), + [sym__expression] = STATE(475), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2521), + [anon_sym_fun] = ACTIONS(2525), + [anon_sym_get] = ACTIONS(2529), + [anon_sym_set] = ACTIONS(2529), + [anon_sym_this] = ACTIONS(2533), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2539), + [sym_label] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2529), + [anon_sym_inner] = ACTIONS(2529), + [anon_sym_value] = ACTIONS(2529), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2529), + [anon_sym_actual] = ACTIONS(2529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2572), + [anon_sym_break_AT] = ACTIONS(2575), + [anon_sym_this_AT] = ACTIONS(2578), + [anon_sym_super_AT] = ACTIONS(2581), + [sym_real_literal] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2587), + [sym_hex_literal] = ACTIONS(2590), + [sym_bin_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym__backtick_identifier] = ACTIONS(2599), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2602), }, [341] = { - [sym__expression] = STATE(362), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2290), - [anon_sym_fun] = ACTIONS(2734), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2738), - [sym_label] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2298), - [anon_sym_inner] = ACTIONS(2298), - [anon_sym_value] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2298), - [anon_sym_actual] = ACTIONS(2298), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2617), + [anon_sym_fun] = ACTIONS(2621), + [anon_sym_get] = ACTIONS(2625), + [anon_sym_set] = ACTIONS(2625), + [anon_sym_this] = ACTIONS(2629), + [anon_sym_super] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2635), + [sym_label] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2625), + [anon_sym_inner] = ACTIONS(2625), + [anon_sym_value] = ACTIONS(2625), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2625), + [anon_sym_actual] = ACTIONS(2625), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2668), + [anon_sym_continue_AT] = ACTIONS(2671), + [anon_sym_break_AT] = ACTIONS(2674), + [anon_sym_this_AT] = ACTIONS(2677), + [anon_sym_super_AT] = ACTIONS(2680), + [sym_real_literal] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2686), + [sym_hex_literal] = ACTIONS(2689), + [sym_bin_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym__backtick_identifier] = ACTIONS(2698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2701), }, [342] = { - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2529), - [anon_sym_fun] = ACTIONS(2756), - [anon_sym_get] = ACTIONS(2537), - [anon_sym_set] = ACTIONS(2537), - [anon_sym_this] = ACTIONS(2541), - [anon_sym_super] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2760), - [sym_label] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_when] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2537), - [anon_sym_inner] = ACTIONS(2537), - [anon_sym_value] = ACTIONS(2537), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2537), - [anon_sym_actual] = ACTIONS(2537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2583), - [anon_sym_break_AT] = ACTIONS(2586), - [anon_sym_this_AT] = ACTIONS(2589), - [anon_sym_super_AT] = ACTIONS(2592), - [sym_real_literal] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2598), - [sym_hex_literal] = ACTIONS(2601), - [sym_bin_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2607), - [sym__backtick_identifier] = ACTIONS(2610), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2613), + [sym__expression] = STATE(2249), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2617), + [anon_sym_fun] = ACTIONS(2704), + [anon_sym_get] = ACTIONS(2625), + [anon_sym_set] = ACTIONS(2625), + [anon_sym_this] = ACTIONS(2629), + [anon_sym_super] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2708), + [sym_label] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2625), + [anon_sym_inner] = ACTIONS(2625), + [anon_sym_value] = ACTIONS(2625), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2625), + [anon_sym_actual] = ACTIONS(2625), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2668), + [anon_sym_continue_AT] = ACTIONS(2671), + [anon_sym_break_AT] = ACTIONS(2674), + [anon_sym_this_AT] = ACTIONS(2677), + [anon_sym_super_AT] = ACTIONS(2680), + [sym_real_literal] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2686), + [sym_hex_literal] = ACTIONS(2689), + [sym_bin_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym__backtick_identifier] = ACTIONS(2698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2701), }, [343] = { - [sym__expression] = STATE(4066), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2628), - [anon_sym_fun] = ACTIONS(2778), - [anon_sym_get] = ACTIONS(2636), - [anon_sym_set] = ACTIONS(2636), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_super] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2782), - [sym_label] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2797), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2636), - [anon_sym_inner] = ACTIONS(2636), - [anon_sym_value] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2636), - [anon_sym_actual] = ACTIONS(2636), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2679), - [anon_sym_break_AT] = ACTIONS(2682), - [anon_sym_this_AT] = ACTIONS(2685), - [anon_sym_super_AT] = ACTIONS(2688), - [sym_real_literal] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2694), - [sym_hex_literal] = ACTIONS(2697), - [sym_bin_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2703), - [sym__backtick_identifier] = ACTIONS(2706), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2709), + [sym__expression] = STATE(521), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2521), + [anon_sym_fun] = ACTIONS(2726), + [anon_sym_get] = ACTIONS(2529), + [anon_sym_set] = ACTIONS(2529), + [anon_sym_this] = ACTIONS(2533), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2730), + [sym_label] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2529), + [anon_sym_inner] = ACTIONS(2529), + [anon_sym_value] = ACTIONS(2529), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2529), + [anon_sym_actual] = ACTIONS(2529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2572), + [anon_sym_break_AT] = ACTIONS(2575), + [anon_sym_this_AT] = ACTIONS(2578), + [anon_sym_super_AT] = ACTIONS(2581), + [sym_real_literal] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2587), + [sym_hex_literal] = ACTIONS(2590), + [sym_bin_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym__backtick_identifier] = ACTIONS(2599), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2602), }, [344] = { - [sym__expression] = STATE(3761), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2628), - [anon_sym_fun] = ACTIONS(2800), - [anon_sym_get] = ACTIONS(2636), - [anon_sym_set] = ACTIONS(2636), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_super] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2804), - [sym_label] = ACTIONS(2807), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2636), - [anon_sym_inner] = ACTIONS(2636), - [anon_sym_value] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2636), - [anon_sym_actual] = ACTIONS(2636), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2679), - [anon_sym_break_AT] = ACTIONS(2682), - [anon_sym_this_AT] = ACTIONS(2685), - [anon_sym_super_AT] = ACTIONS(2688), - [sym_real_literal] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2694), - [sym_hex_literal] = ACTIONS(2697), - [sym_bin_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2703), - [sym__backtick_identifier] = ACTIONS(2706), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2709), + [sym__expression] = STATE(4272), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_fun] = ACTIONS(2748), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_this] = ACTIONS(2434), + [anon_sym_super] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2752), + [sym_label] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_when] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2430), + [anon_sym_inner] = ACTIONS(2430), + [anon_sym_value] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2430), + [anon_sym_actual] = ACTIONS(2430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2473), + [anon_sym_continue_AT] = ACTIONS(2476), + [anon_sym_break_AT] = ACTIONS(2479), + [anon_sym_this_AT] = ACTIONS(2482), + [anon_sym_super_AT] = ACTIONS(2485), + [sym_real_literal] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2491), + [sym_hex_literal] = ACTIONS(2494), + [sym_bin_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2500), + [sym__backtick_identifier] = ACTIONS(2503), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2506), }, [345] = { - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2290), - [anon_sym_fun] = ACTIONS(2822), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2826), - [sym_label] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2298), - [anon_sym_inner] = ACTIONS(2298), - [anon_sym_value] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2298), - [anon_sym_actual] = ACTIONS(2298), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [sym__expression] = STATE(3810), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(2770), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_this] = ACTIONS(2151), + [anon_sym_super] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2774), + [sym_label] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2147), + [anon_sym_inner] = ACTIONS(2147), + [anon_sym_value] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2147), + [anon_sym_actual] = ACTIONS(2147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2193), + [anon_sym_break_AT] = ACTIONS(2196), + [anon_sym_this_AT] = ACTIONS(2199), + [anon_sym_super_AT] = ACTIONS(2202), + [sym_real_literal] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2208), + [sym_hex_literal] = ACTIONS(2211), + [sym_bin_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2217), + [sym__backtick_identifier] = ACTIONS(2220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2223), }, [346] = { - [sym__expression] = STATE(3286), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(3295), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2408), - [anon_sym_fun] = ACTIONS(2844), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2848), - [sym_label] = ACTIONS(2851), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2857), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2416), - [anon_sym_inner] = ACTIONS(2416), - [anon_sym_value] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2416), - [anon_sym_actual] = ACTIONS(2416), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_fun] = ACTIONS(2792), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_this] = ACTIONS(2434), + [anon_sym_super] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2796), + [sym_label] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2802), + [anon_sym_when] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2430), + [anon_sym_inner] = ACTIONS(2430), + [anon_sym_value] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2430), + [anon_sym_actual] = ACTIONS(2430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2473), + [anon_sym_continue_AT] = ACTIONS(2476), + [anon_sym_break_AT] = ACTIONS(2479), + [anon_sym_this_AT] = ACTIONS(2482), + [anon_sym_super_AT] = ACTIONS(2485), + [sym_real_literal] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2491), + [sym_hex_literal] = ACTIONS(2494), + [sym_bin_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2500), + [sym__backtick_identifier] = ACTIONS(2503), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2506), }, [347] = { - [sym__expression] = STATE(1415), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2191), - [anon_sym_fun] = ACTIONS(2866), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2870), - [sym_label] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2879), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2199), - [anon_sym_inner] = ACTIONS(2199), - [anon_sym_value] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2199), - [anon_sym_actual] = ACTIONS(2199), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), + [sym__expression] = STATE(4077), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2139), + [anon_sym_fun] = ACTIONS(2814), + [anon_sym_get] = ACTIONS(2147), + [anon_sym_set] = ACTIONS(2147), + [anon_sym_this] = ACTIONS(2151), + [anon_sym_super] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2818), + [sym_label] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2827), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2147), + [anon_sym_inner] = ACTIONS(2147), + [anon_sym_value] = ACTIONS(2147), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2147), + [anon_sym_actual] = ACTIONS(2147), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2193), + [anon_sym_break_AT] = ACTIONS(2196), + [anon_sym_this_AT] = ACTIONS(2199), + [anon_sym_super_AT] = ACTIONS(2202), + [sym_real_literal] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2208), + [sym_hex_literal] = ACTIONS(2211), + [sym_bin_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2217), + [sym__backtick_identifier] = ACTIONS(2220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2223), }, [348] = { - [sym__expression] = STATE(2250), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2529), - [anon_sym_fun] = ACTIONS(2888), - [anon_sym_get] = ACTIONS(2537), - [anon_sym_set] = ACTIONS(2537), - [anon_sym_this] = ACTIONS(2541), - [anon_sym_super] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2892), - [sym_label] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_when] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2537), - [anon_sym_inner] = ACTIONS(2537), - [anon_sym_value] = ACTIONS(2537), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2537), - [anon_sym_actual] = ACTIONS(2537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2583), - [anon_sym_break_AT] = ACTIONS(2586), - [anon_sym_this_AT] = ACTIONS(2589), - [anon_sym_super_AT] = ACTIONS(2592), - [sym_real_literal] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2598), - [sym_hex_literal] = ACTIONS(2601), - [sym_bin_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2607), - [sym__backtick_identifier] = ACTIONS(2610), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2613), + [sym__expression] = STATE(1803), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_fun] = ACTIONS(2836), + [anon_sym_get] = ACTIONS(2312), + [anon_sym_set] = ACTIONS(2312), + [anon_sym_this] = ACTIONS(2316), + [anon_sym_super] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2840), + [sym_label] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_when] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2312), + [anon_sym_inner] = ACTIONS(2312), + [anon_sym_value] = ACTIONS(2312), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2312), + [anon_sym_actual] = ACTIONS(2312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2355), + [anon_sym_break_AT] = ACTIONS(2358), + [anon_sym_this_AT] = ACTIONS(2361), + [anon_sym_super_AT] = ACTIONS(2364), + [sym_real_literal] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2370), + [sym_hex_literal] = ACTIONS(2373), + [sym_bin_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym__backtick_identifier] = ACTIONS(2382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2385), }, [349] = { - [sym__expression] = STATE(4289), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2628), - [anon_sym_fun] = ACTIONS(2910), - [anon_sym_get] = ACTIONS(2636), - [anon_sym_set] = ACTIONS(2636), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_super] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2914), - [sym_label] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2636), - [anon_sym_inner] = ACTIONS(2636), - [anon_sym_value] = ACTIONS(2636), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2636), - [anon_sym_actual] = ACTIONS(2636), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2679), - [anon_sym_break_AT] = ACTIONS(2682), - [anon_sym_this_AT] = ACTIONS(2685), - [anon_sym_super_AT] = ACTIONS(2688), - [sym_real_literal] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2694), - [sym_hex_literal] = ACTIONS(2697), - [sym_bin_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2703), - [sym__backtick_identifier] = ACTIONS(2706), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2709), + [sym__expression] = STATE(2492), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2617), + [anon_sym_fun] = ACTIONS(2858), + [anon_sym_get] = ACTIONS(2625), + [anon_sym_set] = ACTIONS(2625), + [anon_sym_this] = ACTIONS(2629), + [anon_sym_super] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2862), + [sym_label] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2625), + [anon_sym_inner] = ACTIONS(2625), + [anon_sym_value] = ACTIONS(2625), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2625), + [anon_sym_actual] = ACTIONS(2625), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2668), + [anon_sym_continue_AT] = ACTIONS(2671), + [anon_sym_break_AT] = ACTIONS(2674), + [anon_sym_this_AT] = ACTIONS(2677), + [anon_sym_super_AT] = ACTIONS(2680), + [sym_real_literal] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2686), + [sym_hex_literal] = ACTIONS(2689), + [sym_bin_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym__backtick_identifier] = ACTIONS(2698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2701), }, [350] = { - [sym__expression] = STATE(4003), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2408), - [anon_sym_fun] = ACTIONS(2932), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2936), - [sym_label] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2948), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2416), - [anon_sym_inner] = ACTIONS(2416), - [anon_sym_value] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2416), - [anon_sym_actual] = ACTIONS(2416), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_fun] = ACTIONS(2880), + [anon_sym_get] = ACTIONS(2312), + [anon_sym_set] = ACTIONS(2312), + [anon_sym_this] = ACTIONS(2316), + [anon_sym_super] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2884), + [sym_label] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_when] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2312), + [anon_sym_inner] = ACTIONS(2312), + [anon_sym_value] = ACTIONS(2312), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2312), + [anon_sym_actual] = ACTIONS(2312), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2355), + [anon_sym_break_AT] = ACTIONS(2358), + [anon_sym_this_AT] = ACTIONS(2361), + [anon_sym_super_AT] = ACTIONS(2364), + [sym_real_literal] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2370), + [sym_hex_literal] = ACTIONS(2373), + [sym_bin_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym__backtick_identifier] = ACTIONS(2382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2385), }, [351] = { - [sym__expression] = STATE(2054), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), + [sym__expression] = STATE(1800), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2090), - [anon_sym_fun] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2098), - [anon_sym_set] = ACTIONS(2098), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2958), - [sym_label] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2098), - [anon_sym_inner] = ACTIONS(2098), - [anon_sym_value] = ACTIONS(2098), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2098), - [anon_sym_actual] = ACTIONS(2098), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2617), + [anon_sym_fun] = ACTIONS(2902), + [anon_sym_get] = ACTIONS(2625), + [anon_sym_set] = ACTIONS(2625), + [anon_sym_this] = ACTIONS(2629), + [anon_sym_super] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2906), + [sym_label] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2625), + [anon_sym_inner] = ACTIONS(2625), + [anon_sym_value] = ACTIONS(2625), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2625), + [anon_sym_actual] = ACTIONS(2625), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2668), + [anon_sym_continue_AT] = ACTIONS(2671), + [anon_sym_break_AT] = ACTIONS(2674), + [anon_sym_this_AT] = ACTIONS(2677), + [anon_sym_super_AT] = ACTIONS(2680), + [sym_real_literal] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2686), + [sym_hex_literal] = ACTIONS(2689), + [sym_bin_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym__backtick_identifier] = ACTIONS(2698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2701), }, [352] = { - [sym__expression] = STATE(475), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2290), - [anon_sym_fun] = ACTIONS(2976), - [anon_sym_get] = ACTIONS(2298), - [anon_sym_set] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2980), - [sym_label] = ACTIONS(2983), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2298), - [anon_sym_inner] = ACTIONS(2298), - [anon_sym_value] = ACTIONS(2298), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2298), - [anon_sym_actual] = ACTIONS(2298), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [sym__expression] = STATE(4115), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2422), + [anon_sym_fun] = ACTIONS(2924), + [anon_sym_get] = ACTIONS(2430), + [anon_sym_set] = ACTIONS(2430), + [anon_sym_this] = ACTIONS(2434), + [anon_sym_super] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2928), + [sym_label] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_when] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2430), + [anon_sym_inner] = ACTIONS(2430), + [anon_sym_value] = ACTIONS(2430), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2430), + [anon_sym_actual] = ACTIONS(2430), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2473), + [anon_sym_continue_AT] = ACTIONS(2476), + [anon_sym_break_AT] = ACTIONS(2479), + [anon_sym_this_AT] = ACTIONS(2482), + [anon_sym_super_AT] = ACTIONS(2485), + [sym_real_literal] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2491), + [sym_hex_literal] = ACTIONS(2494), + [sym_bin_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2500), + [sym__backtick_identifier] = ACTIONS(2503), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2506), }, [353] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2408), - [anon_sym_fun] = ACTIONS(2998), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(3002), - [sym_label] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2416), - [anon_sym_inner] = ACTIONS(2416), - [anon_sym_value] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2416), - [anon_sym_actual] = ACTIONS(2416), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [sym__expression] = STATE(373), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2521), + [anon_sym_fun] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2529), + [anon_sym_set] = ACTIONS(2529), + [anon_sym_this] = ACTIONS(2533), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2950), + [sym_label] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_throw] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2529), + [anon_sym_inner] = ACTIONS(2529), + [anon_sym_value] = ACTIONS(2529), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2529), + [anon_sym_actual] = ACTIONS(2529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2572), + [anon_sym_break_AT] = ACTIONS(2575), + [anon_sym_this_AT] = ACTIONS(2578), + [anon_sym_super_AT] = ACTIONS(2581), + [sym_real_literal] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2587), + [sym_hex_literal] = ACTIONS(2590), + [sym_bin_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym__backtick_identifier] = ACTIONS(2599), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2602), }, [354] = { - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2090), - [anon_sym_fun] = ACTIONS(3020), - [anon_sym_get] = ACTIONS(2098), - [anon_sym_set] = ACTIONS(2098), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(3024), - [sym_label] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2098), - [anon_sym_inner] = ACTIONS(2098), - [anon_sym_value] = ACTIONS(2098), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2098), - [anon_sym_actual] = ACTIONS(2098), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2521), + [anon_sym_fun] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2529), + [anon_sym_set] = ACTIONS(2529), + [anon_sym_this] = ACTIONS(2533), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2972), + [sym_label] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2529), + [anon_sym_inner] = ACTIONS(2529), + [anon_sym_value] = ACTIONS(2529), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2529), + [anon_sym_actual] = ACTIONS(2529), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2572), + [anon_sym_break_AT] = ACTIONS(2575), + [anon_sym_this_AT] = ACTIONS(2578), + [anon_sym_super_AT] = ACTIONS(2581), + [sym_real_literal] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2587), + [sym_hex_literal] = ACTIONS(2590), + [sym_bin_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym__backtick_identifier] = ACTIONS(2599), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2602), }, [355] = { - [sym__expression] = STATE(2110), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_typealias] = ACTIONS(2082), - [anon_sym_class] = ACTIONS(2082), - [anon_sym_interface] = ACTIONS(2082), - [anon_sym_enum] = ACTIONS(2082), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_val] = ACTIONS(2082), - [anon_sym_var] = ACTIONS(2082), - [anon_sym_object] = ACTIONS(2529), - [anon_sym_fun] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(2537), - [anon_sym_set] = ACTIONS(2537), - [anon_sym_this] = ACTIONS(2541), - [anon_sym_super] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(3046), - [sym_label] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_suspend] = ACTIONS(2082), - [anon_sym_sealed] = ACTIONS(2082), - [anon_sym_annotation] = ACTIONS(2082), - [anon_sym_data] = ACTIONS(2537), - [anon_sym_inner] = ACTIONS(2537), - [anon_sym_value] = ACTIONS(2537), - [anon_sym_override] = ACTIONS(2082), - [anon_sym_lateinit] = ACTIONS(2082), - [anon_sym_public] = ACTIONS(2082), - [anon_sym_private] = ACTIONS(2082), - [anon_sym_internal] = ACTIONS(2082), - [anon_sym_protected] = ACTIONS(2082), - [anon_sym_tailrec] = ACTIONS(2082), - [anon_sym_operator] = ACTIONS(2082), - [anon_sym_infix] = ACTIONS(2082), - [anon_sym_inline] = ACTIONS(2082), - [anon_sym_external] = ACTIONS(2082), - [sym_property_modifier] = ACTIONS(2082), - [anon_sym_abstract] = ACTIONS(2082), - [anon_sym_final] = ACTIONS(2082), - [anon_sym_open] = ACTIONS(2082), - [anon_sym_vararg] = ACTIONS(2082), - [anon_sym_noinline] = ACTIONS(2082), - [anon_sym_crossinline] = ACTIONS(2082), - [anon_sym_expect] = ACTIONS(2537), - [anon_sym_actual] = ACTIONS(2537), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2583), - [anon_sym_break_AT] = ACTIONS(2586), - [anon_sym_this_AT] = ACTIONS(2589), - [anon_sym_super_AT] = ACTIONS(2592), - [sym_real_literal] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2598), - [sym_hex_literal] = ACTIONS(2601), - [sym_bin_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2607), - [sym__backtick_identifier] = ACTIONS(2610), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2613), + [sym__expression] = STATE(2587), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(2020), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_typealias] = ACTIONS(2030), + [anon_sym_class] = ACTIONS(2030), + [anon_sym_interface] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_val] = ACTIONS(2030), + [anon_sym_var] = ACTIONS(2030), + [anon_sym_object] = ACTIONS(2038), + [anon_sym_fun] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2046), + [anon_sym_set] = ACTIONS(2046), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_super] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2994), + [sym_label] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_when] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(3003), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_suspend] = ACTIONS(2030), + [anon_sym_sealed] = ACTIONS(2030), + [anon_sym_annotation] = ACTIONS(2030), + [anon_sym_data] = ACTIONS(2046), + [anon_sym_inner] = ACTIONS(2046), + [anon_sym_value] = ACTIONS(2046), + [anon_sym_override] = ACTIONS(2030), + [anon_sym_lateinit] = ACTIONS(2030), + [anon_sym_public] = ACTIONS(2030), + [anon_sym_private] = ACTIONS(2030), + [anon_sym_internal] = ACTIONS(2030), + [anon_sym_protected] = ACTIONS(2030), + [anon_sym_tailrec] = ACTIONS(2030), + [anon_sym_operator] = ACTIONS(2030), + [anon_sym_infix] = ACTIONS(2030), + [anon_sym_inline] = ACTIONS(2030), + [anon_sym_external] = ACTIONS(2030), + [sym_property_modifier] = ACTIONS(2030), + [anon_sym_abstract] = ACTIONS(2030), + [anon_sym_final] = ACTIONS(2030), + [anon_sym_open] = ACTIONS(2030), + [anon_sym_vararg] = ACTIONS(2030), + [anon_sym_noinline] = ACTIONS(2030), + [anon_sym_crossinline] = ACTIONS(2030), + [anon_sym_expect] = ACTIONS(2046), + [anon_sym_actual] = ACTIONS(2046), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2094), + [anon_sym_break_AT] = ACTIONS(2097), + [anon_sym_this_AT] = ACTIONS(2100), + [anon_sym_super_AT] = ACTIONS(2103), + [sym_real_literal] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2109), + [sym_hex_literal] = ACTIONS(2112), + [sym_bin_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2118), + [sym__backtick_identifier] = ACTIONS(2121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2124), }, [356] = { - [sym__expression] = STATE(2113), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), + [sym__expression] = STATE(4231), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [357] = { - [sym__expression] = STATE(4253), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1578), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_else] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_else] = ACTIONS(1580), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(905), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -87139,1470 +87278,2752 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(107), [anon_sym_SQUOTE] = ACTIONS(109), [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, + [357] = { + [sym__expression] = STATE(1736), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(875), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, [358] = { - [sym__expression] = STATE(4258), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4264), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(177), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(333), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [359] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(69), + [anon_sym_DASH] = ACTIONS(69), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(71), + [anon_sym_DASH_DASH] = ACTIONS(71), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [360] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_super] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_when] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3096), - [anon_sym_continue_AT] = ACTIONS(3096), - [anon_sym_break_AT] = ACTIONS(3096), - [anon_sym_this_AT] = ACTIONS(3096), - [anon_sym_super_AT] = ACTIONS(3096), - [sym_real_literal] = ACTIONS(3096), - [sym_integer_literal] = ACTIONS(3094), - [sym_hex_literal] = ACTIONS(3096), - [sym_bin_literal] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3096), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_object] = ACTIONS(3044), + [anon_sym_fun] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [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(1712), + [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(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3046), + [anon_sym_continue_AT] = ACTIONS(3046), + [anon_sym_break_AT] = ACTIONS(3046), + [anon_sym_this_AT] = ACTIONS(3046), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3046), }, [361] = { - [sym__expression] = STATE(2295), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1053), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_object] = ACTIONS(3050), + [anon_sym_fun] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_super] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_when] = ACTIONS(3050), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3052), + [anon_sym_continue_AT] = ACTIONS(3052), + [anon_sym_break_AT] = ACTIONS(3052), + [anon_sym_this_AT] = ACTIONS(3052), + [anon_sym_super_AT] = ACTIONS(3052), + [sym_real_literal] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [sym_hex_literal] = ACTIONS(3052), + [sym_bin_literal] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3052), }, [362] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_fun] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_super] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3108), - [anon_sym_DASH_EQ] = ACTIONS(3108), - [anon_sym_STAR_EQ] = ACTIONS(3108), - [anon_sym_SLASH_EQ] = ACTIONS(3108), - [anon_sym_PERCENT_EQ] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [anon_sym_this_AT] = ACTIONS(3108), - [anon_sym_super_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3106), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_fun] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_super] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_when] = ACTIONS(3057), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3059), + [anon_sym_continue_AT] = ACTIONS(3059), + [anon_sym_break_AT] = ACTIONS(3059), + [anon_sym_this_AT] = ACTIONS(3059), + [anon_sym_super_AT] = ACTIONS(3059), + [sym_real_literal] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(3057), + [sym_hex_literal] = ACTIONS(3059), + [sym_bin_literal] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3059), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3059), }, [363] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_object] = ACTIONS(3110), - [anon_sym_fun] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_super] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_when] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3112), - [anon_sym_continue_AT] = ACTIONS(3112), - [anon_sym_break_AT] = ACTIONS(3112), - [anon_sym_this_AT] = ACTIONS(3112), - [anon_sym_super_AT] = ACTIONS(3112), - [sym_real_literal] = ACTIONS(3112), - [sym_integer_literal] = ACTIONS(3110), - [sym_hex_literal] = ACTIONS(3112), - [sym_bin_literal] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3112), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3061), + [anon_sym_object] = ACTIONS(3061), + [anon_sym_fun] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3061), + [anon_sym_super] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_when] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3063), + [anon_sym_DASH_EQ] = ACTIONS(3063), + [anon_sym_STAR_EQ] = ACTIONS(3063), + [anon_sym_SLASH_EQ] = ACTIONS(3063), + [anon_sym_PERCENT_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3063), + [anon_sym_continue_AT] = ACTIONS(3063), + [anon_sym_break_AT] = ACTIONS(3063), + [anon_sym_this_AT] = ACTIONS(3063), + [anon_sym_super_AT] = ACTIONS(3063), + [sym_real_literal] = ACTIONS(3063), + [sym_integer_literal] = ACTIONS(3061), + [sym_hex_literal] = ACTIONS(3063), + [sym_bin_literal] = ACTIONS(3063), + [anon_sym_true] = ACTIONS(3061), + [anon_sym_false] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3063), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3063), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3063), }, [364] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), }, [365] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_fun] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3121), - [anon_sym_super] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_when] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3123), - [anon_sym_continue_AT] = ACTIONS(3123), - [anon_sym_break_AT] = ACTIONS(3123), - [anon_sym_this_AT] = ACTIONS(3123), - [anon_sym_super_AT] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3123), - [sym_integer_literal] = ACTIONS(3121), - [sym_hex_literal] = ACTIONS(3123), - [sym_bin_literal] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3123), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3123), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_object] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3072), + [anon_sym_super] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_when] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_throw] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3074), + [anon_sym_DASH_EQ] = ACTIONS(3074), + [anon_sym_STAR_EQ] = ACTIONS(3074), + [anon_sym_SLASH_EQ] = ACTIONS(3074), + [anon_sym_PERCENT_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3072), + [anon_sym_sealed] = ACTIONS(3072), + [anon_sym_annotation] = ACTIONS(3072), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3072), + [anon_sym_lateinit] = ACTIONS(3072), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_internal] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_tailrec] = ACTIONS(3072), + [anon_sym_operator] = ACTIONS(3072), + [anon_sym_infix] = ACTIONS(3072), + [anon_sym_inline] = ACTIONS(3072), + [anon_sym_external] = ACTIONS(3072), + [sym_property_modifier] = ACTIONS(3072), + [anon_sym_abstract] = ACTIONS(3072), + [anon_sym_final] = ACTIONS(3072), + [anon_sym_open] = ACTIONS(3072), + [anon_sym_vararg] = ACTIONS(3072), + [anon_sym_noinline] = ACTIONS(3072), + [anon_sym_crossinline] = ACTIONS(3072), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3074), + [anon_sym_continue_AT] = ACTIONS(3074), + [anon_sym_break_AT] = ACTIONS(3074), + [anon_sym_this_AT] = ACTIONS(3074), + [anon_sym_super_AT] = ACTIONS(3074), + [sym_real_literal] = ACTIONS(3074), + [sym_integer_literal] = ACTIONS(3072), + [sym_hex_literal] = ACTIONS(3074), + [sym_bin_literal] = ACTIONS(3074), + [anon_sym_true] = ACTIONS(3072), + [anon_sym_false] = ACTIONS(3072), + [anon_sym_SQUOTE] = ACTIONS(3074), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3074), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3074), }, [366] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_fun] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_null] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_when] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3127), - [anon_sym_continue_AT] = ACTIONS(3127), - [anon_sym_break_AT] = ACTIONS(3127), - [anon_sym_this_AT] = ACTIONS(3127), - [anon_sym_super_AT] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3127), - [sym_integer_literal] = ACTIONS(3125), - [sym_hex_literal] = ACTIONS(3127), - [sym_bin_literal] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3127), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3076), + [anon_sym_super] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_when] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3078), + [anon_sym_continue_AT] = ACTIONS(3078), + [anon_sym_break_AT] = ACTIONS(3078), + [anon_sym_this_AT] = ACTIONS(3078), + [anon_sym_super_AT] = ACTIONS(3078), + [sym_real_literal] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(3076), + [sym_hex_literal] = ACTIONS(3078), + [sym_bin_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3078), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3078), }, [367] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_fun] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_super] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3131), - [anon_sym_continue_AT] = ACTIONS(3131), - [anon_sym_break_AT] = ACTIONS(3131), - [anon_sym_this_AT] = ACTIONS(3131), - [anon_sym_super_AT] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_hex_literal] = ACTIONS(3131), - [sym_bin_literal] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3131), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3080), + [anon_sym_super] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_when] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3082), + [anon_sym_continue_AT] = ACTIONS(3082), + [anon_sym_break_AT] = ACTIONS(3082), + [anon_sym_this_AT] = ACTIONS(3082), + [anon_sym_super_AT] = ACTIONS(3082), + [sym_real_literal] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(3080), + [sym_hex_literal] = ACTIONS(3082), + [sym_bin_literal] = ACTIONS(3082), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3082), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3082), }, [368] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3133), - [anon_sym_super] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_when] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_throw] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3135), - [anon_sym_continue_AT] = ACTIONS(3135), - [anon_sym_break_AT] = ACTIONS(3135), - [anon_sym_this_AT] = ACTIONS(3135), - [anon_sym_super_AT] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3135), - [sym_integer_literal] = ACTIONS(3133), - [sym_hex_literal] = ACTIONS(3135), - [sym_bin_literal] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3135), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3135), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), }, [369] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), + [sym__expression] = STATE(2305), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1093), + [anon_sym_DASH] = ACTIONS(1093), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1578), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [370] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [371] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_fun] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3100), + [anon_sym_super] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_null] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_when] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3102), + [anon_sym_continue_AT] = ACTIONS(3102), + [anon_sym_break_AT] = ACTIONS(3102), + [anon_sym_this_AT] = ACTIONS(3102), + [anon_sym_super_AT] = ACTIONS(3102), + [sym_real_literal] = ACTIONS(3102), + [sym_integer_literal] = ACTIONS(3100), + [sym_hex_literal] = ACTIONS(3102), + [sym_bin_literal] = ACTIONS(3102), + [anon_sym_true] = ACTIONS(3100), + [anon_sym_false] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3102), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3102), + }, + [372] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [373] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_fun] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_super] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3113), + [anon_sym_continue_AT] = ACTIONS(3113), + [anon_sym_break_AT] = ACTIONS(3113), + [anon_sym_this_AT] = ACTIONS(3113), + [anon_sym_super_AT] = ACTIONS(3113), + [sym_real_literal] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_hex_literal] = ACTIONS(3113), + [sym_bin_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3113), + }, + [374] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_object] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3115), + [anon_sym_super] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_when] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3117), + [anon_sym_continue_AT] = ACTIONS(3117), + [anon_sym_break_AT] = ACTIONS(3117), + [anon_sym_this_AT] = ACTIONS(3117), + [anon_sym_super_AT] = ACTIONS(3117), + [sym_real_literal] = ACTIONS(3117), + [sym_integer_literal] = ACTIONS(3115), + [sym_hex_literal] = ACTIONS(3117), + [sym_bin_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(3115), + [anon_sym_false] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3117), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3117), + }, + [375] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_object] = ACTIONS(3122), + [anon_sym_fun] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_super] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [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(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [anon_sym_this_AT] = ACTIONS(3124), + [anon_sym_super_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [376] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_fun] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_super] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(1710), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3128), + [anon_sym_continue_AT] = ACTIONS(3128), + [anon_sym_break_AT] = ACTIONS(3128), + [anon_sym_this_AT] = ACTIONS(3128), + [anon_sym_super_AT] = ACTIONS(3128), + [sym_real_literal] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_hex_literal] = ACTIONS(3128), + [sym_bin_literal] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3128), + }, + [377] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_fun] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_super] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_when] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3132), + [anon_sym_continue_AT] = ACTIONS(3132), + [anon_sym_break_AT] = ACTIONS(3132), + [anon_sym_this_AT] = ACTIONS(3132), + [anon_sym_super_AT] = ACTIONS(3132), + [sym_real_literal] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(3130), + [sym_hex_literal] = ACTIONS(3132), + [sym_bin_literal] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3132), + }, + [378] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1606), [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1686), [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1690), [anon_sym_where] = ACTIONS(3137), [anon_sym_object] = ACTIONS(3137), [anon_sym_fun] = ACTIONS(3137), [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), [anon_sym_this] = ACTIONS(3137), [anon_sym_super] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1702), + [anon_sym_DOT_DOT] = ACTIONS(1704), + [anon_sym_QMARK_COLON] = ACTIONS(1706), + [anon_sym_AMP_AMP] = ACTIONS(1708), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), [anon_sym_null] = ACTIONS(3137), [anon_sym_if] = ACTIONS(3137), [anon_sym_else] = ACTIONS(3137), @@ -88612,36 +90033,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3137), [anon_sym_continue] = ACTIONS(3137), [anon_sym_break] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1712), [anon_sym_PLUS_EQ] = ACTIONS(3139), [anon_sym_DASH_EQ] = ACTIONS(3139), [anon_sym_STAR_EQ] = ACTIONS(3139), [anon_sym_SLASH_EQ] = ACTIONS(3139), [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_BANG_EQ] = ACTIONS(1714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1716), + [anon_sym_EQ_EQ] = ACTIONS(1714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1716), + [anon_sym_LT_EQ] = ACTIONS(1718), + [anon_sym_GT_EQ] = ACTIONS(1718), + [anon_sym_BANGin] = ACTIONS(1720), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1726), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(3137), [anon_sym_sealed] = ACTIONS(3137), [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), [anon_sym_override] = ACTIONS(3137), [anon_sym_lateinit] = ACTIONS(3137), [anon_sym_public] = ACTIONS(3137), @@ -88660,8 +90081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3137), [anon_sym_noinline] = ACTIONS(3137), [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3139), [anon_sym_continue_AT] = ACTIONS(3139), @@ -88675,44 +90096,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(3137), [anon_sym_false] = ACTIONS(3137), [anon_sym_SQUOTE] = ACTIONS(3139), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1712), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3139), }, - [370] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), + [379] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1753), + [sym__comparison_operator] = STATE(1770), + [sym__in_operator] = STATE(1784), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1786), + [sym__multiplicative_operator] = STATE(1788), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1790), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1606), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1686), [anon_sym_COMMA] = ACTIONS(3143), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), @@ -88724,8 +90145,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(3141), [anon_sym_this] = ACTIONS(3141), [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1698), + [sym_label] = ACTIONS(1700), [anon_sym_in] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), @@ -88740,7 +90161,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3141), [anon_sym_continue] = ACTIONS(3141), [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1712), [anon_sym_PLUS_EQ] = ACTIONS(3143), [anon_sym_DASH_EQ] = ACTIONS(3143), [anon_sym_STAR_EQ] = ACTIONS(3143), @@ -88757,13 +90178,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1698), + [anon_sym_PERCENT] = ACTIONS(1698), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(3141), [anon_sym_sealed] = ACTIONS(3141), [anon_sym_annotation] = ACTIONS(3141), @@ -88805,60 +90226,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3143), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1712), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3143), }, - [371] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), + [380] = { + [sym_primary_constructor] = STATE(2835), + [sym_class_body] = STATE(3183), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(410), + [sym_type_constraints] = STATE(2979), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3164), [anon_sym_object] = ACTIONS(3148), [anon_sym_fun] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), [anon_sym_this] = ACTIONS(3148), [anon_sym_super] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), @@ -88868,184 +90287,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3148), [anon_sym_continue] = ACTIONS(3148), [anon_sym_break] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [anon_sym_this_AT] = ACTIONS(3150), - [anon_sym_super_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3148), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3148), - [anon_sym_false] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), - }, - [372] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_fun] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3152), - [anon_sym_super] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_when] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3154), [anon_sym_PLUS_EQ] = ACTIONS(3154), [anon_sym_DASH_EQ] = ACTIONS(3154), [anon_sym_STAR_EQ] = ACTIONS(3154), [anon_sym_SLASH_EQ] = ACTIONS(3154), [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3148), [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3148), [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), [anon_sym_LT_EQ] = ACTIONS(3154), [anon_sym_GT_EQ] = ACTIONS(3154), [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3148), [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3154), [anon_sym_continue_AT] = ACTIONS(3154), @@ -89053,1651 +90344,1259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(3154), [anon_sym_super_AT] = ACTIONS(3154), [sym_real_literal] = ACTIONS(3154), - [sym_integer_literal] = ACTIONS(3152), + [sym_integer_literal] = ACTIONS(3148), [sym_hex_literal] = ACTIONS(3154), [sym_bin_literal] = ACTIONS(3154), - [anon_sym_true] = ACTIONS(3152), - [anon_sym_false] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3154), }, - [373] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_object] = ACTIONS(3159), - [anon_sym_fun] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_super] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_null] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3161), - [anon_sym_continue_AT] = ACTIONS(3161), - [anon_sym_break_AT] = ACTIONS(3161), - [anon_sym_this_AT] = ACTIONS(3161), - [anon_sym_super_AT] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_hex_literal] = ACTIONS(3161), - [sym_bin_literal] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3161), + [381] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_object] = ACTIONS(3050), + [anon_sym_fun] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_super] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_when] = ACTIONS(3050), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3052), + [anon_sym_continue_AT] = ACTIONS(3052), + [anon_sym_break_AT] = ACTIONS(3052), + [anon_sym_this_AT] = ACTIONS(3052), + [anon_sym_super_AT] = ACTIONS(3052), + [sym_real_literal] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [sym_hex_literal] = ACTIONS(3052), + [sym_bin_literal] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3052), }, - [374] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_fun] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_super] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_when] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [382] = { + [sym_primary_constructor] = STATE(852), + [sym_class_body] = STATE(1086), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(409), + [sym_type_constraints] = STATE(933), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(3186), [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), [anon_sym_tailrec] = ACTIONS(3166), [anon_sym_operator] = ACTIONS(3166), [anon_sym_infix] = ACTIONS(3166), [anon_sym_inline] = ACTIONS(3166), [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [anon_sym_this_AT] = ACTIONS(3168), - [anon_sym_super_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3166), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3186), + [anon_sym_continue_AT] = ACTIONS(3186), + [anon_sym_break_AT] = ACTIONS(3186), + [anon_sym_this_AT] = ACTIONS(3186), + [anon_sym_super_AT] = ACTIONS(3186), + [sym_real_literal] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3186), + [sym_bin_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3186), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3186), }, - [375] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_super] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3175), - [anon_sym_continue_AT] = ACTIONS(3175), - [anon_sym_break_AT] = ACTIONS(3175), - [anon_sym_this_AT] = ACTIONS(3175), - [anon_sym_super_AT] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_hex_literal] = ACTIONS(3175), - [sym_bin_literal] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3175), + [383] = { + [sym_primary_constructor] = STATE(828), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(412), + [sym_type_constraints] = STATE(956), + [sym_enum_class_body] = STATE(1180), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = 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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [anon_sym_this_AT] = ACTIONS(3200), + [anon_sym_super_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), }, - [376] = { - [sym__expression] = STATE(4302), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), + [384] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(1712), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(3098), }, - [377] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3185), - [anon_sym_super] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_when] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3187), - [anon_sym_DASH_EQ] = ACTIONS(3187), - [anon_sym_STAR_EQ] = ACTIONS(3187), - [anon_sym_SLASH_EQ] = ACTIONS(3187), - [anon_sym_PERCENT_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3185), - [anon_sym_sealed] = ACTIONS(3185), - [anon_sym_annotation] = ACTIONS(3185), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_lateinit] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_internal] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_tailrec] = ACTIONS(3185), - [anon_sym_operator] = ACTIONS(3185), - [anon_sym_infix] = ACTIONS(3185), - [anon_sym_inline] = ACTIONS(3185), - [anon_sym_external] = ACTIONS(3185), - [sym_property_modifier] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_final] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_vararg] = ACTIONS(3185), - [anon_sym_noinline] = ACTIONS(3185), - [anon_sym_crossinline] = ACTIONS(3185), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3187), - [anon_sym_continue_AT] = ACTIONS(3187), - [anon_sym_break_AT] = ACTIONS(3187), - [anon_sym_this_AT] = ACTIONS(3187), - [anon_sym_super_AT] = ACTIONS(3187), - [sym_real_literal] = ACTIONS(3187), - [sym_integer_literal] = ACTIONS(3185), - [sym_hex_literal] = ACTIONS(3187), - [sym_bin_literal] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3187), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3187), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3187), + [385] = { + [sym_primary_constructor] = STATE(2841), + [sym_class_body] = STATE(3140), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(414), + [sym_type_constraints] = STATE(3024), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3186), + [anon_sym_continue_AT] = ACTIONS(3186), + [anon_sym_break_AT] = ACTIONS(3186), + [anon_sym_this_AT] = ACTIONS(3186), + [anon_sym_super_AT] = ACTIONS(3186), + [sym_real_literal] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3186), + [sym_bin_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3186), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3186), }, - [378] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1742), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1754), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_QMARK_COLON] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1760), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1768), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_BANGin] = ACTIONS(1772), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), + [386] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_fun] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_super] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_when] = ACTIONS(3057), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3059), + [anon_sym_continue_AT] = ACTIONS(3059), + [anon_sym_break_AT] = ACTIONS(3059), + [anon_sym_this_AT] = ACTIONS(3059), + [anon_sym_super_AT] = ACTIONS(3059), + [sym_real_literal] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(3057), + [sym_hex_literal] = ACTIONS(3059), + [sym_bin_literal] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3059), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3059), }, - [379] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1931), - [sym__comparison_operator] = STATE(1920), - [sym__in_operator] = STATE(1919), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1917), - [sym__multiplicative_operator] = STATE(1916), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1915), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_fun] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3193), - [anon_sym_super] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(1750), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3195), - [anon_sym_continue_AT] = ACTIONS(3195), - [anon_sym_break_AT] = ACTIONS(3195), - [anon_sym_this_AT] = ACTIONS(3195), - [anon_sym_super_AT] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_hex_literal] = ACTIONS(3195), - [sym_bin_literal] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3195), + [387] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_fun] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_super] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3113), + [anon_sym_continue_AT] = ACTIONS(3113), + [anon_sym_break_AT] = ACTIONS(3113), + [anon_sym_this_AT] = ACTIONS(3113), + [anon_sym_super_AT] = ACTIONS(3113), + [sym_real_literal] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_hex_literal] = ACTIONS(3113), + [sym_bin_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3113), }, - [380] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_super] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_when] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3096), - [anon_sym_continue_AT] = ACTIONS(3096), - [anon_sym_break_AT] = ACTIONS(3096), - [anon_sym_this_AT] = ACTIONS(3096), - [anon_sym_super_AT] = ACTIONS(3096), - [sym_real_literal] = ACTIONS(3096), - [sym_integer_literal] = ACTIONS(3094), - [sym_hex_literal] = ACTIONS(3096), - [sym_bin_literal] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3096), + [388] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_fun] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_super] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_when] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3132), + [anon_sym_continue_AT] = ACTIONS(3132), + [anon_sym_break_AT] = ACTIONS(3132), + [anon_sym_this_AT] = ACTIONS(3132), + [anon_sym_super_AT] = ACTIONS(3132), + [sym_real_literal] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(3130), + [sym_hex_literal] = ACTIONS(3132), + [sym_bin_literal] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3132), }, - [381] = { - [sym_primary_constructor] = STATE(840), - [sym_class_body] = STATE(1137), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(418), - [sym_type_constraints] = STATE(935), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [389] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), }, - [382] = { - [sym_primary_constructor] = STATE(841), - [sym__class_parameters] = STATE(960), + [390] = { + [sym_primary_constructor] = STATE(2836), + [sym__class_parameters] = STATE(3025), [sym_type_parameters] = STATE(415), - [sym_type_constraints] = STATE(957), - [sym_enum_class_body] = STATE(1127), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_fun] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_super] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3238), - [anon_sym_continue_AT] = ACTIONS(3238), - [anon_sym_break_AT] = ACTIONS(3238), - [anon_sym_this_AT] = ACTIONS(3238), - [anon_sym_super_AT] = ACTIONS(3238), - [sym_real_literal] = ACTIONS(3238), - [sym_integer_literal] = ACTIONS(3234), - [sym_hex_literal] = ACTIONS(3238), - [sym_bin_literal] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), - }, - [383] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_fun] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_null] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_when] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3127), - [anon_sym_continue_AT] = ACTIONS(3127), - [anon_sym_break_AT] = ACTIONS(3127), - [anon_sym_this_AT] = ACTIONS(3127), - [anon_sym_super_AT] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3127), - [sym_integer_literal] = ACTIONS(3125), - [sym_hex_literal] = ACTIONS(3127), - [sym_bin_literal] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3127), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), - }, - [384] = { - [sym_primary_constructor] = STATE(846), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(419), - [sym_type_constraints] = STATE(983), - [sym_enum_class_body] = STATE(1137), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [385] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1658), + [sym_type_constraints] = STATE(3006), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_fun] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3152), - [anon_sym_super] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_when] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), [anon_sym_PLUS_EQ] = ACTIONS(3154), [anon_sym_DASH_EQ] = ACTIONS(3154), [anon_sym_STAR_EQ] = ACTIONS(3154), [anon_sym_SLASH_EQ] = ACTIONS(3154), [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3148), [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3148), [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), [anon_sym_LT_EQ] = ACTIONS(3154), [anon_sym_GT_EQ] = ACTIONS(3154), [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3148), [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3154), [anon_sym_continue_AT] = ACTIONS(3154), @@ -90705,428 +91604,806 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(3154), [anon_sym_super_AT] = ACTIONS(3154), [sym_real_literal] = ACTIONS(3154), - [sym_integer_literal] = ACTIONS(3152), + [sym_integer_literal] = ACTIONS(3148), [sym_hex_literal] = ACTIONS(3154), [sym_bin_literal] = ACTIONS(3154), - [anon_sym_true] = ACTIONS(3152), - [anon_sym_false] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3154), }, - [386] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_fun] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3121), - [anon_sym_super] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_when] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3123), - [anon_sym_continue_AT] = ACTIONS(3123), - [anon_sym_break_AT] = ACTIONS(3123), - [anon_sym_this_AT] = ACTIONS(3123), - [anon_sym_super_AT] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3123), - [sym_integer_literal] = ACTIONS(3121), - [sym_hex_literal] = ACTIONS(3123), - [sym_bin_literal] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3123), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3123), + [391] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3076), + [anon_sym_super] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_when] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3078), + [anon_sym_continue_AT] = ACTIONS(3078), + [anon_sym_break_AT] = ACTIONS(3078), + [anon_sym_this_AT] = ACTIONS(3078), + [anon_sym_super_AT] = ACTIONS(3078), + [sym_real_literal] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(3076), + [sym_hex_literal] = ACTIONS(3078), + [sym_bin_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3078), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3078), }, - [387] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3133), - [anon_sym_super] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_when] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_throw] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3135), - [anon_sym_continue_AT] = ACTIONS(3135), - [anon_sym_break_AT] = ACTIONS(3135), - [anon_sym_this_AT] = ACTIONS(3135), - [anon_sym_super_AT] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3135), - [sym_integer_literal] = ACTIONS(3133), - [sym_hex_literal] = ACTIONS(3135), - [sym_bin_literal] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3135), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3135), + [392] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_object] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3115), + [anon_sym_super] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_when] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3117), + [anon_sym_continue_AT] = ACTIONS(3117), + [anon_sym_break_AT] = ACTIONS(3117), + [anon_sym_this_AT] = ACTIONS(3117), + [anon_sym_super_AT] = ACTIONS(3117), + [sym_real_literal] = ACTIONS(3117), + [sym_integer_literal] = ACTIONS(3115), + [sym_hex_literal] = ACTIONS(3117), + [sym_bin_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(3115), + [anon_sym_false] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3117), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3117), }, - [388] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), + [393] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), }, - [389] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), + [394] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_fun] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_super] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_null] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [anon_sym_DASH_EQ] = ACTIONS(3139), + [anon_sym_STAR_EQ] = ACTIONS(3139), + [anon_sym_SLASH_EQ] = ACTIONS(3139), + [anon_sym_PERCENT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_annotation] = ACTIONS(3137), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_lateinit] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_tailrec] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_infix] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym_external] = ACTIONS(3137), + [sym_property_modifier] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_final] = ACTIONS(3137), + [anon_sym_open] = ACTIONS(3137), + [anon_sym_vararg] = ACTIONS(3137), + [anon_sym_noinline] = ACTIONS(3137), + [anon_sym_crossinline] = ACTIONS(3137), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3139), + [anon_sym_continue_AT] = ACTIONS(3139), + [anon_sym_break_AT] = ACTIONS(3139), + [anon_sym_this_AT] = ACTIONS(3139), + [anon_sym_super_AT] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_hex_literal] = ACTIONS(3139), + [sym_bin_literal] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3139), + }, + [395] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3122), + [anon_sym_fun] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_super] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [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(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [anon_sym_this_AT] = ACTIONS(3124), + [anon_sym_super_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [396] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3080), + [anon_sym_super] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_when] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3082), + [anon_sym_continue_AT] = ACTIONS(3082), + [anon_sym_break_AT] = ACTIONS(3082), + [anon_sym_this_AT] = ACTIONS(3082), + [anon_sym_super_AT] = ACTIONS(3082), + [sym_real_literal] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(3080), + [sym_hex_literal] = ACTIONS(3082), + [sym_bin_literal] = ACTIONS(3082), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3082), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3082), + }, + [397] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_LBRACE] = ACTIONS(1606), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1686), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), [anon_sym_object] = ACTIONS(3141), @@ -91136,8 +92413,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(3141), [anon_sym_this] = ACTIONS(3141), [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), [anon_sym_in] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), @@ -91152,7 +92429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3141), [anon_sym_continue] = ACTIONS(3141), [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1712), [anon_sym_PLUS_EQ] = ACTIONS(3143), [anon_sym_DASH_EQ] = ACTIONS(3143), [anon_sym_STAR_EQ] = ACTIONS(3143), @@ -91169,13 +92446,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(3141), [anon_sym_sealed] = ACTIONS(3141), [anon_sym_annotation] = ACTIONS(3141), @@ -91217,1066 +92494,1065 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3143), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1712), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3143), }, - [390] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_fun] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3193), - [anon_sym_super] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3195), - [anon_sym_continue_AT] = ACTIONS(3195), - [anon_sym_break_AT] = ACTIONS(3195), - [anon_sym_this_AT] = ACTIONS(3195), - [anon_sym_super_AT] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_hex_literal] = ACTIONS(3195), - [sym_bin_literal] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3195), + [398] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3061), + [anon_sym_fun] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3061), + [anon_sym_super] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_when] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3063), + [anon_sym_DASH_EQ] = ACTIONS(3063), + [anon_sym_STAR_EQ] = ACTIONS(3063), + [anon_sym_SLASH_EQ] = ACTIONS(3063), + [anon_sym_PERCENT_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3063), + [anon_sym_continue_AT] = ACTIONS(3063), + [anon_sym_break_AT] = ACTIONS(3063), + [anon_sym_this_AT] = ACTIONS(3063), + [anon_sym_super_AT] = ACTIONS(3063), + [sym_real_literal] = ACTIONS(3063), + [sym_integer_literal] = ACTIONS(3061), + [sym_hex_literal] = ACTIONS(3063), + [sym_bin_literal] = ACTIONS(3063), + [anon_sym_true] = ACTIONS(3061), + [anon_sym_false] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3063), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3063), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3063), }, - [391] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_fun] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_super] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3131), - [anon_sym_continue_AT] = ACTIONS(3131), - [anon_sym_break_AT] = ACTIONS(3131), - [anon_sym_this_AT] = ACTIONS(3131), - [anon_sym_super_AT] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_hex_literal] = ACTIONS(3131), - [sym_bin_literal] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3131), + [399] = { + [sym_primary_constructor] = STATE(2818), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(417), + [sym_type_constraints] = STATE(2993), + [sym_enum_class_body] = STATE(3250), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = 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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [anon_sym_this_AT] = ACTIONS(3200), + [anon_sym_super_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), }, - [392] = { - [sym_primary_constructor] = STATE(857), - [sym_class_body] = STATE(1145), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(421), - [sym_type_constraints] = STATE(930), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_fun] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3244), - [anon_sym_super] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_when] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3248), - [anon_sym_continue_AT] = ACTIONS(3248), - [anon_sym_break_AT] = ACTIONS(3248), - [anon_sym_this_AT] = ACTIONS(3248), - [anon_sym_super_AT] = ACTIONS(3248), - [sym_real_literal] = ACTIONS(3248), - [sym_integer_literal] = ACTIONS(3244), - [sym_hex_literal] = ACTIONS(3248), - [sym_bin_literal] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3244), - [anon_sym_false] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3248), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), + [400] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_fun] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_super] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3128), + [anon_sym_continue_AT] = ACTIONS(3128), + [anon_sym_break_AT] = ACTIONS(3128), + [anon_sym_this_AT] = ACTIONS(3128), + [anon_sym_super_AT] = ACTIONS(3128), + [sym_real_literal] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_hex_literal] = ACTIONS(3128), + [sym_bin_literal] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3128), }, - [393] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [401] = { + [sym_primary_constructor] = STATE(860), + [sym_class_body] = STATE(1123), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(411), + [sym_type_constraints] = STATE(940), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(1764), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), + [sym__string_start] = ACTIONS(3154), }, - [394] = { - [sym_primary_constructor] = STATE(2840), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(420), - [sym_type_constraints] = STATE(3013), - [sym_enum_class_body] = STATE(3243), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_fun] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_super] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3238), - [anon_sym_continue_AT] = ACTIONS(3238), - [anon_sym_break_AT] = ACTIONS(3238), - [anon_sym_this_AT] = ACTIONS(3238), - [anon_sym_super_AT] = ACTIONS(3238), - [sym_real_literal] = ACTIONS(3238), - [sym_integer_literal] = ACTIONS(3234), - [sym_hex_literal] = ACTIONS(3238), - [sym_bin_literal] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), + [402] = { + [sym_primary_constructor] = STATE(859), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(407), + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1123), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, - [395] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_fun] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_super] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3108), - [anon_sym_DASH_EQ] = ACTIONS(3108), - [anon_sym_STAR_EQ] = ACTIONS(3108), - [anon_sym_SLASH_EQ] = ACTIONS(3108), - [anon_sym_PERCENT_EQ] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [anon_sym_this_AT] = ACTIONS(3108), - [anon_sym_super_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3106), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [403] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_fun] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3100), + [anon_sym_super] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_null] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_when] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3102), + [anon_sym_continue_AT] = ACTIONS(3102), + [anon_sym_break_AT] = ACTIONS(3102), + [anon_sym_this_AT] = ACTIONS(3102), + [anon_sym_super_AT] = ACTIONS(3102), + [sym_real_literal] = ACTIONS(3102), + [sym_integer_literal] = ACTIONS(3100), + [sym_hex_literal] = ACTIONS(3102), + [sym_bin_literal] = ACTIONS(3102), + [anon_sym_true] = ACTIONS(3100), + [anon_sym_false] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3102), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3102), }, - [396] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3110), - [anon_sym_fun] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_super] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_when] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3112), - [anon_sym_continue_AT] = ACTIONS(3112), - [anon_sym_break_AT] = ACTIONS(3112), - [anon_sym_this_AT] = ACTIONS(3112), - [anon_sym_super_AT] = ACTIONS(3112), - [sym_real_literal] = ACTIONS(3112), - [sym_integer_literal] = ACTIONS(3110), - [sym_hex_literal] = ACTIONS(3112), - [sym_bin_literal] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3112), + [404] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1796), + [anon_sym_object] = ACTIONS(3044), + [anon_sym_fun] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1806), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(1812), + [anon_sym_PIPE_PIPE] = ACTIONS(1814), + [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(1712), + [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(1816), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), + [anon_sym_EQ_EQ] = ACTIONS(1816), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), + [anon_sym_LT_EQ] = ACTIONS(1820), + [anon_sym_GT_EQ] = ACTIONS(1820), + [anon_sym_BANGin] = ACTIONS(1822), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3046), + [anon_sym_continue_AT] = ACTIONS(3046), + [anon_sym_break_AT] = ACTIONS(3046), + [anon_sym_this_AT] = ACTIONS(3046), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3046), }, - [397] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), + [405] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1469), + [sym__comparison_operator] = STATE(1471), + [sym__in_operator] = STATE(1474), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1755), + [sym__multiplicative_operator] = STATE(1430), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1431), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(1804), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(1808), + [anon_sym_QMARK_COLON] = ACTIONS(1810), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1824), + [anon_sym_SLASH] = ACTIONS(1804), + [anon_sym_PERCENT] = ACTIONS(1804), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), }, - [398] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), + [406] = { + [sym_primary_constructor] = STATE(2959), + [sym_class_body] = STATE(3183), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(432), + [sym_type_constraints] = STATE(2979), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3164), [anon_sym_object] = ACTIONS(3148), [anon_sym_fun] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), [anon_sym_this] = ACTIONS(3148), [anon_sym_super] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), @@ -92286,2813 +93562,3047 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3148), [anon_sym_continue] = ACTIONS(3148), [anon_sym_break] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [anon_sym_this_AT] = ACTIONS(3150), - [anon_sym_super_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), [sym_integer_literal] = ACTIONS(3148), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym__string_start] = ACTIONS(3154), }, - [399] = { - [sym_primary_constructor] = STATE(2814), - [sym_class_body] = STATE(3136), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(414), - [sym_type_constraints] = STATE(3044), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_fun] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3244), - [anon_sym_super] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_when] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3248), - [anon_sym_continue_AT] = ACTIONS(3248), - [anon_sym_break_AT] = ACTIONS(3248), - [anon_sym_this_AT] = ACTIONS(3248), - [anon_sym_super_AT] = ACTIONS(3248), - [sym_real_literal] = ACTIONS(3248), - [sym_integer_literal] = ACTIONS(3244), - [sym_hex_literal] = ACTIONS(3248), - [sym_bin_literal] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3244), - [anon_sym_false] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3248), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), + [407] = { + [sym_primary_constructor] = STATE(849), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1153), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [400] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_super] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3175), - [anon_sym_continue_AT] = ACTIONS(3175), - [anon_sym_break_AT] = ACTIONS(3175), - [anon_sym_this_AT] = ACTIONS(3175), - [anon_sym_super_AT] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_hex_literal] = ACTIONS(3175), - [sym_bin_literal] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3175), + [408] = { + [sym_primary_constructor] = STATE(898), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(435), + [sym_type_constraints] = STATE(956), + [sym_enum_class_body] = STATE(1180), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = 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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [anon_sym_this_AT] = ACTIONS(3200), + [anon_sym_super_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), }, - [401] = { - [sym_primary_constructor] = STATE(2825), - [sym_class_body] = STATE(3177), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(412), - [sym_type_constraints] = STATE(3025), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [409] = { + [sym_primary_constructor] = STATE(857), + [sym_class_body] = STATE(1118), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(930), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, - [402] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1864), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(1868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1870), - [anon_sym_LT_EQ] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1872), - [anon_sym_BANGin] = ACTIONS(1874), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [410] = { + [sym_primary_constructor] = STATE(2815), + [sym_class_body] = STATE(3221), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(2990), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [403] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_object] = ACTIONS(3159), - [anon_sym_fun] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_super] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_null] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3161), - [anon_sym_continue_AT] = ACTIONS(3161), - [anon_sym_break_AT] = ACTIONS(3161), - [anon_sym_this_AT] = ACTIONS(3161), - [anon_sym_super_AT] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_hex_literal] = ACTIONS(3161), - [sym_bin_literal] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3161), + [411] = { + [sym_primary_constructor] = STATE(839), + [sym_class_body] = STATE(1153), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(955), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [404] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1647), - [sym__comparison_operator] = STATE(1646), - [sym__in_operator] = STATE(1645), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1644), - [sym__multiplicative_operator] = STATE(1643), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1642), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_fun] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_super] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(1856), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_when] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PERCENT] = ACTIONS(1856), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [412] = { + [sym_primary_constructor] = STATE(827), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1013), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), [anon_sym_tailrec] = ACTIONS(3166), [anon_sym_operator] = ACTIONS(3166), [anon_sym_infix] = ACTIONS(3166), [anon_sym_inline] = ACTIONS(3166), [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [anon_sym_this_AT] = ACTIONS(3168), - [anon_sym_super_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3166), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, - [405] = { - [sym_primary_constructor] = STATE(2821), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(410), - [sym_type_constraints] = STATE(3036), - [sym_enum_class_body] = STATE(3177), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [413] = { + [sym_primary_constructor] = STATE(2946), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(422), + [sym_type_constraints] = STATE(2993), + [sym_enum_class_body] = STATE(3250), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = 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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [anon_sym_this_AT] = ACTIONS(3200), + [anon_sym_super_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), }, - [406] = { + [414] = { + [sym_primary_constructor] = STATE(2839), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(3009), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [415] = { + [sym_primary_constructor] = STATE(2828), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(2969), + [sym_enum_class_body] = STATE(3221), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [416] = { [sym_primary_constructor] = STATE(919), - [sym_class_body] = STATE(1145), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(432), - [sym_type_constraints] = STATE(930), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_fun] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3244), - [anon_sym_super] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_when] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3248), - [anon_sym_continue_AT] = ACTIONS(3248), - [anon_sym_break_AT] = ACTIONS(3248), - [anon_sym_this_AT] = ACTIONS(3248), - [anon_sym_super_AT] = ACTIONS(3248), - [sym_real_literal] = ACTIONS(3248), - [sym_integer_literal] = ACTIONS(3244), - [sym_hex_literal] = ACTIONS(3248), - [sym_bin_literal] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3244), - [anon_sym_false] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3248), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), + [sym_class_body] = STATE(1086), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(424), + [sym_type_constraints] = STATE(933), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3248), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3186), + [anon_sym_continue_AT] = ACTIONS(3186), + [anon_sym_break_AT] = ACTIONS(3186), + [anon_sym_this_AT] = ACTIONS(3186), + [anon_sym_super_AT] = ACTIONS(3186), + [sym_real_literal] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3186), + [sym_bin_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3186), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3186), }, - [407] = { - [sym_primary_constructor] = STATE(2916), - [sym_class_body] = STATE(3177), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(429), - [sym_type_constraints] = STATE(3025), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [417] = { + [sym_primary_constructor] = STATE(2823), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3251), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, - [408] = { - [sym_primary_constructor] = STATE(874), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(439), - [sym_type_constraints] = STATE(957), - [sym_enum_class_body] = STATE(1127), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_fun] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_super] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3238), - [anon_sym_continue_AT] = ACTIONS(3238), - [anon_sym_break_AT] = ACTIONS(3238), - [anon_sym_this_AT] = ACTIONS(3238), - [anon_sym_super_AT] = ACTIONS(3238), - [sym_real_literal] = ACTIONS(3238), - [sym_integer_literal] = ACTIONS(3234), - [sym_hex_literal] = ACTIONS(3238), - [sym_bin_literal] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), + [418] = { + [sym_primary_constructor] = STATE(2914), + [sym_class_body] = STATE(3140), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(423), + [sym_type_constraints] = STATE(3024), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3186), + [anon_sym_continue_AT] = ACTIONS(3186), + [anon_sym_break_AT] = ACTIONS(3186), + [anon_sym_this_AT] = ACTIONS(3186), + [anon_sym_super_AT] = ACTIONS(3186), + [sym_real_literal] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3186), + [sym_bin_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3186), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3186), }, - [409] = { - [sym_primary_constructor] = STATE(866), - [sym_class_body] = STATE(1137), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(437), - [sym_type_constraints] = STATE(935), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [419] = { + [sym_primary_constructor] = STATE(2940), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(428), + [sym_type_constraints] = STATE(3006), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, - [410] = { - [sym_primary_constructor] = STATE(2826), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3022), - [sym_enum_class_body] = STATE(3214), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [420] = { + [sym_primary_constructor] = STATE(892), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(431), + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1123), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3256), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, - [411] = { - [sym_primary_constructor] = STATE(889), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(435), - [sym_type_constraints] = STATE(983), - [sym_enum_class_body] = STATE(1137), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [421] = { + [sym_primary_constructor] = STATE(914), + [sym_class_body] = STATE(1123), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(437), + [sym_type_constraints] = STATE(940), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, - [412] = { - [sym_primary_constructor] = STATE(2827), - [sym_class_body] = STATE(3214), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3014), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [422] = { + [sym_primary_constructor] = STATE(2927), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3251), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, - [413] = { - [sym_primary_constructor] = STATE(2893), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(424), - [sym_type_constraints] = STATE(3036), - [sym_enum_class_body] = STATE(3177), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [423] = { + [sym_primary_constructor] = STATE(2933), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(3009), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, - [414] = { - [sym_primary_constructor] = STATE(2813), - [sym_class_body] = STATE(3172), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3037), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [424] = { + [sym_primary_constructor] = STATE(862), + [sym_class_body] = STATE(1118), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(930), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, - [415] = { - [sym_primary_constructor] = STATE(826), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(968), - [sym_enum_class_body] = STATE(1175), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [425] = { + [sym_type_constraints] = STATE(440), + [sym_property_delegate] = STATE(484), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [416] = { - [sym_primary_constructor] = STATE(2894), - [sym_class_body] = STATE(3136), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(433), - [sym_type_constraints] = STATE(3044), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_fun] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3244), - [anon_sym_super] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_when] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3248), - [anon_sym_continue_AT] = ACTIONS(3248), - [anon_sym_break_AT] = ACTIONS(3248), - [anon_sym_this_AT] = ACTIONS(3248), - [anon_sym_super_AT] = ACTIONS(3248), - [sym_real_literal] = ACTIONS(3248), - [sym_integer_literal] = ACTIONS(3244), - [sym_hex_literal] = ACTIONS(3248), - [sym_bin_literal] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3244), - [anon_sym_false] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3248), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), + [426] = { + [sym_type_constraints] = STATE(443), + [sym_property_delegate] = STATE(489), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [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_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [417] = { - [sym_primary_constructor] = STATE(2955), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(425), - [sym_type_constraints] = STATE(3013), - [sym_enum_class_body] = STATE(3243), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3302), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_fun] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_super] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3238), - [anon_sym_continue_AT] = ACTIONS(3238), - [anon_sym_break_AT] = ACTIONS(3238), - [anon_sym_this_AT] = ACTIONS(3238), - [anon_sym_super_AT] = ACTIONS(3238), - [sym_real_literal] = ACTIONS(3238), - [sym_integer_literal] = ACTIONS(3234), - [sym_hex_literal] = ACTIONS(3238), - [sym_bin_literal] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), + [427] = { + [sym_type_constraints] = STATE(444), + [sym_property_delegate] = STATE(512), + [sym_getter] = STATE(1116), + [sym_setter] = STATE(1116), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_fun] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_super] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_when] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_BANG_BANG] = ACTIONS(3286), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3286), + [anon_sym_continue_AT] = ACTIONS(3286), + [anon_sym_break_AT] = ACTIONS(3286), + [anon_sym_this_AT] = ACTIONS(3286), + [anon_sym_super_AT] = ACTIONS(3286), + [sym_real_literal] = ACTIONS(3286), + [sym_integer_literal] = ACTIONS(3284), + [sym_hex_literal] = ACTIONS(3286), + [sym_bin_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3286), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3286), }, - [418] = { - [sym_primary_constructor] = STATE(842), - [sym_class_body] = STATE(1062), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(955), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [428] = { + [sym_primary_constructor] = STATE(2967), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(2969), + [sym_enum_class_body] = STATE(3221), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [419] = { - [sym_primary_constructor] = STATE(843), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(950), - [sym_enum_class_body] = STATE(1062), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [429] = { + [sym_type_constraints] = STATE(454), + [sym_property_delegate] = STATE(509), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [420] = { - [sym_primary_constructor] = STATE(2843), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(2999), - [sym_enum_class_body] = STATE(3248), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3308), + [430] = { + [sym_type_constraints] = STATE(450), + [sym_property_delegate] = STATE(500), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3298), [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_LPAREN] = ACTIONS(3298), [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), [anon_sym_DOT_DOT] = ACTIONS(3298), [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), [anon_sym_COLON_COLON] = ACTIONS(3298), [anon_sym_PLUS_EQ] = ACTIONS(3298), [anon_sym_DASH_EQ] = ACTIONS(3298), [anon_sym_STAR_EQ] = ACTIONS(3298), [anon_sym_SLASH_EQ] = ACTIONS(3298), [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3296), [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3296), [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), [anon_sym_LT_EQ] = ACTIONS(3298), [anon_sym_GT_EQ] = ACTIONS(3298), [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3296), [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), [anon_sym_as_QMARK] = ACTIONS(3298), [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3298), [anon_sym_continue_AT] = ACTIONS(3298), @@ -95100,11 +96610,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(3298), [anon_sym_super_AT] = ACTIONS(3298), [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), + [sym_integer_literal] = ACTIONS(3296), [sym_hex_literal] = ACTIONS(3298), [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), @@ -95112,210 +96622,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3298), }, - [421] = { - [sym_primary_constructor] = STATE(851), - [sym_class_body] = STATE(1102), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(986), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [431] = { + [sym_primary_constructor] = STATE(881), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1153), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [422] = { - [sym_type_constraints] = STATE(443), - [sym_property_delegate] = STATE(482), - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [432] = { + [sym_primary_constructor] = STATE(2947), + [sym_class_body] = STATE(3221), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(2990), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [433] = { + [sym_type_constraints] = STATE(457), + [sym_property_delegate] = STATE(514), + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_fun] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_super] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_when] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -95340,106 +96973,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3286), + [anon_sym_continue_AT] = ACTIONS(3286), + [anon_sym_break_AT] = ACTIONS(3286), + [anon_sym_this_AT] = ACTIONS(3286), + [anon_sym_super_AT] = ACTIONS(3286), + [sym_real_literal] = ACTIONS(3286), + [sym_integer_literal] = ACTIONS(3284), + [sym_hex_literal] = ACTIONS(3286), + [sym_bin_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3286), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3286), }, - [423] = { - [sym_type_constraints] = STATE(450), - [sym_property_delegate] = STATE(495), - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [434] = { + [sym_type_constraints] = STATE(448), + [sym_property_delegate] = STATE(491), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -95464,354 +97097,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [424] = { - [sym_primary_constructor] = STATE(2942), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3022), - [sym_enum_class_body] = STATE(3214), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [435] = { + [sym_primary_constructor] = STATE(872), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1013), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, - [425] = { - [sym_primary_constructor] = STATE(2898), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(2999), - [sym_enum_class_body] = STATE(3248), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3334), + [436] = { + [sym_type_constraints] = STATE(453), + [sym_property_delegate] = STATE(485), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3298), [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), [anon_sym_DOT_DOT] = ACTIONS(3298), [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), [anon_sym_COLON_COLON] = ACTIONS(3298), [anon_sym_PLUS_EQ] = ACTIONS(3298), [anon_sym_DASH_EQ] = ACTIONS(3298), [anon_sym_STAR_EQ] = ACTIONS(3298), [anon_sym_SLASH_EQ] = ACTIONS(3298), [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3296), [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3296), [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), [anon_sym_LT_EQ] = ACTIONS(3298), [anon_sym_GT_EQ] = ACTIONS(3298), [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3296), [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), [anon_sym_as_QMARK] = ACTIONS(3298), [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), - }, - [426] = { - [sym_type_constraints] = STATE(440), - [sym_property_delegate] = STATE(516), - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -95836,106 +97345,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, - [427] = { - [sym_type_constraints] = STATE(449), - [sym_property_delegate] = STATE(491), - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [437] = { + [sym_primary_constructor] = STATE(900), + [sym_class_body] = STATE(1153), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(955), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [438] = { + [sym_type_constraints] = STATE(442), + [sym_property_delegate] = STATE(495), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [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), @@ -95960,106 +97593,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [428] = { - [sym_type_constraints] = STATE(448), - [sym_property_delegate] = STATE(489), - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [439] = { + [sym_type_constraints] = STATE(455), + [sym_property_delegate] = STATE(486), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96084,230 +97717,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), - }, - [429] = { - [sym_primary_constructor] = STATE(2954), - [sym_class_body] = STATE(3214), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3014), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [430] = { - [sym_type_constraints] = STATE(453), - [sym_property_delegate] = STATE(514), - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_super] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [440] = { + [sym_property_delegate] = STATE(495), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3270), + [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_SEMI] = ACTIONS(1774), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [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), @@ -96332,106 +97840,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3350), - [anon_sym_continue_AT] = ACTIONS(3350), - [anon_sym_break_AT] = ACTIONS(3350), - [anon_sym_this_AT] = ACTIONS(3350), - [anon_sym_super_AT] = ACTIONS(3350), - [sym_real_literal] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_hex_literal] = ACTIONS(3350), - [sym_bin_literal] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3350), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [431] = { - [sym_type_constraints] = STATE(455), - [sym_property_delegate] = STATE(511), - [sym_getter] = STATE(3148), - [sym_setter] = STATE(3148), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_super] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [441] = { + [sym_type_constraints] = STATE(503), + [sym_property_delegate] = STATE(590), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96456,354 +97963,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3350), - [anon_sym_continue_AT] = ACTIONS(3350), - [anon_sym_break_AT] = ACTIONS(3350), - [anon_sym_this_AT] = ACTIONS(3350), - [anon_sym_super_AT] = ACTIONS(3350), - [sym_real_literal] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_hex_literal] = ACTIONS(3350), - [sym_bin_literal] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3350), - }, - [432] = { - [sym_primary_constructor] = STATE(902), - [sym_class_body] = STATE(1102), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(986), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, - [433] = { - [sym_primary_constructor] = STATE(2891), - [sym_class_body] = STATE(3172), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3037), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, - [434] = { - [sym_type_constraints] = STATE(447), - [sym_property_delegate] = STATE(492), - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [442] = { + [sym_property_delegate] = STATE(509), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -96828,230 +98086,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [435] = { - [sym_primary_constructor] = STATE(868), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(950), - [sym_enum_class_body] = STATE(1062), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [436] = { - [sym_type_constraints] = STATE(442), - [sym_property_delegate] = STATE(515), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [443] = { + [sym_property_delegate] = STATE(491), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97076,230 +98209,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), - }, - [437] = { - [sym_primary_constructor] = STATE(873), - [sym_class_body] = STATE(1062), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(955), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [438] = { - [sym_type_constraints] = STATE(452), - [sym_property_delegate] = STATE(497), - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [444] = { + [sym_property_delegate] = STATE(485), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97324,132 +98332,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, - [439] = { - [sym_primary_constructor] = STATE(876), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(968), - [sym_enum_class_body] = STATE(1175), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3376), + [445] = { + [sym_type_constraints] = STATE(513), + [sym_property_delegate] = STATE(574), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3298), [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), [anon_sym_DOT_DOT] = ACTIONS(3298), [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), [anon_sym_COLON_COLON] = ACTIONS(3298), [anon_sym_PLUS_EQ] = ACTIONS(3298), [anon_sym_DASH_EQ] = ACTIONS(3298), [anon_sym_STAR_EQ] = ACTIONS(3298), [anon_sym_SLASH_EQ] = ACTIONS(3298), [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3296), [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3296), [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), [anon_sym_LT_EQ] = ACTIONS(3298), [anon_sym_GT_EQ] = ACTIONS(3298), [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3296), [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), [anon_sym_as_QMARK] = ACTIONS(3298), [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3298), [anon_sym_continue_AT] = ACTIONS(3298), @@ -97457,11 +98464,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(3298), [anon_sym_super_AT] = ACTIONS(3298), [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), + [sym_integer_literal] = ACTIONS(3296), [sym_hex_literal] = ACTIONS(3298), [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), @@ -97469,84 +98476,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3298), }, - [440] = { - [sym_property_delegate] = STATE(491), - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [446] = { + [sym_type_constraints] = STATE(481), + [sym_property_delegate] = STATE(582), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97571,105 +98578,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [441] = { - [sym_type_constraints] = STATE(507), - [sym_property_delegate] = STATE(586), - [sym_getter] = STATE(3148), - [sym_setter] = STATE(3148), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3378), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_super] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [447] = { + [sym_type_constraints] = STATE(504), + [sym_property_delegate] = STATE(595), + [sym_getter] = STATE(1116), + [sym_setter] = STATE(1116), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_fun] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_super] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_when] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97694,105 +98701,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3350), - [anon_sym_continue_AT] = ACTIONS(3350), - [anon_sym_break_AT] = ACTIONS(3350), - [anon_sym_this_AT] = ACTIONS(3350), - [anon_sym_super_AT] = ACTIONS(3350), - [sym_real_literal] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_hex_literal] = ACTIONS(3350), - [sym_bin_literal] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3350), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3286), + [anon_sym_continue_AT] = ACTIONS(3286), + [anon_sym_break_AT] = ACTIONS(3286), + [anon_sym_this_AT] = ACTIONS(3286), + [anon_sym_super_AT] = ACTIONS(3286), + [sym_real_literal] = ACTIONS(3286), + [sym_integer_literal] = ACTIONS(3284), + [sym_hex_literal] = ACTIONS(3286), + [sym_bin_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3286), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3286), }, - [442] = { - [sym_property_delegate] = STATE(516), - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [448] = { + [sym_property_delegate] = STATE(494), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97817,105 +98824,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, - [443] = { - [sym_property_delegate] = STATE(492), - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [449] = { + [sym_type_constraints] = STATE(506), + [sym_property_delegate] = STATE(549), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -97940,105 +98947,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [444] = { - [sym_type_constraints] = STATE(509), - [sym_property_delegate] = STATE(561), - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [450] = { + [sym_property_delegate] = STATE(484), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -98063,105 +99070,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [445] = { - [sym_type_constraints] = STATE(503), - [sym_property_delegate] = STATE(578), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3394), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3396), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [451] = { + [sym_type_constraints] = STATE(510), + [sym_property_delegate] = STATE(584), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [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), @@ -98186,843 +99193,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), - }, - [446] = { - [sym_type_constraints] = STATE(508), - [sym_property_delegate] = STATE(567), - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3398), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [447] = { - [sym_property_delegate] = STATE(495), - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [448] = { - [sym_property_delegate] = STATE(486), - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [449] = { - [sym_property_delegate] = STATE(489), - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), - }, - [450] = { - [sym_property_delegate] = STATE(497), - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3374), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), - }, - [451] = { - [sym_type_constraints] = STATE(506), - [sym_property_delegate] = STATE(576), - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3402), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [452] = { - [sym_property_delegate] = STATE(500), - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_type_constraints] = STATE(502), + [sym_property_delegate] = STATE(586), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99047,105 +99316,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [453] = { - [sym_property_delegate] = STATE(482), - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_property_delegate] = STATE(486), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99170,105 +99439,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [454] = { - [sym_type_constraints] = STATE(513), - [sym_property_delegate] = STATE(551), - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_property_delegate] = STATE(479), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99293,105 +99562,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [455] = { - [sym_property_delegate] = STATE(515), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_property_delegate] = STATE(489), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3270), + [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_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [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), @@ -99416,105 +99685,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [456] = { - [sym_type_constraints] = STATE(504), - [sym_property_delegate] = STATE(594), - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_type_constraints] = STATE(482), + [sym_property_delegate] = STATE(573), + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(3360), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_fun] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_super] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_when] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99539,105 +99808,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3286), + [anon_sym_continue_AT] = ACTIONS(3286), + [anon_sym_break_AT] = ACTIONS(3286), + [anon_sym_this_AT] = ACTIONS(3286), + [anon_sym_super_AT] = ACTIONS(3286), + [sym_real_literal] = ACTIONS(3286), + [sym_integer_literal] = ACTIONS(3284), + [sym_hex_literal] = ACTIONS(3286), + [sym_bin_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3286), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3286), }, [457] = { - [sym_type_constraints] = STATE(510), - [sym_property_delegate] = STATE(553), - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_property_delegate] = STATE(500), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3270), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99662,105 +99931,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [458] = { - [sym_type_constraints] = STATE(485), - [sym_property_delegate] = STATE(549), - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3414), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3416), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_super] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [sym_type_constraints] = STATE(492), + [sym_property_delegate] = STATE(545), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -99785,105 +100054,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3350), - [anon_sym_continue_AT] = ACTIONS(3350), - [anon_sym_break_AT] = ACTIONS(3350), - [anon_sym_this_AT] = ACTIONS(3350), - [anon_sym_super_AT] = ACTIONS(3350), - [sym_real_literal] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_hex_literal] = ACTIONS(3350), - [sym_bin_literal] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3350), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [459] = { - [sym_type_constraints] = STATE(505), - [sym_property_delegate] = STATE(595), - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_type_constraints] = STATE(499), + [sym_property_delegate] = STATE(547), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [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), @@ -99908,1034 +100177,668 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [460] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_fun] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_super] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3131), - [anon_sym_continue_AT] = ACTIONS(3131), - [anon_sym_break_AT] = ACTIONS(3131), - [anon_sym_this_AT] = ACTIONS(3131), - [anon_sym_super_AT] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_hex_literal] = ACTIONS(3131), - [sym_bin_literal] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3131), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), }, [461] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_fun] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3193), - [anon_sym_super] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3195), - [anon_sym_continue_AT] = ACTIONS(3195), - [anon_sym_break_AT] = ACTIONS(3195), - [anon_sym_this_AT] = ACTIONS(3195), - [anon_sym_super_AT] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_hex_literal] = ACTIONS(3195), - [sym_bin_literal] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3195), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_object] = ACTIONS(3044), + [anon_sym_fun] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3046), + [anon_sym_continue_AT] = ACTIONS(3046), + [anon_sym_break_AT] = ACTIONS(3046), + [anon_sym_this_AT] = ACTIONS(3046), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3046), }, [462] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_fun] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_super] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_when] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_tailrec] = ACTIONS(3166), - [anon_sym_operator] = ACTIONS(3166), - [anon_sym_infix] = ACTIONS(3166), - [anon_sym_inline] = ACTIONS(3166), - [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [anon_sym_this_AT] = ACTIONS(3168), - [anon_sym_super_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3166), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3061), + [anon_sym_object] = ACTIONS(3061), + [anon_sym_fun] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3061), + [anon_sym_super] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_when] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3063), + [anon_sym_continue_AT] = ACTIONS(3063), + [anon_sym_break_AT] = ACTIONS(3063), + [anon_sym_this_AT] = ACTIONS(3063), + [anon_sym_super_AT] = ACTIONS(3063), + [sym_real_literal] = ACTIONS(3063), + [sym_integer_literal] = ACTIONS(3061), + [sym_hex_literal] = ACTIONS(3063), + [sym_bin_literal] = ACTIONS(3063), + [anon_sym_true] = ACTIONS(3061), + [anon_sym_false] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3063), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3063), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3063), }, [463] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(1764), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(1712), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), + [sym__string_start] = ACTIONS(3086), }, [464] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_super] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_when] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3096), - [anon_sym_continue_AT] = ACTIONS(3096), - [anon_sym_break_AT] = ACTIONS(3096), - [anon_sym_this_AT] = ACTIONS(3096), - [anon_sym_super_AT] = ACTIONS(3096), - [sym_real_literal] = ACTIONS(3096), - [sym_integer_literal] = ACTIONS(3094), - [sym_hex_literal] = ACTIONS(3096), - [sym_bin_literal] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3096), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), }, [465] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), - }, - [466] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_super] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3175), - [anon_sym_continue_AT] = ACTIONS(3175), - [anon_sym_break_AT] = ACTIONS(3175), - [anon_sym_this_AT] = ACTIONS(3175), - [anon_sym_super_AT] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_hex_literal] = ACTIONS(3175), - [sym_bin_literal] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3175), - }, - [467] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_object] = ACTIONS(3159), - [anon_sym_fun] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_super] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_null] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3161), - [anon_sym_continue_AT] = ACTIONS(3161), - [anon_sym_break_AT] = ACTIONS(3161), - [anon_sym_this_AT] = ACTIONS(3161), - [anon_sym_super_AT] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_hex_literal] = ACTIONS(3161), - [sym_bin_literal] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3161), - }, - [468] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1686), [anon_sym_COMMA] = ACTIONS(3143), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), @@ -100947,8 +100850,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(3141), [anon_sym_this] = ACTIONS(3141), [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), [anon_sym_in] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), @@ -100963,7 +100866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3141), [anon_sym_continue] = ACTIONS(3141), [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1712), [anon_sym_BANG_EQ] = ACTIONS(3141), [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), [anon_sym_EQ_EQ] = ACTIONS(3141), @@ -100975,13 +100878,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(3141), [anon_sym_sealed] = ACTIONS(3141), [anon_sym_annotation] = ACTIONS(3141), @@ -101023,1306 +100926,1672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3143), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1712), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3143), }, - [469] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_fun] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3148), - [anon_sym_super] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_when] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [anon_sym_this_AT] = ACTIONS(3150), - [anon_sym_super_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3148), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3148), - [anon_sym_false] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(1764), + [466] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_fun] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3100), + [anon_sym_super] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_null] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_when] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3102), + [anon_sym_continue_AT] = ACTIONS(3102), + [anon_sym_break_AT] = ACTIONS(3102), + [anon_sym_this_AT] = ACTIONS(3102), + [anon_sym_super_AT] = ACTIONS(3102), + [sym_real_literal] = ACTIONS(3102), + [sym_integer_literal] = ACTIONS(3100), + [sym_hex_literal] = ACTIONS(3102), + [sym_bin_literal] = ACTIONS(3102), + [anon_sym_true] = ACTIONS(3100), + [anon_sym_false] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3102), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3102), + }, + [467] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_fun] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_super] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_null] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_annotation] = ACTIONS(3137), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_lateinit] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_tailrec] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_infix] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym_external] = ACTIONS(3137), + [sym_property_modifier] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_final] = ACTIONS(3137), + [anon_sym_open] = ACTIONS(3137), + [anon_sym_vararg] = ACTIONS(3137), + [anon_sym_noinline] = ACTIONS(3137), + [anon_sym_crossinline] = ACTIONS(3137), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3139), + [anon_sym_continue_AT] = ACTIONS(3139), + [anon_sym_break_AT] = ACTIONS(3139), + [anon_sym_this_AT] = ACTIONS(3139), + [anon_sym_super_AT] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_hex_literal] = ACTIONS(3139), + [sym_bin_literal] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3139), + }, + [468] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3076), + [anon_sym_super] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_when] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3078), + [anon_sym_continue_AT] = ACTIONS(3078), + [anon_sym_break_AT] = ACTIONS(3078), + [anon_sym_this_AT] = ACTIONS(3078), + [anon_sym_super_AT] = ACTIONS(3078), + [sym_real_literal] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(3076), + [sym_hex_literal] = ACTIONS(3078), + [sym_bin_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3078), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(1712), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym__string_start] = ACTIONS(3078), + }, + [469] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_object] = ACTIONS(3050), + [anon_sym_fun] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_super] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_when] = ACTIONS(3050), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3052), + [anon_sym_continue_AT] = ACTIONS(3052), + [anon_sym_break_AT] = ACTIONS(3052), + [anon_sym_this_AT] = ACTIONS(3052), + [anon_sym_super_AT] = ACTIONS(3052), + [sym_real_literal] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [sym_hex_literal] = ACTIONS(3052), + [sym_bin_literal] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3052), }, [470] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3133), - [anon_sym_super] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_when] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_throw] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3135), - [anon_sym_continue_AT] = ACTIONS(3135), - [anon_sym_break_AT] = ACTIONS(3135), - [anon_sym_this_AT] = ACTIONS(3135), - [anon_sym_super_AT] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3135), - [sym_integer_literal] = ACTIONS(3133), - [sym_hex_literal] = ACTIONS(3135), - [sym_bin_literal] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3135), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3135), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3080), + [anon_sym_super] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_when] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3082), + [anon_sym_continue_AT] = ACTIONS(3082), + [anon_sym_break_AT] = ACTIONS(3082), + [anon_sym_this_AT] = ACTIONS(3082), + [anon_sym_super_AT] = ACTIONS(3082), + [sym_real_literal] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(3080), + [sym_hex_literal] = ACTIONS(3082), + [sym_bin_literal] = ACTIONS(3082), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3082), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3082), }, [471] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_fun] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_null] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_when] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3127), - [anon_sym_continue_AT] = ACTIONS(3127), - [anon_sym_break_AT] = ACTIONS(3127), - [anon_sym_this_AT] = ACTIONS(3127), - [anon_sym_super_AT] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3127), - [sym_integer_literal] = ACTIONS(3125), - [sym_hex_literal] = ACTIONS(3127), - [sym_bin_literal] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3127), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_object] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3072), + [anon_sym_super] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_when] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_throw] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3072), + [anon_sym_sealed] = ACTIONS(3072), + [anon_sym_annotation] = ACTIONS(3072), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3072), + [anon_sym_lateinit] = ACTIONS(3072), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_internal] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_tailrec] = ACTIONS(3072), + [anon_sym_operator] = ACTIONS(3072), + [anon_sym_infix] = ACTIONS(3072), + [anon_sym_inline] = ACTIONS(3072), + [anon_sym_external] = ACTIONS(3072), + [sym_property_modifier] = ACTIONS(3072), + [anon_sym_abstract] = ACTIONS(3072), + [anon_sym_final] = ACTIONS(3072), + [anon_sym_open] = ACTIONS(3072), + [anon_sym_vararg] = ACTIONS(3072), + [anon_sym_noinline] = ACTIONS(3072), + [anon_sym_crossinline] = ACTIONS(3072), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3074), + [anon_sym_continue_AT] = ACTIONS(3074), + [anon_sym_break_AT] = ACTIONS(3074), + [anon_sym_this_AT] = ACTIONS(3074), + [anon_sym_super_AT] = ACTIONS(3074), + [sym_real_literal] = ACTIONS(3074), + [sym_integer_literal] = ACTIONS(3072), + [sym_hex_literal] = ACTIONS(3074), + [sym_bin_literal] = ACTIONS(3074), + [anon_sym_true] = ACTIONS(3072), + [anon_sym_false] = ACTIONS(3072), + [anon_sym_SQUOTE] = ACTIONS(3074), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3074), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3074), }, [472] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3185), - [anon_sym_super] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_when] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3185), - [anon_sym_sealed] = ACTIONS(3185), - [anon_sym_annotation] = ACTIONS(3185), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_lateinit] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_internal] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_tailrec] = ACTIONS(3185), - [anon_sym_operator] = ACTIONS(3185), - [anon_sym_infix] = ACTIONS(3185), - [anon_sym_inline] = ACTIONS(3185), - [anon_sym_external] = ACTIONS(3185), - [sym_property_modifier] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_final] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_vararg] = ACTIONS(3185), - [anon_sym_noinline] = ACTIONS(3185), - [anon_sym_crossinline] = ACTIONS(3185), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3187), - [anon_sym_continue_AT] = ACTIONS(3187), - [anon_sym_break_AT] = ACTIONS(3187), - [anon_sym_this_AT] = ACTIONS(3187), - [anon_sym_super_AT] = ACTIONS(3187), - [sym_real_literal] = ACTIONS(3187), - [sym_integer_literal] = ACTIONS(3185), - [sym_hex_literal] = ACTIONS(3187), - [sym_bin_literal] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3187), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3187), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3187), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), }, [473] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_fun] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3152), - [anon_sym_super] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_when] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3154), - [anon_sym_continue_AT] = ACTIONS(3154), - [anon_sym_break_AT] = ACTIONS(3154), - [anon_sym_this_AT] = ACTIONS(3154), - [anon_sym_super_AT] = ACTIONS(3154), - [sym_real_literal] = ACTIONS(3154), - [sym_integer_literal] = ACTIONS(3152), - [sym_hex_literal] = ACTIONS(3154), - [sym_bin_literal] = ACTIONS(3154), - [anon_sym_true] = ACTIONS(3152), - [anon_sym_false] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(1764), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_fun] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_super] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_when] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3132), + [anon_sym_continue_AT] = ACTIONS(3132), + [anon_sym_break_AT] = ACTIONS(3132), + [anon_sym_this_AT] = ACTIONS(3132), + [anon_sym_super_AT] = ACTIONS(3132), + [sym_real_literal] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(3130), + [sym_hex_literal] = ACTIONS(3132), + [sym_bin_literal] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(1712), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3154), + [sym__string_start] = ACTIONS(3132), }, [474] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_object] = ACTIONS(3110), - [anon_sym_fun] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_super] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_when] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3112), - [anon_sym_continue_AT] = ACTIONS(3112), - [anon_sym_break_AT] = ACTIONS(3112), - [anon_sym_this_AT] = ACTIONS(3112), - [anon_sym_super_AT] = ACTIONS(3112), - [sym_real_literal] = ACTIONS(3112), - [sym_integer_literal] = ACTIONS(3110), - [sym_hex_literal] = ACTIONS(3112), - [sym_bin_literal] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3112), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_object] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3115), + [anon_sym_super] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_when] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3117), + [anon_sym_continue_AT] = ACTIONS(3117), + [anon_sym_break_AT] = ACTIONS(3117), + [anon_sym_this_AT] = ACTIONS(3117), + [anon_sym_super_AT] = ACTIONS(3117), + [sym_real_literal] = ACTIONS(3117), + [sym_integer_literal] = ACTIONS(3115), + [sym_hex_literal] = ACTIONS(3117), + [sym_bin_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(3115), + [anon_sym_false] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3117), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3117), }, [475] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_fun] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_super] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [anon_sym_this_AT] = ACTIONS(3108), - [anon_sym_super_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3106), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_fun] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_super] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3113), + [anon_sym_continue_AT] = ACTIONS(3113), + [anon_sym_break_AT] = ACTIONS(3113), + [anon_sym_this_AT] = ACTIONS(3113), + [anon_sym_super_AT] = ACTIONS(3113), + [sym_real_literal] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_hex_literal] = ACTIONS(3113), + [sym_bin_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3113), }, [476] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_object] = ACTIONS(3122), + [anon_sym_fun] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_super] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [anon_sym_this_AT] = ACTIONS(3124), + [anon_sym_super_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), }, [477] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1944), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(1948), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1948), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1950), - [anon_sym_LT_EQ] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1952), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_fun] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_super] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_when] = ACTIONS(3057), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3059), + [anon_sym_continue_AT] = ACTIONS(3059), + [anon_sym_break_AT] = ACTIONS(3059), + [anon_sym_this_AT] = ACTIONS(3059), + [anon_sym_super_AT] = ACTIONS(3059), + [sym_real_literal] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(3057), + [sym_hex_literal] = ACTIONS(3059), + [sym_bin_literal] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3059), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3059), }, [478] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1782), - [sym__comparison_operator] = STATE(1714), - [sym__in_operator] = STATE(1796), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1801), - [sym__multiplicative_operator] = STATE(1802), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1804), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_fun] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3121), - [anon_sym_super] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(1936), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(1938), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_QMARK_COLON] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_when] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(1954), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1936), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3123), - [anon_sym_continue_AT] = ACTIONS(3123), - [anon_sym_break_AT] = ACTIONS(3123), - [anon_sym_this_AT] = ACTIONS(3123), - [anon_sym_super_AT] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3123), - [sym_integer_literal] = ACTIONS(3121), - [sym_hex_literal] = ACTIONS(3123), - [sym_bin_literal] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3123), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3123), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1925), + [sym__comparison_operator] = STATE(1924), + [sym__in_operator] = STATE(1923), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1921), + [sym__multiplicative_operator] = STATE(1920), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1919), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1878), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_fun] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_super] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(1886), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_QMARK_COLON] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1894), + [anon_sym_PIPE_PIPE] = ACTIONS(1896), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1900), + [anon_sym_EQ_EQ] = ACTIONS(1898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1900), + [anon_sym_LT_EQ] = ACTIONS(1902), + [anon_sym_GT_EQ] = ACTIONS(1902), + [anon_sym_BANGin] = ACTIONS(1904), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_SLASH] = ACTIONS(1908), + [anon_sym_PERCENT] = ACTIONS(1886), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3128), + [anon_sym_continue_AT] = ACTIONS(3128), + [anon_sym_break_AT] = ACTIONS(3128), + [anon_sym_this_AT] = ACTIONS(3128), + [anon_sym_super_AT] = ACTIONS(3128), + [sym_real_literal] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_hex_literal] = ACTIONS(3128), + [sym_bin_literal] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3128), }, [479] = { - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1760), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102347,103 +102616,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [480] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102468,103 +102737,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, [481] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_property_delegate] = STATE(580), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(3372), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102589,103 +102858,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [482] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_property_delegate] = STATE(574), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102710,103 +102979,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [483] = { - [sym_getter] = STATE(3094), - [sym_setter] = STATE(3094), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -102831,103 +103100,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [484] = { - [sym_getter] = STATE(3106), - [sym_setter] = STATE(3106), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1774), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [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), @@ -102952,103 +103221,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [485] = { - [sym_property_delegate] = STATE(553), - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103073,103 +103342,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [486] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1744), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1782), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [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), @@ -103194,103 +103463,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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(3117), - [sym_setter] = STATE(3117), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103315,103 +103584,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [488] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103436,103 +103705,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [489] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1780), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103557,103 +103826,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [490] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103678,103 +103947,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [491] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -103799,103 +104068,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [492] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1812), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_property_delegate] = STATE(547), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [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), @@ -103920,103 +104189,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [493] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104041,103 +104310,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [494] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1692), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104162,103 +104431,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [495] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1748), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104283,103 +104552,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [496] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(1094), + [sym_setter] = STATE(1094), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [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), @@ -104404,103 +104673,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, [497] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1806), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(1066), + [sym_setter] = STATE(1066), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104525,103 +104794,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, [498] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [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), @@ -104646,103 +104915,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [499] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_property_delegate] = STATE(549), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104767,103 +105036,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [500] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1814), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -104888,103 +105157,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [501] = { - [sym_getter] = STATE(1105), - [sym_setter] = STATE(1105), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105009,103 +105278,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [502] = { - [sym_getter] = STATE(1153), - [sym_setter] = STATE(1153), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [sym_property_delegate] = STATE(584), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [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), @@ -105130,103 +105399,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [503] = { - [sym_property_delegate] = STATE(594), - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_property_delegate] = STATE(586), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105251,103 +105520,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [504] = { - [sym_property_delegate] = STATE(595), - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3418), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_property_delegate] = STATE(590), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105372,103 +105641,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [505] = { - [sym_property_delegate] = STATE(551), - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3406), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105493,103 +105762,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [506] = { - [sym_property_delegate] = STATE(579), - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_property_delegate] = STATE(556), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105614,103 +105883,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [507] = { - [sym_property_delegate] = STATE(578), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3394), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3396), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [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), @@ -105735,103 +106004,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [508] = { - [sym_property_delegate] = STATE(576), - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3402), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105856,103 +106125,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [509] = { - [sym_property_delegate] = STATE(567), - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3398), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -105977,103 +106246,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [510] = { - [sym_property_delegate] = STATE(561), - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_property_delegate] = STATE(582), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106098,103 +106367,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [511] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(3106), + [sym_setter] = STATE(3106), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [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), @@ -106219,103 +106488,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, [512] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9218), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106340,103 +106609,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [513] = { - [sym_property_delegate] = STATE(548), - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3426), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3380), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_property_delegate] = STATE(545), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106461,103 +106730,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [514] = { - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9230), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106582,103 +106851,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [515] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1820), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106703,103 +106972,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [516] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9245), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1832), - [anon_sym_get] = ACTIONS(3338), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_modifiers] = STATE(9246), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -106824,898 +107093,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [517] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_fun] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_super] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_when] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_tailrec] = ACTIONS(3166), - [anon_sym_operator] = ACTIONS(3166), - [anon_sym_infix] = ACTIONS(3166), - [anon_sym_inline] = ACTIONS(3166), - [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [anon_sym_this_AT] = ACTIONS(3168), - [anon_sym_super_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3166), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), - }, - [518] = { - [sym_primary_constructor] = STATE(1327), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(558), - [sym_type_constraints] = STATE(983), - [sym_enum_class_body] = STATE(1137), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [519] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_super] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3175), - [anon_sym_continue_AT] = ACTIONS(3175), - [anon_sym_break_AT] = ACTIONS(3175), - [anon_sym_this_AT] = ACTIONS(3175), - [anon_sym_super_AT] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_hex_literal] = ACTIONS(3175), - [sym_bin_literal] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3175), - }, - [520] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_fun] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3137), - [anon_sym_super] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_when] = ACTIONS(3137), - [anon_sym_try] = ACTIONS(3137), - [anon_sym_throw] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3139), - [anon_sym_continue_AT] = ACTIONS(3139), - [anon_sym_break_AT] = ACTIONS(3139), - [anon_sym_this_AT] = ACTIONS(3139), - [anon_sym_super_AT] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3139), - [sym_integer_literal] = ACTIONS(3137), - [sym_hex_literal] = ACTIONS(3139), - [sym_bin_literal] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_SQUOTE] = ACTIONS(3139), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3139), - }, - [521] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, - [522] = { - [sym_primary_constructor] = STATE(3703), - [sym_class_body] = STATE(3136), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(581), - [sym_type_constraints] = STATE(3044), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3430), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_fun] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3244), - [anon_sym_super] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_when] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3248), - [anon_sym_continue_AT] = ACTIONS(3248), - [anon_sym_break_AT] = ACTIONS(3248), - [anon_sym_this_AT] = ACTIONS(3248), - [anon_sym_super_AT] = ACTIONS(3248), - [sym_real_literal] = ACTIONS(3248), - [sym_integer_literal] = ACTIONS(3244), - [sym_hex_literal] = ACTIONS(3248), - [sym_bin_literal] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3244), - [anon_sym_false] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3248), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), - }, - [523] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_object] = ACTIONS(3159), - [anon_sym_fun] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_super] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_null] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3161), - [anon_sym_continue_AT] = ACTIONS(3161), - [anon_sym_break_AT] = ACTIONS(3161), - [anon_sym_this_AT] = ACTIONS(3161), - [anon_sym_super_AT] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_hex_literal] = ACTIONS(3161), - [sym_bin_literal] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3161), - }, - [524] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), + [517] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1686), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), [anon_sym_object] = ACTIONS(3141), @@ -107725,8 +107154,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(3141), [anon_sym_this] = ACTIONS(3141), [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), [anon_sym_in] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), @@ -107741,7 +107170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3141), [anon_sym_continue] = ACTIONS(3141), [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(1712), [anon_sym_BANG_EQ] = ACTIONS(3141), [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), [anon_sym_EQ_EQ] = ACTIONS(3141), @@ -107753,13 +107182,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(1782), + [anon_sym_BANG_BANG] = ACTIONS(1730), [anon_sym_suspend] = ACTIONS(3141), [anon_sym_sealed] = ACTIONS(3141), [anon_sym_annotation] = ACTIONS(3141), @@ -107801,57 +107230,1137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3143), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(1712), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3143), }, + [518] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_fun] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_super] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_null] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_annotation] = ACTIONS(3137), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_lateinit] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_tailrec] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_infix] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym_external] = ACTIONS(3137), + [sym_property_modifier] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_final] = ACTIONS(3137), + [anon_sym_open] = ACTIONS(3137), + [anon_sym_vararg] = ACTIONS(3137), + [anon_sym_noinline] = ACTIONS(3137), + [anon_sym_crossinline] = ACTIONS(3137), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3139), + [anon_sym_continue_AT] = ACTIONS(3139), + [anon_sym_break_AT] = ACTIONS(3139), + [anon_sym_this_AT] = ACTIONS(3139), + [anon_sym_super_AT] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_hex_literal] = ACTIONS(3139), + [sym_bin_literal] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3139), + }, + [519] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3122), + [anon_sym_fun] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_super] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [anon_sym_this_AT] = ACTIONS(3124), + [anon_sym_super_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [520] = { + [sym_primary_constructor] = STATE(1303), + [sym_class_body] = STATE(1086), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(577), + [sym_type_constraints] = STATE(933), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3186), + [anon_sym_continue_AT] = ACTIONS(3186), + [anon_sym_break_AT] = ACTIONS(3186), + [anon_sym_this_AT] = ACTIONS(3186), + [anon_sym_super_AT] = ACTIONS(3186), + [sym_real_literal] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3186), + [sym_bin_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3186), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3186), + }, + [521] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_fun] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_super] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3113), + [anon_sym_continue_AT] = ACTIONS(3113), + [anon_sym_break_AT] = ACTIONS(3113), + [anon_sym_this_AT] = ACTIONS(3113), + [anon_sym_super_AT] = ACTIONS(3113), + [sym_real_literal] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_hex_literal] = ACTIONS(3113), + [sym_bin_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3113), + }, + [522] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3044), + [anon_sym_fun] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [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(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3046), + [anon_sym_continue_AT] = ACTIONS(3046), + [anon_sym_break_AT] = ACTIONS(3046), + [anon_sym_this_AT] = ACTIONS(3046), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3046), + }, + [523] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [524] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_object] = ACTIONS(3050), + [anon_sym_fun] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_super] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_when] = ACTIONS(3050), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3052), + [anon_sym_continue_AT] = ACTIONS(3052), + [anon_sym_break_AT] = ACTIONS(3052), + [anon_sym_this_AT] = ACTIONS(3052), + [anon_sym_super_AT] = ACTIONS(3052), + [sym_real_literal] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [sym_hex_literal] = ACTIONS(3052), + [sym_bin_literal] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3052), + }, [525] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_fun] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3100), + [anon_sym_super] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_null] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_when] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3102), + [anon_sym_continue_AT] = ACTIONS(3102), + [anon_sym_break_AT] = ACTIONS(3102), + [anon_sym_this_AT] = ACTIONS(3102), + [anon_sym_super_AT] = ACTIONS(3102), + [sym_real_literal] = ACTIONS(3102), + [sym_integer_literal] = ACTIONS(3100), + [sym_hex_literal] = ACTIONS(3102), + [sym_bin_literal] = ACTIONS(3102), + [anon_sym_true] = ACTIONS(3100), + [anon_sym_false] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3102), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3102), + }, + [526] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), + }, + [527] = { + [sym_primary_constructor] = STATE(1300), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(592), + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1123), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3194), [anon_sym_object] = ACTIONS(3148), [anon_sym_fun] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), [anon_sym_this] = ACTIONS(3148), [anon_sym_super] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), [anon_sym_null] = ACTIONS(3148), [anon_sym_if] = ACTIONS(3148), [anon_sym_else] = ACTIONS(3148), @@ -107861,1011 +108370,1011 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3148), [anon_sym_continue] = ACTIONS(3148), [anon_sym_break] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [anon_sym_this_AT] = ACTIONS(3150), - [anon_sym_super_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), [sym_integer_literal] = ACTIONS(3148), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), [anon_sym_true] = ACTIONS(3148), [anon_sym_false] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(1764), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), - }, - [526] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), - }, - [527] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_fun] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3121), - [anon_sym_super] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_when] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3123), - [anon_sym_continue_AT] = ACTIONS(3123), - [anon_sym_break_AT] = ACTIONS(3123), - [anon_sym_this_AT] = ACTIONS(3123), - [anon_sym_super_AT] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3123), - [sym_integer_literal] = ACTIONS(3121), - [sym_hex_literal] = ACTIONS(3123), - [sym_bin_literal] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3123), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3123), + [sym__string_start] = ACTIONS(3154), }, [528] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_fun] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_null] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_when] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3127), - [anon_sym_continue_AT] = ACTIONS(3127), - [anon_sym_break_AT] = ACTIONS(3127), - [anon_sym_this_AT] = ACTIONS(3127), - [anon_sym_super_AT] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3127), - [sym_integer_literal] = ACTIONS(3125), - [sym_hex_literal] = ACTIONS(3127), - [sym_bin_literal] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3127), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_object] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3115), + [anon_sym_super] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_when] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3117), + [anon_sym_continue_AT] = ACTIONS(3117), + [anon_sym_break_AT] = ACTIONS(3117), + [anon_sym_this_AT] = ACTIONS(3117), + [anon_sym_super_AT] = ACTIONS(3117), + [sym_real_literal] = ACTIONS(3117), + [sym_integer_literal] = ACTIONS(3115), + [sym_hex_literal] = ACTIONS(3117), + [sym_bin_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(3115), + [anon_sym_false] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3117), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3117), }, [529] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_fun] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_super] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3131), - [anon_sym_continue_AT] = ACTIONS(3131), - [anon_sym_break_AT] = ACTIONS(3131), - [anon_sym_this_AT] = ACTIONS(3131), - [anon_sym_super_AT] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_hex_literal] = ACTIONS(3131), - [sym_bin_literal] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3131), + [sym_primary_constructor] = STATE(3693), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(566), + [sym_type_constraints] = STATE(2993), + [sym_enum_class_body] = STATE(3250), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = 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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [anon_sym_this_AT] = ACTIONS(3200), + [anon_sym_super_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), }, [530] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3133), - [anon_sym_super] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_when] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_throw] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3135), - [anon_sym_continue_AT] = ACTIONS(3135), - [anon_sym_break_AT] = ACTIONS(3135), - [anon_sym_this_AT] = ACTIONS(3135), - [anon_sym_super_AT] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3135), - [sym_integer_literal] = ACTIONS(3133), - [sym_hex_literal] = ACTIONS(3135), - [sym_bin_literal] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3135), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3135), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_fun] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_super] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3128), + [anon_sym_continue_AT] = ACTIONS(3128), + [anon_sym_break_AT] = ACTIONS(3128), + [anon_sym_this_AT] = ACTIONS(3128), + [anon_sym_super_AT] = ACTIONS(3128), + [sym_real_literal] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_hex_literal] = ACTIONS(3128), + [sym_bin_literal] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3128), }, [531] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3110), - [anon_sym_fun] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_super] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_when] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3112), - [anon_sym_continue_AT] = ACTIONS(3112), - [anon_sym_break_AT] = ACTIONS(3112), - [anon_sym_this_AT] = ACTIONS(3112), - [anon_sym_super_AT] = ACTIONS(3112), - [sym_real_literal] = ACTIONS(3112), - [sym_integer_literal] = ACTIONS(3110), - [sym_hex_literal] = ACTIONS(3112), - [sym_bin_literal] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3112), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), }, [532] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_fun] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_super] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [anon_sym_this_AT] = ACTIONS(3108), - [anon_sym_super_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3106), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3080), + [anon_sym_super] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_when] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3082), + [anon_sym_continue_AT] = ACTIONS(3082), + [anon_sym_break_AT] = ACTIONS(3082), + [anon_sym_this_AT] = ACTIONS(3082), + [anon_sym_super_AT] = ACTIONS(3082), + [sym_real_literal] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(3080), + [sym_hex_literal] = ACTIONS(3082), + [sym_bin_literal] = ACTIONS(3082), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3082), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3082), }, [533] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [534] = { + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_fun] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_super] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_when] = ACTIONS(3057), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3059), + [anon_sym_continue_AT] = ACTIONS(3059), + [anon_sym_break_AT] = ACTIONS(3059), + [anon_sym_this_AT] = ACTIONS(3059), + [anon_sym_super_AT] = ACTIONS(3059), + [sym_real_literal] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(3057), + [sym_hex_literal] = ACTIONS(3059), + [sym_bin_literal] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3059), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3059), + }, + [535] = { + [sym_primary_constructor] = STATE(3674), + [sym_class_body] = STATE(3183), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(567), + [sym_type_constraints] = STATE(2979), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_fun] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3152), - [anon_sym_super] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_null] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_when] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3148), [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), [anon_sym_LT_EQ] = ACTIONS(3154), [anon_sym_GT_EQ] = ACTIONS(3154), [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3148), [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3154), [anon_sym_continue_AT] = ACTIONS(3154), @@ -108873,1172 +109382,932 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(3154), [anon_sym_super_AT] = ACTIONS(3154), [sym_real_literal] = ACTIONS(3154), - [sym_integer_literal] = ACTIONS(3152), + [sym_integer_literal] = ACTIONS(3148), [sym_hex_literal] = ACTIONS(3154), [sym_bin_literal] = ACTIONS(3154), - [anon_sym_true] = ACTIONS(3152), - [anon_sym_false] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(3154), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(1764), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3154), }, - [534] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_super] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_when] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3096), - [anon_sym_continue_AT] = ACTIONS(3096), - [anon_sym_break_AT] = ACTIONS(3096), - [anon_sym_this_AT] = ACTIONS(3096), - [anon_sym_super_AT] = ACTIONS(3096), - [sym_real_literal] = ACTIONS(3096), - [sym_integer_literal] = ACTIONS(3094), - [sym_hex_literal] = ACTIONS(3096), - [sym_bin_literal] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3096), - }, - [535] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(1998), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(2008), - [anon_sym_DOT_DOT] = ACTIONS(2010), - [anon_sym_QMARK_COLON] = ACTIONS(2012), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_BANGin] = ACTIONS(2024), - [anon_sym_is] = ACTIONS(1774), - [anon_sym_BANGis] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), - }, [536] = { - [sym_indexing_suffix] = STATE(1110), - [sym_navigation_suffix] = STATE(1112), - [sym_call_suffix] = STATE(1113), - [sym_annotated_lambda] = STATE(1116), - [sym_type_arguments] = STATE(8214), - [sym_value_arguments] = STATE(762), - [sym_lambda_literal] = STATE(1118), - [sym__equality_operator] = STATE(1442), - [sym__comparison_operator] = STATE(1441), - [sym__in_operator] = STATE(1440), - [sym__is_operator] = STATE(6276), - [sym__additive_operator] = STATE(1439), - [sym__multiplicative_operator] = STATE(1438), - [sym__as_operator] = STATE(6275), - [sym__postfix_unary_operator] = STATE(1119), - [sym__member_access_operator] = STATE(7641), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1437), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1728), - [anon_sym_DOT] = ACTIONS(1730), - [anon_sym_as] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_fun] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3193), - [anon_sym_super] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(2006), - [sym_label] = ACTIONS(1752), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(1764), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(2026), - [anon_sym_DASH] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_as_QMARK] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_BANG_BANG] = ACTIONS(1782), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3195), - [anon_sym_continue_AT] = ACTIONS(3195), - [anon_sym_break_AT] = ACTIONS(3195), - [anon_sym_this_AT] = ACTIONS(3195), - [anon_sym_super_AT] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_hex_literal] = ACTIONS(3195), - [sym_bin_literal] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(1764), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3195), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_fun] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_super] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_when] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3132), + [anon_sym_continue_AT] = ACTIONS(3132), + [anon_sym_break_AT] = ACTIONS(3132), + [anon_sym_this_AT] = ACTIONS(3132), + [anon_sym_super_AT] = ACTIONS(3132), + [sym_real_literal] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(3130), + [sym_hex_literal] = ACTIONS(3132), + [sym_bin_literal] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3132), }, [537] = { - [sym_primary_constructor] = STATE(1343), - [sym_class_body] = STATE(1145), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(562), - [sym_type_constraints] = STATE(930), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_fun] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3244), - [anon_sym_super] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_when] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3248), - [anon_sym_continue_AT] = ACTIONS(3248), - [anon_sym_break_AT] = ACTIONS(3248), - [anon_sym_this_AT] = ACTIONS(3248), - [anon_sym_super_AT] = ACTIONS(3248), - [sym_real_literal] = ACTIONS(3248), - [sym_integer_literal] = ACTIONS(3244), - [sym_hex_literal] = ACTIONS(3248), - [sym_bin_literal] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3244), - [anon_sym_false] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3248), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3061), + [anon_sym_fun] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3061), + [anon_sym_super] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(1962), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_null] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_when] = ACTIONS(3061), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3063), + [anon_sym_continue_AT] = ACTIONS(3063), + [anon_sym_break_AT] = ACTIONS(3063), + [anon_sym_this_AT] = ACTIONS(3063), + [anon_sym_super_AT] = ACTIONS(3063), + [sym_real_literal] = ACTIONS(3063), + [sym_integer_literal] = ACTIONS(3061), + [sym_hex_literal] = ACTIONS(3063), + [sym_bin_literal] = ACTIONS(3063), + [anon_sym_true] = ACTIONS(3061), + [anon_sym_false] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3063), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3063), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3063), }, [538] = { - [sym_primary_constructor] = STATE(3701), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(573), - [sym_type_constraints] = STATE(3036), - [sym_enum_class_body] = STATE(3177), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [sym_primary_constructor] = STATE(3671), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(551), + [sym_type_constraints] = STATE(3006), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3384), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, [539] = { - [sym_primary_constructor] = STATE(3699), - [sym_class_body] = STATE(3177), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(570), - [sym_type_constraints] = STATE(3025), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [sym_primary_constructor] = STATE(1299), + [sym_class_body] = STATE(1123), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(594), + [sym_type_constraints] = STATE(940), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, [540] = { - [sym_primary_constructor] = STATE(3696), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(569), - [sym_type_constraints] = STATE(3013), - [sym_enum_class_body] = STATE(3243), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3438), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_fun] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_super] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3238), - [anon_sym_continue_AT] = ACTIONS(3238), - [anon_sym_break_AT] = ACTIONS(3238), - [anon_sym_this_AT] = ACTIONS(3238), - [anon_sym_super_AT] = ACTIONS(3238), - [sym_real_literal] = ACTIONS(3238), - [sym_integer_literal] = ACTIONS(3234), - [sym_hex_literal] = ACTIONS(3238), - [sym_bin_literal] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), + [sym_primary_constructor] = STATE(3665), + [sym_class_body] = STATE(3140), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(571), + [sym_type_constraints] = STATE(3024), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3186), + [anon_sym_continue_AT] = ACTIONS(3186), + [anon_sym_break_AT] = ACTIONS(3186), + [anon_sym_this_AT] = ACTIONS(3186), + [anon_sym_super_AT] = ACTIONS(3186), + [sym_real_literal] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3186), + [sym_bin_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3186), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3186), }, [541] = { - [sym_primary_constructor] = STATE(1326), - [sym_class_body] = STATE(1137), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(556), - [sym_type_constraints] = STATE(935), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [sym_indexing_suffix] = STATE(1085), + [sym_navigation_suffix] = STATE(1084), + [sym_call_suffix] = STATE(1083), + [sym_annotated_lambda] = STATE(1082), + [sym_type_arguments] = STATE(8163), + [sym_value_arguments] = STATE(794), + [sym_lambda_literal] = STATE(1080), + [sym__equality_operator] = STATE(1723), + [sym__comparison_operator] = STATE(1722), + [sym__in_operator] = STATE(1721), + [sym__is_operator] = STATE(6240), + [sym__additive_operator] = STATE(1720), + [sym__multiplicative_operator] = STATE(1718), + [sym__as_operator] = STATE(6238), + [sym__postfix_unary_operator] = STATE(1079), + [sym__member_access_operator] = STATE(7608), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1717), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_DOT] = ACTIONS(1678), + [anon_sym_as] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(1946), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3076), + [anon_sym_super] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(1954), + [sym_label] = ACTIONS(1700), + [anon_sym_in] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_QMARK_COLON] = ACTIONS(1960), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_when] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(1712), + [anon_sym_BANG_EQ] = ACTIONS(1966), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1968), + [anon_sym_EQ_EQ] = ACTIONS(1966), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1968), + [anon_sym_LT_EQ] = ACTIONS(1970), + [anon_sym_GT_EQ] = ACTIONS(1970), + [anon_sym_BANGin] = ACTIONS(1972), + [anon_sym_is] = ACTIONS(1722), + [anon_sym_BANGis] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_as_QMARK] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(1730), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3078), + [anon_sym_continue_AT] = ACTIONS(3078), + [anon_sym_break_AT] = ACTIONS(3078), + [anon_sym_this_AT] = ACTIONS(3078), + [anon_sym_super_AT] = ACTIONS(3078), + [sym_real_literal] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(3076), + [sym_hex_literal] = ACTIONS(3078), + [sym_bin_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3078), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(1712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3078), }, [542] = { - [sym_primary_constructor] = STATE(1323), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(554), - [sym_type_constraints] = STATE(957), - [sym_enum_class_body] = STATE(1127), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3442), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_fun] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_super] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3238), - [anon_sym_continue_AT] = ACTIONS(3238), - [anon_sym_break_AT] = ACTIONS(3238), - [anon_sym_this_AT] = ACTIONS(3238), - [anon_sym_super_AT] = ACTIONS(3238), - [sym_real_literal] = ACTIONS(3238), - [sym_integer_literal] = ACTIONS(3234), - [sym_hex_literal] = ACTIONS(3238), - [sym_bin_literal] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), + [sym_primary_constructor] = STATE(1360), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(572), + [sym_type_constraints] = STATE(956), + [sym_enum_class_body] = STATE(1180), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = 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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [anon_sym_this_AT] = ACTIONS(3200), + [anon_sym_super_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), }, [543] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110063,220 +110332,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [544] = { - [sym_primary_constructor] = STATE(1422), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(610), - [sym_type_constraints] = STATE(957), - [sym_enum_class_body] = STATE(1127), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_fun] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_super] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3238), - [anon_sym_continue_AT] = ACTIONS(3238), - [anon_sym_break_AT] = ACTIONS(3238), - [anon_sym_this_AT] = ACTIONS(3238), - [anon_sym_super_AT] = ACTIONS(3238), - [sym_real_literal] = ACTIONS(3238), - [sym_integer_literal] = ACTIONS(3234), - [sym_hex_literal] = ACTIONS(3238), - [sym_bin_literal] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), - }, - [545] = { - [sym_getter] = STATE(3094), - [sym_setter] = STATE(3094), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110301,101 +110451,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [546] = { - [sym_getter] = STATE(3106), - [sym_setter] = STATE(3106), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [545] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1846), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [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), @@ -110420,101 +110570,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [547] = { - [sym_type_constraints] = STATE(620), - [sym_property_delegate] = STATE(672), - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3446), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_super] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [546] = { + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110539,101 +110689,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3350), - [anon_sym_continue_AT] = ACTIONS(3350), - [anon_sym_break_AT] = ACTIONS(3350), - [anon_sym_this_AT] = ACTIONS(3350), - [anon_sym_super_AT] = ACTIONS(3350), - [sym_real_literal] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_hex_literal] = ACTIONS(3350), - [sym_bin_literal] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3350), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [548] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [547] = { + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110658,101 +110808,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [549] = { - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3412), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [548] = { + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110777,101 +110927,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, - [550] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [549] = { + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1832), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -110896,101 +111046,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, - [551] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1892), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [550] = { + [sym_type_constraints] = STATE(619), + [sym_property_delegate] = STATE(658), + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_fun] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3396), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_super] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_when] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111015,101 +111165,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3286), + [anon_sym_continue_AT] = ACTIONS(3286), + [anon_sym_break_AT] = ACTIONS(3286), + [anon_sym_this_AT] = ACTIONS(3286), + [anon_sym_super_AT] = ACTIONS(3286), + [sym_real_literal] = ACTIONS(3286), + [sym_integer_literal] = ACTIONS(3284), + [sym_hex_literal] = ACTIONS(3286), + [sym_bin_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3286), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3286), + }, + [551] = { + [sym_primary_constructor] = STATE(3681), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(2969), + [sym_enum_class_body] = STATE(3221), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [552] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_primary_constructor] = STATE(3795), + [sym_class_body] = STATE(3140), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(600), + [sym_type_constraints] = STATE(3024), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3186), + [anon_sym_continue_AT] = ACTIONS(3186), + [anon_sym_break_AT] = ACTIONS(3186), + [anon_sym_this_AT] = ACTIONS(3186), + [anon_sym_super_AT] = ACTIONS(3186), + [sym_real_literal] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3186), + [sym_bin_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3186), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3186), + }, + [553] = { + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111134,101 +111522,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, - [553] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [554] = { + [sym_primary_constructor] = STATE(3804), + [sym_class_body] = STATE(3183), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(599), + [sym_type_constraints] = STATE(2979), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [555] = { + [sym_type_constraints] = STATE(624), + [sym_property_delegate] = STATE(652), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111253,127 +111760,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [554] = { - [sym_primary_constructor] = STATE(1322), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(968), - [sym_enum_class_body] = STATE(1175), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3298), [anon_sym_continue_AT] = ACTIONS(3298), @@ -111381,11 +111769,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(3298), [anon_sym_super_AT] = ACTIONS(3298), [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), + [sym_integer_literal] = ACTIONS(3296), [sym_hex_literal] = ACTIONS(3298), [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), @@ -111393,80 +111781,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3298), }, - [555] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [556] = { + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111491,220 +111879,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [556] = { - [sym_primary_constructor] = STATE(1324), - [sym_class_body] = STATE(1062), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(955), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [557] = { - [sym_type_constraints] = STATE(624), - [sym_property_delegate] = STATE(654), - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(3106), + [sym_setter] = STATE(3106), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [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), @@ -111729,220 +111998,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, [558] = { - [sym_primary_constructor] = STATE(1325), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(950), - [sym_enum_class_body] = STATE(1062), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [559] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -111967,101 +112117,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, - [560] = { - [sym_type_constraints] = STATE(621), - [sym_property_delegate] = STATE(658), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3466), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [559] = { + [sym_type_constraints] = STATE(611), + [sym_property_delegate] = STATE(662), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112086,101 +112236,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [561] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [560] = { + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [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), @@ -112205,220 +112355,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [562] = { - [sym_primary_constructor] = STATE(1339), - [sym_class_body] = STATE(1102), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(986), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [563] = { - [sym_type_constraints] = STATE(623), - [sym_property_delegate] = STATE(664), - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [561] = { + [sym_type_constraints] = STATE(607), + [sym_property_delegate] = STATE(665), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112443,101 +112474,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), + }, + [562] = { + [sym_primary_constructor] = STATE(1393), + [sym_class_body] = STATE(1086), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(614), + [sym_type_constraints] = STATE(933), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3186), + [anon_sym_continue_AT] = ACTIONS(3186), + [anon_sym_break_AT] = ACTIONS(3186), + [anon_sym_this_AT] = ACTIONS(3186), + [anon_sym_super_AT] = ACTIONS(3186), + [sym_real_literal] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3186), + [sym_bin_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3186), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3186), + }, + [563] = { + [sym_primary_constructor] = STATE(1389), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(606), + [sym_type_constraints] = STATE(935), + [sym_enum_class_body] = STATE(1123), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, [564] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_primary_constructor] = STATE(1386), + [sym_class_body] = STATE(1123), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(605), + [sym_type_constraints] = STATE(940), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [565] = { + [sym_type_constraints] = STATE(598), + [sym_property_delegate] = STATE(660), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112562,101 +112950,577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [565] = { - [sym_type_constraints] = STATE(619), - [sym_property_delegate] = STATE(667), - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3476), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [566] = { + [sym_primary_constructor] = STATE(3694), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3251), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), + }, + [567] = { + [sym_primary_constructor] = STATE(3688), + [sym_class_body] = STATE(3221), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(2990), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [568] = { + [sym_primary_constructor] = STATE(1424), + [sym__class_parameters] = STATE(927), + [sym_type_parameters] = STATE(597), + [sym_type_constraints] = STATE(956), + [sym_enum_class_body] = STATE(1180), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = 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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [anon_sym_this_AT] = ACTIONS(3200), + [anon_sym_super_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), + }, + [569] = { + [sym_primary_constructor] = STATE(3812), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(621), + [sym_type_constraints] = STATE(2993), + [sym_enum_class_body] = STATE(3250), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_fun] = 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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [anon_sym_this_AT] = ACTIONS(3200), + [anon_sym_super_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), + }, + [570] = { + [sym_type_constraints] = STATE(618), + [sym_property_delegate] = STATE(647), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112681,101 +113545,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [566] = { - [sym_type_constraints] = STATE(615), - [sym_property_delegate] = STATE(656), - [sym_getter] = STATE(3148), - [sym_setter] = STATE(3148), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_super] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [571] = { + [sym_primary_constructor] = STATE(3667), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(3009), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [572] = { + [sym_primary_constructor] = STATE(1313), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1013), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), + }, + [573] = { + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112800,101 +113902,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3350), - [anon_sym_continue_AT] = ACTIONS(3350), - [anon_sym_break_AT] = ACTIONS(3350), - [anon_sym_this_AT] = ACTIONS(3350), - [anon_sym_super_AT] = ACTIONS(3350), - [sym_real_literal] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_hex_literal] = ACTIONS(3350), - [sym_bin_literal] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3350), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, - [567] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [574] = { + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1844), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -112919,101 +114021,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [568] = { - [sym_type_constraints] = STATE(597), - [sym_property_delegate] = STATE(669), - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [575] = { + [sym_type_constraints] = STATE(604), + [sym_property_delegate] = STATE(672), + [sym_getter] = STATE(1116), + [sym_setter] = STATE(1116), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_fun] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_super] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_when] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113038,339 +114140,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), - }, - [569] = { - [sym_primary_constructor] = STATE(3694), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(2999), - [sym_enum_class_body] = STATE(3248), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), - }, - [570] = { - [sym_primary_constructor] = STATE(3697), - [sym_class_body] = STATE(3214), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3014), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(3286), + [anon_sym_continue_AT] = ACTIONS(3286), + [anon_sym_break_AT] = ACTIONS(3286), + [anon_sym_this_AT] = ACTIONS(3286), + [anon_sym_super_AT] = ACTIONS(3286), + [sym_real_literal] = ACTIONS(3286), + [sym_integer_literal] = ACTIONS(3284), + [sym_hex_literal] = ACTIONS(3286), + [sym_bin_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3286), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3286), }, - [571] = { - [sym_type_constraints] = STATE(618), - [sym_property_delegate] = STATE(665), - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [576] = { + [sym_getter] = STATE(1066), + [sym_setter] = STATE(1066), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113395,101 +114259,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, - [572] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [577] = { + [sym_primary_constructor] = STATE(1316), + [sym_class_body] = STATE(1118), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(930), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [578] = { + [sym_getter] = STATE(1094), + [sym_setter] = STATE(1094), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [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), @@ -113514,220 +114497,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, - [573] = { - [sym_primary_constructor] = STATE(3698), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3022), - [sym_enum_class_body] = STATE(3214), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [579] = { + [sym_primary_constructor] = STATE(3802), + [sym__class_parameters] = STATE(3025), + [sym_type_parameters] = STATE(620), + [sym_type_constraints] = STATE(3006), + [sym_enum_class_body] = STATE(3183), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, - [574] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [580] = { + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113752,101 +114735,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, - [575] = { - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [581] = { + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113871,101 +114854,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, - [576] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1900), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [582] = { + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -113990,101 +114973,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, - [577] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [583] = { + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114109,101 +115092,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, - [578] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1884), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [584] = { + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114228,101 +115211,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [579] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [585] = { + [sym_type_constraints] = STATE(616), + [sym_property_delegate] = STATE(649), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114347,101 +115330,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [sym__string_start] = ACTIONS(3298), }, - [580] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [586] = { + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1840), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [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), @@ -114466,220 +115449,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [581] = { - [sym_primary_constructor] = STATE(3702), - [sym_class_body] = STATE(3172), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3037), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [582] = { - [sym_getter] = STATE(1105), - [sym_setter] = STATE(1105), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [587] = { + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9242), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114704,101 +115568,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [583] = { - [sym_getter] = STATE(1153), - [sym_setter] = STATE(1153), - [sym_modifiers] = STATE(9452), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3390), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [588] = { + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [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), @@ -114823,101 +115687,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [584] = { - [sym_type_constraints] = STATE(614), - [sym_property_delegate] = STATE(647), - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [589] = { + [sym_type_constraints] = STATE(603), + [sym_property_delegate] = STATE(673), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -114942,220 +115806,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [585] = { - [sym_primary_constructor] = STATE(3731), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(608), - [sym_type_constraints] = STATE(3013), - [sym_enum_class_body] = STATE(3243), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_fun] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_super] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3238), - [anon_sym_continue_AT] = ACTIONS(3238), - [anon_sym_break_AT] = ACTIONS(3238), - [anon_sym_this_AT] = ACTIONS(3238), - [anon_sym_super_AT] = ACTIONS(3238), - [sym_real_literal] = ACTIONS(3238), - [sym_integer_literal] = ACTIONS(3234), - [sym_hex_literal] = ACTIONS(3238), - [sym_bin_literal] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [586] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3396), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [590] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115180,220 +115925,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), - }, - [587] = { - [sym_primary_constructor] = STATE(1419), - [sym_class_body] = STATE(1145), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(603), - [sym_type_constraints] = STATE(930), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3500), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_fun] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3244), - [anon_sym_super] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_when] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3248), - [anon_sym_continue_AT] = ACTIONS(3248), - [anon_sym_break_AT] = ACTIONS(3248), - [anon_sym_this_AT] = ACTIONS(3248), - [anon_sym_super_AT] = ACTIONS(3248), - [sym_real_literal] = ACTIONS(3248), - [sym_integer_literal] = ACTIONS(3244), - [sym_hex_literal] = ACTIONS(3248), - [sym_bin_literal] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3244), - [anon_sym_false] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3248), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [588] = { - [sym_type_constraints] = STATE(616), - [sym_property_delegate] = STATE(661), - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3502), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [591] = { + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -115418,696 +116044,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [589] = { - [sym_primary_constructor] = STATE(3715), - [sym_class_body] = STATE(3177), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(605), - [sym_type_constraints] = STATE(3025), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [590] = { - [sym_primary_constructor] = STATE(1403), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(602), - [sym_type_constraints] = STATE(983), - [sym_enum_class_body] = STATE(1137), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [591] = { - [sym_primary_constructor] = STATE(1425), - [sym_class_body] = STATE(1137), - [sym__class_parameters] = STATE(960), - [sym_type_parameters] = STATE(600), - [sym_type_constraints] = STATE(935), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [592] = { - [sym_primary_constructor] = STATE(3711), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(604), - [sym_type_constraints] = STATE(3036), - [sym_enum_class_body] = STATE(3177), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [sym_primary_constructor] = STATE(1298), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1153), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [593] = { - [sym_primary_constructor] = STATE(3739), - [sym_class_body] = STATE(3136), - [sym__class_parameters] = STATE(3045), - [sym_type_parameters] = STATE(601), - [sym_type_constraints] = STATE(3044), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_fun] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3244), - [anon_sym_super] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_null] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_when] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3248), - [anon_sym_continue_AT] = ACTIONS(3248), - [anon_sym_break_AT] = ACTIONS(3248), - [anon_sym_this_AT] = ACTIONS(3248), - [anon_sym_super_AT] = ACTIONS(3248), - [sym_real_literal] = ACTIONS(3248), - [sym_integer_literal] = ACTIONS(3244), - [sym_hex_literal] = ACTIONS(3248), - [sym_bin_literal] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3244), - [anon_sym_false] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3248), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), - }, - [594] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_type_constraints] = STATE(612), + [sym_property_delegate] = STATE(663), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116132,101 +116282,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), + }, + [594] = { + [sym_primary_constructor] = STATE(1297), + [sym_class_body] = STATE(1153), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(955), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [595] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116251,101 +116520,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [596] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9159), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3386), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9272), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116370,100 +116639,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [597] = { - [sym_property_delegate] = STATE(667), - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3476), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_primary_constructor] = STATE(1418), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1013), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), + }, + [598] = { + [sym_property_delegate] = STATE(654), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116488,100 +116875,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, - [598] = { - [sym_type_constraints] = STATE(642), - [sym_property_delegate] = STATE(729), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [599] = { + [sym_primary_constructor] = STATE(3809), + [sym_class_body] = STATE(3221), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(2990), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [600] = { + [sym_primary_constructor] = STATE(3800), + [sym_class_body] = STATE(3178), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(3009), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [601] = { + [sym_type_constraints] = STATE(638), + [sym_property_delegate] = STATE(737), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116606,100 +117229,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [599] = { - [sym_type_constraints] = STATE(643), - [sym_property_delegate] = STATE(723), - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [602] = { + [sym_type_constraints] = STATE(639), + [sym_property_delegate] = STATE(716), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -116724,808 +117347,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), - }, - [600] = { - [sym_primary_constructor] = STATE(1424), - [sym_class_body] = STATE(1062), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(955), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [601] = { - [sym_primary_constructor] = STATE(3775), - [sym_class_body] = STATE(3172), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3037), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, - [602] = { - [sym_primary_constructor] = STATE(1426), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(950), - [sym_enum_class_body] = STATE(1062), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [603] = { - [sym_primary_constructor] = STATE(1400), - [sym_class_body] = STATE(1102), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(986), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, - [604] = { - [sym_primary_constructor] = STATE(3717), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3022), - [sym_enum_class_body] = STATE(3214), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [605] = { - [sym_primary_constructor] = STATE(3718), - [sym_class_body] = STATE(3214), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(3014), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [606] = { - [sym_type_constraints] = STATE(644), - [sym_property_delegate] = STATE(737), - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_property_delegate] = STATE(660), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117550,100 +117465,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [607] = { - [sym_type_constraints] = STATE(645), - [sym_property_delegate] = STATE(720), - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [604] = { + [sym_property_delegate] = STATE(649), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117668,126 +117583,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [608] = { - [sym_primary_constructor] = STATE(3751), - [sym__class_parameters] = STATE(3045), - [sym_type_constraints] = STATE(2999), - [sym_enum_class_body] = STATE(3248), - [sym_modifiers] = STATE(9550), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3298), [anon_sym_continue_AT] = ACTIONS(3298), @@ -117795,11 +117592,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(3298), [anon_sym_super_AT] = ACTIONS(3298), [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), + [sym_integer_literal] = ACTIONS(3296), [sym_hex_literal] = ACTIONS(3298), [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), @@ -117807,79 +117604,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3298), }, - [609] = { - [sym_type_constraints] = STATE(637), - [sym_property_delegate] = STATE(721), - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3550), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [605] = { + [sym_primary_constructor] = STATE(1423), + [sym_class_body] = STATE(1153), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(955), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [606] = { + [sym_primary_constructor] = STATE(1403), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1153), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [607] = { + [sym_property_delegate] = STATE(647), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -117904,218 +117937,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [610] = { - [sym_primary_constructor] = STATE(1417), - [sym__class_parameters] = STATE(960), - [sym_type_constraints] = STATE(968), - [sym_enum_class_body] = STATE(1175), - [sym_modifiers] = STATE(9640), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(3552), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [611] = { - [sym_type_constraints] = STATE(641), - [sym_property_delegate] = STATE(732), - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [608] = { + [sym_type_constraints] = STATE(645), + [sym_property_delegate] = STATE(742), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118140,100 +118055,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [612] = { - [sym_type_constraints] = STATE(638), - [sym_property_delegate] = STATE(744), - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [609] = { + [sym_type_constraints] = STATE(644), + [sym_property_delegate] = STATE(732), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118258,100 +118173,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, - [613] = { - [sym_type_constraints] = STATE(646), - [sym_property_delegate] = STATE(726), - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [610] = { + [sym_type_constraints] = STATE(640), + [sym_property_delegate] = STATE(712), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118376,100 +118291,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [614] = { - [sym_property_delegate] = STATE(661), - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3502), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [611] = { + [sym_property_delegate] = STATE(665), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3394), + [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_SEMI] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118494,100 +118409,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [615] = { - [sym_property_delegate] = STATE(658), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3466), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [612] = { + [sym_property_delegate] = STATE(673), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3394), + [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_SEMI] = ACTIONS(1910), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118612,100 +118527,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [616] = { - [sym_property_delegate] = STATE(665), - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [613] = { + [sym_type_constraints] = STATE(642), + [sym_property_delegate] = STATE(719), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118730,100 +118645,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [617] = { - [sym_type_constraints] = STATE(640), - [sym_property_delegate] = STATE(734), - [sym_getter] = STATE(3148), - [sym_setter] = STATE(3148), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_super] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [614] = { + [sym_primary_constructor] = STATE(1390), + [sym_class_body] = STATE(1118), + [sym__class_parameters] = STATE(927), + [sym_type_constraints] = STATE(930), + [sym_modifiers] = STATE(9685), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [615] = { + [sym_type_constraints] = STATE(641), + [sym_property_delegate] = STATE(725), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118848,100 +118881,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3350), - [anon_sym_continue_AT] = ACTIONS(3350), - [anon_sym_break_AT] = ACTIONS(3350), - [anon_sym_this_AT] = ACTIONS(3350), - [anon_sym_super_AT] = ACTIONS(3350), - [sym_real_literal] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_hex_literal] = ACTIONS(3350), - [sym_bin_literal] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3350), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [618] = { - [sym_property_delegate] = STATE(673), - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3564), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [616] = { + [sym_property_delegate] = STATE(663), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -118966,100 +118999,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [619] = { - [sym_property_delegate] = STATE(664), - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [617] = { + [sym_type_constraints] = STATE(643), + [sym_property_delegate] = STATE(727), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119084,100 +119117,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, - [620] = { - [sym_property_delegate] = STATE(669), - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [618] = { + [sym_property_delegate] = STATE(659), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119202,100 +119235,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, - [621] = { - [sym_property_delegate] = STATE(647), - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [619] = { + [sym_property_delegate] = STATE(652), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119320,100 +119353,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), + }, + [620] = { + [sym_primary_constructor] = STATE(3805), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(2969), + [sym_enum_class_body] = STATE(3221), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [621] = { + [sym_primary_constructor] = STATE(3814), + [sym__class_parameters] = STATE(3025), + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3251), + [sym_modifiers] = STATE(9695), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, [622] = { - [sym_type_constraints] = STATE(639), - [sym_property_delegate] = STATE(740), - [sym_getter] = STATE(1124), - [sym_setter] = STATE(1124), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3566), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3568), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_super] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_null] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3348), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [sym_type_constraints] = STATE(646), + [sym_property_delegate] = STATE(744), + [sym_getter] = STATE(1116), + [sym_setter] = STATE(1116), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_fun] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_super] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_when] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119438,100 +119707,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3350), - [anon_sym_continue_AT] = ACTIONS(3350), - [anon_sym_break_AT] = ACTIONS(3350), - [anon_sym_this_AT] = ACTIONS(3350), - [anon_sym_super_AT] = ACTIONS(3350), - [sym_real_literal] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_hex_literal] = ACTIONS(3350), - [sym_bin_literal] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3350), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3286), + [anon_sym_continue_AT] = ACTIONS(3286), + [anon_sym_break_AT] = ACTIONS(3286), + [anon_sym_this_AT] = ACTIONS(3286), + [anon_sym_super_AT] = ACTIONS(3286), + [sym_real_literal] = ACTIONS(3286), + [sym_integer_literal] = ACTIONS(3284), + [sym_hex_literal] = ACTIONS(3286), + [sym_bin_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3286), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3286), }, [623] = { - [sym_property_delegate] = STATE(654), - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_type_constraints] = STATE(637), + [sym_property_delegate] = STATE(729), + [sym_getter] = STATE(3166), + [sym_setter] = STATE(3166), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_fun] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_super] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_when] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119556,100 +119825,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3286), + [anon_sym_continue_AT] = ACTIONS(3286), + [anon_sym_break_AT] = ACTIONS(3286), + [anon_sym_this_AT] = ACTIONS(3286), + [anon_sym_super_AT] = ACTIONS(3286), + [sym_real_literal] = ACTIONS(3286), + [sym_integer_literal] = ACTIONS(3284), + [sym_hex_literal] = ACTIONS(3286), + [sym_bin_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3286), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3286), }, [624] = { - [sym_property_delegate] = STATE(652), - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_property_delegate] = STATE(662), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -119674,119 +119943,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [625] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3584), - [anon_sym_set] = ACTIONS(3586), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4836), + [sym_setter] = STATE(4836), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1766), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -119805,105 +120074,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [626] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(3584), - [anon_sym_set] = ACTIONS(3586), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -119922,105 +120191,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [627] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_get] = ACTIONS(3584), - [anon_sym_set] = ACTIONS(3586), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3393), + [sym_setter] = STATE(3393), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1766), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120039,105 +120308,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [628] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120156,105 +120425,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [629] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(3584), - [anon_sym_set] = ACTIONS(3586), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120273,105 +120542,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [630] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120390,105 +120659,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [631] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(3584), - [anon_sym_set] = ACTIONS(3586), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120507,105 +120776,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [632] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120624,105 +120893,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [633] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120741,105 +121010,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [634] = { - [sym_getter] = STATE(3459), - [sym_setter] = STATE(3459), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_get] = ACTIONS(3584), - [anon_sym_set] = ACTIONS(3586), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1824), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1772), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120858,105 +121127,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [635] = { - [sym_getter] = STATE(4786), - [sym_setter] = STATE(4786), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1824), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -120975,105 +121244,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [636] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(1772), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -121092,84 +121361,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [637] = { - [sym_property_delegate] = STATE(732), - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_property_delegate] = STATE(727), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121194,98 +121463,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [638] = { - [sym_property_delegate] = STATE(721), - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3550), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_property_delegate] = STATE(719), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121310,98 +121579,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [639] = { - [sym_property_delegate] = STATE(723), - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_property_delegate] = STATE(720), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121426,98 +121695,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [640] = { - [sym_property_delegate] = STATE(729), - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_property_delegate] = STATE(716), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121542,98 +121811,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [641] = { - [sym_property_delegate] = STATE(739), - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_property_delegate] = STATE(712), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121658,98 +121927,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [642] = { - [sym_property_delegate] = STATE(726), - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_property_delegate] = STATE(742), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121774,98 +122043,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [643] = { - [sym_property_delegate] = STATE(744), - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_property_delegate] = STATE(725), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -121890,98 +122159,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [644] = { - [sym_property_delegate] = STATE(731), - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_property_delegate] = STATE(737), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122006,98 +122275,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [645] = { - [sym_property_delegate] = STATE(737), - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_property_delegate] = STATE(747), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(3598), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122122,98 +122391,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), - }, - [646] = { - [sym_property_delegate] = STATE(720), - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), + }, + [646] = { + [sym_property_delegate] = STATE(732), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122238,97 +122507,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [647] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122353,97 +122622,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [648] = { - [sym_getter] = STATE(3094), - [sym_setter] = STATE(3094), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [sym_getter] = STATE(3106), + [sym_setter] = STATE(3106), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [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), @@ -122468,97 +122737,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, [649] = { - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122583,97 +122852,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [650] = { - [sym_getter] = STATE(1153), - [sym_setter] = STATE(1153), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122698,97 +122967,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [651] = { - [sym_getter] = STATE(1105), - [sym_setter] = STATE(1105), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122813,97 +123082,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [652] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -122928,97 +123197,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [653] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123043,97 +123312,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [654] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123158,97 +123427,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [655] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123273,97 +123542,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [656] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3466), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123388,97 +123657,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [657] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(1094), + [sym_setter] = STATE(1094), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [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), @@ -123503,97 +123772,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, [658] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1962), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123618,97 +123887,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [659] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123733,97 +124002,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [660] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123848,97 +124117,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [661] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -123963,97 +124232,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [662] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1918), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124078,97 +124347,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [663] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1910), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124193,97 +124462,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [664] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124308,97 +124577,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, [665] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124423,97 +124692,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [666] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124538,97 +124807,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [667] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1930), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124653,97 +124922,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [668] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124768,97 +125037,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [669] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1960), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124883,97 +125152,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [670] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -124998,97 +125267,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [671] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9388), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3400), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125113,97 +125382,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [672] = { - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9366), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125228,97 +125497,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [673] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1974), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125343,97 +125612,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [674] = { - [sym_getter] = STATE(3106), - [sym_setter] = STATE(3106), - [sym_modifiers] = STATE(9385), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3470), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [sym_getter] = STATE(1066), + [sym_setter] = STATE(1066), + [sym_modifiers] = STATE(9369), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3424), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -125458,343 +125727,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, [675] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(681), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(681), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [676] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [677] = { - [sym_getter] = STATE(3913), - [sym_setter] = STATE(3913), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [sym_getter] = STATE(3899), + [sym_setter] = STATE(3899), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -125813,2496 +125968,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [678] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [679] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3718), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [680] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3720), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [681] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3722), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [682] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3724), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [683] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(684), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(684), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3726), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [684] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3728), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [685] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(3730), - [anon_sym_AT] = ACTIONS(3733), - [anon_sym_LBRACK] = ACTIONS(3736), - [anon_sym_LBRACE] = ACTIONS(3739), - [anon_sym_RBRACE] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3744), - [anon_sym_object] = ACTIONS(3747), - [anon_sym_fun] = ACTIONS(3750), - [anon_sym_get] = ACTIONS(3753), - [anon_sym_set] = ACTIONS(3753), - [anon_sym_this] = ACTIONS(3756), - [anon_sym_super] = ACTIONS(3759), - [anon_sym_STAR] = ACTIONS(3762), - [sym_label] = ACTIONS(3765), - [anon_sym_in] = ACTIONS(3768), - [anon_sym_null] = ACTIONS(3771), - [anon_sym_if] = ACTIONS(3774), - [anon_sym_else] = ACTIONS(3777), - [anon_sym_when] = ACTIONS(3780), - [anon_sym_try] = ACTIONS(3783), - [anon_sym_throw] = ACTIONS(3786), - [anon_sym_return] = ACTIONS(3789), - [anon_sym_continue] = ACTIONS(3792), - [anon_sym_break] = ACTIONS(3792), - [anon_sym_COLON_COLON] = ACTIONS(3795), - [anon_sym_BANGin] = ACTIONS(3798), - [anon_sym_is] = ACTIONS(3801), - [anon_sym_BANGis] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(3765), - [anon_sym_DASH] = ACTIONS(3765), - [anon_sym_PLUS_PLUS] = ACTIONS(3807), - [anon_sym_DASH_DASH] = ACTIONS(3807), - [anon_sym_BANG] = ACTIONS(3765), - [anon_sym_data] = ACTIONS(3753), - [anon_sym_inner] = ACTIONS(3753), - [anon_sym_value] = ACTIONS(3753), - [anon_sym_expect] = ACTIONS(3753), - [anon_sym_actual] = ACTIONS(3753), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3810), - [anon_sym_continue_AT] = ACTIONS(3813), - [anon_sym_break_AT] = ACTIONS(3816), - [anon_sym_this_AT] = ACTIONS(3819), - [anon_sym_super_AT] = ACTIONS(3822), - [sym_real_literal] = ACTIONS(3825), - [sym_integer_literal] = ACTIONS(3828), - [sym_hex_literal] = ACTIONS(3831), - [sym_bin_literal] = ACTIONS(3831), - [anon_sym_true] = ACTIONS(3834), - [anon_sym_false] = ACTIONS(3834), - [anon_sym_SQUOTE] = ACTIONS(3837), - [sym__backtick_identifier] = ACTIONS(3840), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3843), - }, - [686] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(687), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(687), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3728), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [687] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3846), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [688] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(691), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(691), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3722), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [689] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(682), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(682), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [690] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [691] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3850), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [692] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(690), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(690), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3852), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [693] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(676), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(676), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3854), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [694] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(678), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(678), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3856), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [695] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(680), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(680), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3858), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [696] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(697), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(697), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [697] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3860), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [698] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(685), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(685), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3858), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [699] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3862), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [677] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -128321,216 +126082,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [700] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(698), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [678] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(675), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(698), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3864), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(675), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [701] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3866), - [anon_sym_get] = ACTIONS(3868), - [anon_sym_set] = ACTIONS(3870), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [679] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -128549,102 +126310,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [702] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3872), - [anon_sym_get] = ACTIONS(3868), - [anon_sym_set] = ACTIONS(3870), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [680] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -128663,102 +126424,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [703] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [681] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -128777,102 +126538,1584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [704] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_get] = ACTIONS(3868), - [anon_sym_set] = ACTIONS(3870), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [682] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(692), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(692), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [683] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [684] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(693), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(693), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [685] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(688), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(688), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [686] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(707), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(707), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [687] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [688] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [689] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3688), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [690] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(708), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(708), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [691] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(689), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(689), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [692] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [693] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [694] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [695] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -128891,102 +128134,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [705] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [696] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129005,102 +128248,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [706] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3880), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [697] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(703), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(703), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [698] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3704), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129119,102 +128476,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [707] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3882), - [anon_sym_get] = ACTIONS(3868), - [anon_sym_set] = ACTIONS(3870), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [699] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129233,102 +128590,1128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, + [700] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(683), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(683), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [701] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(704), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(704), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3708), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [702] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(694), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(694), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [703] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [704] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3712), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [705] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(3714), + [anon_sym_AT] = ACTIONS(3717), + [anon_sym_LBRACK] = ACTIONS(3720), + [anon_sym_LBRACE] = ACTIONS(3723), + [anon_sym_RBRACE] = ACTIONS(3726), + [anon_sym_LPAREN] = ACTIONS(3728), + [anon_sym_object] = ACTIONS(3731), + [anon_sym_fun] = ACTIONS(3734), + [anon_sym_get] = ACTIONS(3737), + [anon_sym_set] = ACTIONS(3737), + [anon_sym_this] = ACTIONS(3740), + [anon_sym_super] = ACTIONS(3743), + [anon_sym_STAR] = ACTIONS(3746), + [sym_label] = ACTIONS(3749), + [anon_sym_in] = ACTIONS(3752), + [anon_sym_null] = ACTIONS(3755), + [anon_sym_if] = ACTIONS(3758), + [anon_sym_else] = ACTIONS(3761), + [anon_sym_when] = ACTIONS(3764), + [anon_sym_try] = ACTIONS(3767), + [anon_sym_throw] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3773), + [anon_sym_continue] = ACTIONS(3776), + [anon_sym_break] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3779), + [anon_sym_BANGin] = ACTIONS(3782), + [anon_sym_is] = ACTIONS(3785), + [anon_sym_BANGis] = ACTIONS(3788), + [anon_sym_PLUS] = ACTIONS(3749), + [anon_sym_DASH] = ACTIONS(3749), + [anon_sym_PLUS_PLUS] = ACTIONS(3791), + [anon_sym_DASH_DASH] = ACTIONS(3791), + [anon_sym_BANG] = ACTIONS(3749), + [anon_sym_data] = ACTIONS(3737), + [anon_sym_inner] = ACTIONS(3737), + [anon_sym_value] = ACTIONS(3737), + [anon_sym_expect] = ACTIONS(3737), + [anon_sym_actual] = ACTIONS(3737), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3794), + [anon_sym_continue_AT] = ACTIONS(3797), + [anon_sym_break_AT] = ACTIONS(3800), + [anon_sym_this_AT] = ACTIONS(3803), + [anon_sym_super_AT] = ACTIONS(3806), + [sym_real_literal] = ACTIONS(3809), + [sym_integer_literal] = ACTIONS(3812), + [sym_hex_literal] = ACTIONS(3815), + [sym_bin_literal] = ACTIONS(3815), + [anon_sym_true] = ACTIONS(3818), + [anon_sym_false] = ACTIONS(3818), + [anon_sym_SQUOTE] = ACTIONS(3821), + [sym__backtick_identifier] = ACTIONS(3824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3827), + }, + [706] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(687), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(687), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3712), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [707] = { + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, [708] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_entry] = STATE(705), + [sym_when_condition] = STATE(8793), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym_when_expression_repeat1] = STATE(705), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [709] = { + [sym_getter] = STATE(5128), + [sym_setter] = STATE(5128), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(3832), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129347,216 +129730,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [709] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_entry] = STATE(679), - [sym_when_condition] = STATE(8847), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym_when_expression_repeat1] = STATE(679), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, [710] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_get] = ACTIONS(3868), - [anon_sym_set] = ACTIONS(3870), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3834), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129575,102 +129844,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [711] = { - [sym_getter] = STATE(5112), - [sym_setter] = STATE(5112), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(3888), - [anon_sym_get] = ACTIONS(3868), - [anon_sym_set] = ACTIONS(3870), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3836), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129689,102 +129958,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [712] = { - [sym_getter] = STATE(3459), - [sym_setter] = STATE(3459), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3892), - [anon_sym_get] = ACTIONS(3894), - [anon_sym_set] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -129803,81 +130058,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [713] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -129902,115 +130171,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [714] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym_get] = ACTIONS(3922), - [anon_sym_set] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3840), + [anon_sym_get] = ACTIONS(3842), + [anon_sym_set] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -130029,101 +130298,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [715] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3926), - [anon_sym_get] = ACTIONS(3922), - [anon_sym_set] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -130142,101 +130397,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [716] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym_get] = ACTIONS(3922), - [anon_sym_set] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3153), + [sym_setter] = STATE(3153), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -130255,101 +130510,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [717] = { - [sym_getter] = STATE(4786), - [sym_setter] = STATE(4786), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3930), - [anon_sym_get] = ACTIONS(3922), - [anon_sym_set] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(1094), + [sym_setter] = STATE(1094), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [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(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -130368,81 +130623,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, [718] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130467,95 +130736,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [719] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130580,95 +130849,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [720] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(3114), + [sym_setter] = STATE(3114), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130693,101 +130962,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [721] = { - [sym_getter] = STATE(1151), - [sym_setter] = STATE(1151), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3868), + [anon_sym_get] = ACTIONS(3870), + [anon_sym_set] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -130806,95 +131089,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [722] = { - [sym_getter] = STATE(3215), - [sym_setter] = STATE(3215), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_getter] = STATE(1154), + [sym_setter] = STATE(1154), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -130919,95 +131188,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [723] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2062), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(3106), + [sym_setter] = STATE(3106), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [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), @@ -131032,95 +131301,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, [724] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(3097), + [sym_setter] = STATE(3097), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131145,95 +131414,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, [725] = { - [sym_getter] = STATE(1071), - [sym_setter] = STATE(1071), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1948), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131258,95 +131527,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [726] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(3258), + [sym_setter] = STATE(3258), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131371,95 +131640,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [727] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131484,95 +131753,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [728] = { - [sym_getter] = STATE(3263), - [sym_setter] = STATE(3263), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(3241), + [sym_setter] = STATE(3241), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131597,95 +131866,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [729] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131710,95 +131979,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [730] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(3204), + [sym_setter] = STATE(3204), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131823,95 +132092,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [sym__string_start] = ACTIONS(3298), }, [731] = { - [sym_getter] = STATE(3117), - [sym_setter] = STATE(3117), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(3203), + [sym_setter] = STATE(3203), + [sym_modifiers] = STATE(9423), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -131936,95 +132205,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, [732] = { - [sym_getter] = STATE(1048), - [sym_setter] = STATE(1048), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2042), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(1176), + [sym_setter] = STATE(1176), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132049,95 +132318,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [733] = { - [sym_getter] = STATE(3224), - [sym_setter] = STATE(3224), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_getter] = STATE(1066), + [sym_setter] = STATE(1066), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132162,101 +132431,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, [734] = { - [sym_getter] = STATE(3186), - [sym_setter] = STATE(3186), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym_get] = ACTIONS(3870), + [anon_sym_set] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132275,101 +132558,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [735] = { - [sym_getter] = STATE(3106), - [sym_setter] = STATE(3106), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(3842), + [anon_sym_set] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132388,101 +132671,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [736] = { - [sym_getter] = STATE(3094), - [sym_setter] = STATE(3094), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(3842), + [anon_sym_set] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132501,95 +132784,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [737] = { - [sym_getter] = STATE(3132), - [sym_setter] = STATE(3132), - [sym_modifiers] = STATE(9434), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2060), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(2006), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132614,115 +132883,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [738] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym_get] = ACTIONS(3922), - [anon_sym_set] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(3842), + [anon_sym_set] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -132741,81 +133010,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [739] = { - [sym_getter] = STATE(1100), - [sym_setter] = STATE(1100), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(2040), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132840,95 +133109,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [740] = { - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(1178), + [sym_setter] = STATE(1178), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -132953,101 +133222,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [741] = { - [sym_getter] = STATE(1105), - [sym_setter] = STATE(1105), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(3842), + [anon_sym_set] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133066,95 +133349,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [742] = { - [sym_getter] = STATE(1153), - [sym_setter] = STATE(1153), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [sym_getter] = STATE(1131), + [sym_setter] = STATE(1131), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133179,95 +133448,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [743] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133292,95 +133561,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [744] = { - [sym_getter] = STATE(1185), - [sym_setter] = STATE(1185), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2038), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -133405,115 +133674,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [745] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_get] = ACTIONS(3894), - [anon_sym_set] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(1140), + [sym_setter] = STATE(1140), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133532,101 +133787,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [746] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_get] = ACTIONS(3894), - [anon_sym_set] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(3870), + [anon_sym_set] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133645,101 +133914,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [747] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3938), - [anon_sym_get] = ACTIONS(3894), - [anon_sym_set] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(1111), + [sym_setter] = STATE(1111), + [sym_modifiers] = STATE(9279), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133758,101 +134013,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [748] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym_get] = ACTIONS(3894), - [anon_sym_set] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_get] = ACTIONS(3870), + [anon_sym_set] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133871,87 +134140,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [749] = { - [sym_getter] = STATE(1064), - [sym_setter] = STATE(1064), - [sym_modifiers] = STATE(9140), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(3870), + [anon_sym_set] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -133970,115 +134253,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [750] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3942), - [anon_sym_get] = ACTIONS(3894), - [anon_sym_set] = ACTIONS(3896), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3393), + [sym_setter] = STATE(3393), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3890), + [anon_sym_get] = ACTIONS(3870), + [anon_sym_set] = ACTIONS(3872), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -134097,101 +134366,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [751] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_get] = ACTIONS(3922), - [anon_sym_set] = ACTIONS(3924), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4836), + [sym_setter] = STATE(4836), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym_get] = ACTIONS(3842), + [anon_sym_set] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -134210,323 +134479,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [752] = { - [sym__loop_statement] = STATE(1143), - [sym_for_statement] = STATE(1143), - [sym_while_statement] = STATE(1143), - [sym_do_while_statement] = STATE(1143), - [sym_assignment] = STATE(1143), - [sym__expression] = STATE(397), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1653), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8352), - [sym_annotation] = STATE(1265), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(715), - [anon_sym_for] = ACTIONS(717), - [anon_sym_while] = ACTIONS(719), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [753] = { - [sym__loop_statement] = STATE(3130), - [sym_for_statement] = STATE(3130), - [sym_while_statement] = STATE(3130), - [sym_do_while_statement] = STATE(3130), - [sym_assignment] = STATE(3130), - [sym__expression] = STATE(1930), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(1636), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8358), - [sym_annotation] = STATE(1287), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(927), - [anon_sym_for] = ACTIONS(929), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [754] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3950), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [sym_getter] = STATE(3899), + [sym_setter] = STATE(3899), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3896), + [anon_sym_get] = ACTIONS(3898), + [anon_sym_set] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -134545,212 +134590,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [755] = { - [sym__loop_statement] = STATE(4021), - [sym_for_statement] = STATE(4021), - [sym_while_statement] = STATE(4021), - [sym_do_while_statement] = STATE(4021), - [sym_assignment] = STATE(4021), - [sym__expression] = STATE(2224), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(1774), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8365), - [sym_annotation] = STATE(1290), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(683), - [anon_sym_for] = ACTIONS(685), - [anon_sym_while] = ACTIONS(687), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [756] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_get] = ACTIONS(3978), - [anon_sym_set] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [753] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym_get] = ACTIONS(3926), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -134769,436 +134702,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [757] = { - [sym__loop_statement] = STATE(1143), - [sym_for_statement] = STATE(1143), - [sym_while_statement] = STATE(1143), - [sym_do_while_statement] = STATE(1143), - [sym_assignment] = STATE(1143), - [sym__expression] = STATE(477), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1745), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8391), - [sym_annotation] = STATE(1277), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(959), - [anon_sym_for] = ACTIONS(961), - [anon_sym_while] = ACTIONS(963), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [758] = { - [sym__loop_statement] = STATE(3574), - [sym_for_statement] = STATE(3574), - [sym_while_statement] = STATE(3574), - [sym_do_while_statement] = STATE(3574), - [sym_assignment] = STATE(3574), - [sym__expression] = STATE(1191), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(2133), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8376), - [sym_annotation] = STATE(1266), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(285), - [anon_sym_for] = ACTIONS(287), - [anon_sym_while] = ACTIONS(289), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [759] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3982), - [anon_sym_get] = ACTIONS(3950), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [754] = { + [sym__loop_statement] = STATE(1078), + [sym_for_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_do_while_statement] = STATE(1078), + [sym_assignment] = STATE(1078), + [sym__expression] = STATE(384), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1434), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8377), + [sym_annotation] = STATE(1243), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(695), + [anon_sym_for] = ACTIONS(697), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [760] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3984), - [anon_sym_get] = ACTIONS(3950), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [755] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(3926), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -135217,90 +134926,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [761] = { - [sym__loop_statement] = STATE(5177), - [sym_for_statement] = STATE(5177), - [sym_while_statement] = STATE(5177), - [sym_do_while_statement] = STATE(5177), - [sym_assignment] = STATE(5177), - [sym__expression] = STATE(4300), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_annotation] = STATE(1236), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(5359), + [756] = { + [sym__loop_statement] = STATE(5110), + [sym_for_statement] = STATE(5110), + [sym_while_statement] = STATE(5110), + [sym_do_while_statement] = STATE(5110), + [sym_assignment] = STATE(5110), + [sym__expression] = STATE(4292), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_annotation] = STATE(1290), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(5415), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(1143), - [anon_sym_while] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(541), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_while] = ACTIONS(1071), + [anon_sym_do] = ACTIONS(447), [anon_sym_null] = ACTIONS(53), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), @@ -135315,11 +135024,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(71), [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), @@ -135337,764 +135046,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [762] = { - [sym_annotated_lambda] = STATE(1174), - [sym_lambda_literal] = STATE(1118), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(3986), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_object] = ACTIONS(3986), - [anon_sym_fun] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(3986), - [anon_sym_set] = ACTIONS(3986), - [anon_sym_this] = ACTIONS(3986), - [anon_sym_super] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3986), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3988), - [anon_sym_QMARK_COLON] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_PIPE_PIPE] = ACTIONS(3988), - [anon_sym_null] = ACTIONS(3986), - [anon_sym_if] = ACTIONS(3986), - [anon_sym_else] = ACTIONS(3986), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_try] = ACTIONS(3986), - [anon_sym_throw] = ACTIONS(3986), - [anon_sym_return] = ACTIONS(3986), - [anon_sym_continue] = ACTIONS(3986), - [anon_sym_break] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_PLUS_EQ] = ACTIONS(3988), - [anon_sym_DASH_EQ] = ACTIONS(3988), - [anon_sym_STAR_EQ] = ACTIONS(3988), - [anon_sym_SLASH_EQ] = ACTIONS(3988), - [anon_sym_PERCENT_EQ] = ACTIONS(3988), - [anon_sym_BANG_EQ] = ACTIONS(3986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3988), - [anon_sym_EQ_EQ] = ACTIONS(3986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3988), - [anon_sym_LT_EQ] = ACTIONS(3988), - [anon_sym_GT_EQ] = ACTIONS(3988), - [anon_sym_BANGin] = ACTIONS(3988), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_BANGis] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3986), - [anon_sym_sealed] = ACTIONS(3986), - [anon_sym_annotation] = ACTIONS(3986), - [anon_sym_data] = ACTIONS(3986), - [anon_sym_inner] = ACTIONS(3986), - [anon_sym_value] = ACTIONS(3986), - [anon_sym_override] = ACTIONS(3986), - [anon_sym_lateinit] = ACTIONS(3986), - [anon_sym_public] = ACTIONS(3986), - [anon_sym_private] = ACTIONS(3986), - [anon_sym_internal] = ACTIONS(3986), - [anon_sym_protected] = ACTIONS(3986), - [anon_sym_tailrec] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_infix] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym_external] = ACTIONS(3986), - [sym_property_modifier] = ACTIONS(3986), - [anon_sym_abstract] = ACTIONS(3986), - [anon_sym_final] = ACTIONS(3986), - [anon_sym_open] = ACTIONS(3986), - [anon_sym_vararg] = ACTIONS(3986), - [anon_sym_noinline] = ACTIONS(3986), - [anon_sym_crossinline] = ACTIONS(3986), - [anon_sym_expect] = ACTIONS(3986), - [anon_sym_actual] = ACTIONS(3986), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3988), - [anon_sym_continue_AT] = ACTIONS(3988), - [anon_sym_break_AT] = ACTIONS(3988), - [anon_sym_this_AT] = ACTIONS(3988), - [anon_sym_super_AT] = ACTIONS(3988), - [sym_real_literal] = ACTIONS(3988), - [sym_integer_literal] = ACTIONS(3986), - [sym_hex_literal] = ACTIONS(3988), - [sym_bin_literal] = ACTIONS(3988), - [anon_sym_true] = ACTIONS(3986), - [anon_sym_false] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3988), - [sym__backtick_identifier] = ACTIONS(3988), - [sym__automatic_semicolon] = ACTIONS(3988), - [sym_safe_nav] = ACTIONS(3988), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3988), + [757] = { + [sym_annotated_lambda] = STATE(1030), + [sym_lambda_literal] = STATE(1080), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(3932), + [anon_sym_AT] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_DOT] = ACTIONS(3932), + [anon_sym_as] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_where] = ACTIONS(3932), + [anon_sym_object] = ACTIONS(3932), + [anon_sym_fun] = ACTIONS(3932), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3932), + [anon_sym_set] = ACTIONS(3932), + [anon_sym_this] = ACTIONS(3932), + [anon_sym_super] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [sym_label] = ACTIONS(3932), + [anon_sym_in] = ACTIONS(3932), + [anon_sym_DOT_DOT] = ACTIONS(3934), + [anon_sym_QMARK_COLON] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_if] = ACTIONS(3932), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_when] = ACTIONS(3932), + [anon_sym_try] = ACTIONS(3932), + [anon_sym_throw] = ACTIONS(3932), + [anon_sym_return] = ACTIONS(3932), + [anon_sym_continue] = ACTIONS(3932), + [anon_sym_break] = ACTIONS(3932), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3934), + [anon_sym_SLASH_EQ] = ACTIONS(3934), + [anon_sym_PERCENT_EQ] = ACTIONS(3934), + [anon_sym_BANG_EQ] = ACTIONS(3932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_BANGin] = ACTIONS(3934), + [anon_sym_is] = ACTIONS(3932), + [anon_sym_BANGis] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_as_QMARK] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [anon_sym_BANG] = ACTIONS(3932), + [anon_sym_BANG_BANG] = ACTIONS(3934), + [anon_sym_suspend] = ACTIONS(3932), + [anon_sym_sealed] = ACTIONS(3932), + [anon_sym_annotation] = ACTIONS(3932), + [anon_sym_data] = ACTIONS(3932), + [anon_sym_inner] = ACTIONS(3932), + [anon_sym_value] = ACTIONS(3932), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_lateinit] = ACTIONS(3932), + [anon_sym_public] = ACTIONS(3932), + [anon_sym_private] = ACTIONS(3932), + [anon_sym_internal] = ACTIONS(3932), + [anon_sym_protected] = ACTIONS(3932), + [anon_sym_tailrec] = ACTIONS(3932), + [anon_sym_operator] = ACTIONS(3932), + [anon_sym_infix] = ACTIONS(3932), + [anon_sym_inline] = ACTIONS(3932), + [anon_sym_external] = ACTIONS(3932), + [sym_property_modifier] = ACTIONS(3932), + [anon_sym_abstract] = ACTIONS(3932), + [anon_sym_final] = ACTIONS(3932), + [anon_sym_open] = ACTIONS(3932), + [anon_sym_vararg] = ACTIONS(3932), + [anon_sym_noinline] = ACTIONS(3932), + [anon_sym_crossinline] = ACTIONS(3932), + [anon_sym_expect] = ACTIONS(3932), + [anon_sym_actual] = ACTIONS(3932), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3934), + [anon_sym_continue_AT] = ACTIONS(3934), + [anon_sym_break_AT] = ACTIONS(3934), + [anon_sym_this_AT] = ACTIONS(3934), + [anon_sym_super_AT] = ACTIONS(3934), + [sym_real_literal] = ACTIONS(3934), + [sym_integer_literal] = ACTIONS(3932), + [sym_hex_literal] = ACTIONS(3934), + [sym_bin_literal] = ACTIONS(3934), + [anon_sym_true] = ACTIONS(3932), + [anon_sym_false] = ACTIONS(3932), + [anon_sym_SQUOTE] = ACTIONS(3934), + [sym__backtick_identifier] = ACTIONS(3934), + [sym__automatic_semicolon] = ACTIONS(3934), + [sym_safe_nav] = ACTIONS(3934), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3934), }, - [763] = { - [sym__loop_statement] = STATE(5177), - [sym_for_statement] = STATE(5177), - [sym_while_statement] = STATE(5177), - [sym_do_while_statement] = STATE(5177), - [sym_assignment] = STATE(5177), - [sym__expression] = STATE(4068), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1835), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8364), - [sym_annotation] = STATE(1280), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5230), + [758] = { + [sym__loop_statement] = STATE(1078), + [sym_for_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_do_while_statement] = STATE(1078), + [sym_assignment] = STATE(1078), + [sym__expression] = STATE(370), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [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(1727), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8394), + [sym_annotation] = STATE(1291), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(765), + [sym_long_literal] = STATE(765), + [sym_boolean_literal] = STATE(765), + [sym_character_literal] = STATE(765), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(367), + [anon_sym_for] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(375), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(409), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [759] = { + [sym__loop_statement] = STATE(3134), + [sym_for_statement] = STATE(3134), + [sym_while_statement] = STATE(3134), + [sym_do_while_statement] = STATE(3134), + [sym_assignment] = STATE(3134), + [sym__expression] = STATE(2306), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_annotation] = STATE(1275), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3083), [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(747), - [anon_sym_for] = ACTIONS(749), - [anon_sym_while] = ACTIONS(751), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [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(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1089), + [anon_sym_while] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [764] = { - [sym__loop_statement] = STATE(4021), - [sym_for_statement] = STATE(4021), - [sym_while_statement] = STATE(4021), - [sym_do_while_statement] = STATE(4021), - [sym_assignment] = STATE(4021), - [sym__expression] = STATE(1383), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_collection_literal] = STATE(2979), - [sym__literal_constant] = STATE(2979), - [sym_string_literal] = STATE(2979), - [sym_lambda_literal] = STATE(2979), - [sym_anonymous_function] = STATE(2979), - [sym__function_literal] = STATE(2979), - [sym_object_literal] = STATE(2979), - [sym_this_expression] = STATE(2979), - [sym_super_expression] = STATE(2979), - [sym_if_expression] = STATE(2979), - [sym_when_expression] = STATE(2979), - [sym_try_expression] = STATE(2979), - [sym_jump_expression] = STATE(2979), - [sym_callable_reference] = STATE(2979), - [sym__prefix_unary_operator] = STATE(2116), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8370), - [sym_annotation] = STATE(1247), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2979), - [sym_long_literal] = STATE(2979), - [sym_boolean_literal] = STATE(2979), - [sym_character_literal] = STATE(2979), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(461), - [anon_sym_for] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(469), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(501), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__string_start] = ACTIONS(625), }, - [765] = { - [sym__loop_statement] = STATE(3574), - [sym_for_statement] = STATE(3574), - [sym_while_statement] = STATE(3574), - [sym_do_while_statement] = STATE(3574), - [sym_assignment] = STATE(3574), - [sym__expression] = STATE(1667), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2777), - [sym_parenthesized_expression] = STATE(2777), - [sym_collection_literal] = STATE(2777), - [sym__literal_constant] = STATE(2777), - [sym_string_literal] = STATE(2777), - [sym_lambda_literal] = STATE(2777), - [sym_anonymous_function] = STATE(2777), - [sym__function_literal] = STATE(2777), - [sym_object_literal] = STATE(2777), - [sym_this_expression] = STATE(2777), - [sym_super_expression] = STATE(2777), - [sym_if_expression] = STATE(2777), - [sym_when_expression] = STATE(2777), - [sym_try_expression] = STATE(2777), - [sym_jump_expression] = STATE(2777), - [sym_callable_reference] = STATE(2777), - [sym__prefix_unary_operator] = STATE(1593), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8382), - [sym_annotation] = STATE(1254), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2777), - [sym_long_literal] = STATE(2777), - [sym_boolean_literal] = STATE(2777), - [sym_character_literal] = STATE(2777), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(773), - [anon_sym_for] = ACTIONS(775), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(293), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(327), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [766] = { - [sym__loop_statement] = STATE(3130), - [sym_for_statement] = STATE(3130), - [sym_while_statement] = STATE(3130), - [sym_do_while_statement] = STATE(3130), - [sym_assignment] = STATE(3130), - [sym__expression] = STATE(2304), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_annotation] = STATE(1281), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1051), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [767] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(3997), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3997), - [anon_sym_interface] = ACTIONS(3997), - [anon_sym_enum] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(3997), - [anon_sym_var] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3999), - [anon_sym_fun] = ACTIONS(3999), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3999), - [anon_sym_set] = ACTIONS(3999), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3990), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3999), - [anon_sym_sealed] = ACTIONS(3999), - [anon_sym_annotation] = ACTIONS(3999), - [anon_sym_data] = ACTIONS(3999), - [anon_sym_inner] = ACTIONS(3999), - [anon_sym_value] = ACTIONS(3999), - [anon_sym_override] = ACTIONS(3999), - [anon_sym_lateinit] = ACTIONS(3999), - [anon_sym_public] = ACTIONS(3999), - [anon_sym_private] = ACTIONS(3999), - [anon_sym_internal] = ACTIONS(3999), - [anon_sym_protected] = ACTIONS(3999), - [anon_sym_tailrec] = ACTIONS(3999), - [anon_sym_operator] = ACTIONS(3999), - [anon_sym_infix] = ACTIONS(3999), - [anon_sym_inline] = ACTIONS(3999), - [anon_sym_external] = ACTIONS(3999), - [sym_property_modifier] = ACTIONS(3999), - [anon_sym_abstract] = ACTIONS(3999), - [anon_sym_final] = ACTIONS(3999), - [anon_sym_open] = ACTIONS(3999), - [anon_sym_vararg] = ACTIONS(3999), - [anon_sym_noinline] = ACTIONS(3999), - [anon_sym_crossinline] = ACTIONS(3999), - [anon_sym_expect] = ACTIONS(3999), - [anon_sym_actual] = ACTIONS(3999), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [768] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_get] = ACTIONS(3950), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [760] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(3926), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -136113,660 +135486,884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [769] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(4007), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(4007), - [anon_sym_interface] = ACTIONS(4007), - [anon_sym_enum] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(4007), - [anon_sym_var] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(4009), - [anon_sym_fun] = ACTIONS(4009), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(4009), - [anon_sym_set] = ACTIONS(4009), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3990), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(4009), - [anon_sym_sealed] = ACTIONS(4009), - [anon_sym_annotation] = ACTIONS(4009), - [anon_sym_data] = ACTIONS(4009), - [anon_sym_inner] = ACTIONS(4009), - [anon_sym_value] = ACTIONS(4009), - [anon_sym_override] = ACTIONS(4009), - [anon_sym_lateinit] = ACTIONS(4009), - [anon_sym_public] = ACTIONS(4009), - [anon_sym_private] = ACTIONS(4009), - [anon_sym_internal] = ACTIONS(4009), - [anon_sym_protected] = ACTIONS(4009), - [anon_sym_tailrec] = ACTIONS(4009), - [anon_sym_operator] = ACTIONS(4009), - [anon_sym_infix] = ACTIONS(4009), - [anon_sym_inline] = ACTIONS(4009), - [anon_sym_external] = ACTIONS(4009), - [sym_property_modifier] = ACTIONS(4009), - [anon_sym_abstract] = ACTIONS(4009), - [anon_sym_final] = ACTIONS(4009), - [anon_sym_open] = ACTIONS(4009), - [anon_sym_vararg] = ACTIONS(4009), - [anon_sym_noinline] = ACTIONS(4009), - [anon_sym_crossinline] = ACTIONS(4009), - [anon_sym_expect] = ACTIONS(4009), - [anon_sym_actual] = ACTIONS(4009), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [761] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3940), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3945), + [anon_sym_interface] = ACTIONS(3945), + [anon_sym_enum] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3945), + [anon_sym_var] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3947), + [anon_sym_fun] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3947), + [anon_sym_set] = ACTIONS(3947), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3938), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3945), + [anon_sym_sealed] = ACTIONS(3945), + [anon_sym_annotation] = ACTIONS(3945), + [anon_sym_data] = ACTIONS(3947), + [anon_sym_inner] = ACTIONS(3947), + [anon_sym_value] = ACTIONS(3947), + [anon_sym_override] = ACTIONS(3945), + [anon_sym_lateinit] = ACTIONS(3945), + [anon_sym_public] = ACTIONS(3945), + [anon_sym_private] = ACTIONS(3945), + [anon_sym_internal] = ACTIONS(3945), + [anon_sym_protected] = ACTIONS(3945), + [anon_sym_tailrec] = ACTIONS(3945), + [anon_sym_operator] = ACTIONS(3945), + [anon_sym_infix] = ACTIONS(3945), + [anon_sym_inline] = ACTIONS(3945), + [anon_sym_external] = ACTIONS(3945), + [sym_property_modifier] = ACTIONS(3945), + [anon_sym_abstract] = ACTIONS(3945), + [anon_sym_final] = ACTIONS(3945), + [anon_sym_open] = ACTIONS(3945), + [anon_sym_vararg] = ACTIONS(3945), + [anon_sym_noinline] = ACTIONS(3945), + [anon_sym_crossinline] = ACTIONS(3945), + [anon_sym_expect] = ACTIONS(3947), + [anon_sym_actual] = ACTIONS(3947), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [770] = { - [sym__loop_statement] = STATE(3574), - [sym_for_statement] = STATE(3574), - [sym_while_statement] = STATE(3574), - [sym_do_while_statement] = STATE(3574), - [sym_assignment] = STATE(3574), - [sym__expression] = STATE(2523), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1795), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8360), - [sym_annotation] = STATE(1292), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1119), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_while] = ACTIONS(1123), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [762] = { + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3960), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_object] = ACTIONS(3950), + [anon_sym_fun] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_this] = ACTIONS(3950), + [anon_sym_super] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [sym_label] = ACTIONS(3950), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_null] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_when] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3965), + [anon_sym_DASH_EQ] = ACTIONS(3965), + [anon_sym_STAR_EQ] = ACTIONS(3965), + [anon_sym_SLASH_EQ] = ACTIONS(3965), + [anon_sym_PERCENT_EQ] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3950), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_suspend] = ACTIONS(3950), + [anon_sym_sealed] = ACTIONS(3950), + [anon_sym_annotation] = ACTIONS(3950), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [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(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3952), + [anon_sym_continue_AT] = ACTIONS(3952), + [anon_sym_break_AT] = ACTIONS(3952), + [anon_sym_this_AT] = ACTIONS(3952), + [anon_sym_super_AT] = ACTIONS(3952), + [sym_real_literal] = ACTIONS(3952), + [sym_integer_literal] = ACTIONS(3950), + [sym_hex_literal] = ACTIONS(3952), + [sym_bin_literal] = ACTIONS(3952), + [anon_sym_true] = ACTIONS(3950), + [anon_sym_false] = ACTIONS(3950), + [anon_sym_SQUOTE] = ACTIONS(3952), + [sym__backtick_identifier] = ACTIONS(3952), + [sym__automatic_semicolon] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3952), }, - [771] = { - [sym__loop_statement] = STATE(9254), - [sym_for_statement] = STATE(9254), - [sym_while_statement] = STATE(9254), - [sym_do_while_statement] = STATE(9254), - [sym_assignment] = STATE(9254), - [sym__expression] = STATE(4300), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1552), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8372), - [sym_annotation] = STATE(1236), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5230), + [763] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_interface] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3973), + [anon_sym_var] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3975), + [anon_sym_fun] = ACTIONS(3975), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3975), + [anon_sym_set] = ACTIONS(3975), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3938), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3975), + [anon_sym_sealed] = ACTIONS(3975), + [anon_sym_annotation] = ACTIONS(3975), + [anon_sym_data] = ACTIONS(3975), + [anon_sym_inner] = ACTIONS(3975), + [anon_sym_value] = ACTIONS(3975), + [anon_sym_override] = ACTIONS(3975), + [anon_sym_lateinit] = ACTIONS(3975), + [anon_sym_public] = ACTIONS(3975), + [anon_sym_private] = ACTIONS(3975), + [anon_sym_internal] = ACTIONS(3975), + [anon_sym_protected] = ACTIONS(3975), + [anon_sym_tailrec] = ACTIONS(3975), + [anon_sym_operator] = ACTIONS(3975), + [anon_sym_infix] = ACTIONS(3975), + [anon_sym_inline] = ACTIONS(3975), + [anon_sym_external] = ACTIONS(3975), + [sym_property_modifier] = ACTIONS(3975), + [anon_sym_abstract] = ACTIONS(3975), + [anon_sym_final] = ACTIONS(3975), + [anon_sym_open] = ACTIONS(3975), + [anon_sym_vararg] = ACTIONS(3975), + [anon_sym_noinline] = ACTIONS(3975), + [anon_sym_crossinline] = ACTIONS(3975), + [anon_sym_expect] = ACTIONS(3975), + [anon_sym_actual] = ACTIONS(3975), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [764] = { + [sym__loop_statement] = STATE(5398), + [sym_for_statement] = STATE(5398), + [sym_while_statement] = STATE(5398), + [sym_do_while_statement] = STATE(5398), + [sym_assignment] = STATE(5398), + [sym__expression] = STATE(2306), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(2169), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8355), + [sym_annotation] = STATE(1275), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3083), [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(45), - [anon_sym_for] = ACTIONS(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(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1087), + [anon_sym_for] = ACTIONS(1117), + [anon_sym_while] = ACTIONS(1119), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(625), }, - [772] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym_get] = ACTIONS(3978), - [anon_sym_set] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [765] = { + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_object] = ACTIONS(3950), + [anon_sym_fun] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_this] = ACTIONS(3950), + [anon_sym_super] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [sym_label] = ACTIONS(3950), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_null] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_when] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3981), + [anon_sym_DASH_EQ] = ACTIONS(3981), + [anon_sym_STAR_EQ] = ACTIONS(3981), + [anon_sym_SLASH_EQ] = ACTIONS(3981), + [anon_sym_PERCENT_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3950), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_suspend] = ACTIONS(3950), + [anon_sym_sealed] = ACTIONS(3950), + [anon_sym_annotation] = ACTIONS(3950), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [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(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3952), + [anon_sym_continue_AT] = ACTIONS(3952), + [anon_sym_break_AT] = ACTIONS(3952), + [anon_sym_this_AT] = ACTIONS(3952), + [anon_sym_super_AT] = ACTIONS(3952), + [sym_real_literal] = ACTIONS(3952), + [sym_integer_literal] = ACTIONS(3950), + [sym_hex_literal] = ACTIONS(3952), + [sym_bin_literal] = ACTIONS(3952), + [anon_sym_true] = ACTIONS(3950), + [anon_sym_false] = ACTIONS(3950), + [anon_sym_SQUOTE] = ACTIONS(3952), + [sym__backtick_identifier] = ACTIONS(3952), + [sym__automatic_semicolon] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3952), }, - [773] = { - [sym__loop_statement] = STATE(9486), - [sym_for_statement] = STATE(9486), - [sym_while_statement] = STATE(9486), - [sym_do_while_statement] = STATE(9486), - [sym_assignment] = STATE(9486), - [sym__expression] = STATE(4261), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_annotation] = STATE(1269), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_do] = ACTIONS(159), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [766] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3940), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3945), + [anon_sym_interface] = ACTIONS(3945), + [anon_sym_enum] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3945), + [anon_sym_var] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3947), + [anon_sym_fun] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3947), + [anon_sym_set] = ACTIONS(3947), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3938), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3947), + [anon_sym_sealed] = ACTIONS(3947), + [anon_sym_annotation] = ACTIONS(3947), + [anon_sym_data] = ACTIONS(3947), + [anon_sym_inner] = ACTIONS(3947), + [anon_sym_value] = ACTIONS(3947), + [anon_sym_override] = ACTIONS(3947), + [anon_sym_lateinit] = ACTIONS(3947), + [anon_sym_public] = ACTIONS(3947), + [anon_sym_private] = ACTIONS(3947), + [anon_sym_internal] = ACTIONS(3947), + [anon_sym_protected] = ACTIONS(3947), + [anon_sym_tailrec] = ACTIONS(3947), + [anon_sym_operator] = ACTIONS(3947), + [anon_sym_infix] = ACTIONS(3947), + [anon_sym_inline] = ACTIONS(3947), + [anon_sym_external] = ACTIONS(3947), + [sym_property_modifier] = ACTIONS(3947), + [anon_sym_abstract] = ACTIONS(3947), + [anon_sym_final] = ACTIONS(3947), + [anon_sym_open] = ACTIONS(3947), + [anon_sym_vararg] = ACTIONS(3947), + [anon_sym_noinline] = ACTIONS(3947), + [anon_sym_crossinline] = ACTIONS(3947), + [anon_sym_expect] = ACTIONS(3947), + [anon_sym_actual] = ACTIONS(3947), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [774] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym_get] = ACTIONS(3950), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [767] = { + [sym__loop_statement] = STATE(4032), + [sym_for_statement] = STATE(4032), + [sym_while_statement] = STATE(4032), + [sym_do_while_statement] = STATE(4032), + [sym_assignment] = STATE(4032), + [sym__expression] = STATE(2589), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(1528), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8378), + [sym_annotation] = STATE(1283), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1007), + [anon_sym_while] = ACTIONS(1009), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [768] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym_get] = ACTIONS(3898), + [anon_sym_set] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -136785,100 +136382,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [775] = { - [sym_getter] = STATE(3913), - [sym_setter] = STATE(3913), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym_get] = ACTIONS(3950), - [anon_sym_set] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [769] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(3898), + [anon_sym_set] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -136897,116 +136494,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [776] = { - [sym__loop_statement] = STATE(5177), - [sym_for_statement] = STATE(5177), - [sym_while_statement] = STATE(5177), - [sym_do_while_statement] = STATE(5177), - [sym_assignment] = STATE(5177), - [sym__expression] = STATE(3730), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4549), - [sym_parenthesized_expression] = STATE(4549), - [sym_collection_literal] = STATE(4549), - [sym__literal_constant] = STATE(4549), - [sym_string_literal] = STATE(4549), - [sym_lambda_literal] = STATE(4549), - [sym_anonymous_function] = STATE(4549), - [sym__function_literal] = STATE(4549), - [sym_object_literal] = STATE(4549), - [sym_this_expression] = STATE(4549), - [sym_super_expression] = STATE(4549), - [sym_if_expression] = STATE(4549), - [sym_when_expression] = STATE(4549), - [sym_try_expression] = STATE(4549), - [sym_jump_expression] = STATE(4549), - [sym_callable_reference] = STATE(4549), - [sym__prefix_unary_operator] = STATE(1750), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8395), - [sym_annotation] = STATE(1268), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4549), - [sym_long_literal] = STATE(4549), - [sym_boolean_literal] = STATE(4549), - [sym_character_literal] = STATE(4549), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(5359), + [770] = { + [sym__loop_statement] = STATE(5110), + [sym_for_statement] = STATE(5110), + [sym_while_statement] = STATE(5110), + [sym_do_while_statement] = STATE(5110), + [sym_assignment] = STATE(5110), + [sym__expression] = STATE(4060), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1862), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8379), + [sym_annotation] = STATE(1247), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(5415), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(535), - [anon_sym_for] = ACTIONS(537), - [anon_sym_while] = ACTIONS(539), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(543), - [anon_sym_if] = ACTIONS(545), + [sym_label] = ACTIONS(671), + [anon_sym_for] = ACTIONS(673), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [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(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(555), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -137017,704 +136614,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [777] = { - [sym__loop_statement] = STATE(4813), - [sym_for_statement] = STATE(4813), - [sym_while_statement] = STATE(4813), - [sym_do_while_statement] = STATE(4813), - [sym_assignment] = STATE(4813), - [sym__expression] = STATE(4131), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1904), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8387), - [sym_annotation] = STATE(1275), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(839), - [anon_sym_for] = ACTIONS(841), - [anon_sym_while] = ACTIONS(843), - [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [778] = { - [sym__loop_statement] = STATE(3130), - [sym_for_statement] = STATE(3130), - [sym_while_statement] = STATE(3130), - [sym_do_while_statement] = STATE(3130), - [sym_assignment] = STATE(3130), - [sym__expression] = STATE(1192), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(1687), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8355), - [sym_annotation] = STATE(1284), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(805), - [anon_sym_for] = ACTIONS(807), - [anon_sym_while] = ACTIONS(809), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [771] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(3926), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [779] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(4007), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(4007), - [anon_sym_interface] = ACTIONS(4007), - [anon_sym_enum] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(4007), - [anon_sym_var] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(4009), - [anon_sym_fun] = ACTIONS(4009), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(4009), - [anon_sym_set] = ACTIONS(4009), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3990), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(4007), - [anon_sym_sealed] = ACTIONS(4007), - [anon_sym_annotation] = ACTIONS(4007), - [anon_sym_data] = ACTIONS(4009), - [anon_sym_inner] = ACTIONS(4009), - [anon_sym_value] = ACTIONS(4009), - [anon_sym_override] = ACTIONS(4007), - [anon_sym_lateinit] = ACTIONS(4007), - [anon_sym_public] = ACTIONS(4007), - [anon_sym_private] = ACTIONS(4007), - [anon_sym_internal] = ACTIONS(4007), - [anon_sym_protected] = ACTIONS(4007), - [anon_sym_tailrec] = ACTIONS(4007), - [anon_sym_operator] = ACTIONS(4007), - [anon_sym_infix] = ACTIONS(4007), - [anon_sym_inline] = ACTIONS(4007), - [anon_sym_external] = ACTIONS(4007), - [sym_property_modifier] = ACTIONS(4007), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_final] = ACTIONS(4007), - [anon_sym_open] = ACTIONS(4007), - [anon_sym_vararg] = ACTIONS(4007), - [anon_sym_noinline] = ACTIONS(4007), - [anon_sym_crossinline] = ACTIONS(4007), - [anon_sym_expect] = ACTIONS(4009), - [anon_sym_actual] = ACTIONS(4009), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [780] = { - [sym__loop_statement] = STATE(3574), - [sym_for_statement] = STATE(3574), - [sym_while_statement] = STATE(3574), - [sym_do_while_statement] = STATE(3574), - [sym_assignment] = STATE(3574), - [sym__expression] = STATE(2261), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(2782), - [sym_parenthesized_expression] = STATE(2782), - [sym_collection_literal] = STATE(2782), - [sym__literal_constant] = STATE(2782), - [sym_string_literal] = STATE(2782), - [sym_lambda_literal] = STATE(2782), - [sym_anonymous_function] = STATE(2782), - [sym__function_literal] = STATE(2782), - [sym_object_literal] = STATE(2782), - [sym_this_expression] = STATE(2782), - [sym_super_expression] = STATE(2782), - [sym_if_expression] = STATE(2782), - [sym_when_expression] = STATE(2782), - [sym_try_expression] = STATE(2782), - [sym_jump_expression] = STATE(2782), - [sym_callable_reference] = STATE(2782), - [sym__prefix_unary_operator] = STATE(1725), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8367), - [sym_annotation] = STATE(1243), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3372), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(2782), - [sym_long_literal] = STATE(2782), - [sym_boolean_literal] = STATE(2782), - [sym_character_literal] = STATE(2782), - [sym__lexical_identifier] = STATE(2881), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(867), - [anon_sym_for] = ACTIONS(869), - [anon_sym_while] = ACTIONS(871), - [anon_sym_do] = ACTIONS(291), - [anon_sym_null] = ACTIONS(873), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), }, - [781] = { - [sym__loop_statement] = STATE(3130), - [sym_for_statement] = STATE(3130), - [sym_while_statement] = STATE(3130), - [sym_do_while_statement] = STATE(3130), - [sym_assignment] = STATE(3130), - [sym__expression] = STATE(975), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2750), - [sym_parenthesized_expression] = STATE(2750), - [sym_collection_literal] = STATE(2750), - [sym__literal_constant] = STATE(2750), - [sym_string_literal] = STATE(2750), - [sym_lambda_literal] = STATE(2750), - [sym_anonymous_function] = STATE(2750), - [sym__function_literal] = STATE(2750), - [sym_object_literal] = STATE(2750), - [sym_this_expression] = STATE(2750), - [sym_super_expression] = STATE(2750), - [sym_if_expression] = STATE(2750), - [sym_when_expression] = STATE(2750), - [sym_try_expression] = STATE(2750), - [sym_jump_expression] = STATE(2750), - [sym_callable_reference] = STATE(2750), - [sym__prefix_unary_operator] = STATE(2139), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8373), - [sym_annotation] = STATE(1257), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2750), - [sym_long_literal] = STATE(2750), - [sym_boolean_literal] = STATE(2750), - [sym_character_literal] = STATE(2750), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(587), - [anon_sym_for] = ACTIONS(589), - [anon_sym_while] = ACTIONS(591), - [anon_sym_do] = ACTIONS(593), - [anon_sym_null] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(627), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [772] = { + [sym__loop_statement] = STATE(3443), + [sym_for_statement] = STATE(3443), + [sym_while_statement] = STATE(3443), + [sym_do_while_statement] = STATE(3443), + [sym_assignment] = STATE(3443), + [sym__expression] = STATE(1976), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(2046), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8393), + [sym_annotation] = STATE(1239), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(641), + [anon_sym_for] = ACTIONS(643), + [anon_sym_while] = ACTIONS(645), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(157), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [782] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_object] = ACTIONS(4018), - [anon_sym_fun] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_this] = ACTIONS(4018), - [anon_sym_super] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [sym_label] = ACTIONS(4018), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_null] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [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(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_suspend] = ACTIONS(4018), - [anon_sym_sealed] = ACTIONS(4018), - [anon_sym_annotation] = ACTIONS(4018), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_override] = ACTIONS(4018), - [anon_sym_lateinit] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_internal] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_tailrec] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_infix] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym_external] = ACTIONS(4018), - [sym_property_modifier] = ACTIONS(4018), - [anon_sym_abstract] = ACTIONS(4018), - [anon_sym_final] = ACTIONS(4018), - [anon_sym_open] = ACTIONS(4018), - [anon_sym_vararg] = ACTIONS(4018), - [anon_sym_noinline] = ACTIONS(4018), - [anon_sym_crossinline] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4020), - [anon_sym_continue_AT] = ACTIONS(4020), - [anon_sym_break_AT] = ACTIONS(4020), - [anon_sym_this_AT] = ACTIONS(4020), - [anon_sym_super_AT] = ACTIONS(4020), - [sym_real_literal] = ACTIONS(4020), - [sym_integer_literal] = ACTIONS(4018), - [sym_hex_literal] = ACTIONS(4020), - [sym_bin_literal] = ACTIONS(4020), - [anon_sym_true] = ACTIONS(4018), - [anon_sym_false] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4020), - [sym__backtick_identifier] = ACTIONS(4020), - [sym__automatic_semicolon] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4020), + [773] = { + [sym__loop_statement] = STATE(4032), + [sym_for_statement] = STATE(4032), + [sym_while_statement] = STATE(4032), + [sym_do_while_statement] = STATE(4032), + [sym_assignment] = STATE(4032), + [sym__expression] = STATE(2447), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_collection_literal] = STATE(3014), + [sym__literal_constant] = STATE(3014), + [sym_string_literal] = STATE(3014), + [sym_lambda_literal] = STATE(3014), + [sym_anonymous_function] = STATE(3014), + [sym__function_literal] = STATE(3014), + [sym_object_literal] = STATE(3014), + [sym_this_expression] = STATE(3014), + [sym_super_expression] = STATE(3014), + [sym_if_expression] = STATE(3014), + [sym_when_expression] = STATE(3014), + [sym_try_expression] = STATE(3014), + [sym_jump_expression] = STATE(3014), + [sym_callable_reference] = STATE(3014), + [sym__prefix_unary_operator] = STATE(2092), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8384), + [sym_annotation] = STATE(1259), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3014), + [sym_long_literal] = STATE(3014), + [sym_boolean_literal] = STATE(3014), + [sym_character_literal] = STATE(3014), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(953), + [anon_sym_for] = ACTIONS(955), + [anon_sym_while] = ACTIONS(957), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(959), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [783] = { - [sym__loop_statement] = STATE(4813), - [sym_for_statement] = STATE(4813), - [sym_while_statement] = STATE(4813), - [sym_do_while_statement] = STATE(4813), - [sym_assignment] = STATE(4813), - [sym__expression] = STATE(3324), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), + [774] = { + [sym__loop_statement] = STATE(9603), + [sym_for_statement] = STATE(9603), + [sym_while_statement] = STATE(9603), + [sym_do_while_statement] = STATE(9603), + [sym_assignment] = STATE(9603), + [sym__expression] = STATE(4263), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), [sym__primary_expression] = STATE(4525), [sym_parenthesized_expression] = STATE(4525), [sym_collection_literal] = STATE(4525), @@ -137731,402 +136992,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_expression] = STATE(4525), [sym_jump_expression] = STATE(4525), [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1983), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8356), - [sym_annotation] = STATE(1264), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_annotation] = STATE(1248), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), [sym_unsigned_literal] = STATE(4525), [sym_long_literal] = STATE(4525), [sym_boolean_literal] = STATE(4525), [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(5359), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(319), + [anon_sym_while] = ACTIONS(321), + [anon_sym_do] = ACTIONS(323), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [775] = { + [sym__loop_statement] = STATE(3443), + [sym_for_statement] = STATE(3443), + [sym_while_statement] = STATE(3443), + [sym_do_while_statement] = STATE(3443), + [sym_assignment] = STATE(3443), + [sym__expression] = STATE(2501), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1797), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8386), + [sym_annotation] = STATE(1282), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(5415), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [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(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [784] = { - [sym__loop_statement] = STATE(4021), - [sym_for_statement] = STATE(4021), - [sym_while_statement] = STATE(4021), - [sym_do_while_statement] = STATE(4021), - [sym_assignment] = STATE(4021), - [sym__expression] = STATE(2456), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1543), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8394), - [sym_annotation] = STATE(1289), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(991), - [anon_sym_for] = ACTIONS(993), - [anon_sym_while] = ACTIONS(995), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [785] = { - [sym__loop_statement] = STATE(4021), - [sym_for_statement] = STATE(4021), - [sym_while_statement] = STATE(4021), - [sym_do_while_statement] = STATE(4021), - [sym_assignment] = STATE(4021), - [sym__expression] = STATE(2594), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(2981), - [sym_parenthesized_expression] = STATE(2981), - [sym_collection_literal] = STATE(2981), - [sym__literal_constant] = STATE(2981), - [sym_string_literal] = STATE(2981), - [sym_lambda_literal] = STATE(2981), - [sym_anonymous_function] = STATE(2981), - [sym__function_literal] = STATE(2981), - [sym_object_literal] = STATE(2981), - [sym_this_expression] = STATE(2981), - [sym_super_expression] = STATE(2981), - [sym_if_expression] = STATE(2981), - [sym_when_expression] = STATE(2981), - [sym_try_expression] = STATE(2981), - [sym_jump_expression] = STATE(2981), - [sym_callable_reference] = STATE(2981), - [sym__prefix_unary_operator] = STATE(1528), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8354), - [sym_annotation] = STATE(1282), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3895), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(2981), - [sym_long_literal] = STATE(2981), - [sym_boolean_literal] = STATE(2981), - [sym_character_literal] = STATE(2981), - [sym__lexical_identifier] = STATE(3325), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1073), - [anon_sym_for] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(1077), - [anon_sym_do] = ACTIONS(467), - [anon_sym_null] = ACTIONS(997), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1003), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(981), + [anon_sym_for] = ACTIONS(983), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [786] = { - [sym__loop_statement] = STATE(5177), - [sym_for_statement] = STATE(5177), - [sym_while_statement] = STATE(5177), - [sym_do_while_statement] = STATE(5177), - [sym_assignment] = STATE(5177), - [sym__expression] = STATE(4248), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(4568), - [sym_parenthesized_expression] = STATE(4568), - [sym_collection_literal] = STATE(4568), - [sym__literal_constant] = STATE(4568), - [sym_string_literal] = STATE(4568), - [sym_lambda_literal] = STATE(4568), - [sym_anonymous_function] = STATE(4568), - [sym__function_literal] = STATE(4568), - [sym_object_literal] = STATE(4568), - [sym_this_expression] = STATE(4568), - [sym_super_expression] = STATE(4568), - [sym_if_expression] = STATE(4568), - [sym_when_expression] = STATE(4568), - [sym_try_expression] = STATE(4568), - [sym_jump_expression] = STATE(4568), - [sym_callable_reference] = STATE(4568), - [sym__prefix_unary_operator] = STATE(1520), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8384), - [sym_annotation] = STATE(1283), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5230), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(4568), - [sym_long_literal] = STATE(4568), - [sym_boolean_literal] = STATE(4568), - [sym_character_literal] = STATE(4568), - [sym__lexical_identifier] = STATE(4584), - [aux_sym__statement_repeat1] = STATE(5359), + [776] = { + [sym__loop_statement] = STATE(5110), + [sym_for_statement] = STATE(5110), + [sym_while_statement] = STATE(5110), + [sym_do_while_statement] = STATE(5110), + [sym_assignment] = STATE(5110), + [sym__expression] = STATE(3751), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4566), + [sym_parenthesized_expression] = STATE(4566), + [sym_collection_literal] = STATE(4566), + [sym__literal_constant] = STATE(4566), + [sym_string_literal] = STATE(4566), + [sym_lambda_literal] = STATE(4566), + [sym_anonymous_function] = STATE(4566), + [sym__function_literal] = STATE(4566), + [sym_object_literal] = STATE(4566), + [sym_this_expression] = STATE(4566), + [sym_super_expression] = STATE(4566), + [sym_if_expression] = STATE(4566), + [sym_when_expression] = STATE(4566), + [sym_try_expression] = STATE(4566), + [sym_jump_expression] = STATE(4566), + [sym_callable_reference] = STATE(4566), + [sym__prefix_unary_operator] = STATE(1684), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8371), + [sym_annotation] = STATE(1272), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4566), + [sym_long_literal] = STATE(4566), + [sym_boolean_literal] = STATE(4566), + [sym_character_literal] = STATE(4566), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(5415), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(899), - [anon_sym_for] = ACTIONS(901), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(541), - [anon_sym_null] = ACTIONS(53), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(441), + [anon_sym_for] = ACTIONS(443), + [anon_sym_while] = ACTIONS(445), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(449), + [anon_sym_if] = ACTIONS(451), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(101), + [sym_real_literal] = ACTIONS(461), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -138137,144 +137286,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [787] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(3997), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3997), - [anon_sym_interface] = ACTIONS(3997), - [anon_sym_enum] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(3997), - [anon_sym_var] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3999), - [anon_sym_fun] = ACTIONS(3999), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3999), - [anon_sym_set] = ACTIONS(3999), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3990), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3997), - [anon_sym_sealed] = ACTIONS(3997), - [anon_sym_annotation] = ACTIONS(3997), - [anon_sym_data] = ACTIONS(3999), - [anon_sym_inner] = ACTIONS(3999), - [anon_sym_value] = ACTIONS(3999), - [anon_sym_override] = ACTIONS(3997), - [anon_sym_lateinit] = ACTIONS(3997), - [anon_sym_public] = ACTIONS(3997), - [anon_sym_private] = ACTIONS(3997), - [anon_sym_internal] = ACTIONS(3997), - [anon_sym_protected] = ACTIONS(3997), - [anon_sym_tailrec] = ACTIONS(3997), - [anon_sym_operator] = ACTIONS(3997), - [anon_sym_infix] = ACTIONS(3997), - [anon_sym_inline] = ACTIONS(3997), - [anon_sym_external] = ACTIONS(3997), - [sym_property_modifier] = ACTIONS(3997), - [anon_sym_abstract] = ACTIONS(3997), - [anon_sym_final] = ACTIONS(3997), - [anon_sym_open] = ACTIONS(3997), - [anon_sym_vararg] = ACTIONS(3997), - [anon_sym_noinline] = ACTIONS(3997), - [anon_sym_crossinline] = ACTIONS(3997), - [anon_sym_expect] = ACTIONS(3999), - [anon_sym_actual] = ACTIONS(3999), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [777] = { + [sym__loop_statement] = STATE(1078), + [sym_for_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_do_while_statement] = STATE(1078), + [sym_assignment] = STATE(1078), + [sym__expression] = STATE(472), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1931), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8370), + [sym_annotation] = STATE(1237), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(923), + [anon_sym_for] = ACTIONS(925), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [788] = { - [sym__loop_statement] = STATE(4813), - [sym_for_statement] = STATE(4813), - [sym_while_statement] = STATE(4813), - [sym_do_while_statement] = STATE(4813), - [sym_assignment] = STATE(4813), - [sym__expression] = STATE(3930), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), + [778] = { + [sym__loop_statement] = STATE(4840), + [sym_for_statement] = STATE(4840), + [sym_while_statement] = STATE(4840), + [sym_do_while_statement] = STATE(4840), + [sym_assignment] = STATE(4840), + [sym__expression] = STATE(4263), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), [sym__primary_expression] = STATE(4525), [sym_parenthesized_expression] = STATE(4525), [sym_collection_literal] = STATE(4525), @@ -138291,274 +137440,722 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_expression] = STATE(4525), [sym_jump_expression] = STATE(4525), [sym_callable_reference] = STATE(4525), - [sym__prefix_unary_operator] = STATE(1459), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8368), - [sym_annotation] = STATE(1259), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4811), + [sym__prefix_unary_operator] = STATE(1792), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8397), + [sym_annotation] = STATE(1248), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4736), [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), [sym_unsigned_literal] = STATE(4525), [sym_long_literal] = STATE(4525), [sym_boolean_literal] = STATE(4525), [sym_character_literal] = STATE(4525), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(657), - [anon_sym_for] = ACTIONS(659), - [anon_sym_while] = ACTIONS(661), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(317), + [anon_sym_for] = ACTIONS(1053), + [anon_sym_while] = ACTIONS(1055), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(241), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(253), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_null] = ACTIONS(325), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [789] = { - [sym__loop_statement] = STATE(4813), - [sym_for_statement] = STATE(4813), - [sym_while_statement] = STATE(4813), - [sym_do_while_statement] = STATE(4813), - [sym_assignment] = STATE(4813), - [sym__expression] = STATE(4261), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4527), - [sym_parenthesized_expression] = STATE(4527), - [sym_collection_literal] = STATE(4527), - [sym__literal_constant] = STATE(4527), - [sym_string_literal] = STATE(4527), - [sym_lambda_literal] = STATE(4527), - [sym_anonymous_function] = STATE(4527), - [sym__function_literal] = STATE(4527), - [sym_object_literal] = STATE(4527), - [sym_this_expression] = STATE(4527), - [sym_super_expression] = STATE(4527), - [sym_if_expression] = STATE(4527), - [sym_when_expression] = STATE(4527), - [sym_try_expression] = STATE(4527), - [sym_jump_expression] = STATE(4527), - [sym_callable_reference] = STATE(4527), - [sym__prefix_unary_operator] = STATE(1803), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8386), - [sym_annotation] = STATE(1269), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4811), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4527), - [sym_long_literal] = STATE(4527), - [sym_boolean_literal] = STATE(4527), - [sym_character_literal] = STATE(4527), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__statement_repeat1] = STATE(5359), + [779] = { + [sym__loop_statement] = STATE(3134), + [sym_for_statement] = STATE(3134), + [sym_while_statement] = STATE(3134), + [sym_do_while_statement] = STATE(3134), + [sym_assignment] = STATE(3134), + [sym__expression] = STATE(1229), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1511), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8369), + [sym_annotation] = STATE(1244), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(779), + [anon_sym_for] = ACTIONS(781), + [anon_sym_while] = ACTIONS(783), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [780] = { + [sym__loop_statement] = STATE(3443), + [sym_for_statement] = STATE(3443), + [sym_while_statement] = STATE(3443), + [sym_do_while_statement] = STATE(3443), + [sym_assignment] = STATE(3443), + [sym__expression] = STATE(1219), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2794), + [sym_parenthesized_expression] = STATE(2794), + [sym_collection_literal] = STATE(2794), + [sym__literal_constant] = STATE(2794), + [sym_string_literal] = STATE(2794), + [sym_lambda_literal] = STATE(2794), + [sym_anonymous_function] = STATE(2794), + [sym__function_literal] = STATE(2794), + [sym_object_literal] = STATE(2794), + [sym_this_expression] = STATE(2794), + [sym_super_expression] = STATE(2794), + [sym_if_expression] = STATE(2794), + [sym_when_expression] = STATE(2794), + [sym_try_expression] = STATE(2794), + [sym_jump_expression] = STATE(2794), + [sym_callable_reference] = STATE(2794), + [sym__prefix_unary_operator] = STATE(1475), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8374), + [sym_annotation] = STATE(1278), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2794), + [sym_long_literal] = STATE(2794), + [sym_boolean_literal] = STATE(2794), + [sym_character_literal] = STATE(2794), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(5415), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(153), - [anon_sym_for] = ACTIONS(1099), - [anon_sym_while] = ACTIONS(1101), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(191), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [781] = { + [sym__loop_statement] = STATE(3134), + [sym_for_statement] = STATE(3134), + [sym_while_statement] = STATE(3134), + [sym_do_while_statement] = STATE(3134), + [sym_assignment] = STATE(3134), + [sym__expression] = STATE(1738), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_collection_literal] = STATE(2752), + [sym__literal_constant] = STATE(2752), + [sym_string_literal] = STATE(2752), + [sym_lambda_literal] = STATE(2752), + [sym_anonymous_function] = STATE(2752), + [sym__function_literal] = STATE(2752), + [sym_object_literal] = STATE(2752), + [sym_this_expression] = STATE(2752), + [sym_super_expression] = STATE(2752), + [sym_if_expression] = STATE(2752), + [sym_when_expression] = STATE(2752), + [sym_try_expression] = STATE(2752), + [sym_jump_expression] = STATE(2752), + [sym_callable_reference] = STATE(2752), + [sym__prefix_unary_operator] = STATE(1990), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8360), + [sym_annotation] = STATE(1254), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2752), + [sym_long_literal] = STATE(2752), + [sym_boolean_literal] = STATE(2752), + [sym_character_literal] = STATE(2752), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(867), + [anon_sym_for] = ACTIONS(869), + [anon_sym_while] = ACTIONS(871), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(873), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(879), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [782] = { + [sym__loop_statement] = STATE(4840), + [sym_for_statement] = STATE(4840), + [sym_while_statement] = STATE(4840), + [sym_do_while_statement] = STATE(4840), + [sym_assignment] = STATE(4840), + [sym__expression] = STATE(3291), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(1609), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8376), + [sym_annotation] = STATE(1276), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(233), + [anon_sym_for] = ACTIONS(235), + [anon_sym_while] = ACTIONS(237), [anon_sym_do] = ACTIONS(239), - [anon_sym_null] = ACTIONS(161), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(195), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [790] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_get] = ACTIONS(3978), - [anon_sym_set] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [783] = { + [sym__loop_statement] = STATE(9212), + [sym_for_statement] = STATE(9212), + [sym_while_statement] = STATE(9212), + [sym_do_while_statement] = STATE(9212), + [sym_assignment] = STATE(9212), + [sym__expression] = STATE(4292), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1491), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8395), + [sym_annotation] = STATE(1290), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), + }, + [784] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(3898), + [anon_sym_set] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -138577,324 +138174,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [791] = { - [sym_annotated_lambda] = STATE(1183), - [sym_lambda_literal] = STATE(1118), - [sym_annotation] = STATE(8332), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8332), - [sym__alpha_identifier] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_as] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym_COMMA] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4040), - [anon_sym_GT] = ACTIONS(4040), - [anon_sym_where] = ACTIONS(4040), - [anon_sym_object] = ACTIONS(4040), - [anon_sym_fun] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_get] = ACTIONS(4040), - [anon_sym_set] = ACTIONS(4040), - [anon_sym_this] = ACTIONS(4040), - [anon_sym_super] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [sym_label] = ACTIONS(4040), - [anon_sym_in] = ACTIONS(4040), - [anon_sym_DOT_DOT] = ACTIONS(4042), - [anon_sym_QMARK_COLON] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_null] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_else] = ACTIONS(4040), - [anon_sym_when] = ACTIONS(4040), - [anon_sym_try] = ACTIONS(4040), - [anon_sym_throw] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_PLUS_EQ] = ACTIONS(4042), - [anon_sym_DASH_EQ] = ACTIONS(4042), - [anon_sym_STAR_EQ] = ACTIONS(4042), - [anon_sym_SLASH_EQ] = ACTIONS(4042), - [anon_sym_PERCENT_EQ] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4042), - [anon_sym_LT_EQ] = ACTIONS(4042), - [anon_sym_GT_EQ] = ACTIONS(4042), - [anon_sym_BANGin] = ACTIONS(4042), - [anon_sym_is] = ACTIONS(4040), - [anon_sym_BANGis] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_SLASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_as_QMARK] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_BANG_BANG] = ACTIONS(4042), - [anon_sym_suspend] = ACTIONS(4040), - [anon_sym_sealed] = ACTIONS(4040), - [anon_sym_annotation] = ACTIONS(4040), - [anon_sym_data] = ACTIONS(4040), - [anon_sym_inner] = ACTIONS(4040), - [anon_sym_value] = ACTIONS(4040), - [anon_sym_override] = ACTIONS(4040), - [anon_sym_lateinit] = ACTIONS(4040), - [anon_sym_public] = ACTIONS(4040), - [anon_sym_private] = ACTIONS(4040), - [anon_sym_internal] = ACTIONS(4040), - [anon_sym_protected] = ACTIONS(4040), - [anon_sym_tailrec] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_infix] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym_external] = ACTIONS(4040), - [sym_property_modifier] = ACTIONS(4040), - [anon_sym_abstract] = ACTIONS(4040), - [anon_sym_final] = ACTIONS(4040), - [anon_sym_open] = ACTIONS(4040), - [anon_sym_vararg] = ACTIONS(4040), - [anon_sym_noinline] = ACTIONS(4040), - [anon_sym_crossinline] = ACTIONS(4040), - [anon_sym_expect] = ACTIONS(4040), - [anon_sym_actual] = ACTIONS(4040), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4042), - [anon_sym_continue_AT] = ACTIONS(4042), - [anon_sym_break_AT] = ACTIONS(4042), - [anon_sym_this_AT] = ACTIONS(4042), - [anon_sym_super_AT] = ACTIONS(4042), - [sym_real_literal] = ACTIONS(4042), - [sym_integer_literal] = ACTIONS(4040), - [sym_hex_literal] = ACTIONS(4042), - [sym_bin_literal] = ACTIONS(4042), - [anon_sym_true] = ACTIONS(4040), - [anon_sym_false] = ACTIONS(4040), - [anon_sym_SQUOTE] = ACTIONS(4042), - [sym__backtick_identifier] = ACTIONS(4042), - [sym__automatic_semicolon] = ACTIONS(4042), - [sym_safe_nav] = ACTIONS(4042), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4042), - }, - [792] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_object] = ACTIONS(4018), - [anon_sym_fun] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_this] = ACTIONS(4018), - [anon_sym_super] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [sym_label] = ACTIONS(4018), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_null] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [anon_sym_PLUS_EQ] = ACTIONS(4047), - [anon_sym_DASH_EQ] = ACTIONS(4047), - [anon_sym_STAR_EQ] = ACTIONS(4047), - [anon_sym_SLASH_EQ] = ACTIONS(4047), - [anon_sym_PERCENT_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_suspend] = ACTIONS(4018), - [anon_sym_sealed] = ACTIONS(4018), - [anon_sym_annotation] = ACTIONS(4018), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_override] = ACTIONS(4018), - [anon_sym_lateinit] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_internal] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_tailrec] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_infix] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym_external] = ACTIONS(4018), - [sym_property_modifier] = ACTIONS(4018), - [anon_sym_abstract] = ACTIONS(4018), - [anon_sym_final] = ACTIONS(4018), - [anon_sym_open] = ACTIONS(4018), - [anon_sym_vararg] = ACTIONS(4018), - [anon_sym_noinline] = ACTIONS(4018), - [anon_sym_crossinline] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4020), - [anon_sym_continue_AT] = ACTIONS(4020), - [anon_sym_break_AT] = ACTIONS(4020), - [anon_sym_this_AT] = ACTIONS(4020), - [anon_sym_super_AT] = ACTIONS(4020), - [sym_real_literal] = ACTIONS(4020), - [sym_integer_literal] = ACTIONS(4018), - [sym_hex_literal] = ACTIONS(4020), - [sym_bin_literal] = ACTIONS(4020), - [anon_sym_true] = ACTIONS(4018), - [anon_sym_false] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4020), - [sym__backtick_identifier] = ACTIONS(4020), - [sym__automatic_semicolon] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4020), - }, - [793] = { - [sym_getter] = STATE(5112), - [sym_setter] = STATE(5112), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(4050), - [anon_sym_get] = ACTIONS(3978), - [anon_sym_set] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [785] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(3898), + [anon_sym_set] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -138913,100 +138286,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [794] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_get] = ACTIONS(3978), - [anon_sym_set] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [786] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3898), + [anon_sym_set] = ACTIONS(3900), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -139025,324 +138398,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [795] = { - [sym__loop_statement] = STATE(5382), - [sym_for_statement] = STATE(5382), - [sym_while_statement] = STATE(5382), - [sym_do_while_statement] = STATE(5382), - [sym_assignment] = STATE(5382), - [sym__expression] = STATE(2304), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(2751), - [sym_parenthesized_expression] = STATE(2751), - [sym_collection_literal] = STATE(2751), - [sym__literal_constant] = STATE(2751), - [sym_string_literal] = STATE(2751), - [sym_lambda_literal] = STATE(2751), - [sym_anonymous_function] = STATE(2751), - [sym__function_literal] = STATE(2751), - [sym_object_literal] = STATE(2751), - [sym_this_expression] = STATE(2751), - [sym_super_expression] = STATE(2751), - [sym_if_expression] = STATE(2751), - [sym_when_expression] = STATE(2751), - [sym_try_expression] = STATE(2751), - [sym_jump_expression] = STATE(2751), - [sym_callable_reference] = STATE(2751), - [sym__prefix_unary_operator] = STATE(2167), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8375), - [sym_annotation] = STATE(1281), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3120), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(2751), - [sym_long_literal] = STATE(2751), - [sym_boolean_literal] = STATE(2751), - [sym_character_literal] = STATE(2751), - [sym__lexical_identifier] = STATE(2770), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1047), - [anon_sym_for] = ACTIONS(1169), - [anon_sym_while] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1173), - [anon_sym_null] = ACTIONS(933), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [787] = { + [sym__loop_statement] = STATE(5110), + [sym_for_statement] = STATE(5110), + [sym_while_statement] = STATE(5110), + [sym_do_while_statement] = STATE(5110), + [sym_assignment] = STATE(5110), + [sym__expression] = STATE(4233), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(4553), + [sym_parenthesized_expression] = STATE(4553), + [sym_collection_literal] = STATE(4553), + [sym__literal_constant] = STATE(4553), + [sym_string_literal] = STATE(4553), + [sym_lambda_literal] = STATE(4553), + [sym_anonymous_function] = STATE(4553), + [sym__function_literal] = STATE(4553), + [sym_object_literal] = STATE(4553), + [sym_this_expression] = STATE(4553), + [sym_super_expression] = STATE(4553), + [sym_if_expression] = STATE(4553), + [sym_when_expression] = STATE(4553), + [sym_try_expression] = STATE(4553), + [sym_jump_expression] = STATE(4553), + [sym_callable_reference] = STATE(4553), + [sym__prefix_unary_operator] = STATE(1824), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8359), + [sym_annotation] = STATE(1245), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5104), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(4553), + [sym_long_literal] = STATE(4553), + [sym_boolean_literal] = STATE(4553), + [sym_character_literal] = STATE(4553), + [sym__lexical_identifier] = STATE(4609), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(897), + [anon_sym_for] = ACTIONS(899), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(447), + [anon_sym_null] = ACTIONS(53), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(939), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(101), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [796] = { - [sym__loop_statement] = STATE(1143), - [sym_for_statement] = STATE(1143), - [sym_while_statement] = STATE(1143), - [sym_do_while_statement] = STATE(1143), - [sym_assignment] = STATE(1143), - [sym__expression] = STATE(378), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(792), - [sym_parenthesized_expression] = STATE(792), - [sym_collection_literal] = STATE(792), - [sym__literal_constant] = STATE(792), - [sym_string_literal] = STATE(792), - [sym_lambda_literal] = STATE(792), - [sym_anonymous_function] = STATE(792), - [sym__function_literal] = STATE(792), - [sym_object_literal] = STATE(792), - [sym_this_expression] = STATE(792), - [sym_super_expression] = STATE(792), - [sym_if_expression] = STATE(792), - [sym_when_expression] = STATE(792), - [sym_try_expression] = STATE(792), - [sym_jump_expression] = STATE(792), - [sym_callable_reference] = STATE(792), - [sym__prefix_unary_operator] = STATE(1968), - [sym__postfix_unary_expression] = STATE(8431), + [788] = { + [sym__loop_statement] = STATE(4032), + [sym_for_statement] = STATE(4032), + [sym_while_statement] = STATE(4032), + [sym_do_while_statement] = STATE(4032), + [sym_assignment] = STATE(4032), + [sym__expression] = STATE(1420), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1550), + [sym__postfix_unary_expression] = STATE(8426), [sym_directly_assignable_expression] = STATE(8390), - [sym_annotation] = STATE(1246), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(792), - [sym_long_literal] = STATE(792), - [sym_boolean_literal] = STATE(792), - [sym_character_literal] = STATE(792), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(375), - [anon_sym_for] = ACTIONS(377), - [anon_sym_while] = ACTIONS(379), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(383), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(417), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_annotation] = STATE(1241), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(491), + [anon_sym_for] = ACTIONS(493), + [anon_sym_while] = ACTIONS(495), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [797] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(4054), - [anon_sym_get] = ACTIONS(3978), - [anon_sym_set] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [789] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(3926), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -139361,212 +138734,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [798] = { - [sym__loop_statement] = STATE(1143), - [sym_for_statement] = STATE(1143), - [sym_while_statement] = STATE(1143), - [sym_do_while_statement] = STATE(1143), - [sym_assignment] = STATE(1143), - [sym__expression] = STATE(535), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(782), - [sym_parenthesized_expression] = STATE(782), - [sym_collection_literal] = STATE(782), - [sym__literal_constant] = STATE(782), - [sym_string_literal] = STATE(782), - [sym_lambda_literal] = STATE(782), - [sym_anonymous_function] = STATE(782), - [sym__function_literal] = STATE(782), - [sym_object_literal] = STATE(782), - [sym_this_expression] = STATE(782), - [sym_super_expression] = STATE(782), - [sym_if_expression] = STATE(782), - [sym_when_expression] = STATE(782), - [sym_try_expression] = STATE(782), - [sym_jump_expression] = STATE(782), - [sym_callable_reference] = STATE(782), - [sym__prefix_unary_operator] = STATE(1481), - [sym__postfix_unary_expression] = STATE(8431), - [sym_directly_assignable_expression] = STATE(8374), - [sym_annotation] = STATE(1273), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1075), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(782), - [sym_long_literal] = STATE(782), - [sym_boolean_literal] = STATE(782), - [sym_character_literal] = STATE(782), - [sym__lexical_identifier] = STATE(813), - [aux_sym__statement_repeat1] = STATE(5359), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(381), - [anon_sym_null] = ACTIONS(965), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(971), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [790] = { + [sym__loop_statement] = STATE(4840), + [sym_for_statement] = STATE(4840), + [sym_while_statement] = STATE(4840), + [sym_do_while_statement] = STATE(4840), + [sym_assignment] = STATE(4840), + [sym__expression] = STATE(4018), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4524), + [sym_parenthesized_expression] = STATE(4524), + [sym_collection_literal] = STATE(4524), + [sym__literal_constant] = STATE(4524), + [sym_string_literal] = STATE(4524), + [sym_lambda_literal] = STATE(4524), + [sym_anonymous_function] = STATE(4524), + [sym__function_literal] = STATE(4524), + [sym_object_literal] = STATE(4524), + [sym_this_expression] = STATE(4524), + [sym_super_expression] = STATE(4524), + [sym_if_expression] = STATE(4524), + [sym_when_expression] = STATE(4524), + [sym_try_expression] = STATE(4524), + [sym_jump_expression] = STATE(4524), + [sym_callable_reference] = STATE(4524), + [sym__prefix_unary_operator] = STATE(2132), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8381), + [sym_annotation] = STATE(1249), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4524), + [sym_long_literal] = STATE(4524), + [sym_boolean_literal] = STATE(4524), + [sym_character_literal] = STATE(4524), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(755), + [anon_sym_for] = ACTIONS(757), + [anon_sym_while] = ACTIONS(759), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(241), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(275), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [799] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_get] = ACTIONS(4060), - [anon_sym_set] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [791] = { + [sym_getter] = STATE(5128), + [sym_setter] = STATE(5128), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(1764), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3998), + [anon_sym_get] = ACTIONS(3926), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -139585,99 +138958,884 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [800] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym_get] = ACTIONS(4060), - [anon_sym_set] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [792] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_interface] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3973), + [anon_sym_var] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3975), + [anon_sym_fun] = ACTIONS(3975), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3975), + [anon_sym_set] = ACTIONS(3975), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3938), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3973), + [anon_sym_sealed] = ACTIONS(3973), + [anon_sym_annotation] = ACTIONS(3973), + [anon_sym_data] = ACTIONS(3975), + [anon_sym_inner] = ACTIONS(3975), + [anon_sym_value] = ACTIONS(3975), + [anon_sym_override] = ACTIONS(3973), + [anon_sym_lateinit] = ACTIONS(3973), + [anon_sym_public] = ACTIONS(3973), + [anon_sym_private] = ACTIONS(3973), + [anon_sym_internal] = ACTIONS(3973), + [anon_sym_protected] = ACTIONS(3973), + [anon_sym_tailrec] = ACTIONS(3973), + [anon_sym_operator] = ACTIONS(3973), + [anon_sym_infix] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym_external] = ACTIONS(3973), + [sym_property_modifier] = ACTIONS(3973), + [anon_sym_abstract] = ACTIONS(3973), + [anon_sym_final] = ACTIONS(3973), + [anon_sym_open] = ACTIONS(3973), + [anon_sym_vararg] = ACTIONS(3973), + [anon_sym_noinline] = ACTIONS(3973), + [anon_sym_crossinline] = ACTIONS(3973), + [anon_sym_expect] = ACTIONS(3975), + [anon_sym_actual] = ACTIONS(3975), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [793] = { + [sym__loop_statement] = STATE(4840), + [sym_for_statement] = STATE(4840), + [sym_while_statement] = STATE(4840), + [sym_do_while_statement] = STATE(4840), + [sym_assignment] = STATE(4840), + [sym__expression] = STATE(4111), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4525), + [sym_parenthesized_expression] = STATE(4525), + [sym_collection_literal] = STATE(4525), + [sym__literal_constant] = STATE(4525), + [sym_string_literal] = STATE(4525), + [sym_lambda_literal] = STATE(4525), + [sym_anonymous_function] = STATE(4525), + [sym__function_literal] = STATE(4525), + [sym_object_literal] = STATE(4525), + [sym_this_expression] = STATE(4525), + [sym_super_expression] = STATE(4525), + [sym_if_expression] = STATE(4525), + [sym_when_expression] = STATE(4525), + [sym_try_expression] = STATE(4525), + [sym_jump_expression] = STATE(4525), + [sym_callable_reference] = STATE(4525), + [sym__prefix_unary_operator] = STATE(1476), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8368), + [sym_annotation] = STATE(1246), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4736), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4525), + [sym_long_literal] = STATE(4525), + [sym_boolean_literal] = STATE(4525), + [sym_character_literal] = STATE(4525), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(841), + [anon_sym_for] = ACTIONS(843), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(239), + [anon_sym_null] = ACTIONS(325), + [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(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(337), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [794] = { + [sym_annotated_lambda] = STATE(1060), + [sym_lambda_literal] = STATE(1080), + [sym_annotation] = STATE(8341), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8341), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), + }, + [795] = { + [sym__loop_statement] = STATE(4032), + [sym_for_statement] = STATE(4032), + [sym_while_statement] = STATE(4032), + [sym_do_while_statement] = STATE(4032), + [sym_assignment] = STATE(4032), + [sym__expression] = STATE(2244), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3050), + [sym_parenthesized_expression] = STATE(3050), + [sym_collection_literal] = STATE(3050), + [sym__literal_constant] = STATE(3050), + [sym_string_literal] = STATE(3050), + [sym_lambda_literal] = STATE(3050), + [sym_anonymous_function] = STATE(3050), + [sym__function_literal] = STATE(3050), + [sym_object_literal] = STATE(3050), + [sym_this_expression] = STATE(3050), + [sym_super_expression] = STATE(3050), + [sym_if_expression] = STATE(3050), + [sym_when_expression] = STATE(3050), + [sym_try_expression] = STATE(3050), + [sym_jump_expression] = STATE(3050), + [sym_callable_reference] = STATE(3050), + [sym__prefix_unary_operator] = STATE(1764), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8385), + [sym_annotation] = STATE(1284), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4023), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3050), + [sym_long_literal] = STATE(3050), + [sym_boolean_literal] = STATE(3050), + [sym_character_literal] = STATE(3050), + [sym__lexical_identifier] = STATE(3334), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(725), + [anon_sym_for] = ACTIONS(727), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(497), + [anon_sym_null] = ACTIONS(499), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(531), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [796] = { + [sym__loop_statement] = STATE(1078), + [sym_for_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_do_while_statement] = STATE(1078), + [sym_assignment] = STATE(1078), + [sym__expression] = STATE(526), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(762), + [sym_parenthesized_expression] = STATE(762), + [sym_collection_literal] = STATE(762), + [sym__literal_constant] = STATE(762), + [sym_string_literal] = STATE(762), + [sym_lambda_literal] = STATE(762), + [sym_anonymous_function] = STATE(762), + [sym__function_literal] = STATE(762), + [sym_object_literal] = STATE(762), + [sym_this_expression] = STATE(762), + [sym_super_expression] = STATE(762), + [sym_if_expression] = STATE(762), + [sym_when_expression] = STATE(762), + [sym_try_expression] = STATE(762), + [sym_jump_expression] = STATE(762), + [sym_callable_reference] = STATE(762), + [sym__prefix_unary_operator] = STATE(1747), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8357), + [sym_annotation] = STATE(1258), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1105), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(762), + [sym_long_literal] = STATE(762), + [sym_boolean_literal] = STATE(762), + [sym_character_literal] = STATE(762), + [sym__lexical_identifier] = STATE(820), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1033), + [anon_sym_do] = ACTIONS(373), + [anon_sym_null] = ACTIONS(929), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [797] = { + [sym__loop_statement] = STATE(3443), + [sym_for_statement] = STATE(3443), + [sym_while_statement] = STATE(3443), + [sym_do_while_statement] = STATE(3443), + [sym_assignment] = STATE(3443), + [sym__expression] = STATE(2308), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(2804), + [sym_parenthesized_expression] = STATE(2804), + [sym_collection_literal] = STATE(2804), + [sym__literal_constant] = STATE(2804), + [sym_string_literal] = STATE(2804), + [sym_lambda_literal] = STATE(2804), + [sym_anonymous_function] = STATE(2804), + [sym__function_literal] = STATE(2804), + [sym_object_literal] = STATE(2804), + [sym_this_expression] = STATE(2804), + [sym_super_expression] = STATE(2804), + [sym_if_expression] = STATE(2804), + [sym_when_expression] = STATE(2804), + [sym_try_expression] = STATE(2804), + [sym_jump_expression] = STATE(2804), + [sym_callable_reference] = STATE(2804), + [sym__prefix_unary_operator] = STATE(1561), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8356), + [sym_annotation] = STATE(1267), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3471), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(2804), + [sym_long_literal] = STATE(2804), + [sym_boolean_literal] = STATE(2804), + [sym_character_literal] = STATE(2804), + [sym__lexical_identifier] = STATE(2894), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(811), + [anon_sym_for] = ACTIONS(813), + [anon_sym_while] = ACTIONS(815), + [anon_sym_do] = ACTIONS(155), + [anon_sym_null] = ACTIONS(817), + [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(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(823), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [798] = { + [sym__loop_statement] = STATE(3134), + [sym_for_statement] = STATE(3134), + [sym_while_statement] = STATE(3134), + [sym_do_while_statement] = STATE(3134), + [sym_assignment] = STATE(3134), + [sym__expression] = STATE(1008), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(2742), + [sym_parenthesized_expression] = STATE(2742), + [sym_collection_literal] = STATE(2742), + [sym__literal_constant] = STATE(2742), + [sym_string_literal] = STATE(2742), + [sym_lambda_literal] = STATE(2742), + [sym_anonymous_function] = STATE(2742), + [sym__function_literal] = STATE(2742), + [sym_object_literal] = STATE(2742), + [sym_this_expression] = STATE(2742), + [sym_super_expression] = STATE(2742), + [sym_if_expression] = STATE(2742), + [sym_when_expression] = STATE(2742), + [sym_try_expression] = STATE(2742), + [sym_jump_expression] = STATE(2742), + [sym_callable_reference] = STATE(2742), + [sym__prefix_unary_operator] = STATE(1672), + [sym__postfix_unary_expression] = STATE(8426), + [sym_directly_assignable_expression] = STATE(8358), + [sym_annotation] = STATE(1277), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3083), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(2742), + [sym_long_literal] = STATE(2742), + [sym_boolean_literal] = STATE(2742), + [sym_character_literal] = STATE(2742), + [sym__lexical_identifier] = STATE(2802), + [aux_sym__statement_repeat1] = STATE(5415), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(573), + [anon_sym_for] = ACTIONS(575), + [anon_sym_while] = ACTIONS(577), + [anon_sym_do] = ACTIONS(579), + [anon_sym_null] = ACTIONS(581), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [799] = { + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -139696,99 +139854,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [801] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [800] = { + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1772), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -139807,99 +139965,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [802] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [801] = { + [sym_getter] = STATE(3393), + [sym_setter] = STATE(3393), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(4038), + [anon_sym_get] = ACTIONS(4040), + [anon_sym_set] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1766), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -139918,99 +140076,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, + [802] = { + [sym_catch_block] = STATE(818), + [sym_finally_block] = STATE(1033), + [aux_sym_try_expression_repeat1] = STATE(818), + [sym__alpha_identifier] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_COMMA] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_object] = ACTIONS(4044), + [anon_sym_fun] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_get] = ACTIONS(4044), + [anon_sym_set] = ACTIONS(4044), + [anon_sym_this] = ACTIONS(4044), + [anon_sym_super] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [sym_label] = ACTIONS(4044), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4046), + [anon_sym_QMARK_COLON] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_null] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_when] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_catch] = ACTIONS(4048), + [anon_sym_finally] = ACTIONS(4050), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_PLUS_EQ] = ACTIONS(4046), + [anon_sym_DASH_EQ] = ACTIONS(4046), + [anon_sym_STAR_EQ] = ACTIONS(4046), + [anon_sym_SLASH_EQ] = ACTIONS(4046), + [anon_sym_PERCENT_EQ] = ACTIONS(4046), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4046), + [anon_sym_LT_EQ] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4046), + [anon_sym_BANGin] = ACTIONS(4046), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_BANGis] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_as_QMARK] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_BANG_BANG] = ACTIONS(4046), + [anon_sym_suspend] = ACTIONS(4044), + [anon_sym_sealed] = ACTIONS(4044), + [anon_sym_annotation] = ACTIONS(4044), + [anon_sym_data] = ACTIONS(4044), + [anon_sym_inner] = ACTIONS(4044), + [anon_sym_value] = ACTIONS(4044), + [anon_sym_override] = ACTIONS(4044), + [anon_sym_lateinit] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_internal] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_tailrec] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_infix] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym_external] = ACTIONS(4044), + [sym_property_modifier] = ACTIONS(4044), + [anon_sym_abstract] = ACTIONS(4044), + [anon_sym_final] = ACTIONS(4044), + [anon_sym_open] = ACTIONS(4044), + [anon_sym_vararg] = ACTIONS(4044), + [anon_sym_noinline] = ACTIONS(4044), + [anon_sym_crossinline] = ACTIONS(4044), + [anon_sym_expect] = ACTIONS(4044), + [anon_sym_actual] = ACTIONS(4044), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4046), + [anon_sym_continue_AT] = ACTIONS(4046), + [anon_sym_break_AT] = ACTIONS(4046), + [anon_sym_this_AT] = ACTIONS(4046), + [anon_sym_super_AT] = ACTIONS(4046), + [sym_real_literal] = ACTIONS(4046), + [sym_integer_literal] = ACTIONS(4044), + [sym_hex_literal] = ACTIONS(4046), + [sym_bin_literal] = ACTIONS(4046), + [anon_sym_true] = ACTIONS(4044), + [anon_sym_false] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [sym__backtick_identifier] = ACTIONS(4046), + [sym__automatic_semicolon] = ACTIONS(4046), + [sym_safe_nav] = ACTIONS(4046), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4046), + }, [803] = { - [sym_getter] = STATE(3459), - [sym_setter] = STATE(3459), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1824), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym_get] = ACTIONS(4040), + [anon_sym_set] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -140029,99 +140298,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [804] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4100), - [anon_sym_get] = ACTIONS(4060), - [anon_sym_set] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -140140,99 +140409,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [805] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym_get] = ACTIONS(4040), + [anon_sym_set] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -140251,210 +140520,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [806] = { - [sym_catch_block] = STATE(814), - [sym_finally_block] = STATE(1121), - [aux_sym_try_expression_repeat1] = STATE(814), - [sym__alpha_identifier] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_EQ] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_object] = ACTIONS(4104), - [anon_sym_fun] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_get] = ACTIONS(4104), - [anon_sym_set] = ACTIONS(4104), - [anon_sym_this] = ACTIONS(4104), - [anon_sym_super] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [sym_label] = ACTIONS(4104), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_QMARK_COLON] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_null] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_else] = ACTIONS(4104), - [anon_sym_when] = ACTIONS(4104), - [anon_sym_try] = ACTIONS(4104), - [anon_sym_catch] = ACTIONS(4108), - [anon_sym_finally] = ACTIONS(4110), - [anon_sym_throw] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_BANGin] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_BANGis] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_as_QMARK] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_BANG_BANG] = ACTIONS(4106), - [anon_sym_suspend] = ACTIONS(4104), - [anon_sym_sealed] = ACTIONS(4104), - [anon_sym_annotation] = ACTIONS(4104), - [anon_sym_data] = ACTIONS(4104), - [anon_sym_inner] = ACTIONS(4104), - [anon_sym_value] = ACTIONS(4104), - [anon_sym_override] = ACTIONS(4104), - [anon_sym_lateinit] = ACTIONS(4104), - [anon_sym_public] = ACTIONS(4104), - [anon_sym_private] = ACTIONS(4104), - [anon_sym_internal] = ACTIONS(4104), - [anon_sym_protected] = ACTIONS(4104), - [anon_sym_tailrec] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_infix] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym_external] = ACTIONS(4104), - [sym_property_modifier] = ACTIONS(4104), - [anon_sym_abstract] = ACTIONS(4104), - [anon_sym_final] = ACTIONS(4104), - [anon_sym_open] = ACTIONS(4104), - [anon_sym_vararg] = ACTIONS(4104), - [anon_sym_noinline] = ACTIONS(4104), - [anon_sym_crossinline] = ACTIONS(4104), - [anon_sym_expect] = ACTIONS(4104), - [anon_sym_actual] = ACTIONS(4104), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4106), - [anon_sym_continue_AT] = ACTIONS(4106), - [anon_sym_break_AT] = ACTIONS(4106), - [anon_sym_this_AT] = ACTIONS(4106), - [anon_sym_super_AT] = ACTIONS(4106), - [sym_real_literal] = ACTIONS(4106), - [sym_integer_literal] = ACTIONS(4104), - [sym_hex_literal] = ACTIONS(4106), - [sym_bin_literal] = ACTIONS(4106), - [anon_sym_true] = ACTIONS(4104), - [anon_sym_false] = ACTIONS(4104), - [anon_sym_SQUOTE] = ACTIONS(4106), - [sym__backtick_identifier] = ACTIONS(4106), - [sym__automatic_semicolon] = ACTIONS(4106), - [sym_safe_nav] = ACTIONS(4106), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4106), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(4040), + [anon_sym_set] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [807] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4112), - [anon_sym_get] = ACTIONS(4060), - [anon_sym_set] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_get] = ACTIONS(4040), + [anon_sym_set] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -140473,99 +140742,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [808] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -140584,99 +140853,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [809] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4116), - [anon_sym_get] = ACTIONS(4060), - [anon_sym_set] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_get] = ACTIONS(4040), + [anon_sym_set] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1772), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -140695,99 +140964,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [810] = { - [sym_getter] = STATE(4786), - [sym_setter] = STATE(4786), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym_get] = ACTIONS(4060), - [anon_sym_set] = ACTIONS(4062), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1824), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4836), + [sym_setter] = STATE(4836), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1766), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -140806,99 +141075,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [811] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_get] = ACTIONS(4092), - [anon_sym_set] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym_get] = ACTIONS(4008), + [anon_sym_set] = ACTIONS(4010), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -140917,2647 +141186,4283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [812] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_by] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4122), - [sym__quest] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [sym_label] = ACTIONS(4122), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_throw] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_AT] = ACTIONS(4124), - [anon_sym_this_AT] = ACTIONS(4124), - [anon_sym_super_AT] = ACTIONS(4124), - [sym_real_literal] = ACTIONS(4124), - [sym_integer_literal] = ACTIONS(4122), - [sym_hex_literal] = ACTIONS(4124), - [sym_bin_literal] = ACTIONS(4124), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), + [aux_sym_user_type_repeat1] = STATE(822), + [sym__alpha_identifier] = ACTIONS(4070), + [anon_sym_AT] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(4074), + [anon_sym_as] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_by] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_where] = ACTIONS(4070), + [anon_sym_object] = ACTIONS(4070), + [anon_sym_fun] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_get] = ACTIONS(4070), + [anon_sym_set] = ACTIONS(4070), + [anon_sym_this] = ACTIONS(4070), + [anon_sym_super] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [sym__quest] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4070), + [sym_label] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_QMARK_COLON] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_else] = ACTIONS(4070), + [anon_sym_when] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_PLUS_EQ] = ACTIONS(4072), + [anon_sym_DASH_EQ] = ACTIONS(4072), + [anon_sym_STAR_EQ] = ACTIONS(4072), + [anon_sym_SLASH_EQ] = ACTIONS(4072), + [anon_sym_PERCENT_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_BANGin] = ACTIONS(4072), + [anon_sym_is] = ACTIONS(4070), + [anon_sym_BANGis] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4070), + [anon_sym_as_QMARK] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_BANG_BANG] = ACTIONS(4072), + [anon_sym_suspend] = ACTIONS(4070), + [anon_sym_sealed] = ACTIONS(4070), + [anon_sym_annotation] = ACTIONS(4070), + [anon_sym_data] = ACTIONS(4070), + [anon_sym_inner] = ACTIONS(4070), + [anon_sym_value] = ACTIONS(4070), + [anon_sym_override] = ACTIONS(4070), + [anon_sym_lateinit] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_internal] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_tailrec] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_infix] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym_external] = ACTIONS(4070), + [sym_property_modifier] = ACTIONS(4070), + [anon_sym_abstract] = ACTIONS(4070), + [anon_sym_final] = ACTIONS(4070), + [anon_sym_open] = ACTIONS(4070), + [anon_sym_vararg] = ACTIONS(4070), + [anon_sym_noinline] = ACTIONS(4070), + [anon_sym_crossinline] = ACTIONS(4070), + [anon_sym_expect] = ACTIONS(4070), + [anon_sym_actual] = ACTIONS(4070), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4072), + [anon_sym_continue_AT] = ACTIONS(4072), + [anon_sym_break_AT] = ACTIONS(4072), + [anon_sym_this_AT] = ACTIONS(4072), + [anon_sym_super_AT] = ACTIONS(4072), + [sym_real_literal] = ACTIONS(4072), + [sym_integer_literal] = ACTIONS(4070), + [sym_hex_literal] = ACTIONS(4072), + [sym_bin_literal] = ACTIONS(4072), + [anon_sym_true] = ACTIONS(4070), + [anon_sym_false] = ACTIONS(4070), + [anon_sym_SQUOTE] = ACTIONS(4072), + [sym__backtick_identifier] = ACTIONS(4072), + [sym__automatic_semicolon] = ACTIONS(4072), + [sym_safe_nav] = ACTIONS(4072), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4072), }, [813] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_by] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3990), - [sym__quest] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3990), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym_type_constraints] = STATE(916), + [sym_function_body] = STATE(1166), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(4081), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), }, [814] = { - [sym_catch_block] = STATE(814), - [aux_sym_try_expression_repeat1] = STATE(814), - [sym__alpha_identifier] = ACTIONS(4126), - [anon_sym_AT] = ACTIONS(4128), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_DOT] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_EQ] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4128), - [anon_sym_RBRACE] = ACTIONS(4128), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_COMMA] = ACTIONS(4128), - [anon_sym_LT] = ACTIONS(4126), - [anon_sym_GT] = ACTIONS(4126), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_object] = ACTIONS(4126), - [anon_sym_fun] = ACTIONS(4126), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(4126), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_this] = ACTIONS(4126), - [anon_sym_super] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4126), - [sym_label] = ACTIONS(4126), - [anon_sym_in] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4128), - [anon_sym_QMARK_COLON] = ACTIONS(4128), - [anon_sym_AMP_AMP] = ACTIONS(4128), - [anon_sym_PIPE_PIPE] = ACTIONS(4128), - [anon_sym_null] = ACTIONS(4126), - [anon_sym_if] = ACTIONS(4126), - [anon_sym_else] = ACTIONS(4126), - [anon_sym_when] = ACTIONS(4126), - [anon_sym_try] = ACTIONS(4126), - [anon_sym_catch] = ACTIONS(4130), - [anon_sym_finally] = ACTIONS(4126), - [anon_sym_throw] = ACTIONS(4126), - [anon_sym_return] = ACTIONS(4126), - [anon_sym_continue] = ACTIONS(4126), - [anon_sym_break] = ACTIONS(4126), - [anon_sym_COLON_COLON] = ACTIONS(4128), - [anon_sym_PLUS_EQ] = ACTIONS(4128), - [anon_sym_DASH_EQ] = ACTIONS(4128), - [anon_sym_STAR_EQ] = ACTIONS(4128), - [anon_sym_SLASH_EQ] = ACTIONS(4128), - [anon_sym_PERCENT_EQ] = ACTIONS(4128), - [anon_sym_BANG_EQ] = ACTIONS(4126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4128), - [anon_sym_EQ_EQ] = ACTIONS(4126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4128), - [anon_sym_LT_EQ] = ACTIONS(4128), - [anon_sym_GT_EQ] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4126), - [anon_sym_PERCENT] = ACTIONS(4126), - [anon_sym_as_QMARK] = ACTIONS(4128), - [anon_sym_PLUS_PLUS] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_BANG_BANG] = ACTIONS(4128), - [anon_sym_suspend] = ACTIONS(4126), - [anon_sym_sealed] = ACTIONS(4126), - [anon_sym_annotation] = ACTIONS(4126), - [anon_sym_data] = ACTIONS(4126), - [anon_sym_inner] = ACTIONS(4126), - [anon_sym_value] = ACTIONS(4126), - [anon_sym_override] = ACTIONS(4126), - [anon_sym_lateinit] = ACTIONS(4126), - [anon_sym_public] = ACTIONS(4126), - [anon_sym_private] = ACTIONS(4126), - [anon_sym_internal] = ACTIONS(4126), - [anon_sym_protected] = ACTIONS(4126), - [anon_sym_tailrec] = ACTIONS(4126), - [anon_sym_operator] = ACTIONS(4126), - [anon_sym_infix] = ACTIONS(4126), - [anon_sym_inline] = ACTIONS(4126), - [anon_sym_external] = ACTIONS(4126), - [sym_property_modifier] = ACTIONS(4126), - [anon_sym_abstract] = ACTIONS(4126), - [anon_sym_final] = ACTIONS(4126), - [anon_sym_open] = ACTIONS(4126), - [anon_sym_vararg] = ACTIONS(4126), - [anon_sym_noinline] = ACTIONS(4126), - [anon_sym_crossinline] = ACTIONS(4126), - [anon_sym_expect] = ACTIONS(4126), - [anon_sym_actual] = ACTIONS(4126), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4128), - [anon_sym_continue_AT] = ACTIONS(4128), - [anon_sym_break_AT] = ACTIONS(4128), - [anon_sym_this_AT] = ACTIONS(4128), - [anon_sym_super_AT] = ACTIONS(4128), - [sym_real_literal] = ACTIONS(4128), - [sym_integer_literal] = ACTIONS(4126), - [sym_hex_literal] = ACTIONS(4128), - [sym_bin_literal] = ACTIONS(4128), - [anon_sym_true] = ACTIONS(4126), - [anon_sym_false] = ACTIONS(4126), - [anon_sym_SQUOTE] = ACTIONS(4128), - [sym__backtick_identifier] = ACTIONS(4128), - [sym__automatic_semicolon] = ACTIONS(4128), - [sym_safe_nav] = ACTIONS(4128), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4128), + [sym_type_constraints] = STATE(925), + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(4091), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, [815] = { - [sym_type_constraints] = STATE(910), - [sym_function_body] = STATE(1040), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(4137), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_COMMA] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4133), - [anon_sym_fun] = ACTIONS(4133), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_this] = ACTIONS(4133), - [anon_sym_super] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4133), - [sym_label] = ACTIONS(4133), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_if] = ACTIONS(4133), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_when] = ACTIONS(4133), - [anon_sym_try] = ACTIONS(4133), - [anon_sym_throw] = ACTIONS(4133), - [anon_sym_return] = ACTIONS(4133), - [anon_sym_continue] = ACTIONS(4133), - [anon_sym_break] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_PLUS_EQ] = ACTIONS(4135), - [anon_sym_DASH_EQ] = ACTIONS(4135), - [anon_sym_STAR_EQ] = ACTIONS(4135), - [anon_sym_SLASH_EQ] = ACTIONS(4135), - [anon_sym_PERCENT_EQ] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4133), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4133), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4135), - [anon_sym_continue_AT] = ACTIONS(4135), - [anon_sym_break_AT] = ACTIONS(4135), - [anon_sym_this_AT] = ACTIONS(4135), - [anon_sym_super_AT] = ACTIONS(4135), - [sym_real_literal] = ACTIONS(4135), - [sym_integer_literal] = ACTIONS(4133), - [sym_hex_literal] = ACTIONS(4135), - [sym_bin_literal] = ACTIONS(4135), - [anon_sym_true] = ACTIONS(4133), - [anon_sym_false] = ACTIONS(4133), - [anon_sym_SQUOTE] = ACTIONS(4135), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4135), + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_as] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_by] = ACTIONS(4093), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_GT] = ACTIONS(4093), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_object] = ACTIONS(4093), + [anon_sym_fun] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_this] = ACTIONS(4093), + [anon_sym_super] = ACTIONS(4093), + [anon_sym_AMP] = ACTIONS(4093), + [sym__quest] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [sym_label] = ACTIONS(4093), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_DOT_DOT] = ACTIONS(4095), + [anon_sym_QMARK_COLON] = ACTIONS(4095), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_PIPE_PIPE] = ACTIONS(4095), + [anon_sym_null] = ACTIONS(4093), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_when] = ACTIONS(4093), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ] = ACTIONS(4093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_SLASH] = ACTIONS(4093), + [anon_sym_PERCENT] = ACTIONS(4093), + [anon_sym_as_QMARK] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG] = ACTIONS(4093), + [anon_sym_BANG_BANG] = ACTIONS(4095), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4095), + [anon_sym_continue_AT] = ACTIONS(4095), + [anon_sym_break_AT] = ACTIONS(4095), + [anon_sym_this_AT] = ACTIONS(4095), + [anon_sym_super_AT] = ACTIONS(4095), + [sym_real_literal] = ACTIONS(4095), + [sym_integer_literal] = ACTIONS(4093), + [sym_hex_literal] = ACTIONS(4095), + [sym_bin_literal] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4093), + [anon_sym_false] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(4095), + [sym__backtick_identifier] = ACTIONS(4095), + [sym__automatic_semicolon] = ACTIONS(4095), + [sym_safe_nav] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4095), }, [816] = { - [aux_sym_user_type_repeat1] = STATE(824), - [sym__alpha_identifier] = ACTIONS(4143), - [anon_sym_AT] = ACTIONS(4145), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_as] = ACTIONS(4143), - [anon_sym_EQ] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_RBRACE] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(4145), - [anon_sym_COMMA] = ACTIONS(4145), - [anon_sym_by] = ACTIONS(4143), - [anon_sym_LT] = ACTIONS(4143), - [anon_sym_GT] = ACTIONS(4143), - [anon_sym_where] = ACTIONS(4143), - [anon_sym_object] = ACTIONS(4143), - [anon_sym_fun] = ACTIONS(4143), - [anon_sym_SEMI] = ACTIONS(4145), - [anon_sym_get] = ACTIONS(4143), - [anon_sym_set] = ACTIONS(4143), - [anon_sym_this] = ACTIONS(4143), - [anon_sym_super] = ACTIONS(4143), - [anon_sym_AMP] = ACTIONS(4143), - [sym__quest] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(4143), - [sym_label] = ACTIONS(4143), - [anon_sym_in] = ACTIONS(4143), - [anon_sym_DOT_DOT] = ACTIONS(4145), - [anon_sym_QMARK_COLON] = ACTIONS(4145), - [anon_sym_AMP_AMP] = ACTIONS(4145), - [anon_sym_PIPE_PIPE] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_if] = ACTIONS(4143), - [anon_sym_else] = ACTIONS(4143), - [anon_sym_when] = ACTIONS(4143), - [anon_sym_try] = ACTIONS(4143), - [anon_sym_throw] = ACTIONS(4143), - [anon_sym_return] = ACTIONS(4143), - [anon_sym_continue] = ACTIONS(4143), - [anon_sym_break] = ACTIONS(4143), - [anon_sym_COLON_COLON] = ACTIONS(4145), - [anon_sym_PLUS_EQ] = ACTIONS(4145), - [anon_sym_DASH_EQ] = ACTIONS(4145), - [anon_sym_STAR_EQ] = ACTIONS(4145), - [anon_sym_SLASH_EQ] = ACTIONS(4145), - [anon_sym_PERCENT_EQ] = ACTIONS(4145), - [anon_sym_BANG_EQ] = ACTIONS(4143), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4145), - [anon_sym_EQ_EQ] = ACTIONS(4143), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4145), - [anon_sym_LT_EQ] = ACTIONS(4145), - [anon_sym_GT_EQ] = ACTIONS(4145), - [anon_sym_BANGin] = ACTIONS(4145), - [anon_sym_is] = ACTIONS(4143), - [anon_sym_BANGis] = ACTIONS(4145), - [anon_sym_PLUS] = ACTIONS(4143), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4143), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_as_QMARK] = ACTIONS(4145), - [anon_sym_PLUS_PLUS] = ACTIONS(4145), - [anon_sym_DASH_DASH] = ACTIONS(4145), - [anon_sym_BANG] = ACTIONS(4143), - [anon_sym_BANG_BANG] = ACTIONS(4145), - [anon_sym_suspend] = ACTIONS(4143), - [anon_sym_sealed] = ACTIONS(4143), - [anon_sym_annotation] = ACTIONS(4143), - [anon_sym_data] = ACTIONS(4143), - [anon_sym_inner] = ACTIONS(4143), - [anon_sym_value] = ACTIONS(4143), - [anon_sym_override] = ACTIONS(4143), - [anon_sym_lateinit] = ACTIONS(4143), - [anon_sym_public] = ACTIONS(4143), - [anon_sym_private] = ACTIONS(4143), - [anon_sym_internal] = ACTIONS(4143), - [anon_sym_protected] = ACTIONS(4143), - [anon_sym_tailrec] = ACTIONS(4143), - [anon_sym_operator] = ACTIONS(4143), - [anon_sym_infix] = ACTIONS(4143), - [anon_sym_inline] = ACTIONS(4143), - [anon_sym_external] = ACTIONS(4143), - [sym_property_modifier] = ACTIONS(4143), - [anon_sym_abstract] = ACTIONS(4143), - [anon_sym_final] = ACTIONS(4143), - [anon_sym_open] = ACTIONS(4143), - [anon_sym_vararg] = ACTIONS(4143), - [anon_sym_noinline] = ACTIONS(4143), - [anon_sym_crossinline] = ACTIONS(4143), - [anon_sym_expect] = ACTIONS(4143), - [anon_sym_actual] = ACTIONS(4143), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4145), - [anon_sym_continue_AT] = ACTIONS(4145), - [anon_sym_break_AT] = ACTIONS(4145), - [anon_sym_this_AT] = ACTIONS(4145), - [anon_sym_super_AT] = ACTIONS(4145), - [sym_real_literal] = ACTIONS(4145), - [sym_integer_literal] = ACTIONS(4143), - [sym_hex_literal] = ACTIONS(4145), - [sym_bin_literal] = ACTIONS(4145), - [anon_sym_true] = ACTIONS(4143), - [anon_sym_false] = ACTIONS(4143), - [anon_sym_SQUOTE] = ACTIONS(4145), - [sym__backtick_identifier] = ACTIONS(4145), - [sym__automatic_semicolon] = ACTIONS(4145), - [sym_safe_nav] = ACTIONS(4145), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4145), + [sym_type_constraints] = STATE(886), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(4101), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, [817] = { - [sym_type_constraints] = STATE(908), - [sym_function_body] = STATE(1101), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(4154), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [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(3216), - [anon_sym_object] = ACTIONS(4150), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [aux_sym_user_type_repeat1] = STATE(812), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(4107), + [anon_sym_as] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_LT] = ACTIONS(4103), + [anon_sym_GT] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_object] = ACTIONS(4103), + [anon_sym_fun] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_this] = ACTIONS(4103), + [anon_sym_super] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(4103), + [sym__quest] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4103), + [sym_label] = ACTIONS(4103), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_DOT_DOT] = ACTIONS(4105), + [anon_sym_QMARK_COLON] = ACTIONS(4105), + [anon_sym_AMP_AMP] = ACTIONS(4105), + [anon_sym_PIPE_PIPE] = ACTIONS(4105), + [anon_sym_null] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_when] = ACTIONS(4103), + [anon_sym_try] = ACTIONS(4103), + [anon_sym_throw] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), + [anon_sym_DASH_EQ] = ACTIONS(4105), + [anon_sym_STAR_EQ] = ACTIONS(4105), + [anon_sym_SLASH_EQ] = ACTIONS(4105), + [anon_sym_PERCENT_EQ] = ACTIONS(4105), + [anon_sym_BANG_EQ] = ACTIONS(4103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4105), + [anon_sym_EQ_EQ] = ACTIONS(4103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4105), + [anon_sym_LT_EQ] = ACTIONS(4105), + [anon_sym_GT_EQ] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_SLASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_as_QMARK] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG] = ACTIONS(4103), + [anon_sym_BANG_BANG] = ACTIONS(4105), + [anon_sym_suspend] = ACTIONS(4103), + [anon_sym_sealed] = ACTIONS(4103), + [anon_sym_annotation] = ACTIONS(4103), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4103), + [anon_sym_lateinit] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_internal] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_tailrec] = ACTIONS(4103), + [anon_sym_operator] = ACTIONS(4103), + [anon_sym_infix] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_external] = ACTIONS(4103), + [sym_property_modifier] = ACTIONS(4103), + [anon_sym_abstract] = ACTIONS(4103), + [anon_sym_final] = ACTIONS(4103), + [anon_sym_open] = ACTIONS(4103), + [anon_sym_vararg] = ACTIONS(4103), + [anon_sym_noinline] = ACTIONS(4103), + [anon_sym_crossinline] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4105), + [anon_sym_continue_AT] = ACTIONS(4105), + [anon_sym_break_AT] = ACTIONS(4105), + [anon_sym_this_AT] = ACTIONS(4105), + [anon_sym_super_AT] = ACTIONS(4105), + [sym_real_literal] = ACTIONS(4105), + [sym_integer_literal] = ACTIONS(4103), + [sym_hex_literal] = ACTIONS(4105), + [sym_bin_literal] = ACTIONS(4105), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_SQUOTE] = ACTIONS(4105), + [sym__backtick_identifier] = ACTIONS(4105), + [sym__automatic_semicolon] = ACTIONS(4105), + [sym_safe_nav] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4105), }, [818] = { - [sym__expression] = STATE(4339), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_when_condition] = STATE(9416), - [sym_range_test] = STATE(9371), - [sym_type_test] = STATE(9371), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__in_operator] = STATE(2187), - [sym__is_operator] = STATE(5898), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_in] = ACTIONS(3654), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_BANGin] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_BANGis] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_catch_block] = STATE(818), + [aux_sym_try_expression_repeat1] = STATE(818), + [sym__alpha_identifier] = ACTIONS(4110), + [anon_sym_AT] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_LPAREN] = ACTIONS(4112), + [anon_sym_COMMA] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4110), + [anon_sym_GT] = ACTIONS(4110), + [anon_sym_where] = ACTIONS(4110), + [anon_sym_object] = ACTIONS(4110), + [anon_sym_fun] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_get] = ACTIONS(4110), + [anon_sym_set] = ACTIONS(4110), + [anon_sym_this] = ACTIONS(4110), + [anon_sym_super] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4110), + [anon_sym_DOT_DOT] = ACTIONS(4112), + [anon_sym_QMARK_COLON] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_PIPE_PIPE] = ACTIONS(4112), + [anon_sym_null] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4110), + [anon_sym_when] = ACTIONS(4110), + [anon_sym_try] = ACTIONS(4110), + [anon_sym_catch] = ACTIONS(4114), + [anon_sym_finally] = ACTIONS(4110), + [anon_sym_throw] = ACTIONS(4110), + [anon_sym_return] = ACTIONS(4110), + [anon_sym_continue] = ACTIONS(4110), + [anon_sym_break] = ACTIONS(4110), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_PLUS_EQ] = ACTIONS(4112), + [anon_sym_DASH_EQ] = ACTIONS(4112), + [anon_sym_STAR_EQ] = ACTIONS(4112), + [anon_sym_SLASH_EQ] = ACTIONS(4112), + [anon_sym_PERCENT_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_BANGin] = ACTIONS(4112), + [anon_sym_is] = ACTIONS(4110), + [anon_sym_BANGis] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4112), + [anon_sym_suspend] = ACTIONS(4110), + [anon_sym_sealed] = ACTIONS(4110), + [anon_sym_annotation] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4110), + [anon_sym_inner] = ACTIONS(4110), + [anon_sym_value] = ACTIONS(4110), + [anon_sym_override] = ACTIONS(4110), + [anon_sym_lateinit] = ACTIONS(4110), + [anon_sym_public] = ACTIONS(4110), + [anon_sym_private] = ACTIONS(4110), + [anon_sym_internal] = ACTIONS(4110), + [anon_sym_protected] = ACTIONS(4110), + [anon_sym_tailrec] = ACTIONS(4110), + [anon_sym_operator] = ACTIONS(4110), + [anon_sym_infix] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym_external] = ACTIONS(4110), + [sym_property_modifier] = ACTIONS(4110), + [anon_sym_abstract] = ACTIONS(4110), + [anon_sym_final] = ACTIONS(4110), + [anon_sym_open] = ACTIONS(4110), + [anon_sym_vararg] = ACTIONS(4110), + [anon_sym_noinline] = ACTIONS(4110), + [anon_sym_crossinline] = ACTIONS(4110), + [anon_sym_expect] = ACTIONS(4110), + [anon_sym_actual] = ACTIONS(4110), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4112), + [anon_sym_continue_AT] = ACTIONS(4112), + [anon_sym_break_AT] = ACTIONS(4112), + [anon_sym_this_AT] = ACTIONS(4112), + [anon_sym_super_AT] = ACTIONS(4112), + [sym_real_literal] = ACTIONS(4112), + [sym_integer_literal] = ACTIONS(4110), + [sym_hex_literal] = ACTIONS(4112), + [sym_bin_literal] = ACTIONS(4112), + [anon_sym_true] = ACTIONS(4110), + [anon_sym_false] = ACTIONS(4110), + [anon_sym_SQUOTE] = ACTIONS(4112), + [sym__backtick_identifier] = ACTIONS(4112), + [sym__automatic_semicolon] = ACTIONS(4112), + [sym_safe_nav] = ACTIONS(4112), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4112), }, [819] = { - [sym_type_constraints] = STATE(905), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [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(3216), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [sym_type_arguments] = STATE(845), + [sym__alpha_identifier] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_DOT] = ACTIONS(4117), + [anon_sym_as] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_RBRACE] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4119), + [anon_sym_COMMA] = ACTIONS(4119), + [anon_sym_by] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(4121), + [anon_sym_GT] = ACTIONS(4117), + [anon_sym_where] = ACTIONS(4117), + [anon_sym_object] = ACTIONS(4117), + [anon_sym_fun] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4119), + [anon_sym_get] = ACTIONS(4117), + [anon_sym_set] = ACTIONS(4117), + [anon_sym_this] = ACTIONS(4117), + [anon_sym_super] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4117), + [sym__quest] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [sym_label] = ACTIONS(4117), + [anon_sym_in] = ACTIONS(4117), + [anon_sym_DOT_DOT] = ACTIONS(4119), + [anon_sym_QMARK_COLON] = ACTIONS(4119), + [anon_sym_AMP_AMP] = ACTIONS(4119), + [anon_sym_PIPE_PIPE] = ACTIONS(4119), + [anon_sym_null] = ACTIONS(4117), + [anon_sym_if] = ACTIONS(4117), + [anon_sym_else] = ACTIONS(4117), + [anon_sym_when] = ACTIONS(4117), + [anon_sym_try] = ACTIONS(4117), + [anon_sym_throw] = ACTIONS(4117), + [anon_sym_return] = ACTIONS(4117), + [anon_sym_continue] = ACTIONS(4117), + [anon_sym_break] = ACTIONS(4117), + [anon_sym_COLON_COLON] = ACTIONS(4119), + [anon_sym_PLUS_EQ] = ACTIONS(4119), + [anon_sym_DASH_EQ] = ACTIONS(4119), + [anon_sym_STAR_EQ] = ACTIONS(4119), + [anon_sym_SLASH_EQ] = ACTIONS(4119), + [anon_sym_PERCENT_EQ] = ACTIONS(4119), + [anon_sym_BANG_EQ] = ACTIONS(4117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4119), + [anon_sym_EQ_EQ] = ACTIONS(4117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4119), + [anon_sym_LT_EQ] = ACTIONS(4119), + [anon_sym_GT_EQ] = ACTIONS(4119), + [anon_sym_BANGin] = ACTIONS(4119), + [anon_sym_is] = ACTIONS(4117), + [anon_sym_BANGis] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_SLASH] = ACTIONS(4117), + [anon_sym_PERCENT] = ACTIONS(4117), + [anon_sym_as_QMARK] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_BANG_BANG] = ACTIONS(4119), + [anon_sym_suspend] = ACTIONS(4117), + [anon_sym_sealed] = ACTIONS(4117), + [anon_sym_annotation] = ACTIONS(4117), + [anon_sym_data] = ACTIONS(4117), + [anon_sym_inner] = ACTIONS(4117), + [anon_sym_value] = ACTIONS(4117), + [anon_sym_override] = ACTIONS(4117), + [anon_sym_lateinit] = ACTIONS(4117), + [anon_sym_public] = ACTIONS(4117), + [anon_sym_private] = ACTIONS(4117), + [anon_sym_internal] = ACTIONS(4117), + [anon_sym_protected] = ACTIONS(4117), + [anon_sym_tailrec] = ACTIONS(4117), + [anon_sym_operator] = ACTIONS(4117), + [anon_sym_infix] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4117), + [anon_sym_external] = ACTIONS(4117), + [sym_property_modifier] = ACTIONS(4117), + [anon_sym_abstract] = ACTIONS(4117), + [anon_sym_final] = ACTIONS(4117), + [anon_sym_open] = ACTIONS(4117), + [anon_sym_vararg] = ACTIONS(4117), + [anon_sym_noinline] = ACTIONS(4117), + [anon_sym_crossinline] = ACTIONS(4117), + [anon_sym_expect] = ACTIONS(4117), + [anon_sym_actual] = ACTIONS(4117), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4119), + [anon_sym_continue_AT] = ACTIONS(4119), + [anon_sym_break_AT] = ACTIONS(4119), + [anon_sym_this_AT] = ACTIONS(4119), + [anon_sym_super_AT] = ACTIONS(4119), + [sym_real_literal] = ACTIONS(4119), + [sym_integer_literal] = ACTIONS(4117), + [sym_hex_literal] = ACTIONS(4119), + [sym_bin_literal] = ACTIONS(4119), + [anon_sym_true] = ACTIONS(4117), + [anon_sym_false] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [sym__backtick_identifier] = ACTIONS(4119), + [sym__automatic_semicolon] = ACTIONS(4119), + [sym_safe_nav] = ACTIONS(4119), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4119), }, [820] = { - [aux_sym_user_type_repeat1] = STATE(816), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4166), - [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_by] = ACTIONS(4162), - [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_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_AMP] = ACTIONS(4162), - [sym__quest] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4164), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_by] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_AMP] = ACTIONS(3938), + [sym__quest] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3938), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [821] = { - [sym_type_arguments] = STATE(852), - [sym__alpha_identifier] = ACTIONS(4169), - [anon_sym_AT] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_as] = ACTIONS(4169), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_LPAREN] = ACTIONS(4171), - [anon_sym_COMMA] = ACTIONS(4171), - [anon_sym_by] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(4173), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_where] = ACTIONS(4169), - [anon_sym_object] = ACTIONS(4169), - [anon_sym_fun] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4171), - [anon_sym_get] = ACTIONS(4169), - [anon_sym_set] = ACTIONS(4169), - [anon_sym_this] = ACTIONS(4169), - [anon_sym_super] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [sym__quest] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [sym_label] = ACTIONS(4169), - [anon_sym_in] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_QMARK_COLON] = ACTIONS(4171), - [anon_sym_AMP_AMP] = ACTIONS(4171), - [anon_sym_PIPE_PIPE] = ACTIONS(4171), - [anon_sym_null] = ACTIONS(4169), - [anon_sym_if] = ACTIONS(4169), - [anon_sym_else] = ACTIONS(4169), - [anon_sym_when] = ACTIONS(4169), - [anon_sym_try] = ACTIONS(4169), - [anon_sym_throw] = ACTIONS(4169), - [anon_sym_return] = ACTIONS(4169), - [anon_sym_continue] = ACTIONS(4169), - [anon_sym_break] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4171), - [anon_sym_PLUS_EQ] = ACTIONS(4171), - [anon_sym_DASH_EQ] = ACTIONS(4171), - [anon_sym_STAR_EQ] = ACTIONS(4171), - [anon_sym_SLASH_EQ] = ACTIONS(4171), - [anon_sym_PERCENT_EQ] = ACTIONS(4171), - [anon_sym_BANG_EQ] = ACTIONS(4169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4171), - [anon_sym_LT_EQ] = ACTIONS(4171), - [anon_sym_GT_EQ] = ACTIONS(4171), - [anon_sym_BANGin] = ACTIONS(4171), - [anon_sym_is] = ACTIONS(4169), - [anon_sym_BANGis] = ACTIONS(4171), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_as_QMARK] = ACTIONS(4171), - [anon_sym_PLUS_PLUS] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(4171), - [anon_sym_BANG] = ACTIONS(4169), - [anon_sym_BANG_BANG] = ACTIONS(4171), - [anon_sym_suspend] = ACTIONS(4169), - [anon_sym_sealed] = ACTIONS(4169), - [anon_sym_annotation] = ACTIONS(4169), - [anon_sym_data] = ACTIONS(4169), - [anon_sym_inner] = ACTIONS(4169), - [anon_sym_value] = ACTIONS(4169), - [anon_sym_override] = ACTIONS(4169), - [anon_sym_lateinit] = ACTIONS(4169), - [anon_sym_public] = ACTIONS(4169), - [anon_sym_private] = ACTIONS(4169), - [anon_sym_internal] = ACTIONS(4169), - [anon_sym_protected] = ACTIONS(4169), - [anon_sym_tailrec] = ACTIONS(4169), - [anon_sym_operator] = ACTIONS(4169), - [anon_sym_infix] = ACTIONS(4169), - [anon_sym_inline] = ACTIONS(4169), - [anon_sym_external] = ACTIONS(4169), - [sym_property_modifier] = ACTIONS(4169), - [anon_sym_abstract] = ACTIONS(4169), - [anon_sym_final] = ACTIONS(4169), - [anon_sym_open] = ACTIONS(4169), - [anon_sym_vararg] = ACTIONS(4169), - [anon_sym_noinline] = ACTIONS(4169), - [anon_sym_crossinline] = ACTIONS(4169), - [anon_sym_expect] = ACTIONS(4169), - [anon_sym_actual] = ACTIONS(4169), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4171), - [anon_sym_continue_AT] = ACTIONS(4171), - [anon_sym_break_AT] = ACTIONS(4171), - [anon_sym_this_AT] = ACTIONS(4171), - [anon_sym_super_AT] = ACTIONS(4171), - [sym_real_literal] = ACTIONS(4171), - [sym_integer_literal] = ACTIONS(4169), - [sym_hex_literal] = ACTIONS(4171), - [sym_bin_literal] = ACTIONS(4171), - [anon_sym_true] = ACTIONS(4169), - [anon_sym_false] = ACTIONS(4169), - [anon_sym_SQUOTE] = ACTIONS(4171), - [sym__backtick_identifier] = ACTIONS(4171), - [sym__automatic_semicolon] = ACTIONS(4171), - [sym_safe_nav] = ACTIONS(4171), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4171), + [sym_type_constraints] = STATE(915), + [sym_function_body] = STATE(1127), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(4127), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4123), + [anon_sym_fun] = ACTIONS(4123), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_this] = ACTIONS(4123), + [anon_sym_super] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4123), + [sym_label] = ACTIONS(4123), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_throw] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4125), + [anon_sym_continue_AT] = ACTIONS(4125), + [anon_sym_break_AT] = ACTIONS(4125), + [anon_sym_this_AT] = ACTIONS(4125), + [anon_sym_super_AT] = ACTIONS(4125), + [sym_real_literal] = ACTIONS(4125), + [sym_integer_literal] = ACTIONS(4123), + [sym_hex_literal] = ACTIONS(4125), + [sym_bin_literal] = ACTIONS(4125), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4125), }, [822] = { - [sym_type_constraints] = STATE(899), - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(4179), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [aux_sym_user_type_repeat1] = STATE(822), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4133), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, [823] = { - [sym_type_arguments] = STATE(6571), - [sym__alpha_identifier] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4183), - [anon_sym_COLON] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_RBRACE] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_COMMA] = ACTIONS(4183), - [anon_sym_by] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_where] = ACTIONS(4181), - [anon_sym_object] = ACTIONS(4181), - [anon_sym_fun] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_get] = ACTIONS(4181), - [anon_sym_set] = ACTIONS(4181), - [anon_sym_this] = ACTIONS(4181), - [anon_sym_super] = ACTIONS(4181), - [sym__quest] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_DOT_DOT] = ACTIONS(4183), - [anon_sym_QMARK_COLON] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4181), - [anon_sym_if] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4181), - [anon_sym_when] = ACTIONS(4181), - [anon_sym_try] = ACTIONS(4181), - [anon_sym_throw] = ACTIONS(4181), - [anon_sym_return] = ACTIONS(4181), - [anon_sym_continue] = ACTIONS(4181), - [anon_sym_break] = ACTIONS(4181), - [anon_sym_COLON_COLON] = ACTIONS(4183), - [anon_sym_PLUS_EQ] = ACTIONS(4183), - [anon_sym_DASH_EQ] = ACTIONS(4183), - [anon_sym_STAR_EQ] = ACTIONS(4183), - [anon_sym_SLASH_EQ] = ACTIONS(4183), - [anon_sym_PERCENT_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4183), - [anon_sym_LT_EQ] = ACTIONS(4183), - [anon_sym_GT_EQ] = ACTIONS(4183), - [anon_sym_BANGin] = ACTIONS(4183), - [anon_sym_is] = ACTIONS(4181), - [anon_sym_BANGis] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4183), - [anon_sym_PLUS_PLUS] = ACTIONS(4183), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4183), - [anon_sym_suspend] = ACTIONS(4181), - [anon_sym_sealed] = ACTIONS(4181), - [anon_sym_annotation] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4181), - [anon_sym_inner] = ACTIONS(4181), - [anon_sym_value] = ACTIONS(4181), - [anon_sym_override] = ACTIONS(4181), - [anon_sym_lateinit] = ACTIONS(4181), - [anon_sym_public] = ACTIONS(4181), - [anon_sym_private] = ACTIONS(4181), - [anon_sym_internal] = ACTIONS(4181), - [anon_sym_protected] = ACTIONS(4181), - [anon_sym_tailrec] = ACTIONS(4181), - [anon_sym_operator] = ACTIONS(4181), - [anon_sym_infix] = ACTIONS(4181), - [anon_sym_inline] = ACTIONS(4181), - [anon_sym_external] = ACTIONS(4181), - [sym_property_modifier] = ACTIONS(4181), - [anon_sym_abstract] = ACTIONS(4181), - [anon_sym_final] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4181), - [anon_sym_vararg] = ACTIONS(4181), - [anon_sym_noinline] = ACTIONS(4181), - [anon_sym_crossinline] = ACTIONS(4181), - [anon_sym_expect] = ACTIONS(4181), - [anon_sym_actual] = ACTIONS(4181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4183), - [anon_sym_continue_AT] = ACTIONS(4183), - [anon_sym_break_AT] = ACTIONS(4183), - [anon_sym_this_AT] = ACTIONS(4183), - [anon_sym_super_AT] = ACTIONS(4183), - [sym_real_literal] = ACTIONS(4183), - [sym_integer_literal] = ACTIONS(4181), - [sym_hex_literal] = ACTIONS(4183), - [sym_bin_literal] = ACTIONS(4183), - [anon_sym_true] = ACTIONS(4181), - [anon_sym_false] = ACTIONS(4181), - [anon_sym_SQUOTE] = ACTIONS(4183), - [sym__backtick_identifier] = ACTIONS(4183), - [sym__automatic_semicolon] = ACTIONS(4183), - [sym_safe_nav] = ACTIONS(4183), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4183), + [sym_type_arguments] = STATE(6547), + [sym__alpha_identifier] = ACTIONS(4136), + [anon_sym_AT] = ACTIONS(4138), + [anon_sym_COLON] = ACTIONS(4140), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym_COMMA] = ACTIONS(4138), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4136), + [anon_sym_GT] = ACTIONS(4136), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_object] = ACTIONS(4136), + [anon_sym_fun] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(4136), + [anon_sym_set] = ACTIONS(4136), + [anon_sym_this] = ACTIONS(4136), + [anon_sym_super] = ACTIONS(4136), + [sym__quest] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4138), + [anon_sym_QMARK_COLON] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_PIPE_PIPE] = ACTIONS(4138), + [anon_sym_null] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_when] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4136), + [anon_sym_throw] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4138), + [anon_sym_DASH_EQ] = ACTIONS(4138), + [anon_sym_STAR_EQ] = ACTIONS(4138), + [anon_sym_SLASH_EQ] = ACTIONS(4138), + [anon_sym_PERCENT_EQ] = ACTIONS(4138), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4138), + [anon_sym_GT_EQ] = ACTIONS(4138), + [anon_sym_BANGin] = ACTIONS(4138), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_BANGis] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_SLASH] = ACTIONS(4136), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4138), + [anon_sym_suspend] = ACTIONS(4136), + [anon_sym_sealed] = ACTIONS(4136), + [anon_sym_annotation] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4136), + [anon_sym_inner] = ACTIONS(4136), + [anon_sym_value] = ACTIONS(4136), + [anon_sym_override] = ACTIONS(4136), + [anon_sym_lateinit] = ACTIONS(4136), + [anon_sym_public] = ACTIONS(4136), + [anon_sym_private] = ACTIONS(4136), + [anon_sym_internal] = ACTIONS(4136), + [anon_sym_protected] = ACTIONS(4136), + [anon_sym_tailrec] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_infix] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym_external] = ACTIONS(4136), + [sym_property_modifier] = ACTIONS(4136), + [anon_sym_abstract] = ACTIONS(4136), + [anon_sym_final] = ACTIONS(4136), + [anon_sym_open] = ACTIONS(4136), + [anon_sym_vararg] = ACTIONS(4136), + [anon_sym_noinline] = ACTIONS(4136), + [anon_sym_crossinline] = ACTIONS(4136), + [anon_sym_expect] = ACTIONS(4136), + [anon_sym_actual] = ACTIONS(4136), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4138), + [anon_sym_continue_AT] = ACTIONS(4138), + [anon_sym_break_AT] = ACTIONS(4138), + [anon_sym_this_AT] = ACTIONS(4138), + [anon_sym_super_AT] = ACTIONS(4138), + [sym_real_literal] = ACTIONS(4138), + [sym_integer_literal] = ACTIONS(4136), + [sym_hex_literal] = ACTIONS(4138), + [sym_bin_literal] = ACTIONS(4138), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4138), + [sym__backtick_identifier] = ACTIONS(4138), + [sym__automatic_semicolon] = ACTIONS(4138), + [sym_safe_nav] = ACTIONS(4138), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4138), }, [824] = { - [aux_sym_user_type_repeat1] = STATE(824), - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4191), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_object] = ACTIONS(4187), - [anon_sym_fun] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_this] = ACTIONS(4187), - [anon_sym_super] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4187), - [sym__quest] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4187), - [sym_label] = ACTIONS(4187), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4189), - [anon_sym_QMARK_COLON] = ACTIONS(4189), - [anon_sym_AMP_AMP] = ACTIONS(4189), - [anon_sym_PIPE_PIPE] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4187), - [anon_sym_if] = ACTIONS(4187), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_try] = ACTIONS(4187), - [anon_sym_throw] = ACTIONS(4187), - [anon_sym_return] = ACTIONS(4187), - [anon_sym_continue] = ACTIONS(4187), - [anon_sym_break] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4189), - [anon_sym_DASH_EQ] = ACTIONS(4189), - [anon_sym_STAR_EQ] = ACTIONS(4189), - [anon_sym_SLASH_EQ] = ACTIONS(4189), - [anon_sym_PERCENT_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), - [anon_sym_LT_EQ] = ACTIONS(4189), - [anon_sym_GT_EQ] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_SLASH] = ACTIONS(4187), - [anon_sym_PERCENT] = ACTIONS(4187), - [anon_sym_as_QMARK] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4187), - [anon_sym_BANG_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4189), - [anon_sym_continue_AT] = ACTIONS(4189), - [anon_sym_break_AT] = ACTIONS(4189), - [anon_sym_this_AT] = ACTIONS(4189), - [anon_sym_super_AT] = ACTIONS(4189), - [sym_real_literal] = ACTIONS(4189), - [sym_integer_literal] = ACTIONS(4187), - [sym_hex_literal] = ACTIONS(4189), - [sym_bin_literal] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [anon_sym_SQUOTE] = ACTIONS(4189), - [sym__backtick_identifier] = ACTIONS(4189), - [sym__automatic_semicolon] = ACTIONS(4189), - [sym_safe_nav] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4189), + [sym__expression] = STATE(4394), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_when_condition] = STATE(9234), + [sym_range_test] = STATE(9318), + [sym_type_test] = STATE(9318), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__in_operator] = STATE(1825), + [sym__is_operator] = STATE(5953), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_in] = ACTIONS(3602), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_BANGin] = ACTIONS(3606), + [anon_sym_is] = ACTIONS(3608), + [anon_sym_BANGis] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(847), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [825] = { - [sym_type_constraints] = STATE(903), - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(4198), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [sym_type_constraints] = STATE(899), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3194), + [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(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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, [826] = { - [sym_type_constraints] = STATE(981), - [sym_enum_class_body] = STATE(1114), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4148), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_object] = ACTIONS(4148), + [anon_sym_fun] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [anon_sym_this] = ACTIONS(4148), + [anon_sym_super] = ACTIONS(4148), + [anon_sym_AMP] = 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(4150), + [anon_sym_QMARK_COLON] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE_PIPE] = ACTIONS(4150), + [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(4150), + [anon_sym_PLUS_EQ] = ACTIONS(4150), + [anon_sym_DASH_EQ] = ACTIONS(4150), + [anon_sym_STAR_EQ] = ACTIONS(4150), + [anon_sym_SLASH_EQ] = ACTIONS(4150), + [anon_sym_PERCENT_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4150), + [anon_sym_LT_EQ] = ACTIONS(4150), + [anon_sym_GT_EQ] = ACTIONS(4150), + [anon_sym_BANGin] = ACTIONS(4150), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_BANGis] = ACTIONS(4150), + [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(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4148), + [anon_sym_BANG_BANG] = ACTIONS(4150), + [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_value] = 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(4150), + [anon_sym_continue_AT] = ACTIONS(4150), + [anon_sym_break_AT] = ACTIONS(4150), + [anon_sym_this_AT] = ACTIONS(4150), + [anon_sym_super_AT] = ACTIONS(4150), + [sym_real_literal] = ACTIONS(4150), + [sym_integer_literal] = ACTIONS(4148), + [sym_hex_literal] = ACTIONS(4150), + [sym_bin_literal] = ACTIONS(4150), + [anon_sym_true] = ACTIONS(4148), + [anon_sym_false] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4150), + [sym__automatic_semicolon] = ACTIONS(4150), + [sym_safe_nav] = ACTIONS(4150), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4150), }, [827] = { - [sym_function_body] = STATE(1162), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(4156), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, [828] = { - [sym__alpha_identifier] = ACTIONS(4212), - [anon_sym_AT] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4214), - [anon_sym_RBRACK] = ACTIONS(4214), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4212), - [anon_sym_EQ] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4214), - [anon_sym_LPAREN] = ACTIONS(4214), - [anon_sym_COMMA] = ACTIONS(4214), - [anon_sym_RPAREN] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4212), - [anon_sym_GT] = ACTIONS(4212), - [anon_sym_where] = ACTIONS(4212), - [anon_sym_object] = ACTIONS(4212), - [anon_sym_fun] = ACTIONS(4212), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym_get] = ACTIONS(4212), - [anon_sym_set] = ACTIONS(4212), - [anon_sym_this] = ACTIONS(4212), - [anon_sym_super] = ACTIONS(4212), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_DASH_GT] = ACTIONS(4214), - [sym_label] = ACTIONS(4212), - [anon_sym_in] = ACTIONS(4212), - [anon_sym_while] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4214), - [anon_sym_QMARK_COLON] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_null] = ACTIONS(4212), - [anon_sym_if] = ACTIONS(4212), - [anon_sym_else] = ACTIONS(4212), - [anon_sym_when] = ACTIONS(4212), - [anon_sym_try] = ACTIONS(4212), - [anon_sym_throw] = ACTIONS(4212), - [anon_sym_return] = ACTIONS(4212), - [anon_sym_continue] = ACTIONS(4212), - [anon_sym_break] = ACTIONS(4212), - [anon_sym_COLON_COLON] = ACTIONS(4214), - [anon_sym_PLUS_EQ] = ACTIONS(4214), - [anon_sym_DASH_EQ] = ACTIONS(4214), - [anon_sym_STAR_EQ] = ACTIONS(4214), - [anon_sym_SLASH_EQ] = ACTIONS(4214), - [anon_sym_PERCENT_EQ] = ACTIONS(4214), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4214), - [anon_sym_LT_EQ] = ACTIONS(4214), - [anon_sym_GT_EQ] = ACTIONS(4214), - [anon_sym_BANGin] = ACTIONS(4214), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_BANGis] = ACTIONS(4214), - [anon_sym_PLUS] = ACTIONS(4212), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4212), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_as_QMARK] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4214), - [anon_sym_DASH_DASH] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4212), - [anon_sym_BANG_BANG] = ACTIONS(4214), - [anon_sym_suspend] = ACTIONS(4212), - [anon_sym_sealed] = ACTIONS(4212), - [anon_sym_annotation] = ACTIONS(4212), - [anon_sym_data] = ACTIONS(4212), - [anon_sym_inner] = ACTIONS(4212), - [anon_sym_value] = ACTIONS(4212), - [anon_sym_override] = ACTIONS(4212), - [anon_sym_lateinit] = ACTIONS(4212), - [anon_sym_public] = ACTIONS(4212), - [anon_sym_private] = ACTIONS(4212), - [anon_sym_internal] = ACTIONS(4212), - [anon_sym_protected] = ACTIONS(4212), - [anon_sym_tailrec] = ACTIONS(4212), - [anon_sym_operator] = ACTIONS(4212), - [anon_sym_infix] = ACTIONS(4212), - [anon_sym_inline] = ACTIONS(4212), - [anon_sym_external] = ACTIONS(4212), - [sym_property_modifier] = ACTIONS(4212), - [anon_sym_abstract] = ACTIONS(4212), - [anon_sym_final] = ACTIONS(4212), - [anon_sym_open] = ACTIONS(4212), - [anon_sym_vararg] = ACTIONS(4212), - [anon_sym_noinline] = ACTIONS(4212), - [anon_sym_crossinline] = ACTIONS(4212), - [anon_sym_expect] = ACTIONS(4212), - [anon_sym_actual] = ACTIONS(4212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4214), - [anon_sym_continue_AT] = ACTIONS(4214), - [anon_sym_break_AT] = ACTIONS(4214), - [anon_sym_this_AT] = ACTIONS(4214), - [anon_sym_super_AT] = ACTIONS(4214), - [sym_real_literal] = ACTIONS(4214), - [sym_integer_literal] = ACTIONS(4212), - [sym_hex_literal] = ACTIONS(4214), - [sym_bin_literal] = ACTIONS(4214), - [anon_sym_true] = ACTIONS(4212), - [anon_sym_false] = ACTIONS(4212), - [anon_sym_SQUOTE] = ACTIONS(4214), - [sym__backtick_identifier] = ACTIONS(4214), - [sym_safe_nav] = ACTIONS(4214), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4214), + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1013), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, [829] = { - [sym_type_constraints] = STATE(1039), - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(4216), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [sym__alpha_identifier] = ACTIONS(4158), + [anon_sym_AT] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4158), + [anon_sym_EQ] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(4160), + [anon_sym_COMMA] = ACTIONS(4160), + [anon_sym_by] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4158), + [anon_sym_GT] = ACTIONS(4158), + [anon_sym_where] = ACTIONS(4158), + [anon_sym_object] = ACTIONS(4158), + [anon_sym_fun] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym_get] = ACTIONS(4158), + [anon_sym_set] = ACTIONS(4158), + [anon_sym_this] = ACTIONS(4158), + [anon_sym_super] = ACTIONS(4158), + [sym__quest] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4158), + [anon_sym_DOT_DOT] = ACTIONS(4160), + [anon_sym_QMARK_COLON] = ACTIONS(4160), + [anon_sym_AMP_AMP] = ACTIONS(4160), + [anon_sym_PIPE_PIPE] = ACTIONS(4160), + [anon_sym_null] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4158), + [anon_sym_when] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_throw] = ACTIONS(4158), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_continue] = ACTIONS(4158), + [anon_sym_break] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(4160), + [anon_sym_PLUS_EQ] = ACTIONS(4160), + [anon_sym_DASH_EQ] = ACTIONS(4160), + [anon_sym_STAR_EQ] = ACTIONS(4160), + [anon_sym_SLASH_EQ] = ACTIONS(4160), + [anon_sym_PERCENT_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4160), + [anon_sym_LT_EQ] = ACTIONS(4160), + [anon_sym_GT_EQ] = ACTIONS(4160), + [anon_sym_BANGin] = ACTIONS(4160), + [anon_sym_is] = ACTIONS(4158), + [anon_sym_BANGis] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_SLASH] = ACTIONS(4158), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4160), + [anon_sym_PLUS_PLUS] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4160), + [anon_sym_suspend] = ACTIONS(4158), + [anon_sym_sealed] = ACTIONS(4158), + [anon_sym_annotation] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4158), + [anon_sym_inner] = ACTIONS(4158), + [anon_sym_value] = ACTIONS(4158), + [anon_sym_override] = ACTIONS(4158), + [anon_sym_lateinit] = ACTIONS(4158), + [anon_sym_public] = ACTIONS(4158), + [anon_sym_private] = ACTIONS(4158), + [anon_sym_internal] = ACTIONS(4158), + [anon_sym_protected] = ACTIONS(4158), + [anon_sym_tailrec] = ACTIONS(4158), + [anon_sym_operator] = ACTIONS(4158), + [anon_sym_infix] = ACTIONS(4158), + [anon_sym_inline] = ACTIONS(4158), + [anon_sym_external] = ACTIONS(4158), + [sym_property_modifier] = ACTIONS(4158), + [anon_sym_abstract] = ACTIONS(4158), + [anon_sym_final] = ACTIONS(4158), + [anon_sym_open] = ACTIONS(4158), + [anon_sym_vararg] = ACTIONS(4158), + [anon_sym_noinline] = ACTIONS(4158), + [anon_sym_crossinline] = ACTIONS(4158), + [anon_sym_expect] = ACTIONS(4158), + [anon_sym_actual] = ACTIONS(4158), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4160), + [anon_sym_continue_AT] = ACTIONS(4160), + [anon_sym_break_AT] = ACTIONS(4160), + [anon_sym_this_AT] = ACTIONS(4160), + [anon_sym_super_AT] = ACTIONS(4160), + [sym_real_literal] = ACTIONS(4160), + [sym_integer_literal] = ACTIONS(4158), + [sym_hex_literal] = ACTIONS(4160), + [sym_bin_literal] = ACTIONS(4160), + [anon_sym_true] = ACTIONS(4158), + [anon_sym_false] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4160), + [sym__backtick_identifier] = ACTIONS(4160), + [sym__automatic_semicolon] = ACTIONS(4160), + [sym_safe_nav] = ACTIONS(4160), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4160), }, [830] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_RBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4230), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4220), - [anon_sym_DASH_GT] = ACTIONS(4226), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4168), + [sym__quest] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), }, [831] = { + [sym_type_constraints] = STATE(1119), + [sym_function_body] = STATE(1127), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4123), + [anon_sym_fun] = ACTIONS(4123), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_this] = ACTIONS(4123), + [anon_sym_super] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4123), + [sym_label] = ACTIONS(4123), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_throw] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4125), + [anon_sym_continue_AT] = ACTIONS(4125), + [anon_sym_break_AT] = ACTIONS(4125), + [anon_sym_this_AT] = ACTIONS(4125), + [anon_sym_super_AT] = ACTIONS(4125), + [sym_real_literal] = ACTIONS(4125), + [sym_integer_literal] = ACTIONS(4123), + [sym_hex_literal] = ACTIONS(4125), + [sym_bin_literal] = ACTIONS(4125), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4125), + }, + [832] = { + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4174), + [sym__quest] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [833] = { + [sym_type_constraints] = STATE(1121), + [sym_function_body] = STATE(1166), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(4176), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, + [834] = { + [sym_type_constraints] = STATE(1125), + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(4178), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [835] = { + [sym_type_constraints] = STATE(1128), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [836] = { + [sym_type_constraints] = STATE(886), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [837] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_DASH_GT] = ACTIONS(4188), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [838] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(4200), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [839] = { + [sym_class_body] = STATE(1183), + [sym_type_constraints] = STATE(962), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(4206), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [840] = { + [aux_sym_nullable_type_repeat1] = STATE(855), + [sym__alpha_identifier] = ACTIONS(4208), + [anon_sym_AT] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4208), + [anon_sym_as] = ACTIONS(4208), + [anon_sym_EQ] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_RBRACE] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(4210), + [anon_sym_COMMA] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4208), + [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_SEMI] = ACTIONS(4210), + [anon_sym_get] = ACTIONS(4208), + [anon_sym_set] = ACTIONS(4208), + [anon_sym_this] = ACTIONS(4208), + [anon_sym_super] = ACTIONS(4208), + [sym__quest] = ACTIONS(4212), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4210), + [anon_sym_super_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), + }, + [841] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_DASH_GT] = ACTIONS(4220), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [842] = { + [sym_type_constraints] = STATE(899), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3194), + [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(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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [843] = { + [sym_type_constraints] = STATE(1136), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(4228), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3194), + [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(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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [844] = { + [sym_type_constraints] = STATE(918), + [sym_function_body] = STATE(1120), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), + }, + [845] = { [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_as] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_object] = ACTIONS(4234), + [anon_sym_fun] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), [anon_sym_get] = ACTIONS(4234), [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), + [anon_sym_this] = ACTIONS(4234), + [anon_sym_super] = ACTIONS(4234), + [anon_sym_AMP] = ACTIONS(4234), + [sym__quest] = ACTIONS(4234), [anon_sym_STAR] = ACTIONS(4234), - [anon_sym_DASH_GT] = ACTIONS(4240), [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4236), + [anon_sym_QMARK_COLON] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_when] = ACTIONS(4234), + [anon_sym_try] = ACTIONS(4234), + [anon_sym_throw] = ACTIONS(4234), + [anon_sym_return] = ACTIONS(4234), + [anon_sym_continue] = ACTIONS(4234), + [anon_sym_break] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), + [anon_sym_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4236), + [anon_sym_suspend] = ACTIONS(4234), + [anon_sym_sealed] = ACTIONS(4234), + [anon_sym_annotation] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4234), + [anon_sym_inner] = ACTIONS(4234), + [anon_sym_value] = ACTIONS(4234), + [anon_sym_override] = ACTIONS(4234), + [anon_sym_lateinit] = ACTIONS(4234), + [anon_sym_public] = ACTIONS(4234), + [anon_sym_private] = ACTIONS(4234), + [anon_sym_internal] = ACTIONS(4234), + [anon_sym_protected] = ACTIONS(4234), + [anon_sym_tailrec] = ACTIONS(4234), + [anon_sym_operator] = ACTIONS(4234), + [anon_sym_infix] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym_external] = ACTIONS(4234), + [sym_property_modifier] = ACTIONS(4234), + [anon_sym_abstract] = ACTIONS(4234), + [anon_sym_final] = ACTIONS(4234), + [anon_sym_open] = ACTIONS(4234), + [anon_sym_vararg] = ACTIONS(4234), + [anon_sym_noinline] = ACTIONS(4234), + [anon_sym_crossinline] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(4234), + [anon_sym_actual] = ACTIONS(4234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4236), + [anon_sym_continue_AT] = ACTIONS(4236), + [anon_sym_break_AT] = ACTIONS(4236), + [anon_sym_this_AT] = ACTIONS(4236), + [anon_sym_super_AT] = ACTIONS(4236), + [sym_real_literal] = ACTIONS(4236), + [sym_integer_literal] = ACTIONS(4234), + [sym_hex_literal] = ACTIONS(4236), + [sym_bin_literal] = ACTIONS(4236), + [anon_sym_true] = ACTIONS(4234), + [anon_sym_false] = ACTIONS(4234), + [anon_sym_SQUOTE] = ACTIONS(4236), + [sym__backtick_identifier] = ACTIONS(4236), + [sym__automatic_semicolon] = ACTIONS(4236), + [sym_safe_nav] = ACTIONS(4236), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4236), + }, + [846] = { + [sym_function_body] = STATE(1020), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(4242), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), [anon_sym_DOT_DOT] = ACTIONS(4240), [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), [anon_sym_PLUS_EQ] = ACTIONS(4240), [anon_sym_DASH_EQ] = ACTIONS(4240), [anon_sym_STAR_EQ] = ACTIONS(4240), [anon_sym_SLASH_EQ] = ACTIONS(4240), [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4238), [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4238), [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), [anon_sym_LT_EQ] = ACTIONS(4240), [anon_sym_GT_EQ] = ACTIONS(4240), [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4238), [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), + [anon_sym_return_AT] = ACTIONS(4240), + [anon_sym_continue_AT] = ACTIONS(4240), + [anon_sym_break_AT] = ACTIONS(4240), + [anon_sym_this_AT] = ACTIONS(4240), + [anon_sym_super_AT] = ACTIONS(4240), + [sym_real_literal] = ACTIONS(4240), + [sym_integer_literal] = ACTIONS(4238), + [sym_hex_literal] = ACTIONS(4240), + [sym_bin_literal] = ACTIONS(4240), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym__string_start] = ACTIONS(4240), }, - [832] = { - [aux_sym_nullable_type_repeat1] = STATE(847), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4248), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4250), - [anon_sym_super_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), + [847] = { + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [833] = { - [sym_type_constraints] = STATE(1044), - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(4254), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [848] = { + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [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_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_AMP] = ACTIONS(4244), + [sym__quest] = ACTIONS(4244), + [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_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_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), }, - [834] = { - [sym_type_constraints] = STATE(905), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [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(3216), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [849] = { + [sym_type_constraints] = STATE(960), + [sym_enum_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, - [835] = { - [sym_type_constraints] = STATE(903), - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [850] = { + [sym_function_body] = STATE(1071), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(4254), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_where] = ACTIONS(4250), + [anon_sym_object] = ACTIONS(4250), + [anon_sym_fun] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_this] = ACTIONS(4250), + [anon_sym_super] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_null] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_when] = ACTIONS(4250), + [anon_sym_try] = ACTIONS(4250), + [anon_sym_throw] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_PLUS_EQ] = ACTIONS(4252), + [anon_sym_DASH_EQ] = ACTIONS(4252), + [anon_sym_STAR_EQ] = ACTIONS(4252), + [anon_sym_SLASH_EQ] = ACTIONS(4252), + [anon_sym_PERCENT_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4252), + [anon_sym_continue_AT] = ACTIONS(4252), + [anon_sym_break_AT] = ACTIONS(4252), + [anon_sym_this_AT] = ACTIONS(4252), + [anon_sym_super_AT] = ACTIONS(4252), + [sym_real_literal] = ACTIONS(4252), + [sym_integer_literal] = ACTIONS(4250), + [sym_hex_literal] = ACTIONS(4252), + [sym_bin_literal] = ACTIONS(4252), + [anon_sym_true] = ACTIONS(4250), + [anon_sym_false] = ACTIONS(4250), + [anon_sym_SQUOTE] = ACTIONS(4252), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4252), }, - [836] = { + [851] = { [sym__alpha_identifier] = ACTIONS(4256), [anon_sym_AT] = ACTIONS(4258), [anon_sym_LBRACK] = ACTIONS(4258), + [anon_sym_RBRACK] = ACTIONS(4258), [anon_sym_DOT] = ACTIONS(4256), [anon_sym_as] = ACTIONS(4256), [anon_sym_EQ] = ACTIONS(4256), @@ -143565,7 +145470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4258), [anon_sym_LPAREN] = ACTIONS(4258), [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_by] = ACTIONS(4256), + [anon_sym_RPAREN] = ACTIONS(4258), [anon_sym_LT] = ACTIONS(4256), [anon_sym_GT] = ACTIONS(4256), [anon_sym_where] = ACTIONS(4256), @@ -143576,11 +145481,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(4256), [anon_sym_this] = ACTIONS(4256), [anon_sym_super] = ACTIONS(4256), - [anon_sym_AMP] = ACTIONS(4256), - [sym__quest] = ACTIONS(4256), [anon_sym_STAR] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4258), [sym_label] = ACTIONS(4256), [anon_sym_in] = ACTIONS(4256), + [anon_sym_while] = ACTIONS(4256), [anon_sym_DOT_DOT] = ACTIONS(4258), [anon_sym_QMARK_COLON] = ACTIONS(4258), [anon_sym_AMP_AMP] = ACTIONS(4258), @@ -143658,137 +145563,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(4256), [anon_sym_SQUOTE] = ACTIONS(4258), [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), [sym_safe_nav] = ACTIONS(4258), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4258), }, - [837] = { - [sym_type_constraints] = STATE(899), - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [852] = { + [sym_class_body] = STATE(1118), + [sym_type_constraints] = STATE(930), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, - [838] = { - [sym_type_constraints] = STATE(898), - [sym_function_body] = STATE(1103), - [sym__block] = STATE(1092), + [853] = { + [sym_type_constraints] = STATE(925), + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [854] = { + [sym_type_constraints] = STATE(913), + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1109), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3194), [anon_sym_object] = ACTIONS(4260), [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), @@ -143881,23 +145894,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, - [839] = { - [sym_type_constraints] = STATE(896), - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1092), + [855] = { + [aux_sym_nullable_type_repeat1] = STATE(858), [sym__alpha_identifier] = ACTIONS(4264), [anon_sym_AT] = ACTIONS(4266), [anon_sym_LBRACK] = ACTIONS(4266), [anon_sym_DOT] = ACTIONS(4264), [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_EQ] = ACTIONS(4264), + [anon_sym_LBRACE] = ACTIONS(4266), [anon_sym_RBRACE] = ACTIONS(4266), [anon_sym_LPAREN] = ACTIONS(4266), [anon_sym_COMMA] = ACTIONS(4266), + [anon_sym_by] = ACTIONS(4264), [anon_sym_LT] = ACTIONS(4264), [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(4264), [anon_sym_object] = ACTIONS(4264), [anon_sym_fun] = ACTIONS(4264), [anon_sym_SEMI] = ACTIONS(4266), @@ -143905,6 +145917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(4264), [anon_sym_this] = ACTIONS(4264), [anon_sym_super] = ACTIONS(4264), + [sym__quest] = ACTIONS(4268), [anon_sym_STAR] = ACTIONS(4264), [sym_label] = ACTIONS(4264), [anon_sym_in] = ACTIONS(4264), @@ -143990,1775 +146003,900 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4266), }, - [840] = { - [sym_class_body] = STATE(1062), - [sym_type_constraints] = STATE(955), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [841] = { - [sym_type_constraints] = STATE(968), - [sym_enum_class_body] = STATE(1175), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), + [856] = { + [aux_sym_nullable_type_repeat1] = STATE(855), + [sym__alpha_identifier] = ACTIONS(4270), + [anon_sym_AT] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [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_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(4212), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4272), + [anon_sym_super_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), }, - [842] = { - [sym_class_body] = STATE(1166), - [sym_type_constraints] = STATE(966), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [857] = { + [sym_class_body] = STATE(1150), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(4278), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), }, - [843] = { - [sym_type_constraints] = STATE(963), - [sym_enum_class_body] = STATE(1166), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [858] = { + [aux_sym_nullable_type_repeat1] = STATE(858), + [sym__alpha_identifier] = ACTIONS(4280), + [anon_sym_AT] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_as] = ACTIONS(4280), + [anon_sym_EQ] = ACTIONS(4280), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_by] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4280), + [anon_sym_object] = ACTIONS(4280), + [anon_sym_fun] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_get] = ACTIONS(4280), + [anon_sym_set] = ACTIONS(4280), + [anon_sym_this] = ACTIONS(4280), + [anon_sym_super] = ACTIONS(4280), + [sym__quest] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(4280), + [sym_label] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4280), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_QMARK_COLON] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_null] = ACTIONS(4280), + [anon_sym_if] = ACTIONS(4280), + [anon_sym_else] = ACTIONS(4280), + [anon_sym_when] = ACTIONS(4280), + [anon_sym_try] = ACTIONS(4280), + [anon_sym_throw] = ACTIONS(4280), + [anon_sym_return] = ACTIONS(4280), + [anon_sym_continue] = ACTIONS(4280), + [anon_sym_break] = ACTIONS(4280), + [anon_sym_COLON_COLON] = ACTIONS(4282), + [anon_sym_PLUS_EQ] = ACTIONS(4282), + [anon_sym_DASH_EQ] = ACTIONS(4282), + [anon_sym_STAR_EQ] = ACTIONS(4282), + [anon_sym_SLASH_EQ] = ACTIONS(4282), + [anon_sym_PERCENT_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4282), + [anon_sym_EQ_EQ] = ACTIONS(4280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_BANGin] = ACTIONS(4282), + [anon_sym_is] = ACTIONS(4280), + [anon_sym_BANGis] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_SLASH] = ACTIONS(4280), + [anon_sym_PERCENT] = ACTIONS(4280), + [anon_sym_as_QMARK] = ACTIONS(4282), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_BANG_BANG] = ACTIONS(4282), + [anon_sym_suspend] = ACTIONS(4280), + [anon_sym_sealed] = ACTIONS(4280), + [anon_sym_annotation] = ACTIONS(4280), + [anon_sym_data] = ACTIONS(4280), + [anon_sym_inner] = ACTIONS(4280), + [anon_sym_value] = ACTIONS(4280), + [anon_sym_override] = ACTIONS(4280), + [anon_sym_lateinit] = ACTIONS(4280), + [anon_sym_public] = ACTIONS(4280), + [anon_sym_private] = ACTIONS(4280), + [anon_sym_internal] = ACTIONS(4280), + [anon_sym_protected] = ACTIONS(4280), + [anon_sym_tailrec] = ACTIONS(4280), + [anon_sym_operator] = ACTIONS(4280), + [anon_sym_infix] = ACTIONS(4280), + [anon_sym_inline] = ACTIONS(4280), + [anon_sym_external] = ACTIONS(4280), + [sym_property_modifier] = ACTIONS(4280), + [anon_sym_abstract] = ACTIONS(4280), + [anon_sym_final] = ACTIONS(4280), + [anon_sym_open] = ACTIONS(4280), + [anon_sym_vararg] = ACTIONS(4280), + [anon_sym_noinline] = ACTIONS(4280), + [anon_sym_crossinline] = ACTIONS(4280), + [anon_sym_expect] = ACTIONS(4280), + [anon_sym_actual] = ACTIONS(4280), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4282), + [anon_sym_continue_AT] = ACTIONS(4282), + [anon_sym_break_AT] = ACTIONS(4282), + [anon_sym_this_AT] = ACTIONS(4282), + [anon_sym_super_AT] = ACTIONS(4282), + [sym_real_literal] = ACTIONS(4282), + [sym_integer_literal] = ACTIONS(4280), + [sym_hex_literal] = ACTIONS(4282), + [sym_bin_literal] = ACTIONS(4282), + [anon_sym_true] = ACTIONS(4280), + [anon_sym_false] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4282), + [sym__backtick_identifier] = ACTIONS(4282), + [sym__automatic_semicolon] = ACTIONS(4282), + [sym_safe_nav] = ACTIONS(4282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4282), }, - [844] = { - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_object] = ACTIONS(4187), - [anon_sym_fun] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_this] = ACTIONS(4187), - [anon_sym_super] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4187), - [sym__quest] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4187), - [sym_label] = ACTIONS(4187), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4189), - [anon_sym_QMARK_COLON] = ACTIONS(4189), - [anon_sym_AMP_AMP] = ACTIONS(4189), - [anon_sym_PIPE_PIPE] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4187), - [anon_sym_if] = ACTIONS(4187), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_try] = ACTIONS(4187), - [anon_sym_throw] = ACTIONS(4187), - [anon_sym_return] = ACTIONS(4187), - [anon_sym_continue] = ACTIONS(4187), - [anon_sym_break] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4189), - [anon_sym_DASH_EQ] = ACTIONS(4189), - [anon_sym_STAR_EQ] = ACTIONS(4189), - [anon_sym_SLASH_EQ] = ACTIONS(4189), - [anon_sym_PERCENT_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), - [anon_sym_LT_EQ] = ACTIONS(4189), - [anon_sym_GT_EQ] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_SLASH] = ACTIONS(4187), - [anon_sym_PERCENT] = ACTIONS(4187), - [anon_sym_as_QMARK] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4187), - [anon_sym_BANG_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4189), - [anon_sym_continue_AT] = ACTIONS(4189), - [anon_sym_break_AT] = ACTIONS(4189), - [anon_sym_this_AT] = ACTIONS(4189), - [anon_sym_super_AT] = ACTIONS(4189), - [sym_real_literal] = ACTIONS(4189), - [sym_integer_literal] = ACTIONS(4187), - [sym_hex_literal] = ACTIONS(4189), - [sym_bin_literal] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [anon_sym_SQUOTE] = ACTIONS(4189), - [sym__backtick_identifier] = ACTIONS(4189), - [sym__automatic_semicolon] = ACTIONS(4189), - [sym_safe_nav] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4189), + [859] = { + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1153), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [845] = { - [aux_sym_nullable_type_repeat1] = STATE(832), - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_as] = ACTIONS(4276), - [anon_sym_EQ] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_object] = ACTIONS(4276), - [anon_sym_fun] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [anon_sym_this] = ACTIONS(4276), - [anon_sym_super] = ACTIONS(4276), - [sym__quest] = ACTIONS(4280), - [anon_sym_STAR] = ACTIONS(4276), - [sym_label] = ACTIONS(4276), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_DOT_DOT] = ACTIONS(4278), - [anon_sym_QMARK_COLON] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_null] = ACTIONS(4276), - [anon_sym_if] = ACTIONS(4276), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_when] = ACTIONS(4276), - [anon_sym_try] = ACTIONS(4276), - [anon_sym_throw] = ACTIONS(4276), - [anon_sym_return] = ACTIONS(4276), - [anon_sym_continue] = ACTIONS(4276), - [anon_sym_break] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ] = ACTIONS(4276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_as_QMARK] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_BANG_BANG] = ACTIONS(4278), - [anon_sym_suspend] = ACTIONS(4276), - [anon_sym_sealed] = ACTIONS(4276), - [anon_sym_annotation] = ACTIONS(4276), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_override] = ACTIONS(4276), - [anon_sym_lateinit] = ACTIONS(4276), - [anon_sym_public] = ACTIONS(4276), - [anon_sym_private] = ACTIONS(4276), - [anon_sym_internal] = ACTIONS(4276), - [anon_sym_protected] = ACTIONS(4276), - [anon_sym_tailrec] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [anon_sym_infix] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym_external] = ACTIONS(4276), - [sym_property_modifier] = ACTIONS(4276), - [anon_sym_abstract] = ACTIONS(4276), - [anon_sym_final] = ACTIONS(4276), - [anon_sym_open] = ACTIONS(4276), - [anon_sym_vararg] = ACTIONS(4276), - [anon_sym_noinline] = ACTIONS(4276), - [anon_sym_crossinline] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4278), - [anon_sym_continue_AT] = ACTIONS(4278), - [anon_sym_break_AT] = ACTIONS(4278), - [anon_sym_this_AT] = ACTIONS(4278), - [anon_sym_super_AT] = ACTIONS(4278), - [sym_real_literal] = ACTIONS(4278), - [sym_integer_literal] = ACTIONS(4276), - [sym_hex_literal] = ACTIONS(4278), - [sym_bin_literal] = ACTIONS(4278), - [anon_sym_true] = ACTIONS(4276), - [anon_sym_false] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4278), - [sym__backtick_identifier] = ACTIONS(4278), - [sym__automatic_semicolon] = ACTIONS(4278), - [sym_safe_nav] = ACTIONS(4278), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4278), + [860] = { + [sym_class_body] = STATE(1153), + [sym_type_constraints] = STATE(955), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [846] = { - [sym_type_constraints] = STATE(950), - [sym_enum_class_body] = STATE(1062), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3306), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [861] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_RBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_as] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_RPAREN] = ACTIONS(4095), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_GT] = ACTIONS(4093), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_object] = ACTIONS(4093), + [anon_sym_fun] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_this] = ACTIONS(4093), + [anon_sym_super] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [anon_sym_DASH_GT] = ACTIONS(4095), + [sym_label] = ACTIONS(4093), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_while] = ACTIONS(4093), + [anon_sym_DOT_DOT] = ACTIONS(4095), + [anon_sym_QMARK_COLON] = ACTIONS(4095), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_PIPE_PIPE] = ACTIONS(4095), + [anon_sym_null] = ACTIONS(4093), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_when] = ACTIONS(4093), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ] = ACTIONS(4093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_SLASH] = ACTIONS(4093), + [anon_sym_PERCENT] = ACTIONS(4093), + [anon_sym_as_QMARK] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG] = ACTIONS(4093), + [anon_sym_BANG_BANG] = ACTIONS(4095), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4095), + [anon_sym_continue_AT] = ACTIONS(4095), + [anon_sym_break_AT] = ACTIONS(4095), + [anon_sym_this_AT] = ACTIONS(4095), + [anon_sym_super_AT] = ACTIONS(4095), + [sym_real_literal] = ACTIONS(4095), + [sym_integer_literal] = ACTIONS(4093), + [sym_hex_literal] = ACTIONS(4095), + [sym_bin_literal] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4093), + [anon_sym_false] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(4095), + [sym__backtick_identifier] = ACTIONS(4095), + [sym_safe_nav] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4095), }, - [847] = { - [aux_sym_nullable_type_repeat1] = STATE(847), - [sym__alpha_identifier] = ACTIONS(4282), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4282), - [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_by] = ACTIONS(4282), - [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_SEMI] = ACTIONS(4284), - [anon_sym_get] = ACTIONS(4282), - [anon_sym_set] = ACTIONS(4282), - [anon_sym_this] = ACTIONS(4282), - [anon_sym_super] = ACTIONS(4282), - [sym__quest] = ACTIONS(4286), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4284), - [anon_sym_super_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), + [862] = { + [sym_class_body] = STATE(1150), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(4287), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), }, - [848] = { - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4293), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), + [863] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), [anon_sym_GT] = ACTIONS(4289), - [anon_sym_where] = ACTIONS(4289), - [anon_sym_object] = ACTIONS(4289), - [anon_sym_fun] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1744), [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_this] = ACTIONS(4289), - [anon_sym_super] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4289), - [anon_sym_if] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_when] = ACTIONS(4289), - [anon_sym_try] = ACTIONS(4289), - [anon_sym_throw] = ACTIONS(4289), - [anon_sym_return] = ACTIONS(4289), - [anon_sym_continue] = ACTIONS(4289), - [anon_sym_break] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_PLUS_EQ] = ACTIONS(4291), - [anon_sym_DASH_EQ] = ACTIONS(4291), - [anon_sym_STAR_EQ] = ACTIONS(4291), - [anon_sym_SLASH_EQ] = ACTIONS(4291), - [anon_sym_PERCENT_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4291), - [anon_sym_continue_AT] = ACTIONS(4291), - [anon_sym_break_AT] = ACTIONS(4291), - [anon_sym_this_AT] = ACTIONS(4291), - [anon_sym_super_AT] = ACTIONS(4291), - [sym_real_literal] = ACTIONS(4291), - [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4291), - [sym_bin_literal] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4289), - [anon_sym_false] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4291), - }, - [849] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_RBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_RPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4124), - [sym_label] = ACTIONS(4122), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_while] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_throw] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_AT] = ACTIONS(4124), - [anon_sym_this_AT] = ACTIONS(4124), - [anon_sym_super_AT] = ACTIONS(4124), - [sym_real_literal] = ACTIONS(4124), - [sym_integer_literal] = ACTIONS(4122), - [sym_hex_literal] = ACTIONS(4124), - [sym_bin_literal] = ACTIONS(4124), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym__backtick_identifier] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), - }, - [850] = { - [aux_sym_nullable_type_repeat1] = STATE(832), - [sym__alpha_identifier] = ACTIONS(4295), - [anon_sym_AT] = ACTIONS(4297), - [anon_sym_LBRACK] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4295), - [anon_sym_EQ] = ACTIONS(4295), - [anon_sym_LBRACE] = ACTIONS(4297), - [anon_sym_RBRACE] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4297), - [anon_sym_COMMA] = ACTIONS(4297), - [anon_sym_by] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4295), - [anon_sym_GT] = ACTIONS(4295), - [anon_sym_where] = ACTIONS(4295), - [anon_sym_object] = ACTIONS(4295), - [anon_sym_fun] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_get] = ACTIONS(4295), + [anon_sym_get] = ACTIONS(4293), [anon_sym_set] = ACTIONS(4295), - [anon_sym_this] = ACTIONS(4295), - [anon_sym_super] = ACTIONS(4295), - [sym__quest] = ACTIONS(4280), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4295), - [anon_sym_DOT_DOT] = ACTIONS(4297), - [anon_sym_QMARK_COLON] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [anon_sym_null] = ACTIONS(4295), - [anon_sym_if] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4295), - [anon_sym_when] = ACTIONS(4295), - [anon_sym_try] = ACTIONS(4295), - [anon_sym_throw] = ACTIONS(4295), - [anon_sym_return] = ACTIONS(4295), - [anon_sym_continue] = ACTIONS(4295), - [anon_sym_break] = ACTIONS(4295), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_PLUS_EQ] = ACTIONS(4297), - [anon_sym_DASH_EQ] = ACTIONS(4297), - [anon_sym_STAR_EQ] = ACTIONS(4297), - [anon_sym_SLASH_EQ] = ACTIONS(4297), - [anon_sym_PERCENT_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), - [anon_sym_LT_EQ] = ACTIONS(4297), - [anon_sym_GT_EQ] = ACTIONS(4297), - [anon_sym_BANGin] = ACTIONS(4297), - [anon_sym_is] = ACTIONS(4295), - [anon_sym_BANGis] = ACTIONS(4297), - [anon_sym_PLUS] = ACTIONS(4295), - [anon_sym_DASH] = ACTIONS(4295), - [anon_sym_SLASH] = ACTIONS(4295), - [anon_sym_PERCENT] = ACTIONS(4295), - [anon_sym_as_QMARK] = ACTIONS(4297), - [anon_sym_PLUS_PLUS] = ACTIONS(4297), - [anon_sym_DASH_DASH] = ACTIONS(4297), - [anon_sym_BANG] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4297), - [anon_sym_suspend] = ACTIONS(4295), - [anon_sym_sealed] = ACTIONS(4295), - [anon_sym_annotation] = ACTIONS(4295), - [anon_sym_data] = ACTIONS(4295), - [anon_sym_inner] = ACTIONS(4295), - [anon_sym_value] = ACTIONS(4295), - [anon_sym_override] = ACTIONS(4295), - [anon_sym_lateinit] = ACTIONS(4295), - [anon_sym_public] = ACTIONS(4295), - [anon_sym_private] = ACTIONS(4295), - [anon_sym_internal] = ACTIONS(4295), - [anon_sym_protected] = ACTIONS(4295), - [anon_sym_tailrec] = ACTIONS(4295), - [anon_sym_operator] = ACTIONS(4295), - [anon_sym_infix] = ACTIONS(4295), - [anon_sym_inline] = ACTIONS(4295), - [anon_sym_external] = ACTIONS(4295), - [sym_property_modifier] = ACTIONS(4295), - [anon_sym_abstract] = ACTIONS(4295), - [anon_sym_final] = ACTIONS(4295), - [anon_sym_open] = ACTIONS(4295), - [anon_sym_vararg] = ACTIONS(4295), - [anon_sym_noinline] = ACTIONS(4295), - [anon_sym_crossinline] = ACTIONS(4295), - [anon_sym_expect] = ACTIONS(4295), - [anon_sym_actual] = ACTIONS(4295), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4297), - [anon_sym_continue_AT] = ACTIONS(4297), - [anon_sym_break_AT] = ACTIONS(4297), - [anon_sym_this_AT] = ACTIONS(4297), - [anon_sym_super_AT] = ACTIONS(4297), - [sym_real_literal] = ACTIONS(4297), - [sym_integer_literal] = ACTIONS(4295), - [sym_hex_literal] = ACTIONS(4297), - [sym_bin_literal] = ACTIONS(4297), - [anon_sym_true] = ACTIONS(4295), - [anon_sym_false] = ACTIONS(4295), - [anon_sym_SQUOTE] = ACTIONS(4297), - [sym__backtick_identifier] = ACTIONS(4297), - [sym__automatic_semicolon] = ACTIONS(4297), - [sym_safe_nav] = ACTIONS(4297), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4297), - }, - [851] = { - [sym_class_body] = STATE(1057), - [sym_type_constraints] = STATE(940), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), [anon_sym_in] = ACTIONS(4299), [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), - }, - [852] = { - [sym__alpha_identifier] = ACTIONS(4305), - [anon_sym_AT] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_as] = ACTIONS(4305), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_by] = ACTIONS(4305), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_where] = ACTIONS(4305), - [anon_sym_object] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_get] = ACTIONS(4305), - [anon_sym_set] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_super] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(4305), - [sym__quest] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4305), - [sym_label] = ACTIONS(4305), - [anon_sym_in] = ACTIONS(4305), - [anon_sym_DOT_DOT] = ACTIONS(4307), - [anon_sym_QMARK_COLON] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_null] = ACTIONS(4305), - [anon_sym_if] = ACTIONS(4305), - [anon_sym_else] = ACTIONS(4305), - [anon_sym_when] = ACTIONS(4305), - [anon_sym_try] = ACTIONS(4305), - [anon_sym_throw] = ACTIONS(4305), - [anon_sym_return] = ACTIONS(4305), - [anon_sym_continue] = ACTIONS(4305), - [anon_sym_break] = ACTIONS(4305), - [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(4305), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [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(4305), - [anon_sym_BANGis] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_SLASH] = ACTIONS(4305), - [anon_sym_PERCENT] = ACTIONS(4305), - [anon_sym_as_QMARK] = ACTIONS(4307), - [anon_sym_PLUS_PLUS] = ACTIONS(4307), - [anon_sym_DASH_DASH] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_BANG_BANG] = ACTIONS(4307), - [anon_sym_suspend] = ACTIONS(4305), - [anon_sym_sealed] = ACTIONS(4305), - [anon_sym_annotation] = ACTIONS(4305), - [anon_sym_data] = ACTIONS(4305), - [anon_sym_inner] = ACTIONS(4305), - [anon_sym_value] = ACTIONS(4305), - [anon_sym_override] = ACTIONS(4305), - [anon_sym_lateinit] = ACTIONS(4305), - [anon_sym_public] = ACTIONS(4305), - [anon_sym_private] = ACTIONS(4305), - [anon_sym_internal] = ACTIONS(4305), - [anon_sym_protected] = ACTIONS(4305), - [anon_sym_tailrec] = ACTIONS(4305), - [anon_sym_operator] = ACTIONS(4305), - [anon_sym_infix] = ACTIONS(4305), - [anon_sym_inline] = ACTIONS(4305), - [anon_sym_external] = ACTIONS(4305), - [sym_property_modifier] = ACTIONS(4305), - [anon_sym_abstract] = ACTIONS(4305), - [anon_sym_final] = ACTIONS(4305), - [anon_sym_open] = ACTIONS(4305), - [anon_sym_vararg] = ACTIONS(4305), - [anon_sym_noinline] = ACTIONS(4305), - [anon_sym_crossinline] = ACTIONS(4305), - [anon_sym_expect] = ACTIONS(4305), - [anon_sym_actual] = ACTIONS(4305), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4307), - [anon_sym_continue_AT] = ACTIONS(4307), - [anon_sym_break_AT] = ACTIONS(4307), - [anon_sym_this_AT] = ACTIONS(4307), - [anon_sym_super_AT] = ACTIONS(4307), - [sym_real_literal] = ACTIONS(4307), - [sym_integer_literal] = ACTIONS(4305), - [sym_hex_literal] = ACTIONS(4307), - [sym_bin_literal] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4305), - [anon_sym_false] = ACTIONS(4305), - [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), - }, - [853] = { - [sym__alpha_identifier] = ACTIONS(4309), - [anon_sym_AT] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_as] = ACTIONS(4309), - [anon_sym_EQ] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_RBRACE] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_COMMA] = ACTIONS(4311), - [anon_sym_by] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_where] = ACTIONS(4309), - [anon_sym_object] = ACTIONS(4309), - [anon_sym_fun] = ACTIONS(4309), - [anon_sym_SEMI] = ACTIONS(4311), - [anon_sym_get] = ACTIONS(4309), - [anon_sym_set] = ACTIONS(4309), - [anon_sym_this] = ACTIONS(4309), - [anon_sym_super] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4309), - [sym__quest] = ACTIONS(4309), - [anon_sym_STAR] = ACTIONS(4309), - [sym_label] = ACTIONS(4309), - [anon_sym_in] = ACTIONS(4309), - [anon_sym_DOT_DOT] = ACTIONS(4311), - [anon_sym_QMARK_COLON] = ACTIONS(4311), - [anon_sym_AMP_AMP] = ACTIONS(4311), - [anon_sym_PIPE_PIPE] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4309), - [anon_sym_if] = ACTIONS(4309), - [anon_sym_else] = ACTIONS(4309), - [anon_sym_when] = ACTIONS(4309), - [anon_sym_try] = ACTIONS(4309), - [anon_sym_throw] = ACTIONS(4309), - [anon_sym_return] = ACTIONS(4309), - [anon_sym_continue] = ACTIONS(4309), - [anon_sym_break] = ACTIONS(4309), - [anon_sym_COLON_COLON] = ACTIONS(4311), - [anon_sym_PLUS_EQ] = ACTIONS(4311), - [anon_sym_DASH_EQ] = ACTIONS(4311), - [anon_sym_STAR_EQ] = ACTIONS(4311), - [anon_sym_SLASH_EQ] = ACTIONS(4311), - [anon_sym_PERCENT_EQ] = ACTIONS(4311), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3642), [anon_sym_BANG_EQ] = ACTIONS(4309), [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), [anon_sym_EQ_EQ] = ACTIONS(4309), [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), - [anon_sym_LT_EQ] = ACTIONS(4311), - [anon_sym_GT_EQ] = ACTIONS(4311), - [anon_sym_BANGin] = ACTIONS(4311), - [anon_sym_is] = ACTIONS(4309), - [anon_sym_BANGis] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4309), - [anon_sym_DASH] = ACTIONS(4309), - [anon_sym_SLASH] = ACTIONS(4309), - [anon_sym_PERCENT] = ACTIONS(4309), - [anon_sym_as_QMARK] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_BANG_BANG] = ACTIONS(4311), - [anon_sym_suspend] = ACTIONS(4309), - [anon_sym_sealed] = ACTIONS(4309), - [anon_sym_annotation] = ACTIONS(4309), - [anon_sym_data] = ACTIONS(4309), - [anon_sym_inner] = ACTIONS(4309), - [anon_sym_value] = ACTIONS(4309), - [anon_sym_override] = ACTIONS(4309), - [anon_sym_lateinit] = ACTIONS(4309), - [anon_sym_public] = ACTIONS(4309), - [anon_sym_private] = ACTIONS(4309), - [anon_sym_internal] = ACTIONS(4309), - [anon_sym_protected] = ACTIONS(4309), - [anon_sym_tailrec] = ACTIONS(4309), - [anon_sym_operator] = ACTIONS(4309), - [anon_sym_infix] = ACTIONS(4309), - [anon_sym_inline] = ACTIONS(4309), - [anon_sym_external] = ACTIONS(4309), - [sym_property_modifier] = ACTIONS(4309), - [anon_sym_abstract] = ACTIONS(4309), - [anon_sym_final] = ACTIONS(4309), - [anon_sym_open] = ACTIONS(4309), - [anon_sym_vararg] = ACTIONS(4309), - [anon_sym_noinline] = ACTIONS(4309), - [anon_sym_crossinline] = ACTIONS(4309), - [anon_sym_expect] = ACTIONS(4309), - [anon_sym_actual] = ACTIONS(4309), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4311), - [anon_sym_continue_AT] = ACTIONS(4311), - [anon_sym_break_AT] = ACTIONS(4311), - [anon_sym_this_AT] = ACTIONS(4311), - [anon_sym_super_AT] = ACTIONS(4311), - [sym_real_literal] = ACTIONS(4311), - [sym_integer_literal] = ACTIONS(4309), - [sym_hex_literal] = ACTIONS(4311), - [sym_bin_literal] = ACTIONS(4311), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [anon_sym_SQUOTE] = ACTIONS(4311), - [sym__backtick_identifier] = ACTIONS(4311), - [sym__automatic_semicolon] = ACTIONS(4311), - [sym_safe_nav] = ACTIONS(4311), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4311), - }, - [854] = { - [sym_type_constraints] = STATE(1046), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(4313), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [855] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_as] = ACTIONS(4315), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(4315), - [anon_sym_GT] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_object] = ACTIONS(4315), - [anon_sym_fun] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_this] = ACTIONS(4315), - [anon_sym_super] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(4319), - [sym__quest] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [sym_label] = ACTIONS(4315), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_DOT_DOT] = ACTIONS(4317), - [anon_sym_QMARK_COLON] = ACTIONS(4317), - [anon_sym_AMP_AMP] = ACTIONS(4317), - [anon_sym_PIPE_PIPE] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4315), - [anon_sym_if] = ACTIONS(4315), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_when] = ACTIONS(4315), - [anon_sym_try] = ACTIONS(4315), - [anon_sym_throw] = ACTIONS(4315), - [anon_sym_return] = ACTIONS(4315), - [anon_sym_continue] = ACTIONS(4315), - [anon_sym_break] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_PLUS_EQ] = ACTIONS(4317), - [anon_sym_DASH_EQ] = ACTIONS(4317), - [anon_sym_STAR_EQ] = ACTIONS(4317), - [anon_sym_SLASH_EQ] = ACTIONS(4317), - [anon_sym_PERCENT_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ] = ACTIONS(4315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ] = ACTIONS(4315), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4317), - [anon_sym_LT_EQ] = ACTIONS(4317), - [anon_sym_GT_EQ] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_SLASH] = ACTIONS(4315), - [anon_sym_PERCENT] = ACTIONS(4315), - [anon_sym_as_QMARK] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG] = ACTIONS(4315), - [anon_sym_BANG_BANG] = ACTIONS(4317), - [anon_sym_suspend] = ACTIONS(4315), - [anon_sym_sealed] = ACTIONS(4315), - [anon_sym_annotation] = ACTIONS(4315), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_override] = ACTIONS(4315), - [anon_sym_lateinit] = ACTIONS(4315), - [anon_sym_public] = ACTIONS(4315), - [anon_sym_private] = ACTIONS(4315), - [anon_sym_internal] = ACTIONS(4315), - [anon_sym_protected] = ACTIONS(4315), - [anon_sym_tailrec] = ACTIONS(4315), - [anon_sym_operator] = ACTIONS(4315), - [anon_sym_infix] = ACTIONS(4315), - [anon_sym_inline] = ACTIONS(4315), - [anon_sym_external] = ACTIONS(4315), - [sym_property_modifier] = ACTIONS(4315), - [anon_sym_abstract] = ACTIONS(4315), - [anon_sym_final] = ACTIONS(4315), - [anon_sym_open] = ACTIONS(4315), - [anon_sym_vararg] = ACTIONS(4315), - [anon_sym_noinline] = ACTIONS(4315), - [anon_sym_crossinline] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4317), - [anon_sym_continue_AT] = ACTIONS(4317), - [anon_sym_break_AT] = ACTIONS(4317), - [anon_sym_this_AT] = ACTIONS(4317), - [anon_sym_super_AT] = ACTIONS(4317), - [sym_real_literal] = ACTIONS(4317), - [sym_integer_literal] = ACTIONS(4315), - [sym_hex_literal] = ACTIONS(4317), - [sym_bin_literal] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_SQUOTE] = ACTIONS(4317), - [sym__backtick_identifier] = ACTIONS(4317), - [sym__automatic_semicolon] = ACTIONS(4317), - [sym_safe_nav] = ACTIONS(4317), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4317), - }, - [856] = { - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_by] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_object] = ACTIONS(4321), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [864] = { + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_constructor] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), [anon_sym_get] = ACTIONS(4321), [anon_sym_set] = ACTIONS(4321), [anon_sym_this] = ACTIONS(4321), [anon_sym_super] = ACTIONS(4321), - [sym__quest] = ACTIONS(4321), [anon_sym_STAR] = ACTIONS(4321), - [anon_sym_DASH_GT] = ACTIONS(4325), [sym_label] = ACTIONS(4321), [anon_sym_in] = ACTIONS(4321), [anon_sym_DOT_DOT] = ACTIONS(4323), @@ -145843,741 +146981,628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4323), }, - [857] = { - [sym_class_body] = STATE(1102), - [sym_type_constraints] = STATE(986), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [865] = { + [sym_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(4329), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_COMMA] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_where] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_fun] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_this] = ACTIONS(4325), + [anon_sym_super] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_when] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_PLUS_EQ] = ACTIONS(4327), + [anon_sym_DASH_EQ] = ACTIONS(4327), + [anon_sym_STAR_EQ] = ACTIONS(4327), + [anon_sym_SLASH_EQ] = ACTIONS(4327), + [anon_sym_PERCENT_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4325), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4327), + [anon_sym_continue_AT] = ACTIONS(4327), + [anon_sym_break_AT] = ACTIONS(4327), + [anon_sym_this_AT] = ACTIONS(4327), + [anon_sym_super_AT] = ACTIONS(4327), + [sym_real_literal] = ACTIONS(4327), + [sym_integer_literal] = ACTIONS(4325), + [sym_hex_literal] = ACTIONS(4327), + [sym_bin_literal] = ACTIONS(4327), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4327), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4327), }, - [858] = { - [sym_function_body] = STATE(1120), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [866] = { + [sym_type_constraints] = STATE(1136), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3194), + [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(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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, - [859] = { - [sym_type_constraints] = STATE(1084), - [sym_function_body] = STATE(1040), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(4333), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4133), - [anon_sym_fun] = ACTIONS(4133), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_this] = ACTIONS(4133), - [anon_sym_super] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4133), - [sym_label] = ACTIONS(4133), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_if] = ACTIONS(4133), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_when] = ACTIONS(4133), - [anon_sym_try] = ACTIONS(4133), - [anon_sym_throw] = ACTIONS(4133), - [anon_sym_return] = ACTIONS(4133), - [anon_sym_continue] = ACTIONS(4133), - [anon_sym_break] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_PLUS_EQ] = ACTIONS(4135), - [anon_sym_DASH_EQ] = ACTIONS(4135), - [anon_sym_STAR_EQ] = ACTIONS(4135), - [anon_sym_SLASH_EQ] = ACTIONS(4135), - [anon_sym_PERCENT_EQ] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4133), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4133), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4135), - [anon_sym_continue_AT] = ACTIONS(4135), - [anon_sym_break_AT] = ACTIONS(4135), - [anon_sym_this_AT] = ACTIONS(4135), - [anon_sym_super_AT] = ACTIONS(4135), - [sym_real_literal] = ACTIONS(4135), - [sym_integer_literal] = ACTIONS(4133), - [sym_hex_literal] = ACTIONS(4135), - [sym_bin_literal] = ACTIONS(4135), - [anon_sym_true] = ACTIONS(4133), - [anon_sym_false] = ACTIONS(4133), - [anon_sym_SQUOTE] = ACTIONS(4135), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4135), + [867] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_object] = ACTIONS(4331), + [anon_sym_fun] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_this] = ACTIONS(4331), + [anon_sym_super] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_catch] = ACTIONS(4331), + [anon_sym_finally] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4333), + [anon_sym_continue_AT] = ACTIONS(4333), + [anon_sym_break_AT] = ACTIONS(4333), + [anon_sym_this_AT] = ACTIONS(4333), + [anon_sym_super_AT] = ACTIONS(4333), + [sym_real_literal] = ACTIONS(4333), + [sym_integer_literal] = ACTIONS(4331), + [sym_hex_literal] = ACTIONS(4333), + [sym_bin_literal] = ACTIONS(4333), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4333), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4333), }, - [860] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_as] = ACTIONS(4315), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(4315), - [anon_sym_GT] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_object] = ACTIONS(4315), - [anon_sym_fun] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_this] = ACTIONS(4315), - [anon_sym_super] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(4335), - [sym__quest] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [sym_label] = ACTIONS(4315), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_DOT_DOT] = ACTIONS(4317), - [anon_sym_QMARK_COLON] = ACTIONS(4317), - [anon_sym_AMP_AMP] = ACTIONS(4317), - [anon_sym_PIPE_PIPE] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4315), - [anon_sym_if] = ACTIONS(4315), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_when] = ACTIONS(4315), - [anon_sym_try] = ACTIONS(4315), - [anon_sym_throw] = ACTIONS(4315), - [anon_sym_return] = ACTIONS(4315), - [anon_sym_continue] = ACTIONS(4315), - [anon_sym_break] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_PLUS_EQ] = ACTIONS(4317), - [anon_sym_DASH_EQ] = ACTIONS(4317), - [anon_sym_STAR_EQ] = ACTIONS(4317), - [anon_sym_SLASH_EQ] = ACTIONS(4317), - [anon_sym_PERCENT_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ] = ACTIONS(4315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ] = ACTIONS(4315), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4317), - [anon_sym_LT_EQ] = ACTIONS(4317), - [anon_sym_GT_EQ] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_SLASH] = ACTIONS(4315), - [anon_sym_PERCENT] = ACTIONS(4315), - [anon_sym_as_QMARK] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG] = ACTIONS(4315), - [anon_sym_BANG_BANG] = ACTIONS(4317), - [anon_sym_suspend] = ACTIONS(4315), - [anon_sym_sealed] = ACTIONS(4315), - [anon_sym_annotation] = ACTIONS(4315), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_override] = ACTIONS(4315), - [anon_sym_lateinit] = ACTIONS(4315), - [anon_sym_public] = ACTIONS(4315), - [anon_sym_private] = ACTIONS(4315), - [anon_sym_internal] = ACTIONS(4315), - [anon_sym_protected] = ACTIONS(4315), - [anon_sym_tailrec] = ACTIONS(4315), - [anon_sym_operator] = ACTIONS(4315), - [anon_sym_infix] = ACTIONS(4315), - [anon_sym_inline] = ACTIONS(4315), - [anon_sym_external] = ACTIONS(4315), - [sym_property_modifier] = ACTIONS(4315), - [anon_sym_abstract] = ACTIONS(4315), - [anon_sym_final] = ACTIONS(4315), - [anon_sym_open] = ACTIONS(4315), - [anon_sym_vararg] = ACTIONS(4315), - [anon_sym_noinline] = ACTIONS(4315), - [anon_sym_crossinline] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4317), - [anon_sym_continue_AT] = ACTIONS(4317), - [anon_sym_break_AT] = ACTIONS(4317), - [anon_sym_this_AT] = ACTIONS(4317), - [anon_sym_super_AT] = ACTIONS(4317), - [sym_real_literal] = ACTIONS(4317), - [sym_integer_literal] = ACTIONS(4315), - [sym_hex_literal] = ACTIONS(4317), - [sym_bin_literal] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_SQUOTE] = ACTIONS(4317), - [sym__backtick_identifier] = ACTIONS(4317), - [sym__automatic_semicolon] = ACTIONS(4317), - [sym_safe_nav] = ACTIONS(4317), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4317), + [868] = { + [sym_class_body] = STATE(1163), + [sym_type_constraints] = STATE(968), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), }, - [861] = { - [sym_type_constraints] = STATE(1082), - [sym_function_body] = STATE(1101), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4150), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [869] = { + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, - [862] = { - [sym_class_body] = STATE(1057), - [sym_type_constraints] = STATE(940), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), + [870] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4339), + [anon_sym_get] = ACTIONS(4293), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), [anon_sym_in] = ACTIONS(4299), [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), - }, - [863] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(4343), - [anon_sym_set] = ACTIONS(4345), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -146596,2688 +147621,744 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [864] = { - [aux_sym_type_constraints_repeat1] = STATE(870), - [sym__alpha_identifier] = ACTIONS(4371), - [anon_sym_AT] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4371), - [anon_sym_as] = ACTIONS(4371), - [anon_sym_EQ] = ACTIONS(4371), - [anon_sym_LBRACE] = ACTIONS(4373), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_LPAREN] = ACTIONS(4373), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_by] = ACTIONS(4371), - [anon_sym_LT] = ACTIONS(4371), - [anon_sym_GT] = ACTIONS(4371), - [anon_sym_where] = ACTIONS(4371), - [anon_sym_object] = ACTIONS(4371), - [anon_sym_fun] = ACTIONS(4371), - [anon_sym_SEMI] = ACTIONS(4373), - [anon_sym_get] = ACTIONS(4371), - [anon_sym_set] = ACTIONS(4371), - [anon_sym_this] = ACTIONS(4371), - [anon_sym_super] = ACTIONS(4371), - [anon_sym_STAR] = ACTIONS(4371), - [sym_label] = ACTIONS(4371), - [anon_sym_in] = ACTIONS(4371), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_QMARK_COLON] = ACTIONS(4373), - [anon_sym_AMP_AMP] = ACTIONS(4373), - [anon_sym_PIPE_PIPE] = ACTIONS(4373), - [anon_sym_null] = ACTIONS(4371), - [anon_sym_if] = ACTIONS(4371), - [anon_sym_else] = ACTIONS(4371), - [anon_sym_when] = ACTIONS(4371), - [anon_sym_try] = ACTIONS(4371), - [anon_sym_throw] = ACTIONS(4371), - [anon_sym_return] = ACTIONS(4371), - [anon_sym_continue] = ACTIONS(4371), - [anon_sym_break] = ACTIONS(4371), - [anon_sym_COLON_COLON] = ACTIONS(4373), - [anon_sym_PLUS_EQ] = ACTIONS(4373), - [anon_sym_DASH_EQ] = ACTIONS(4373), - [anon_sym_STAR_EQ] = ACTIONS(4373), - [anon_sym_SLASH_EQ] = ACTIONS(4373), - [anon_sym_PERCENT_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4373), - [anon_sym_EQ_EQ] = ACTIONS(4371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4373), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4373), - [anon_sym_BANGin] = ACTIONS(4373), - [anon_sym_is] = ACTIONS(4371), - [anon_sym_BANGis] = ACTIONS(4373), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_SLASH] = ACTIONS(4371), - [anon_sym_PERCENT] = ACTIONS(4371), - [anon_sym_as_QMARK] = ACTIONS(4373), - [anon_sym_PLUS_PLUS] = ACTIONS(4373), - [anon_sym_DASH_DASH] = ACTIONS(4373), - [anon_sym_BANG] = ACTIONS(4371), - [anon_sym_BANG_BANG] = ACTIONS(4373), - [anon_sym_suspend] = ACTIONS(4371), - [anon_sym_sealed] = ACTIONS(4371), - [anon_sym_annotation] = ACTIONS(4371), - [anon_sym_data] = ACTIONS(4371), - [anon_sym_inner] = ACTIONS(4371), - [anon_sym_value] = ACTIONS(4371), - [anon_sym_override] = ACTIONS(4371), - [anon_sym_lateinit] = ACTIONS(4371), - [anon_sym_public] = ACTIONS(4371), - [anon_sym_private] = ACTIONS(4371), - [anon_sym_internal] = ACTIONS(4371), - [anon_sym_protected] = ACTIONS(4371), - [anon_sym_tailrec] = ACTIONS(4371), - [anon_sym_operator] = ACTIONS(4371), - [anon_sym_infix] = ACTIONS(4371), - [anon_sym_inline] = ACTIONS(4371), - [anon_sym_external] = ACTIONS(4371), - [sym_property_modifier] = ACTIONS(4371), - [anon_sym_abstract] = ACTIONS(4371), - [anon_sym_final] = ACTIONS(4371), - [anon_sym_open] = ACTIONS(4371), - [anon_sym_vararg] = ACTIONS(4371), - [anon_sym_noinline] = ACTIONS(4371), - [anon_sym_crossinline] = ACTIONS(4371), - [anon_sym_expect] = ACTIONS(4371), - [anon_sym_actual] = ACTIONS(4371), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4373), - [anon_sym_continue_AT] = ACTIONS(4373), - [anon_sym_break_AT] = ACTIONS(4373), - [anon_sym_this_AT] = ACTIONS(4373), - [anon_sym_super_AT] = ACTIONS(4373), - [sym_real_literal] = ACTIONS(4373), - [sym_integer_literal] = ACTIONS(4371), - [sym_hex_literal] = ACTIONS(4373), - [sym_bin_literal] = ACTIONS(4373), - [anon_sym_true] = ACTIONS(4371), - [anon_sym_false] = ACTIONS(4371), - [anon_sym_SQUOTE] = ACTIONS(4373), - [sym__backtick_identifier] = ACTIONS(4373), - [sym__automatic_semicolon] = ACTIONS(4373), - [sym_safe_nav] = ACTIONS(4373), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4373), - }, - [865] = { - [sym_class_body] = STATE(1016), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [866] = { - [sym_class_body] = STATE(1062), - [sym_type_constraints] = STATE(955), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [867] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_constructor] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [sym_label] = ACTIONS(4122), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_throw] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_AT] = ACTIONS(4124), - [anon_sym_this_AT] = ACTIONS(4124), - [anon_sym_super_AT] = ACTIONS(4124), - [sym_real_literal] = ACTIONS(4124), - [sym_integer_literal] = ACTIONS(4122), - [sym_hex_literal] = ACTIONS(4124), - [sym_bin_literal] = ACTIONS(4124), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), - }, - [868] = { - [sym_type_constraints] = STATE(963), - [sym_enum_class_body] = STATE(1166), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), - }, - [869] = { - [sym_function_body] = STATE(1163), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), - }, - [870] = { - [aux_sym_type_constraints_repeat1] = STATE(887), - [sym__alpha_identifier] = ACTIONS(4389), - [anon_sym_AT] = ACTIONS(4391), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_DOT] = ACTIONS(4389), - [anon_sym_as] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4391), - [anon_sym_RBRACE] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_by] = ACTIONS(4389), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(4389), - [anon_sym_object] = ACTIONS(4389), - [anon_sym_fun] = ACTIONS(4389), - [anon_sym_SEMI] = ACTIONS(4391), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), - [anon_sym_this] = ACTIONS(4389), - [anon_sym_super] = ACTIONS(4389), - [anon_sym_STAR] = ACTIONS(4389), - [sym_label] = ACTIONS(4389), - [anon_sym_in] = ACTIONS(4389), - [anon_sym_DOT_DOT] = ACTIONS(4391), - [anon_sym_QMARK_COLON] = ACTIONS(4391), - [anon_sym_AMP_AMP] = ACTIONS(4391), - [anon_sym_PIPE_PIPE] = ACTIONS(4391), - [anon_sym_null] = ACTIONS(4389), - [anon_sym_if] = ACTIONS(4389), - [anon_sym_else] = ACTIONS(4389), - [anon_sym_when] = ACTIONS(4389), - [anon_sym_try] = ACTIONS(4389), - [anon_sym_throw] = ACTIONS(4389), - [anon_sym_return] = ACTIONS(4389), - [anon_sym_continue] = ACTIONS(4389), - [anon_sym_break] = ACTIONS(4389), - [anon_sym_COLON_COLON] = ACTIONS(4391), - [anon_sym_PLUS_EQ] = ACTIONS(4391), - [anon_sym_DASH_EQ] = ACTIONS(4391), - [anon_sym_STAR_EQ] = ACTIONS(4391), - [anon_sym_SLASH_EQ] = ACTIONS(4391), - [anon_sym_PERCENT_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ] = ACTIONS(4389), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), - [anon_sym_EQ_EQ] = ACTIONS(4389), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), - [anon_sym_LT_EQ] = ACTIONS(4391), - [anon_sym_GT_EQ] = ACTIONS(4391), - [anon_sym_BANGin] = ACTIONS(4391), - [anon_sym_is] = ACTIONS(4389), - [anon_sym_BANGis] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4389), - [anon_sym_DASH] = ACTIONS(4389), - [anon_sym_SLASH] = ACTIONS(4389), - [anon_sym_PERCENT] = ACTIONS(4389), - [anon_sym_as_QMARK] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4389), - [anon_sym_BANG_BANG] = ACTIONS(4391), - [anon_sym_suspend] = ACTIONS(4389), - [anon_sym_sealed] = ACTIONS(4389), - [anon_sym_annotation] = ACTIONS(4389), - [anon_sym_data] = ACTIONS(4389), - [anon_sym_inner] = ACTIONS(4389), - [anon_sym_value] = ACTIONS(4389), - [anon_sym_override] = ACTIONS(4389), - [anon_sym_lateinit] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_internal] = ACTIONS(4389), - [anon_sym_protected] = ACTIONS(4389), - [anon_sym_tailrec] = ACTIONS(4389), - [anon_sym_operator] = ACTIONS(4389), - [anon_sym_infix] = ACTIONS(4389), - [anon_sym_inline] = ACTIONS(4389), - [anon_sym_external] = ACTIONS(4389), - [sym_property_modifier] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_open] = ACTIONS(4389), - [anon_sym_vararg] = ACTIONS(4389), - [anon_sym_noinline] = ACTIONS(4389), - [anon_sym_crossinline] = ACTIONS(4389), - [anon_sym_expect] = ACTIONS(4389), - [anon_sym_actual] = ACTIONS(4389), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4391), - [anon_sym_continue_AT] = ACTIONS(4391), - [anon_sym_break_AT] = ACTIONS(4391), - [anon_sym_this_AT] = ACTIONS(4391), - [anon_sym_super_AT] = ACTIONS(4391), - [sym_real_literal] = ACTIONS(4391), - [sym_integer_literal] = ACTIONS(4389), - [sym_hex_literal] = ACTIONS(4391), - [sym_bin_literal] = ACTIONS(4391), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [anon_sym_SQUOTE] = ACTIONS(4391), - [sym__backtick_identifier] = ACTIONS(4391), - [sym__automatic_semicolon] = ACTIONS(4391), - [sym_safe_nav] = ACTIONS(4391), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4391), - }, [871] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_constructor] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3990), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym_type_constraints] = STATE(1128), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, [872] = { - [sym_function_body] = STATE(1128), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(4341), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, [873] = { - [sym_class_body] = STATE(1166), - [sym_type_constraints] = STATE(966), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_object] = ACTIONS(4343), + [anon_sym_fun] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_this] = ACTIONS(4343), + [anon_sym_super] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_null] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_catch] = ACTIONS(4343), + [anon_sym_finally] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4345), + [anon_sym_continue_AT] = ACTIONS(4345), + [anon_sym_break_AT] = ACTIONS(4345), + [anon_sym_this_AT] = ACTIONS(4345), + [anon_sym_super_AT] = ACTIONS(4345), + [sym_real_literal] = ACTIONS(4345), + [sym_integer_literal] = ACTIONS(4343), + [sym_hex_literal] = ACTIONS(4345), + [sym_bin_literal] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [anon_sym_SQUOTE] = ACTIONS(4345), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4345), }, [874] = { - [sym_type_constraints] = STATE(968), - [sym_enum_class_body] = STATE(1175), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), + [sym_value_arguments] = STATE(1059), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), }, [875] = { - [sym_type_constraints] = STATE(1039), - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [sym_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4357), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_object] = ACTIONS(4353), + [anon_sym_fun] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_this] = ACTIONS(4353), + [anon_sym_super] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [sym_label] = ACTIONS(4353), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_null] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_try] = ACTIONS(4353), + [anon_sym_throw] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_PLUS_EQ] = ACTIONS(4355), + [anon_sym_DASH_EQ] = ACTIONS(4355), + [anon_sym_STAR_EQ] = ACTIONS(4355), + [anon_sym_SLASH_EQ] = ACTIONS(4355), + [anon_sym_PERCENT_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4355), + [anon_sym_continue_AT] = ACTIONS(4355), + [anon_sym_break_AT] = ACTIONS(4355), + [anon_sym_this_AT] = ACTIONS(4355), + [anon_sym_super_AT] = ACTIONS(4355), + [sym_real_literal] = ACTIONS(4355), + [sym_integer_literal] = ACTIONS(4353), + [sym_hex_literal] = ACTIONS(4355), + [sym_bin_literal] = ACTIONS(4355), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4355), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4355), }, [876] = { - [sym_type_constraints] = STATE(981), - [sym_enum_class_body] = STATE(1114), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(4399), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), - }, - [877] = { - [sym__alpha_identifier] = ACTIONS(4401), - [anon_sym_AT] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_DOT] = ACTIONS(4401), - [anon_sym_as] = ACTIONS(4401), - [anon_sym_EQ] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_GT] = ACTIONS(4401), - [anon_sym_where] = ACTIONS(4401), - [anon_sym_object] = ACTIONS(4401), - [anon_sym_fun] = ACTIONS(4401), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_get] = ACTIONS(4401), - [anon_sym_set] = ACTIONS(4401), - [anon_sym_this] = ACTIONS(4401), - [anon_sym_super] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4401), - [sym_label] = ACTIONS(4401), - [anon_sym_in] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4403), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4403), - [anon_sym_PIPE_PIPE] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4401), - [anon_sym_if] = ACTIONS(4401), - [anon_sym_else] = ACTIONS(4401), - [anon_sym_when] = ACTIONS(4401), - [anon_sym_try] = ACTIONS(4401), - [anon_sym_catch] = ACTIONS(4401), - [anon_sym_finally] = ACTIONS(4401), - [anon_sym_throw] = ACTIONS(4401), - [anon_sym_return] = ACTIONS(4401), - [anon_sym_continue] = ACTIONS(4401), - [anon_sym_break] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(4403), - [anon_sym_PLUS_EQ] = ACTIONS(4403), - [anon_sym_DASH_EQ] = ACTIONS(4403), - [anon_sym_STAR_EQ] = ACTIONS(4403), - [anon_sym_SLASH_EQ] = ACTIONS(4403), - [anon_sym_PERCENT_EQ] = ACTIONS(4403), - [anon_sym_BANG_EQ] = ACTIONS(4401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), - [anon_sym_EQ_EQ] = ACTIONS(4401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), - [anon_sym_LT_EQ] = ACTIONS(4403), - [anon_sym_GT_EQ] = ACTIONS(4403), - [anon_sym_BANGin] = ACTIONS(4403), - [anon_sym_is] = ACTIONS(4401), - [anon_sym_BANGis] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_SLASH] = ACTIONS(4401), - [anon_sym_PERCENT] = ACTIONS(4401), - [anon_sym_as_QMARK] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4401), - [anon_sym_BANG_BANG] = ACTIONS(4403), - [anon_sym_suspend] = ACTIONS(4401), - [anon_sym_sealed] = ACTIONS(4401), - [anon_sym_annotation] = ACTIONS(4401), - [anon_sym_data] = ACTIONS(4401), - [anon_sym_inner] = ACTIONS(4401), - [anon_sym_value] = ACTIONS(4401), - [anon_sym_override] = ACTIONS(4401), - [anon_sym_lateinit] = ACTIONS(4401), - [anon_sym_public] = ACTIONS(4401), - [anon_sym_private] = ACTIONS(4401), - [anon_sym_internal] = ACTIONS(4401), - [anon_sym_protected] = ACTIONS(4401), - [anon_sym_tailrec] = ACTIONS(4401), - [anon_sym_operator] = ACTIONS(4401), - [anon_sym_infix] = ACTIONS(4401), - [anon_sym_inline] = ACTIONS(4401), - [anon_sym_external] = ACTIONS(4401), - [sym_property_modifier] = ACTIONS(4401), - [anon_sym_abstract] = ACTIONS(4401), - [anon_sym_final] = ACTIONS(4401), - [anon_sym_open] = ACTIONS(4401), - [anon_sym_vararg] = ACTIONS(4401), - [anon_sym_noinline] = ACTIONS(4401), - [anon_sym_crossinline] = ACTIONS(4401), - [anon_sym_expect] = ACTIONS(4401), - [anon_sym_actual] = ACTIONS(4401), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4403), - [anon_sym_continue_AT] = ACTIONS(4403), - [anon_sym_break_AT] = ACTIONS(4403), - [anon_sym_this_AT] = ACTIONS(4403), - [anon_sym_super_AT] = ACTIONS(4403), - [sym_real_literal] = ACTIONS(4403), - [sym_integer_literal] = ACTIONS(4401), - [sym_hex_literal] = ACTIONS(4403), - [sym_bin_literal] = ACTIONS(4403), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [anon_sym_SQUOTE] = ACTIONS(4403), - [sym__backtick_identifier] = ACTIONS(4403), - [sym__automatic_semicolon] = ACTIONS(4403), - [sym_safe_nav] = ACTIONS(4403), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4403), - }, - [878] = { - [sym_class_body] = STATE(1052), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(4409), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_EQ] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_where] = ACTIONS(4405), - [anon_sym_object] = ACTIONS(4405), - [anon_sym_fun] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_this] = ACTIONS(4405), - [anon_sym_super] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4405), - [sym_label] = ACTIONS(4405), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_when] = ACTIONS(4405), - [anon_sym_try] = ACTIONS(4405), - [anon_sym_throw] = ACTIONS(4405), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_continue] = ACTIONS(4405), - [anon_sym_break] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_PLUS_EQ] = ACTIONS(4407), - [anon_sym_DASH_EQ] = ACTIONS(4407), - [anon_sym_STAR_EQ] = ACTIONS(4407), - [anon_sym_SLASH_EQ] = ACTIONS(4407), - [anon_sym_PERCENT_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4405), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4405), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4407), - [anon_sym_continue_AT] = ACTIONS(4407), - [anon_sym_break_AT] = ACTIONS(4407), - [anon_sym_this_AT] = ACTIONS(4407), - [anon_sym_super_AT] = ACTIONS(4407), - [sym_real_literal] = ACTIONS(4407), - [sym_integer_literal] = ACTIONS(4405), - [sym_hex_literal] = ACTIONS(4407), - [sym_bin_literal] = ACTIONS(4407), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4407), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4407), - }, - [879] = { - [sym__alpha_identifier] = ACTIONS(4411), - [anon_sym_AT] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4411), - [anon_sym_LBRACK] = ACTIONS(4413), - [anon_sym_DOT] = ACTIONS(4411), - [anon_sym_as] = ACTIONS(4411), - [anon_sym_EQ] = ACTIONS(4411), - [anon_sym_constructor] = ACTIONS(4411), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_RBRACE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4411), - [anon_sym_GT] = ACTIONS(4411), - [anon_sym_where] = ACTIONS(4411), - [anon_sym_object] = ACTIONS(4411), - [anon_sym_fun] = ACTIONS(4411), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_get] = ACTIONS(4411), - [anon_sym_set] = ACTIONS(4411), - [anon_sym_this] = ACTIONS(4411), - [anon_sym_super] = ACTIONS(4411), - [anon_sym_STAR] = ACTIONS(4411), - [sym_label] = ACTIONS(4411), - [anon_sym_in] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(4413), - [anon_sym_QMARK_COLON] = ACTIONS(4413), - [anon_sym_AMP_AMP] = ACTIONS(4413), - [anon_sym_PIPE_PIPE] = ACTIONS(4413), - [anon_sym_null] = ACTIONS(4411), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_else] = ACTIONS(4411), - [anon_sym_when] = ACTIONS(4411), - [anon_sym_try] = ACTIONS(4411), - [anon_sym_throw] = ACTIONS(4411), - [anon_sym_return] = ACTIONS(4411), - [anon_sym_continue] = ACTIONS(4411), - [anon_sym_break] = ACTIONS(4411), - [anon_sym_COLON_COLON] = ACTIONS(4413), - [anon_sym_PLUS_EQ] = ACTIONS(4413), - [anon_sym_DASH_EQ] = ACTIONS(4413), - [anon_sym_STAR_EQ] = ACTIONS(4413), - [anon_sym_SLASH_EQ] = ACTIONS(4413), - [anon_sym_PERCENT_EQ] = ACTIONS(4413), - [anon_sym_BANG_EQ] = ACTIONS(4411), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), - [anon_sym_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4413), - [anon_sym_is] = ACTIONS(4411), - [anon_sym_BANGis] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4411), - [anon_sym_DASH] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4411), - [anon_sym_PERCENT] = ACTIONS(4411), - [anon_sym_as_QMARK] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4411), - [anon_sym_BANG_BANG] = ACTIONS(4413), - [anon_sym_suspend] = ACTIONS(4411), - [anon_sym_sealed] = ACTIONS(4411), - [anon_sym_annotation] = ACTIONS(4411), - [anon_sym_data] = ACTIONS(4411), - [anon_sym_inner] = ACTIONS(4411), - [anon_sym_value] = ACTIONS(4411), - [anon_sym_override] = ACTIONS(4411), - [anon_sym_lateinit] = ACTIONS(4411), - [anon_sym_public] = ACTIONS(4411), - [anon_sym_private] = ACTIONS(4411), - [anon_sym_internal] = ACTIONS(4411), - [anon_sym_protected] = ACTIONS(4411), - [anon_sym_tailrec] = ACTIONS(4411), - [anon_sym_operator] = ACTIONS(4411), - [anon_sym_infix] = ACTIONS(4411), - [anon_sym_inline] = ACTIONS(4411), - [anon_sym_external] = ACTIONS(4411), - [sym_property_modifier] = ACTIONS(4411), - [anon_sym_abstract] = ACTIONS(4411), - [anon_sym_final] = ACTIONS(4411), - [anon_sym_open] = ACTIONS(4411), - [anon_sym_vararg] = ACTIONS(4411), - [anon_sym_noinline] = ACTIONS(4411), - [anon_sym_crossinline] = ACTIONS(4411), - [anon_sym_expect] = ACTIONS(4411), - [anon_sym_actual] = ACTIONS(4411), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4413), - [anon_sym_continue_AT] = ACTIONS(4413), - [anon_sym_break_AT] = ACTIONS(4413), - [anon_sym_this_AT] = ACTIONS(4413), - [anon_sym_super_AT] = ACTIONS(4413), - [sym_real_literal] = ACTIONS(4413), - [sym_integer_literal] = ACTIONS(4411), - [sym_hex_literal] = ACTIONS(4413), - [sym_bin_literal] = ACTIONS(4413), - [anon_sym_true] = ACTIONS(4411), - [anon_sym_false] = ACTIONS(4411), - [anon_sym_SQUOTE] = ACTIONS(4413), - [sym__backtick_identifier] = ACTIONS(4413), - [sym__automatic_semicolon] = ACTIONS(4413), - [sym_safe_nav] = ACTIONS(4413), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4413), - }, - [880] = { - [sym_type_constraints] = STATE(1007), - [sym_enum_class_body] = STATE(1023), - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4415), - [anon_sym_fun] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_this] = ACTIONS(4415), - [anon_sym_super] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [sym_label] = ACTIONS(4415), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_null] = ACTIONS(4415), - [anon_sym_if] = ACTIONS(4415), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_when] = ACTIONS(4415), - [anon_sym_try] = ACTIONS(4415), - [anon_sym_throw] = ACTIONS(4415), - [anon_sym_return] = ACTIONS(4415), - [anon_sym_continue] = ACTIONS(4415), - [anon_sym_break] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(4415), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_suspend] = ACTIONS(4415), - [anon_sym_sealed] = ACTIONS(4415), - [anon_sym_annotation] = ACTIONS(4415), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_override] = ACTIONS(4415), - [anon_sym_lateinit] = ACTIONS(4415), - [anon_sym_public] = ACTIONS(4415), - [anon_sym_private] = ACTIONS(4415), - [anon_sym_internal] = ACTIONS(4415), - [anon_sym_protected] = ACTIONS(4415), - [anon_sym_tailrec] = ACTIONS(4415), - [anon_sym_operator] = ACTIONS(4415), - [anon_sym_infix] = ACTIONS(4415), - [anon_sym_inline] = ACTIONS(4415), - [anon_sym_external] = ACTIONS(4415), - [sym_property_modifier] = ACTIONS(4415), - [anon_sym_abstract] = ACTIONS(4415), - [anon_sym_final] = ACTIONS(4415), - [anon_sym_open] = ACTIONS(4415), - [anon_sym_vararg] = ACTIONS(4415), - [anon_sym_noinline] = ACTIONS(4415), - [anon_sym_crossinline] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4417), - [anon_sym_continue_AT] = ACTIONS(4417), - [anon_sym_break_AT] = ACTIONS(4417), - [anon_sym_this_AT] = ACTIONS(4417), - [anon_sym_super_AT] = ACTIONS(4417), - [sym_real_literal] = ACTIONS(4417), - [sym_integer_literal] = ACTIONS(4415), - [sym_hex_literal] = ACTIONS(4417), - [sym_bin_literal] = ACTIONS(4417), - [anon_sym_true] = ACTIONS(4415), - [anon_sym_false] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4417), - [sym__backtick_identifier] = ACTIONS(4417), - [sym__automatic_semicolon] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4417), - }, - [881] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_object] = ACTIONS(4419), - [anon_sym_fun] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_this] = ACTIONS(4419), - [anon_sym_super] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4419), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_when] = ACTIONS(4419), - [anon_sym_try] = ACTIONS(4419), - [anon_sym_catch] = ACTIONS(4419), - [anon_sym_finally] = ACTIONS(4419), - [anon_sym_throw] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4421), - [anon_sym_continue_AT] = ACTIONS(4421), - [anon_sym_break_AT] = ACTIONS(4421), - [anon_sym_this_AT] = ACTIONS(4421), - [anon_sym_super_AT] = ACTIONS(4421), - [sym_real_literal] = ACTIONS(4421), - [sym_integer_literal] = ACTIONS(4419), - [sym_hex_literal] = ACTIONS(4421), - [sym_bin_literal] = ACTIONS(4421), - [anon_sym_true] = ACTIONS(4419), - [anon_sym_false] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4421), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4421), - }, - [882] = { - [sym_class_body] = STATE(1050), - [sym_type_constraints] = STATE(1012), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [883] = { - [sym_type_constraints] = STATE(1008), - [sym_enum_class_body] = STATE(1050), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [884] = { - [sym_type_constraints] = STATE(981), - [sym_enum_class_body] = STATE(1114), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), - }, - [885] = { - [sym_class_body] = STATE(1155), - [sym_type_constraints] = STATE(926), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), - }, - [886] = { - [sym_type_constraints] = STATE(1046), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [887] = { - [aux_sym_type_constraints_repeat1] = STATE(887), - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_by] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4431), - [anon_sym_where] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_fun] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_this] = ACTIONS(4431), - [anon_sym_super] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_QMARK_COLON] = ACTIONS(4433), - [anon_sym_AMP_AMP] = ACTIONS(4433), - [anon_sym_PIPE_PIPE] = ACTIONS(4433), - [anon_sym_null] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_try] = ACTIONS(4431), - [anon_sym_throw] = ACTIONS(4431), - [anon_sym_return] = ACTIONS(4431), - [anon_sym_continue] = ACTIONS(4431), - [anon_sym_break] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_PLUS_EQ] = ACTIONS(4433), - [anon_sym_DASH_EQ] = ACTIONS(4433), - [anon_sym_STAR_EQ] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4433), - [anon_sym_PERCENT_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_as_QMARK] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4433), - [anon_sym_suspend] = ACTIONS(4431), - [anon_sym_sealed] = ACTIONS(4431), - [anon_sym_annotation] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_override] = ACTIONS(4431), - [anon_sym_lateinit] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4431), - [anon_sym_internal] = ACTIONS(4431), - [anon_sym_protected] = ACTIONS(4431), - [anon_sym_tailrec] = ACTIONS(4431), - [anon_sym_operator] = ACTIONS(4431), - [anon_sym_infix] = ACTIONS(4431), - [anon_sym_inline] = ACTIONS(4431), - [anon_sym_external] = ACTIONS(4431), - [sym_property_modifier] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(4431), - [anon_sym_final] = ACTIONS(4431), - [anon_sym_open] = ACTIONS(4431), - [anon_sym_vararg] = ACTIONS(4431), - [anon_sym_noinline] = ACTIONS(4431), - [anon_sym_crossinline] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4433), - [anon_sym_continue_AT] = ACTIONS(4433), - [anon_sym_break_AT] = ACTIONS(4433), - [anon_sym_this_AT] = ACTIONS(4433), - [anon_sym_super_AT] = ACTIONS(4433), - [sym_real_literal] = ACTIONS(4433), - [sym_integer_literal] = ACTIONS(4431), - [sym_hex_literal] = ACTIONS(4433), - [sym_bin_literal] = ACTIONS(4433), - [anon_sym_true] = ACTIONS(4431), - [anon_sym_false] = ACTIONS(4431), - [anon_sym_SQUOTE] = ACTIONS(4433), - [sym__backtick_identifier] = ACTIONS(4433), - [sym__automatic_semicolon] = ACTIONS(4433), - [sym_safe_nav] = ACTIONS(4433), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4433), - }, - [888] = { - [sym_getter] = STATE(5112), - [sym_setter] = STATE(5112), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(4438), - [anon_sym_get] = ACTIONS(4343), - [anon_sym_set] = ACTIONS(4345), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [sym_type_constraints] = STATE(970), + [sym_enum_class_body] = STATE(1134), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), [anon_sym_BANG_EQ] = ACTIONS(4359), [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), [anon_sym_EQ_EQ] = ACTIONS(4359), [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [877] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4363), + [anon_sym_get] = ACTIONS(4293), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -149296,204 +148377,852 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [889] = { - [sym_type_constraints] = STATE(950), - [sym_enum_class_body] = STATE(1062), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [878] = { + [sym_getter] = STATE(3899), + [sym_setter] = STATE(3899), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(4365), + [anon_sym_get] = ACTIONS(4293), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, - [890] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_get] = ACTIONS(4343), - [anon_sym_set] = ACTIONS(4345), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), + [879] = { + [sym_type_constraints] = STATE(967), + [sym_enum_class_body] = STATE(1163), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), + }, + [880] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_constructor] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3938), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [881] = { + [sym_type_constraints] = STATE(960), + [sym_enum_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [882] = { + [sym_type_constraints] = STATE(1125), + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [883] = { + [sym__alpha_identifier] = ACTIONS(4369), + [anon_sym_AT] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_as] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4369), + [anon_sym_LBRACE] = ACTIONS(4371), + [anon_sym_RBRACE] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4371), + [anon_sym_COMMA] = ACTIONS(4371), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_where] = ACTIONS(4369), + [anon_sym_object] = ACTIONS(4369), + [anon_sym_fun] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_get] = ACTIONS(4369), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_this] = ACTIONS(4369), + [anon_sym_super] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4369), + [sym_label] = ACTIONS(4369), + [anon_sym_in] = ACTIONS(4369), + [anon_sym_DOT_DOT] = ACTIONS(4371), + [anon_sym_QMARK_COLON] = ACTIONS(4371), + [anon_sym_AMP_AMP] = ACTIONS(4371), + [anon_sym_PIPE_PIPE] = ACTIONS(4371), + [anon_sym_null] = ACTIONS(4369), + [anon_sym_if] = ACTIONS(4369), + [anon_sym_else] = ACTIONS(4369), + [anon_sym_when] = ACTIONS(4369), + [anon_sym_try] = ACTIONS(4369), + [anon_sym_catch] = ACTIONS(4369), + [anon_sym_finally] = ACTIONS(4369), + [anon_sym_throw] = ACTIONS(4369), + [anon_sym_return] = ACTIONS(4369), + [anon_sym_continue] = ACTIONS(4369), + [anon_sym_break] = ACTIONS(4369), + [anon_sym_COLON_COLON] = ACTIONS(4371), + [anon_sym_PLUS_EQ] = ACTIONS(4371), + [anon_sym_DASH_EQ] = ACTIONS(4371), + [anon_sym_STAR_EQ] = ACTIONS(4371), + [anon_sym_SLASH_EQ] = ACTIONS(4371), + [anon_sym_PERCENT_EQ] = ACTIONS(4371), + [anon_sym_BANG_EQ] = ACTIONS(4369), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4371), + [anon_sym_EQ_EQ] = ACTIONS(4369), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4371), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_BANGin] = ACTIONS(4371), + [anon_sym_is] = ACTIONS(4369), + [anon_sym_BANGis] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [anon_sym_PERCENT] = ACTIONS(4369), + [anon_sym_as_QMARK] = ACTIONS(4371), + [anon_sym_PLUS_PLUS] = ACTIONS(4371), + [anon_sym_DASH_DASH] = ACTIONS(4371), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_BANG_BANG] = ACTIONS(4371), + [anon_sym_suspend] = ACTIONS(4369), + [anon_sym_sealed] = ACTIONS(4369), + [anon_sym_annotation] = ACTIONS(4369), + [anon_sym_data] = ACTIONS(4369), + [anon_sym_inner] = ACTIONS(4369), + [anon_sym_value] = ACTIONS(4369), + [anon_sym_override] = ACTIONS(4369), + [anon_sym_lateinit] = ACTIONS(4369), + [anon_sym_public] = ACTIONS(4369), + [anon_sym_private] = ACTIONS(4369), + [anon_sym_internal] = ACTIONS(4369), + [anon_sym_protected] = ACTIONS(4369), + [anon_sym_tailrec] = ACTIONS(4369), + [anon_sym_operator] = ACTIONS(4369), + [anon_sym_infix] = ACTIONS(4369), + [anon_sym_inline] = ACTIONS(4369), + [anon_sym_external] = ACTIONS(4369), + [sym_property_modifier] = ACTIONS(4369), + [anon_sym_abstract] = ACTIONS(4369), + [anon_sym_final] = ACTIONS(4369), + [anon_sym_open] = ACTIONS(4369), + [anon_sym_vararg] = ACTIONS(4369), + [anon_sym_noinline] = ACTIONS(4369), + [anon_sym_crossinline] = ACTIONS(4369), + [anon_sym_expect] = ACTIONS(4369), + [anon_sym_actual] = ACTIONS(4369), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4371), + [anon_sym_continue_AT] = ACTIONS(4371), + [anon_sym_break_AT] = ACTIONS(4371), + [anon_sym_this_AT] = ACTIONS(4371), + [anon_sym_super_AT] = ACTIONS(4371), + [sym_real_literal] = ACTIONS(4371), + [sym_integer_literal] = ACTIONS(4369), + [sym_hex_literal] = ACTIONS(4371), + [sym_bin_literal] = ACTIONS(4371), + [anon_sym_true] = ACTIONS(4369), + [anon_sym_false] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4371), + [sym__backtick_identifier] = ACTIONS(4371), + [sym__automatic_semicolon] = ACTIONS(4371), + [sym_safe_nav] = ACTIONS(4371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4371), + }, + [884] = { + [aux_sym_type_constraints_repeat1] = STATE(884), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4377), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_null] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), + }, + [885] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4380), + [anon_sym_get] = ACTIONS(4293), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -149512,528 +149241,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [891] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_catch] = ACTIONS(4442), - [anon_sym_finally] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4444), - [anon_sym_super_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), + [886] = { + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, - [892] = { - [sym__alpha_identifier] = ACTIONS(4446), - [anon_sym_AT] = ACTIONS(4448), - [anon_sym_LBRACK] = ACTIONS(4448), - [anon_sym_DOT] = ACTIONS(4446), - [anon_sym_as] = ACTIONS(4446), - [anon_sym_EQ] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4448), - [anon_sym_RBRACE] = ACTIONS(4448), - [anon_sym_LPAREN] = ACTIONS(4448), - [anon_sym_COMMA] = ACTIONS(4448), - [anon_sym_LT] = ACTIONS(4446), - [anon_sym_GT] = ACTIONS(4446), - [anon_sym_where] = ACTIONS(4446), - [anon_sym_object] = ACTIONS(4446), - [anon_sym_fun] = ACTIONS(4446), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(4446), - [anon_sym_set] = ACTIONS(4446), - [anon_sym_this] = ACTIONS(4446), - [anon_sym_super] = ACTIONS(4446), - [anon_sym_STAR] = ACTIONS(4446), - [sym_label] = ACTIONS(4446), - [anon_sym_in] = ACTIONS(4446), - [anon_sym_DOT_DOT] = ACTIONS(4448), - [anon_sym_QMARK_COLON] = ACTIONS(4448), - [anon_sym_AMP_AMP] = ACTIONS(4448), - [anon_sym_PIPE_PIPE] = ACTIONS(4448), - [anon_sym_null] = ACTIONS(4446), - [anon_sym_if] = ACTIONS(4446), - [anon_sym_else] = ACTIONS(4446), - [anon_sym_when] = ACTIONS(4446), - [anon_sym_try] = ACTIONS(4446), - [anon_sym_catch] = ACTIONS(4446), - [anon_sym_finally] = ACTIONS(4446), - [anon_sym_throw] = ACTIONS(4446), - [anon_sym_return] = ACTIONS(4446), - [anon_sym_continue] = ACTIONS(4446), - [anon_sym_break] = ACTIONS(4446), - [anon_sym_COLON_COLON] = ACTIONS(4448), - [anon_sym_PLUS_EQ] = ACTIONS(4448), - [anon_sym_DASH_EQ] = ACTIONS(4448), - [anon_sym_STAR_EQ] = ACTIONS(4448), - [anon_sym_SLASH_EQ] = ACTIONS(4448), - [anon_sym_PERCENT_EQ] = ACTIONS(4448), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4448), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4448), - [anon_sym_LT_EQ] = ACTIONS(4448), - [anon_sym_GT_EQ] = ACTIONS(4448), - [anon_sym_BANGin] = ACTIONS(4448), - [anon_sym_is] = ACTIONS(4446), - [anon_sym_BANGis] = ACTIONS(4448), - [anon_sym_PLUS] = ACTIONS(4446), - [anon_sym_DASH] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4446), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_as_QMARK] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4448), - [anon_sym_DASH_DASH] = ACTIONS(4448), - [anon_sym_BANG] = ACTIONS(4446), - [anon_sym_BANG_BANG] = ACTIONS(4448), - [anon_sym_suspend] = ACTIONS(4446), - [anon_sym_sealed] = ACTIONS(4446), - [anon_sym_annotation] = ACTIONS(4446), - [anon_sym_data] = ACTIONS(4446), - [anon_sym_inner] = ACTIONS(4446), - [anon_sym_value] = ACTIONS(4446), - [anon_sym_override] = ACTIONS(4446), - [anon_sym_lateinit] = ACTIONS(4446), - [anon_sym_public] = ACTIONS(4446), - [anon_sym_private] = ACTIONS(4446), - [anon_sym_internal] = ACTIONS(4446), - [anon_sym_protected] = ACTIONS(4446), - [anon_sym_tailrec] = ACTIONS(4446), - [anon_sym_operator] = ACTIONS(4446), - [anon_sym_infix] = ACTIONS(4446), - [anon_sym_inline] = ACTIONS(4446), - [anon_sym_external] = ACTIONS(4446), - [sym_property_modifier] = ACTIONS(4446), - [anon_sym_abstract] = ACTIONS(4446), - [anon_sym_final] = ACTIONS(4446), - [anon_sym_open] = ACTIONS(4446), - [anon_sym_vararg] = ACTIONS(4446), - [anon_sym_noinline] = ACTIONS(4446), - [anon_sym_crossinline] = ACTIONS(4446), - [anon_sym_expect] = ACTIONS(4446), - [anon_sym_actual] = ACTIONS(4446), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4448), - [anon_sym_continue_AT] = ACTIONS(4448), - [anon_sym_break_AT] = ACTIONS(4448), - [anon_sym_this_AT] = ACTIONS(4448), - [anon_sym_super_AT] = ACTIONS(4448), - [sym_real_literal] = ACTIONS(4448), - [sym_integer_literal] = ACTIONS(4446), - [sym_hex_literal] = ACTIONS(4448), - [sym_bin_literal] = ACTIONS(4448), - [anon_sym_true] = ACTIONS(4446), - [anon_sym_false] = ACTIONS(4446), - [anon_sym_SQUOTE] = ACTIONS(4448), - [sym__backtick_identifier] = ACTIONS(4448), - [sym__automatic_semicolon] = ACTIONS(4448), - [sym_safe_nav] = ACTIONS(4448), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4448), + [887] = { + [sym_class_body] = STATE(1150), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), }, - [893] = { + [888] = { + [sym_type_constraints] = STATE(1137), [sym_function_body] = STATE(1120), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, - [894] = { - [sym_type_constraints] = STATE(978), - [sym_enum_class_body] = STATE(1155), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [889] = { + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_COLON] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_constructor] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_null] = ACTIONS(4382), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), }, - [895] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4450), - [anon_sym_get] = ACTIONS(4343), - [anon_sym_set] = ACTIONS(4345), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [890] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4386), + [anon_sym_get] = ACTIONS(4293), + [anon_sym_set] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -150052,354 +149781,678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [896] = { - [sym_function_body] = STATE(1157), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), + [891] = { + [aux_sym_type_constraints_repeat1] = STATE(884), + [sym__alpha_identifier] = ACTIONS(4388), + [anon_sym_AT] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_as] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_by] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_where] = ACTIONS(4388), + [anon_sym_object] = ACTIONS(4388), + [anon_sym_fun] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_get] = ACTIONS(4388), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_this] = ACTIONS(4388), + [anon_sym_super] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4388), + [sym_label] = ACTIONS(4388), + [anon_sym_in] = ACTIONS(4388), + [anon_sym_DOT_DOT] = ACTIONS(4390), + [anon_sym_QMARK_COLON] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_null] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4388), + [anon_sym_when] = ACTIONS(4388), + [anon_sym_try] = ACTIONS(4388), + [anon_sym_throw] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4388), + [anon_sym_continue] = ACTIONS(4388), + [anon_sym_break] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_PLUS_EQ] = ACTIONS(4390), + [anon_sym_DASH_EQ] = ACTIONS(4390), + [anon_sym_STAR_EQ] = ACTIONS(4390), + [anon_sym_SLASH_EQ] = ACTIONS(4390), + [anon_sym_PERCENT_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4390), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_BANGin] = ACTIONS(4390), + [anon_sym_is] = ACTIONS(4388), + [anon_sym_BANGis] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4388), + [anon_sym_SLASH] = ACTIONS(4388), + [anon_sym_PERCENT] = ACTIONS(4388), + [anon_sym_as_QMARK] = ACTIONS(4390), + [anon_sym_PLUS_PLUS] = ACTIONS(4390), + [anon_sym_DASH_DASH] = ACTIONS(4390), + [anon_sym_BANG] = ACTIONS(4388), + [anon_sym_BANG_BANG] = ACTIONS(4390), + [anon_sym_suspend] = ACTIONS(4388), + [anon_sym_sealed] = ACTIONS(4388), + [anon_sym_annotation] = ACTIONS(4388), + [anon_sym_data] = ACTIONS(4388), + [anon_sym_inner] = ACTIONS(4388), + [anon_sym_value] = ACTIONS(4388), + [anon_sym_override] = ACTIONS(4388), + [anon_sym_lateinit] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_internal] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_tailrec] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_infix] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym_external] = ACTIONS(4388), + [sym_property_modifier] = ACTIONS(4388), + [anon_sym_abstract] = ACTIONS(4388), + [anon_sym_final] = ACTIONS(4388), + [anon_sym_open] = ACTIONS(4388), + [anon_sym_vararg] = ACTIONS(4388), + [anon_sym_noinline] = ACTIONS(4388), + [anon_sym_crossinline] = ACTIONS(4388), + [anon_sym_expect] = ACTIONS(4388), + [anon_sym_actual] = ACTIONS(4388), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4390), + [anon_sym_continue_AT] = ACTIONS(4390), + [anon_sym_break_AT] = ACTIONS(4390), + [anon_sym_this_AT] = ACTIONS(4390), + [anon_sym_super_AT] = ACTIONS(4390), + [sym_real_literal] = ACTIONS(4390), + [sym_integer_literal] = ACTIONS(4388), + [sym_hex_literal] = ACTIONS(4390), + [sym_bin_literal] = ACTIONS(4390), + [anon_sym_true] = ACTIONS(4388), + [anon_sym_false] = ACTIONS(4388), + [anon_sym_SQUOTE] = ACTIONS(4390), + [sym__backtick_identifier] = ACTIONS(4390), + [sym__automatic_semicolon] = ACTIONS(4390), + [sym_safe_nav] = ACTIONS(4390), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4390), }, - [897] = { - [sym__alpha_identifier] = ACTIONS(4456), - [anon_sym_AT] = ACTIONS(4458), - [anon_sym_COLON] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4456), - [anon_sym_as] = ACTIONS(4456), - [anon_sym_EQ] = ACTIONS(4456), - [anon_sym_constructor] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4458), - [anon_sym_RBRACE] = ACTIONS(4458), - [anon_sym_LPAREN] = ACTIONS(4458), - [anon_sym_COMMA] = ACTIONS(4458), - [anon_sym_LT] = ACTIONS(4456), - [anon_sym_GT] = ACTIONS(4456), - [anon_sym_where] = ACTIONS(4456), - [anon_sym_object] = ACTIONS(4456), - [anon_sym_fun] = ACTIONS(4456), - [anon_sym_SEMI] = ACTIONS(4458), - [anon_sym_get] = ACTIONS(4456), - [anon_sym_set] = ACTIONS(4456), - [anon_sym_this] = ACTIONS(4456), - [anon_sym_super] = ACTIONS(4456), - [anon_sym_STAR] = ACTIONS(4456), - [sym_label] = ACTIONS(4456), - [anon_sym_in] = ACTIONS(4456), - [anon_sym_DOT_DOT] = ACTIONS(4458), - [anon_sym_QMARK_COLON] = ACTIONS(4458), - [anon_sym_AMP_AMP] = ACTIONS(4458), - [anon_sym_PIPE_PIPE] = ACTIONS(4458), - [anon_sym_null] = ACTIONS(4456), - [anon_sym_if] = ACTIONS(4456), - [anon_sym_else] = ACTIONS(4456), - [anon_sym_when] = ACTIONS(4456), - [anon_sym_try] = ACTIONS(4456), - [anon_sym_throw] = ACTIONS(4456), - [anon_sym_return] = ACTIONS(4456), - [anon_sym_continue] = ACTIONS(4456), - [anon_sym_break] = ACTIONS(4456), - [anon_sym_COLON_COLON] = ACTIONS(4458), - [anon_sym_PLUS_EQ] = ACTIONS(4458), - [anon_sym_DASH_EQ] = ACTIONS(4458), - [anon_sym_STAR_EQ] = ACTIONS(4458), - [anon_sym_SLASH_EQ] = ACTIONS(4458), - [anon_sym_PERCENT_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ] = ACTIONS(4456), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4458), - [anon_sym_LT_EQ] = ACTIONS(4458), - [anon_sym_GT_EQ] = ACTIONS(4458), - [anon_sym_BANGin] = ACTIONS(4458), - [anon_sym_is] = ACTIONS(4456), - [anon_sym_BANGis] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4456), - [anon_sym_DASH] = ACTIONS(4456), - [anon_sym_SLASH] = ACTIONS(4456), - [anon_sym_PERCENT] = ACTIONS(4456), - [anon_sym_as_QMARK] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4458), - [anon_sym_DASH_DASH] = ACTIONS(4458), - [anon_sym_BANG] = ACTIONS(4456), - [anon_sym_BANG_BANG] = ACTIONS(4458), - [anon_sym_suspend] = ACTIONS(4456), - [anon_sym_sealed] = ACTIONS(4456), - [anon_sym_annotation] = ACTIONS(4456), - [anon_sym_data] = ACTIONS(4456), - [anon_sym_inner] = ACTIONS(4456), - [anon_sym_value] = ACTIONS(4456), - [anon_sym_override] = ACTIONS(4456), - [anon_sym_lateinit] = ACTIONS(4456), - [anon_sym_public] = ACTIONS(4456), - [anon_sym_private] = ACTIONS(4456), - [anon_sym_internal] = ACTIONS(4456), - [anon_sym_protected] = ACTIONS(4456), - [anon_sym_tailrec] = ACTIONS(4456), - [anon_sym_operator] = ACTIONS(4456), - [anon_sym_infix] = ACTIONS(4456), - [anon_sym_inline] = ACTIONS(4456), - [anon_sym_external] = ACTIONS(4456), - [sym_property_modifier] = ACTIONS(4456), - [anon_sym_abstract] = ACTIONS(4456), - [anon_sym_final] = ACTIONS(4456), - [anon_sym_open] = ACTIONS(4456), - [anon_sym_vararg] = ACTIONS(4456), - [anon_sym_noinline] = ACTIONS(4456), - [anon_sym_crossinline] = ACTIONS(4456), - [anon_sym_expect] = ACTIONS(4456), - [anon_sym_actual] = ACTIONS(4456), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4458), - [anon_sym_continue_AT] = ACTIONS(4458), - [anon_sym_break_AT] = ACTIONS(4458), - [anon_sym_this_AT] = ACTIONS(4458), - [anon_sym_super_AT] = ACTIONS(4458), - [sym_real_literal] = ACTIONS(4458), - [sym_integer_literal] = ACTIONS(4456), - [sym_hex_literal] = ACTIONS(4458), - [sym_bin_literal] = ACTIONS(4458), - [anon_sym_true] = ACTIONS(4456), - [anon_sym_false] = ACTIONS(4456), - [anon_sym_SQUOTE] = ACTIONS(4458), - [sym__backtick_identifier] = ACTIONS(4458), - [sym__automatic_semicolon] = ACTIONS(4458), - [sym_safe_nav] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4458), + [892] = { + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1153), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [898] = { - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), + [893] = { + [aux_sym_type_constraints_repeat1] = STATE(891), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(4392), + [anon_sym_by] = ACTIONS(4394), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_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), }, - [899] = { - [sym_function_body] = STATE(1103), - [sym__block] = STATE(1092), + [894] = { + [sym__alpha_identifier] = ACTIONS(4398), + [anon_sym_AT] = ACTIONS(4400), + [anon_sym_LBRACK] = ACTIONS(4400), + [anon_sym_DOT] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4398), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4400), + [anon_sym_RBRACE] = ACTIONS(4400), + [anon_sym_LPAREN] = ACTIONS(4400), + [anon_sym_COMMA] = ACTIONS(4400), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_where] = ACTIONS(4398), + [anon_sym_object] = ACTIONS(4398), + [anon_sym_fun] = ACTIONS(4398), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_get] = ACTIONS(4398), + [anon_sym_set] = ACTIONS(4398), + [anon_sym_this] = ACTIONS(4398), + [anon_sym_super] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4398), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4398), + [anon_sym_DOT_DOT] = ACTIONS(4400), + [anon_sym_QMARK_COLON] = ACTIONS(4400), + [anon_sym_AMP_AMP] = ACTIONS(4400), + [anon_sym_PIPE_PIPE] = ACTIONS(4400), + [anon_sym_null] = ACTIONS(4398), + [anon_sym_if] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4398), + [anon_sym_when] = ACTIONS(4398), + [anon_sym_try] = ACTIONS(4398), + [anon_sym_catch] = ACTIONS(4398), + [anon_sym_finally] = ACTIONS(4398), + [anon_sym_throw] = ACTIONS(4398), + [anon_sym_return] = ACTIONS(4398), + [anon_sym_continue] = ACTIONS(4398), + [anon_sym_break] = ACTIONS(4398), + [anon_sym_COLON_COLON] = ACTIONS(4400), + [anon_sym_PLUS_EQ] = ACTIONS(4400), + [anon_sym_DASH_EQ] = ACTIONS(4400), + [anon_sym_STAR_EQ] = ACTIONS(4400), + [anon_sym_SLASH_EQ] = ACTIONS(4400), + [anon_sym_PERCENT_EQ] = ACTIONS(4400), + [anon_sym_BANG_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4400), + [anon_sym_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4400), + [anon_sym_LT_EQ] = ACTIONS(4400), + [anon_sym_GT_EQ] = ACTIONS(4400), + [anon_sym_BANGin] = ACTIONS(4400), + [anon_sym_is] = ACTIONS(4398), + [anon_sym_BANGis] = ACTIONS(4400), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_PERCENT] = ACTIONS(4398), + [anon_sym_as_QMARK] = ACTIONS(4400), + [anon_sym_PLUS_PLUS] = ACTIONS(4400), + [anon_sym_DASH_DASH] = ACTIONS(4400), + [anon_sym_BANG] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4400), + [anon_sym_suspend] = ACTIONS(4398), + [anon_sym_sealed] = ACTIONS(4398), + [anon_sym_annotation] = ACTIONS(4398), + [anon_sym_data] = ACTIONS(4398), + [anon_sym_inner] = ACTIONS(4398), + [anon_sym_value] = ACTIONS(4398), + [anon_sym_override] = ACTIONS(4398), + [anon_sym_lateinit] = ACTIONS(4398), + [anon_sym_public] = ACTIONS(4398), + [anon_sym_private] = ACTIONS(4398), + [anon_sym_internal] = ACTIONS(4398), + [anon_sym_protected] = ACTIONS(4398), + [anon_sym_tailrec] = ACTIONS(4398), + [anon_sym_operator] = ACTIONS(4398), + [anon_sym_infix] = ACTIONS(4398), + [anon_sym_inline] = ACTIONS(4398), + [anon_sym_external] = ACTIONS(4398), + [sym_property_modifier] = ACTIONS(4398), + [anon_sym_abstract] = ACTIONS(4398), + [anon_sym_final] = ACTIONS(4398), + [anon_sym_open] = ACTIONS(4398), + [anon_sym_vararg] = ACTIONS(4398), + [anon_sym_noinline] = ACTIONS(4398), + [anon_sym_crossinline] = ACTIONS(4398), + [anon_sym_expect] = ACTIONS(4398), + [anon_sym_actual] = ACTIONS(4398), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4400), + [anon_sym_continue_AT] = ACTIONS(4400), + [anon_sym_break_AT] = ACTIONS(4400), + [anon_sym_this_AT] = ACTIONS(4400), + [anon_sym_super_AT] = ACTIONS(4400), + [sym_real_literal] = ACTIONS(4400), + [sym_integer_literal] = ACTIONS(4398), + [sym_hex_literal] = ACTIONS(4400), + [sym_bin_literal] = ACTIONS(4400), + [anon_sym_true] = ACTIONS(4398), + [anon_sym_false] = ACTIONS(4398), + [anon_sym_SQUOTE] = ACTIONS(4400), + [sym__backtick_identifier] = ACTIONS(4400), + [sym__automatic_semicolon] = ACTIONS(4400), + [sym_safe_nav] = ACTIONS(4400), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4400), + }, + [895] = { + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(4404), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4404), + [anon_sym_super_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [aux_sym_unsigned_literal_token1] = ACTIONS(4406), + [anon_sym_L] = ACTIONS(4408), + [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), + }, + [896] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_as] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4093), + [anon_sym_constructor] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_GT] = ACTIONS(4093), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_object] = ACTIONS(4093), + [anon_sym_fun] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_this] = ACTIONS(4093), + [anon_sym_super] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [sym_label] = ACTIONS(4093), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_DOT_DOT] = ACTIONS(4095), + [anon_sym_QMARK_COLON] = ACTIONS(4095), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_PIPE_PIPE] = ACTIONS(4095), + [anon_sym_null] = ACTIONS(4093), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_when] = ACTIONS(4093), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ] = ACTIONS(4093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_SLASH] = ACTIONS(4093), + [anon_sym_PERCENT] = ACTIONS(4093), + [anon_sym_as_QMARK] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG] = ACTIONS(4093), + [anon_sym_BANG_BANG] = ACTIONS(4095), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4095), + [anon_sym_continue_AT] = ACTIONS(4095), + [anon_sym_break_AT] = ACTIONS(4095), + [anon_sym_this_AT] = ACTIONS(4095), + [anon_sym_super_AT] = ACTIONS(4095), + [sym_real_literal] = ACTIONS(4095), + [sym_integer_literal] = ACTIONS(4093), + [sym_hex_literal] = ACTIONS(4095), + [sym_bin_literal] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4093), + [anon_sym_false] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(4095), + [sym__backtick_identifier] = ACTIONS(4095), + [sym__automatic_semicolon] = ACTIONS(4095), + [sym_safe_nav] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4095), + }, + [897] = { + [sym_type_constraints] = STATE(1139), + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1109), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(3194), [anon_sym_object] = ACTIONS(4260), [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), @@ -150492,1060 +150545,952 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, + [898] = { + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1013), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), + }, + [899] = { + [sym_function_body] = STATE(1120), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), + }, [900] = { - [sym_type_constraints] = STATE(985), - [sym_enum_class_body] = STATE(1104), - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_EQ] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(3240), - [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(3216), - [anon_sym_object] = ACTIONS(4460), - [anon_sym_fun] = 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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4462), - [anon_sym_super_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), + [sym_class_body] = STATE(1183), + [sym_type_constraints] = STATE(962), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(4410), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, [901] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4464), - [anon_sym_get] = ACTIONS(4343), - [anon_sym_set] = ACTIONS(4345), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(1182), + [sym_type_constraints] = STATE(959), + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4412), + [anon_sym_fun] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_this] = ACTIONS(4412), + [anon_sym_super] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_null] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_try] = ACTIONS(4412), + [anon_sym_throw] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_suspend] = ACTIONS(4412), + [anon_sym_sealed] = ACTIONS(4412), + [anon_sym_annotation] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_override] = ACTIONS(4412), + [anon_sym_lateinit] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_internal] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_tailrec] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_infix] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym_external] = ACTIONS(4412), + [sym_property_modifier] = ACTIONS(4412), + [anon_sym_abstract] = ACTIONS(4412), + [anon_sym_final] = ACTIONS(4412), + [anon_sym_open] = ACTIONS(4412), + [anon_sym_vararg] = ACTIONS(4412), + [anon_sym_noinline] = ACTIONS(4412), + [anon_sym_crossinline] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4414), + [anon_sym_continue_AT] = ACTIONS(4414), + [anon_sym_break_AT] = ACTIONS(4414), + [anon_sym_this_AT] = ACTIONS(4414), + [anon_sym_super_AT] = ACTIONS(4414), + [sym_real_literal] = ACTIONS(4414), + [sym_integer_literal] = ACTIONS(4412), + [sym_hex_literal] = ACTIONS(4414), + [sym_bin_literal] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4412), + [anon_sym_false] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4414), + [sym__backtick_identifier] = ACTIONS(4414), + [sym__automatic_semicolon] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4414), }, [902] = { - [sym_class_body] = STATE(1057), - [sym_type_constraints] = STATE(940), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), + [sym_type_constraints] = STATE(960), + [sym_enum_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, [903] = { - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [sym_function_body] = STATE(1017), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), }, [904] = { - [sym_type_constraints] = STATE(1044), - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [sym__alpha_identifier] = ACTIONS(4136), + [anon_sym_AT] = ACTIONS(4138), + [anon_sym_COLON] = ACTIONS(4140), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym_COMMA] = ACTIONS(4138), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4136), + [anon_sym_GT] = ACTIONS(4136), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_object] = ACTIONS(4136), + [anon_sym_fun] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(4136), + [anon_sym_set] = ACTIONS(4136), + [anon_sym_this] = ACTIONS(4136), + [anon_sym_super] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4138), + [anon_sym_QMARK_COLON] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_PIPE_PIPE] = ACTIONS(4138), + [anon_sym_null] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_when] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4136), + [anon_sym_throw] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4138), + [anon_sym_DASH_EQ] = ACTIONS(4138), + [anon_sym_STAR_EQ] = ACTIONS(4138), + [anon_sym_SLASH_EQ] = ACTIONS(4138), + [anon_sym_PERCENT_EQ] = ACTIONS(4138), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4138), + [anon_sym_GT_EQ] = ACTIONS(4138), + [anon_sym_BANGin] = ACTIONS(4138), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_BANGis] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_SLASH] = ACTIONS(4136), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_BANG_BANG] = ACTIONS(4138), + [anon_sym_suspend] = ACTIONS(4136), + [anon_sym_sealed] = ACTIONS(4136), + [anon_sym_annotation] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4136), + [anon_sym_inner] = ACTIONS(4136), + [anon_sym_value] = ACTIONS(4136), + [anon_sym_override] = ACTIONS(4136), + [anon_sym_lateinit] = ACTIONS(4136), + [anon_sym_public] = ACTIONS(4136), + [anon_sym_private] = ACTIONS(4136), + [anon_sym_internal] = ACTIONS(4136), + [anon_sym_protected] = ACTIONS(4136), + [anon_sym_tailrec] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_infix] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym_external] = ACTIONS(4136), + [sym_property_modifier] = ACTIONS(4136), + [anon_sym_abstract] = ACTIONS(4136), + [anon_sym_final] = ACTIONS(4136), + [anon_sym_open] = ACTIONS(4136), + [anon_sym_vararg] = ACTIONS(4136), + [anon_sym_noinline] = ACTIONS(4136), + [anon_sym_crossinline] = ACTIONS(4136), + [anon_sym_expect] = ACTIONS(4136), + [anon_sym_actual] = ACTIONS(4136), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4138), + [anon_sym_continue_AT] = ACTIONS(4138), + [anon_sym_break_AT] = ACTIONS(4138), + [anon_sym_this_AT] = ACTIONS(4138), + [anon_sym_super_AT] = ACTIONS(4138), + [sym_real_literal] = ACTIONS(4138), + [sym_integer_literal] = ACTIONS(4136), + [sym_hex_literal] = ACTIONS(4138), + [sym_bin_literal] = ACTIONS(4138), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4138), + [sym__backtick_identifier] = ACTIONS(4138), + [sym__automatic_semicolon] = ACTIONS(4138), + [sym_safe_nav] = ACTIONS(4138), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4138), }, [905] = { - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [sym_type_constraints] = STATE(974), + [sym_enum_class_body] = STATE(1097), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(3202), + [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(3194), + [anon_sym_object] = ACTIONS(4420), + [anon_sym_fun] = 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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4422), + [anon_sym_super_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), }, [906] = { - [sym_class_body] = STATE(1167), - [sym_type_constraints] = STATE(973), - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(3210), - [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(3216), - [anon_sym_object] = ACTIONS(4468), - [anon_sym_fun] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_this] = ACTIONS(4468), - [anon_sym_super] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4468), - [anon_sym_if] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [anon_sym_try] = ACTIONS(4468), - [anon_sym_throw] = ACTIONS(4468), - [anon_sym_return] = ACTIONS(4468), - [anon_sym_continue] = ACTIONS(4468), - [anon_sym_break] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_suspend] = ACTIONS(4468), - [anon_sym_sealed] = ACTIONS(4468), - [anon_sym_annotation] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_lateinit] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_tailrec] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_infix] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym_external] = ACTIONS(4468), - [sym_property_modifier] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_final] = ACTIONS(4468), - [anon_sym_open] = ACTIONS(4468), - [anon_sym_vararg] = ACTIONS(4468), - [anon_sym_noinline] = ACTIONS(4468), - [anon_sym_crossinline] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4470), - [anon_sym_continue_AT] = ACTIONS(4470), - [anon_sym_break_AT] = ACTIONS(4470), - [anon_sym_this_AT] = ACTIONS(4470), - [anon_sym_super_AT] = ACTIONS(4470), - [sym_real_literal] = ACTIONS(4470), - [sym_integer_literal] = ACTIONS(4468), - [sym_hex_literal] = ACTIONS(4470), - [sym_bin_literal] = ACTIONS(4470), - [anon_sym_true] = ACTIONS(4468), - [anon_sym_false] = ACTIONS(4468), - [anon_sym_SQUOTE] = ACTIONS(4470), - [sym__backtick_identifier] = ACTIONS(4470), - [sym__automatic_semicolon] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4470), - }, - [907] = { - [sym_type_constraints] = STATE(1030), - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), - }, - [908] = { - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [909] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(4343), - [anon_sym_set] = ACTIONS(4345), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4424), + [anon_sym_get] = ACTIONS(4426), + [anon_sym_set] = ACTIONS(4428), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -151564,312 +151509,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [910] = { - [sym_function_body] = STATE(1101), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), - }, - [911] = { - [aux_sym_user_type_repeat1] = STATE(816), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(4474), - [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_by] = ACTIONS(4162), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4164), - [anon_sym_super_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), - }, - [912] = { - [sym_getter] = STATE(3913), - [sym_setter] = STATE(3913), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(4477), - [anon_sym_get] = ACTIONS(4479), - [anon_sym_set] = ACTIONS(4481), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [907] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4430), + [anon_sym_get] = ACTIONS(4426), + [anon_sym_set] = ACTIONS(4428), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -151888,96 +151617,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [913] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4483), - [anon_sym_get] = ACTIONS(4479), - [anon_sym_set] = ACTIONS(4481), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [908] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(4426), + [anon_sym_set] = ACTIONS(4428), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -151996,96 +151725,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [914] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4485), - [anon_sym_get] = ACTIONS(4479), - [anon_sym_set] = ACTIONS(4481), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [909] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4434), + [anon_sym_get] = ACTIONS(4426), + [anon_sym_set] = ACTIONS(4428), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -152104,204 +151833,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [915] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4487), - [anon_sym_get] = ACTIONS(4479), - [anon_sym_set] = ACTIONS(4481), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [910] = { + [aux_sym_user_type_repeat1] = STATE(812), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(4436), + [anon_sym_as] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_LT] = ACTIONS(4103), + [anon_sym_GT] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_object] = ACTIONS(4103), + [anon_sym_fun] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_this] = ACTIONS(4103), + [anon_sym_super] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4103), + [sym_label] = ACTIONS(4103), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_DOT_DOT] = ACTIONS(4105), + [anon_sym_QMARK_COLON] = ACTIONS(4105), + [anon_sym_AMP_AMP] = ACTIONS(4105), + [anon_sym_PIPE_PIPE] = ACTIONS(4105), + [anon_sym_null] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_when] = ACTIONS(4103), + [anon_sym_try] = ACTIONS(4103), + [anon_sym_throw] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), + [anon_sym_DASH_EQ] = ACTIONS(4105), + [anon_sym_STAR_EQ] = ACTIONS(4105), + [anon_sym_SLASH_EQ] = ACTIONS(4105), + [anon_sym_PERCENT_EQ] = ACTIONS(4105), + [anon_sym_BANG_EQ] = ACTIONS(4103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4105), + [anon_sym_EQ_EQ] = ACTIONS(4103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4105), + [anon_sym_LT_EQ] = ACTIONS(4105), + [anon_sym_GT_EQ] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_SLASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_as_QMARK] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG] = ACTIONS(4103), + [anon_sym_BANG_BANG] = ACTIONS(4105), + [anon_sym_suspend] = ACTIONS(4103), + [anon_sym_sealed] = ACTIONS(4103), + [anon_sym_annotation] = ACTIONS(4103), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4103), + [anon_sym_lateinit] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_internal] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_tailrec] = ACTIONS(4103), + [anon_sym_operator] = ACTIONS(4103), + [anon_sym_infix] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_external] = ACTIONS(4103), + [sym_property_modifier] = ACTIONS(4103), + [anon_sym_abstract] = ACTIONS(4103), + [anon_sym_final] = ACTIONS(4103), + [anon_sym_open] = ACTIONS(4103), + [anon_sym_vararg] = ACTIONS(4103), + [anon_sym_noinline] = ACTIONS(4103), + [anon_sym_crossinline] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4105), + [anon_sym_continue_AT] = ACTIONS(4105), + [anon_sym_break_AT] = ACTIONS(4105), + [anon_sym_this_AT] = ACTIONS(4105), + [anon_sym_super_AT] = ACTIONS(4105), + [sym_real_literal] = ACTIONS(4105), + [sym_integer_literal] = ACTIONS(4103), + [sym_hex_literal] = ACTIONS(4105), + [sym_bin_literal] = ACTIONS(4105), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_SQUOTE] = ACTIONS(4105), + [sym__backtick_identifier] = ACTIONS(4105), + [sym__automatic_semicolon] = ACTIONS(4105), + [sym_safe_nav] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4105), }, - [916] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_get] = ACTIONS(4479), - [anon_sym_set] = ACTIONS(4481), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [911] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_get] = ACTIONS(4426), + [anon_sym_set] = ACTIONS(4428), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -152320,96 +152049,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [917] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4491), - [anon_sym_get] = ACTIONS(4479), - [anon_sym_set] = ACTIONS(4481), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [912] = { + [sym_getter] = STATE(5128), + [sym_setter] = STATE(5128), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(4441), + [anon_sym_get] = ACTIONS(4426), + [anon_sym_set] = ACTIONS(4428), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -152428,462 +152157,570 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [918] = { - [sym_class_body] = STATE(1166), - [sym_type_constraints] = STATE(966), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [913] = { + [sym_function_body] = STATE(1068), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, - [919] = { - [sym_class_body] = STATE(1102), - [sym_type_constraints] = STATE(986), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [914] = { + [sym_class_body] = STATE(1153), + [sym_type_constraints] = STATE(955), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [920] = { - [sym_value_arguments] = STATE(1186), - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(4497), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), + [915] = { + [sym_function_body] = STATE(1166), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), }, - [921] = { - [sym__alpha_identifier] = ACTIONS(4499), - [anon_sym_AT] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4499), - [anon_sym_as] = ACTIONS(4499), - [anon_sym_EQ] = ACTIONS(4499), - [anon_sym_LBRACE] = ACTIONS(4501), - [anon_sym_RBRACE] = ACTIONS(4501), - [anon_sym_LPAREN] = ACTIONS(4501), - [anon_sym_COMMA] = ACTIONS(4501), - [anon_sym_LT] = ACTIONS(4499), - [anon_sym_GT] = ACTIONS(4499), - [anon_sym_where] = ACTIONS(4499), - [anon_sym_object] = ACTIONS(4499), - [anon_sym_fun] = ACTIONS(4499), - [anon_sym_SEMI] = ACTIONS(4501), - [anon_sym_get] = ACTIONS(4499), - [anon_sym_set] = ACTIONS(4499), - [anon_sym_this] = ACTIONS(4499), - [anon_sym_super] = ACTIONS(4499), - [anon_sym_STAR] = ACTIONS(4499), - [sym_label] = ACTIONS(4499), - [anon_sym_in] = ACTIONS(4499), - [anon_sym_DOT_DOT] = ACTIONS(4501), - [anon_sym_QMARK_COLON] = ACTIONS(4501), - [anon_sym_AMP_AMP] = ACTIONS(4501), - [anon_sym_PIPE_PIPE] = ACTIONS(4501), - [anon_sym_null] = ACTIONS(4499), - [anon_sym_if] = ACTIONS(4499), - [anon_sym_else] = ACTIONS(4499), - [anon_sym_when] = ACTIONS(4499), - [anon_sym_try] = ACTIONS(4499), - [anon_sym_throw] = ACTIONS(4499), - [anon_sym_return] = ACTIONS(4499), - [anon_sym_continue] = ACTIONS(4499), - [anon_sym_break] = ACTIONS(4499), - [anon_sym_COLON_COLON] = ACTIONS(4501), - [anon_sym_PLUS_EQ] = ACTIONS(4501), - [anon_sym_DASH_EQ] = ACTIONS(4501), - [anon_sym_STAR_EQ] = ACTIONS(4501), - [anon_sym_SLASH_EQ] = ACTIONS(4501), - [anon_sym_PERCENT_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ] = ACTIONS(4499), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ] = ACTIONS(4499), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4501), - [anon_sym_LT_EQ] = ACTIONS(4501), - [anon_sym_GT_EQ] = ACTIONS(4501), - [anon_sym_BANGin] = ACTIONS(4501), - [anon_sym_is] = ACTIONS(4499), - [anon_sym_BANGis] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(4499), - [anon_sym_DASH] = ACTIONS(4499), - [anon_sym_SLASH] = ACTIONS(4499), - [anon_sym_PERCENT] = ACTIONS(4499), - [anon_sym_as_QMARK] = ACTIONS(4501), - [anon_sym_PLUS_PLUS] = ACTIONS(4501), - [anon_sym_DASH_DASH] = ACTIONS(4501), - [anon_sym_BANG] = ACTIONS(4499), - [anon_sym_BANG_BANG] = ACTIONS(4501), - [anon_sym_suspend] = ACTIONS(4499), - [anon_sym_sealed] = ACTIONS(4499), - [anon_sym_annotation] = ACTIONS(4499), - [anon_sym_data] = ACTIONS(4499), - [anon_sym_inner] = ACTIONS(4499), - [anon_sym_value] = ACTIONS(4499), - [anon_sym_override] = ACTIONS(4499), - [anon_sym_lateinit] = ACTIONS(4499), - [anon_sym_public] = ACTIONS(4499), - [anon_sym_private] = ACTIONS(4499), - [anon_sym_internal] = ACTIONS(4499), - [anon_sym_protected] = ACTIONS(4499), - [anon_sym_tailrec] = ACTIONS(4499), - [anon_sym_operator] = ACTIONS(4499), - [anon_sym_infix] = ACTIONS(4499), - [anon_sym_inline] = ACTIONS(4499), - [anon_sym_external] = ACTIONS(4499), - [sym_property_modifier] = ACTIONS(4499), - [anon_sym_abstract] = ACTIONS(4499), - [anon_sym_final] = ACTIONS(4499), - [anon_sym_open] = ACTIONS(4499), - [anon_sym_vararg] = ACTIONS(4499), - [anon_sym_noinline] = ACTIONS(4499), - [anon_sym_crossinline] = ACTIONS(4499), - [anon_sym_expect] = ACTIONS(4499), - [anon_sym_actual] = ACTIONS(4499), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4501), - [anon_sym_continue_AT] = ACTIONS(4501), - [anon_sym_break_AT] = ACTIONS(4501), - [anon_sym_this_AT] = ACTIONS(4501), - [anon_sym_super_AT] = ACTIONS(4501), - [sym_real_literal] = ACTIONS(4501), - [sym_integer_literal] = ACTIONS(4499), - [sym_hex_literal] = ACTIONS(4501), - [sym_bin_literal] = ACTIONS(4501), - [aux_sym_unsigned_literal_token1] = ACTIONS(4503), - [anon_sym_L] = ACTIONS(4505), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [anon_sym_SQUOTE] = ACTIONS(4501), - [sym__backtick_identifier] = ACTIONS(4501), - [sym__automatic_semicolon] = ACTIONS(4501), - [sym_safe_nav] = ACTIONS(4501), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4501), + [916] = { + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, - [922] = { - [sym_type_constraints] = STATE(1035), - [sym_function_body] = STATE(1103), - [sym__block] = STATE(1092), + [917] = { + [sym_class_body] = STATE(1183), + [sym_type_constraints] = STATE(962), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [918] = { + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1109), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(4260), [anon_sym_object] = ACTIONS(4260), [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), @@ -152976,3972 +152813,6757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, + [919] = { + [sym_class_body] = STATE(1118), + [sym_type_constraints] = STATE(930), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [920] = { + [sym_type_constraints] = STATE(972), + [sym_enum_class_body] = STATE(1130), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [921] = { + [sym_class_body] = STATE(1134), + [sym_type_constraints] = STATE(971), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [922] = { + [sym_function_body] = STATE(1015), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, [923] = { - [sym_type_constraints] = STATE(963), - [sym_enum_class_body] = STATE(1166), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym_class_body] = STATE(1167), + [sym_type_constraints] = STATE(965), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), }, [924] = { - [sym_class_body] = STATE(1133), - [sym_type_constraints] = STATE(961), - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4507), - [anon_sym_fun] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_this] = ACTIONS(4507), - [anon_sym_super] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [sym_label] = ACTIONS(4507), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_null] = ACTIONS(4507), - [anon_sym_if] = ACTIONS(4507), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_when] = ACTIONS(4507), - [anon_sym_try] = ACTIONS(4507), - [anon_sym_throw] = ACTIONS(4507), - [anon_sym_return] = ACTIONS(4507), - [anon_sym_continue] = ACTIONS(4507), - [anon_sym_break] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_suspend] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_annotation] = ACTIONS(4507), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_lateinit] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_tailrec] = ACTIONS(4507), - [anon_sym_operator] = ACTIONS(4507), - [anon_sym_infix] = ACTIONS(4507), - [anon_sym_inline] = ACTIONS(4507), - [anon_sym_external] = ACTIONS(4507), - [sym_property_modifier] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_final] = ACTIONS(4507), - [anon_sym_open] = ACTIONS(4507), - [anon_sym_vararg] = ACTIONS(4507), - [anon_sym_noinline] = ACTIONS(4507), - [anon_sym_crossinline] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4509), - [anon_sym_continue_AT] = ACTIONS(4509), - [anon_sym_break_AT] = ACTIONS(4509), - [anon_sym_this_AT] = ACTIONS(4509), - [anon_sym_super_AT] = ACTIONS(4509), - [sym_real_literal] = ACTIONS(4509), - [sym_integer_literal] = ACTIONS(4507), - [sym_hex_literal] = ACTIONS(4509), - [sym_bin_literal] = ACTIONS(4509), - [anon_sym_true] = ACTIONS(4507), - [anon_sym_false] = ACTIONS(4507), - [anon_sym_SQUOTE] = ACTIONS(4509), - [sym__backtick_identifier] = ACTIONS(4509), - [sym__automatic_semicolon] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4509), + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), }, [925] = { - [sym__alpha_identifier] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4183), - [anon_sym_COLON] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_RBRACE] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_COMMA] = ACTIONS(4183), - [anon_sym_by] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_where] = ACTIONS(4181), - [anon_sym_object] = ACTIONS(4181), - [anon_sym_fun] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_get] = ACTIONS(4181), - [anon_sym_set] = ACTIONS(4181), - [anon_sym_this] = ACTIONS(4181), - [anon_sym_super] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_DOT_DOT] = ACTIONS(4183), - [anon_sym_QMARK_COLON] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [anon_sym_null] = ACTIONS(4181), - [anon_sym_if] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4181), - [anon_sym_when] = ACTIONS(4181), - [anon_sym_try] = ACTIONS(4181), - [anon_sym_throw] = ACTIONS(4181), - [anon_sym_return] = ACTIONS(4181), - [anon_sym_continue] = ACTIONS(4181), - [anon_sym_break] = ACTIONS(4181), - [anon_sym_COLON_COLON] = ACTIONS(4183), - [anon_sym_PLUS_EQ] = ACTIONS(4183), - [anon_sym_DASH_EQ] = ACTIONS(4183), - [anon_sym_STAR_EQ] = ACTIONS(4183), - [anon_sym_SLASH_EQ] = ACTIONS(4183), - [anon_sym_PERCENT_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4183), - [anon_sym_LT_EQ] = ACTIONS(4183), - [anon_sym_GT_EQ] = ACTIONS(4183), - [anon_sym_BANGin] = ACTIONS(4183), - [anon_sym_is] = ACTIONS(4181), - [anon_sym_BANGis] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4183), - [anon_sym_PLUS_PLUS] = ACTIONS(4183), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_BANG_BANG] = ACTIONS(4183), - [anon_sym_suspend] = ACTIONS(4181), - [anon_sym_sealed] = ACTIONS(4181), - [anon_sym_annotation] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4181), - [anon_sym_inner] = ACTIONS(4181), - [anon_sym_value] = ACTIONS(4181), - [anon_sym_override] = ACTIONS(4181), - [anon_sym_lateinit] = ACTIONS(4181), - [anon_sym_public] = ACTIONS(4181), - [anon_sym_private] = ACTIONS(4181), - [anon_sym_internal] = ACTIONS(4181), - [anon_sym_protected] = ACTIONS(4181), - [anon_sym_tailrec] = ACTIONS(4181), - [anon_sym_operator] = ACTIONS(4181), - [anon_sym_infix] = ACTIONS(4181), - [anon_sym_inline] = ACTIONS(4181), - [anon_sym_external] = ACTIONS(4181), - [sym_property_modifier] = ACTIONS(4181), - [anon_sym_abstract] = ACTIONS(4181), - [anon_sym_final] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4181), - [anon_sym_vararg] = ACTIONS(4181), - [anon_sym_noinline] = ACTIONS(4181), - [anon_sym_crossinline] = ACTIONS(4181), - [anon_sym_expect] = ACTIONS(4181), - [anon_sym_actual] = ACTIONS(4181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4183), - [anon_sym_continue_AT] = ACTIONS(4183), - [anon_sym_break_AT] = ACTIONS(4183), - [anon_sym_this_AT] = ACTIONS(4183), - [anon_sym_super_AT] = ACTIONS(4183), - [sym_real_literal] = ACTIONS(4183), - [sym_integer_literal] = ACTIONS(4181), - [sym_hex_literal] = ACTIONS(4183), - [sym_bin_literal] = ACTIONS(4183), - [anon_sym_true] = ACTIONS(4181), - [anon_sym_false] = ACTIONS(4181), - [anon_sym_SQUOTE] = ACTIONS(4183), - [sym__backtick_identifier] = ACTIONS(4183), - [sym__automatic_semicolon] = ACTIONS(4183), - [sym_safe_nav] = ACTIONS(4183), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4183), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4083), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, [926] = { - [sym_class_body] = STATE(1050), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), }, [927] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym__backtick_identifier] = ACTIONS(3143), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), + [sym__alpha_identifier] = ACTIONS(4495), + [anon_sym_AT] = ACTIONS(4497), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4497), + [anon_sym_RBRACE] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4497), + [anon_sym_COMMA] = ACTIONS(4497), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_where] = ACTIONS(4495), + [anon_sym_object] = ACTIONS(4495), + [anon_sym_fun] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4497), + [anon_sym_get] = ACTIONS(4495), + [anon_sym_set] = ACTIONS(4495), + [anon_sym_this] = ACTIONS(4495), + [anon_sym_super] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4495), + [anon_sym_DOT_DOT] = ACTIONS(4497), + [anon_sym_QMARK_COLON] = ACTIONS(4497), + [anon_sym_AMP_AMP] = ACTIONS(4497), + [anon_sym_PIPE_PIPE] = ACTIONS(4497), + [anon_sym_null] = ACTIONS(4495), + [anon_sym_if] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4495), + [anon_sym_when] = ACTIONS(4495), + [anon_sym_try] = ACTIONS(4495), + [anon_sym_throw] = ACTIONS(4495), + [anon_sym_return] = ACTIONS(4495), + [anon_sym_continue] = ACTIONS(4495), + [anon_sym_break] = ACTIONS(4495), + [anon_sym_COLON_COLON] = ACTIONS(4497), + [anon_sym_PLUS_EQ] = ACTIONS(4497), + [anon_sym_DASH_EQ] = ACTIONS(4497), + [anon_sym_STAR_EQ] = ACTIONS(4497), + [anon_sym_SLASH_EQ] = ACTIONS(4497), + [anon_sym_PERCENT_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), + [anon_sym_LT_EQ] = ACTIONS(4497), + [anon_sym_GT_EQ] = ACTIONS(4497), + [anon_sym_BANGin] = ACTIONS(4497), + [anon_sym_is] = ACTIONS(4495), + [anon_sym_BANGis] = ACTIONS(4497), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_as_QMARK] = ACTIONS(4497), + [anon_sym_PLUS_PLUS] = ACTIONS(4497), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4497), + [anon_sym_suspend] = ACTIONS(4495), + [anon_sym_sealed] = ACTIONS(4495), + [anon_sym_annotation] = ACTIONS(4495), + [anon_sym_data] = ACTIONS(4495), + [anon_sym_inner] = ACTIONS(4495), + [anon_sym_value] = ACTIONS(4495), + [anon_sym_override] = ACTIONS(4495), + [anon_sym_lateinit] = ACTIONS(4495), + [anon_sym_public] = ACTIONS(4495), + [anon_sym_private] = ACTIONS(4495), + [anon_sym_internal] = ACTIONS(4495), + [anon_sym_protected] = ACTIONS(4495), + [anon_sym_tailrec] = ACTIONS(4495), + [anon_sym_operator] = ACTIONS(4495), + [anon_sym_infix] = ACTIONS(4495), + [anon_sym_inline] = ACTIONS(4495), + [anon_sym_external] = ACTIONS(4495), + [sym_property_modifier] = ACTIONS(4495), + [anon_sym_abstract] = ACTIONS(4495), + [anon_sym_final] = ACTIONS(4495), + [anon_sym_open] = ACTIONS(4495), + [anon_sym_vararg] = ACTIONS(4495), + [anon_sym_noinline] = ACTIONS(4495), + [anon_sym_crossinline] = ACTIONS(4495), + [anon_sym_expect] = ACTIONS(4495), + [anon_sym_actual] = ACTIONS(4495), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4497), + [anon_sym_continue_AT] = ACTIONS(4497), + [anon_sym_break_AT] = ACTIONS(4497), + [anon_sym_this_AT] = ACTIONS(4497), + [anon_sym_super_AT] = ACTIONS(4497), + [sym_real_literal] = ACTIONS(4497), + [sym_integer_literal] = ACTIONS(4495), + [sym_hex_literal] = ACTIONS(4497), + [sym_bin_literal] = ACTIONS(4497), + [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), }, [928] = { - [sym__alpha_identifier] = ACTIONS(4529), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_as] = ACTIONS(4529), - [anon_sym_EQ] = ACTIONS(4529), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_by] = ACTIONS(4529), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4529), - [anon_sym_where] = ACTIONS(4529), - [anon_sym_object] = ACTIONS(4529), - [anon_sym_fun] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4532), - [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(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [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(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4529), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4529), - [anon_sym_BANGis] = ACTIONS(4532), - [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(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4529), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4529), - [anon_sym_sealed] = ACTIONS(4529), - [anon_sym_annotation] = ACTIONS(4529), - [anon_sym_data] = ACTIONS(4529), - [anon_sym_inner] = ACTIONS(4529), - [anon_sym_value] = ACTIONS(4529), - [anon_sym_override] = ACTIONS(4529), - [anon_sym_lateinit] = ACTIONS(4529), - [anon_sym_public] = ACTIONS(4529), - [anon_sym_private] = ACTIONS(4529), - [anon_sym_internal] = ACTIONS(4529), - [anon_sym_protected] = ACTIONS(4529), - [anon_sym_tailrec] = ACTIONS(4529), - [anon_sym_operator] = ACTIONS(4529), - [anon_sym_infix] = ACTIONS(4529), - [anon_sym_inline] = ACTIONS(4529), - [anon_sym_external] = ACTIONS(4529), - [sym_property_modifier] = ACTIONS(4529), - [anon_sym_abstract] = ACTIONS(4529), - [anon_sym_final] = ACTIONS(4529), - [anon_sym_open] = ACTIONS(4529), - [anon_sym_vararg] = ACTIONS(4529), - [anon_sym_noinline] = ACTIONS(4529), - [anon_sym_crossinline] = ACTIONS(4529), - [anon_sym_expect] = ACTIONS(4529), - [anon_sym_actual] = ACTIONS(4529), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4529), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4529), - [anon_sym_false] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), - }, - [929] = { - [sym__alpha_identifier] = ACTIONS(4535), - [anon_sym_AT] = ACTIONS(4537), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4535), - [anon_sym_as] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(4535), - [anon_sym_LBRACE] = ACTIONS(4537), - [anon_sym_RBRACE] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(4537), - [anon_sym_COMMA] = ACTIONS(4537), - [anon_sym_LT] = ACTIONS(4535), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_where] = ACTIONS(4535), - [anon_sym_object] = ACTIONS(4535), - [anon_sym_fun] = ACTIONS(4535), - [anon_sym_SEMI] = ACTIONS(4537), - [anon_sym_get] = ACTIONS(4535), - [anon_sym_set] = ACTIONS(4535), - [anon_sym_this] = ACTIONS(4535), - [anon_sym_super] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [sym_label] = ACTIONS(4535), - [anon_sym_in] = ACTIONS(4535), - [anon_sym_DOT_DOT] = ACTIONS(4537), - [anon_sym_QMARK_COLON] = ACTIONS(4537), - [anon_sym_AMP_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4537), - [anon_sym_null] = ACTIONS(4535), - [anon_sym_if] = ACTIONS(4535), - [anon_sym_else] = ACTIONS(4535), - [anon_sym_when] = ACTIONS(4535), - [anon_sym_try] = ACTIONS(4535), - [anon_sym_throw] = ACTIONS(4535), - [anon_sym_return] = ACTIONS(4535), - [anon_sym_continue] = ACTIONS(4535), - [anon_sym_break] = ACTIONS(4535), - [anon_sym_COLON_COLON] = ACTIONS(4537), - [anon_sym_PLUS_EQ] = ACTIONS(4537), - [anon_sym_DASH_EQ] = ACTIONS(4537), - [anon_sym_STAR_EQ] = ACTIONS(4537), - [anon_sym_SLASH_EQ] = ACTIONS(4537), - [anon_sym_PERCENT_EQ] = ACTIONS(4537), - [anon_sym_BANG_EQ] = ACTIONS(4535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4537), - [anon_sym_EQ_EQ] = ACTIONS(4535), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4537), - [anon_sym_LT_EQ] = ACTIONS(4537), - [anon_sym_GT_EQ] = ACTIONS(4537), - [anon_sym_BANGin] = ACTIONS(4537), - [anon_sym_is] = ACTIONS(4535), - [anon_sym_BANGis] = ACTIONS(4537), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_PERCENT] = ACTIONS(4535), - [anon_sym_as_QMARK] = ACTIONS(4537), - [anon_sym_PLUS_PLUS] = ACTIONS(4537), - [anon_sym_DASH_DASH] = ACTIONS(4537), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_BANG_BANG] = ACTIONS(4537), - [anon_sym_suspend] = ACTIONS(4535), - [anon_sym_sealed] = ACTIONS(4535), - [anon_sym_annotation] = ACTIONS(4535), - [anon_sym_data] = ACTIONS(4535), - [anon_sym_inner] = ACTIONS(4535), - [anon_sym_value] = ACTIONS(4535), - [anon_sym_override] = ACTIONS(4535), - [anon_sym_lateinit] = ACTIONS(4535), - [anon_sym_public] = ACTIONS(4535), - [anon_sym_private] = ACTIONS(4535), - [anon_sym_internal] = ACTIONS(4535), - [anon_sym_protected] = ACTIONS(4535), - [anon_sym_tailrec] = ACTIONS(4535), - [anon_sym_operator] = ACTIONS(4535), - [anon_sym_infix] = ACTIONS(4535), - [anon_sym_inline] = ACTIONS(4535), - [anon_sym_external] = ACTIONS(4535), - [sym_property_modifier] = ACTIONS(4535), - [anon_sym_abstract] = ACTIONS(4535), - [anon_sym_final] = ACTIONS(4535), - [anon_sym_open] = ACTIONS(4535), - [anon_sym_vararg] = ACTIONS(4535), - [anon_sym_noinline] = ACTIONS(4535), - [anon_sym_crossinline] = ACTIONS(4535), - [anon_sym_expect] = ACTIONS(4535), - [anon_sym_actual] = ACTIONS(4535), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4537), - [anon_sym_continue_AT] = ACTIONS(4537), - [anon_sym_break_AT] = ACTIONS(4537), - [anon_sym_this_AT] = ACTIONS(4537), - [anon_sym_super_AT] = ACTIONS(4537), - [sym_real_literal] = ACTIONS(4537), - [sym_integer_literal] = ACTIONS(4535), - [sym_hex_literal] = ACTIONS(4537), - [sym_bin_literal] = ACTIONS(4537), - [anon_sym_true] = ACTIONS(4535), - [anon_sym_false] = ACTIONS(4535), - [anon_sym_SQUOTE] = ACTIONS(4537), - [sym__backtick_identifier] = ACTIONS(4537), - [sym__automatic_semicolon] = ACTIONS(4537), - [sym_safe_nav] = ACTIONS(4537), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4537), - }, - [930] = { - [sym_class_body] = STATE(1102), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, + [sym__alpha_identifier] = ACTIONS(4499), + [anon_sym_AT] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4501), + [anon_sym_RBRACE] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4501), + [anon_sym_COMMA] = ACTIONS(4501), + [anon_sym_LT] = ACTIONS(4499), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_where] = ACTIONS(4499), + [anon_sym_object] = ACTIONS(4499), + [anon_sym_fun] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_get] = ACTIONS(4499), + [anon_sym_set] = ACTIONS(4499), + [anon_sym_this] = ACTIONS(4499), + [anon_sym_super] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4499), + [anon_sym_DOT_DOT] = ACTIONS(4501), + [anon_sym_QMARK_COLON] = ACTIONS(4501), + [anon_sym_AMP_AMP] = ACTIONS(4501), + [anon_sym_PIPE_PIPE] = ACTIONS(4501), + [anon_sym_null] = ACTIONS(4499), + [anon_sym_if] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4499), + [anon_sym_when] = ACTIONS(4499), + [anon_sym_try] = ACTIONS(4499), + [anon_sym_throw] = ACTIONS(4499), + [anon_sym_return] = ACTIONS(4499), + [anon_sym_continue] = ACTIONS(4499), + [anon_sym_break] = ACTIONS(4499), + [anon_sym_COLON_COLON] = ACTIONS(4501), + [anon_sym_PLUS_EQ] = ACTIONS(4501), + [anon_sym_DASH_EQ] = ACTIONS(4501), + [anon_sym_STAR_EQ] = ACTIONS(4501), + [anon_sym_SLASH_EQ] = ACTIONS(4501), + [anon_sym_PERCENT_EQ] = ACTIONS(4501), + [anon_sym_BANG_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4501), + [anon_sym_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4501), + [anon_sym_LT_EQ] = ACTIONS(4501), + [anon_sym_GT_EQ] = ACTIONS(4501), + [anon_sym_BANGin] = ACTIONS(4501), + [anon_sym_is] = ACTIONS(4499), + [anon_sym_BANGis] = ACTIONS(4501), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4499), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_suspend] = ACTIONS(4499), + [anon_sym_sealed] = ACTIONS(4499), + [anon_sym_annotation] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4499), + [anon_sym_inner] = ACTIONS(4499), + [anon_sym_value] = ACTIONS(4499), + [anon_sym_override] = ACTIONS(4499), + [anon_sym_lateinit] = ACTIONS(4499), + [anon_sym_public] = ACTIONS(4499), + [anon_sym_private] = ACTIONS(4499), + [anon_sym_internal] = ACTIONS(4499), + [anon_sym_protected] = ACTIONS(4499), + [anon_sym_tailrec] = ACTIONS(4499), + [anon_sym_operator] = ACTIONS(4499), + [anon_sym_infix] = ACTIONS(4499), + [anon_sym_inline] = ACTIONS(4499), + [anon_sym_external] = ACTIONS(4499), + [sym_property_modifier] = ACTIONS(4499), + [anon_sym_abstract] = ACTIONS(4499), + [anon_sym_final] = ACTIONS(4499), + [anon_sym_open] = ACTIONS(4499), + [anon_sym_vararg] = ACTIONS(4499), + [anon_sym_noinline] = ACTIONS(4499), + [anon_sym_crossinline] = ACTIONS(4499), + [anon_sym_expect] = ACTIONS(4499), + [anon_sym_actual] = ACTIONS(4499), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4501), + [anon_sym_continue_AT] = ACTIONS(4501), + [anon_sym_break_AT] = ACTIONS(4501), + [anon_sym_this_AT] = ACTIONS(4501), + [anon_sym_super_AT] = ACTIONS(4501), + [sym_real_literal] = ACTIONS(4501), + [sym_integer_literal] = ACTIONS(4499), + [sym_hex_literal] = ACTIONS(4501), + [sym_bin_literal] = ACTIONS(4501), + [anon_sym_true] = ACTIONS(4499), + [anon_sym_false] = ACTIONS(4499), + [anon_sym_SQUOTE] = ACTIONS(4501), + [sym__backtick_identifier] = ACTIONS(4501), + [sym__automatic_semicolon] = ACTIONS(4501), + [sym_safe_nav] = ACTIONS(4501), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4501), + }, + [929] = { + [sym__alpha_identifier] = ACTIONS(4503), + [anon_sym_AT] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4503), + [anon_sym_as] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_COMMA] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(4503), + [anon_sym_object] = ACTIONS(4503), + [anon_sym_fun] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_get] = ACTIONS(4503), + [anon_sym_set] = ACTIONS(4503), + [anon_sym_this] = ACTIONS(4503), + [anon_sym_super] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4503), + [sym_label] = ACTIONS(4503), + [anon_sym_in] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_QMARK_COLON] = ACTIONS(4505), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4505), + [anon_sym_null] = ACTIONS(4503), + [anon_sym_if] = ACTIONS(4503), + [anon_sym_else] = ACTIONS(4503), + [anon_sym_when] = ACTIONS(4503), + [anon_sym_try] = ACTIONS(4503), + [anon_sym_throw] = ACTIONS(4503), + [anon_sym_return] = ACTIONS(4503), + [anon_sym_continue] = ACTIONS(4503), + [anon_sym_break] = ACTIONS(4503), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_PLUS_EQ] = ACTIONS(4505), + [anon_sym_DASH_EQ] = ACTIONS(4505), + [anon_sym_STAR_EQ] = ACTIONS(4505), + [anon_sym_SLASH_EQ] = ACTIONS(4505), + [anon_sym_PERCENT_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ] = ACTIONS(4503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4505), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4505), + [anon_sym_BANGin] = ACTIONS(4505), + [anon_sym_is] = ACTIONS(4503), + [anon_sym_BANGis] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4503), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_as_QMARK] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_BANG_BANG] = ACTIONS(4505), + [anon_sym_suspend] = ACTIONS(4503), + [anon_sym_sealed] = ACTIONS(4503), + [anon_sym_annotation] = ACTIONS(4503), + [anon_sym_data] = ACTIONS(4503), + [anon_sym_inner] = ACTIONS(4503), + [anon_sym_value] = ACTIONS(4503), + [anon_sym_override] = ACTIONS(4503), + [anon_sym_lateinit] = ACTIONS(4503), + [anon_sym_public] = ACTIONS(4503), + [anon_sym_private] = ACTIONS(4503), + [anon_sym_internal] = ACTIONS(4503), + [anon_sym_protected] = ACTIONS(4503), + [anon_sym_tailrec] = ACTIONS(4503), + [anon_sym_operator] = ACTIONS(4503), + [anon_sym_infix] = ACTIONS(4503), + [anon_sym_inline] = ACTIONS(4503), + [anon_sym_external] = ACTIONS(4503), + [sym_property_modifier] = ACTIONS(4503), + [anon_sym_abstract] = ACTIONS(4503), + [anon_sym_final] = ACTIONS(4503), + [anon_sym_open] = ACTIONS(4503), + [anon_sym_vararg] = ACTIONS(4503), + [anon_sym_noinline] = ACTIONS(4503), + [anon_sym_crossinline] = ACTIONS(4503), + [anon_sym_expect] = ACTIONS(4503), + [anon_sym_actual] = ACTIONS(4503), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4505), + [anon_sym_continue_AT] = ACTIONS(4505), + [anon_sym_break_AT] = ACTIONS(4505), + [anon_sym_this_AT] = ACTIONS(4505), + [anon_sym_super_AT] = ACTIONS(4505), + [sym_real_literal] = ACTIONS(4505), + [sym_integer_literal] = ACTIONS(4503), + [sym_hex_literal] = ACTIONS(4505), + [sym_bin_literal] = ACTIONS(4505), + [anon_sym_true] = ACTIONS(4503), + [anon_sym_false] = ACTIONS(4503), + [anon_sym_SQUOTE] = ACTIONS(4505), + [sym__backtick_identifier] = ACTIONS(4505), + [sym__automatic_semicolon] = ACTIONS(4505), + [sym_safe_nav] = ACTIONS(4505), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4505), + }, + [930] = { + [sym_class_body] = STATE(1150), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), + }, [931] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(956), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4543), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_object] = ACTIONS(4539), - [anon_sym_fun] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_this] = ACTIONS(4539), - [anon_sym_super] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4539), - [sym_label] = ACTIONS(4539), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_null] = ACTIONS(4539), - [anon_sym_if] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_when] = ACTIONS(4539), - [anon_sym_try] = ACTIONS(4539), - [anon_sym_throw] = ACTIONS(4539), - [anon_sym_return] = ACTIONS(4539), - [anon_sym_continue] = ACTIONS(4539), - [anon_sym_break] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_PLUS_EQ] = ACTIONS(4541), - [anon_sym_DASH_EQ] = ACTIONS(4541), - [anon_sym_STAR_EQ] = ACTIONS(4541), - [anon_sym_SLASH_EQ] = ACTIONS(4541), - [anon_sym_PERCENT_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4541), - [anon_sym_continue_AT] = ACTIONS(4541), - [anon_sym_break_AT] = ACTIONS(4541), - [anon_sym_this_AT] = ACTIONS(4541), - [anon_sym_super_AT] = ACTIONS(4541), - [sym_real_literal] = ACTIONS(4541), - [sym_integer_literal] = ACTIONS(4539), - [sym_hex_literal] = ACTIONS(4541), - [sym_bin_literal] = ACTIONS(4541), - [anon_sym_true] = ACTIONS(4539), - [anon_sym_false] = ACTIONS(4539), - [anon_sym_SQUOTE] = ACTIONS(4541), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4541), + [sym_function_body] = STATE(1020), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_PLUS_EQ] = ACTIONS(4240), + [anon_sym_DASH_EQ] = ACTIONS(4240), + [anon_sym_STAR_EQ] = ACTIONS(4240), + [anon_sym_SLASH_EQ] = ACTIONS(4240), + [anon_sym_PERCENT_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4240), + [anon_sym_continue_AT] = ACTIONS(4240), + [anon_sym_break_AT] = ACTIONS(4240), + [anon_sym_this_AT] = ACTIONS(4240), + [anon_sym_super_AT] = ACTIONS(4240), + [sym_real_literal] = ACTIONS(4240), + [sym_integer_literal] = ACTIONS(4238), + [sym_hex_literal] = ACTIONS(4240), + [sym_bin_literal] = ACTIONS(4240), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4240), }, [932] = { - [sym__alpha_identifier] = ACTIONS(4545), - [anon_sym_AT] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_DOT] = ACTIONS(4545), - [anon_sym_as] = ACTIONS(4545), - [anon_sym_EQ] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4547), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym_COMMA] = ACTIONS(4547), - [anon_sym_by] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4545), - [anon_sym_where] = ACTIONS(4545), - [anon_sym_object] = ACTIONS(4545), - [anon_sym_fun] = ACTIONS(4545), - [anon_sym_SEMI] = ACTIONS(4547), - [anon_sym_get] = ACTIONS(4545), - [anon_sym_set] = ACTIONS(4545), - [anon_sym_this] = ACTIONS(4545), - [anon_sym_super] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4545), - [sym_label] = ACTIONS(4545), - [anon_sym_in] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(4547), - [anon_sym_QMARK_COLON] = ACTIONS(4547), - [anon_sym_AMP_AMP] = ACTIONS(4547), - [anon_sym_PIPE_PIPE] = ACTIONS(4547), - [anon_sym_null] = ACTIONS(4545), - [anon_sym_if] = ACTIONS(4545), - [anon_sym_else] = ACTIONS(4545), - [anon_sym_when] = ACTIONS(4545), - [anon_sym_try] = ACTIONS(4545), - [anon_sym_throw] = ACTIONS(4545), - [anon_sym_return] = ACTIONS(4545), - [anon_sym_continue] = ACTIONS(4545), - [anon_sym_break] = ACTIONS(4545), - [anon_sym_COLON_COLON] = ACTIONS(4547), - [anon_sym_PLUS_EQ] = ACTIONS(4547), - [anon_sym_DASH_EQ] = ACTIONS(4547), - [anon_sym_STAR_EQ] = ACTIONS(4547), - [anon_sym_SLASH_EQ] = ACTIONS(4547), - [anon_sym_PERCENT_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4547), - [anon_sym_EQ_EQ] = ACTIONS(4545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4547), - [anon_sym_LT_EQ] = ACTIONS(4547), - [anon_sym_GT_EQ] = ACTIONS(4547), - [anon_sym_BANGin] = ACTIONS(4547), - [anon_sym_is] = ACTIONS(4545), - [anon_sym_BANGis] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4545), - [anon_sym_PERCENT] = ACTIONS(4545), - [anon_sym_as_QMARK] = ACTIONS(4547), - [anon_sym_PLUS_PLUS] = ACTIONS(4547), - [anon_sym_DASH_DASH] = ACTIONS(4547), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_BANG_BANG] = ACTIONS(4547), - [anon_sym_suspend] = ACTIONS(4545), - [anon_sym_sealed] = ACTIONS(4545), - [anon_sym_annotation] = ACTIONS(4545), - [anon_sym_data] = ACTIONS(4545), - [anon_sym_inner] = ACTIONS(4545), - [anon_sym_value] = ACTIONS(4545), - [anon_sym_override] = ACTIONS(4545), - [anon_sym_lateinit] = ACTIONS(4545), - [anon_sym_public] = ACTIONS(4545), - [anon_sym_private] = ACTIONS(4545), - [anon_sym_internal] = ACTIONS(4545), - [anon_sym_protected] = ACTIONS(4545), - [anon_sym_tailrec] = ACTIONS(4545), - [anon_sym_operator] = ACTIONS(4545), - [anon_sym_infix] = ACTIONS(4545), - [anon_sym_inline] = ACTIONS(4545), - [anon_sym_external] = ACTIONS(4545), - [sym_property_modifier] = ACTIONS(4545), - [anon_sym_abstract] = ACTIONS(4545), - [anon_sym_final] = ACTIONS(4545), - [anon_sym_open] = ACTIONS(4545), - [anon_sym_vararg] = ACTIONS(4545), - [anon_sym_noinline] = ACTIONS(4545), - [anon_sym_crossinline] = ACTIONS(4545), - [anon_sym_expect] = ACTIONS(4545), - [anon_sym_actual] = ACTIONS(4545), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4547), - [anon_sym_continue_AT] = ACTIONS(4547), - [anon_sym_break_AT] = ACTIONS(4547), - [anon_sym_this_AT] = ACTIONS(4547), - [anon_sym_super_AT] = ACTIONS(4547), - [sym_real_literal] = ACTIONS(4547), - [sym_integer_literal] = ACTIONS(4545), - [sym_hex_literal] = ACTIONS(4547), - [sym_bin_literal] = ACTIONS(4547), - [anon_sym_true] = ACTIONS(4545), - [anon_sym_false] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4547), - [sym__backtick_identifier] = ACTIONS(4547), - [sym__automatic_semicolon] = ACTIONS(4547), - [sym_safe_nav] = ACTIONS(4547), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4547), + [sym__alpha_identifier] = ACTIONS(4509), + [anon_sym_AT] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(4509), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4511), + [anon_sym_super_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), }, [933] = { - [sym__alpha_identifier] = ACTIONS(4549), - [anon_sym_AT] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(4549), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_by] = ACTIONS(4549), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_where] = ACTIONS(4549), - [anon_sym_object] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4549), - [anon_sym_set] = ACTIONS(4549), - [anon_sym_this] = ACTIONS(4549), - [anon_sym_super] = ACTIONS(4549), - [anon_sym_STAR] = ACTIONS(4549), - [sym_label] = ACTIONS(4549), - [anon_sym_in] = ACTIONS(4549), - [anon_sym_DOT_DOT] = ACTIONS(4551), - [anon_sym_QMARK_COLON] = ACTIONS(4551), - [anon_sym_AMP_AMP] = ACTIONS(4551), - [anon_sym_PIPE_PIPE] = ACTIONS(4551), - [anon_sym_null] = ACTIONS(4549), - [anon_sym_if] = ACTIONS(4549), - [anon_sym_else] = ACTIONS(4549), - [anon_sym_when] = ACTIONS(4549), - [anon_sym_try] = ACTIONS(4549), - [anon_sym_throw] = ACTIONS(4549), - [anon_sym_return] = ACTIONS(4549), - [anon_sym_continue] = ACTIONS(4549), - [anon_sym_break] = ACTIONS(4549), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym_PLUS_EQ] = ACTIONS(4551), - [anon_sym_DASH_EQ] = ACTIONS(4551), - [anon_sym_STAR_EQ] = ACTIONS(4551), - [anon_sym_SLASH_EQ] = ACTIONS(4551), - [anon_sym_PERCENT_EQ] = ACTIONS(4551), - [anon_sym_BANG_EQ] = ACTIONS(4549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), - [anon_sym_EQ_EQ] = ACTIONS(4549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_BANGin] = ACTIONS(4551), - [anon_sym_is] = ACTIONS(4549), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_SLASH] = ACTIONS(4549), - [anon_sym_PERCENT] = ACTIONS(4549), - [anon_sym_as_QMARK] = ACTIONS(4551), - [anon_sym_PLUS_PLUS] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4549), - [anon_sym_BANG_BANG] = ACTIONS(4551), - [anon_sym_suspend] = ACTIONS(4549), - [anon_sym_sealed] = ACTIONS(4549), - [anon_sym_annotation] = ACTIONS(4549), - [anon_sym_data] = ACTIONS(4549), - [anon_sym_inner] = ACTIONS(4549), - [anon_sym_value] = ACTIONS(4549), - [anon_sym_override] = ACTIONS(4549), - [anon_sym_lateinit] = ACTIONS(4549), - [anon_sym_public] = ACTIONS(4549), - [anon_sym_private] = ACTIONS(4549), - [anon_sym_internal] = ACTIONS(4549), - [anon_sym_protected] = ACTIONS(4549), - [anon_sym_tailrec] = ACTIONS(4549), - [anon_sym_operator] = ACTIONS(4549), - [anon_sym_infix] = ACTIONS(4549), - [anon_sym_inline] = ACTIONS(4549), - [anon_sym_external] = ACTIONS(4549), - [sym_property_modifier] = ACTIONS(4549), - [anon_sym_abstract] = ACTIONS(4549), - [anon_sym_final] = ACTIONS(4549), - [anon_sym_open] = ACTIONS(4549), - [anon_sym_vararg] = ACTIONS(4549), - [anon_sym_noinline] = ACTIONS(4549), - [anon_sym_crossinline] = ACTIONS(4549), - [anon_sym_expect] = ACTIONS(4549), - [anon_sym_actual] = ACTIONS(4549), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4551), - [anon_sym_continue_AT] = ACTIONS(4551), - [anon_sym_break_AT] = ACTIONS(4551), - [anon_sym_this_AT] = ACTIONS(4551), - [anon_sym_super_AT] = ACTIONS(4551), - [sym_real_literal] = ACTIONS(4551), - [sym_integer_literal] = ACTIONS(4549), - [sym_hex_literal] = ACTIONS(4551), - [sym_bin_literal] = ACTIONS(4551), - [anon_sym_true] = ACTIONS(4549), - [anon_sym_false] = ACTIONS(4549), - [anon_sym_SQUOTE] = ACTIONS(4551), - [sym__backtick_identifier] = ACTIONS(4551), - [sym__automatic_semicolon] = ACTIONS(4551), - [sym_safe_nav] = ACTIONS(4551), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4551), + [sym_class_body] = STATE(1118), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, [934] = { - [sym__alpha_identifier] = ACTIONS(4553), - [anon_sym_AT] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_as] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4553), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(4553), - [anon_sym_object] = ACTIONS(4553), - [anon_sym_fun] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4553), - [anon_sym_set] = ACTIONS(4553), - [anon_sym_this] = ACTIONS(4553), - [anon_sym_super] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4553), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4553), - [anon_sym_DOT_DOT] = ACTIONS(4556), - [anon_sym_QMARK_COLON] = ACTIONS(4556), - [anon_sym_AMP_AMP] = ACTIONS(4556), - [anon_sym_PIPE_PIPE] = ACTIONS(4556), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_if] = ACTIONS(4553), - [anon_sym_else] = ACTIONS(4553), - [anon_sym_when] = ACTIONS(4553), - [anon_sym_try] = ACTIONS(4553), - [anon_sym_throw] = ACTIONS(4553), - [anon_sym_return] = ACTIONS(4553), - [anon_sym_continue] = ACTIONS(4553), - [anon_sym_break] = ACTIONS(4553), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_PLUS_EQ] = ACTIONS(4556), - [anon_sym_DASH_EQ] = ACTIONS(4556), - [anon_sym_STAR_EQ] = ACTIONS(4556), - [anon_sym_SLASH_EQ] = ACTIONS(4556), - [anon_sym_PERCENT_EQ] = ACTIONS(4556), - [anon_sym_BANG_EQ] = ACTIONS(4553), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4556), - [anon_sym_LT_EQ] = ACTIONS(4556), - [anon_sym_GT_EQ] = ACTIONS(4556), - [anon_sym_BANGin] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4553), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4553), - [anon_sym_PERCENT] = ACTIONS(4553), - [anon_sym_as_QMARK] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4553), - [anon_sym_BANG_BANG] = ACTIONS(4556), - [anon_sym_suspend] = ACTIONS(4553), - [anon_sym_sealed] = ACTIONS(4553), - [anon_sym_annotation] = ACTIONS(4553), - [anon_sym_data] = ACTIONS(4553), - [anon_sym_inner] = ACTIONS(4553), - [anon_sym_value] = ACTIONS(4553), - [anon_sym_override] = ACTIONS(4553), - [anon_sym_lateinit] = ACTIONS(4553), - [anon_sym_public] = ACTIONS(4553), - [anon_sym_private] = ACTIONS(4553), - [anon_sym_internal] = ACTIONS(4553), - [anon_sym_protected] = ACTIONS(4553), - [anon_sym_tailrec] = ACTIONS(4553), - [anon_sym_operator] = ACTIONS(4553), - [anon_sym_infix] = ACTIONS(4553), - [anon_sym_inline] = ACTIONS(4553), - [anon_sym_external] = ACTIONS(4553), - [sym_property_modifier] = ACTIONS(4553), - [anon_sym_abstract] = ACTIONS(4553), - [anon_sym_final] = ACTIONS(4553), - [anon_sym_open] = ACTIONS(4553), - [anon_sym_vararg] = ACTIONS(4553), - [anon_sym_noinline] = ACTIONS(4553), - [anon_sym_crossinline] = ACTIONS(4553), - [anon_sym_expect] = ACTIONS(4553), - [anon_sym_actual] = ACTIONS(4553), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4556), - [anon_sym_continue_AT] = ACTIONS(4556), - [anon_sym_break_AT] = ACTIONS(4556), - [anon_sym_this_AT] = ACTIONS(4556), - [anon_sym_super_AT] = ACTIONS(4556), - [sym_real_literal] = ACTIONS(4556), - [sym_integer_literal] = ACTIONS(4553), - [sym_hex_literal] = ACTIONS(4556), - [sym_bin_literal] = ACTIONS(4556), - [anon_sym_true] = ACTIONS(4553), - [anon_sym_false] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4556), - [sym__backtick_identifier] = ACTIONS(4556), - [sym__automatic_semicolon] = ACTIONS(4556), - [sym_safe_nav] = ACTIONS(4556), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4556), + [aux_sym__delegation_specifiers_repeat1] = STATE(966), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [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_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_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = ACTIONS(4513), + [anon_sym_this] = ACTIONS(4513), + [anon_sym_super] = 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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4515), + [anon_sym_super_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), }, [935] = { - [sym_class_body] = STATE(1062), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym_enum_class_body] = STATE(1153), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [936] = { - [sym__alpha_identifier] = ACTIONS(4559), - [anon_sym_AT] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_as] = ACTIONS(4559), - [anon_sym_EQ] = ACTIONS(4559), - [anon_sym_LBRACE] = ACTIONS(4561), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym_COMMA] = ACTIONS(4561), - [anon_sym_by] = ACTIONS(4559), - [anon_sym_LT] = ACTIONS(4559), - [anon_sym_GT] = ACTIONS(4559), - [anon_sym_where] = ACTIONS(4559), - [anon_sym_object] = ACTIONS(4559), - [anon_sym_fun] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_this] = ACTIONS(4559), - [anon_sym_super] = ACTIONS(4559), - [anon_sym_STAR] = ACTIONS(4559), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4559), - [anon_sym_DOT_DOT] = ACTIONS(4561), - [anon_sym_QMARK_COLON] = ACTIONS(4561), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4561), - [anon_sym_null] = ACTIONS(4559), - [anon_sym_if] = ACTIONS(4559), - [anon_sym_else] = ACTIONS(4559), - [anon_sym_when] = ACTIONS(4559), - [anon_sym_try] = ACTIONS(4559), - [anon_sym_throw] = ACTIONS(4559), - [anon_sym_return] = ACTIONS(4559), - [anon_sym_continue] = ACTIONS(4559), - [anon_sym_break] = ACTIONS(4559), - [anon_sym_COLON_COLON] = ACTIONS(4561), - [anon_sym_PLUS_EQ] = ACTIONS(4561), - [anon_sym_DASH_EQ] = ACTIONS(4561), - [anon_sym_STAR_EQ] = ACTIONS(4561), - [anon_sym_SLASH_EQ] = ACTIONS(4561), - [anon_sym_PERCENT_EQ] = ACTIONS(4561), - [anon_sym_BANG_EQ] = ACTIONS(4559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), - [anon_sym_EQ_EQ] = ACTIONS(4559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), - [anon_sym_LT_EQ] = ACTIONS(4561), - [anon_sym_GT_EQ] = ACTIONS(4561), - [anon_sym_BANGin] = ACTIONS(4561), - [anon_sym_is] = ACTIONS(4559), - [anon_sym_BANGis] = ACTIONS(4561), - [anon_sym_PLUS] = ACTIONS(4559), - [anon_sym_DASH] = ACTIONS(4559), - [anon_sym_SLASH] = ACTIONS(4559), - [anon_sym_PERCENT] = ACTIONS(4559), - [anon_sym_as_QMARK] = ACTIONS(4561), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_BANG_BANG] = ACTIONS(4561), - [anon_sym_suspend] = ACTIONS(4559), - [anon_sym_sealed] = ACTIONS(4559), - [anon_sym_annotation] = ACTIONS(4559), - [anon_sym_data] = ACTIONS(4559), - [anon_sym_inner] = ACTIONS(4559), - [anon_sym_value] = ACTIONS(4559), - [anon_sym_override] = ACTIONS(4559), - [anon_sym_lateinit] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_internal] = ACTIONS(4559), - [anon_sym_protected] = ACTIONS(4559), - [anon_sym_tailrec] = ACTIONS(4559), - [anon_sym_operator] = ACTIONS(4559), - [anon_sym_infix] = ACTIONS(4559), - [anon_sym_inline] = ACTIONS(4559), - [anon_sym_external] = ACTIONS(4559), - [sym_property_modifier] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_open] = ACTIONS(4559), - [anon_sym_vararg] = ACTIONS(4559), - [anon_sym_noinline] = ACTIONS(4559), - [anon_sym_crossinline] = ACTIONS(4559), - [anon_sym_expect] = ACTIONS(4559), - [anon_sym_actual] = ACTIONS(4559), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4561), - [anon_sym_continue_AT] = ACTIONS(4561), - [anon_sym_break_AT] = ACTIONS(4561), - [anon_sym_this_AT] = ACTIONS(4561), - [anon_sym_super_AT] = ACTIONS(4561), - [sym_real_literal] = ACTIONS(4561), - [sym_integer_literal] = ACTIONS(4559), - [sym_hex_literal] = ACTIONS(4561), - [sym_bin_literal] = ACTIONS(4561), - [anon_sym_true] = ACTIONS(4559), - [anon_sym_false] = ACTIONS(4559), - [anon_sym_SQUOTE] = ACTIONS(4561), - [sym__backtick_identifier] = ACTIONS(4561), - [sym__automatic_semicolon] = ACTIONS(4561), - [sym_safe_nav] = ACTIONS(4561), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4561), + [sym_class_body] = STATE(1164), + [sym__alpha_identifier] = ACTIONS(4517), + [anon_sym_AT] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_as] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(3190), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4519), + [anon_sym_super_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), }, [937] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_super] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(4519), + [sym__alpha_identifier] = ACTIONS(4521), + [anon_sym_AT] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4521), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_DOT] = ACTIONS(4521), + [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_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(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(4571), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), + [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(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3175), - [anon_sym_continue_AT] = ACTIONS(3175), - [anon_sym_break_AT] = ACTIONS(3175), - [anon_sym_this_AT] = ACTIONS(3175), - [anon_sym_super_AT] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_hex_literal] = ACTIONS(3175), - [sym_bin_literal] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4523), + [anon_sym_super_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(3175), + [sym__string_start] = ACTIONS(4523), }, [938] = { - [sym__alpha_identifier] = ACTIONS(4589), - [anon_sym_AT] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4589), - [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_by] = ACTIONS(4589), - [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_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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4591), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_object] = ACTIONS(4525), + [anon_sym_fun] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_this] = ACTIONS(4525), + [anon_sym_super] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [sym_label] = ACTIONS(4525), + [anon_sym_in] = ACTIONS(4525), + [anon_sym_DOT_DOT] = ACTIONS(4527), + [anon_sym_QMARK_COLON] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4527), + [anon_sym_null] = ACTIONS(4525), + [anon_sym_if] = ACTIONS(4525), + [anon_sym_else] = ACTIONS(4525), + [anon_sym_when] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4525), + [anon_sym_throw] = ACTIONS(4525), + [anon_sym_return] = ACTIONS(4525), + [anon_sym_continue] = ACTIONS(4525), + [anon_sym_break] = ACTIONS(4525), + [anon_sym_COLON_COLON] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_BANGin] = ACTIONS(4527), + [anon_sym_is] = ACTIONS(4525), + [anon_sym_BANGis] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_as_QMARK] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_suspend] = ACTIONS(4525), + [anon_sym_sealed] = ACTIONS(4525), + [anon_sym_annotation] = ACTIONS(4525), + [anon_sym_data] = ACTIONS(4525), + [anon_sym_inner] = ACTIONS(4525), + [anon_sym_value] = ACTIONS(4525), + [anon_sym_override] = ACTIONS(4525), + [anon_sym_lateinit] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_internal] = ACTIONS(4525), + [anon_sym_protected] = ACTIONS(4525), + [anon_sym_tailrec] = ACTIONS(4525), + [anon_sym_operator] = ACTIONS(4525), + [anon_sym_infix] = ACTIONS(4525), + [anon_sym_inline] = ACTIONS(4525), + [anon_sym_external] = ACTIONS(4525), + [sym_property_modifier] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_open] = ACTIONS(4525), + [anon_sym_vararg] = ACTIONS(4525), + [anon_sym_noinline] = ACTIONS(4525), + [anon_sym_crossinline] = ACTIONS(4525), + [anon_sym_expect] = ACTIONS(4525), + [anon_sym_actual] = ACTIONS(4525), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4527), + [anon_sym_continue_AT] = ACTIONS(4527), + [anon_sym_break_AT] = ACTIONS(4527), + [anon_sym_this_AT] = ACTIONS(4527), + [anon_sym_super_AT] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4527), + [sym_integer_literal] = ACTIONS(4525), + [sym_hex_literal] = ACTIONS(4527), + [sym_bin_literal] = ACTIONS(4527), + [anon_sym_true] = ACTIONS(4525), + [anon_sym_false] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4527), + [sym__automatic_semicolon] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4527), }, [939] = { - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4593), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4595), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), }, [940] = { - [sym_class_body] = STATE(1133), - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_object] = ACTIONS(4507), - [anon_sym_fun] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_this] = ACTIONS(4507), - [anon_sym_super] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [sym_label] = ACTIONS(4507), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_null] = ACTIONS(4507), - [anon_sym_if] = ACTIONS(4507), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_when] = ACTIONS(4507), - [anon_sym_try] = ACTIONS(4507), - [anon_sym_throw] = ACTIONS(4507), - [anon_sym_return] = ACTIONS(4507), - [anon_sym_continue] = ACTIONS(4507), - [anon_sym_break] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_suspend] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_annotation] = ACTIONS(4507), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_lateinit] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_tailrec] = ACTIONS(4507), - [anon_sym_operator] = ACTIONS(4507), - [anon_sym_infix] = ACTIONS(4507), - [anon_sym_inline] = ACTIONS(4507), - [anon_sym_external] = ACTIONS(4507), - [sym_property_modifier] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_final] = ACTIONS(4507), - [anon_sym_open] = ACTIONS(4507), - [anon_sym_vararg] = ACTIONS(4507), - [anon_sym_noinline] = ACTIONS(4507), - [anon_sym_crossinline] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4509), - [anon_sym_continue_AT] = ACTIONS(4509), - [anon_sym_break_AT] = ACTIONS(4509), - [anon_sym_this_AT] = ACTIONS(4509), - [anon_sym_super_AT] = ACTIONS(4509), - [sym_real_literal] = ACTIONS(4509), - [sym_integer_literal] = ACTIONS(4507), - [sym_hex_literal] = ACTIONS(4509), - [sym_bin_literal] = ACTIONS(4509), - [anon_sym_true] = ACTIONS(4507), - [anon_sym_false] = ACTIONS(4507), - [anon_sym_SQUOTE] = ACTIONS(4509), - [sym__backtick_identifier] = ACTIONS(4509), - [sym__automatic_semicolon] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4509), + [sym_class_body] = STATE(1153), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [941] = { - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(4433), - [anon_sym_by] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4431), - [anon_sym_where] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_fun] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_this] = ACTIONS(4431), - [anon_sym_super] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_QMARK_COLON] = ACTIONS(4433), - [anon_sym_AMP_AMP] = ACTIONS(4433), - [anon_sym_PIPE_PIPE] = ACTIONS(4433), - [anon_sym_null] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_try] = ACTIONS(4431), - [anon_sym_throw] = ACTIONS(4431), - [anon_sym_return] = ACTIONS(4431), - [anon_sym_continue] = ACTIONS(4431), - [anon_sym_break] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_PLUS_EQ] = ACTIONS(4433), - [anon_sym_DASH_EQ] = ACTIONS(4433), - [anon_sym_STAR_EQ] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4433), - [anon_sym_PERCENT_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_as_QMARK] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4433), - [anon_sym_suspend] = ACTIONS(4431), - [anon_sym_sealed] = ACTIONS(4431), - [anon_sym_annotation] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_override] = ACTIONS(4431), - [anon_sym_lateinit] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4431), - [anon_sym_internal] = ACTIONS(4431), - [anon_sym_protected] = ACTIONS(4431), - [anon_sym_tailrec] = ACTIONS(4431), - [anon_sym_operator] = ACTIONS(4431), - [anon_sym_infix] = ACTIONS(4431), - [anon_sym_inline] = ACTIONS(4431), - [anon_sym_external] = ACTIONS(4431), - [sym_property_modifier] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(4431), - [anon_sym_final] = ACTIONS(4431), - [anon_sym_open] = ACTIONS(4431), - [anon_sym_vararg] = ACTIONS(4431), - [anon_sym_noinline] = ACTIONS(4431), - [anon_sym_crossinline] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4433), - [anon_sym_continue_AT] = ACTIONS(4433), - [anon_sym_break_AT] = ACTIONS(4433), - [anon_sym_this_AT] = ACTIONS(4433), - [anon_sym_super_AT] = ACTIONS(4433), - [sym_real_literal] = ACTIONS(4433), - [sym_integer_literal] = ACTIONS(4431), - [sym_hex_literal] = ACTIONS(4433), - [sym_bin_literal] = ACTIONS(4433), - [anon_sym_true] = ACTIONS(4431), - [anon_sym_false] = ACTIONS(4431), - [anon_sym_SQUOTE] = ACTIONS(4433), - [sym__backtick_identifier] = ACTIONS(4433), - [sym__automatic_semicolon] = ACTIONS(4433), - [sym_safe_nav] = ACTIONS(4433), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4433), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(4533), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [942] = { - [sym__alpha_identifier] = ACTIONS(4597), - [anon_sym_AT] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(4597), - [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_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_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_value] = 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(4599), - [anon_sym_continue_AT] = ACTIONS(4599), - [anon_sym_break_AT] = ACTIONS(4599), - [anon_sym_this_AT] = ACTIONS(4599), - [anon_sym_super_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(4599), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(4533), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [943] = { - [sym__alpha_identifier] = ACTIONS(4601), - [anon_sym_AT] = ACTIONS(4603), - [anon_sym_COLON] = ACTIONS(4601), - [anon_sym_LBRACK] = ACTIONS(4603), - [anon_sym_DOT] = ACTIONS(4601), - [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_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_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_value] = 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(4603), - [anon_sym_continue_AT] = ACTIONS(4603), - [anon_sym_break_AT] = ACTIONS(4603), - [anon_sym_this_AT] = ACTIONS(4603), - [anon_sym_super_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(4603), + [sym_class_body] = STATE(1182), + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_object] = ACTIONS(4412), + [anon_sym_fun] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_this] = ACTIONS(4412), + [anon_sym_super] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_null] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_try] = ACTIONS(4412), + [anon_sym_throw] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_suspend] = ACTIONS(4412), + [anon_sym_sealed] = ACTIONS(4412), + [anon_sym_annotation] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_override] = ACTIONS(4412), + [anon_sym_lateinit] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_internal] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_tailrec] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_infix] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym_external] = ACTIONS(4412), + [sym_property_modifier] = ACTIONS(4412), + [anon_sym_abstract] = ACTIONS(4412), + [anon_sym_final] = ACTIONS(4412), + [anon_sym_open] = ACTIONS(4412), + [anon_sym_vararg] = ACTIONS(4412), + [anon_sym_noinline] = ACTIONS(4412), + [anon_sym_crossinline] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4414), + [anon_sym_continue_AT] = ACTIONS(4414), + [anon_sym_break_AT] = ACTIONS(4414), + [anon_sym_this_AT] = ACTIONS(4414), + [anon_sym_super_AT] = ACTIONS(4414), + [sym_real_literal] = ACTIONS(4414), + [sym_integer_literal] = ACTIONS(4412), + [sym_hex_literal] = ACTIONS(4414), + [sym_bin_literal] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4412), + [anon_sym_false] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4414), + [sym__backtick_identifier] = ACTIONS(4414), + [sym__automatic_semicolon] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4414), }, [944] = { - [sym__alpha_identifier] = ACTIONS(4605), - [anon_sym_AT] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_DOT] = ACTIONS(4605), - [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_by] = ACTIONS(4605), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4607), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_object] = ACTIONS(4563), + [anon_sym_fun] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_this] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [sym_label] = ACTIONS(4563), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_if] = ACTIONS(4563), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_when] = ACTIONS(4563), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_throw] = ACTIONS(4563), + [anon_sym_return] = ACTIONS(4563), + [anon_sym_continue] = ACTIONS(4563), + [anon_sym_break] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4563), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_suspend] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_annotation] = ACTIONS(4563), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_lateinit] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_tailrec] = ACTIONS(4563), + [anon_sym_operator] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_inline] = ACTIONS(4563), + [anon_sym_external] = ACTIONS(4563), + [sym_property_modifier] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_vararg] = ACTIONS(4563), + [anon_sym_noinline] = ACTIONS(4563), + [anon_sym_crossinline] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4565), + [anon_sym_continue_AT] = ACTIONS(4565), + [anon_sym_break_AT] = ACTIONS(4565), + [anon_sym_this_AT] = ACTIONS(4565), + [anon_sym_super_AT] = ACTIONS(4565), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_SQUOTE] = ACTIONS(4565), + [sym__backtick_identifier] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4565), }, [945] = { - [sym__alpha_identifier] = ACTIONS(4609), - [anon_sym_AT] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_as] = ACTIONS(4609), - [anon_sym_EQ] = ACTIONS(4609), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_RBRACE] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_by] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_where] = ACTIONS(4609), - [anon_sym_object] = ACTIONS(4609), - [anon_sym_fun] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_get] = ACTIONS(4609), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_this] = ACTIONS(4609), - [anon_sym_super] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [sym_label] = ACTIONS(4609), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4611), - [anon_sym_AMP_AMP] = ACTIONS(4611), - [anon_sym_PIPE_PIPE] = ACTIONS(4611), - [anon_sym_null] = ACTIONS(4609), - [anon_sym_if] = ACTIONS(4609), - [anon_sym_else] = ACTIONS(4609), - [anon_sym_when] = ACTIONS(4609), - [anon_sym_try] = ACTIONS(4609), - [anon_sym_throw] = ACTIONS(4609), - [anon_sym_return] = ACTIONS(4609), - [anon_sym_continue] = ACTIONS(4609), - [anon_sym_break] = ACTIONS(4609), - [anon_sym_COLON_COLON] = ACTIONS(4611), - [anon_sym_PLUS_EQ] = ACTIONS(4611), - [anon_sym_DASH_EQ] = ACTIONS(4611), - [anon_sym_STAR_EQ] = ACTIONS(4611), - [anon_sym_SLASH_EQ] = ACTIONS(4611), - [anon_sym_PERCENT_EQ] = ACTIONS(4611), - [anon_sym_BANG_EQ] = ACTIONS(4609), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4611), - [anon_sym_EQ_EQ] = ACTIONS(4609), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4611), - [anon_sym_LT_EQ] = ACTIONS(4611), - [anon_sym_GT_EQ] = ACTIONS(4611), - [anon_sym_BANGin] = ACTIONS(4611), - [anon_sym_is] = ACTIONS(4609), - [anon_sym_BANGis] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_PERCENT] = ACTIONS(4609), - [anon_sym_as_QMARK] = ACTIONS(4611), - [anon_sym_PLUS_PLUS] = ACTIONS(4611), - [anon_sym_DASH_DASH] = ACTIONS(4611), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_BANG_BANG] = ACTIONS(4611), - [anon_sym_suspend] = ACTIONS(4609), - [anon_sym_sealed] = ACTIONS(4609), - [anon_sym_annotation] = ACTIONS(4609), - [anon_sym_data] = ACTIONS(4609), - [anon_sym_inner] = ACTIONS(4609), - [anon_sym_value] = ACTIONS(4609), - [anon_sym_override] = ACTIONS(4609), - [anon_sym_lateinit] = ACTIONS(4609), - [anon_sym_public] = ACTIONS(4609), - [anon_sym_private] = ACTIONS(4609), - [anon_sym_internal] = ACTIONS(4609), - [anon_sym_protected] = ACTIONS(4609), - [anon_sym_tailrec] = ACTIONS(4609), - [anon_sym_operator] = ACTIONS(4609), - [anon_sym_infix] = ACTIONS(4609), - [anon_sym_inline] = ACTIONS(4609), - [anon_sym_external] = ACTIONS(4609), - [sym_property_modifier] = ACTIONS(4609), - [anon_sym_abstract] = ACTIONS(4609), - [anon_sym_final] = ACTIONS(4609), - [anon_sym_open] = ACTIONS(4609), - [anon_sym_vararg] = ACTIONS(4609), - [anon_sym_noinline] = ACTIONS(4609), - [anon_sym_crossinline] = ACTIONS(4609), - [anon_sym_expect] = ACTIONS(4609), - [anon_sym_actual] = ACTIONS(4609), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4611), - [anon_sym_continue_AT] = ACTIONS(4611), - [anon_sym_break_AT] = ACTIONS(4611), - [anon_sym_this_AT] = ACTIONS(4611), - [anon_sym_super_AT] = ACTIONS(4611), - [sym_real_literal] = ACTIONS(4611), - [sym_integer_literal] = ACTIONS(4609), - [sym_hex_literal] = ACTIONS(4611), - [sym_bin_literal] = ACTIONS(4611), - [anon_sym_true] = ACTIONS(4609), - [anon_sym_false] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4611), - [sym__backtick_identifier] = ACTIONS(4611), - [sym__automatic_semicolon] = ACTIONS(4611), - [sym_safe_nav] = ACTIONS(4611), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4611), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), }, [946] = { - [sym__alpha_identifier] = ACTIONS(4613), - [anon_sym_AT] = ACTIONS(4615), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_LBRACK] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_as] = ACTIONS(4613), - [anon_sym_EQ] = ACTIONS(4613), - [anon_sym_LBRACE] = ACTIONS(4615), - [anon_sym_RBRACE] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_COMMA] = ACTIONS(4615), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_where] = ACTIONS(4613), - [anon_sym_object] = ACTIONS(4613), - [anon_sym_fun] = ACTIONS(4613), - [anon_sym_SEMI] = ACTIONS(4615), - [anon_sym_get] = ACTIONS(4613), - [anon_sym_set] = ACTIONS(4613), - [anon_sym_this] = ACTIONS(4613), - [anon_sym_super] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4613), - [anon_sym_DOT_DOT] = ACTIONS(4615), - [anon_sym_QMARK_COLON] = ACTIONS(4615), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4615), - [anon_sym_null] = ACTIONS(4613), - [anon_sym_if] = ACTIONS(4613), - [anon_sym_else] = ACTIONS(4613), - [anon_sym_when] = ACTIONS(4613), - [anon_sym_try] = ACTIONS(4613), - [anon_sym_throw] = ACTIONS(4613), - [anon_sym_return] = ACTIONS(4613), - [anon_sym_continue] = ACTIONS(4613), - [anon_sym_break] = ACTIONS(4613), - [anon_sym_COLON_COLON] = ACTIONS(4615), - [anon_sym_PLUS_EQ] = ACTIONS(4615), - [anon_sym_DASH_EQ] = ACTIONS(4615), - [anon_sym_STAR_EQ] = ACTIONS(4615), - [anon_sym_SLASH_EQ] = ACTIONS(4615), - [anon_sym_PERCENT_EQ] = ACTIONS(4615), - [anon_sym_BANG_EQ] = ACTIONS(4613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4615), - [anon_sym_EQ_EQ] = ACTIONS(4613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4615), - [anon_sym_LT_EQ] = ACTIONS(4615), - [anon_sym_GT_EQ] = ACTIONS(4615), - [anon_sym_BANGin] = ACTIONS(4615), - [anon_sym_is] = ACTIONS(4613), - [anon_sym_BANGis] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_PERCENT] = ACTIONS(4613), - [anon_sym_as_QMARK] = ACTIONS(4615), - [anon_sym_PLUS_PLUS] = ACTIONS(4615), - [anon_sym_DASH_DASH] = ACTIONS(4615), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_BANG_BANG] = ACTIONS(4615), - [anon_sym_suspend] = ACTIONS(4613), - [anon_sym_sealed] = ACTIONS(4613), - [anon_sym_annotation] = ACTIONS(4613), - [anon_sym_data] = ACTIONS(4613), - [anon_sym_inner] = ACTIONS(4613), - [anon_sym_value] = ACTIONS(4613), - [anon_sym_override] = ACTIONS(4613), - [anon_sym_lateinit] = ACTIONS(4613), - [anon_sym_public] = ACTIONS(4613), - [anon_sym_private] = ACTIONS(4613), - [anon_sym_internal] = ACTIONS(4613), - [anon_sym_protected] = ACTIONS(4613), - [anon_sym_tailrec] = ACTIONS(4613), - [anon_sym_operator] = ACTIONS(4613), - [anon_sym_infix] = ACTIONS(4613), - [anon_sym_inline] = ACTIONS(4613), - [anon_sym_external] = ACTIONS(4613), - [sym_property_modifier] = ACTIONS(4613), - [anon_sym_abstract] = ACTIONS(4613), - [anon_sym_final] = ACTIONS(4613), - [anon_sym_open] = ACTIONS(4613), - [anon_sym_vararg] = ACTIONS(4613), - [anon_sym_noinline] = ACTIONS(4613), - [anon_sym_crossinline] = ACTIONS(4613), - [anon_sym_expect] = ACTIONS(4613), - [anon_sym_actual] = ACTIONS(4613), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4615), - [anon_sym_continue_AT] = ACTIONS(4615), - [anon_sym_break_AT] = ACTIONS(4615), - [anon_sym_this_AT] = ACTIONS(4615), - [anon_sym_super_AT] = ACTIONS(4615), - [sym_real_literal] = ACTIONS(4615), - [sym_integer_literal] = ACTIONS(4613), - [sym_hex_literal] = ACTIONS(4615), - [sym_bin_literal] = ACTIONS(4615), - [anon_sym_true] = ACTIONS(4613), - [anon_sym_false] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4615), - [sym__backtick_identifier] = ACTIONS(4615), - [sym__automatic_semicolon] = ACTIONS(4615), - [sym_safe_nav] = ACTIONS(4615), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4615), + [sym_enum_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, [947] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(956), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_object] = ACTIONS(4539), - [anon_sym_fun] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_this] = ACTIONS(4539), - [anon_sym_super] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4539), - [sym_label] = ACTIONS(4539), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4571), + [anon_sym_get] = ACTIONS(4533), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1744), [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_null] = ACTIONS(4539), - [anon_sym_if] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_when] = ACTIONS(4539), - [anon_sym_try] = ACTIONS(4539), - [anon_sym_throw] = ACTIONS(4539), - [anon_sym_return] = ACTIONS(4539), - [anon_sym_continue] = ACTIONS(4539), - [anon_sym_break] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_PLUS_EQ] = ACTIONS(4541), - [anon_sym_DASH_EQ] = ACTIONS(4541), - [anon_sym_STAR_EQ] = ACTIONS(4541), - [anon_sym_SLASH_EQ] = ACTIONS(4541), - [anon_sym_PERCENT_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4541), - [anon_sym_continue_AT] = ACTIONS(4541), - [anon_sym_break_AT] = ACTIONS(4541), - [anon_sym_this_AT] = ACTIONS(4541), - [anon_sym_super_AT] = ACTIONS(4541), - [sym_real_literal] = ACTIONS(4541), - [sym_integer_literal] = ACTIONS(4539), - [sym_hex_literal] = ACTIONS(4541), - [sym_bin_literal] = ACTIONS(4541), - [anon_sym_true] = ACTIONS(4539), - [anon_sym_false] = ACTIONS(4539), - [anon_sym_SQUOTE] = ACTIONS(4541), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [948] = { - [sym__alpha_identifier] = ACTIONS(4617), - [anon_sym_AT] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4619), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_as] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(4619), - [anon_sym_RBRACE] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_COMMA] = ACTIONS(4619), - [anon_sym_by] = ACTIONS(4617), - [anon_sym_LT] = ACTIONS(4617), - [anon_sym_GT] = ACTIONS(4617), - [anon_sym_where] = ACTIONS(4617), - [anon_sym_object] = ACTIONS(4617), - [anon_sym_fun] = ACTIONS(4617), - [anon_sym_SEMI] = ACTIONS(4619), - [anon_sym_get] = ACTIONS(4617), - [anon_sym_set] = ACTIONS(4617), - [anon_sym_this] = ACTIONS(4617), - [anon_sym_super] = ACTIONS(4617), - [anon_sym_STAR] = ACTIONS(4617), - [sym_label] = ACTIONS(4617), - [anon_sym_in] = ACTIONS(4617), - [anon_sym_DOT_DOT] = ACTIONS(4619), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4619), - [anon_sym_PIPE_PIPE] = ACTIONS(4619), - [anon_sym_null] = ACTIONS(4617), - [anon_sym_if] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(4617), - [anon_sym_when] = ACTIONS(4617), - [anon_sym_try] = ACTIONS(4617), - [anon_sym_throw] = ACTIONS(4617), - [anon_sym_return] = ACTIONS(4617), - [anon_sym_continue] = ACTIONS(4617), - [anon_sym_break] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(4619), - [anon_sym_PLUS_EQ] = ACTIONS(4619), - [anon_sym_DASH_EQ] = ACTIONS(4619), - [anon_sym_STAR_EQ] = ACTIONS(4619), - [anon_sym_SLASH_EQ] = ACTIONS(4619), - [anon_sym_PERCENT_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ] = ACTIONS(4617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ] = ACTIONS(4617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4619), - [anon_sym_LT_EQ] = ACTIONS(4619), - [anon_sym_GT_EQ] = ACTIONS(4619), - [anon_sym_BANGin] = ACTIONS(4619), - [anon_sym_is] = ACTIONS(4617), - [anon_sym_BANGis] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4617), - [anon_sym_SLASH] = ACTIONS(4617), - [anon_sym_PERCENT] = ACTIONS(4617), - [anon_sym_as_QMARK] = ACTIONS(4619), - [anon_sym_PLUS_PLUS] = ACTIONS(4619), - [anon_sym_DASH_DASH] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4617), - [anon_sym_BANG_BANG] = ACTIONS(4619), - [anon_sym_suspend] = ACTIONS(4617), - [anon_sym_sealed] = ACTIONS(4617), - [anon_sym_annotation] = ACTIONS(4617), - [anon_sym_data] = ACTIONS(4617), - [anon_sym_inner] = ACTIONS(4617), - [anon_sym_value] = ACTIONS(4617), - [anon_sym_override] = ACTIONS(4617), - [anon_sym_lateinit] = ACTIONS(4617), - [anon_sym_public] = ACTIONS(4617), - [anon_sym_private] = ACTIONS(4617), - [anon_sym_internal] = ACTIONS(4617), - [anon_sym_protected] = ACTIONS(4617), - [anon_sym_tailrec] = ACTIONS(4617), - [anon_sym_operator] = ACTIONS(4617), - [anon_sym_infix] = ACTIONS(4617), - [anon_sym_inline] = ACTIONS(4617), - [anon_sym_external] = ACTIONS(4617), - [sym_property_modifier] = ACTIONS(4617), - [anon_sym_abstract] = ACTIONS(4617), - [anon_sym_final] = ACTIONS(4617), - [anon_sym_open] = ACTIONS(4617), - [anon_sym_vararg] = ACTIONS(4617), - [anon_sym_noinline] = ACTIONS(4617), - [anon_sym_crossinline] = ACTIONS(4617), - [anon_sym_expect] = ACTIONS(4617), - [anon_sym_actual] = ACTIONS(4617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4619), - [anon_sym_continue_AT] = ACTIONS(4619), - [anon_sym_break_AT] = ACTIONS(4619), - [anon_sym_this_AT] = ACTIONS(4619), - [anon_sym_super_AT] = ACTIONS(4619), - [sym_real_literal] = ACTIONS(4619), - [sym_integer_literal] = ACTIONS(4617), - [sym_hex_literal] = ACTIONS(4619), - [sym_bin_literal] = ACTIONS(4619), - [anon_sym_true] = ACTIONS(4617), - [anon_sym_false] = ACTIONS(4617), - [anon_sym_SQUOTE] = ACTIONS(4619), - [sym__backtick_identifier] = ACTIONS(4619), - [sym__automatic_semicolon] = ACTIONS(4619), - [sym_safe_nav] = ACTIONS(4619), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4619), + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(4533), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [949] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(931), - [sym__alpha_identifier] = ACTIONS(4621), - [anon_sym_AT] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4621), - [anon_sym_EQ] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(4543), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4621), - [anon_sym_where] = ACTIONS(4621), - [anon_sym_object] = ACTIONS(4621), - [anon_sym_fun] = ACTIONS(4621), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_get] = ACTIONS(4621), - [anon_sym_set] = ACTIONS(4621), - [anon_sym_this] = ACTIONS(4621), - [anon_sym_super] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4621), - [sym_label] = ACTIONS(4621), - [anon_sym_in] = ACTIONS(4621), - [anon_sym_DOT_DOT] = ACTIONS(4623), - [anon_sym_QMARK_COLON] = ACTIONS(4623), - [anon_sym_AMP_AMP] = ACTIONS(4623), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(4621), - [anon_sym_if] = ACTIONS(4621), - [anon_sym_else] = ACTIONS(4621), - [anon_sym_when] = ACTIONS(4621), - [anon_sym_try] = ACTIONS(4621), - [anon_sym_throw] = ACTIONS(4621), - [anon_sym_return] = ACTIONS(4621), - [anon_sym_continue] = ACTIONS(4621), - [anon_sym_break] = ACTIONS(4621), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_PLUS_EQ] = ACTIONS(4623), - [anon_sym_DASH_EQ] = ACTIONS(4623), - [anon_sym_STAR_EQ] = ACTIONS(4623), - [anon_sym_SLASH_EQ] = ACTIONS(4623), - [anon_sym_PERCENT_EQ] = ACTIONS(4623), - [anon_sym_BANG_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), - [anon_sym_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4623), - [anon_sym_is] = ACTIONS(4621), - [anon_sym_BANGis] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4621), - [anon_sym_PERCENT] = ACTIONS(4621), - [anon_sym_as_QMARK] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4621), - [anon_sym_BANG_BANG] = ACTIONS(4623), - [anon_sym_suspend] = ACTIONS(4621), - [anon_sym_sealed] = ACTIONS(4621), - [anon_sym_annotation] = ACTIONS(4621), - [anon_sym_data] = ACTIONS(4621), - [anon_sym_inner] = ACTIONS(4621), - [anon_sym_value] = ACTIONS(4621), - [anon_sym_override] = ACTIONS(4621), - [anon_sym_lateinit] = ACTIONS(4621), - [anon_sym_public] = ACTIONS(4621), - [anon_sym_private] = ACTIONS(4621), - [anon_sym_internal] = ACTIONS(4621), - [anon_sym_protected] = ACTIONS(4621), - [anon_sym_tailrec] = ACTIONS(4621), - [anon_sym_operator] = ACTIONS(4621), - [anon_sym_infix] = ACTIONS(4621), - [anon_sym_inline] = ACTIONS(4621), - [anon_sym_external] = ACTIONS(4621), - [sym_property_modifier] = ACTIONS(4621), - [anon_sym_abstract] = ACTIONS(4621), - [anon_sym_final] = ACTIONS(4621), - [anon_sym_open] = ACTIONS(4621), - [anon_sym_vararg] = ACTIONS(4621), - [anon_sym_noinline] = ACTIONS(4621), - [anon_sym_crossinline] = ACTIONS(4621), - [anon_sym_expect] = ACTIONS(4621), - [anon_sym_actual] = ACTIONS(4621), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4623), - [anon_sym_continue_AT] = ACTIONS(4623), - [anon_sym_break_AT] = ACTIONS(4623), - [anon_sym_this_AT] = ACTIONS(4623), - [anon_sym_super_AT] = ACTIONS(4623), - [sym_real_literal] = ACTIONS(4623), - [sym_integer_literal] = ACTIONS(4621), - [sym_hex_literal] = ACTIONS(4623), - [sym_bin_literal] = ACTIONS(4623), - [anon_sym_true] = ACTIONS(4621), - [anon_sym_false] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4623), - [sym__backtick_identifier] = ACTIONS(4623), - [sym__automatic_semicolon] = ACTIONS(4623), - [sym_safe_nav] = ACTIONS(4623), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4623), + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(4533), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [950] = { - [sym_enum_class_body] = STATE(1166), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym_function_body] = STATE(1071), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(4577), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_object] = ACTIONS(4250), + [anon_sym_fun] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_this] = ACTIONS(4250), + [anon_sym_super] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_null] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_when] = ACTIONS(4250), + [anon_sym_try] = ACTIONS(4250), + [anon_sym_throw] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_PLUS_EQ] = ACTIONS(4252), + [anon_sym_DASH_EQ] = ACTIONS(4252), + [anon_sym_STAR_EQ] = ACTIONS(4252), + [anon_sym_SLASH_EQ] = ACTIONS(4252), + [anon_sym_PERCENT_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4252), + [anon_sym_continue_AT] = ACTIONS(4252), + [anon_sym_break_AT] = ACTIONS(4252), + [anon_sym_this_AT] = ACTIONS(4252), + [anon_sym_super_AT] = ACTIONS(4252), + [sym_real_literal] = ACTIONS(4252), + [sym_integer_literal] = ACTIONS(4250), + [sym_hex_literal] = ACTIONS(4252), + [sym_bin_literal] = ACTIONS(4252), + [anon_sym_true] = ACTIONS(4250), + [anon_sym_false] = ACTIONS(4250), + [anon_sym_SQUOTE] = ACTIONS(4252), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4252), }, [951] = { - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_as] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_by] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_where] = ACTIONS(4625), - [anon_sym_object] = ACTIONS(4625), - [anon_sym_fun] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_get] = ACTIONS(4625), - [anon_sym_set] = ACTIONS(4625), - [anon_sym_this] = ACTIONS(4625), - [anon_sym_super] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [sym_label] = ACTIONS(4625), - [anon_sym_in] = ACTIONS(4625), - [anon_sym_DOT_DOT] = ACTIONS(4627), - [anon_sym_QMARK_COLON] = ACTIONS(4627), - [anon_sym_AMP_AMP] = ACTIONS(4627), - [anon_sym_PIPE_PIPE] = ACTIONS(4627), - [anon_sym_null] = ACTIONS(4625), - [anon_sym_if] = ACTIONS(4625), - [anon_sym_else] = ACTIONS(4625), - [anon_sym_when] = ACTIONS(4625), - [anon_sym_try] = ACTIONS(4625), - [anon_sym_throw] = ACTIONS(4625), - [anon_sym_return] = ACTIONS(4625), - [anon_sym_continue] = ACTIONS(4625), - [anon_sym_break] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4627), - [anon_sym_PLUS_EQ] = ACTIONS(4627), - [anon_sym_DASH_EQ] = ACTIONS(4627), - [anon_sym_STAR_EQ] = ACTIONS(4627), - [anon_sym_SLASH_EQ] = ACTIONS(4627), - [anon_sym_PERCENT_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ] = ACTIONS(4625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ] = ACTIONS(4625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4627), - [anon_sym_LT_EQ] = ACTIONS(4627), - [anon_sym_GT_EQ] = ACTIONS(4627), - [anon_sym_BANGin] = ACTIONS(4627), - [anon_sym_is] = ACTIONS(4625), - [anon_sym_BANGis] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_as_QMARK] = ACTIONS(4627), - [anon_sym_PLUS_PLUS] = ACTIONS(4627), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_BANG_BANG] = ACTIONS(4627), - [anon_sym_suspend] = ACTIONS(4625), - [anon_sym_sealed] = ACTIONS(4625), - [anon_sym_annotation] = ACTIONS(4625), - [anon_sym_data] = ACTIONS(4625), - [anon_sym_inner] = ACTIONS(4625), - [anon_sym_value] = ACTIONS(4625), - [anon_sym_override] = ACTIONS(4625), - [anon_sym_lateinit] = ACTIONS(4625), - [anon_sym_public] = ACTIONS(4625), - [anon_sym_private] = ACTIONS(4625), - [anon_sym_internal] = ACTIONS(4625), - [anon_sym_protected] = ACTIONS(4625), - [anon_sym_tailrec] = ACTIONS(4625), - [anon_sym_operator] = ACTIONS(4625), - [anon_sym_infix] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_external] = ACTIONS(4625), - [sym_property_modifier] = ACTIONS(4625), - [anon_sym_abstract] = ACTIONS(4625), - [anon_sym_final] = ACTIONS(4625), - [anon_sym_open] = ACTIONS(4625), - [anon_sym_vararg] = ACTIONS(4625), - [anon_sym_noinline] = ACTIONS(4625), - [anon_sym_crossinline] = ACTIONS(4625), - [anon_sym_expect] = ACTIONS(4625), - [anon_sym_actual] = ACTIONS(4625), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4627), - [anon_sym_continue_AT] = ACTIONS(4627), - [anon_sym_break_AT] = ACTIONS(4627), - [anon_sym_this_AT] = ACTIONS(4627), - [anon_sym_super_AT] = ACTIONS(4627), - [sym_real_literal] = ACTIONS(4627), - [sym_integer_literal] = ACTIONS(4625), - [sym_hex_literal] = ACTIONS(4627), - [sym_bin_literal] = ACTIONS(4627), - [anon_sym_true] = ACTIONS(4625), - [anon_sym_false] = ACTIONS(4625), - [anon_sym_SQUOTE] = ACTIONS(4627), - [sym__backtick_identifier] = ACTIONS(4627), - [sym__automatic_semicolon] = ACTIONS(4627), - [sym_safe_nav] = ACTIONS(4627), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4627), + [sym_getter] = STATE(4836), + [sym_setter] = STATE(4836), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4579), + [anon_sym_get] = ACTIONS(4533), + [anon_sym_set] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [952] = { - [sym__alpha_identifier] = ACTIONS(4629), - [anon_sym_AT] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_as] = ACTIONS(4629), - [anon_sym_EQ] = ACTIONS(4629), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_RBRACE] = ACTIONS(4631), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_by] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_where] = ACTIONS(4629), - [anon_sym_object] = ACTIONS(4629), - [anon_sym_fun] = ACTIONS(4629), - [anon_sym_SEMI] = ACTIONS(4631), - [anon_sym_get] = ACTIONS(4629), - [anon_sym_set] = ACTIONS(4629), - [anon_sym_this] = ACTIONS(4629), - [anon_sym_super] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [sym_label] = ACTIONS(4629), - [anon_sym_in] = ACTIONS(4629), - [anon_sym_DOT_DOT] = ACTIONS(4631), - [anon_sym_QMARK_COLON] = ACTIONS(4631), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4631), - [anon_sym_null] = ACTIONS(4629), - [anon_sym_if] = ACTIONS(4629), - [anon_sym_else] = ACTIONS(4629), - [anon_sym_when] = ACTIONS(4629), - [anon_sym_try] = ACTIONS(4629), - [anon_sym_throw] = ACTIONS(4629), - [anon_sym_return] = ACTIONS(4629), - [anon_sym_continue] = ACTIONS(4629), - [anon_sym_break] = ACTIONS(4629), - [anon_sym_COLON_COLON] = ACTIONS(4631), - [anon_sym_PLUS_EQ] = ACTIONS(4631), - [anon_sym_DASH_EQ] = ACTIONS(4631), - [anon_sym_STAR_EQ] = ACTIONS(4631), - [anon_sym_SLASH_EQ] = ACTIONS(4631), - [anon_sym_PERCENT_EQ] = ACTIONS(4631), - [anon_sym_BANG_EQ] = ACTIONS(4629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4631), - [anon_sym_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4631), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4631), - [anon_sym_is] = ACTIONS(4629), - [anon_sym_BANGis] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4629), - [anon_sym_as_QMARK] = ACTIONS(4631), - [anon_sym_PLUS_PLUS] = ACTIONS(4631), - [anon_sym_DASH_DASH] = ACTIONS(4631), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_BANG_BANG] = ACTIONS(4631), - [anon_sym_suspend] = ACTIONS(4629), - [anon_sym_sealed] = ACTIONS(4629), - [anon_sym_annotation] = ACTIONS(4629), - [anon_sym_data] = ACTIONS(4629), - [anon_sym_inner] = ACTIONS(4629), - [anon_sym_value] = ACTIONS(4629), - [anon_sym_override] = ACTIONS(4629), - [anon_sym_lateinit] = ACTIONS(4629), - [anon_sym_public] = ACTIONS(4629), - [anon_sym_private] = ACTIONS(4629), - [anon_sym_internal] = ACTIONS(4629), - [anon_sym_protected] = ACTIONS(4629), - [anon_sym_tailrec] = ACTIONS(4629), - [anon_sym_operator] = ACTIONS(4629), - [anon_sym_infix] = ACTIONS(4629), - [anon_sym_inline] = ACTIONS(4629), - [anon_sym_external] = ACTIONS(4629), - [sym_property_modifier] = ACTIONS(4629), - [anon_sym_abstract] = ACTIONS(4629), - [anon_sym_final] = ACTIONS(4629), - [anon_sym_open] = ACTIONS(4629), - [anon_sym_vararg] = ACTIONS(4629), - [anon_sym_noinline] = ACTIONS(4629), - [anon_sym_crossinline] = ACTIONS(4629), - [anon_sym_expect] = ACTIONS(4629), - [anon_sym_actual] = ACTIONS(4629), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4631), - [anon_sym_continue_AT] = ACTIONS(4631), - [anon_sym_break_AT] = ACTIONS(4631), - [anon_sym_this_AT] = ACTIONS(4631), - [anon_sym_super_AT] = ACTIONS(4631), - [sym_real_literal] = ACTIONS(4631), - [sym_integer_literal] = ACTIONS(4629), - [sym_hex_literal] = ACTIONS(4631), - [sym_bin_literal] = ACTIONS(4631), - [anon_sym_true] = ACTIONS(4629), - [anon_sym_false] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4631), - [sym__backtick_identifier] = ACTIONS(4631), - [sym__automatic_semicolon] = ACTIONS(4631), - [sym_safe_nav] = ACTIONS(4631), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4631), + [aux_sym__delegation_specifiers_repeat1] = STATE(966), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [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(4581), + [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_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = ACTIONS(4513), + [anon_sym_this] = ACTIONS(4513), + [anon_sym_super] = 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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4515), + [anon_sym_super_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), }, [953] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(4497), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), + [sym__alpha_identifier] = ACTIONS(4583), + [anon_sym_AT] = ACTIONS(4585), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_RBRACE] = ACTIONS(4585), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_where] = ACTIONS(4583), + [anon_sym_object] = ACTIONS(4583), + [anon_sym_fun] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4585), + [anon_sym_get] = ACTIONS(4583), + [anon_sym_set] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(4583), + [anon_sym_super] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [sym_label] = ACTIONS(4583), + [anon_sym_in] = ACTIONS(4583), + [anon_sym_DOT_DOT] = ACTIONS(4585), + [anon_sym_QMARK_COLON] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_null] = ACTIONS(4583), + [anon_sym_if] = ACTIONS(4583), + [anon_sym_else] = ACTIONS(4583), + [anon_sym_when] = ACTIONS(4583), + [anon_sym_try] = ACTIONS(4583), + [anon_sym_throw] = ACTIONS(4583), + [anon_sym_return] = ACTIONS(4583), + [anon_sym_continue] = ACTIONS(4583), + [anon_sym_break] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_BANGin] = ACTIONS(4585), + [anon_sym_is] = ACTIONS(4583), + [anon_sym_BANGis] = ACTIONS(4585), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_as_QMARK] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_BANG_BANG] = ACTIONS(4585), + [anon_sym_suspend] = ACTIONS(4583), + [anon_sym_sealed] = ACTIONS(4583), + [anon_sym_annotation] = ACTIONS(4583), + [anon_sym_data] = ACTIONS(4583), + [anon_sym_inner] = ACTIONS(4583), + [anon_sym_value] = ACTIONS(4583), + [anon_sym_override] = ACTIONS(4583), + [anon_sym_lateinit] = ACTIONS(4583), + [anon_sym_public] = ACTIONS(4583), + [anon_sym_private] = ACTIONS(4583), + [anon_sym_internal] = ACTIONS(4583), + [anon_sym_protected] = ACTIONS(4583), + [anon_sym_tailrec] = ACTIONS(4583), + [anon_sym_operator] = ACTIONS(4583), + [anon_sym_infix] = ACTIONS(4583), + [anon_sym_inline] = ACTIONS(4583), + [anon_sym_external] = ACTIONS(4583), + [sym_property_modifier] = ACTIONS(4583), + [anon_sym_abstract] = ACTIONS(4583), + [anon_sym_final] = ACTIONS(4583), + [anon_sym_open] = ACTIONS(4583), + [anon_sym_vararg] = ACTIONS(4583), + [anon_sym_noinline] = ACTIONS(4583), + [anon_sym_crossinline] = ACTIONS(4583), + [anon_sym_expect] = ACTIONS(4583), + [anon_sym_actual] = ACTIONS(4583), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4585), + [anon_sym_continue_AT] = ACTIONS(4585), + [anon_sym_break_AT] = ACTIONS(4585), + [anon_sym_this_AT] = ACTIONS(4585), + [anon_sym_super_AT] = ACTIONS(4585), + [sym_real_literal] = ACTIONS(4585), + [sym_integer_literal] = ACTIONS(4583), + [sym_hex_literal] = ACTIONS(4585), + [sym_bin_literal] = ACTIONS(4585), + [anon_sym_true] = ACTIONS(4583), + [anon_sym_false] = ACTIONS(4583), + [anon_sym_SQUOTE] = ACTIONS(4585), + [sym__backtick_identifier] = ACTIONS(4585), + [sym__automatic_semicolon] = ACTIONS(4585), + [sym_safe_nav] = ACTIONS(4585), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4585), }, [954] = { - [sym__alpha_identifier] = ACTIONS(4633), - [anon_sym_AT] = ACTIONS(4635), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_LBRACK] = ACTIONS(4635), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_as] = ACTIONS(4633), - [anon_sym_EQ] = ACTIONS(4633), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_RBRACE] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_COMMA] = ACTIONS(4635), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4633), - [anon_sym_where] = ACTIONS(4633), - [anon_sym_object] = ACTIONS(4633), - [anon_sym_fun] = ACTIONS(4633), - [anon_sym_SEMI] = ACTIONS(4635), - [anon_sym_get] = ACTIONS(4633), - [anon_sym_set] = ACTIONS(4633), - [anon_sym_this] = ACTIONS(4633), - [anon_sym_super] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [sym_label] = ACTIONS(4633), - [anon_sym_in] = ACTIONS(4633), - [anon_sym_DOT_DOT] = ACTIONS(4635), - [anon_sym_QMARK_COLON] = ACTIONS(4635), - [anon_sym_AMP_AMP] = ACTIONS(4635), - [anon_sym_PIPE_PIPE] = ACTIONS(4635), - [anon_sym_null] = ACTIONS(4633), - [anon_sym_if] = ACTIONS(4633), - [anon_sym_else] = ACTIONS(4633), - [anon_sym_when] = ACTIONS(4633), - [anon_sym_try] = ACTIONS(4633), - [anon_sym_throw] = ACTIONS(4633), - [anon_sym_return] = ACTIONS(4633), - [anon_sym_continue] = ACTIONS(4633), - [anon_sym_break] = ACTIONS(4633), - [anon_sym_COLON_COLON] = ACTIONS(4635), - [anon_sym_PLUS_EQ] = ACTIONS(4635), - [anon_sym_DASH_EQ] = ACTIONS(4635), - [anon_sym_STAR_EQ] = ACTIONS(4635), - [anon_sym_SLASH_EQ] = ACTIONS(4635), - [anon_sym_PERCENT_EQ] = ACTIONS(4635), - [anon_sym_BANG_EQ] = ACTIONS(4633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), - [anon_sym_EQ_EQ] = ACTIONS(4633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), - [anon_sym_LT_EQ] = ACTIONS(4635), - [anon_sym_GT_EQ] = ACTIONS(4635), - [anon_sym_BANGin] = ACTIONS(4635), - [anon_sym_is] = ACTIONS(4633), - [anon_sym_BANGis] = ACTIONS(4635), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_PERCENT] = ACTIONS(4633), - [anon_sym_as_QMARK] = ACTIONS(4635), - [anon_sym_PLUS_PLUS] = ACTIONS(4635), - [anon_sym_DASH_DASH] = ACTIONS(4635), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_BANG_BANG] = ACTIONS(4635), - [anon_sym_suspend] = ACTIONS(4633), - [anon_sym_sealed] = ACTIONS(4633), - [anon_sym_annotation] = ACTIONS(4633), - [anon_sym_data] = ACTIONS(4633), - [anon_sym_inner] = ACTIONS(4633), - [anon_sym_value] = ACTIONS(4633), - [anon_sym_override] = ACTIONS(4633), - [anon_sym_lateinit] = ACTIONS(4633), - [anon_sym_public] = ACTIONS(4633), - [anon_sym_private] = ACTIONS(4633), - [anon_sym_internal] = ACTIONS(4633), - [anon_sym_protected] = ACTIONS(4633), - [anon_sym_tailrec] = ACTIONS(4633), - [anon_sym_operator] = ACTIONS(4633), - [anon_sym_infix] = ACTIONS(4633), - [anon_sym_inline] = ACTIONS(4633), - [anon_sym_external] = ACTIONS(4633), - [sym_property_modifier] = ACTIONS(4633), - [anon_sym_abstract] = ACTIONS(4633), - [anon_sym_final] = ACTIONS(4633), - [anon_sym_open] = ACTIONS(4633), - [anon_sym_vararg] = ACTIONS(4633), - [anon_sym_noinline] = ACTIONS(4633), - [anon_sym_crossinline] = ACTIONS(4633), - [anon_sym_expect] = ACTIONS(4633), - [anon_sym_actual] = ACTIONS(4633), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4635), - [anon_sym_continue_AT] = ACTIONS(4635), - [anon_sym_break_AT] = ACTIONS(4635), - [anon_sym_this_AT] = ACTIONS(4635), - [anon_sym_super_AT] = ACTIONS(4635), - [sym_real_literal] = ACTIONS(4635), - [sym_integer_literal] = ACTIONS(4633), - [sym_hex_literal] = ACTIONS(4635), - [sym_bin_literal] = ACTIONS(4635), - [anon_sym_true] = ACTIONS(4633), - [anon_sym_false] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4635), - [sym__backtick_identifier] = ACTIONS(4635), - [sym__automatic_semicolon] = ACTIONS(4635), - [sym_safe_nav] = ACTIONS(4635), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4635), + [aux_sym__delegation_specifiers_repeat1] = STATE(952), + [sym__alpha_identifier] = ACTIONS(4587), + [anon_sym_AT] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4589), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4581), + [anon_sym_LT] = ACTIONS(4587), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_where] = ACTIONS(4587), + [anon_sym_object] = ACTIONS(4587), + [anon_sym_fun] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), + [anon_sym_this] = ACTIONS(4587), + [anon_sym_super] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4587), + [sym_label] = ACTIONS(4587), + [anon_sym_in] = ACTIONS(4587), + [anon_sym_DOT_DOT] = ACTIONS(4589), + [anon_sym_QMARK_COLON] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_null] = ACTIONS(4587), + [anon_sym_if] = ACTIONS(4587), + [anon_sym_else] = ACTIONS(4587), + [anon_sym_when] = ACTIONS(4587), + [anon_sym_try] = ACTIONS(4587), + [anon_sym_throw] = ACTIONS(4587), + [anon_sym_return] = ACTIONS(4587), + [anon_sym_continue] = ACTIONS(4587), + [anon_sym_break] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_BANGin] = ACTIONS(4589), + [anon_sym_is] = ACTIONS(4587), + [anon_sym_BANGis] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_as_QMARK] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_BANG_BANG] = ACTIONS(4589), + [anon_sym_suspend] = ACTIONS(4587), + [anon_sym_sealed] = ACTIONS(4587), + [anon_sym_annotation] = ACTIONS(4587), + [anon_sym_data] = ACTIONS(4587), + [anon_sym_inner] = ACTIONS(4587), + [anon_sym_value] = ACTIONS(4587), + [anon_sym_override] = ACTIONS(4587), + [anon_sym_lateinit] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_internal] = ACTIONS(4587), + [anon_sym_protected] = ACTIONS(4587), + [anon_sym_tailrec] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), + [anon_sym_infix] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym_external] = ACTIONS(4587), + [sym_property_modifier] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_open] = ACTIONS(4587), + [anon_sym_vararg] = ACTIONS(4587), + [anon_sym_noinline] = ACTIONS(4587), + [anon_sym_crossinline] = ACTIONS(4587), + [anon_sym_expect] = ACTIONS(4587), + [anon_sym_actual] = ACTIONS(4587), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4589), + [anon_sym_continue_AT] = ACTIONS(4589), + [anon_sym_break_AT] = ACTIONS(4589), + [anon_sym_this_AT] = ACTIONS(4589), + [anon_sym_super_AT] = ACTIONS(4589), + [sym_real_literal] = ACTIONS(4589), + [sym_integer_literal] = ACTIONS(4587), + [sym_hex_literal] = ACTIONS(4589), + [sym_bin_literal] = ACTIONS(4589), + [anon_sym_true] = ACTIONS(4587), + [anon_sym_false] = ACTIONS(4587), + [anon_sym_SQUOTE] = ACTIONS(4589), + [sym__backtick_identifier] = ACTIONS(4589), + [sym__automatic_semicolon] = ACTIONS(4589), + [sym_safe_nav] = ACTIONS(4589), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4589), }, [955] = { - [sym_class_body] = STATE(1166), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, [956] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(956), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4641), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), + [sym_enum_class_body] = STATE(1013), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, [957] = { - [sym_enum_class_body] = STATE(1175), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3294), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), + [sym_class_body] = STATE(1174), + [sym__alpha_identifier] = ACTIONS(4591), + [anon_sym_AT] = ACTIONS(4593), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_where] = ACTIONS(4591), + [anon_sym_object] = ACTIONS(4591), + [anon_sym_fun] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4593), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4591), + [anon_sym_this] = ACTIONS(4591), + [anon_sym_super] = ACTIONS(4591), + [anon_sym_STAR] = ACTIONS(4591), + [sym_label] = ACTIONS(4591), + [anon_sym_in] = ACTIONS(4591), + [anon_sym_DOT_DOT] = ACTIONS(4593), + [anon_sym_QMARK_COLON] = ACTIONS(4593), + [anon_sym_AMP_AMP] = ACTIONS(4593), + [anon_sym_PIPE_PIPE] = ACTIONS(4593), + [anon_sym_null] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(4591), + [anon_sym_else] = ACTIONS(4591), + [anon_sym_when] = ACTIONS(4591), + [anon_sym_try] = ACTIONS(4591), + [anon_sym_throw] = ACTIONS(4591), + [anon_sym_return] = ACTIONS(4591), + [anon_sym_continue] = ACTIONS(4591), + [anon_sym_break] = ACTIONS(4591), + [anon_sym_COLON_COLON] = ACTIONS(4593), + [anon_sym_PLUS_EQ] = ACTIONS(4593), + [anon_sym_DASH_EQ] = ACTIONS(4593), + [anon_sym_STAR_EQ] = ACTIONS(4593), + [anon_sym_SLASH_EQ] = ACTIONS(4593), + [anon_sym_PERCENT_EQ] = ACTIONS(4593), + [anon_sym_BANG_EQ] = ACTIONS(4591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), + [anon_sym_EQ_EQ] = ACTIONS(4591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4593), + [anon_sym_BANGin] = ACTIONS(4593), + [anon_sym_is] = ACTIONS(4591), + [anon_sym_BANGis] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_as_QMARK] = ACTIONS(4593), + [anon_sym_PLUS_PLUS] = ACTIONS(4593), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_BANG_BANG] = ACTIONS(4593), + [anon_sym_suspend] = ACTIONS(4591), + [anon_sym_sealed] = ACTIONS(4591), + [anon_sym_annotation] = ACTIONS(4591), + [anon_sym_data] = ACTIONS(4591), + [anon_sym_inner] = ACTIONS(4591), + [anon_sym_value] = ACTIONS(4591), + [anon_sym_override] = ACTIONS(4591), + [anon_sym_lateinit] = ACTIONS(4591), + [anon_sym_public] = ACTIONS(4591), + [anon_sym_private] = ACTIONS(4591), + [anon_sym_internal] = ACTIONS(4591), + [anon_sym_protected] = ACTIONS(4591), + [anon_sym_tailrec] = ACTIONS(4591), + [anon_sym_operator] = ACTIONS(4591), + [anon_sym_infix] = ACTIONS(4591), + [anon_sym_inline] = ACTIONS(4591), + [anon_sym_external] = ACTIONS(4591), + [sym_property_modifier] = ACTIONS(4591), + [anon_sym_abstract] = ACTIONS(4591), + [anon_sym_final] = ACTIONS(4591), + [anon_sym_open] = ACTIONS(4591), + [anon_sym_vararg] = ACTIONS(4591), + [anon_sym_noinline] = ACTIONS(4591), + [anon_sym_crossinline] = ACTIONS(4591), + [anon_sym_expect] = ACTIONS(4591), + [anon_sym_actual] = ACTIONS(4591), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4593), + [anon_sym_continue_AT] = ACTIONS(4593), + [anon_sym_break_AT] = ACTIONS(4593), + [anon_sym_this_AT] = ACTIONS(4593), + [anon_sym_super_AT] = ACTIONS(4593), + [sym_real_literal] = ACTIONS(4593), + [sym_integer_literal] = ACTIONS(4591), + [sym_hex_literal] = ACTIONS(4593), + [sym_bin_literal] = ACTIONS(4593), + [anon_sym_true] = ACTIONS(4591), + [anon_sym_false] = ACTIONS(4591), + [anon_sym_SQUOTE] = ACTIONS(4593), + [sym__backtick_identifier] = ACTIONS(4593), + [sym__automatic_semicolon] = ACTIONS(4593), + [sym_safe_nav] = ACTIONS(4593), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4593), }, [958] = { - [sym_class_body] = STATE(1173), - [sym__alpha_identifier] = ACTIONS(4644), - [anon_sym_AT] = ACTIONS(4646), - [anon_sym_LBRACK] = ACTIONS(4646), - [anon_sym_DOT] = ACTIONS(4644), - [anon_sym_as] = ACTIONS(4644), - [anon_sym_EQ] = ACTIONS(4644), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4646), - [anon_sym_LPAREN] = ACTIONS(4646), - [anon_sym_COMMA] = ACTIONS(4646), - [anon_sym_LT] = ACTIONS(4644), - [anon_sym_GT] = ACTIONS(4644), - [anon_sym_where] = ACTIONS(4644), - [anon_sym_object] = ACTIONS(4644), - [anon_sym_fun] = ACTIONS(4644), - [anon_sym_SEMI] = ACTIONS(4646), - [anon_sym_get] = ACTIONS(4644), - [anon_sym_set] = ACTIONS(4644), - [anon_sym_this] = ACTIONS(4644), - [anon_sym_super] = ACTIONS(4644), - [anon_sym_STAR] = ACTIONS(4644), - [sym_label] = ACTIONS(4644), - [anon_sym_in] = ACTIONS(4644), - [anon_sym_DOT_DOT] = ACTIONS(4646), - [anon_sym_QMARK_COLON] = ACTIONS(4646), - [anon_sym_AMP_AMP] = ACTIONS(4646), - [anon_sym_PIPE_PIPE] = ACTIONS(4646), - [anon_sym_null] = ACTIONS(4644), - [anon_sym_if] = ACTIONS(4644), - [anon_sym_else] = ACTIONS(4644), - [anon_sym_when] = ACTIONS(4644), - [anon_sym_try] = ACTIONS(4644), - [anon_sym_throw] = ACTIONS(4644), - [anon_sym_return] = ACTIONS(4644), - [anon_sym_continue] = ACTIONS(4644), - [anon_sym_break] = ACTIONS(4644), - [anon_sym_COLON_COLON] = ACTIONS(4646), - [anon_sym_PLUS_EQ] = ACTIONS(4646), - [anon_sym_DASH_EQ] = ACTIONS(4646), - [anon_sym_STAR_EQ] = ACTIONS(4646), - [anon_sym_SLASH_EQ] = ACTIONS(4646), - [anon_sym_PERCENT_EQ] = ACTIONS(4646), - [anon_sym_BANG_EQ] = ACTIONS(4644), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), - [anon_sym_EQ_EQ] = ACTIONS(4644), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), - [anon_sym_LT_EQ] = ACTIONS(4646), - [anon_sym_GT_EQ] = ACTIONS(4646), - [anon_sym_BANGin] = ACTIONS(4646), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_BANGis] = ACTIONS(4646), - [anon_sym_PLUS] = ACTIONS(4644), - [anon_sym_DASH] = ACTIONS(4644), - [anon_sym_SLASH] = ACTIONS(4644), - [anon_sym_PERCENT] = ACTIONS(4644), - [anon_sym_as_QMARK] = ACTIONS(4646), - [anon_sym_PLUS_PLUS] = ACTIONS(4646), - [anon_sym_DASH_DASH] = ACTIONS(4646), - [anon_sym_BANG] = ACTIONS(4644), - [anon_sym_BANG_BANG] = ACTIONS(4646), - [anon_sym_suspend] = ACTIONS(4644), - [anon_sym_sealed] = ACTIONS(4644), - [anon_sym_annotation] = ACTIONS(4644), - [anon_sym_data] = ACTIONS(4644), - [anon_sym_inner] = ACTIONS(4644), - [anon_sym_value] = ACTIONS(4644), - [anon_sym_override] = ACTIONS(4644), - [anon_sym_lateinit] = ACTIONS(4644), - [anon_sym_public] = ACTIONS(4644), - [anon_sym_private] = ACTIONS(4644), - [anon_sym_internal] = ACTIONS(4644), - [anon_sym_protected] = ACTIONS(4644), - [anon_sym_tailrec] = ACTIONS(4644), - [anon_sym_operator] = ACTIONS(4644), - [anon_sym_infix] = ACTIONS(4644), - [anon_sym_inline] = ACTIONS(4644), - [anon_sym_external] = ACTIONS(4644), - [sym_property_modifier] = ACTIONS(4644), - [anon_sym_abstract] = ACTIONS(4644), - [anon_sym_final] = ACTIONS(4644), - [anon_sym_open] = ACTIONS(4644), - [anon_sym_vararg] = ACTIONS(4644), - [anon_sym_noinline] = ACTIONS(4644), - [anon_sym_crossinline] = ACTIONS(4644), - [anon_sym_expect] = ACTIONS(4644), - [anon_sym_actual] = ACTIONS(4644), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4646), - [anon_sym_continue_AT] = ACTIONS(4646), - [anon_sym_break_AT] = ACTIONS(4646), - [anon_sym_this_AT] = ACTIONS(4646), - [anon_sym_super_AT] = ACTIONS(4646), - [sym_real_literal] = ACTIONS(4646), - [sym_integer_literal] = ACTIONS(4644), - [sym_hex_literal] = ACTIONS(4646), - [sym_bin_literal] = ACTIONS(4646), - [anon_sym_true] = ACTIONS(4644), - [anon_sym_false] = ACTIONS(4644), - [anon_sym_SQUOTE] = ACTIONS(4646), - [sym__backtick_identifier] = ACTIONS(4646), - [sym__automatic_semicolon] = ACTIONS(4646), - [sym_safe_nav] = ACTIONS(4646), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4646), + [sym__alpha_identifier] = ACTIONS(4595), + [anon_sym_AT] = ACTIONS(4597), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_as] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(4595), + [anon_sym_object] = ACTIONS(4595), + [anon_sym_fun] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4597), + [anon_sym_get] = ACTIONS(4595), + [anon_sym_set] = ACTIONS(4595), + [anon_sym_this] = ACTIONS(4595), + [anon_sym_super] = ACTIONS(4595), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(4595), + [anon_sym_in] = ACTIONS(4595), + [anon_sym_DOT_DOT] = ACTIONS(4597), + [anon_sym_QMARK_COLON] = ACTIONS(4597), + [anon_sym_AMP_AMP] = ACTIONS(4597), + [anon_sym_PIPE_PIPE] = ACTIONS(4597), + [anon_sym_null] = ACTIONS(4595), + [anon_sym_if] = ACTIONS(4595), + [anon_sym_else] = ACTIONS(4595), + [anon_sym_when] = ACTIONS(4595), + [anon_sym_try] = ACTIONS(4595), + [anon_sym_throw] = ACTIONS(4595), + [anon_sym_return] = ACTIONS(4595), + [anon_sym_continue] = ACTIONS(4595), + [anon_sym_break] = ACTIONS(4595), + [anon_sym_COLON_COLON] = ACTIONS(4597), + [anon_sym_PLUS_EQ] = ACTIONS(4597), + [anon_sym_DASH_EQ] = ACTIONS(4597), + [anon_sym_STAR_EQ] = ACTIONS(4597), + [anon_sym_SLASH_EQ] = ACTIONS(4597), + [anon_sym_PERCENT_EQ] = ACTIONS(4597), + [anon_sym_BANG_EQ] = ACTIONS(4595), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), + [anon_sym_EQ_EQ] = ACTIONS(4595), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4597), + [anon_sym_BANGin] = ACTIONS(4597), + [anon_sym_is] = ACTIONS(4595), + [anon_sym_BANGis] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_as_QMARK] = ACTIONS(4597), + [anon_sym_PLUS_PLUS] = ACTIONS(4597), + [anon_sym_DASH_DASH] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_BANG_BANG] = ACTIONS(4597), + [anon_sym_suspend] = ACTIONS(4595), + [anon_sym_sealed] = ACTIONS(4595), + [anon_sym_annotation] = ACTIONS(4595), + [anon_sym_data] = ACTIONS(4595), + [anon_sym_inner] = ACTIONS(4595), + [anon_sym_value] = ACTIONS(4595), + [anon_sym_override] = ACTIONS(4595), + [anon_sym_lateinit] = ACTIONS(4595), + [anon_sym_public] = ACTIONS(4595), + [anon_sym_private] = ACTIONS(4595), + [anon_sym_internal] = ACTIONS(4595), + [anon_sym_protected] = ACTIONS(4595), + [anon_sym_tailrec] = ACTIONS(4595), + [anon_sym_operator] = ACTIONS(4595), + [anon_sym_infix] = ACTIONS(4595), + [anon_sym_inline] = ACTIONS(4595), + [anon_sym_external] = ACTIONS(4595), + [sym_property_modifier] = ACTIONS(4595), + [anon_sym_abstract] = ACTIONS(4595), + [anon_sym_final] = ACTIONS(4595), + [anon_sym_open] = ACTIONS(4595), + [anon_sym_vararg] = ACTIONS(4595), + [anon_sym_noinline] = ACTIONS(4595), + [anon_sym_crossinline] = ACTIONS(4595), + [anon_sym_expect] = ACTIONS(4595), + [anon_sym_actual] = ACTIONS(4595), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4597), + [anon_sym_continue_AT] = ACTIONS(4597), + [anon_sym_break_AT] = ACTIONS(4597), + [anon_sym_this_AT] = ACTIONS(4597), + [anon_sym_super_AT] = ACTIONS(4597), + [sym_real_literal] = ACTIONS(4597), + [sym_integer_literal] = ACTIONS(4595), + [sym_hex_literal] = ACTIONS(4597), + [sym_bin_literal] = ACTIONS(4597), + [anon_sym_true] = ACTIONS(4595), + [anon_sym_false] = ACTIONS(4595), + [anon_sym_SQUOTE] = ACTIONS(4597), + [sym__backtick_identifier] = ACTIONS(4597), + [sym__automatic_semicolon] = ACTIONS(4597), + [sym_safe_nav] = ACTIONS(4597), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4597), }, [959] = { - [sym__alpha_identifier] = ACTIONS(4648), - [anon_sym_AT] = ACTIONS(4650), - [anon_sym_COLON] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(4650), - [anon_sym_DOT] = ACTIONS(4648), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4650), - [anon_sym_super_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), + [sym_class_body] = STATE(1167), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), }, [960] = { + [sym_enum_class_body] = STATE(1163), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), + }, + [961] = { + [sym__alpha_identifier] = ACTIONS(4599), + [anon_sym_AT] = ACTIONS(4601), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4599), + [anon_sym_as] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4601), + [anon_sym_RBRACE] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4601), + [anon_sym_by] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4599), + [anon_sym_where] = ACTIONS(4599), + [anon_sym_object] = ACTIONS(4599), + [anon_sym_fun] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4601), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), + [anon_sym_this] = ACTIONS(4599), + [anon_sym_super] = ACTIONS(4599), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4599), + [anon_sym_in] = ACTIONS(4599), + [anon_sym_DOT_DOT] = ACTIONS(4601), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4601), + [anon_sym_PIPE_PIPE] = ACTIONS(4601), + [anon_sym_null] = ACTIONS(4599), + [anon_sym_if] = ACTIONS(4599), + [anon_sym_else] = ACTIONS(4599), + [anon_sym_when] = ACTIONS(4599), + [anon_sym_try] = ACTIONS(4599), + [anon_sym_throw] = ACTIONS(4599), + [anon_sym_return] = ACTIONS(4599), + [anon_sym_continue] = ACTIONS(4599), + [anon_sym_break] = ACTIONS(4599), + [anon_sym_COLON_COLON] = ACTIONS(4601), + [anon_sym_PLUS_EQ] = ACTIONS(4601), + [anon_sym_DASH_EQ] = ACTIONS(4601), + [anon_sym_STAR_EQ] = ACTIONS(4601), + [anon_sym_SLASH_EQ] = ACTIONS(4601), + [anon_sym_PERCENT_EQ] = ACTIONS(4601), + [anon_sym_BANG_EQ] = ACTIONS(4599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4601), + [anon_sym_EQ_EQ] = ACTIONS(4599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4601), + [anon_sym_BANGin] = ACTIONS(4601), + [anon_sym_is] = ACTIONS(4599), + [anon_sym_BANGis] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4601), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_BANG_BANG] = ACTIONS(4601), + [anon_sym_suspend] = ACTIONS(4599), + [anon_sym_sealed] = ACTIONS(4599), + [anon_sym_annotation] = ACTIONS(4599), + [anon_sym_data] = ACTIONS(4599), + [anon_sym_inner] = ACTIONS(4599), + [anon_sym_value] = ACTIONS(4599), + [anon_sym_override] = ACTIONS(4599), + [anon_sym_lateinit] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_internal] = ACTIONS(4599), + [anon_sym_protected] = ACTIONS(4599), + [anon_sym_tailrec] = ACTIONS(4599), + [anon_sym_operator] = ACTIONS(4599), + [anon_sym_infix] = ACTIONS(4599), + [anon_sym_inline] = ACTIONS(4599), + [anon_sym_external] = ACTIONS(4599), + [sym_property_modifier] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_open] = ACTIONS(4599), + [anon_sym_vararg] = ACTIONS(4599), + [anon_sym_noinline] = ACTIONS(4599), + [anon_sym_crossinline] = ACTIONS(4599), + [anon_sym_expect] = ACTIONS(4599), + [anon_sym_actual] = ACTIONS(4599), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4601), + [anon_sym_continue_AT] = ACTIONS(4601), + [anon_sym_break_AT] = ACTIONS(4601), + [anon_sym_this_AT] = ACTIONS(4601), + [anon_sym_super_AT] = ACTIONS(4601), + [sym_real_literal] = ACTIONS(4601), + [sym_integer_literal] = ACTIONS(4599), + [sym_hex_literal] = ACTIONS(4601), + [sym_bin_literal] = ACTIONS(4601), + [anon_sym_true] = ACTIONS(4599), + [anon_sym_false] = ACTIONS(4599), + [anon_sym_SQUOTE] = ACTIONS(4601), + [sym__backtick_identifier] = ACTIONS(4601), + [sym__automatic_semicolon] = ACTIONS(4601), + [sym_safe_nav] = ACTIONS(4601), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4601), + }, + [962] = { + [sym_class_body] = STATE(1163), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), + }, + [963] = { + [sym_enum_class_body] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), + }, + [964] = { + [sym__alpha_identifier] = ACTIONS(4603), + [anon_sym_AT] = ACTIONS(4605), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4603), + [anon_sym_as] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4605), + [anon_sym_RBRACE] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4603), + [anon_sym_where] = ACTIONS(4603), + [anon_sym_object] = ACTIONS(4603), + [anon_sym_fun] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4605), + [anon_sym_get] = ACTIONS(4603), + [anon_sym_set] = ACTIONS(4603), + [anon_sym_this] = ACTIONS(4603), + [anon_sym_super] = ACTIONS(4603), + [anon_sym_STAR] = ACTIONS(4603), + [sym_label] = ACTIONS(4603), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4605), + [anon_sym_AMP_AMP] = ACTIONS(4605), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_null] = ACTIONS(4603), + [anon_sym_if] = ACTIONS(4603), + [anon_sym_else] = ACTIONS(4603), + [anon_sym_when] = ACTIONS(4603), + [anon_sym_try] = ACTIONS(4603), + [anon_sym_throw] = ACTIONS(4603), + [anon_sym_return] = ACTIONS(4603), + [anon_sym_continue] = ACTIONS(4603), + [anon_sym_break] = ACTIONS(4603), + [anon_sym_COLON_COLON] = ACTIONS(4605), + [anon_sym_PLUS_EQ] = ACTIONS(4605), + [anon_sym_DASH_EQ] = ACTIONS(4605), + [anon_sym_STAR_EQ] = ACTIONS(4605), + [anon_sym_SLASH_EQ] = ACTIONS(4605), + [anon_sym_PERCENT_EQ] = ACTIONS(4605), + [anon_sym_BANG_EQ] = ACTIONS(4603), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4605), + [anon_sym_EQ_EQ] = ACTIONS(4603), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4605), + [anon_sym_BANGin] = ACTIONS(4605), + [anon_sym_is] = ACTIONS(4603), + [anon_sym_BANGis] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_as_QMARK] = ACTIONS(4605), + [anon_sym_PLUS_PLUS] = ACTIONS(4605), + [anon_sym_DASH_DASH] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4603), + [anon_sym_BANG_BANG] = ACTIONS(4605), + [anon_sym_suspend] = ACTIONS(4603), + [anon_sym_sealed] = ACTIONS(4603), + [anon_sym_annotation] = ACTIONS(4603), + [anon_sym_data] = ACTIONS(4603), + [anon_sym_inner] = ACTIONS(4603), + [anon_sym_value] = ACTIONS(4603), + [anon_sym_override] = ACTIONS(4603), + [anon_sym_lateinit] = ACTIONS(4603), + [anon_sym_public] = ACTIONS(4603), + [anon_sym_private] = ACTIONS(4603), + [anon_sym_internal] = ACTIONS(4603), + [anon_sym_protected] = ACTIONS(4603), + [anon_sym_tailrec] = ACTIONS(4603), + [anon_sym_operator] = ACTIONS(4603), + [anon_sym_infix] = ACTIONS(4603), + [anon_sym_inline] = ACTIONS(4603), + [anon_sym_external] = ACTIONS(4603), + [sym_property_modifier] = ACTIONS(4603), + [anon_sym_abstract] = ACTIONS(4603), + [anon_sym_final] = ACTIONS(4603), + [anon_sym_open] = ACTIONS(4603), + [anon_sym_vararg] = ACTIONS(4603), + [anon_sym_noinline] = ACTIONS(4603), + [anon_sym_crossinline] = ACTIONS(4603), + [anon_sym_expect] = ACTIONS(4603), + [anon_sym_actual] = ACTIONS(4603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4605), + [anon_sym_continue_AT] = ACTIONS(4605), + [anon_sym_break_AT] = ACTIONS(4605), + [anon_sym_this_AT] = ACTIONS(4605), + [anon_sym_super_AT] = ACTIONS(4605), + [sym_real_literal] = ACTIONS(4605), + [sym_integer_literal] = ACTIONS(4603), + [sym_hex_literal] = ACTIONS(4605), + [sym_bin_literal] = ACTIONS(4605), + [anon_sym_true] = ACTIONS(4603), + [anon_sym_false] = ACTIONS(4603), + [anon_sym_SQUOTE] = ACTIONS(4605), + [sym__backtick_identifier] = ACTIONS(4605), + [sym__automatic_semicolon] = ACTIONS(4605), + [sym_safe_nav] = ACTIONS(4605), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4605), + }, + [965] = { + [sym_class_body] = STATE(1014), + [sym__alpha_identifier] = ACTIONS(4607), + [anon_sym_AT] = ACTIONS(4609), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_where] = ACTIONS(4607), + [anon_sym_object] = ACTIONS(4607), + [anon_sym_fun] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4609), + [anon_sym_get] = ACTIONS(4607), + [anon_sym_set] = ACTIONS(4607), + [anon_sym_this] = ACTIONS(4607), + [anon_sym_super] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [sym_label] = ACTIONS(4607), + [anon_sym_in] = ACTIONS(4607), + [anon_sym_DOT_DOT] = ACTIONS(4609), + [anon_sym_QMARK_COLON] = ACTIONS(4609), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4609), + [anon_sym_null] = ACTIONS(4607), + [anon_sym_if] = ACTIONS(4607), + [anon_sym_else] = ACTIONS(4607), + [anon_sym_when] = ACTIONS(4607), + [anon_sym_try] = ACTIONS(4607), + [anon_sym_throw] = ACTIONS(4607), + [anon_sym_return] = ACTIONS(4607), + [anon_sym_continue] = ACTIONS(4607), + [anon_sym_break] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4609), + [anon_sym_PLUS_EQ] = ACTIONS(4609), + [anon_sym_DASH_EQ] = ACTIONS(4609), + [anon_sym_STAR_EQ] = ACTIONS(4609), + [anon_sym_SLASH_EQ] = ACTIONS(4609), + [anon_sym_PERCENT_EQ] = ACTIONS(4609), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4609), + [anon_sym_BANGin] = ACTIONS(4609), + [anon_sym_is] = ACTIONS(4607), + [anon_sym_BANGis] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_as_QMARK] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4609), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_BANG_BANG] = ACTIONS(4609), + [anon_sym_suspend] = ACTIONS(4607), + [anon_sym_sealed] = ACTIONS(4607), + [anon_sym_annotation] = ACTIONS(4607), + [anon_sym_data] = ACTIONS(4607), + [anon_sym_inner] = ACTIONS(4607), + [anon_sym_value] = ACTIONS(4607), + [anon_sym_override] = ACTIONS(4607), + [anon_sym_lateinit] = ACTIONS(4607), + [anon_sym_public] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4607), + [anon_sym_internal] = ACTIONS(4607), + [anon_sym_protected] = ACTIONS(4607), + [anon_sym_tailrec] = ACTIONS(4607), + [anon_sym_operator] = ACTIONS(4607), + [anon_sym_infix] = ACTIONS(4607), + [anon_sym_inline] = ACTIONS(4607), + [anon_sym_external] = ACTIONS(4607), + [sym_property_modifier] = ACTIONS(4607), + [anon_sym_abstract] = ACTIONS(4607), + [anon_sym_final] = ACTIONS(4607), + [anon_sym_open] = ACTIONS(4607), + [anon_sym_vararg] = ACTIONS(4607), + [anon_sym_noinline] = ACTIONS(4607), + [anon_sym_crossinline] = ACTIONS(4607), + [anon_sym_expect] = ACTIONS(4607), + [anon_sym_actual] = ACTIONS(4607), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4609), + [anon_sym_continue_AT] = ACTIONS(4609), + [anon_sym_break_AT] = ACTIONS(4609), + [anon_sym_this_AT] = ACTIONS(4609), + [anon_sym_super_AT] = ACTIONS(4609), + [sym_real_literal] = ACTIONS(4609), + [sym_integer_literal] = ACTIONS(4607), + [sym_hex_literal] = ACTIONS(4609), + [sym_bin_literal] = ACTIONS(4609), + [anon_sym_true] = ACTIONS(4607), + [anon_sym_false] = ACTIONS(4607), + [anon_sym_SQUOTE] = ACTIONS(4609), + [sym__backtick_identifier] = ACTIONS(4609), + [sym__automatic_semicolon] = ACTIONS(4609), + [sym_safe_nav] = ACTIONS(4609), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4609), + }, + [966] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(966), + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [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(4615), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4613), + [anon_sym_super_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), + }, + [967] = { + [sym_enum_class_body] = STATE(1134), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [968] = { + [sym_class_body] = STATE(1134), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [969] = { + [sym_enum_class_body] = STATE(1130), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [970] = { + [sym_enum_class_body] = STATE(1122), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_object] = ACTIONS(4618), + [anon_sym_fun] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_this] = ACTIONS(4618), + [anon_sym_super] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [sym_label] = ACTIONS(4618), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_when] = ACTIONS(4618), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_throw] = ACTIONS(4618), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_suspend] = ACTIONS(4618), + [anon_sym_sealed] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4618), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_override] = ACTIONS(4618), + [anon_sym_lateinit] = ACTIONS(4618), + [anon_sym_public] = ACTIONS(4618), + [anon_sym_private] = ACTIONS(4618), + [anon_sym_internal] = ACTIONS(4618), + [anon_sym_protected] = ACTIONS(4618), + [anon_sym_tailrec] = ACTIONS(4618), + [anon_sym_operator] = ACTIONS(4618), + [anon_sym_infix] = ACTIONS(4618), + [anon_sym_inline] = ACTIONS(4618), + [anon_sym_external] = ACTIONS(4618), + [sym_property_modifier] = ACTIONS(4618), + [anon_sym_abstract] = ACTIONS(4618), + [anon_sym_final] = ACTIONS(4618), + [anon_sym_open] = ACTIONS(4618), + [anon_sym_vararg] = ACTIONS(4618), + [anon_sym_noinline] = ACTIONS(4618), + [anon_sym_crossinline] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4620), + [anon_sym_continue_AT] = ACTIONS(4620), + [anon_sym_break_AT] = ACTIONS(4620), + [anon_sym_this_AT] = ACTIONS(4620), + [anon_sym_super_AT] = ACTIONS(4620), + [sym_real_literal] = ACTIONS(4620), + [sym_integer_literal] = ACTIONS(4618), + [sym_hex_literal] = ACTIONS(4620), + [sym_bin_literal] = ACTIONS(4620), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4620), + [sym__backtick_identifier] = ACTIONS(4620), + [sym__automatic_semicolon] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4620), + }, + [971] = { + [sym_class_body] = STATE(1122), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_object] = ACTIONS(4618), + [anon_sym_fun] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_this] = ACTIONS(4618), + [anon_sym_super] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [sym_label] = ACTIONS(4618), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_when] = ACTIONS(4618), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_throw] = ACTIONS(4618), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_suspend] = ACTIONS(4618), + [anon_sym_sealed] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4618), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_override] = ACTIONS(4618), + [anon_sym_lateinit] = ACTIONS(4618), + [anon_sym_public] = ACTIONS(4618), + [anon_sym_private] = ACTIONS(4618), + [anon_sym_internal] = ACTIONS(4618), + [anon_sym_protected] = ACTIONS(4618), + [anon_sym_tailrec] = ACTIONS(4618), + [anon_sym_operator] = ACTIONS(4618), + [anon_sym_infix] = ACTIONS(4618), + [anon_sym_inline] = ACTIONS(4618), + [anon_sym_external] = ACTIONS(4618), + [sym_property_modifier] = ACTIONS(4618), + [anon_sym_abstract] = ACTIONS(4618), + [anon_sym_final] = ACTIONS(4618), + [anon_sym_open] = ACTIONS(4618), + [anon_sym_vararg] = ACTIONS(4618), + [anon_sym_noinline] = ACTIONS(4618), + [anon_sym_crossinline] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4620), + [anon_sym_continue_AT] = ACTIONS(4620), + [anon_sym_break_AT] = ACTIONS(4620), + [anon_sym_this_AT] = ACTIONS(4620), + [anon_sym_super_AT] = ACTIONS(4620), + [sym_real_literal] = ACTIONS(4620), + [sym_integer_literal] = ACTIONS(4618), + [sym_hex_literal] = ACTIONS(4620), + [sym_bin_literal] = ACTIONS(4620), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4620), + [sym__backtick_identifier] = ACTIONS(4620), + [sym__automatic_semicolon] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4620), + }, + [972] = { + [sym_enum_class_body] = STATE(1097), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(3202), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4422), + [anon_sym_super_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), + }, + [973] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_object] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3072), + [anon_sym_super] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_when] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_throw] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3074), + [anon_sym_DASH_EQ] = ACTIONS(3074), + [anon_sym_STAR_EQ] = ACTIONS(3074), + [anon_sym_SLASH_EQ] = ACTIONS(3074), + [anon_sym_PERCENT_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3074), + [anon_sym_continue_AT] = ACTIONS(3074), + [anon_sym_break_AT] = ACTIONS(3074), + [anon_sym_this_AT] = ACTIONS(3074), + [anon_sym_super_AT] = ACTIONS(3074), + [sym_real_literal] = ACTIONS(3074), + [sym_integer_literal] = ACTIONS(3072), + [sym_hex_literal] = ACTIONS(3074), + [sym_bin_literal] = ACTIONS(3074), + [anon_sym_true] = ACTIONS(3072), + [anon_sym_false] = ACTIONS(3072), + [anon_sym_SQUOTE] = ACTIONS(3074), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3074), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3074), + }, + [974] = { + [sym_enum_class_body] = STATE(1081), + [sym__alpha_identifier] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4630), + [anon_sym_as] = ACTIONS(4630), + [anon_sym_EQ] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_where] = ACTIONS(4630), + [anon_sym_object] = ACTIONS(4630), + [anon_sym_fun] = ACTIONS(4630), + [anon_sym_SEMI] = ACTIONS(4632), + [anon_sym_get] = ACTIONS(4630), + [anon_sym_set] = ACTIONS(4630), + [anon_sym_this] = ACTIONS(4630), + [anon_sym_super] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [sym_label] = ACTIONS(4630), + [anon_sym_in] = ACTIONS(4630), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_QMARK_COLON] = ACTIONS(4632), + [anon_sym_AMP_AMP] = ACTIONS(4632), + [anon_sym_PIPE_PIPE] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4630), + [anon_sym_if] = ACTIONS(4630), + [anon_sym_else] = ACTIONS(4630), + [anon_sym_when] = ACTIONS(4630), + [anon_sym_try] = ACTIONS(4630), + [anon_sym_throw] = ACTIONS(4630), + [anon_sym_return] = ACTIONS(4630), + [anon_sym_continue] = ACTIONS(4630), + [anon_sym_break] = ACTIONS(4630), + [anon_sym_COLON_COLON] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4632), + [anon_sym_DASH_EQ] = ACTIONS(4632), + [anon_sym_STAR_EQ] = ACTIONS(4632), + [anon_sym_SLASH_EQ] = ACTIONS(4632), + [anon_sym_PERCENT_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4632), + [anon_sym_BANGin] = ACTIONS(4632), + [anon_sym_is] = ACTIONS(4630), + [anon_sym_BANGis] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_as_QMARK] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_BANG] = ACTIONS(4630), + [anon_sym_BANG_BANG] = ACTIONS(4632), + [anon_sym_suspend] = ACTIONS(4630), + [anon_sym_sealed] = ACTIONS(4630), + [anon_sym_annotation] = ACTIONS(4630), + [anon_sym_data] = ACTIONS(4630), + [anon_sym_inner] = ACTIONS(4630), + [anon_sym_value] = ACTIONS(4630), + [anon_sym_override] = ACTIONS(4630), + [anon_sym_lateinit] = ACTIONS(4630), + [anon_sym_public] = ACTIONS(4630), + [anon_sym_private] = ACTIONS(4630), + [anon_sym_internal] = ACTIONS(4630), + [anon_sym_protected] = ACTIONS(4630), + [anon_sym_tailrec] = ACTIONS(4630), + [anon_sym_operator] = ACTIONS(4630), + [anon_sym_infix] = ACTIONS(4630), + [anon_sym_inline] = ACTIONS(4630), + [anon_sym_external] = ACTIONS(4630), + [sym_property_modifier] = ACTIONS(4630), + [anon_sym_abstract] = ACTIONS(4630), + [anon_sym_final] = ACTIONS(4630), + [anon_sym_open] = ACTIONS(4630), + [anon_sym_vararg] = ACTIONS(4630), + [anon_sym_noinline] = ACTIONS(4630), + [anon_sym_crossinline] = ACTIONS(4630), + [anon_sym_expect] = ACTIONS(4630), + [anon_sym_actual] = ACTIONS(4630), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4632), + [anon_sym_continue_AT] = ACTIONS(4632), + [anon_sym_break_AT] = ACTIONS(4632), + [anon_sym_this_AT] = ACTIONS(4632), + [anon_sym_super_AT] = ACTIONS(4632), + [sym_real_literal] = ACTIONS(4632), + [sym_integer_literal] = ACTIONS(4630), + [sym_hex_literal] = ACTIONS(4632), + [sym_bin_literal] = ACTIONS(4632), + [anon_sym_true] = ACTIONS(4630), + [anon_sym_false] = ACTIONS(4630), + [anon_sym_SQUOTE] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4632), + [sym__automatic_semicolon] = ACTIONS(4632), + [sym_safe_nav] = ACTIONS(4632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4632), + }, + [975] = { + [sym__alpha_identifier] = ACTIONS(4270), + [anon_sym_AT] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [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_SEMI] = ACTIONS(4272), + [anon_sym_get] = ACTIONS(4270), + [anon_sym_set] = ACTIONS(4270), + [anon_sym_this] = ACTIONS(4270), + [anon_sym_super] = 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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4272), + [anon_sym_super_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), + }, + [976] = { + [sym__alpha_identifier] = ACTIONS(4634), + [anon_sym_AT] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4634), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4636), + [anon_sym_super_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), + }, + [977] = { + [sym__alpha_identifier] = ACTIONS(4638), + [anon_sym_AT] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4638), + [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_by] = ACTIONS(4638), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4640), + [anon_sym_super_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_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), + }, + [978] = { + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4642), + [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_by] = ACTIONS(4642), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4644), + [anon_sym_super_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), + }, + [979] = { + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_null] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), + }, + [980] = { + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4646), + [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(4648), + [anon_sym_by] = ACTIONS(4646), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4648), + [anon_sym_super_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), + }, + [981] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [982] = { [sym__alpha_identifier] = ACTIONS(4652), [anon_sym_AT] = ACTIONS(4654), - [anon_sym_COLON] = ACTIONS(4652), [anon_sym_LBRACK] = ACTIONS(4654), [anon_sym_DOT] = ACTIONS(4652), [anon_sym_as] = ACTIONS(4652), @@ -156950,6 +159572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4654), [anon_sym_LPAREN] = ACTIONS(4654), [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_by] = ACTIONS(4652), [anon_sym_LT] = ACTIONS(4652), [anon_sym_GT] = ACTIONS(4652), [anon_sym_where] = ACTIONS(4652), @@ -157045,651 +159668,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4654), }, - [961] = { - [sym_class_body] = STATE(1167), - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_object] = ACTIONS(4468), - [anon_sym_fun] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_this] = ACTIONS(4468), - [anon_sym_super] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4468), - [anon_sym_if] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [anon_sym_try] = ACTIONS(4468), - [anon_sym_throw] = ACTIONS(4468), - [anon_sym_return] = ACTIONS(4468), - [anon_sym_continue] = ACTIONS(4468), - [anon_sym_break] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_suspend] = ACTIONS(4468), - [anon_sym_sealed] = ACTIONS(4468), - [anon_sym_annotation] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_lateinit] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_tailrec] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_infix] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym_external] = ACTIONS(4468), - [sym_property_modifier] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_final] = ACTIONS(4468), - [anon_sym_open] = ACTIONS(4468), - [anon_sym_vararg] = ACTIONS(4468), - [anon_sym_noinline] = ACTIONS(4468), - [anon_sym_crossinline] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4470), - [anon_sym_continue_AT] = ACTIONS(4470), - [anon_sym_break_AT] = ACTIONS(4470), - [anon_sym_this_AT] = ACTIONS(4470), - [anon_sym_super_AT] = ACTIONS(4470), - [sym_real_literal] = ACTIONS(4470), - [sym_integer_literal] = ACTIONS(4468), - [sym_hex_literal] = ACTIONS(4470), - [sym_bin_literal] = ACTIONS(4470), - [anon_sym_true] = ACTIONS(4468), - [anon_sym_false] = ACTIONS(4468), - [anon_sym_SQUOTE] = ACTIONS(4470), - [sym__backtick_identifier] = ACTIONS(4470), - [sym__automatic_semicolon] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4470), - }, - [962] = { - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_as] = ACTIONS(4276), - [anon_sym_EQ] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_object] = ACTIONS(4276), - [anon_sym_fun] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [anon_sym_this] = ACTIONS(4276), - [anon_sym_super] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [sym_label] = ACTIONS(4276), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_DOT_DOT] = ACTIONS(4278), - [anon_sym_QMARK_COLON] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_null] = ACTIONS(4276), - [anon_sym_if] = ACTIONS(4276), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_when] = ACTIONS(4276), - [anon_sym_try] = ACTIONS(4276), - [anon_sym_throw] = ACTIONS(4276), - [anon_sym_return] = ACTIONS(4276), - [anon_sym_continue] = ACTIONS(4276), - [anon_sym_break] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ] = ACTIONS(4276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_as_QMARK] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_BANG_BANG] = ACTIONS(4278), - [anon_sym_suspend] = ACTIONS(4276), - [anon_sym_sealed] = ACTIONS(4276), - [anon_sym_annotation] = ACTIONS(4276), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_override] = ACTIONS(4276), - [anon_sym_lateinit] = ACTIONS(4276), - [anon_sym_public] = ACTIONS(4276), - [anon_sym_private] = ACTIONS(4276), - [anon_sym_internal] = ACTIONS(4276), - [anon_sym_protected] = ACTIONS(4276), - [anon_sym_tailrec] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [anon_sym_infix] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym_external] = ACTIONS(4276), - [sym_property_modifier] = ACTIONS(4276), - [anon_sym_abstract] = ACTIONS(4276), - [anon_sym_final] = ACTIONS(4276), - [anon_sym_open] = ACTIONS(4276), - [anon_sym_vararg] = ACTIONS(4276), - [anon_sym_noinline] = ACTIONS(4276), - [anon_sym_crossinline] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4278), - [anon_sym_continue_AT] = ACTIONS(4278), - [anon_sym_break_AT] = ACTIONS(4278), - [anon_sym_this_AT] = ACTIONS(4278), - [anon_sym_super_AT] = ACTIONS(4278), - [sym_real_literal] = ACTIONS(4278), - [sym_integer_literal] = ACTIONS(4276), - [sym_hex_literal] = ACTIONS(4278), - [sym_bin_literal] = ACTIONS(4278), - [anon_sym_true] = ACTIONS(4276), - [anon_sym_false] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4278), - [sym__backtick_identifier] = ACTIONS(4278), - [sym__automatic_semicolon] = ACTIONS(4278), - [sym_safe_nav] = ACTIONS(4278), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4278), - }, - [963] = { - [sym_enum_class_body] = STATE(1155), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), - }, - [964] = { - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(4656), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_object] = ACTIONS(4289), - [anon_sym_fun] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_this] = ACTIONS(4289), - [anon_sym_super] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4289), - [anon_sym_if] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_when] = ACTIONS(4289), - [anon_sym_try] = ACTIONS(4289), - [anon_sym_throw] = ACTIONS(4289), - [anon_sym_return] = ACTIONS(4289), - [anon_sym_continue] = ACTIONS(4289), - [anon_sym_break] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_PLUS_EQ] = ACTIONS(4291), - [anon_sym_DASH_EQ] = ACTIONS(4291), - [anon_sym_STAR_EQ] = ACTIONS(4291), - [anon_sym_SLASH_EQ] = ACTIONS(4291), - [anon_sym_PERCENT_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4291), - [anon_sym_continue_AT] = ACTIONS(4291), - [anon_sym_break_AT] = ACTIONS(4291), - [anon_sym_this_AT] = ACTIONS(4291), - [anon_sym_super_AT] = ACTIONS(4291), - [sym_real_literal] = ACTIONS(4291), - [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4291), - [sym_bin_literal] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4289), - [anon_sym_false] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4291), - }, - [965] = { - [sym__alpha_identifier] = ACTIONS(4658), - [anon_sym_AT] = ACTIONS(4660), - [anon_sym_COLON] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4660), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_as] = ACTIONS(4658), - [anon_sym_EQ] = ACTIONS(4658), - [anon_sym_LBRACE] = ACTIONS(4660), - [anon_sym_RBRACE] = ACTIONS(4660), - [anon_sym_LPAREN] = ACTIONS(4660), - [anon_sym_COMMA] = ACTIONS(4660), - [anon_sym_LT] = ACTIONS(4658), - [anon_sym_GT] = ACTIONS(4658), - [anon_sym_where] = ACTIONS(4658), - [anon_sym_object] = ACTIONS(4658), - [anon_sym_fun] = ACTIONS(4658), - [anon_sym_SEMI] = ACTIONS(4660), - [anon_sym_get] = ACTIONS(4658), - [anon_sym_set] = ACTIONS(4658), - [anon_sym_this] = ACTIONS(4658), - [anon_sym_super] = ACTIONS(4658), - [anon_sym_STAR] = ACTIONS(4658), - [sym_label] = ACTIONS(4658), - [anon_sym_in] = ACTIONS(4658), - [anon_sym_DOT_DOT] = ACTIONS(4660), - [anon_sym_QMARK_COLON] = ACTIONS(4660), - [anon_sym_AMP_AMP] = ACTIONS(4660), - [anon_sym_PIPE_PIPE] = ACTIONS(4660), - [anon_sym_null] = ACTIONS(4658), - [anon_sym_if] = ACTIONS(4658), - [anon_sym_else] = ACTIONS(4658), - [anon_sym_when] = ACTIONS(4658), - [anon_sym_try] = ACTIONS(4658), - [anon_sym_throw] = ACTIONS(4658), - [anon_sym_return] = ACTIONS(4658), - [anon_sym_continue] = ACTIONS(4658), - [anon_sym_break] = ACTIONS(4658), - [anon_sym_COLON_COLON] = ACTIONS(4660), - [anon_sym_PLUS_EQ] = ACTIONS(4660), - [anon_sym_DASH_EQ] = ACTIONS(4660), - [anon_sym_STAR_EQ] = ACTIONS(4660), - [anon_sym_SLASH_EQ] = ACTIONS(4660), - [anon_sym_PERCENT_EQ] = ACTIONS(4660), - [anon_sym_BANG_EQ] = ACTIONS(4658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4660), - [anon_sym_EQ_EQ] = ACTIONS(4658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4660), - [anon_sym_LT_EQ] = ACTIONS(4660), - [anon_sym_GT_EQ] = ACTIONS(4660), - [anon_sym_BANGin] = ACTIONS(4660), - [anon_sym_is] = ACTIONS(4658), - [anon_sym_BANGis] = ACTIONS(4660), - [anon_sym_PLUS] = ACTIONS(4658), - [anon_sym_DASH] = ACTIONS(4658), - [anon_sym_SLASH] = ACTIONS(4658), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_as_QMARK] = ACTIONS(4660), - [anon_sym_PLUS_PLUS] = ACTIONS(4660), - [anon_sym_DASH_DASH] = ACTIONS(4660), - [anon_sym_BANG] = ACTIONS(4658), - [anon_sym_BANG_BANG] = ACTIONS(4660), - [anon_sym_suspend] = ACTIONS(4658), - [anon_sym_sealed] = ACTIONS(4658), - [anon_sym_annotation] = ACTIONS(4658), - [anon_sym_data] = ACTIONS(4658), - [anon_sym_inner] = ACTIONS(4658), - [anon_sym_value] = ACTIONS(4658), - [anon_sym_override] = ACTIONS(4658), - [anon_sym_lateinit] = ACTIONS(4658), - [anon_sym_public] = ACTIONS(4658), - [anon_sym_private] = ACTIONS(4658), - [anon_sym_internal] = ACTIONS(4658), - [anon_sym_protected] = ACTIONS(4658), - [anon_sym_tailrec] = ACTIONS(4658), - [anon_sym_operator] = ACTIONS(4658), - [anon_sym_infix] = ACTIONS(4658), - [anon_sym_inline] = ACTIONS(4658), - [anon_sym_external] = ACTIONS(4658), - [sym_property_modifier] = ACTIONS(4658), - [anon_sym_abstract] = ACTIONS(4658), - [anon_sym_final] = ACTIONS(4658), - [anon_sym_open] = ACTIONS(4658), - [anon_sym_vararg] = ACTIONS(4658), - [anon_sym_noinline] = ACTIONS(4658), - [anon_sym_crossinline] = ACTIONS(4658), - [anon_sym_expect] = ACTIONS(4658), - [anon_sym_actual] = ACTIONS(4658), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4660), - [anon_sym_continue_AT] = ACTIONS(4660), - [anon_sym_break_AT] = ACTIONS(4660), - [anon_sym_this_AT] = ACTIONS(4660), - [anon_sym_super_AT] = ACTIONS(4660), - [sym_real_literal] = ACTIONS(4660), - [sym_integer_literal] = ACTIONS(4658), - [sym_hex_literal] = ACTIONS(4660), - [sym_bin_literal] = ACTIONS(4660), - [anon_sym_true] = ACTIONS(4658), - [anon_sym_false] = ACTIONS(4658), - [anon_sym_SQUOTE] = ACTIONS(4660), - [sym__backtick_identifier] = ACTIONS(4660), - [sym__automatic_semicolon] = ACTIONS(4660), - [sym_safe_nav] = ACTIONS(4660), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4660), - }, - [966] = { - [sym_class_body] = STATE(1155), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [983] = { + [sym__alpha_identifier] = ACTIONS(4656), + [anon_sym_AT] = ACTIONS(4659), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_as] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_by] = ACTIONS(4656), + [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_SEMI] = ACTIONS(4659), + [anon_sym_get] = ACTIONS(4656), + [anon_sym_set] = ACTIONS(4656), + [anon_sym_this] = ACTIONS(4656), + [anon_sym_super] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4656), + [sym_label] = ACTIONS(4656), + [anon_sym_in] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4659), + [anon_sym_QMARK_COLON] = ACTIONS(4659), + [anon_sym_AMP_AMP] = ACTIONS(4659), + [anon_sym_PIPE_PIPE] = ACTIONS(4659), + [anon_sym_null] = ACTIONS(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(4659), + [anon_sym_PLUS_EQ] = ACTIONS(4659), + [anon_sym_DASH_EQ] = ACTIONS(4659), + [anon_sym_STAR_EQ] = ACTIONS(4659), + [anon_sym_SLASH_EQ] = ACTIONS(4659), + [anon_sym_PERCENT_EQ] = ACTIONS(4659), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), + [anon_sym_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), + [anon_sym_LT_EQ] = ACTIONS(4659), + [anon_sym_GT_EQ] = ACTIONS(4659), + [anon_sym_BANGin] = ACTIONS(4659), + [anon_sym_is] = ACTIONS(4656), + [anon_sym_BANGis] = ACTIONS(4659), + [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(4659), + [anon_sym_PLUS_PLUS] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4659), + [anon_sym_BANG] = ACTIONS(4656), + [anon_sym_BANG_BANG] = ACTIONS(4659), + [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_value] = 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(4659), + [anon_sym_continue_AT] = ACTIONS(4659), + [anon_sym_break_AT] = ACTIONS(4659), + [anon_sym_this_AT] = ACTIONS(4659), + [anon_sym_super_AT] = ACTIONS(4659), + [sym_real_literal] = ACTIONS(4659), + [sym_integer_literal] = ACTIONS(4656), + [sym_hex_literal] = ACTIONS(4659), + [sym_bin_literal] = ACTIONS(4659), + [anon_sym_true] = ACTIONS(4656), + [anon_sym_false] = ACTIONS(4656), + [anon_sym_SQUOTE] = ACTIONS(4659), + [sym__backtick_identifier] = ACTIONS(4659), + [sym__automatic_semicolon] = ACTIONS(4659), + [sym_safe_nav] = ACTIONS(4659), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4659), }, - [967] = { + [984] = { [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4662), + [anon_sym_AT] = ACTIONS(4664), [anon_sym_LBRACK] = ACTIONS(4664), [anon_sym_DOT] = ACTIONS(4662), [anon_sym_as] = ACTIONS(4662), @@ -157698,6 +159786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4664), [anon_sym_LPAREN] = ACTIONS(4664), [anon_sym_COMMA] = ACTIONS(4664), + [anon_sym_by] = ACTIONS(4662), [anon_sym_LT] = ACTIONS(4662), [anon_sym_GT] = ACTIONS(4662), [anon_sym_where] = ACTIONS(4662), @@ -157780,7 +159869,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break_AT] = ACTIONS(4664), [anon_sym_this_AT] = ACTIONS(4664), [anon_sym_super_AT] = ACTIONS(4664), - [anon_sym_AT2] = ACTIONS(4666), [sym_real_literal] = ACTIONS(4664), [sym_integer_literal] = ACTIONS(4662), [sym_hex_literal] = ACTIONS(4664), @@ -157794,1372 +159882,944 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4664), }, - [968] = { - [sym_enum_class_body] = STATE(1114), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), - }, - [969] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_super] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(4571), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_when] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3096), - [anon_sym_continue_AT] = ACTIONS(3096), - [anon_sym_break_AT] = ACTIONS(3096), - [anon_sym_this_AT] = ACTIONS(3096), - [anon_sym_super_AT] = ACTIONS(3096), - [sym_real_literal] = ACTIONS(3096), - [sym_integer_literal] = ACTIONS(3094), - [sym_hex_literal] = ACTIONS(3096), - [sym_bin_literal] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3096), - }, - [970] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_fun] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_super] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(4571), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [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(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [anon_sym_this_AT] = ACTIONS(3108), - [anon_sym_super_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3106), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), + [985] = { + [sym__alpha_identifier] = ACTIONS(4666), + [anon_sym_AT] = ACTIONS(4668), + [anon_sym_LBRACK] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4666), + [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_by] = ACTIONS(4666), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4668), + [anon_sym_super_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), }, - [971] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_object] = ACTIONS(3110), - [anon_sym_fun] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_super] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(4571), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_when] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3112), - [anon_sym_continue_AT] = ACTIONS(3112), - [anon_sym_break_AT] = ACTIONS(3112), - [anon_sym_this_AT] = ACTIONS(3112), - [anon_sym_super_AT] = ACTIONS(3112), - [sym_real_literal] = ACTIONS(3112), - [sym_integer_literal] = ACTIONS(3110), - [sym_hex_literal] = ACTIONS(3112), - [sym_bin_literal] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3112), + [986] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_object] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3115), + [anon_sym_super] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_when] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3117), + [anon_sym_continue_AT] = ACTIONS(3117), + [anon_sym_break_AT] = ACTIONS(3117), + [anon_sym_this_AT] = ACTIONS(3117), + [anon_sym_super_AT] = ACTIONS(3117), + [sym_real_literal] = ACTIONS(3117), + [sym_integer_literal] = ACTIONS(3115), + [sym_hex_literal] = ACTIONS(3117), + [sym_bin_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(3115), + [anon_sym_false] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3117), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3117), }, - [972] = { - [sym_class_body] = STATE(1091), - [sym__alpha_identifier] = ACTIONS(4668), - [anon_sym_AT] = ACTIONS(4670), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_DOT] = ACTIONS(4668), - [anon_sym_as] = ACTIONS(4668), - [anon_sym_EQ] = ACTIONS(4668), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4670), - [anon_sym_LPAREN] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4670), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4670), - [anon_sym_super_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), + [987] = { + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4673), + [anon_sym_LBRACK] = ACTIONS(4673), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4673), + [anon_sym_RBRACE] = ACTIONS(4673), + [anon_sym_LPAREN] = ACTIONS(4673), + [anon_sym_COMMA] = ACTIONS(4673), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_object] = ACTIONS(4670), + [anon_sym_fun] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4673), + [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(4673), + [anon_sym_QMARK_COLON] = ACTIONS(4673), + [anon_sym_AMP_AMP] = ACTIONS(4673), + [anon_sym_PIPE_PIPE] = ACTIONS(4673), + [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(4673), + [anon_sym_PLUS_EQ] = ACTIONS(4673), + [anon_sym_DASH_EQ] = ACTIONS(4673), + [anon_sym_STAR_EQ] = ACTIONS(4673), + [anon_sym_SLASH_EQ] = ACTIONS(4673), + [anon_sym_PERCENT_EQ] = ACTIONS(4673), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), + [anon_sym_LT_EQ] = ACTIONS(4673), + [anon_sym_GT_EQ] = ACTIONS(4673), + [anon_sym_BANGin] = ACTIONS(4673), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4673), + [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(4673), + [anon_sym_PLUS_PLUS] = ACTIONS(4673), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_BANG_BANG] = ACTIONS(4673), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4673), + [anon_sym_continue_AT] = ACTIONS(4673), + [anon_sym_break_AT] = ACTIONS(4673), + [anon_sym_this_AT] = ACTIONS(4673), + [anon_sym_super_AT] = ACTIONS(4673), + [sym_real_literal] = ACTIONS(4673), + [sym_integer_literal] = ACTIONS(4670), + [sym_hex_literal] = ACTIONS(4673), + [sym_bin_literal] = ACTIONS(4673), + [anon_sym_true] = ACTIONS(4670), + [anon_sym_false] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4673), + [sym__backtick_identifier] = ACTIONS(4673), + [sym__automatic_semicolon] = ACTIONS(4673), + [sym_safe_nav] = ACTIONS(4673), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4673), }, - [973] = { - [sym_class_body] = STATE(1072), - [sym__alpha_identifier] = ACTIONS(4672), - [anon_sym_AT] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(4674), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_COMMA] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4672), - [anon_sym_GT] = ACTIONS(4672), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_object] = ACTIONS(4672), - [anon_sym_fun] = ACTIONS(4672), - [anon_sym_SEMI] = ACTIONS(4674), - [anon_sym_get] = ACTIONS(4672), - [anon_sym_set] = ACTIONS(4672), - [anon_sym_this] = ACTIONS(4672), - [anon_sym_super] = ACTIONS(4672), - [anon_sym_STAR] = ACTIONS(4672), - [sym_label] = ACTIONS(4672), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(4674), - [anon_sym_QMARK_COLON] = ACTIONS(4674), - [anon_sym_AMP_AMP] = ACTIONS(4674), - [anon_sym_PIPE_PIPE] = ACTIONS(4674), - [anon_sym_null] = ACTIONS(4672), - [anon_sym_if] = ACTIONS(4672), - [anon_sym_else] = ACTIONS(4672), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_try] = ACTIONS(4672), - [anon_sym_throw] = ACTIONS(4672), - [anon_sym_return] = ACTIONS(4672), - [anon_sym_continue] = ACTIONS(4672), - [anon_sym_break] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_PLUS_EQ] = ACTIONS(4674), - [anon_sym_DASH_EQ] = ACTIONS(4674), - [anon_sym_STAR_EQ] = ACTIONS(4674), - [anon_sym_SLASH_EQ] = ACTIONS(4674), - [anon_sym_PERCENT_EQ] = ACTIONS(4674), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), - [anon_sym_LT_EQ] = ACTIONS(4674), - [anon_sym_GT_EQ] = ACTIONS(4674), - [anon_sym_BANGin] = ACTIONS(4674), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_BANGis] = ACTIONS(4674), - [anon_sym_PLUS] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_as_QMARK] = ACTIONS(4674), - [anon_sym_PLUS_PLUS] = ACTIONS(4674), - [anon_sym_DASH_DASH] = ACTIONS(4674), - [anon_sym_BANG] = ACTIONS(4672), - [anon_sym_BANG_BANG] = ACTIONS(4674), - [anon_sym_suspend] = ACTIONS(4672), - [anon_sym_sealed] = ACTIONS(4672), - [anon_sym_annotation] = ACTIONS(4672), - [anon_sym_data] = ACTIONS(4672), - [anon_sym_inner] = ACTIONS(4672), - [anon_sym_value] = ACTIONS(4672), - [anon_sym_override] = ACTIONS(4672), - [anon_sym_lateinit] = ACTIONS(4672), - [anon_sym_public] = ACTIONS(4672), - [anon_sym_private] = ACTIONS(4672), - [anon_sym_internal] = ACTIONS(4672), - [anon_sym_protected] = ACTIONS(4672), - [anon_sym_tailrec] = ACTIONS(4672), - [anon_sym_operator] = ACTIONS(4672), - [anon_sym_infix] = ACTIONS(4672), - [anon_sym_inline] = ACTIONS(4672), - [anon_sym_external] = ACTIONS(4672), - [sym_property_modifier] = ACTIONS(4672), - [anon_sym_abstract] = ACTIONS(4672), - [anon_sym_final] = ACTIONS(4672), - [anon_sym_open] = ACTIONS(4672), - [anon_sym_vararg] = ACTIONS(4672), - [anon_sym_noinline] = ACTIONS(4672), - [anon_sym_crossinline] = ACTIONS(4672), - [anon_sym_expect] = ACTIONS(4672), - [anon_sym_actual] = ACTIONS(4672), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4674), - [anon_sym_continue_AT] = ACTIONS(4674), - [anon_sym_break_AT] = ACTIONS(4674), - [anon_sym_this_AT] = ACTIONS(4674), - [anon_sym_super_AT] = ACTIONS(4674), - [sym_real_literal] = ACTIONS(4674), - [sym_integer_literal] = ACTIONS(4672), - [sym_hex_literal] = ACTIONS(4674), - [sym_bin_literal] = ACTIONS(4674), - [anon_sym_true] = ACTIONS(4672), - [anon_sym_false] = ACTIONS(4672), - [anon_sym_SQUOTE] = ACTIONS(4674), - [sym__backtick_identifier] = ACTIONS(4674), - [sym__automatic_semicolon] = ACTIONS(4674), - [sym_safe_nav] = ACTIONS(4674), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4674), + [988] = { + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_object] = ACTIONS(4676), + [anon_sym_fun] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_this] = ACTIONS(4676), + [anon_sym_super] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_QMARK_COLON] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4676), + [anon_sym_if] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_when] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4676), + [anon_sym_throw] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4676), + [anon_sym_continue] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4678), + [anon_sym_DASH_EQ] = ACTIONS(4678), + [anon_sym_STAR_EQ] = ACTIONS(4678), + [anon_sym_SLASH_EQ] = ACTIONS(4678), + [anon_sym_PERCENT_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_as_QMARK] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4676), + [anon_sym_BANG_BANG] = ACTIONS(4678), + [anon_sym_suspend] = ACTIONS(4676), + [anon_sym_sealed] = ACTIONS(4676), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_override] = ACTIONS(4676), + [anon_sym_lateinit] = ACTIONS(4676), + [anon_sym_public] = ACTIONS(4676), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_internal] = ACTIONS(4676), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_tailrec] = ACTIONS(4676), + [anon_sym_operator] = ACTIONS(4676), + [anon_sym_infix] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym_external] = ACTIONS(4676), + [sym_property_modifier] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_final] = ACTIONS(4676), + [anon_sym_open] = ACTIONS(4676), + [anon_sym_vararg] = ACTIONS(4676), + [anon_sym_noinline] = ACTIONS(4676), + [anon_sym_crossinline] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4678), + [anon_sym_continue_AT] = ACTIONS(4678), + [anon_sym_break_AT] = ACTIONS(4678), + [anon_sym_this_AT] = ACTIONS(4678), + [anon_sym_super_AT] = ACTIONS(4678), + [sym_real_literal] = ACTIONS(4678), + [sym_integer_literal] = ACTIONS(4676), + [sym_hex_literal] = ACTIONS(4678), + [sym_bin_literal] = ACTIONS(4678), + [anon_sym_true] = ACTIONS(4676), + [anon_sym_false] = ACTIONS(4676), + [anon_sym_SQUOTE] = ACTIONS(4678), + [sym__backtick_identifier] = ACTIONS(4678), + [sym__automatic_semicolon] = ACTIONS(4678), + [sym_safe_nav] = ACTIONS(4678), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4678), }, - [974] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(4571), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(4523), + [989] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3080), + [anon_sym_super] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_when] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3082), + [anon_sym_continue_AT] = ACTIONS(3082), + [anon_sym_break_AT] = ACTIONS(3082), + [anon_sym_this_AT] = ACTIONS(3082), + [anon_sym_super_AT] = ACTIONS(3082), + [sym_real_literal] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(3080), + [sym_hex_literal] = ACTIONS(3082), + [sym_bin_literal] = ACTIONS(3082), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3082), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [sym__string_start] = ACTIONS(3082), }, - [975] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(4571), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), + [990] = { + [sym__alpha_identifier] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_as] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_by] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4680), + [anon_sym_where] = ACTIONS(4680), + [anon_sym_object] = ACTIONS(4680), + [anon_sym_fun] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_get] = ACTIONS(4680), + [anon_sym_set] = ACTIONS(4680), + [anon_sym_this] = ACTIONS(4680), + [anon_sym_super] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4680), + [sym_label] = ACTIONS(4680), + [anon_sym_in] = ACTIONS(4680), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_QMARK_COLON] = ACTIONS(4682), + [anon_sym_AMP_AMP] = ACTIONS(4682), + [anon_sym_PIPE_PIPE] = ACTIONS(4682), + [anon_sym_null] = ACTIONS(4680), + [anon_sym_if] = ACTIONS(4680), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_when] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4680), + [anon_sym_throw] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4680), + [anon_sym_continue] = ACTIONS(4680), + [anon_sym_break] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4682), + [anon_sym_DASH_EQ] = ACTIONS(4682), + [anon_sym_STAR_EQ] = ACTIONS(4682), + [anon_sym_SLASH_EQ] = ACTIONS(4682), + [anon_sym_PERCENT_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4682), + [anon_sym_BANGin] = ACTIONS(4682), + [anon_sym_is] = ACTIONS(4680), + [anon_sym_BANGis] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_SLASH] = ACTIONS(4680), + [anon_sym_PERCENT] = ACTIONS(4680), + [anon_sym_as_QMARK] = ACTIONS(4682), + [anon_sym_PLUS_PLUS] = ACTIONS(4682), + [anon_sym_DASH_DASH] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4680), + [anon_sym_BANG_BANG] = ACTIONS(4682), + [anon_sym_suspend] = ACTIONS(4680), + [anon_sym_sealed] = ACTIONS(4680), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_data] = ACTIONS(4680), + [anon_sym_inner] = ACTIONS(4680), + [anon_sym_value] = ACTIONS(4680), + [anon_sym_override] = ACTIONS(4680), + [anon_sym_lateinit] = ACTIONS(4680), + [anon_sym_public] = ACTIONS(4680), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_internal] = ACTIONS(4680), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_tailrec] = ACTIONS(4680), + [anon_sym_operator] = ACTIONS(4680), + [anon_sym_infix] = ACTIONS(4680), + [anon_sym_inline] = ACTIONS(4680), + [anon_sym_external] = ACTIONS(4680), + [sym_property_modifier] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_final] = ACTIONS(4680), + [anon_sym_open] = ACTIONS(4680), + [anon_sym_vararg] = ACTIONS(4680), + [anon_sym_noinline] = ACTIONS(4680), + [anon_sym_crossinline] = ACTIONS(4680), + [anon_sym_expect] = ACTIONS(4680), + [anon_sym_actual] = ACTIONS(4680), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4682), + [anon_sym_continue_AT] = ACTIONS(4682), + [anon_sym_break_AT] = ACTIONS(4682), + [anon_sym_this_AT] = ACTIONS(4682), + [anon_sym_super_AT] = ACTIONS(4682), + [sym_real_literal] = ACTIONS(4682), + [sym_integer_literal] = ACTIONS(4680), + [sym_hex_literal] = ACTIONS(4682), + [sym_bin_literal] = ACTIONS(4682), + [anon_sym_true] = ACTIONS(4680), + [anon_sym_false] = ACTIONS(4680), + [anon_sym_SQUOTE] = ACTIONS(4682), + [sym__backtick_identifier] = ACTIONS(4682), + [sym__automatic_semicolon] = ACTIONS(4682), + [sym_safe_nav] = ACTIONS(4682), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4682), }, - [976] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_fun] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3148), - [anon_sym_super] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(4571), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_when] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [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(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [anon_sym_this_AT] = ACTIONS(3150), - [anon_sym_super_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3148), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3148), - [anon_sym_false] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(4523), + [991] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym__string_start] = ACTIONS(3109), }, - [977] = { - [sym_getter] = STATE(3459), - [sym_setter] = STATE(3459), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4678), - [anon_sym_get] = ACTIONS(4680), - [anon_sym_set] = ACTIONS(4682), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [992] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_fun] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_super] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_when] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3132), + [anon_sym_continue_AT] = ACTIONS(3132), + [anon_sym_break_AT] = ACTIONS(3132), + [anon_sym_this_AT] = ACTIONS(3132), + [anon_sym_super_AT] = ACTIONS(3132), + [sym_real_literal] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(3130), + [sym_hex_literal] = ACTIONS(3132), + [sym_bin_literal] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3132), }, - [978] = { - [sym_enum_class_body] = STATE(1050), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [979] = { - [sym__alpha_identifier] = ACTIONS(4708), - [anon_sym_AT] = ACTIONS(4710), - [anon_sym_LBRACK] = ACTIONS(4710), - [anon_sym_DOT] = ACTIONS(4708), - [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_by] = ACTIONS(4708), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4710), - [anon_sym_super_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_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), - }, - [980] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_get] = ACTIONS(4680), - [anon_sym_set] = ACTIONS(4682), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [993] = { + [sym_getter] = STATE(3393), + [sym_setter] = STATE(3393), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4684), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -159178,416 +160838,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [981] = { - [sym_enum_class_body] = STATE(1023), - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(4415), - [anon_sym_object] = ACTIONS(4415), - [anon_sym_fun] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_this] = ACTIONS(4415), - [anon_sym_super] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [sym_label] = ACTIONS(4415), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_null] = ACTIONS(4415), - [anon_sym_if] = ACTIONS(4415), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_when] = ACTIONS(4415), - [anon_sym_try] = ACTIONS(4415), - [anon_sym_throw] = ACTIONS(4415), - [anon_sym_return] = ACTIONS(4415), - [anon_sym_continue] = ACTIONS(4415), - [anon_sym_break] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(4415), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_suspend] = ACTIONS(4415), - [anon_sym_sealed] = ACTIONS(4415), - [anon_sym_annotation] = ACTIONS(4415), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_override] = ACTIONS(4415), - [anon_sym_lateinit] = ACTIONS(4415), - [anon_sym_public] = ACTIONS(4415), - [anon_sym_private] = ACTIONS(4415), - [anon_sym_internal] = ACTIONS(4415), - [anon_sym_protected] = ACTIONS(4415), - [anon_sym_tailrec] = ACTIONS(4415), - [anon_sym_operator] = ACTIONS(4415), - [anon_sym_infix] = ACTIONS(4415), - [anon_sym_inline] = ACTIONS(4415), - [anon_sym_external] = ACTIONS(4415), - [sym_property_modifier] = ACTIONS(4415), - [anon_sym_abstract] = ACTIONS(4415), - [anon_sym_final] = ACTIONS(4415), - [anon_sym_open] = ACTIONS(4415), - [anon_sym_vararg] = ACTIONS(4415), - [anon_sym_noinline] = ACTIONS(4415), - [anon_sym_crossinline] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4417), - [anon_sym_continue_AT] = ACTIONS(4417), - [anon_sym_break_AT] = ACTIONS(4417), - [anon_sym_this_AT] = ACTIONS(4417), - [anon_sym_super_AT] = ACTIONS(4417), - [sym_real_literal] = ACTIONS(4417), - [sym_integer_literal] = ACTIONS(4415), - [sym_hex_literal] = ACTIONS(4417), - [sym_bin_literal] = ACTIONS(4417), - [anon_sym_true] = ACTIONS(4415), - [anon_sym_false] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4417), - [sym__backtick_identifier] = ACTIONS(4417), - [sym__automatic_semicolon] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4417), - }, - [982] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3185), - [anon_sym_super] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(4571), - [anon_sym_PIPE_PIPE] = ACTIONS(4573), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_when] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3187), - [anon_sym_DASH_EQ] = ACTIONS(3187), - [anon_sym_STAR_EQ] = ACTIONS(3187), - [anon_sym_SLASH_EQ] = ACTIONS(3187), - [anon_sym_PERCENT_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3187), - [anon_sym_continue_AT] = ACTIONS(3187), - [anon_sym_break_AT] = ACTIONS(3187), - [anon_sym_this_AT] = ACTIONS(3187), - [anon_sym_super_AT] = ACTIONS(3187), - [sym_real_literal] = ACTIONS(3187), - [sym_integer_literal] = ACTIONS(3185), - [sym_hex_literal] = ACTIONS(3187), - [sym_bin_literal] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3187), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3187), - [sym_safe_nav] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3187), - }, - [983] = { - [sym_enum_class_body] = STATE(1062), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [984] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym_get] = ACTIONS(4680), - [anon_sym_set] = ACTIONS(4682), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [994] = { + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -159606,523 +160945,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [985] = { - [sym_enum_class_body] = STATE(1140), - [sym__alpha_identifier] = ACTIONS(4716), - [anon_sym_AT] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4716), - [anon_sym_EQ] = ACTIONS(4716), - [anon_sym_LBRACE] = ACTIONS(3240), - [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_SEMI] = ACTIONS(4718), - [anon_sym_get] = ACTIONS(4716), - [anon_sym_set] = ACTIONS(4716), - [anon_sym_this] = ACTIONS(4716), - [anon_sym_super] = ACTIONS(4716), - [anon_sym_STAR] = ACTIONS(4716), - [sym_label] = ACTIONS(4716), - [anon_sym_in] = ACTIONS(4716), - [anon_sym_DOT_DOT] = ACTIONS(4718), - [anon_sym_QMARK_COLON] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_null] = ACTIONS(4716), - [anon_sym_if] = ACTIONS(4716), - [anon_sym_else] = ACTIONS(4716), - [anon_sym_when] = ACTIONS(4716), - [anon_sym_try] = ACTIONS(4716), - [anon_sym_throw] = ACTIONS(4716), - [anon_sym_return] = ACTIONS(4716), - [anon_sym_continue] = ACTIONS(4716), - [anon_sym_break] = ACTIONS(4716), - [anon_sym_COLON_COLON] = ACTIONS(4718), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_STAR_EQ] = ACTIONS(4718), - [anon_sym_SLASH_EQ] = ACTIONS(4718), - [anon_sym_PERCENT_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_BANGin] = ACTIONS(4718), - [anon_sym_is] = ACTIONS(4716), - [anon_sym_BANGis] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_SLASH] = ACTIONS(4716), - [anon_sym_PERCENT] = ACTIONS(4716), - [anon_sym_as_QMARK] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [anon_sym_BANG] = ACTIONS(4716), - [anon_sym_BANG_BANG] = ACTIONS(4718), - [anon_sym_suspend] = ACTIONS(4716), - [anon_sym_sealed] = ACTIONS(4716), - [anon_sym_annotation] = ACTIONS(4716), - [anon_sym_data] = ACTIONS(4716), - [anon_sym_inner] = ACTIONS(4716), - [anon_sym_value] = ACTIONS(4716), - [anon_sym_override] = ACTIONS(4716), - [anon_sym_lateinit] = ACTIONS(4716), - [anon_sym_public] = ACTIONS(4716), - [anon_sym_private] = ACTIONS(4716), - [anon_sym_internal] = ACTIONS(4716), - [anon_sym_protected] = ACTIONS(4716), - [anon_sym_tailrec] = ACTIONS(4716), - [anon_sym_operator] = ACTIONS(4716), - [anon_sym_infix] = ACTIONS(4716), - [anon_sym_inline] = ACTIONS(4716), - [anon_sym_external] = ACTIONS(4716), - [sym_property_modifier] = ACTIONS(4716), - [anon_sym_abstract] = ACTIONS(4716), - [anon_sym_final] = ACTIONS(4716), - [anon_sym_open] = ACTIONS(4716), - [anon_sym_vararg] = ACTIONS(4716), - [anon_sym_noinline] = ACTIONS(4716), - [anon_sym_crossinline] = ACTIONS(4716), - [anon_sym_expect] = ACTIONS(4716), - [anon_sym_actual] = ACTIONS(4716), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4718), - [anon_sym_continue_AT] = ACTIONS(4718), - [anon_sym_break_AT] = ACTIONS(4718), - [anon_sym_this_AT] = ACTIONS(4718), - [anon_sym_super_AT] = ACTIONS(4718), - [sym_real_literal] = ACTIONS(4718), - [sym_integer_literal] = ACTIONS(4716), - [sym_hex_literal] = ACTIONS(4718), - [sym_bin_literal] = ACTIONS(4718), - [anon_sym_true] = ACTIONS(4716), - [anon_sym_false] = ACTIONS(4716), - [anon_sym_SQUOTE] = ACTIONS(4718), - [sym__backtick_identifier] = ACTIONS(4718), - [sym__automatic_semicolon] = ACTIONS(4718), - [sym_safe_nav] = ACTIONS(4718), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4718), - }, - [986] = { - [sym_class_body] = STATE(1057), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(4299), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), - }, - [987] = { - [sym__alpha_identifier] = ACTIONS(4720), - [anon_sym_AT] = ACTIONS(4722), - [anon_sym_COLON] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4722), - [anon_sym_DOT] = ACTIONS(4720), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4722), - [anon_sym_super_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), - }, - [988] = { - [sym__alpha_identifier] = ACTIONS(4724), - [anon_sym_AT] = ACTIONS(4726), - [anon_sym_COLON] = ACTIONS(4724), - [anon_sym_LBRACK] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4724), - [anon_sym_as] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4724), - [anon_sym_LBRACE] = ACTIONS(4726), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_COMMA] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4724), - [anon_sym_GT] = ACTIONS(4724), - [anon_sym_where] = ACTIONS(4724), - [anon_sym_object] = ACTIONS(4724), - [anon_sym_fun] = ACTIONS(4724), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_get] = ACTIONS(4724), - [anon_sym_set] = ACTIONS(4724), - [anon_sym_this] = ACTIONS(4724), - [anon_sym_super] = ACTIONS(4724), - [anon_sym_STAR] = ACTIONS(4724), - [sym_label] = ACTIONS(4724), - [anon_sym_in] = ACTIONS(4724), - [anon_sym_DOT_DOT] = ACTIONS(4726), - [anon_sym_QMARK_COLON] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [anon_sym_null] = ACTIONS(4724), - [anon_sym_if] = ACTIONS(4724), - [anon_sym_else] = ACTIONS(4724), - [anon_sym_when] = ACTIONS(4724), - [anon_sym_try] = ACTIONS(4724), - [anon_sym_throw] = ACTIONS(4724), - [anon_sym_return] = ACTIONS(4724), - [anon_sym_continue] = ACTIONS(4724), - [anon_sym_break] = ACTIONS(4724), - [anon_sym_COLON_COLON] = ACTIONS(4726), - [anon_sym_PLUS_EQ] = ACTIONS(4726), - [anon_sym_DASH_EQ] = ACTIONS(4726), - [anon_sym_STAR_EQ] = ACTIONS(4726), - [anon_sym_SLASH_EQ] = ACTIONS(4726), - [anon_sym_PERCENT_EQ] = ACTIONS(4726), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4726), - [anon_sym_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_BANGin] = ACTIONS(4726), - [anon_sym_is] = ACTIONS(4724), - [anon_sym_BANGis] = ACTIONS(4726), - [anon_sym_PLUS] = ACTIONS(4724), - [anon_sym_DASH] = ACTIONS(4724), - [anon_sym_SLASH] = ACTIONS(4724), - [anon_sym_PERCENT] = ACTIONS(4724), - [anon_sym_as_QMARK] = ACTIONS(4726), - [anon_sym_PLUS_PLUS] = ACTIONS(4726), - [anon_sym_DASH_DASH] = ACTIONS(4726), - [anon_sym_BANG] = ACTIONS(4724), - [anon_sym_BANG_BANG] = ACTIONS(4726), - [anon_sym_suspend] = ACTIONS(4724), - [anon_sym_sealed] = ACTIONS(4724), - [anon_sym_annotation] = ACTIONS(4724), - [anon_sym_data] = ACTIONS(4724), - [anon_sym_inner] = ACTIONS(4724), - [anon_sym_value] = ACTIONS(4724), - [anon_sym_override] = ACTIONS(4724), - [anon_sym_lateinit] = ACTIONS(4724), - [anon_sym_public] = ACTIONS(4724), - [anon_sym_private] = ACTIONS(4724), - [anon_sym_internal] = ACTIONS(4724), - [anon_sym_protected] = ACTIONS(4724), - [anon_sym_tailrec] = ACTIONS(4724), - [anon_sym_operator] = ACTIONS(4724), - [anon_sym_infix] = ACTIONS(4724), - [anon_sym_inline] = ACTIONS(4724), - [anon_sym_external] = ACTIONS(4724), - [sym_property_modifier] = ACTIONS(4724), - [anon_sym_abstract] = ACTIONS(4724), - [anon_sym_final] = ACTIONS(4724), - [anon_sym_open] = ACTIONS(4724), - [anon_sym_vararg] = ACTIONS(4724), - [anon_sym_noinline] = ACTIONS(4724), - [anon_sym_crossinline] = ACTIONS(4724), - [anon_sym_expect] = ACTIONS(4724), - [anon_sym_actual] = ACTIONS(4724), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4726), - [anon_sym_continue_AT] = ACTIONS(4726), - [anon_sym_break_AT] = ACTIONS(4726), - [anon_sym_this_AT] = ACTIONS(4726), - [anon_sym_super_AT] = ACTIONS(4726), - [sym_real_literal] = ACTIONS(4726), - [sym_integer_literal] = ACTIONS(4724), - [sym_hex_literal] = ACTIONS(4726), - [sym_bin_literal] = ACTIONS(4726), - [anon_sym_true] = ACTIONS(4724), - [anon_sym_false] = ACTIONS(4724), - [anon_sym_SQUOTE] = ACTIONS(4726), - [sym__backtick_identifier] = ACTIONS(4726), - [sym__automatic_semicolon] = ACTIONS(4726), - [sym_safe_nav] = ACTIONS(4726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4726), - }, - [989] = { - [sym_getter] = STATE(4786), - [sym_setter] = STATE(4786), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4728), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [995] = { + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -160141,95 +161052,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [990] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4734), - [anon_sym_get] = ACTIONS(4680), - [anon_sym_set] = ACTIONS(4682), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [996] = { + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4694), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -160248,416 +161159,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [991] = { - [sym_function_body] = STATE(1120), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(4736), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), - }, - [992] = { - [sym_function_body] = STATE(1162), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(4738), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), + [997] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3076), + [anon_sym_super] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_when] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3078), + [anon_sym_continue_AT] = ACTIONS(3078), + [anon_sym_break_AT] = ACTIONS(3078), + [anon_sym_this_AT] = ACTIONS(3078), + [anon_sym_super_AT] = ACTIONS(3078), + [sym_real_literal] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(3076), + [sym_hex_literal] = ACTIONS(3078), + [sym_bin_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3078), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3078), }, - [993] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_get] = ACTIONS(4680), - [anon_sym_set] = ACTIONS(4682), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [998] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_fun] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_super] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_null] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [anon_sym_DASH_EQ] = ACTIONS(3139), + [anon_sym_STAR_EQ] = ACTIONS(3139), + [anon_sym_SLASH_EQ] = ACTIONS(3139), + [anon_sym_PERCENT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(3139), + [anon_sym_continue_AT] = ACTIONS(3139), + [anon_sym_break_AT] = ACTIONS(3139), + [anon_sym_this_AT] = ACTIONS(3139), + [anon_sym_super_AT] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_hex_literal] = ACTIONS(3139), + [sym_bin_literal] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3139), }, - [994] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [999] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -160676,202 +161480,737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [995] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4744), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [1000] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_fun] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_super] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_when] = ACTIONS(3057), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3059), + [anon_sym_continue_AT] = ACTIONS(3059), + [anon_sym_break_AT] = ACTIONS(3059), + [anon_sym_this_AT] = ACTIONS(3059), + [anon_sym_super_AT] = ACTIONS(3059), + [sym_real_literal] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(3057), + [sym_hex_literal] = ACTIONS(3059), + [sym_bin_literal] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3059), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3059), + }, + [1001] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [1002] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_object] = ACTIONS(3141), + [anon_sym_fun] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_this] = ACTIONS(3141), + [anon_sym_super] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_null] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_when] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3143), + [anon_sym_DASH_EQ] = ACTIONS(3143), + [anon_sym_STAR_EQ] = ACTIONS(3143), + [anon_sym_SLASH_EQ] = ACTIONS(3143), + [anon_sym_PERCENT_EQ] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(3143), + [anon_sym_continue_AT] = ACTIONS(3143), + [anon_sym_break_AT] = ACTIONS(3143), + [anon_sym_this_AT] = ACTIONS(3143), + [anon_sym_super_AT] = ACTIONS(3143), + [sym_real_literal] = ACTIONS(3143), + [sym_integer_literal] = ACTIONS(3141), + [sym_hex_literal] = ACTIONS(3143), + [sym_bin_literal] = ACTIONS(3143), + [anon_sym_true] = ACTIONS(3141), + [anon_sym_false] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3143), + [sym__backtick_identifier] = ACTIONS(3143), + [sym__automatic_semicolon] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3143), }, - [996] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), + [1003] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [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_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(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [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_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_value] = 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), + [anon_sym_return_AT] = ACTIONS(4700), + [anon_sym_continue_AT] = ACTIONS(4700), + [anon_sym_break_AT] = ACTIONS(4700), + [anon_sym_this_AT] = ACTIONS(4700), + [anon_sym_super_AT] = ACTIONS(4700), + [anon_sym_AT2] = ACTIONS(4702), + [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), + }, + [1004] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_fun] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3100), + [anon_sym_super] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_null] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_when] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3102), + [anon_sym_continue_AT] = ACTIONS(3102), + [anon_sym_break_AT] = ACTIONS(3102), + [anon_sym_this_AT] = ACTIONS(3102), + [anon_sym_super_AT] = ACTIONS(3102), + [sym_real_literal] = ACTIONS(3102), + [sym_integer_literal] = ACTIONS(3100), + [sym_hex_literal] = ACTIONS(3102), + [sym_bin_literal] = ACTIONS(3102), + [anon_sym_true] = ACTIONS(3100), + [anon_sym_false] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3102), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3102), + }, + [1005] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_object] = ACTIONS(3050), + [anon_sym_fun] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_super] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_when] = ACTIONS(3050), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3052), + [anon_sym_continue_AT] = ACTIONS(3052), + [anon_sym_break_AT] = ACTIONS(3052), + [anon_sym_this_AT] = ACTIONS(3052), + [anon_sym_super_AT] = ACTIONS(3052), + [sym_real_literal] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [sym_hex_literal] = ACTIONS(3052), + [sym_bin_literal] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3052), + }, + [1006] = { + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(4686), + [anon_sym_set] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -160890,523 +162229,2113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [997] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(4523), + [1007] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_fun] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_super] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3128), + [anon_sym_continue_AT] = ACTIONS(3128), + [anon_sym_break_AT] = ACTIONS(3128), + [anon_sym_this_AT] = ACTIONS(3128), + [anon_sym_super_AT] = ACTIONS(3128), + [sym_real_literal] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_hex_literal] = ACTIONS(3128), + [sym_bin_literal] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), + [sym__string_start] = ACTIONS(3128), }, - [998] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_fun] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3121), - [anon_sym_super] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_when] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3123), - [anon_sym_continue_AT] = ACTIONS(3123), - [anon_sym_break_AT] = ACTIONS(3123), - [anon_sym_this_AT] = ACTIONS(3123), - [anon_sym_super_AT] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3123), - [sym_integer_literal] = ACTIONS(3121), - [sym_hex_literal] = ACTIONS(3123), - [sym_bin_literal] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3123), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(4523), + [1008] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3123), + [sym__string_start] = ACTIONS(3098), }, - [999] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_get] = ACTIONS(4730), - [anon_sym_set] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), + [1009] = { + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_object] = ACTIONS(4706), + [anon_sym_fun] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_this] = ACTIONS(4706), + [anon_sym_super] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [sym_label] = ACTIONS(4706), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_when] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_throw] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4708), + [anon_sym_continue_AT] = ACTIONS(4708), + [anon_sym_break_AT] = ACTIONS(4708), + [anon_sym_this_AT] = ACTIONS(4708), + [anon_sym_super_AT] = ACTIONS(4708), + [sym_real_literal] = ACTIONS(4708), + [sym_integer_literal] = ACTIONS(4706), + [sym_hex_literal] = ACTIONS(4708), + [sym_bin_literal] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4708), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4708), + }, + [1010] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_object] = ACTIONS(3044), + [anon_sym_fun] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4624), + [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(4479), + [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(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3046), + [anon_sym_continue_AT] = ACTIONS(3046), + [anon_sym_break_AT] = ACTIONS(3046), + [anon_sym_this_AT] = ACTIONS(3046), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3046), + }, + [1011] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_object] = ACTIONS(3122), + [anon_sym_fun] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_super] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [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(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [anon_sym_this_AT] = ACTIONS(3124), + [anon_sym_super_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [1012] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1678), + [sym__comparison_operator] = STATE(1682), + [sym__in_operator] = STATE(1683), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1685), + [sym__multiplicative_operator] = STATE(1686), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1687), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4467), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_fun] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_super] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(4469), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(4473), + [anon_sym_DOT_DOT] = ACTIONS(4475), + [anon_sym_QMARK_COLON] = ACTIONS(4477), + [anon_sym_AMP_AMP] = ACTIONS(4622), + [anon_sym_PIPE_PIPE] = ACTIONS(4624), + [anon_sym_null] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(4626), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4628), + [anon_sym_EQ_EQ] = ACTIONS(4626), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4628), + [anon_sym_LT_EQ] = ACTIONS(4481), + [anon_sym_GT_EQ] = ACTIONS(4481), + [anon_sym_BANGin] = ACTIONS(4483), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(4489), + [anon_sym_DASH] = ACTIONS(4489), + [anon_sym_SLASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3113), + [anon_sym_continue_AT] = ACTIONS(3113), + [anon_sym_break_AT] = ACTIONS(3113), + [anon_sym_this_AT] = ACTIONS(3113), + [anon_sym_super_AT] = ACTIONS(3113), + [sym_real_literal] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_hex_literal] = ACTIONS(3113), + [sym_bin_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3113), + }, + [1013] = { + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), + }, + [1014] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_object] = ACTIONS(4710), + [anon_sym_fun] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_this] = ACTIONS(4710), + [anon_sym_super] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_when] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_throw] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4712), + [anon_sym_continue_AT] = ACTIONS(4712), + [anon_sym_break_AT] = ACTIONS(4712), + [anon_sym_this_AT] = ACTIONS(4712), + [anon_sym_super_AT] = ACTIONS(4712), + [sym_real_literal] = ACTIONS(4712), + [sym_integer_literal] = ACTIONS(4710), + [sym_hex_literal] = ACTIONS(4712), + [sym_bin_literal] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4712), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4712), + }, + [1015] = { + [sym__alpha_identifier] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_as] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4714), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_COMMA] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_where] = ACTIONS(4714), + [anon_sym_object] = ACTIONS(4714), + [anon_sym_fun] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_get] = ACTIONS(4714), + [anon_sym_set] = ACTIONS(4714), + [anon_sym_this] = ACTIONS(4714), + [anon_sym_super] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [sym_label] = ACTIONS(4714), + [anon_sym_in] = ACTIONS(4714), + [anon_sym_DOT_DOT] = ACTIONS(4716), + [anon_sym_QMARK_COLON] = ACTIONS(4716), + [anon_sym_AMP_AMP] = ACTIONS(4716), + [anon_sym_PIPE_PIPE] = ACTIONS(4716), + [anon_sym_null] = ACTIONS(4714), + [anon_sym_if] = ACTIONS(4714), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_when] = ACTIONS(4714), + [anon_sym_try] = ACTIONS(4714), + [anon_sym_throw] = ACTIONS(4714), + [anon_sym_return] = ACTIONS(4714), + [anon_sym_continue] = ACTIONS(4714), + [anon_sym_break] = ACTIONS(4714), + [anon_sym_COLON_COLON] = ACTIONS(4716), + [anon_sym_PLUS_EQ] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4716), + [anon_sym_STAR_EQ] = ACTIONS(4716), + [anon_sym_SLASH_EQ] = ACTIONS(4716), + [anon_sym_PERCENT_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ] = ACTIONS(4714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), + [anon_sym_LT_EQ] = ACTIONS(4716), + [anon_sym_GT_EQ] = ACTIONS(4716), + [anon_sym_BANGin] = ACTIONS(4716), + [anon_sym_is] = ACTIONS(4714), + [anon_sym_BANGis] = ACTIONS(4716), + [anon_sym_PLUS] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4714), + [anon_sym_SLASH] = ACTIONS(4714), + [anon_sym_PERCENT] = ACTIONS(4714), + [anon_sym_as_QMARK] = ACTIONS(4716), + [anon_sym_PLUS_PLUS] = ACTIONS(4716), + [anon_sym_DASH_DASH] = ACTIONS(4716), + [anon_sym_BANG] = ACTIONS(4714), + [anon_sym_BANG_BANG] = ACTIONS(4716), + [anon_sym_suspend] = ACTIONS(4714), + [anon_sym_sealed] = ACTIONS(4714), + [anon_sym_annotation] = ACTIONS(4714), + [anon_sym_data] = ACTIONS(4714), + [anon_sym_inner] = ACTIONS(4714), + [anon_sym_value] = ACTIONS(4714), + [anon_sym_override] = ACTIONS(4714), + [anon_sym_lateinit] = ACTIONS(4714), + [anon_sym_public] = ACTIONS(4714), + [anon_sym_private] = ACTIONS(4714), + [anon_sym_internal] = ACTIONS(4714), + [anon_sym_protected] = ACTIONS(4714), + [anon_sym_tailrec] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(4714), + [anon_sym_infix] = ACTIONS(4714), + [anon_sym_inline] = ACTIONS(4714), + [anon_sym_external] = ACTIONS(4714), + [sym_property_modifier] = ACTIONS(4714), + [anon_sym_abstract] = ACTIONS(4714), + [anon_sym_final] = ACTIONS(4714), + [anon_sym_open] = ACTIONS(4714), + [anon_sym_vararg] = ACTIONS(4714), + [anon_sym_noinline] = ACTIONS(4714), + [anon_sym_crossinline] = ACTIONS(4714), + [anon_sym_expect] = ACTIONS(4714), + [anon_sym_actual] = ACTIONS(4714), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4716), + [anon_sym_continue_AT] = ACTIONS(4716), + [anon_sym_break_AT] = ACTIONS(4716), + [anon_sym_this_AT] = ACTIONS(4716), + [anon_sym_super_AT] = ACTIONS(4716), + [sym_real_literal] = ACTIONS(4716), + [sym_integer_literal] = ACTIONS(4714), + [sym_hex_literal] = ACTIONS(4716), + [sym_bin_literal] = ACTIONS(4716), + [anon_sym_true] = ACTIONS(4714), + [anon_sym_false] = ACTIONS(4714), + [anon_sym_SQUOTE] = ACTIONS(4716), + [sym__backtick_identifier] = ACTIONS(4716), + [sym__automatic_semicolon] = ACTIONS(4716), + [sym_safe_nav] = ACTIONS(4716), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4716), + }, + [1016] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4718), + [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_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_this] = ACTIONS(4718), + [anon_sym_super] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [sym_label] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_QMARK_COLON] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_null] = ACTIONS(4718), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_when] = ACTIONS(4718), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_throw] = ACTIONS(4718), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_PERCENT_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_BANGin] = ACTIONS(4720), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_as_QMARK] = ACTIONS(4720), + [anon_sym_PLUS_PLUS] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4720), + [anon_sym_suspend] = ACTIONS(4718), + [anon_sym_sealed] = ACTIONS(4718), + [anon_sym_annotation] = ACTIONS(4718), + [anon_sym_data] = ACTIONS(4718), + [anon_sym_inner] = ACTIONS(4718), + [anon_sym_value] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_lateinit] = ACTIONS(4718), + [anon_sym_public] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4718), + [anon_sym_internal] = ACTIONS(4718), + [anon_sym_protected] = ACTIONS(4718), + [anon_sym_tailrec] = ACTIONS(4718), + [anon_sym_operator] = ACTIONS(4718), + [anon_sym_infix] = ACTIONS(4718), + [anon_sym_inline] = ACTIONS(4718), + [anon_sym_external] = ACTIONS(4718), + [sym_property_modifier] = ACTIONS(4718), + [anon_sym_abstract] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_open] = ACTIONS(4718), + [anon_sym_vararg] = ACTIONS(4718), + [anon_sym_noinline] = ACTIONS(4718), + [anon_sym_crossinline] = ACTIONS(4718), + [anon_sym_expect] = ACTIONS(4718), + [anon_sym_actual] = ACTIONS(4718), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4720), + [anon_sym_continue_AT] = ACTIONS(4720), + [anon_sym_break_AT] = ACTIONS(4720), + [anon_sym_this_AT] = ACTIONS(4720), + [anon_sym_super_AT] = ACTIONS(4720), + [sym_real_literal] = ACTIONS(4720), + [sym_integer_literal] = ACTIONS(4718), + [sym_hex_literal] = ACTIONS(4720), + [sym_bin_literal] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4720), + [sym__backtick_identifier] = ACTIONS(4720), + [sym__automatic_semicolon] = ACTIONS(4720), + [sym_safe_nav] = ACTIONS(4720), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4720), + }, + [1017] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [1018] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_DOT] = ACTIONS(4722), + [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_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_this] = ACTIONS(4722), + [anon_sym_super] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_throw] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4724), + [anon_sym_continue_AT] = ACTIONS(4724), + [anon_sym_break_AT] = ACTIONS(4724), + [anon_sym_this_AT] = ACTIONS(4724), + [anon_sym_super_AT] = ACTIONS(4724), + [sym_real_literal] = ACTIONS(4724), + [sym_integer_literal] = ACTIONS(4722), + [sym_hex_literal] = ACTIONS(4724), + [sym_bin_literal] = ACTIONS(4724), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4724), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4724), + }, + [1019] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_null] = ACTIONS(4726), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), + }, + [1020] = { + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(4416), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), + }, + [1021] = { + [sym__alpha_identifier] = ACTIONS(4256), + [anon_sym_AT] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4258), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_EQ] = ACTIONS(4256), + [anon_sym_LBRACE] = ACTIONS(4258), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_LPAREN] = ACTIONS(4258), + [anon_sym_COMMA] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_object] = ACTIONS(4256), + [anon_sym_fun] = ACTIONS(4256), + [anon_sym_SEMI] = ACTIONS(4258), + [anon_sym_get] = ACTIONS(4256), + [anon_sym_set] = ACTIONS(4256), + [anon_sym_this] = ACTIONS(4256), + [anon_sym_super] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(4256), + [sym_label] = ACTIONS(4256), + [anon_sym_in] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(4258), + [anon_sym_QMARK_COLON] = ACTIONS(4258), + [anon_sym_AMP_AMP] = ACTIONS(4258), + [anon_sym_PIPE_PIPE] = ACTIONS(4258), + [anon_sym_null] = ACTIONS(4256), + [anon_sym_if] = ACTIONS(4256), + [anon_sym_else] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4256), + [anon_sym_try] = ACTIONS(4256), + [anon_sym_throw] = ACTIONS(4256), + [anon_sym_return] = ACTIONS(4256), + [anon_sym_continue] = ACTIONS(4256), + [anon_sym_break] = ACTIONS(4256), + [anon_sym_COLON_COLON] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_BANG_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), + [anon_sym_EQ_EQ] = ACTIONS(4256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), + [anon_sym_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_EQ] = ACTIONS(4258), + [anon_sym_BANGin] = ACTIONS(4258), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_BANGis] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [anon_sym_SLASH] = ACTIONS(4256), + [anon_sym_PERCENT] = ACTIONS(4256), + [anon_sym_as_QMARK] = ACTIONS(4258), + [anon_sym_PLUS_PLUS] = ACTIONS(4258), + [anon_sym_DASH_DASH] = ACTIONS(4258), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_BANG_BANG] = ACTIONS(4258), + [anon_sym_suspend] = ACTIONS(4256), + [anon_sym_sealed] = ACTIONS(4256), + [anon_sym_annotation] = ACTIONS(4256), + [anon_sym_data] = ACTIONS(4256), + [anon_sym_inner] = ACTIONS(4256), + [anon_sym_value] = ACTIONS(4256), + [anon_sym_override] = ACTIONS(4256), + [anon_sym_lateinit] = ACTIONS(4256), + [anon_sym_public] = ACTIONS(4256), + [anon_sym_private] = ACTIONS(4256), + [anon_sym_internal] = ACTIONS(4256), + [anon_sym_protected] = ACTIONS(4256), + [anon_sym_tailrec] = ACTIONS(4256), + [anon_sym_operator] = ACTIONS(4256), + [anon_sym_infix] = ACTIONS(4256), + [anon_sym_inline] = ACTIONS(4256), + [anon_sym_external] = ACTIONS(4256), + [sym_property_modifier] = ACTIONS(4256), + [anon_sym_abstract] = ACTIONS(4256), + [anon_sym_final] = ACTIONS(4256), + [anon_sym_open] = ACTIONS(4256), + [anon_sym_vararg] = ACTIONS(4256), + [anon_sym_noinline] = ACTIONS(4256), + [anon_sym_crossinline] = ACTIONS(4256), + [anon_sym_expect] = ACTIONS(4256), + [anon_sym_actual] = ACTIONS(4256), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(4258), + [anon_sym_continue_AT] = ACTIONS(4258), + [anon_sym_break_AT] = ACTIONS(4258), + [anon_sym_this_AT] = ACTIONS(4258), + [anon_sym_super_AT] = ACTIONS(4258), + [sym_real_literal] = ACTIONS(4258), + [sym_integer_literal] = ACTIONS(4256), + [sym_hex_literal] = ACTIONS(4258), + [sym_bin_literal] = ACTIONS(4258), + [anon_sym_true] = ACTIONS(4256), + [anon_sym_false] = ACTIONS(4256), + [anon_sym_SQUOTE] = ACTIONS(4258), + [sym__backtick_identifier] = ACTIONS(4258), + [sym__automatic_semicolon] = ACTIONS(4258), + [sym_safe_nav] = ACTIONS(4258), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4258), }, - [1000] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4750), - [anon_sym_get] = ACTIONS(4730), + [1022] = { + [sym_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(4730), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_fun] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_this] = ACTIONS(4325), + [anon_sym_super] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_when] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_PLUS_EQ] = ACTIONS(4327), + [anon_sym_DASH_EQ] = ACTIONS(4327), + [anon_sym_STAR_EQ] = ACTIONS(4327), + [anon_sym_SLASH_EQ] = ACTIONS(4327), + [anon_sym_PERCENT_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4325), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4327), + [anon_sym_continue_AT] = ACTIONS(4327), + [anon_sym_break_AT] = ACTIONS(4327), + [anon_sym_this_AT] = ACTIONS(4327), + [anon_sym_super_AT] = ACTIONS(4327), + [sym_real_literal] = ACTIONS(4327), + [sym_integer_literal] = ACTIONS(4325), + [sym_hex_literal] = ACTIONS(4327), + [sym_bin_literal] = ACTIONS(4327), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4327), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4327), + }, + [1023] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_object] = ACTIONS(4732), + [anon_sym_fun] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), [anon_sym_set] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_this] = ACTIONS(4732), + [anon_sym_super] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4732), + [anon_sym_if] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_when] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4732), + [anon_sym_throw] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4732), + [anon_sym_continue] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4732), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4734), + [anon_sym_continue_AT] = ACTIONS(4734), + [anon_sym_break_AT] = ACTIONS(4734), + [anon_sym_this_AT] = ACTIONS(4734), + [anon_sym_super_AT] = ACTIONS(4734), + [sym_real_literal] = ACTIONS(4734), + [sym_integer_literal] = ACTIONS(4732), + [sym_hex_literal] = ACTIONS(4734), + [sym_bin_literal] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4732), + [anon_sym_false] = ACTIONS(4732), + [anon_sym_SQUOTE] = ACTIONS(4734), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4734), + }, + [1024] = { + [sym_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_object] = ACTIONS(4353), + [anon_sym_fun] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_this] = ACTIONS(4353), + [anon_sym_super] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [sym_label] = ACTIONS(4353), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_null] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_try] = ACTIONS(4353), + [anon_sym_throw] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_PLUS_EQ] = ACTIONS(4355), + [anon_sym_DASH_EQ] = ACTIONS(4355), + [anon_sym_STAR_EQ] = ACTIONS(4355), + [anon_sym_SLASH_EQ] = ACTIONS(4355), + [anon_sym_PERCENT_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4355), + [anon_sym_continue_AT] = ACTIONS(4355), + [anon_sym_break_AT] = ACTIONS(4355), + [anon_sym_this_AT] = ACTIONS(4355), + [anon_sym_super_AT] = ACTIONS(4355), + [sym_real_literal] = ACTIONS(4355), + [sym_integer_literal] = ACTIONS(4353), + [sym_hex_literal] = ACTIONS(4355), + [sym_bin_literal] = ACTIONS(4355), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4355), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4355), + }, + [1025] = { + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_PLUS_EQ] = ACTIONS(4240), + [anon_sym_DASH_EQ] = ACTIONS(4240), + [anon_sym_STAR_EQ] = ACTIONS(4240), + [anon_sym_SLASH_EQ] = ACTIONS(4240), + [anon_sym_PERCENT_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_return_AT] = ACTIONS(4240), + [anon_sym_continue_AT] = ACTIONS(4240), + [anon_sym_break_AT] = ACTIONS(4240), + [anon_sym_this_AT] = ACTIONS(4240), + [anon_sym_super_AT] = ACTIONS(4240), + [sym_real_literal] = ACTIONS(4240), + [sym_integer_literal] = ACTIONS(4238), + [sym_hex_literal] = ACTIONS(4240), + [sym_bin_literal] = ACTIONS(4240), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4240), }, - [1001] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_get] = ACTIONS(4680), - [anon_sym_set] = ACTIONS(4682), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [1026] = { + [sym_getter] = STATE(3899), + [sym_setter] = STATE(3899), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(4740), + [anon_sym_get] = ACTIONS(4742), + [anon_sym_set] = ACTIONS(4744), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -161425,1509 +164354,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1002] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_fun] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_null] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_when] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3127), - [anon_sym_continue_AT] = ACTIONS(3127), - [anon_sym_break_AT] = ACTIONS(3127), - [anon_sym_this_AT] = ACTIONS(3127), - [anon_sym_super_AT] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3127), - [sym_integer_literal] = ACTIONS(3125), - [sym_hex_literal] = ACTIONS(3127), - [sym_bin_literal] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3127), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), - }, - [1003] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_fun] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_super] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(4571), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3131), - [anon_sym_continue_AT] = ACTIONS(3131), - [anon_sym_break_AT] = ACTIONS(3131), - [anon_sym_this_AT] = ACTIONS(3131), - [anon_sym_super_AT] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_hex_literal] = ACTIONS(3131), - [sym_bin_literal] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3131), - }, - [1004] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4563), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3133), - [anon_sym_super] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(4565), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(4569), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_when] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_throw] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(4575), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4577), - [anon_sym_EQ_EQ] = ACTIONS(4575), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4577), - [anon_sym_LT_EQ] = ACTIONS(4579), - [anon_sym_GT_EQ] = ACTIONS(4579), - [anon_sym_BANGin] = ACTIONS(4581), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3135), - [anon_sym_continue_AT] = ACTIONS(3135), - [anon_sym_break_AT] = ACTIONS(3135), - [anon_sym_this_AT] = ACTIONS(3135), - [anon_sym_super_AT] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3135), - [sym_integer_literal] = ACTIONS(3133), - [sym_hex_literal] = ACTIONS(3135), - [sym_bin_literal] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3135), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3135), - }, - [1005] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_fun] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3152), - [anon_sym_super] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [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(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3154), - [anon_sym_DASH_EQ] = ACTIONS(3154), - [anon_sym_STAR_EQ] = ACTIONS(3154), - [anon_sym_SLASH_EQ] = ACTIONS(3154), - [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3154), - [anon_sym_continue_AT] = ACTIONS(3154), - [anon_sym_break_AT] = ACTIONS(3154), - [anon_sym_this_AT] = ACTIONS(3154), - [anon_sym_super_AT] = ACTIONS(3154), - [sym_real_literal] = ACTIONS(3154), - [sym_integer_literal] = ACTIONS(3152), - [sym_hex_literal] = ACTIONS(3154), - [sym_bin_literal] = ACTIONS(3154), - [anon_sym_true] = ACTIONS(3152), - [anon_sym_false] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3154), - }, - [1006] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_fun] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3193), - [anon_sym_super] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3195), - [anon_sym_continue_AT] = ACTIONS(3195), - [anon_sym_break_AT] = ACTIONS(3195), - [anon_sym_this_AT] = ACTIONS(3195), - [anon_sym_super_AT] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_hex_literal] = ACTIONS(3195), - [sym_bin_literal] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3195), - }, - [1007] = { - [sym_enum_class_body] = STATE(1104), - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_EQ] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(3240), - [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_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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4462), - [anon_sym_super_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), - }, - [1008] = { - [sym_enum_class_body] = STATE(1058), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(3240), - [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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_this] = ACTIONS(4754), - [anon_sym_super] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(4754), - [anon_sym_if] = ACTIONS(4754), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_when] = ACTIONS(4754), - [anon_sym_try] = ACTIONS(4754), - [anon_sym_throw] = ACTIONS(4754), - [anon_sym_return] = ACTIONS(4754), - [anon_sym_continue] = ACTIONS(4754), - [anon_sym_break] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4756), - [anon_sym_continue_AT] = ACTIONS(4756), - [anon_sym_break_AT] = ACTIONS(4756), - [anon_sym_this_AT] = ACTIONS(4756), - [anon_sym_super_AT] = ACTIONS(4756), - [sym_real_literal] = ACTIONS(4756), - [sym_integer_literal] = ACTIONS(4754), - [sym_hex_literal] = ACTIONS(4756), - [sym_bin_literal] = ACTIONS(4756), - [anon_sym_true] = ACTIONS(4754), - [anon_sym_false] = ACTIONS(4754), - [anon_sym_SQUOTE] = ACTIONS(4756), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4756), - }, - [1009] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4758), - [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_SEMI] = ACTIONS(4760), - [anon_sym_get] = ACTIONS(4758), - [anon_sym_set] = ACTIONS(4758), - [anon_sym_this] = ACTIONS(4758), - [anon_sym_super] = ACTIONS(4758), - [anon_sym_STAR] = ACTIONS(4758), - [sym_label] = ACTIONS(4758), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_QMARK_COLON] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [anon_sym_null] = ACTIONS(4758), - [anon_sym_if] = ACTIONS(4758), - [anon_sym_else] = ACTIONS(4758), - [anon_sym_when] = ACTIONS(4758), - [anon_sym_try] = ACTIONS(4758), - [anon_sym_throw] = ACTIONS(4758), - [anon_sym_return] = ACTIONS(4758), - [anon_sym_continue] = ACTIONS(4758), - [anon_sym_break] = ACTIONS(4758), - [anon_sym_COLON_COLON] = ACTIONS(4760), - [anon_sym_PLUS_EQ] = ACTIONS(4760), - [anon_sym_DASH_EQ] = ACTIONS(4760), - [anon_sym_STAR_EQ] = ACTIONS(4760), - [anon_sym_SLASH_EQ] = ACTIONS(4760), - [anon_sym_PERCENT_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_BANGin] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4758), - [anon_sym_BANGis] = ACTIONS(4760), - [anon_sym_PLUS] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_SLASH] = ACTIONS(4758), - [anon_sym_PERCENT] = ACTIONS(4758), - [anon_sym_as_QMARK] = ACTIONS(4760), - [anon_sym_PLUS_PLUS] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4760), - [anon_sym_BANG] = ACTIONS(4758), - [anon_sym_BANG_BANG] = ACTIONS(4760), - [anon_sym_suspend] = ACTIONS(4758), - [anon_sym_sealed] = ACTIONS(4758), - [anon_sym_annotation] = ACTIONS(4758), - [anon_sym_data] = ACTIONS(4758), - [anon_sym_inner] = ACTIONS(4758), - [anon_sym_value] = ACTIONS(4758), - [anon_sym_override] = ACTIONS(4758), - [anon_sym_lateinit] = ACTIONS(4758), - [anon_sym_public] = ACTIONS(4758), - [anon_sym_private] = ACTIONS(4758), - [anon_sym_internal] = ACTIONS(4758), - [anon_sym_protected] = ACTIONS(4758), - [anon_sym_tailrec] = ACTIONS(4758), - [anon_sym_operator] = ACTIONS(4758), - [anon_sym_infix] = ACTIONS(4758), - [anon_sym_inline] = ACTIONS(4758), - [anon_sym_external] = ACTIONS(4758), - [sym_property_modifier] = ACTIONS(4758), - [anon_sym_abstract] = ACTIONS(4758), - [anon_sym_final] = ACTIONS(4758), - [anon_sym_open] = ACTIONS(4758), - [anon_sym_vararg] = ACTIONS(4758), - [anon_sym_noinline] = ACTIONS(4758), - [anon_sym_crossinline] = ACTIONS(4758), - [anon_sym_expect] = ACTIONS(4758), - [anon_sym_actual] = ACTIONS(4758), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4760), - [anon_sym_continue_AT] = ACTIONS(4760), - [anon_sym_break_AT] = ACTIONS(4760), - [anon_sym_this_AT] = ACTIONS(4760), - [anon_sym_super_AT] = ACTIONS(4760), - [sym_real_literal] = ACTIONS(4760), - [sym_integer_literal] = ACTIONS(4758), - [sym_hex_literal] = ACTIONS(4760), - [sym_bin_literal] = ACTIONS(4760), - [anon_sym_true] = ACTIONS(4758), - [anon_sym_false] = ACTIONS(4758), - [anon_sym_SQUOTE] = ACTIONS(4760), - [sym__backtick_identifier] = ACTIONS(4760), - [sym__automatic_semicolon] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4760), - }, - [1010] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_fun] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_super] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(4519), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(4567), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_when] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4519), - [anon_sym_PERCENT] = ACTIONS(4519), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [anon_sym_this_AT] = ACTIONS(3168), - [anon_sym_super_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3166), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), - }, - [1011] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2099), - [sym__comparison_operator] = STATE(2097), - [sym__in_operator] = STATE(2096), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2095), - [sym__multiplicative_operator] = STATE(2079), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2055), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_object] = ACTIONS(3159), - [anon_sym_fun] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_super] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_null] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3161), - [anon_sym_continue_AT] = ACTIONS(3161), - [anon_sym_break_AT] = ACTIONS(3161), - [anon_sym_this_AT] = ACTIONS(3161), - [anon_sym_super_AT] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_hex_literal] = ACTIONS(3161), - [sym_bin_literal] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3161), - }, - [1012] = { - [sym_class_body] = STATE(1058), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(3210), - [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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_this] = ACTIONS(4754), - [anon_sym_super] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(4754), - [anon_sym_if] = ACTIONS(4754), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_when] = ACTIONS(4754), - [anon_sym_try] = ACTIONS(4754), - [anon_sym_throw] = ACTIONS(4754), - [anon_sym_return] = ACTIONS(4754), - [anon_sym_continue] = ACTIONS(4754), - [anon_sym_break] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4756), - [anon_sym_continue_AT] = ACTIONS(4756), - [anon_sym_break_AT] = ACTIONS(4756), - [anon_sym_this_AT] = ACTIONS(4756), - [anon_sym_super_AT] = ACTIONS(4756), - [sym_real_literal] = ACTIONS(4756), - [sym_integer_literal] = ACTIONS(4754), - [sym_hex_literal] = ACTIONS(4756), - [sym_bin_literal] = ACTIONS(4756), - [anon_sym_true] = ACTIONS(4754), - [anon_sym_false] = ACTIONS(4754), - [anon_sym_SQUOTE] = ACTIONS(4756), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4756), - }, - [1013] = { - [sym__alpha_identifier] = ACTIONS(4762), - [anon_sym_AT] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4762), - [anon_sym_as] = ACTIONS(4762), - [anon_sym_EQ] = ACTIONS(4762), - [anon_sym_LBRACE] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4762), - [anon_sym_object] = ACTIONS(4762), - [anon_sym_fun] = 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_suspend] = ACTIONS(4762), - [anon_sym_sealed] = ACTIONS(4762), - [anon_sym_annotation] = ACTIONS(4762), - [anon_sym_data] = ACTIONS(4762), - [anon_sym_inner] = ACTIONS(4762), - [anon_sym_value] = ACTIONS(4762), - [anon_sym_override] = ACTIONS(4762), - [anon_sym_lateinit] = ACTIONS(4762), - [anon_sym_public] = ACTIONS(4762), - [anon_sym_private] = ACTIONS(4762), - [anon_sym_internal] = ACTIONS(4762), - [anon_sym_protected] = ACTIONS(4762), - [anon_sym_tailrec] = ACTIONS(4762), - [anon_sym_operator] = ACTIONS(4762), - [anon_sym_infix] = ACTIONS(4762), - [anon_sym_inline] = ACTIONS(4762), - [anon_sym_external] = ACTIONS(4762), - [sym_property_modifier] = ACTIONS(4762), - [anon_sym_abstract] = ACTIONS(4762), - [anon_sym_final] = ACTIONS(4762), - [anon_sym_open] = ACTIONS(4762), - [anon_sym_vararg] = ACTIONS(4762), - [anon_sym_noinline] = ACTIONS(4762), - [anon_sym_crossinline] = ACTIONS(4762), - [anon_sym_expect] = ACTIONS(4762), - [anon_sym_actual] = ACTIONS(4762), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4764), - [anon_sym_continue_AT] = ACTIONS(4764), - [anon_sym_break_AT] = ACTIONS(4764), - [anon_sym_this_AT] = ACTIONS(4764), - [anon_sym_super_AT] = ACTIONS(4764), - [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), - }, - [1014] = { - [sym__alpha_identifier] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_EQ] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_object] = ACTIONS(4104), - [anon_sym_fun] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_get] = ACTIONS(4104), - [anon_sym_set] = ACTIONS(4104), - [anon_sym_this] = ACTIONS(4104), - [anon_sym_super] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [sym_label] = ACTIONS(4104), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_QMARK_COLON] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_null] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_else] = ACTIONS(4104), - [anon_sym_when] = ACTIONS(4104), - [anon_sym_try] = ACTIONS(4104), - [anon_sym_throw] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_BANGin] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_BANGis] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_as_QMARK] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_BANG_BANG] = ACTIONS(4106), - [anon_sym_suspend] = ACTIONS(4104), - [anon_sym_sealed] = ACTIONS(4104), - [anon_sym_annotation] = ACTIONS(4104), - [anon_sym_data] = ACTIONS(4104), - [anon_sym_inner] = ACTIONS(4104), - [anon_sym_value] = ACTIONS(4104), - [anon_sym_override] = ACTIONS(4104), - [anon_sym_lateinit] = ACTIONS(4104), - [anon_sym_public] = ACTIONS(4104), - [anon_sym_private] = ACTIONS(4104), - [anon_sym_internal] = ACTIONS(4104), - [anon_sym_protected] = ACTIONS(4104), - [anon_sym_tailrec] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_infix] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym_external] = ACTIONS(4104), - [sym_property_modifier] = ACTIONS(4104), - [anon_sym_abstract] = ACTIONS(4104), - [anon_sym_final] = ACTIONS(4104), - [anon_sym_open] = ACTIONS(4104), - [anon_sym_vararg] = ACTIONS(4104), - [anon_sym_noinline] = ACTIONS(4104), - [anon_sym_crossinline] = ACTIONS(4104), - [anon_sym_expect] = ACTIONS(4104), - [anon_sym_actual] = ACTIONS(4104), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4106), - [anon_sym_continue_AT] = ACTIONS(4106), - [anon_sym_break_AT] = ACTIONS(4106), - [anon_sym_this_AT] = ACTIONS(4106), - [anon_sym_super_AT] = ACTIONS(4106), - [sym_real_literal] = ACTIONS(4106), - [sym_integer_literal] = ACTIONS(4104), - [sym_hex_literal] = ACTIONS(4106), - [sym_bin_literal] = ACTIONS(4106), - [anon_sym_true] = ACTIONS(4104), - [anon_sym_false] = ACTIONS(4104), - [anon_sym_SQUOTE] = ACTIONS(4106), - [sym__backtick_identifier] = ACTIONS(4106), - [sym__automatic_semicolon] = ACTIONS(4106), - [sym_safe_nav] = ACTIONS(4106), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4106), - }, - [1015] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4766), - [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_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_suspend] = ACTIONS(4766), - [anon_sym_sealed] = ACTIONS(4766), - [anon_sym_annotation] = ACTIONS(4766), - [anon_sym_data] = ACTIONS(4766), - [anon_sym_inner] = ACTIONS(4766), - [anon_sym_value] = ACTIONS(4766), - [anon_sym_override] = ACTIONS(4766), - [anon_sym_lateinit] = ACTIONS(4766), - [anon_sym_public] = ACTIONS(4766), - [anon_sym_private] = ACTIONS(4766), - [anon_sym_internal] = ACTIONS(4766), - [anon_sym_protected] = ACTIONS(4766), - [anon_sym_tailrec] = ACTIONS(4766), - [anon_sym_operator] = ACTIONS(4766), - [anon_sym_infix] = ACTIONS(4766), - [anon_sym_inline] = ACTIONS(4766), - [anon_sym_external] = ACTIONS(4766), - [sym_property_modifier] = ACTIONS(4766), - [anon_sym_abstract] = ACTIONS(4766), - [anon_sym_final] = ACTIONS(4766), - [anon_sym_open] = ACTIONS(4766), - [anon_sym_vararg] = ACTIONS(4766), - [anon_sym_noinline] = ACTIONS(4766), - [anon_sym_crossinline] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4768), - [anon_sym_continue_AT] = ACTIONS(4768), - [anon_sym_break_AT] = ACTIONS(4768), - [anon_sym_this_AT] = ACTIONS(4768), - [anon_sym_super_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), }, - [1016] = { + [1027] = { [sym__alpha_identifier] = ACTIONS(4770), [anon_sym_AT] = ACTIONS(4772), [anon_sym_LBRACK] = ACTIONS(4772), @@ -163033,86 +164468,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4772), }, - [1017] = { - [sym_getter] = STATE(3913), - [sym_setter] = STATE(3913), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4776), - [anon_sym_get] = ACTIONS(4778), - [anon_sym_set] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [1028] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_get] = ACTIONS(4742), + [anon_sym_set] = ACTIONS(4744), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -163131,94 +164566,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [1018] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4806), - [anon_sym_get] = ACTIONS(4778), + [1029] = { + [sym__alpha_identifier] = ACTIONS(4776), + [anon_sym_AT] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(4776), + [anon_sym_LBRACE] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_where] = ACTIONS(4776), + [anon_sym_object] = ACTIONS(4776), + [anon_sym_fun] = ACTIONS(4776), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym_get] = ACTIONS(4776), + [anon_sym_set] = ACTIONS(4776), + [anon_sym_this] = ACTIONS(4776), + [anon_sym_super] = ACTIONS(4776), + [anon_sym_STAR] = ACTIONS(4776), + [sym_label] = ACTIONS(4776), + [anon_sym_in] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4778), + [anon_sym_QMARK_COLON] = ACTIONS(4778), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE_PIPE] = ACTIONS(4778), + [anon_sym_null] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_when] = ACTIONS(4776), + [anon_sym_try] = ACTIONS(4776), + [anon_sym_throw] = ACTIONS(4776), + [anon_sym_return] = ACTIONS(4776), + [anon_sym_continue] = ACTIONS(4776), + [anon_sym_break] = ACTIONS(4776), + [anon_sym_COLON_COLON] = ACTIONS(4778), + [anon_sym_PLUS_EQ] = ACTIONS(4778), + [anon_sym_DASH_EQ] = ACTIONS(4778), + [anon_sym_STAR_EQ] = ACTIONS(4778), + [anon_sym_SLASH_EQ] = ACTIONS(4778), + [anon_sym_PERCENT_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4778), + [anon_sym_LT_EQ] = ACTIONS(4778), + [anon_sym_GT_EQ] = ACTIONS(4778), + [anon_sym_BANGin] = ACTIONS(4778), + [anon_sym_is] = ACTIONS(4776), + [anon_sym_BANGis] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4776), + [anon_sym_DASH] = ACTIONS(4776), + [anon_sym_SLASH] = ACTIONS(4776), + [anon_sym_PERCENT] = ACTIONS(4776), + [anon_sym_as_QMARK] = ACTIONS(4778), + [anon_sym_PLUS_PLUS] = ACTIONS(4778), + [anon_sym_DASH_DASH] = ACTIONS(4778), + [anon_sym_BANG] = ACTIONS(4776), + [anon_sym_BANG_BANG] = ACTIONS(4778), + [anon_sym_suspend] = ACTIONS(4776), + [anon_sym_sealed] = ACTIONS(4776), + [anon_sym_annotation] = ACTIONS(4776), + [anon_sym_data] = ACTIONS(4776), + [anon_sym_inner] = ACTIONS(4776), + [anon_sym_value] = ACTIONS(4776), + [anon_sym_override] = ACTIONS(4776), + [anon_sym_lateinit] = ACTIONS(4776), + [anon_sym_public] = ACTIONS(4776), + [anon_sym_private] = ACTIONS(4776), + [anon_sym_internal] = ACTIONS(4776), + [anon_sym_protected] = ACTIONS(4776), + [anon_sym_tailrec] = ACTIONS(4776), + [anon_sym_operator] = ACTIONS(4776), + [anon_sym_infix] = ACTIONS(4776), + [anon_sym_inline] = ACTIONS(4776), + [anon_sym_external] = ACTIONS(4776), + [sym_property_modifier] = ACTIONS(4776), + [anon_sym_abstract] = ACTIONS(4776), + [anon_sym_final] = ACTIONS(4776), + [anon_sym_open] = ACTIONS(4776), + [anon_sym_vararg] = ACTIONS(4776), + [anon_sym_noinline] = ACTIONS(4776), + [anon_sym_crossinline] = ACTIONS(4776), + [anon_sym_expect] = ACTIONS(4776), + [anon_sym_actual] = ACTIONS(4776), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4778), + [anon_sym_continue_AT] = ACTIONS(4778), + [anon_sym_break_AT] = ACTIONS(4778), + [anon_sym_this_AT] = ACTIONS(4778), + [anon_sym_super_AT] = ACTIONS(4778), + [sym_real_literal] = ACTIONS(4778), + [sym_integer_literal] = ACTIONS(4776), + [sym_hex_literal] = ACTIONS(4778), + [sym_bin_literal] = ACTIONS(4778), + [anon_sym_true] = ACTIONS(4776), + [anon_sym_false] = ACTIONS(4776), + [anon_sym_SQUOTE] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4778), + [sym__automatic_semicolon] = ACTIONS(4778), + [sym_safe_nav] = ACTIONS(4778), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4778), + }, + [1030] = { + [sym__alpha_identifier] = ACTIONS(4780), + [anon_sym_AT] = ACTIONS(4782), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4780), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_COMMA] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_where] = ACTIONS(4780), + [anon_sym_object] = ACTIONS(4780), + [anon_sym_fun] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4782), + [anon_sym_get] = ACTIONS(4780), [anon_sym_set] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [anon_sym_this] = ACTIONS(4780), + [anon_sym_super] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4780), + [anon_sym_DOT_DOT] = ACTIONS(4782), + [anon_sym_QMARK_COLON] = ACTIONS(4782), + [anon_sym_AMP_AMP] = ACTIONS(4782), + [anon_sym_PIPE_PIPE] = ACTIONS(4782), + [anon_sym_null] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_when] = ACTIONS(4780), + [anon_sym_try] = ACTIONS(4780), + [anon_sym_throw] = ACTIONS(4780), + [anon_sym_return] = ACTIONS(4780), + [anon_sym_continue] = ACTIONS(4780), + [anon_sym_break] = ACTIONS(4780), + [anon_sym_COLON_COLON] = ACTIONS(4782), + [anon_sym_PLUS_EQ] = ACTIONS(4782), + [anon_sym_DASH_EQ] = ACTIONS(4782), + [anon_sym_STAR_EQ] = ACTIONS(4782), + [anon_sym_SLASH_EQ] = ACTIONS(4782), + [anon_sym_PERCENT_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4782), + [anon_sym_LT_EQ] = ACTIONS(4782), + [anon_sym_GT_EQ] = ACTIONS(4782), + [anon_sym_BANGin] = ACTIONS(4782), + [anon_sym_is] = ACTIONS(4780), + [anon_sym_BANGis] = ACTIONS(4782), + [anon_sym_PLUS] = ACTIONS(4780), + [anon_sym_DASH] = ACTIONS(4780), + [anon_sym_SLASH] = ACTIONS(4780), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4782), + [anon_sym_PLUS_PLUS] = ACTIONS(4782), + [anon_sym_DASH_DASH] = ACTIONS(4782), + [anon_sym_BANG] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4782), + [anon_sym_suspend] = ACTIONS(4780), + [anon_sym_sealed] = ACTIONS(4780), + [anon_sym_annotation] = ACTIONS(4780), + [anon_sym_data] = ACTIONS(4780), + [anon_sym_inner] = ACTIONS(4780), + [anon_sym_value] = ACTIONS(4780), + [anon_sym_override] = ACTIONS(4780), + [anon_sym_lateinit] = ACTIONS(4780), + [anon_sym_public] = ACTIONS(4780), + [anon_sym_private] = ACTIONS(4780), + [anon_sym_internal] = ACTIONS(4780), + [anon_sym_protected] = ACTIONS(4780), + [anon_sym_tailrec] = ACTIONS(4780), + [anon_sym_operator] = ACTIONS(4780), + [anon_sym_infix] = ACTIONS(4780), + [anon_sym_inline] = ACTIONS(4780), + [anon_sym_external] = ACTIONS(4780), + [sym_property_modifier] = ACTIONS(4780), + [anon_sym_abstract] = ACTIONS(4780), + [anon_sym_final] = ACTIONS(4780), + [anon_sym_open] = ACTIONS(4780), + [anon_sym_vararg] = ACTIONS(4780), + [anon_sym_noinline] = ACTIONS(4780), + [anon_sym_crossinline] = ACTIONS(4780), + [anon_sym_expect] = ACTIONS(4780), + [anon_sym_actual] = ACTIONS(4780), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4782), + [anon_sym_continue_AT] = ACTIONS(4782), + [anon_sym_break_AT] = ACTIONS(4782), + [anon_sym_this_AT] = ACTIONS(4782), + [anon_sym_super_AT] = ACTIONS(4782), + [sym_real_literal] = ACTIONS(4782), + [sym_integer_literal] = ACTIONS(4780), + [sym_hex_literal] = ACTIONS(4782), + [sym_bin_literal] = ACTIONS(4782), + [anon_sym_true] = ACTIONS(4780), + [anon_sym_false] = ACTIONS(4780), + [anon_sym_SQUOTE] = ACTIONS(4782), + [sym__backtick_identifier] = ACTIONS(4782), + [sym__automatic_semicolon] = ACTIONS(4782), + [sym_safe_nav] = ACTIONS(4782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4782), + }, + [1031] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(4742), + [anon_sym_set] = ACTIONS(4744), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -163237,94 +164884,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [1019] = { - [sym_getter] = STATE(5112), - [sym_setter] = STATE(5112), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4808), - [anon_sym_get] = ACTIONS(4810), - [anon_sym_set] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [1032] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_get] = ACTIONS(4742), + [anon_sym_set] = ACTIONS(4744), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -163343,306 +164990,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [1020] = { - [sym__alpha_identifier] = ACTIONS(4212), - [anon_sym_AT] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4214), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4212), - [anon_sym_EQ] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4214), - [anon_sym_LPAREN] = ACTIONS(4214), - [anon_sym_COMMA] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4212), - [anon_sym_GT] = ACTIONS(4212), - [anon_sym_where] = ACTIONS(4212), - [anon_sym_object] = ACTIONS(4212), - [anon_sym_fun] = ACTIONS(4212), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym_get] = ACTIONS(4212), - [anon_sym_set] = ACTIONS(4212), - [anon_sym_this] = ACTIONS(4212), - [anon_sym_super] = ACTIONS(4212), - [anon_sym_STAR] = ACTIONS(4212), - [sym_label] = ACTIONS(4212), - [anon_sym_in] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4214), - [anon_sym_QMARK_COLON] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_null] = ACTIONS(4212), - [anon_sym_if] = ACTIONS(4212), - [anon_sym_else] = ACTIONS(4212), - [anon_sym_when] = ACTIONS(4212), - [anon_sym_try] = ACTIONS(4212), - [anon_sym_throw] = ACTIONS(4212), - [anon_sym_return] = ACTIONS(4212), - [anon_sym_continue] = ACTIONS(4212), - [anon_sym_break] = ACTIONS(4212), - [anon_sym_COLON_COLON] = ACTIONS(4214), - [anon_sym_PLUS_EQ] = ACTIONS(4214), - [anon_sym_DASH_EQ] = ACTIONS(4214), - [anon_sym_STAR_EQ] = ACTIONS(4214), - [anon_sym_SLASH_EQ] = ACTIONS(4214), - [anon_sym_PERCENT_EQ] = ACTIONS(4214), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4214), - [anon_sym_LT_EQ] = ACTIONS(4214), - [anon_sym_GT_EQ] = ACTIONS(4214), - [anon_sym_BANGin] = ACTIONS(4214), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_BANGis] = ACTIONS(4214), - [anon_sym_PLUS] = ACTIONS(4212), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4212), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_as_QMARK] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4214), - [anon_sym_DASH_DASH] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4212), - [anon_sym_BANG_BANG] = ACTIONS(4214), - [anon_sym_suspend] = ACTIONS(4212), - [anon_sym_sealed] = ACTIONS(4212), - [anon_sym_annotation] = ACTIONS(4212), - [anon_sym_data] = ACTIONS(4212), - [anon_sym_inner] = ACTIONS(4212), - [anon_sym_value] = ACTIONS(4212), - [anon_sym_override] = ACTIONS(4212), - [anon_sym_lateinit] = ACTIONS(4212), - [anon_sym_public] = ACTIONS(4212), - [anon_sym_private] = ACTIONS(4212), - [anon_sym_internal] = ACTIONS(4212), - [anon_sym_protected] = ACTIONS(4212), - [anon_sym_tailrec] = ACTIONS(4212), - [anon_sym_operator] = ACTIONS(4212), - [anon_sym_infix] = ACTIONS(4212), - [anon_sym_inline] = ACTIONS(4212), - [anon_sym_external] = ACTIONS(4212), - [sym_property_modifier] = ACTIONS(4212), - [anon_sym_abstract] = ACTIONS(4212), - [anon_sym_final] = ACTIONS(4212), - [anon_sym_open] = ACTIONS(4212), - [anon_sym_vararg] = ACTIONS(4212), - [anon_sym_noinline] = ACTIONS(4212), - [anon_sym_crossinline] = ACTIONS(4212), - [anon_sym_expect] = ACTIONS(4212), - [anon_sym_actual] = ACTIONS(4212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4214), - [anon_sym_continue_AT] = ACTIONS(4214), - [anon_sym_break_AT] = ACTIONS(4214), - [anon_sym_this_AT] = ACTIONS(4214), - [anon_sym_super_AT] = ACTIONS(4214), - [sym_real_literal] = ACTIONS(4214), - [sym_integer_literal] = ACTIONS(4212), - [sym_hex_literal] = ACTIONS(4214), - [sym_bin_literal] = ACTIONS(4214), - [anon_sym_true] = ACTIONS(4212), - [anon_sym_false] = ACTIONS(4212), - [anon_sym_SQUOTE] = ACTIONS(4214), - [sym__backtick_identifier] = ACTIONS(4214), - [sym__automatic_semicolon] = ACTIONS(4214), - [sym_safe_nav] = ACTIONS(4214), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4214), + [1033] = { + [sym__alpha_identifier] = ACTIONS(4788), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_where] = ACTIONS(4788), + [anon_sym_object] = ACTIONS(4788), + [anon_sym_fun] = ACTIONS(4788), + [anon_sym_SEMI] = ACTIONS(4790), + [anon_sym_get] = ACTIONS(4788), + [anon_sym_set] = ACTIONS(4788), + [anon_sym_this] = ACTIONS(4788), + [anon_sym_super] = ACTIONS(4788), + [anon_sym_STAR] = ACTIONS(4788), + [sym_label] = ACTIONS(4788), + [anon_sym_in] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4790), + [anon_sym_QMARK_COLON] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_null] = ACTIONS(4788), + [anon_sym_if] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_when] = ACTIONS(4788), + [anon_sym_try] = ACTIONS(4788), + [anon_sym_throw] = ACTIONS(4788), + [anon_sym_return] = ACTIONS(4788), + [anon_sym_continue] = ACTIONS(4788), + [anon_sym_break] = ACTIONS(4788), + [anon_sym_COLON_COLON] = ACTIONS(4790), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4790), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_BANGin] = ACTIONS(4790), + [anon_sym_is] = ACTIONS(4788), + [anon_sym_BANGis] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_as_QMARK] = ACTIONS(4790), + [anon_sym_PLUS_PLUS] = ACTIONS(4790), + [anon_sym_DASH_DASH] = ACTIONS(4790), + [anon_sym_BANG] = ACTIONS(4788), + [anon_sym_BANG_BANG] = ACTIONS(4790), + [anon_sym_suspend] = ACTIONS(4788), + [anon_sym_sealed] = ACTIONS(4788), + [anon_sym_annotation] = ACTIONS(4788), + [anon_sym_data] = ACTIONS(4788), + [anon_sym_inner] = ACTIONS(4788), + [anon_sym_value] = ACTIONS(4788), + [anon_sym_override] = ACTIONS(4788), + [anon_sym_lateinit] = ACTIONS(4788), + [anon_sym_public] = ACTIONS(4788), + [anon_sym_private] = ACTIONS(4788), + [anon_sym_internal] = ACTIONS(4788), + [anon_sym_protected] = ACTIONS(4788), + [anon_sym_tailrec] = ACTIONS(4788), + [anon_sym_operator] = ACTIONS(4788), + [anon_sym_infix] = ACTIONS(4788), + [anon_sym_inline] = ACTIONS(4788), + [anon_sym_external] = ACTIONS(4788), + [sym_property_modifier] = ACTIONS(4788), + [anon_sym_abstract] = ACTIONS(4788), + [anon_sym_final] = ACTIONS(4788), + [anon_sym_open] = ACTIONS(4788), + [anon_sym_vararg] = ACTIONS(4788), + [anon_sym_noinline] = ACTIONS(4788), + [anon_sym_crossinline] = ACTIONS(4788), + [anon_sym_expect] = ACTIONS(4788), + [anon_sym_actual] = ACTIONS(4788), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4790), + [anon_sym_continue_AT] = ACTIONS(4790), + [anon_sym_break_AT] = ACTIONS(4790), + [anon_sym_this_AT] = ACTIONS(4790), + [anon_sym_super_AT] = ACTIONS(4790), + [sym_real_literal] = ACTIONS(4790), + [sym_integer_literal] = ACTIONS(4788), + [sym_hex_literal] = ACTIONS(4790), + [sym_bin_literal] = ACTIONS(4790), + [anon_sym_true] = ACTIONS(4788), + [anon_sym_false] = ACTIONS(4788), + [anon_sym_SQUOTE] = ACTIONS(4790), + [sym__backtick_identifier] = ACTIONS(4790), + [sym__automatic_semicolon] = ACTIONS(4790), + [sym_safe_nav] = ACTIONS(4790), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4790), }, - [1021] = { - [sym_class_body] = STATE(1052), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(4814), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_EQ] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_object] = ACTIONS(4405), - [anon_sym_fun] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_this] = ACTIONS(4405), - [anon_sym_super] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4405), - [sym_label] = ACTIONS(4405), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_when] = ACTIONS(4405), - [anon_sym_try] = ACTIONS(4405), - [anon_sym_throw] = ACTIONS(4405), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_continue] = ACTIONS(4405), - [anon_sym_break] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_PLUS_EQ] = ACTIONS(4407), - [anon_sym_DASH_EQ] = ACTIONS(4407), - [anon_sym_STAR_EQ] = ACTIONS(4407), - [anon_sym_SLASH_EQ] = ACTIONS(4407), - [anon_sym_PERCENT_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4405), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4405), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4407), - [anon_sym_continue_AT] = ACTIONS(4407), - [anon_sym_break_AT] = ACTIONS(4407), - [anon_sym_this_AT] = ACTIONS(4407), - [anon_sym_super_AT] = ACTIONS(4407), - [sym_real_literal] = ACTIONS(4407), - [sym_integer_literal] = ACTIONS(4405), - [sym_hex_literal] = ACTIONS(4407), - [sym_bin_literal] = ACTIONS(4407), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4407), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4407), + [1034] = { + [sym__alpha_identifier] = ACTIONS(4792), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_where] = ACTIONS(4792), + [anon_sym_object] = ACTIONS(4792), + [anon_sym_fun] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_get] = ACTIONS(4792), + [anon_sym_set] = ACTIONS(4792), + [anon_sym_this] = ACTIONS(4792), + [anon_sym_super] = ACTIONS(4792), + [anon_sym_STAR] = ACTIONS(4792), + [sym_label] = ACTIONS(4792), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4794), + [anon_sym_QMARK_COLON] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_null] = ACTIONS(4792), + [anon_sym_if] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_when] = ACTIONS(4792), + [anon_sym_try] = ACTIONS(4792), + [anon_sym_throw] = ACTIONS(4792), + [anon_sym_return] = ACTIONS(4792), + [anon_sym_continue] = ACTIONS(4792), + [anon_sym_break] = ACTIONS(4792), + [anon_sym_COLON_COLON] = ACTIONS(4794), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_PERCENT_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4794), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_BANGin] = ACTIONS(4794), + [anon_sym_is] = ACTIONS(4792), + [anon_sym_BANGis] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_PERCENT] = ACTIONS(4792), + [anon_sym_as_QMARK] = ACTIONS(4794), + [anon_sym_PLUS_PLUS] = ACTIONS(4794), + [anon_sym_DASH_DASH] = ACTIONS(4794), + [anon_sym_BANG] = ACTIONS(4792), + [anon_sym_BANG_BANG] = ACTIONS(4794), + [anon_sym_suspend] = ACTIONS(4792), + [anon_sym_sealed] = ACTIONS(4792), + [anon_sym_annotation] = ACTIONS(4792), + [anon_sym_data] = ACTIONS(4792), + [anon_sym_inner] = ACTIONS(4792), + [anon_sym_value] = ACTIONS(4792), + [anon_sym_override] = ACTIONS(4792), + [anon_sym_lateinit] = ACTIONS(4792), + [anon_sym_public] = ACTIONS(4792), + [anon_sym_private] = ACTIONS(4792), + [anon_sym_internal] = ACTIONS(4792), + [anon_sym_protected] = ACTIONS(4792), + [anon_sym_tailrec] = ACTIONS(4792), + [anon_sym_operator] = ACTIONS(4792), + [anon_sym_infix] = ACTIONS(4792), + [anon_sym_inline] = ACTIONS(4792), + [anon_sym_external] = ACTIONS(4792), + [sym_property_modifier] = ACTIONS(4792), + [anon_sym_abstract] = ACTIONS(4792), + [anon_sym_final] = ACTIONS(4792), + [anon_sym_open] = ACTIONS(4792), + [anon_sym_vararg] = ACTIONS(4792), + [anon_sym_noinline] = ACTIONS(4792), + [anon_sym_crossinline] = ACTIONS(4792), + [anon_sym_expect] = ACTIONS(4792), + [anon_sym_actual] = ACTIONS(4792), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4794), + [anon_sym_continue_AT] = ACTIONS(4794), + [anon_sym_break_AT] = ACTIONS(4794), + [anon_sym_this_AT] = ACTIONS(4794), + [anon_sym_super_AT] = ACTIONS(4794), + [sym_real_literal] = ACTIONS(4794), + [sym_integer_literal] = ACTIONS(4792), + [sym_hex_literal] = ACTIONS(4794), + [sym_bin_literal] = ACTIONS(4794), + [anon_sym_true] = ACTIONS(4792), + [anon_sym_false] = ACTIONS(4792), + [anon_sym_SQUOTE] = ACTIONS(4794), + [sym__backtick_identifier] = ACTIONS(4794), + [sym__automatic_semicolon] = ACTIONS(4794), + [sym_safe_nav] = ACTIONS(4794), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4794), }, - [1022] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4816), - [anon_sym_get] = ACTIONS(4810), - [anon_sym_set] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [1035] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(4742), + [anon_sym_set] = ACTIONS(4744), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -163661,942 +165308,1048 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [1023] = { - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [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_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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4462), - [anon_sym_super_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), + [1036] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, - [1024] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4818), - [anon_sym_get] = ACTIONS(4810), - [anon_sym_set] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), + [1037] = { + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4804), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4802), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_object] = ACTIONS(4802), + [anon_sym_fun] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_get] = ACTIONS(4802), + [anon_sym_set] = ACTIONS(4802), + [anon_sym_this] = ACTIONS(4802), + [anon_sym_super] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [sym_label] = ACTIONS(4802), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_QMARK_COLON] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4802), + [anon_sym_if] = ACTIONS(4802), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_when] = ACTIONS(4802), + [anon_sym_try] = ACTIONS(4802), + [anon_sym_throw] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4802), + [anon_sym_continue] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4802), + [anon_sym_COLON_COLON] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4804), + [anon_sym_DASH_EQ] = ACTIONS(4804), + [anon_sym_STAR_EQ] = ACTIONS(4804), + [anon_sym_SLASH_EQ] = ACTIONS(4804), + [anon_sym_PERCENT_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4804), + [anon_sym_BANGin] = ACTIONS(4804), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_BANGis] = ACTIONS(4804), [anon_sym_PLUS] = ACTIONS(4802), [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_as_QMARK] = ACTIONS(4804), + [anon_sym_PLUS_PLUS] = ACTIONS(4804), + [anon_sym_DASH_DASH] = ACTIONS(4804), + [anon_sym_BANG] = ACTIONS(4802), + [anon_sym_BANG_BANG] = ACTIONS(4804), + [anon_sym_suspend] = ACTIONS(4802), + [anon_sym_sealed] = ACTIONS(4802), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_data] = ACTIONS(4802), + [anon_sym_inner] = ACTIONS(4802), + [anon_sym_value] = ACTIONS(4802), + [anon_sym_override] = ACTIONS(4802), + [anon_sym_lateinit] = ACTIONS(4802), + [anon_sym_public] = ACTIONS(4802), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_internal] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_tailrec] = ACTIONS(4802), + [anon_sym_operator] = ACTIONS(4802), + [anon_sym_infix] = ACTIONS(4802), + [anon_sym_inline] = ACTIONS(4802), + [anon_sym_external] = ACTIONS(4802), + [sym_property_modifier] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_final] = ACTIONS(4802), + [anon_sym_open] = ACTIONS(4802), + [anon_sym_vararg] = ACTIONS(4802), + [anon_sym_noinline] = ACTIONS(4802), + [anon_sym_crossinline] = ACTIONS(4802), + [anon_sym_expect] = ACTIONS(4802), + [anon_sym_actual] = ACTIONS(4802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4804), + [anon_sym_continue_AT] = ACTIONS(4804), + [anon_sym_break_AT] = ACTIONS(4804), + [anon_sym_this_AT] = ACTIONS(4804), + [anon_sym_super_AT] = ACTIONS(4804), + [sym_real_literal] = ACTIONS(4804), + [sym_integer_literal] = ACTIONS(4802), + [sym_hex_literal] = ACTIONS(4804), + [sym_bin_literal] = ACTIONS(4804), + [anon_sym_true] = ACTIONS(4802), + [anon_sym_false] = ACTIONS(4802), + [anon_sym_SQUOTE] = ACTIONS(4804), + [sym__backtick_identifier] = ACTIONS(4804), + [sym__automatic_semicolon] = ACTIONS(4804), + [sym_safe_nav] = ACTIONS(4804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4804), }, - [1025] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4820), - [anon_sym_get] = ACTIONS(4810), - [anon_sym_set] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [1038] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [1026] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4822), + [1039] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4810), + [anon_sym_as] = ACTIONS(4810), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_where] = ACTIONS(4810), + [anon_sym_object] = ACTIONS(4810), + [anon_sym_fun] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4812), [anon_sym_get] = ACTIONS(4810), - [anon_sym_set] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_set] = ACTIONS(4810), + [anon_sym_this] = ACTIONS(4810), + [anon_sym_super] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4810), + [sym_label] = ACTIONS(4810), + [anon_sym_in] = ACTIONS(4810), + [anon_sym_DOT_DOT] = ACTIONS(4812), + [anon_sym_QMARK_COLON] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_null] = ACTIONS(4810), + [anon_sym_if] = ACTIONS(4810), + [anon_sym_else] = ACTIONS(4810), + [anon_sym_when] = ACTIONS(4810), + [anon_sym_try] = ACTIONS(4810), + [anon_sym_throw] = ACTIONS(4810), + [anon_sym_return] = ACTIONS(4810), + [anon_sym_continue] = ACTIONS(4810), + [anon_sym_break] = ACTIONS(4810), + [anon_sym_COLON_COLON] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_BANGin] = ACTIONS(4812), + [anon_sym_is] = ACTIONS(4810), + [anon_sym_BANGis] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_SLASH] = ACTIONS(4810), + [anon_sym_PERCENT] = ACTIONS(4810), + [anon_sym_as_QMARK] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4810), + [anon_sym_BANG_BANG] = ACTIONS(4812), + [anon_sym_suspend] = ACTIONS(4810), + [anon_sym_sealed] = ACTIONS(4810), + [anon_sym_annotation] = ACTIONS(4810), + [anon_sym_data] = ACTIONS(4810), + [anon_sym_inner] = ACTIONS(4810), + [anon_sym_value] = ACTIONS(4810), + [anon_sym_override] = ACTIONS(4810), + [anon_sym_lateinit] = ACTIONS(4810), + [anon_sym_public] = ACTIONS(4810), + [anon_sym_private] = ACTIONS(4810), + [anon_sym_internal] = ACTIONS(4810), + [anon_sym_protected] = ACTIONS(4810), + [anon_sym_tailrec] = ACTIONS(4810), + [anon_sym_operator] = ACTIONS(4810), + [anon_sym_infix] = ACTIONS(4810), + [anon_sym_inline] = ACTIONS(4810), + [anon_sym_external] = ACTIONS(4810), + [sym_property_modifier] = ACTIONS(4810), + [anon_sym_abstract] = ACTIONS(4810), + [anon_sym_final] = ACTIONS(4810), + [anon_sym_open] = ACTIONS(4810), + [anon_sym_vararg] = ACTIONS(4810), + [anon_sym_noinline] = ACTIONS(4810), + [anon_sym_crossinline] = ACTIONS(4810), + [anon_sym_expect] = ACTIONS(4810), + [anon_sym_actual] = ACTIONS(4810), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4812), + [anon_sym_continue_AT] = ACTIONS(4812), + [anon_sym_break_AT] = ACTIONS(4812), + [anon_sym_this_AT] = ACTIONS(4812), + [anon_sym_super_AT] = ACTIONS(4812), + [sym_real_literal] = ACTIONS(4812), + [sym_integer_literal] = ACTIONS(4810), + [sym_hex_literal] = ACTIONS(4812), + [sym_bin_literal] = ACTIONS(4812), + [anon_sym_true] = ACTIONS(4810), + [anon_sym_false] = ACTIONS(4810), + [anon_sym_SQUOTE] = ACTIONS(4812), + [sym__backtick_identifier] = ACTIONS(4812), + [sym__automatic_semicolon] = ACTIONS(4812), + [sym_safe_nav] = ACTIONS(4812), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4812), }, - [1027] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4824), - [anon_sym_get] = ACTIONS(4810), - [anon_sym_set] = ACTIONS(4812), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [1040] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_where] = ACTIONS(4814), + [anon_sym_object] = ACTIONS(4814), + [anon_sym_fun] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_get] = ACTIONS(4814), + [anon_sym_set] = ACTIONS(4814), + [anon_sym_this] = ACTIONS(4814), + [anon_sym_super] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4814), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_QMARK_COLON] = ACTIONS(4816), + [anon_sym_AMP_AMP] = ACTIONS(4816), + [anon_sym_PIPE_PIPE] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4814), + [anon_sym_if] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4814), + [anon_sym_when] = ACTIONS(4814), + [anon_sym_try] = ACTIONS(4814), + [anon_sym_throw] = ACTIONS(4814), + [anon_sym_return] = ACTIONS(4814), + [anon_sym_continue] = ACTIONS(4814), + [anon_sym_break] = ACTIONS(4814), + [anon_sym_COLON_COLON] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4816), + [anon_sym_DASH_EQ] = ACTIONS(4816), + [anon_sym_STAR_EQ] = ACTIONS(4816), + [anon_sym_SLASH_EQ] = ACTIONS(4816), + [anon_sym_PERCENT_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4816), + [anon_sym_BANGin] = ACTIONS(4816), + [anon_sym_is] = ACTIONS(4814), + [anon_sym_BANGis] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_as_QMARK] = ACTIONS(4816), + [anon_sym_PLUS_PLUS] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4816), + [anon_sym_suspend] = ACTIONS(4814), + [anon_sym_sealed] = ACTIONS(4814), + [anon_sym_annotation] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4814), + [anon_sym_inner] = ACTIONS(4814), + [anon_sym_value] = ACTIONS(4814), + [anon_sym_override] = ACTIONS(4814), + [anon_sym_lateinit] = ACTIONS(4814), + [anon_sym_public] = ACTIONS(4814), + [anon_sym_private] = ACTIONS(4814), + [anon_sym_internal] = ACTIONS(4814), + [anon_sym_protected] = ACTIONS(4814), + [anon_sym_tailrec] = ACTIONS(4814), + [anon_sym_operator] = ACTIONS(4814), + [anon_sym_infix] = ACTIONS(4814), + [anon_sym_inline] = ACTIONS(4814), + [anon_sym_external] = ACTIONS(4814), + [sym_property_modifier] = ACTIONS(4814), + [anon_sym_abstract] = ACTIONS(4814), + [anon_sym_final] = ACTIONS(4814), + [anon_sym_open] = ACTIONS(4814), + [anon_sym_vararg] = ACTIONS(4814), + [anon_sym_noinline] = ACTIONS(4814), + [anon_sym_crossinline] = ACTIONS(4814), + [anon_sym_expect] = ACTIONS(4814), + [anon_sym_actual] = ACTIONS(4814), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4816), + [anon_sym_continue_AT] = ACTIONS(4816), + [anon_sym_break_AT] = ACTIONS(4816), + [anon_sym_this_AT] = ACTIONS(4816), + [anon_sym_super_AT] = ACTIONS(4816), + [sym_real_literal] = ACTIONS(4816), + [sym_integer_literal] = ACTIONS(4814), + [sym_hex_literal] = ACTIONS(4816), + [sym_bin_literal] = ACTIONS(4816), + [anon_sym_true] = ACTIONS(4814), + [anon_sym_false] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4816), + [sym__backtick_identifier] = ACTIONS(4816), + [sym__automatic_semicolon] = ACTIONS(4816), + [sym_safe_nav] = ACTIONS(4816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4816), }, - [1028] = { - [sym__alpha_identifier] = ACTIONS(4826), - [anon_sym_AT] = ACTIONS(4828), - [anon_sym_LBRACK] = ACTIONS(4828), - [anon_sym_DOT] = ACTIONS(4826), - [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_SEMI] = ACTIONS(4828), - [anon_sym_get] = ACTIONS(4826), - [anon_sym_set] = ACTIONS(4826), - [anon_sym_this] = ACTIONS(4826), - [anon_sym_super] = ACTIONS(4826), - [anon_sym_STAR] = ACTIONS(4826), - [sym_label] = ACTIONS(4826), - [anon_sym_in] = ACTIONS(4826), - [anon_sym_DOT_DOT] = ACTIONS(4828), - [anon_sym_QMARK_COLON] = ACTIONS(4828), - [anon_sym_AMP_AMP] = ACTIONS(4828), - [anon_sym_PIPE_PIPE] = ACTIONS(4828), - [anon_sym_null] = ACTIONS(4826), - [anon_sym_if] = ACTIONS(4826), - [anon_sym_else] = ACTIONS(4826), - [anon_sym_when] = ACTIONS(4826), - [anon_sym_try] = ACTIONS(4826), - [anon_sym_throw] = ACTIONS(4826), - [anon_sym_return] = ACTIONS(4826), - [anon_sym_continue] = ACTIONS(4826), - [anon_sym_break] = ACTIONS(4826), - [anon_sym_COLON_COLON] = ACTIONS(4828), - [anon_sym_PLUS_EQ] = ACTIONS(4828), - [anon_sym_DASH_EQ] = ACTIONS(4828), - [anon_sym_STAR_EQ] = ACTIONS(4828), - [anon_sym_SLASH_EQ] = ACTIONS(4828), - [anon_sym_PERCENT_EQ] = ACTIONS(4828), - [anon_sym_BANG_EQ] = ACTIONS(4826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), - [anon_sym_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4828), - [anon_sym_is] = ACTIONS(4826), - [anon_sym_BANGis] = ACTIONS(4828), - [anon_sym_PLUS] = ACTIONS(4826), - [anon_sym_DASH] = ACTIONS(4826), - [anon_sym_SLASH] = ACTIONS(4826), - [anon_sym_PERCENT] = ACTIONS(4826), - [anon_sym_as_QMARK] = ACTIONS(4828), - [anon_sym_PLUS_PLUS] = ACTIONS(4828), - [anon_sym_DASH_DASH] = ACTIONS(4828), - [anon_sym_BANG] = ACTIONS(4826), - [anon_sym_BANG_BANG] = ACTIONS(4828), - [anon_sym_suspend] = ACTIONS(4826), - [anon_sym_sealed] = ACTIONS(4826), - [anon_sym_annotation] = ACTIONS(4826), - [anon_sym_data] = ACTIONS(4826), - [anon_sym_inner] = ACTIONS(4826), - [anon_sym_value] = ACTIONS(4826), - [anon_sym_override] = ACTIONS(4826), - [anon_sym_lateinit] = ACTIONS(4826), - [anon_sym_public] = ACTIONS(4826), - [anon_sym_private] = ACTIONS(4826), - [anon_sym_internal] = ACTIONS(4826), - [anon_sym_protected] = ACTIONS(4826), - [anon_sym_tailrec] = ACTIONS(4826), - [anon_sym_operator] = ACTIONS(4826), - [anon_sym_infix] = ACTIONS(4826), - [anon_sym_inline] = ACTIONS(4826), - [anon_sym_external] = ACTIONS(4826), - [sym_property_modifier] = ACTIONS(4826), - [anon_sym_abstract] = ACTIONS(4826), - [anon_sym_final] = ACTIONS(4826), - [anon_sym_open] = ACTIONS(4826), - [anon_sym_vararg] = ACTIONS(4826), - [anon_sym_noinline] = ACTIONS(4826), - [anon_sym_crossinline] = ACTIONS(4826), - [anon_sym_expect] = ACTIONS(4826), - [anon_sym_actual] = ACTIONS(4826), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4828), - [anon_sym_continue_AT] = ACTIONS(4828), - [anon_sym_break_AT] = ACTIONS(4828), - [anon_sym_this_AT] = ACTIONS(4828), - [anon_sym_super_AT] = ACTIONS(4828), - [sym_real_literal] = ACTIONS(4828), - [sym_integer_literal] = ACTIONS(4826), - [sym_hex_literal] = ACTIONS(4828), - [sym_bin_literal] = ACTIONS(4828), - [anon_sym_true] = ACTIONS(4826), - [anon_sym_false] = ACTIONS(4826), - [anon_sym_SQUOTE] = ACTIONS(4828), - [sym__backtick_identifier] = ACTIONS(4828), - [sym__automatic_semicolon] = ACTIONS(4828), - [sym_safe_nav] = ACTIONS(4828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4828), + [1041] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4818), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [1029] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4830), - [anon_sym_get] = ACTIONS(4778), - [anon_sym_set] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [1042] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_as] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_where] = ACTIONS(4822), + [anon_sym_object] = ACTIONS(4822), + [anon_sym_fun] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_get] = ACTIONS(4822), + [anon_sym_set] = ACTIONS(4822), + [anon_sym_this] = ACTIONS(4822), + [anon_sym_super] = ACTIONS(4822), + [anon_sym_STAR] = ACTIONS(4822), + [sym_label] = ACTIONS(4822), + [anon_sym_in] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_QMARK_COLON] = ACTIONS(4824), + [anon_sym_AMP_AMP] = ACTIONS(4824), + [anon_sym_PIPE_PIPE] = ACTIONS(4824), + [anon_sym_null] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_when] = ACTIONS(4822), + [anon_sym_try] = ACTIONS(4822), + [anon_sym_throw] = ACTIONS(4822), + [anon_sym_return] = ACTIONS(4822), + [anon_sym_continue] = ACTIONS(4822), + [anon_sym_break] = ACTIONS(4822), + [anon_sym_COLON_COLON] = ACTIONS(4824), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_PERCENT_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4824), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_BANGin] = ACTIONS(4824), + [anon_sym_is] = ACTIONS(4822), + [anon_sym_BANGis] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_as_QMARK] = ACTIONS(4824), + [anon_sym_PLUS_PLUS] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4822), + [anon_sym_BANG_BANG] = ACTIONS(4824), + [anon_sym_suspend] = ACTIONS(4822), + [anon_sym_sealed] = ACTIONS(4822), + [anon_sym_annotation] = ACTIONS(4822), + [anon_sym_data] = ACTIONS(4822), + [anon_sym_inner] = ACTIONS(4822), + [anon_sym_value] = ACTIONS(4822), + [anon_sym_override] = ACTIONS(4822), + [anon_sym_lateinit] = ACTIONS(4822), + [anon_sym_public] = ACTIONS(4822), + [anon_sym_private] = ACTIONS(4822), + [anon_sym_internal] = ACTIONS(4822), + [anon_sym_protected] = ACTIONS(4822), + [anon_sym_tailrec] = ACTIONS(4822), + [anon_sym_operator] = ACTIONS(4822), + [anon_sym_infix] = ACTIONS(4822), + [anon_sym_inline] = ACTIONS(4822), + [anon_sym_external] = ACTIONS(4822), + [sym_property_modifier] = ACTIONS(4822), + [anon_sym_abstract] = ACTIONS(4822), + [anon_sym_final] = ACTIONS(4822), + [anon_sym_open] = ACTIONS(4822), + [anon_sym_vararg] = ACTIONS(4822), + [anon_sym_noinline] = ACTIONS(4822), + [anon_sym_crossinline] = ACTIONS(4822), + [anon_sym_expect] = ACTIONS(4822), + [anon_sym_actual] = ACTIONS(4822), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4824), + [anon_sym_continue_AT] = ACTIONS(4824), + [anon_sym_break_AT] = ACTIONS(4824), + [anon_sym_this_AT] = ACTIONS(4824), + [anon_sym_super_AT] = ACTIONS(4824), + [sym_real_literal] = ACTIONS(4824), + [sym_integer_literal] = ACTIONS(4822), + [sym_hex_literal] = ACTIONS(4824), + [sym_bin_literal] = ACTIONS(4824), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4824), + [sym__backtick_identifier] = ACTIONS(4824), + [sym__automatic_semicolon] = ACTIONS(4824), + [sym_safe_nav] = ACTIONS(4824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4824), }, - [1030] = { - [sym_function_body] = STATE(1157), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), + [1043] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), }, - [1031] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_get] = ACTIONS(4778), - [anon_sym_set] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [1044] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(4826), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [1045] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_get] = ACTIONS(4742), + [anon_sym_set] = ACTIONS(4744), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -164615,1181 +166368,969 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [1032] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), + [1046] = { + [sym__alpha_identifier] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4832), + [anon_sym_as] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4834), + [anon_sym_RBRACE] = ACTIONS(4834), [anon_sym_LPAREN] = ACTIONS(4834), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [anon_sym_COMMA] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_where] = ACTIONS(4832), + [anon_sym_object] = ACTIONS(4832), + [anon_sym_fun] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4834), + [anon_sym_get] = ACTIONS(4832), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_this] = ACTIONS(4832), + [anon_sym_super] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [sym_label] = ACTIONS(4832), + [anon_sym_in] = ACTIONS(4832), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_QMARK_COLON] = ACTIONS(4834), + [anon_sym_AMP_AMP] = ACTIONS(4834), + [anon_sym_PIPE_PIPE] = ACTIONS(4834), + [anon_sym_null] = ACTIONS(4832), + [anon_sym_if] = ACTIONS(4832), + [anon_sym_else] = ACTIONS(4832), + [anon_sym_when] = ACTIONS(4832), + [anon_sym_try] = ACTIONS(4832), + [anon_sym_throw] = ACTIONS(4832), + [anon_sym_return] = ACTIONS(4832), + [anon_sym_continue] = ACTIONS(4832), + [anon_sym_break] = ACTIONS(4832), + [anon_sym_COLON_COLON] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4834), + [anon_sym_DASH_EQ] = ACTIONS(4834), + [anon_sym_STAR_EQ] = ACTIONS(4834), + [anon_sym_SLASH_EQ] = ACTIONS(4834), + [anon_sym_PERCENT_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4834), + [anon_sym_BANGin] = ACTIONS(4834), + [anon_sym_is] = ACTIONS(4832), + [anon_sym_BANGis] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_as_QMARK] = ACTIONS(4834), + [anon_sym_PLUS_PLUS] = ACTIONS(4834), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_BANG_BANG] = ACTIONS(4834), + [anon_sym_suspend] = ACTIONS(4832), + [anon_sym_sealed] = ACTIONS(4832), + [anon_sym_annotation] = ACTIONS(4832), + [anon_sym_data] = ACTIONS(4832), + [anon_sym_inner] = ACTIONS(4832), + [anon_sym_value] = ACTIONS(4832), + [anon_sym_override] = ACTIONS(4832), + [anon_sym_lateinit] = ACTIONS(4832), + [anon_sym_public] = ACTIONS(4832), + [anon_sym_private] = ACTIONS(4832), + [anon_sym_internal] = ACTIONS(4832), + [anon_sym_protected] = ACTIONS(4832), + [anon_sym_tailrec] = ACTIONS(4832), + [anon_sym_operator] = ACTIONS(4832), + [anon_sym_infix] = ACTIONS(4832), + [anon_sym_inline] = ACTIONS(4832), + [anon_sym_external] = ACTIONS(4832), + [sym_property_modifier] = ACTIONS(4832), + [anon_sym_abstract] = ACTIONS(4832), + [anon_sym_final] = ACTIONS(4832), + [anon_sym_open] = ACTIONS(4832), + [anon_sym_vararg] = ACTIONS(4832), + [anon_sym_noinline] = ACTIONS(4832), + [anon_sym_crossinline] = ACTIONS(4832), + [anon_sym_expect] = ACTIONS(4832), + [anon_sym_actual] = ACTIONS(4832), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4834), + [anon_sym_continue_AT] = ACTIONS(4834), + [anon_sym_break_AT] = ACTIONS(4834), + [anon_sym_this_AT] = ACTIONS(4834), + [anon_sym_super_AT] = ACTIONS(4834), + [sym_real_literal] = ACTIONS(4834), + [sym_integer_literal] = ACTIONS(4832), + [sym_hex_literal] = ACTIONS(4834), + [sym_bin_literal] = ACTIONS(4834), + [anon_sym_true] = ACTIONS(4832), + [anon_sym_false] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4834), + [sym__backtick_identifier] = ACTIONS(4834), + [sym__automatic_semicolon] = ACTIONS(4834), + [sym_safe_nav] = ACTIONS(4834), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4834), }, - [1033] = { - [sym__alpha_identifier] = ACTIONS(4838), - [anon_sym_AT] = ACTIONS(4840), - [anon_sym_LBRACK] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4838), - [anon_sym_as] = ACTIONS(4838), - [anon_sym_EQ] = ACTIONS(4838), - [anon_sym_LBRACE] = ACTIONS(4840), - [anon_sym_RBRACE] = ACTIONS(4840), - [anon_sym_LPAREN] = ACTIONS(4840), - [anon_sym_COMMA] = ACTIONS(4840), - [anon_sym_LT] = ACTIONS(4838), - [anon_sym_GT] = ACTIONS(4838), - [anon_sym_where] = ACTIONS(4838), - [anon_sym_object] = ACTIONS(4838), - [anon_sym_fun] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(4840), - [anon_sym_get] = ACTIONS(4838), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_this] = ACTIONS(4838), - [anon_sym_super] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4838), - [sym_label] = ACTIONS(4838), - [anon_sym_in] = ACTIONS(4838), - [anon_sym_DOT_DOT] = ACTIONS(4840), - [anon_sym_QMARK_COLON] = ACTIONS(4840), - [anon_sym_AMP_AMP] = ACTIONS(4840), - [anon_sym_PIPE_PIPE] = ACTIONS(4840), - [anon_sym_null] = ACTIONS(4838), - [anon_sym_if] = ACTIONS(4838), - [anon_sym_else] = ACTIONS(4838), - [anon_sym_when] = ACTIONS(4838), - [anon_sym_try] = ACTIONS(4838), - [anon_sym_throw] = ACTIONS(4838), - [anon_sym_return] = ACTIONS(4838), - [anon_sym_continue] = ACTIONS(4838), - [anon_sym_break] = ACTIONS(4838), - [anon_sym_COLON_COLON] = ACTIONS(4840), - [anon_sym_PLUS_EQ] = ACTIONS(4840), - [anon_sym_DASH_EQ] = ACTIONS(4840), - [anon_sym_STAR_EQ] = ACTIONS(4840), - [anon_sym_SLASH_EQ] = ACTIONS(4840), - [anon_sym_PERCENT_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ] = ACTIONS(4838), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ] = ACTIONS(4838), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), - [anon_sym_LT_EQ] = ACTIONS(4840), - [anon_sym_GT_EQ] = ACTIONS(4840), - [anon_sym_BANGin] = ACTIONS(4840), - [anon_sym_is] = ACTIONS(4838), - [anon_sym_BANGis] = ACTIONS(4840), - [anon_sym_PLUS] = ACTIONS(4838), - [anon_sym_DASH] = ACTIONS(4838), - [anon_sym_SLASH] = ACTIONS(4838), - [anon_sym_PERCENT] = ACTIONS(4838), - [anon_sym_as_QMARK] = ACTIONS(4840), - [anon_sym_PLUS_PLUS] = ACTIONS(4840), - [anon_sym_DASH_DASH] = ACTIONS(4840), - [anon_sym_BANG] = ACTIONS(4838), - [anon_sym_BANG_BANG] = ACTIONS(4840), - [anon_sym_suspend] = ACTIONS(4838), - [anon_sym_sealed] = ACTIONS(4838), - [anon_sym_annotation] = ACTIONS(4838), - [anon_sym_data] = ACTIONS(4838), - [anon_sym_inner] = ACTIONS(4838), - [anon_sym_value] = ACTIONS(4838), - [anon_sym_override] = ACTIONS(4838), - [anon_sym_lateinit] = ACTIONS(4838), - [anon_sym_public] = ACTIONS(4838), - [anon_sym_private] = ACTIONS(4838), - [anon_sym_internal] = ACTIONS(4838), - [anon_sym_protected] = ACTIONS(4838), - [anon_sym_tailrec] = ACTIONS(4838), - [anon_sym_operator] = ACTIONS(4838), - [anon_sym_infix] = ACTIONS(4838), - [anon_sym_inline] = ACTIONS(4838), - [anon_sym_external] = ACTIONS(4838), - [sym_property_modifier] = ACTIONS(4838), - [anon_sym_abstract] = ACTIONS(4838), - [anon_sym_final] = ACTIONS(4838), - [anon_sym_open] = ACTIONS(4838), - [anon_sym_vararg] = ACTIONS(4838), - [anon_sym_noinline] = ACTIONS(4838), - [anon_sym_crossinline] = ACTIONS(4838), - [anon_sym_expect] = ACTIONS(4838), - [anon_sym_actual] = ACTIONS(4838), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4840), - [anon_sym_continue_AT] = ACTIONS(4840), - [anon_sym_break_AT] = ACTIONS(4840), - [anon_sym_this_AT] = ACTIONS(4840), - [anon_sym_super_AT] = ACTIONS(4840), - [sym_real_literal] = ACTIONS(4840), - [sym_integer_literal] = ACTIONS(4838), - [sym_hex_literal] = ACTIONS(4840), - [sym_bin_literal] = ACTIONS(4840), - [anon_sym_true] = ACTIONS(4838), - [anon_sym_false] = ACTIONS(4838), - [anon_sym_SQUOTE] = ACTIONS(4840), - [sym__backtick_identifier] = ACTIONS(4840), - [sym__automatic_semicolon] = ACTIONS(4840), - [sym_safe_nav] = ACTIONS(4840), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4840), + [1047] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), }, - [1034] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4842), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_this] = ACTIONS(4228), - [anon_sym_super] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [sym_label] = ACTIONS(4228), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_throw] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4226), - [anon_sym_continue_AT] = ACTIONS(4226), - [anon_sym_break_AT] = ACTIONS(4226), - [anon_sym_this_AT] = ACTIONS(4226), - [anon_sym_super_AT] = ACTIONS(4226), - [sym_real_literal] = ACTIONS(4226), - [sym_integer_literal] = ACTIONS(4228), - [sym_hex_literal] = ACTIONS(4226), - [sym_bin_literal] = ACTIONS(4226), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4226), + [1048] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(4838), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4188), + [anon_sym_continue_AT] = ACTIONS(4188), + [anon_sym_break_AT] = ACTIONS(4188), + [anon_sym_this_AT] = ACTIONS(4188), + [anon_sym_super_AT] = ACTIONS(4188), + [sym_real_literal] = ACTIONS(4188), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4188), + [sym_bin_literal] = ACTIONS(4188), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4188), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4188), }, - [1035] = { - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), + [1049] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(4844), + [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_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_this] = ACTIONS(4840), + [anon_sym_super] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4840), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), }, - [1036] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), + [1050] = { + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), [anon_sym_LPAREN] = ACTIONS(4848), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_object] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_this] = ACTIONS(4844), - [anon_sym_super] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [sym_label] = ACTIONS(4844), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4844), - [anon_sym_if] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_throw] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_continue] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4844), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4846), - [anon_sym_continue_AT] = ACTIONS(4846), - [anon_sym_break_AT] = ACTIONS(4846), - [anon_sym_this_AT] = ACTIONS(4846), - [anon_sym_super_AT] = ACTIONS(4846), - [sym_real_literal] = ACTIONS(4846), - [sym_integer_literal] = ACTIONS(4844), - [sym_hex_literal] = ACTIONS(4846), - [sym_bin_literal] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4846), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_object] = ACTIONS(4846), + [anon_sym_fun] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_this] = ACTIONS(4846), + [anon_sym_super] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [sym_label] = ACTIONS(4846), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_when] = ACTIONS(4846), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_throw] = ACTIONS(4846), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_suspend] = ACTIONS(4846), + [anon_sym_sealed] = ACTIONS(4846), + [anon_sym_annotation] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_override] = ACTIONS(4846), + [anon_sym_lateinit] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_internal] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_tailrec] = ACTIONS(4846), + [anon_sym_operator] = ACTIONS(4846), + [anon_sym_infix] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_external] = ACTIONS(4846), + [sym_property_modifier] = ACTIONS(4846), + [anon_sym_abstract] = ACTIONS(4846), + [anon_sym_final] = ACTIONS(4846), + [anon_sym_open] = ACTIONS(4846), + [anon_sym_vararg] = ACTIONS(4846), + [anon_sym_noinline] = ACTIONS(4846), + [anon_sym_crossinline] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4848), + [anon_sym_continue_AT] = ACTIONS(4848), + [anon_sym_break_AT] = ACTIONS(4848), + [anon_sym_this_AT] = ACTIONS(4848), + [anon_sym_super_AT] = ACTIONS(4848), + [sym_real_literal] = ACTIONS(4848), + [sym_integer_literal] = ACTIONS(4846), + [sym_hex_literal] = ACTIONS(4848), + [sym_bin_literal] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4848), + [sym__backtick_identifier] = ACTIONS(4848), + [sym__automatic_semicolon] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4848), }, - [1037] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym_get] = ACTIONS(4778), - [anon_sym_set] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [1051] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(4854), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), }, - [1038] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4856), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), + [1052] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(4860), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, - [1039] = { - [sym_function_body] = STATE(1103), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_object] = ACTIONS(4260), - [anon_sym_fun] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_this] = ACTIONS(4260), - [anon_sym_super] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [anon_sym_try] = ACTIONS(4260), - [anon_sym_throw] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_PLUS_EQ] = ACTIONS(4262), - [anon_sym_DASH_EQ] = ACTIONS(4262), - [anon_sym_STAR_EQ] = ACTIONS(4262), - [anon_sym_SLASH_EQ] = ACTIONS(4262), - [anon_sym_PERCENT_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4262), - [anon_sym_continue_AT] = ACTIONS(4262), - [anon_sym_break_AT] = ACTIONS(4262), - [anon_sym_this_AT] = ACTIONS(4262), - [anon_sym_super_AT] = ACTIONS(4262), - [sym_real_literal] = ACTIONS(4262), - [sym_integer_literal] = ACTIONS(4260), - [sym_hex_literal] = ACTIONS(4262), - [sym_bin_literal] = ACTIONS(4262), - [anon_sym_true] = ACTIONS(4260), - [anon_sym_false] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4262), - [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4262), - }, - [1040] = { - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(4150), - [anon_sym_LBRACE] = ACTIONS(4152), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), - }, - [1041] = { - [sym_class_body] = STATE(1016), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [1042] = { - [sym__alpha_identifier] = ACTIONS(4860), - [anon_sym_AT] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_LT] = ACTIONS(4860), - [anon_sym_GT] = ACTIONS(4860), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_object] = ACTIONS(4860), - [anon_sym_fun] = ACTIONS(4860), + [1053] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), [anon_sym_SEMI] = ACTIONS(4862), - [anon_sym_get] = ACTIONS(4860), - [anon_sym_set] = ACTIONS(4860), - [anon_sym_this] = ACTIONS(4860), - [anon_sym_super] = ACTIONS(4860), - [anon_sym_STAR] = ACTIONS(4860), - [sym_label] = ACTIONS(4860), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_QMARK_COLON] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_null] = ACTIONS(4860), - [anon_sym_if] = ACTIONS(4860), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), [anon_sym_else] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_try] = ACTIONS(4860), - [anon_sym_throw] = ACTIONS(4860), - [anon_sym_return] = ACTIONS(4860), - [anon_sym_continue] = ACTIONS(4860), - [anon_sym_break] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4862), - [anon_sym_DASH_EQ] = ACTIONS(4862), - [anon_sym_STAR_EQ] = ACTIONS(4862), - [anon_sym_SLASH_EQ] = ACTIONS(4862), - [anon_sym_PERCENT_EQ] = ACTIONS(4862), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4862), - [anon_sym_LT_EQ] = ACTIONS(4862), - [anon_sym_GT_EQ] = ACTIONS(4862), - [anon_sym_BANGin] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_BANGis] = ACTIONS(4862), - [anon_sym_PLUS] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_as_QMARK] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4860), - [anon_sym_BANG_BANG] = ACTIONS(4862), - [anon_sym_suspend] = ACTIONS(4860), - [anon_sym_sealed] = ACTIONS(4860), - [anon_sym_annotation] = ACTIONS(4860), - [anon_sym_data] = ACTIONS(4860), - [anon_sym_inner] = ACTIONS(4860), - [anon_sym_value] = ACTIONS(4860), - [anon_sym_override] = ACTIONS(4860), - [anon_sym_lateinit] = ACTIONS(4860), - [anon_sym_public] = ACTIONS(4860), - [anon_sym_private] = ACTIONS(4860), - [anon_sym_internal] = ACTIONS(4860), - [anon_sym_protected] = ACTIONS(4860), - [anon_sym_tailrec] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - [anon_sym_infix] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym_external] = ACTIONS(4860), - [sym_property_modifier] = ACTIONS(4860), - [anon_sym_abstract] = ACTIONS(4860), - [anon_sym_final] = ACTIONS(4860), - [anon_sym_open] = ACTIONS(4860), - [anon_sym_vararg] = ACTIONS(4860), - [anon_sym_noinline] = ACTIONS(4860), - [anon_sym_crossinline] = ACTIONS(4860), - [anon_sym_expect] = ACTIONS(4860), - [anon_sym_actual] = ACTIONS(4860), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4862), - [anon_sym_continue_AT] = ACTIONS(4862), - [anon_sym_break_AT] = ACTIONS(4862), - [anon_sym_this_AT] = ACTIONS(4862), - [anon_sym_super_AT] = ACTIONS(4862), - [sym_real_literal] = ACTIONS(4862), - [sym_integer_literal] = ACTIONS(4860), - [sym_hex_literal] = ACTIONS(4862), - [sym_bin_literal] = ACTIONS(4862), - [anon_sym_true] = ACTIONS(4860), - [anon_sym_false] = ACTIONS(4860), - [anon_sym_SQUOTE] = ACTIONS(4862), - [sym__backtick_identifier] = ACTIONS(4862), - [sym__automatic_semicolon] = ACTIONS(4862), - [sym_safe_nav] = ACTIONS(4862), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4862), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, - [1043] = { + [1054] = { + [sym__alpha_identifier] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3065), + [anon_sym_set] = ACTIONS(3065), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [sym_label] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3067), + [anon_sym_QMARK_COLON] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_as_QMARK] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(3067), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3065), + [anon_sym_inner] = ACTIONS(3065), + [anon_sym_value] = ACTIONS(3065), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3065), + [anon_sym_actual] = ACTIONS(3065), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(3067), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3067), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [1055] = { [sym__alpha_identifier] = ACTIONS(4864), [anon_sym_AT] = ACTIONS(4866), [anon_sym_LBRACK] = ACTIONS(4866), @@ -165895,325 +167436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4866), }, - [1044] = { - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [1045] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_object] = ACTIONS(4419), - [anon_sym_fun] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_this] = ACTIONS(4419), - [anon_sym_super] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4419), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_when] = ACTIONS(4419), - [anon_sym_try] = ACTIONS(4419), - [anon_sym_throw] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4421), - [anon_sym_continue_AT] = ACTIONS(4421), - [anon_sym_break_AT] = ACTIONS(4421), - [anon_sym_this_AT] = ACTIONS(4421), - [anon_sym_super_AT] = ACTIONS(4421), - [sym_real_literal] = ACTIONS(4421), - [sym_integer_literal] = ACTIONS(4419), - [sym_hex_literal] = ACTIONS(4421), - [sym_bin_literal] = ACTIONS(4421), - [anon_sym_true] = ACTIONS(4419), - [anon_sym_false] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4421), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4421), - }, - [1046] = { - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [1047] = { + [1056] = { [sym__alpha_identifier] = ACTIONS(4868), [anon_sym_AT] = ACTIONS(4870), [anon_sym_LBRACK] = ACTIONS(4870), @@ -166319,1067 +167542,1067 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4870), }, - [1048] = { - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(1734), - [anon_sym_set] = ACTIONS(1734), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), - [anon_sym_suspend] = ACTIONS(1734), - [anon_sym_sealed] = ACTIONS(1734), - [anon_sym_annotation] = ACTIONS(1734), - [anon_sym_data] = ACTIONS(1734), - [anon_sym_inner] = ACTIONS(1734), - [anon_sym_value] = ACTIONS(1734), - [anon_sym_override] = ACTIONS(1734), - [anon_sym_lateinit] = ACTIONS(1734), - [anon_sym_public] = ACTIONS(1734), - [anon_sym_private] = ACTIONS(1734), - [anon_sym_internal] = ACTIONS(1734), - [anon_sym_protected] = ACTIONS(1734), - [anon_sym_tailrec] = ACTIONS(1734), - [anon_sym_operator] = ACTIONS(1734), - [anon_sym_infix] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [anon_sym_external] = ACTIONS(1734), - [sym_property_modifier] = ACTIONS(1734), - [anon_sym_abstract] = ACTIONS(1734), - [anon_sym_final] = ACTIONS(1734), - [anon_sym_open] = ACTIONS(1734), - [anon_sym_vararg] = ACTIONS(1734), - [anon_sym_noinline] = ACTIONS(1734), - [anon_sym_crossinline] = ACTIONS(1734), - [anon_sym_expect] = ACTIONS(1734), - [anon_sym_actual] = ACTIONS(1734), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [1057] = { + [sym__alpha_identifier] = ACTIONS(4872), + [anon_sym_AT] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4872), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_where] = ACTIONS(4872), + [anon_sym_object] = ACTIONS(4872), + [anon_sym_fun] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_get] = ACTIONS(4872), + [anon_sym_set] = ACTIONS(4872), + [anon_sym_this] = ACTIONS(4872), + [anon_sym_super] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [sym_label] = ACTIONS(4872), + [anon_sym_in] = ACTIONS(4872), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_null] = ACTIONS(4872), + [anon_sym_if] = ACTIONS(4872), + [anon_sym_else] = ACTIONS(4872), + [anon_sym_when] = ACTIONS(4872), + [anon_sym_try] = ACTIONS(4872), + [anon_sym_throw] = ACTIONS(4872), + [anon_sym_return] = ACTIONS(4872), + [anon_sym_continue] = ACTIONS(4872), + [anon_sym_break] = ACTIONS(4872), + [anon_sym_COLON_COLON] = ACTIONS(4874), + [anon_sym_PLUS_EQ] = ACTIONS(4874), + [anon_sym_DASH_EQ] = ACTIONS(4874), + [anon_sym_STAR_EQ] = ACTIONS(4874), + [anon_sym_SLASH_EQ] = ACTIONS(4874), + [anon_sym_PERCENT_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_BANGin] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4872), + [anon_sym_BANGis] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_as_QMARK] = ACTIONS(4874), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_BANG_BANG] = ACTIONS(4874), + [anon_sym_suspend] = ACTIONS(4872), + [anon_sym_sealed] = ACTIONS(4872), + [anon_sym_annotation] = ACTIONS(4872), + [anon_sym_data] = ACTIONS(4872), + [anon_sym_inner] = ACTIONS(4872), + [anon_sym_value] = ACTIONS(4872), + [anon_sym_override] = ACTIONS(4872), + [anon_sym_lateinit] = ACTIONS(4872), + [anon_sym_public] = ACTIONS(4872), + [anon_sym_private] = ACTIONS(4872), + [anon_sym_internal] = ACTIONS(4872), + [anon_sym_protected] = ACTIONS(4872), + [anon_sym_tailrec] = ACTIONS(4872), + [anon_sym_operator] = ACTIONS(4872), + [anon_sym_infix] = ACTIONS(4872), + [anon_sym_inline] = ACTIONS(4872), + [anon_sym_external] = ACTIONS(4872), + [sym_property_modifier] = ACTIONS(4872), + [anon_sym_abstract] = ACTIONS(4872), + [anon_sym_final] = ACTIONS(4872), + [anon_sym_open] = ACTIONS(4872), + [anon_sym_vararg] = ACTIONS(4872), + [anon_sym_noinline] = ACTIONS(4872), + [anon_sym_crossinline] = ACTIONS(4872), + [anon_sym_expect] = ACTIONS(4872), + [anon_sym_actual] = ACTIONS(4872), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4874), + [anon_sym_continue_AT] = ACTIONS(4874), + [anon_sym_break_AT] = ACTIONS(4874), + [anon_sym_this_AT] = ACTIONS(4874), + [anon_sym_super_AT] = ACTIONS(4874), + [sym_real_literal] = ACTIONS(4874), + [sym_integer_literal] = ACTIONS(4872), + [sym_hex_literal] = ACTIONS(4874), + [sym_bin_literal] = ACTIONS(4874), + [anon_sym_true] = ACTIONS(4872), + [anon_sym_false] = ACTIONS(4872), + [anon_sym_SQUOTE] = ACTIONS(4874), + [sym__backtick_identifier] = ACTIONS(4874), + [sym__automatic_semicolon] = ACTIONS(4874), + [sym_safe_nav] = ACTIONS(4874), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4874), }, - [1049] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4872), - [anon_sym_get] = ACTIONS(4778), - [anon_sym_set] = ACTIONS(4780), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [1058] = { + [sym__alpha_identifier] = ACTIONS(4876), + [anon_sym_AT] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4878), + [anon_sym_RBRACE] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_COMMA] = ACTIONS(4878), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_where] = ACTIONS(4876), + [anon_sym_object] = ACTIONS(4876), + [anon_sym_fun] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym_get] = ACTIONS(4876), + [anon_sym_set] = ACTIONS(4876), + [anon_sym_this] = ACTIONS(4876), + [anon_sym_super] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4876), + [anon_sym_DOT_DOT] = ACTIONS(4878), + [anon_sym_QMARK_COLON] = ACTIONS(4878), + [anon_sym_AMP_AMP] = ACTIONS(4878), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4876), + [anon_sym_if] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4876), + [anon_sym_when] = ACTIONS(4876), + [anon_sym_try] = ACTIONS(4876), + [anon_sym_throw] = ACTIONS(4876), + [anon_sym_return] = ACTIONS(4876), + [anon_sym_continue] = ACTIONS(4876), + [anon_sym_break] = ACTIONS(4876), + [anon_sym_COLON_COLON] = ACTIONS(4878), + [anon_sym_PLUS_EQ] = ACTIONS(4878), + [anon_sym_DASH_EQ] = ACTIONS(4878), + [anon_sym_STAR_EQ] = ACTIONS(4878), + [anon_sym_SLASH_EQ] = ACTIONS(4878), + [anon_sym_PERCENT_EQ] = ACTIONS(4878), + [anon_sym_BANG_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4878), + [anon_sym_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4878), + [anon_sym_LT_EQ] = ACTIONS(4878), + [anon_sym_GT_EQ] = ACTIONS(4878), + [anon_sym_BANGin] = ACTIONS(4878), + [anon_sym_is] = ACTIONS(4876), + [anon_sym_BANGis] = ACTIONS(4878), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4878), + [anon_sym_PLUS_PLUS] = ACTIONS(4878), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4878), + [anon_sym_suspend] = ACTIONS(4876), + [anon_sym_sealed] = ACTIONS(4876), + [anon_sym_annotation] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4876), + [anon_sym_inner] = ACTIONS(4876), + [anon_sym_value] = ACTIONS(4876), + [anon_sym_override] = ACTIONS(4876), + [anon_sym_lateinit] = ACTIONS(4876), + [anon_sym_public] = ACTIONS(4876), + [anon_sym_private] = ACTIONS(4876), + [anon_sym_internal] = ACTIONS(4876), + [anon_sym_protected] = ACTIONS(4876), + [anon_sym_tailrec] = ACTIONS(4876), + [anon_sym_operator] = ACTIONS(4876), + [anon_sym_infix] = ACTIONS(4876), + [anon_sym_inline] = ACTIONS(4876), + [anon_sym_external] = ACTIONS(4876), + [sym_property_modifier] = ACTIONS(4876), + [anon_sym_abstract] = ACTIONS(4876), + [anon_sym_final] = ACTIONS(4876), + [anon_sym_open] = ACTIONS(4876), + [anon_sym_vararg] = ACTIONS(4876), + [anon_sym_noinline] = ACTIONS(4876), + [anon_sym_crossinline] = ACTIONS(4876), + [anon_sym_expect] = ACTIONS(4876), + [anon_sym_actual] = ACTIONS(4876), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4878), + [anon_sym_continue_AT] = ACTIONS(4878), + [anon_sym_break_AT] = ACTIONS(4878), + [anon_sym_this_AT] = ACTIONS(4878), + [anon_sym_super_AT] = ACTIONS(4878), + [sym_real_literal] = ACTIONS(4878), + [sym_integer_literal] = ACTIONS(4876), + [sym_hex_literal] = ACTIONS(4878), + [sym_bin_literal] = ACTIONS(4878), + [anon_sym_true] = ACTIONS(4876), + [anon_sym_false] = ACTIONS(4876), + [anon_sym_SQUOTE] = ACTIONS(4878), + [sym__backtick_identifier] = ACTIONS(4878), + [sym__automatic_semicolon] = ACTIONS(4878), + [sym_safe_nav] = ACTIONS(4878), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4878), }, - [1050] = { - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_this] = ACTIONS(4754), - [anon_sym_super] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(4754), - [anon_sym_if] = ACTIONS(4754), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_when] = ACTIONS(4754), - [anon_sym_try] = ACTIONS(4754), - [anon_sym_throw] = ACTIONS(4754), - [anon_sym_return] = ACTIONS(4754), - [anon_sym_continue] = ACTIONS(4754), - [anon_sym_break] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4756), - [anon_sym_continue_AT] = ACTIONS(4756), - [anon_sym_break_AT] = ACTIONS(4756), - [anon_sym_this_AT] = ACTIONS(4756), - [anon_sym_super_AT] = ACTIONS(4756), - [sym_real_literal] = ACTIONS(4756), - [sym_integer_literal] = ACTIONS(4754), - [sym_hex_literal] = ACTIONS(4756), - [sym_bin_literal] = ACTIONS(4756), - [anon_sym_true] = ACTIONS(4754), - [anon_sym_false] = ACTIONS(4754), - [anon_sym_SQUOTE] = ACTIONS(4756), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4756), + [1059] = { + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_object] = ACTIONS(4880), + [anon_sym_fun] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_this] = ACTIONS(4880), + [anon_sym_super] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [sym_label] = ACTIONS(4880), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4880), + [anon_sym_if] = ACTIONS(4880), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4880), + [anon_sym_throw] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4880), + [anon_sym_continue] = ACTIONS(4880), + [anon_sym_break] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4882), + [anon_sym_continue_AT] = ACTIONS(4882), + [anon_sym_break_AT] = ACTIONS(4882), + [anon_sym_this_AT] = ACTIONS(4882), + [anon_sym_super_AT] = ACTIONS(4882), + [sym_real_literal] = ACTIONS(4882), + [sym_integer_literal] = ACTIONS(4880), + [sym_hex_literal] = ACTIONS(4882), + [sym_bin_literal] = ACTIONS(4882), + [anon_sym_true] = ACTIONS(4880), + [anon_sym_false] = ACTIONS(4880), + [anon_sym_SQUOTE] = ACTIONS(4882), + [sym__backtick_identifier] = ACTIONS(4882), + [sym__automatic_semicolon] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4882), }, - [1051] = { - [sym__alpha_identifier] = ACTIONS(4874), - [anon_sym_AT] = ACTIONS(4876), - [anon_sym_LBRACK] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_as] = ACTIONS(4874), - [anon_sym_EQ] = ACTIONS(4874), - [anon_sym_LBRACE] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(4876), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(4874), - [anon_sym_where] = ACTIONS(4874), - [anon_sym_object] = ACTIONS(4874), - [anon_sym_fun] = ACTIONS(4874), - [anon_sym_SEMI] = ACTIONS(4876), - [anon_sym_get] = ACTIONS(4874), - [anon_sym_set] = ACTIONS(4874), - [anon_sym_this] = ACTIONS(4874), - [anon_sym_super] = ACTIONS(4874), - [anon_sym_STAR] = ACTIONS(4874), - [sym_label] = ACTIONS(4874), - [anon_sym_in] = ACTIONS(4874), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_QMARK_COLON] = ACTIONS(4876), - [anon_sym_AMP_AMP] = ACTIONS(4876), - [anon_sym_PIPE_PIPE] = ACTIONS(4876), - [anon_sym_null] = ACTIONS(4874), - [anon_sym_if] = ACTIONS(4874), - [anon_sym_else] = ACTIONS(4874), - [anon_sym_when] = ACTIONS(4874), - [anon_sym_try] = ACTIONS(4874), - [anon_sym_throw] = ACTIONS(4874), - [anon_sym_return] = ACTIONS(4874), - [anon_sym_continue] = ACTIONS(4874), - [anon_sym_break] = ACTIONS(4874), - [anon_sym_COLON_COLON] = ACTIONS(4876), - [anon_sym_PLUS_EQ] = ACTIONS(4876), - [anon_sym_DASH_EQ] = ACTIONS(4876), - [anon_sym_STAR_EQ] = ACTIONS(4876), - [anon_sym_SLASH_EQ] = ACTIONS(4876), - [anon_sym_PERCENT_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), - [anon_sym_EQ_EQ] = ACTIONS(4874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), - [anon_sym_LT_EQ] = ACTIONS(4876), - [anon_sym_GT_EQ] = ACTIONS(4876), - [anon_sym_BANGin] = ACTIONS(4876), - [anon_sym_is] = ACTIONS(4874), - [anon_sym_BANGis] = ACTIONS(4876), - [anon_sym_PLUS] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_SLASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4874), - [anon_sym_as_QMARK] = ACTIONS(4876), - [anon_sym_PLUS_PLUS] = ACTIONS(4876), - [anon_sym_DASH_DASH] = ACTIONS(4876), - [anon_sym_BANG] = ACTIONS(4874), - [anon_sym_BANG_BANG] = ACTIONS(4876), - [anon_sym_suspend] = ACTIONS(4874), - [anon_sym_sealed] = ACTIONS(4874), - [anon_sym_annotation] = ACTIONS(4874), - [anon_sym_data] = ACTIONS(4874), - [anon_sym_inner] = ACTIONS(4874), - [anon_sym_value] = ACTIONS(4874), - [anon_sym_override] = ACTIONS(4874), - [anon_sym_lateinit] = ACTIONS(4874), - [anon_sym_public] = ACTIONS(4874), - [anon_sym_private] = ACTIONS(4874), - [anon_sym_internal] = ACTIONS(4874), - [anon_sym_protected] = ACTIONS(4874), - [anon_sym_tailrec] = ACTIONS(4874), - [anon_sym_operator] = ACTIONS(4874), - [anon_sym_infix] = ACTIONS(4874), - [anon_sym_inline] = ACTIONS(4874), - [anon_sym_external] = ACTIONS(4874), - [sym_property_modifier] = ACTIONS(4874), - [anon_sym_abstract] = ACTIONS(4874), - [anon_sym_final] = ACTIONS(4874), - [anon_sym_open] = ACTIONS(4874), - [anon_sym_vararg] = ACTIONS(4874), - [anon_sym_noinline] = ACTIONS(4874), - [anon_sym_crossinline] = ACTIONS(4874), - [anon_sym_expect] = ACTIONS(4874), - [anon_sym_actual] = ACTIONS(4874), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4876), - [anon_sym_continue_AT] = ACTIONS(4876), - [anon_sym_break_AT] = ACTIONS(4876), - [anon_sym_this_AT] = ACTIONS(4876), - [anon_sym_super_AT] = ACTIONS(4876), - [sym_real_literal] = ACTIONS(4876), - [sym_integer_literal] = ACTIONS(4874), - [sym_hex_literal] = ACTIONS(4876), - [sym_bin_literal] = ACTIONS(4876), - [anon_sym_true] = ACTIONS(4874), - [anon_sym_false] = ACTIONS(4874), - [anon_sym_SQUOTE] = ACTIONS(4876), - [sym__backtick_identifier] = ACTIONS(4876), - [sym__automatic_semicolon] = ACTIONS(4876), - [sym_safe_nav] = ACTIONS(4876), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4876), + [1060] = { + [sym__alpha_identifier] = ACTIONS(3932), + [anon_sym_AT] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_DOT] = ACTIONS(3932), + [anon_sym_as] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_where] = ACTIONS(3932), + [anon_sym_object] = ACTIONS(3932), + [anon_sym_fun] = ACTIONS(3932), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3932), + [anon_sym_set] = ACTIONS(3932), + [anon_sym_this] = ACTIONS(3932), + [anon_sym_super] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [sym_label] = ACTIONS(3932), + [anon_sym_in] = ACTIONS(3932), + [anon_sym_DOT_DOT] = ACTIONS(3934), + [anon_sym_QMARK_COLON] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_if] = ACTIONS(3932), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_when] = ACTIONS(3932), + [anon_sym_try] = ACTIONS(3932), + [anon_sym_throw] = ACTIONS(3932), + [anon_sym_return] = ACTIONS(3932), + [anon_sym_continue] = ACTIONS(3932), + [anon_sym_break] = ACTIONS(3932), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3934), + [anon_sym_SLASH_EQ] = ACTIONS(3934), + [anon_sym_PERCENT_EQ] = ACTIONS(3934), + [anon_sym_BANG_EQ] = ACTIONS(3932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_BANGin] = ACTIONS(3934), + [anon_sym_is] = ACTIONS(3932), + [anon_sym_BANGis] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_as_QMARK] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [anon_sym_BANG] = ACTIONS(3932), + [anon_sym_BANG_BANG] = ACTIONS(3934), + [anon_sym_suspend] = ACTIONS(3932), + [anon_sym_sealed] = ACTIONS(3932), + [anon_sym_annotation] = ACTIONS(3932), + [anon_sym_data] = ACTIONS(3932), + [anon_sym_inner] = ACTIONS(3932), + [anon_sym_value] = ACTIONS(3932), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_lateinit] = ACTIONS(3932), + [anon_sym_public] = ACTIONS(3932), + [anon_sym_private] = ACTIONS(3932), + [anon_sym_internal] = ACTIONS(3932), + [anon_sym_protected] = ACTIONS(3932), + [anon_sym_tailrec] = ACTIONS(3932), + [anon_sym_operator] = ACTIONS(3932), + [anon_sym_infix] = ACTIONS(3932), + [anon_sym_inline] = ACTIONS(3932), + [anon_sym_external] = ACTIONS(3932), + [sym_property_modifier] = ACTIONS(3932), + [anon_sym_abstract] = ACTIONS(3932), + [anon_sym_final] = ACTIONS(3932), + [anon_sym_open] = ACTIONS(3932), + [anon_sym_vararg] = ACTIONS(3932), + [anon_sym_noinline] = ACTIONS(3932), + [anon_sym_crossinline] = ACTIONS(3932), + [anon_sym_expect] = ACTIONS(3932), + [anon_sym_actual] = ACTIONS(3932), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3934), + [anon_sym_continue_AT] = ACTIONS(3934), + [anon_sym_break_AT] = ACTIONS(3934), + [anon_sym_this_AT] = ACTIONS(3934), + [anon_sym_super_AT] = ACTIONS(3934), + [sym_real_literal] = ACTIONS(3934), + [sym_integer_literal] = ACTIONS(3932), + [sym_hex_literal] = ACTIONS(3934), + [sym_bin_literal] = ACTIONS(3934), + [anon_sym_true] = ACTIONS(3932), + [anon_sym_false] = ACTIONS(3932), + [anon_sym_SQUOTE] = ACTIONS(3934), + [sym__backtick_identifier] = ACTIONS(3934), + [sym__automatic_semicolon] = ACTIONS(3934), + [sym_safe_nav] = ACTIONS(3934), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3934), }, - [1052] = { - [sym__alpha_identifier] = ACTIONS(4878), - [anon_sym_AT] = ACTIONS(4880), - [anon_sym_LBRACK] = ACTIONS(4880), - [anon_sym_DOT] = ACTIONS(4878), - [anon_sym_as] = ACTIONS(4878), - [anon_sym_EQ] = ACTIONS(4878), - [anon_sym_LBRACE] = ACTIONS(4880), - [anon_sym_RBRACE] = ACTIONS(4880), - [anon_sym_LPAREN] = ACTIONS(4880), - [anon_sym_COMMA] = ACTIONS(4880), - [anon_sym_LT] = ACTIONS(4878), - [anon_sym_GT] = ACTIONS(4878), - [anon_sym_where] = ACTIONS(4878), - [anon_sym_object] = ACTIONS(4878), - [anon_sym_fun] = ACTIONS(4878), - [anon_sym_SEMI] = ACTIONS(4880), - [anon_sym_get] = ACTIONS(4878), - [anon_sym_set] = ACTIONS(4878), - [anon_sym_this] = ACTIONS(4878), - [anon_sym_super] = ACTIONS(4878), - [anon_sym_STAR] = ACTIONS(4878), - [sym_label] = ACTIONS(4878), - [anon_sym_in] = ACTIONS(4878), - [anon_sym_DOT_DOT] = ACTIONS(4880), - [anon_sym_QMARK_COLON] = ACTIONS(4880), - [anon_sym_AMP_AMP] = ACTIONS(4880), - [anon_sym_PIPE_PIPE] = ACTIONS(4880), - [anon_sym_null] = ACTIONS(4878), - [anon_sym_if] = ACTIONS(4878), - [anon_sym_else] = ACTIONS(4878), - [anon_sym_when] = ACTIONS(4878), - [anon_sym_try] = ACTIONS(4878), - [anon_sym_throw] = ACTIONS(4878), - [anon_sym_return] = ACTIONS(4878), - [anon_sym_continue] = ACTIONS(4878), - [anon_sym_break] = ACTIONS(4878), - [anon_sym_COLON_COLON] = ACTIONS(4880), - [anon_sym_PLUS_EQ] = ACTIONS(4880), - [anon_sym_DASH_EQ] = ACTIONS(4880), - [anon_sym_STAR_EQ] = ACTIONS(4880), - [anon_sym_SLASH_EQ] = ACTIONS(4880), - [anon_sym_PERCENT_EQ] = ACTIONS(4880), - [anon_sym_BANG_EQ] = ACTIONS(4878), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4880), - [anon_sym_EQ_EQ] = ACTIONS(4878), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4880), - [anon_sym_LT_EQ] = ACTIONS(4880), - [anon_sym_GT_EQ] = ACTIONS(4880), - [anon_sym_BANGin] = ACTIONS(4880), - [anon_sym_is] = ACTIONS(4878), - [anon_sym_BANGis] = ACTIONS(4880), - [anon_sym_PLUS] = ACTIONS(4878), - [anon_sym_DASH] = ACTIONS(4878), - [anon_sym_SLASH] = ACTIONS(4878), - [anon_sym_PERCENT] = ACTIONS(4878), - [anon_sym_as_QMARK] = ACTIONS(4880), - [anon_sym_PLUS_PLUS] = ACTIONS(4880), - [anon_sym_DASH_DASH] = ACTIONS(4880), - [anon_sym_BANG] = ACTIONS(4878), - [anon_sym_BANG_BANG] = ACTIONS(4880), - [anon_sym_suspend] = ACTIONS(4878), - [anon_sym_sealed] = ACTIONS(4878), - [anon_sym_annotation] = ACTIONS(4878), - [anon_sym_data] = ACTIONS(4878), - [anon_sym_inner] = ACTIONS(4878), - [anon_sym_value] = ACTIONS(4878), - [anon_sym_override] = ACTIONS(4878), - [anon_sym_lateinit] = ACTIONS(4878), - [anon_sym_public] = ACTIONS(4878), - [anon_sym_private] = ACTIONS(4878), - [anon_sym_internal] = ACTIONS(4878), - [anon_sym_protected] = ACTIONS(4878), - [anon_sym_tailrec] = ACTIONS(4878), - [anon_sym_operator] = ACTIONS(4878), - [anon_sym_infix] = ACTIONS(4878), - [anon_sym_inline] = ACTIONS(4878), - [anon_sym_external] = ACTIONS(4878), - [sym_property_modifier] = ACTIONS(4878), - [anon_sym_abstract] = ACTIONS(4878), - [anon_sym_final] = ACTIONS(4878), - [anon_sym_open] = ACTIONS(4878), - [anon_sym_vararg] = ACTIONS(4878), - [anon_sym_noinline] = ACTIONS(4878), - [anon_sym_crossinline] = ACTIONS(4878), - [anon_sym_expect] = ACTIONS(4878), - [anon_sym_actual] = ACTIONS(4878), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4880), - [anon_sym_continue_AT] = ACTIONS(4880), - [anon_sym_break_AT] = ACTIONS(4880), - [anon_sym_this_AT] = ACTIONS(4880), - [anon_sym_super_AT] = ACTIONS(4880), - [sym_real_literal] = ACTIONS(4880), - [sym_integer_literal] = ACTIONS(4878), - [sym_hex_literal] = ACTIONS(4880), - [sym_bin_literal] = ACTIONS(4880), - [anon_sym_true] = ACTIONS(4878), - [anon_sym_false] = ACTIONS(4878), - [anon_sym_SQUOTE] = ACTIONS(4880), - [sym__backtick_identifier] = ACTIONS(4880), - [sym__automatic_semicolon] = ACTIONS(4880), - [sym_safe_nav] = ACTIONS(4880), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4880), + [1061] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_object] = ACTIONS(4343), + [anon_sym_fun] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_this] = ACTIONS(4343), + [anon_sym_super] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_null] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4345), + [anon_sym_continue_AT] = ACTIONS(4345), + [anon_sym_break_AT] = ACTIONS(4345), + [anon_sym_this_AT] = ACTIONS(4345), + [anon_sym_super_AT] = ACTIONS(4345), + [sym_real_literal] = ACTIONS(4345), + [sym_integer_literal] = ACTIONS(4343), + [sym_hex_literal] = ACTIONS(4345), + [sym_bin_literal] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [anon_sym_SQUOTE] = ACTIONS(4345), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4345), }, - [1053] = { - [sym__alpha_identifier] = ACTIONS(4882), - [anon_sym_AT] = ACTIONS(4884), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_DOT] = ACTIONS(4882), - [anon_sym_as] = ACTIONS(4882), - [anon_sym_EQ] = ACTIONS(4882), - [anon_sym_LBRACE] = ACTIONS(4884), - [anon_sym_RBRACE] = ACTIONS(4884), - [anon_sym_LPAREN] = ACTIONS(4884), - [anon_sym_COMMA] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4882), - [anon_sym_GT] = ACTIONS(4882), - [anon_sym_where] = ACTIONS(4882), - [anon_sym_object] = ACTIONS(4882), - [anon_sym_fun] = ACTIONS(4882), - [anon_sym_SEMI] = ACTIONS(4884), - [anon_sym_get] = ACTIONS(4882), - [anon_sym_set] = ACTIONS(4882), - [anon_sym_this] = ACTIONS(4882), - [anon_sym_super] = ACTIONS(4882), - [anon_sym_STAR] = ACTIONS(4882), - [sym_label] = ACTIONS(4882), - [anon_sym_in] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4884), - [anon_sym_QMARK_COLON] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [anon_sym_null] = ACTIONS(4882), - [anon_sym_if] = ACTIONS(4882), - [anon_sym_else] = ACTIONS(4882), - [anon_sym_when] = ACTIONS(4882), - [anon_sym_try] = ACTIONS(4882), - [anon_sym_throw] = ACTIONS(4882), - [anon_sym_return] = ACTIONS(4882), - [anon_sym_continue] = ACTIONS(4882), - [anon_sym_break] = ACTIONS(4882), - [anon_sym_COLON_COLON] = ACTIONS(4884), - [anon_sym_PLUS_EQ] = ACTIONS(4884), - [anon_sym_DASH_EQ] = ACTIONS(4884), - [anon_sym_STAR_EQ] = ACTIONS(4884), - [anon_sym_SLASH_EQ] = ACTIONS(4884), - [anon_sym_PERCENT_EQ] = ACTIONS(4884), - [anon_sym_BANG_EQ] = ACTIONS(4882), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4884), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4884), - [anon_sym_BANGin] = ACTIONS(4884), - [anon_sym_is] = ACTIONS(4882), - [anon_sym_BANGis] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4882), - [anon_sym_DASH] = ACTIONS(4882), - [anon_sym_SLASH] = ACTIONS(4882), - [anon_sym_PERCENT] = ACTIONS(4882), - [anon_sym_as_QMARK] = ACTIONS(4884), - [anon_sym_PLUS_PLUS] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4884), - [anon_sym_BANG] = ACTIONS(4882), - [anon_sym_BANG_BANG] = ACTIONS(4884), - [anon_sym_suspend] = ACTIONS(4882), - [anon_sym_sealed] = ACTIONS(4882), - [anon_sym_annotation] = ACTIONS(4882), - [anon_sym_data] = ACTIONS(4882), - [anon_sym_inner] = ACTIONS(4882), - [anon_sym_value] = ACTIONS(4882), - [anon_sym_override] = ACTIONS(4882), - [anon_sym_lateinit] = ACTIONS(4882), - [anon_sym_public] = ACTIONS(4882), - [anon_sym_private] = ACTIONS(4882), - [anon_sym_internal] = ACTIONS(4882), - [anon_sym_protected] = ACTIONS(4882), - [anon_sym_tailrec] = ACTIONS(4882), - [anon_sym_operator] = ACTIONS(4882), - [anon_sym_infix] = ACTIONS(4882), - [anon_sym_inline] = ACTIONS(4882), - [anon_sym_external] = ACTIONS(4882), - [sym_property_modifier] = ACTIONS(4882), - [anon_sym_abstract] = ACTIONS(4882), - [anon_sym_final] = ACTIONS(4882), - [anon_sym_open] = ACTIONS(4882), - [anon_sym_vararg] = ACTIONS(4882), - [anon_sym_noinline] = ACTIONS(4882), - [anon_sym_crossinline] = ACTIONS(4882), - [anon_sym_expect] = ACTIONS(4882), - [anon_sym_actual] = ACTIONS(4882), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4884), - [anon_sym_continue_AT] = ACTIONS(4884), - [anon_sym_break_AT] = ACTIONS(4884), - [anon_sym_this_AT] = ACTIONS(4884), - [anon_sym_super_AT] = ACTIONS(4884), - [sym_real_literal] = ACTIONS(4884), - [sym_integer_literal] = ACTIONS(4882), - [sym_hex_literal] = ACTIONS(4884), - [sym_bin_literal] = ACTIONS(4884), - [anon_sym_true] = ACTIONS(4882), - [anon_sym_false] = ACTIONS(4882), - [anon_sym_SQUOTE] = ACTIONS(4884), - [sym__backtick_identifier] = ACTIONS(4884), - [sym__automatic_semicolon] = ACTIONS(4884), - [sym_safe_nav] = ACTIONS(4884), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4884), + [1062] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_object] = ACTIONS(4331), + [anon_sym_fun] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_this] = ACTIONS(4331), + [anon_sym_super] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4333), + [anon_sym_continue_AT] = ACTIONS(4333), + [anon_sym_break_AT] = ACTIONS(4333), + [anon_sym_this_AT] = ACTIONS(4333), + [anon_sym_super_AT] = ACTIONS(4333), + [sym_real_literal] = ACTIONS(4333), + [sym_integer_literal] = ACTIONS(4331), + [sym_hex_literal] = ACTIONS(4333), + [sym_bin_literal] = ACTIONS(4333), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4333), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4333), }, - [1054] = { - [sym__alpha_identifier] = ACTIONS(4886), - [anon_sym_AT] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4888), - [anon_sym_RBRACE] = ACTIONS(4888), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_COMMA] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_object] = ACTIONS(4886), - [anon_sym_fun] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4888), - [anon_sym_get] = ACTIONS(4886), - [anon_sym_set] = ACTIONS(4886), - [anon_sym_this] = ACTIONS(4886), - [anon_sym_super] = ACTIONS(4886), - [anon_sym_STAR] = ACTIONS(4886), - [sym_label] = ACTIONS(4886), - [anon_sym_in] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4888), - [anon_sym_QMARK_COLON] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [anon_sym_null] = ACTIONS(4886), - [anon_sym_if] = ACTIONS(4886), - [anon_sym_else] = ACTIONS(4886), - [anon_sym_when] = ACTIONS(4886), - [anon_sym_try] = ACTIONS(4886), - [anon_sym_throw] = ACTIONS(4886), - [anon_sym_return] = ACTIONS(4886), - [anon_sym_continue] = ACTIONS(4886), - [anon_sym_break] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(4888), - [anon_sym_PLUS_EQ] = ACTIONS(4888), - [anon_sym_DASH_EQ] = ACTIONS(4888), - [anon_sym_STAR_EQ] = ACTIONS(4888), - [anon_sym_SLASH_EQ] = ACTIONS(4888), - [anon_sym_PERCENT_EQ] = ACTIONS(4888), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4888), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4888), - [anon_sym_BANGin] = ACTIONS(4888), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_BANGis] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4886), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_as_QMARK] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_BANG] = ACTIONS(4886), - [anon_sym_BANG_BANG] = ACTIONS(4888), - [anon_sym_suspend] = ACTIONS(4886), - [anon_sym_sealed] = ACTIONS(4886), - [anon_sym_annotation] = ACTIONS(4886), - [anon_sym_data] = ACTIONS(4886), - [anon_sym_inner] = ACTIONS(4886), - [anon_sym_value] = ACTIONS(4886), - [anon_sym_override] = ACTIONS(4886), - [anon_sym_lateinit] = ACTIONS(4886), - [anon_sym_public] = ACTIONS(4886), - [anon_sym_private] = ACTIONS(4886), - [anon_sym_internal] = ACTIONS(4886), - [anon_sym_protected] = ACTIONS(4886), - [anon_sym_tailrec] = ACTIONS(4886), - [anon_sym_operator] = ACTIONS(4886), - [anon_sym_infix] = ACTIONS(4886), - [anon_sym_inline] = ACTIONS(4886), - [anon_sym_external] = ACTIONS(4886), - [sym_property_modifier] = ACTIONS(4886), - [anon_sym_abstract] = ACTIONS(4886), - [anon_sym_final] = ACTIONS(4886), - [anon_sym_open] = ACTIONS(4886), - [anon_sym_vararg] = ACTIONS(4886), - [anon_sym_noinline] = ACTIONS(4886), - [anon_sym_crossinline] = ACTIONS(4886), - [anon_sym_expect] = ACTIONS(4886), - [anon_sym_actual] = ACTIONS(4886), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4888), - [anon_sym_continue_AT] = ACTIONS(4888), - [anon_sym_break_AT] = ACTIONS(4888), - [anon_sym_this_AT] = ACTIONS(4888), - [anon_sym_super_AT] = ACTIONS(4888), - [sym_real_literal] = ACTIONS(4888), - [sym_integer_literal] = ACTIONS(4886), - [sym_hex_literal] = ACTIONS(4888), - [sym_bin_literal] = ACTIONS(4888), - [anon_sym_true] = ACTIONS(4886), - [anon_sym_false] = ACTIONS(4886), - [anon_sym_SQUOTE] = ACTIONS(4888), - [sym__backtick_identifier] = ACTIONS(4888), - [sym__automatic_semicolon] = ACTIONS(4888), - [sym_safe_nav] = ACTIONS(4888), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4888), + [1063] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_object] = ACTIONS(4343), + [anon_sym_fun] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_this] = ACTIONS(4343), + [anon_sym_super] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_null] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4345), + [anon_sym_continue_AT] = ACTIONS(4345), + [anon_sym_break_AT] = ACTIONS(4345), + [anon_sym_this_AT] = ACTIONS(4345), + [anon_sym_super_AT] = ACTIONS(4345), + [sym_real_literal] = ACTIONS(4345), + [sym_integer_literal] = ACTIONS(4343), + [sym_hex_literal] = ACTIONS(4345), + [sym_bin_literal] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [anon_sym_SQUOTE] = ACTIONS(4345), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4345), }, - [1055] = { - [sym__alpha_identifier] = ACTIONS(4890), - [anon_sym_AT] = ACTIONS(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4890), - [anon_sym_EQ] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_where] = ACTIONS(4890), - [anon_sym_object] = ACTIONS(4890), - [anon_sym_fun] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_get] = ACTIONS(4890), - [anon_sym_set] = ACTIONS(4890), - [anon_sym_this] = ACTIONS(4890), - [anon_sym_super] = ACTIONS(4890), - [anon_sym_STAR] = ACTIONS(4890), - [sym_label] = ACTIONS(4890), - [anon_sym_in] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_QMARK_COLON] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_null] = ACTIONS(4890), - [anon_sym_if] = ACTIONS(4890), - [anon_sym_else] = ACTIONS(4890), - [anon_sym_when] = ACTIONS(4890), - [anon_sym_try] = ACTIONS(4890), - [anon_sym_throw] = ACTIONS(4890), - [anon_sym_return] = ACTIONS(4890), - [anon_sym_continue] = ACTIONS(4890), - [anon_sym_break] = ACTIONS(4890), - [anon_sym_COLON_COLON] = ACTIONS(4892), - [anon_sym_PLUS_EQ] = ACTIONS(4892), - [anon_sym_DASH_EQ] = ACTIONS(4892), - [anon_sym_STAR_EQ] = ACTIONS(4892), - [anon_sym_SLASH_EQ] = ACTIONS(4892), - [anon_sym_PERCENT_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_BANGin] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4890), - [anon_sym_BANGis] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4890), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_as_QMARK] = ACTIONS(4892), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_BANG] = ACTIONS(4890), - [anon_sym_BANG_BANG] = ACTIONS(4892), - [anon_sym_suspend] = ACTIONS(4890), - [anon_sym_sealed] = ACTIONS(4890), - [anon_sym_annotation] = ACTIONS(4890), - [anon_sym_data] = ACTIONS(4890), - [anon_sym_inner] = ACTIONS(4890), - [anon_sym_value] = ACTIONS(4890), - [anon_sym_override] = ACTIONS(4890), - [anon_sym_lateinit] = ACTIONS(4890), - [anon_sym_public] = ACTIONS(4890), - [anon_sym_private] = ACTIONS(4890), - [anon_sym_internal] = ACTIONS(4890), - [anon_sym_protected] = ACTIONS(4890), - [anon_sym_tailrec] = ACTIONS(4890), - [anon_sym_operator] = ACTIONS(4890), - [anon_sym_infix] = ACTIONS(4890), - [anon_sym_inline] = ACTIONS(4890), - [anon_sym_external] = ACTIONS(4890), - [sym_property_modifier] = ACTIONS(4890), - [anon_sym_abstract] = ACTIONS(4890), - [anon_sym_final] = ACTIONS(4890), - [anon_sym_open] = ACTIONS(4890), - [anon_sym_vararg] = ACTIONS(4890), - [anon_sym_noinline] = ACTIONS(4890), - [anon_sym_crossinline] = ACTIONS(4890), - [anon_sym_expect] = ACTIONS(4890), - [anon_sym_actual] = ACTIONS(4890), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4892), - [anon_sym_continue_AT] = ACTIONS(4892), - [anon_sym_break_AT] = ACTIONS(4892), - [anon_sym_this_AT] = ACTIONS(4892), - [anon_sym_super_AT] = ACTIONS(4892), - [sym_real_literal] = ACTIONS(4892), - [sym_integer_literal] = ACTIONS(4890), - [sym_hex_literal] = ACTIONS(4892), - [sym_bin_literal] = ACTIONS(4892), - [anon_sym_true] = ACTIONS(4890), - [anon_sym_false] = ACTIONS(4890), - [anon_sym_SQUOTE] = ACTIONS(4892), - [sym__backtick_identifier] = ACTIONS(4892), - [sym__automatic_semicolon] = ACTIONS(4892), - [sym_safe_nav] = ACTIONS(4892), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4892), + [1064] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_object] = ACTIONS(4331), + [anon_sym_fun] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_this] = ACTIONS(4331), + [anon_sym_super] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4333), + [anon_sym_continue_AT] = ACTIONS(4333), + [anon_sym_break_AT] = ACTIONS(4333), + [anon_sym_this_AT] = ACTIONS(4333), + [anon_sym_super_AT] = ACTIONS(4333), + [sym_real_literal] = ACTIONS(4333), + [sym_integer_literal] = ACTIONS(4331), + [sym_hex_literal] = ACTIONS(4333), + [sym_bin_literal] = ACTIONS(4333), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4333), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4333), }, - [1056] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4898), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_object] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_this] = ACTIONS(4894), - [anon_sym_super] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [sym_label] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_when] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_throw] = ACTIONS(4894), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_continue] = ACTIONS(4894), - [anon_sym_break] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_suspend] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_annotation] = ACTIONS(4894), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_lateinit] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_tailrec] = ACTIONS(4894), - [anon_sym_operator] = ACTIONS(4894), - [anon_sym_infix] = ACTIONS(4894), - [anon_sym_inline] = ACTIONS(4894), - [anon_sym_external] = ACTIONS(4894), - [sym_property_modifier] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_final] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_vararg] = ACTIONS(4894), - [anon_sym_noinline] = ACTIONS(4894), - [anon_sym_crossinline] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4896), - [anon_sym_continue_AT] = ACTIONS(4896), - [anon_sym_break_AT] = ACTIONS(4896), - [anon_sym_this_AT] = ACTIONS(4896), - [anon_sym_super_AT] = ACTIONS(4896), - [sym_real_literal] = ACTIONS(4896), - [sym_integer_literal] = ACTIONS(4894), - [sym_hex_literal] = ACTIONS(4896), - [sym_bin_literal] = ACTIONS(4896), - [anon_sym_true] = ACTIONS(4894), - [anon_sym_false] = ACTIONS(4894), - [anon_sym_SQUOTE] = ACTIONS(4896), - [sym__backtick_identifier] = ACTIONS(4896), - [sym__automatic_semicolon] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4896), + [1065] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, - [1057] = { - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(4509), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_object] = ACTIONS(4507), - [anon_sym_fun] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_this] = ACTIONS(4507), - [anon_sym_super] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [sym_label] = ACTIONS(4507), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_null] = ACTIONS(4507), - [anon_sym_if] = ACTIONS(4507), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_when] = ACTIONS(4507), - [anon_sym_try] = ACTIONS(4507), - [anon_sym_throw] = ACTIONS(4507), - [anon_sym_return] = ACTIONS(4507), - [anon_sym_continue] = ACTIONS(4507), - [anon_sym_break] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_suspend] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_annotation] = ACTIONS(4507), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_lateinit] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_tailrec] = ACTIONS(4507), - [anon_sym_operator] = ACTIONS(4507), - [anon_sym_infix] = ACTIONS(4507), - [anon_sym_inline] = ACTIONS(4507), - [anon_sym_external] = ACTIONS(4507), - [sym_property_modifier] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_final] = ACTIONS(4507), - [anon_sym_open] = ACTIONS(4507), - [anon_sym_vararg] = ACTIONS(4507), - [anon_sym_noinline] = ACTIONS(4507), - [anon_sym_crossinline] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4509), - [anon_sym_continue_AT] = ACTIONS(4509), - [anon_sym_break_AT] = ACTIONS(4509), - [anon_sym_this_AT] = ACTIONS(4509), - [anon_sym_super_AT] = ACTIONS(4509), - [sym_real_literal] = ACTIONS(4509), - [sym_integer_literal] = ACTIONS(4507), - [sym_hex_literal] = ACTIONS(4509), - [sym_bin_literal] = ACTIONS(4509), - [anon_sym_true] = ACTIONS(4507), - [anon_sym_false] = ACTIONS(4507), - [anon_sym_SQUOTE] = ACTIONS(4509), - [sym__backtick_identifier] = ACTIONS(4509), - [sym__automatic_semicolon] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4509), + [1066] = { + [sym__alpha_identifier] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4896), + [anon_sym_as] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_where] = ACTIONS(4896), + [anon_sym_object] = ACTIONS(4896), + [anon_sym_fun] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_get] = ACTIONS(4896), + [anon_sym_set] = ACTIONS(4896), + [anon_sym_this] = ACTIONS(4896), + [anon_sym_super] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [sym_label] = ACTIONS(4896), + [anon_sym_in] = ACTIONS(4896), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_QMARK_COLON] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4896), + [anon_sym_if] = ACTIONS(4896), + [anon_sym_else] = ACTIONS(4896), + [anon_sym_when] = ACTIONS(4896), + [anon_sym_try] = ACTIONS(4896), + [anon_sym_throw] = ACTIONS(4896), + [anon_sym_return] = ACTIONS(4896), + [anon_sym_continue] = ACTIONS(4896), + [anon_sym_break] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4898), + [anon_sym_DASH_EQ] = ACTIONS(4898), + [anon_sym_STAR_EQ] = ACTIONS(4898), + [anon_sym_SLASH_EQ] = ACTIONS(4898), + [anon_sym_PERCENT_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_BANGin] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4896), + [anon_sym_BANGis] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_as_QMARK] = ACTIONS(4898), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_BANG_BANG] = ACTIONS(4898), + [anon_sym_suspend] = ACTIONS(4896), + [anon_sym_sealed] = ACTIONS(4896), + [anon_sym_annotation] = ACTIONS(4896), + [anon_sym_data] = ACTIONS(4896), + [anon_sym_inner] = ACTIONS(4896), + [anon_sym_value] = ACTIONS(4896), + [anon_sym_override] = ACTIONS(4896), + [anon_sym_lateinit] = ACTIONS(4896), + [anon_sym_public] = ACTIONS(4896), + [anon_sym_private] = ACTIONS(4896), + [anon_sym_internal] = ACTIONS(4896), + [anon_sym_protected] = ACTIONS(4896), + [anon_sym_tailrec] = ACTIONS(4896), + [anon_sym_operator] = ACTIONS(4896), + [anon_sym_infix] = ACTIONS(4896), + [anon_sym_inline] = ACTIONS(4896), + [anon_sym_external] = ACTIONS(4896), + [sym_property_modifier] = ACTIONS(4896), + [anon_sym_abstract] = ACTIONS(4896), + [anon_sym_final] = ACTIONS(4896), + [anon_sym_open] = ACTIONS(4896), + [anon_sym_vararg] = ACTIONS(4896), + [anon_sym_noinline] = ACTIONS(4896), + [anon_sym_crossinline] = ACTIONS(4896), + [anon_sym_expect] = ACTIONS(4896), + [anon_sym_actual] = ACTIONS(4896), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4898), + [anon_sym_continue_AT] = ACTIONS(4898), + [anon_sym_break_AT] = ACTIONS(4898), + [anon_sym_this_AT] = ACTIONS(4898), + [anon_sym_super_AT] = ACTIONS(4898), + [sym_real_literal] = ACTIONS(4898), + [sym_integer_literal] = ACTIONS(4896), + [sym_hex_literal] = ACTIONS(4898), + [sym_bin_literal] = ACTIONS(4898), + [anon_sym_true] = ACTIONS(4896), + [anon_sym_false] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4898), + [sym__backtick_identifier] = ACTIONS(4898), + [sym__automatic_semicolon] = ACTIONS(4898), + [sym_safe_nav] = ACTIONS(4898), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4898), }, - [1058] = { + [1067] = { [sym__alpha_identifier] = ACTIONS(4900), [anon_sym_AT] = ACTIONS(4902), [anon_sym_LBRACK] = ACTIONS(4902), @@ -167485,7 +168708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4902), }, - [1059] = { + [1068] = { [sym__alpha_identifier] = ACTIONS(4904), [anon_sym_AT] = ACTIONS(4906), [anon_sym_LBRACK] = ACTIONS(4906), @@ -167591,113 +168814,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4906), }, - [1060] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4442), + [1069] = { + [sym__alpha_identifier] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_COMMA] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_object] = ACTIONS(4044), + [anon_sym_fun] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_get] = ACTIONS(4044), + [anon_sym_set] = ACTIONS(4044), + [anon_sym_this] = ACTIONS(4044), + [anon_sym_super] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [sym_label] = ACTIONS(4044), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4046), + [anon_sym_QMARK_COLON] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_null] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_when] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_PLUS_EQ] = ACTIONS(4046), + [anon_sym_DASH_EQ] = ACTIONS(4046), + [anon_sym_STAR_EQ] = ACTIONS(4046), + [anon_sym_SLASH_EQ] = ACTIONS(4046), + [anon_sym_PERCENT_EQ] = ACTIONS(4046), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4046), + [anon_sym_LT_EQ] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4046), + [anon_sym_BANGin] = ACTIONS(4046), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_BANGis] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_as_QMARK] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_BANG_BANG] = ACTIONS(4046), + [anon_sym_suspend] = ACTIONS(4044), + [anon_sym_sealed] = ACTIONS(4044), + [anon_sym_annotation] = ACTIONS(4044), + [anon_sym_data] = ACTIONS(4044), + [anon_sym_inner] = ACTIONS(4044), + [anon_sym_value] = ACTIONS(4044), + [anon_sym_override] = ACTIONS(4044), + [anon_sym_lateinit] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_internal] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_tailrec] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_infix] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym_external] = ACTIONS(4044), + [sym_property_modifier] = ACTIONS(4044), + [anon_sym_abstract] = ACTIONS(4044), + [anon_sym_final] = ACTIONS(4044), + [anon_sym_open] = ACTIONS(4044), + [anon_sym_vararg] = ACTIONS(4044), + [anon_sym_noinline] = ACTIONS(4044), + [anon_sym_crossinline] = ACTIONS(4044), + [anon_sym_expect] = ACTIONS(4044), + [anon_sym_actual] = ACTIONS(4044), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4046), + [anon_sym_continue_AT] = ACTIONS(4046), + [anon_sym_break_AT] = ACTIONS(4046), + [anon_sym_this_AT] = ACTIONS(4046), + [anon_sym_super_AT] = ACTIONS(4046), + [sym_real_literal] = ACTIONS(4046), + [sym_integer_literal] = ACTIONS(4044), + [sym_hex_literal] = ACTIONS(4046), + [sym_bin_literal] = ACTIONS(4046), + [anon_sym_true] = ACTIONS(4044), + [anon_sym_false] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [sym__backtick_identifier] = ACTIONS(4046), + [sym__automatic_semicolon] = ACTIONS(4046), + [sym_safe_nav] = ACTIONS(4046), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4046), + }, + [1070] = { + [sym__alpha_identifier] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), [anon_sym_EQ] = ACTIONS(4908), - [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_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_LBRACE] = ACTIONS(4910), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_object] = ACTIONS(4908), + [anon_sym_fun] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4910), + [anon_sym_get] = ACTIONS(4908), + [anon_sym_set] = ACTIONS(4908), + [anon_sym_this] = ACTIONS(4908), + [anon_sym_super] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [sym_label] = ACTIONS(4908), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_QMARK_COLON] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4910), + [anon_sym_PIPE_PIPE] = ACTIONS(4910), + [anon_sym_null] = ACTIONS(4908), + [anon_sym_if] = ACTIONS(4908), + [anon_sym_else] = ACTIONS(4908), + [anon_sym_when] = ACTIONS(4908), + [anon_sym_try] = ACTIONS(4908), + [anon_sym_throw] = ACTIONS(4908), + [anon_sym_return] = ACTIONS(4908), + [anon_sym_continue] = ACTIONS(4908), + [anon_sym_break] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(4910), [anon_sym_PLUS_EQ] = ACTIONS(4910), [anon_sym_DASH_EQ] = ACTIONS(4910), [anon_sym_STAR_EQ] = ACTIONS(4910), [anon_sym_SLASH_EQ] = ACTIONS(4910), [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4444), - [anon_sym_super_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), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4910), + [anon_sym_BANGin] = ACTIONS(4910), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_BANGis] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_as_QMARK] = ACTIONS(4910), + [anon_sym_PLUS_PLUS] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_BANG_BANG] = ACTIONS(4910), + [anon_sym_suspend] = ACTIONS(4908), + [anon_sym_sealed] = ACTIONS(4908), + [anon_sym_annotation] = ACTIONS(4908), + [anon_sym_data] = ACTIONS(4908), + [anon_sym_inner] = ACTIONS(4908), + [anon_sym_value] = ACTIONS(4908), + [anon_sym_override] = ACTIONS(4908), + [anon_sym_lateinit] = ACTIONS(4908), + [anon_sym_public] = ACTIONS(4908), + [anon_sym_private] = ACTIONS(4908), + [anon_sym_internal] = ACTIONS(4908), + [anon_sym_protected] = ACTIONS(4908), + [anon_sym_tailrec] = ACTIONS(4908), + [anon_sym_operator] = ACTIONS(4908), + [anon_sym_infix] = ACTIONS(4908), + [anon_sym_inline] = ACTIONS(4908), + [anon_sym_external] = ACTIONS(4908), + [sym_property_modifier] = ACTIONS(4908), + [anon_sym_abstract] = ACTIONS(4908), + [anon_sym_final] = ACTIONS(4908), + [anon_sym_open] = ACTIONS(4908), + [anon_sym_vararg] = ACTIONS(4908), + [anon_sym_noinline] = ACTIONS(4908), + [anon_sym_crossinline] = ACTIONS(4908), + [anon_sym_expect] = ACTIONS(4908), + [anon_sym_actual] = ACTIONS(4908), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4910), + [anon_sym_continue_AT] = ACTIONS(4910), + [anon_sym_break_AT] = ACTIONS(4910), + [anon_sym_this_AT] = ACTIONS(4910), + [anon_sym_super_AT] = ACTIONS(4910), + [sym_real_literal] = ACTIONS(4910), + [sym_integer_literal] = ACTIONS(4908), + [sym_hex_literal] = ACTIONS(4910), + [sym_bin_literal] = ACTIONS(4910), + [anon_sym_true] = ACTIONS(4908), + [anon_sym_false] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4910), + [sym__backtick_identifier] = ACTIONS(4910), + [sym__automatic_semicolon] = ACTIONS(4910), + [sym_safe_nav] = ACTIONS(4910), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4910), }, - [1061] = { + [1071] = { [sym__alpha_identifier] = ACTIONS(4912), [anon_sym_AT] = ACTIONS(4914), [anon_sym_LBRACK] = ACTIONS(4914), @@ -167803,113 +169132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4914), }, - [1062] = { - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(4270), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), - }, - [1063] = { + [1072] = { [sym__alpha_identifier] = ACTIONS(4916), [anon_sym_AT] = ACTIONS(4918), [anon_sym_LBRACK] = ACTIONS(4918), @@ -168015,219 +169238,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4918), }, - [1064] = { - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(1816), - [anon_sym_sealed] = ACTIONS(1816), - [anon_sym_annotation] = ACTIONS(1816), - [anon_sym_data] = ACTIONS(1816), - [anon_sym_inner] = ACTIONS(1816), - [anon_sym_value] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_lateinit] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_internal] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_tailrec] = ACTIONS(1816), - [anon_sym_operator] = ACTIONS(1816), - [anon_sym_infix] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1816), - [anon_sym_external] = ACTIONS(1816), - [sym_property_modifier] = ACTIONS(1816), - [anon_sym_abstract] = ACTIONS(1816), - [anon_sym_final] = ACTIONS(1816), - [anon_sym_open] = ACTIONS(1816), - [anon_sym_vararg] = ACTIONS(1816), - [anon_sym_noinline] = ACTIONS(1816), - [anon_sym_crossinline] = ACTIONS(1816), - [anon_sym_expect] = ACTIONS(1816), - [anon_sym_actual] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [1065] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), + [1073] = { + [sym__alpha_identifier] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_object] = ACTIONS(4419), - [anon_sym_fun] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_this] = ACTIONS(4419), - [anon_sym_super] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4419), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_when] = ACTIONS(4419), - [anon_sym_try] = ACTIONS(4419), - [anon_sym_throw] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_object] = ACTIONS(4920), + [anon_sym_fun] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym_get] = ACTIONS(4920), + [anon_sym_set] = ACTIONS(4920), + [anon_sym_this] = ACTIONS(4920), + [anon_sym_super] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [sym_label] = ACTIONS(4920), + [anon_sym_in] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_QMARK_COLON] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_null] = ACTIONS(4920), + [anon_sym_if] = ACTIONS(4920), + [anon_sym_else] = ACTIONS(4920), + [anon_sym_when] = ACTIONS(4920), + [anon_sym_try] = ACTIONS(4920), + [anon_sym_throw] = ACTIONS(4920), + [anon_sym_return] = ACTIONS(4920), + [anon_sym_continue] = ACTIONS(4920), + [anon_sym_break] = ACTIONS(4920), + [anon_sym_COLON_COLON] = ACTIONS(4922), [anon_sym_PLUS_EQ] = ACTIONS(4922), [anon_sym_DASH_EQ] = ACTIONS(4922), [anon_sym_STAR_EQ] = ACTIONS(4922), [anon_sym_SLASH_EQ] = ACTIONS(4922), [anon_sym_PERCENT_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4421), - [anon_sym_continue_AT] = ACTIONS(4421), - [anon_sym_break_AT] = ACTIONS(4421), - [anon_sym_this_AT] = ACTIONS(4421), - [anon_sym_super_AT] = ACTIONS(4421), - [sym_real_literal] = ACTIONS(4421), - [sym_integer_literal] = ACTIONS(4419), - [sym_hex_literal] = ACTIONS(4421), - [sym_bin_literal] = ACTIONS(4421), - [anon_sym_true] = ACTIONS(4419), - [anon_sym_false] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4421), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4421), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4922), + [anon_sym_BANGin] = ACTIONS(4922), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_BANGis] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_as_QMARK] = ACTIONS(4922), + [anon_sym_PLUS_PLUS] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_BANG_BANG] = ACTIONS(4922), + [anon_sym_suspend] = ACTIONS(4920), + [anon_sym_sealed] = ACTIONS(4920), + [anon_sym_annotation] = ACTIONS(4920), + [anon_sym_data] = ACTIONS(4920), + [anon_sym_inner] = ACTIONS(4920), + [anon_sym_value] = ACTIONS(4920), + [anon_sym_override] = ACTIONS(4920), + [anon_sym_lateinit] = ACTIONS(4920), + [anon_sym_public] = ACTIONS(4920), + [anon_sym_private] = ACTIONS(4920), + [anon_sym_internal] = ACTIONS(4920), + [anon_sym_protected] = ACTIONS(4920), + [anon_sym_tailrec] = ACTIONS(4920), + [anon_sym_operator] = ACTIONS(4920), + [anon_sym_infix] = ACTIONS(4920), + [anon_sym_inline] = ACTIONS(4920), + [anon_sym_external] = ACTIONS(4920), + [sym_property_modifier] = ACTIONS(4920), + [anon_sym_abstract] = ACTIONS(4920), + [anon_sym_final] = ACTIONS(4920), + [anon_sym_open] = ACTIONS(4920), + [anon_sym_vararg] = ACTIONS(4920), + [anon_sym_noinline] = ACTIONS(4920), + [anon_sym_crossinline] = ACTIONS(4920), + [anon_sym_expect] = ACTIONS(4920), + [anon_sym_actual] = ACTIONS(4920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4922), + [anon_sym_continue_AT] = ACTIONS(4922), + [anon_sym_break_AT] = ACTIONS(4922), + [anon_sym_this_AT] = ACTIONS(4922), + [anon_sym_super_AT] = ACTIONS(4922), + [sym_real_literal] = ACTIONS(4922), + [sym_integer_literal] = ACTIONS(4920), + [sym_hex_literal] = ACTIONS(4922), + [sym_bin_literal] = ACTIONS(4922), + [anon_sym_true] = ACTIONS(4920), + [anon_sym_false] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4922), + [sym__backtick_identifier] = ACTIONS(4922), + [sym__automatic_semicolon] = ACTIONS(4922), + [sym_safe_nav] = ACTIONS(4922), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4922), }, - [1066] = { + [1074] = { [sym__alpha_identifier] = ACTIONS(4924), [anon_sym_AT] = ACTIONS(4926), [anon_sym_LBRACK] = ACTIONS(4926), @@ -168243,7 +169360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(4924), [anon_sym_object] = ACTIONS(4924), [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4926), [anon_sym_get] = ACTIONS(4924), [anon_sym_set] = ACTIONS(4924), [anon_sym_this] = ACTIONS(4924), @@ -168257,7 +169374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE] = ACTIONS(4926), [anon_sym_null] = ACTIONS(4924), [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4924), [anon_sym_when] = ACTIONS(4924), [anon_sym_try] = ACTIONS(4924), [anon_sym_throw] = ACTIONS(4924), @@ -168333,113 +169450,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4926), }, - [1067] = { - [sym__alpha_identifier] = ACTIONS(1429), - [anon_sym_AT] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1429), - [anon_sym_fun] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1429), - [anon_sym_set] = ACTIONS(1429), - [anon_sym_this] = ACTIONS(1429), - [anon_sym_super] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [sym_label] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1429), - [anon_sym_inner] = ACTIONS(1429), - [anon_sym_value] = ACTIONS(1429), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1429), - [anon_sym_actual] = ACTIONS(1429), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1427), - [anon_sym_continue_AT] = ACTIONS(1427), - [anon_sym_break_AT] = ACTIONS(1427), - [anon_sym_this_AT] = ACTIONS(1427), - [anon_sym_super_AT] = ACTIONS(1427), - [sym_real_literal] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1429), - [sym_hex_literal] = ACTIONS(1427), - [sym_bin_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1427), - [sym__backtick_identifier] = ACTIONS(1427), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1427), + [1075] = { + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_object] = ACTIONS(4884), + [anon_sym_fun] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_this] = ACTIONS(4884), + [anon_sym_super] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [sym_label] = ACTIONS(4884), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4884), + [anon_sym_if] = ACTIONS(4884), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_when] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4884), + [anon_sym_throw] = ACTIONS(4884), + [anon_sym_return] = ACTIONS(4884), + [anon_sym_continue] = ACTIONS(4884), + [anon_sym_break] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_suspend] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_annotation] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_lateinit] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_tailrec] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_infix] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym_external] = ACTIONS(4884), + [sym_property_modifier] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_final] = ACTIONS(4884), + [anon_sym_open] = ACTIONS(4884), + [anon_sym_vararg] = ACTIONS(4884), + [anon_sym_noinline] = ACTIONS(4884), + [anon_sym_crossinline] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4886), + [anon_sym_continue_AT] = ACTIONS(4886), + [anon_sym_break_AT] = ACTIONS(4886), + [anon_sym_this_AT] = ACTIONS(4886), + [anon_sym_super_AT] = ACTIONS(4886), + [sym_real_literal] = ACTIONS(4886), + [sym_integer_literal] = ACTIONS(4884), + [sym_hex_literal] = ACTIONS(4886), + [sym_bin_literal] = ACTIONS(4886), + [anon_sym_true] = ACTIONS(4884), + [anon_sym_false] = ACTIONS(4884), + [anon_sym_SQUOTE] = ACTIONS(4886), + [sym__backtick_identifier] = ACTIONS(4886), + [sym__automatic_semicolon] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4886), }, - [1068] = { + [1076] = { + [sym__alpha_identifier] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4930), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_where] = ACTIONS(4928), + [anon_sym_object] = ACTIONS(4928), + [anon_sym_fun] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4930), + [anon_sym_get] = ACTIONS(4928), + [anon_sym_set] = ACTIONS(4928), + [anon_sym_this] = ACTIONS(4928), + [anon_sym_super] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [sym_label] = ACTIONS(4928), + [anon_sym_in] = ACTIONS(4928), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_QMARK_COLON] = ACTIONS(4930), + [anon_sym_AMP_AMP] = ACTIONS(4930), + [anon_sym_PIPE_PIPE] = ACTIONS(4930), + [anon_sym_null] = ACTIONS(4928), + [anon_sym_if] = ACTIONS(4928), + [anon_sym_else] = ACTIONS(4928), + [anon_sym_when] = ACTIONS(4928), + [anon_sym_try] = ACTIONS(4928), + [anon_sym_throw] = ACTIONS(4928), + [anon_sym_return] = ACTIONS(4928), + [anon_sym_continue] = ACTIONS(4928), + [anon_sym_break] = ACTIONS(4928), + [anon_sym_COLON_COLON] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4930), + [anon_sym_DASH_EQ] = ACTIONS(4930), + [anon_sym_STAR_EQ] = ACTIONS(4930), + [anon_sym_SLASH_EQ] = ACTIONS(4930), + [anon_sym_PERCENT_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4930), + [anon_sym_BANGin] = ACTIONS(4930), + [anon_sym_is] = ACTIONS(4928), + [anon_sym_BANGis] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_as_QMARK] = ACTIONS(4930), + [anon_sym_PLUS_PLUS] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_BANG_BANG] = ACTIONS(4930), + [anon_sym_suspend] = ACTIONS(4928), + [anon_sym_sealed] = ACTIONS(4928), + [anon_sym_annotation] = ACTIONS(4928), + [anon_sym_data] = ACTIONS(4928), + [anon_sym_inner] = ACTIONS(4928), + [anon_sym_value] = ACTIONS(4928), + [anon_sym_override] = ACTIONS(4928), + [anon_sym_lateinit] = ACTIONS(4928), + [anon_sym_public] = ACTIONS(4928), + [anon_sym_private] = ACTIONS(4928), + [anon_sym_internal] = ACTIONS(4928), + [anon_sym_protected] = ACTIONS(4928), + [anon_sym_tailrec] = ACTIONS(4928), + [anon_sym_operator] = ACTIONS(4928), + [anon_sym_infix] = ACTIONS(4928), + [anon_sym_inline] = ACTIONS(4928), + [anon_sym_external] = ACTIONS(4928), + [sym_property_modifier] = ACTIONS(4928), + [anon_sym_abstract] = ACTIONS(4928), + [anon_sym_final] = ACTIONS(4928), + [anon_sym_open] = ACTIONS(4928), + [anon_sym_vararg] = ACTIONS(4928), + [anon_sym_noinline] = ACTIONS(4928), + [anon_sym_crossinline] = ACTIONS(4928), + [anon_sym_expect] = ACTIONS(4928), + [anon_sym_actual] = ACTIONS(4928), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4930), + [anon_sym_continue_AT] = ACTIONS(4930), + [anon_sym_break_AT] = ACTIONS(4930), + [anon_sym_this_AT] = ACTIONS(4930), + [anon_sym_super_AT] = ACTIONS(4930), + [sym_real_literal] = ACTIONS(4930), + [sym_integer_literal] = ACTIONS(4928), + [sym_hex_literal] = ACTIONS(4930), + [sym_bin_literal] = ACTIONS(4930), + [anon_sym_true] = ACTIONS(4928), + [anon_sym_false] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4930), + [sym__backtick_identifier] = ACTIONS(4930), + [sym__automatic_semicolon] = ACTIONS(4930), + [sym_safe_nav] = ACTIONS(4930), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4930), + }, + [1077] = { [sym__alpha_identifier] = ACTIONS(4932), [anon_sym_AT] = ACTIONS(4934), [anon_sym_LBRACK] = ACTIONS(4934), @@ -168545,325 +169768,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4934), }, - [1069] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(4936), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [1070] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(4930), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), + [1078] = { + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(3098), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3098), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), }, - [1071] = { - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(1808), - [anon_sym_set] = ACTIONS(1808), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(1808), - [anon_sym_sealed] = ACTIONS(1808), - [anon_sym_annotation] = ACTIONS(1808), - [anon_sym_data] = ACTIONS(1808), - [anon_sym_inner] = ACTIONS(1808), - [anon_sym_value] = ACTIONS(1808), - [anon_sym_override] = ACTIONS(1808), - [anon_sym_lateinit] = ACTIONS(1808), - [anon_sym_public] = ACTIONS(1808), - [anon_sym_private] = ACTIONS(1808), - [anon_sym_internal] = ACTIONS(1808), - [anon_sym_protected] = ACTIONS(1808), - [anon_sym_tailrec] = ACTIONS(1808), - [anon_sym_operator] = ACTIONS(1808), - [anon_sym_infix] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym_external] = ACTIONS(1808), - [sym_property_modifier] = ACTIONS(1808), - [anon_sym_abstract] = ACTIONS(1808), - [anon_sym_final] = ACTIONS(1808), - [anon_sym_open] = ACTIONS(1808), - [anon_sym_vararg] = ACTIONS(1808), - [anon_sym_noinline] = ACTIONS(1808), - [anon_sym_crossinline] = ACTIONS(1808), - [anon_sym_expect] = ACTIONS(1808), - [anon_sym_actual] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [1079] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_object] = ACTIONS(4936), + [anon_sym_fun] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_this] = ACTIONS(4936), + [anon_sym_super] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [sym_label] = ACTIONS(4936), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_null] = ACTIONS(4936), + [anon_sym_if] = ACTIONS(4936), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_when] = ACTIONS(4936), + [anon_sym_try] = ACTIONS(4936), + [anon_sym_throw] = ACTIONS(4936), + [anon_sym_return] = ACTIONS(4936), + [anon_sym_continue] = ACTIONS(4936), + [anon_sym_break] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_suspend] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_lateinit] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_tailrec] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4936), + [anon_sym_infix] = ACTIONS(4936), + [anon_sym_inline] = ACTIONS(4936), + [anon_sym_external] = ACTIONS(4936), + [sym_property_modifier] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_final] = ACTIONS(4936), + [anon_sym_open] = ACTIONS(4936), + [anon_sym_vararg] = ACTIONS(4936), + [anon_sym_noinline] = ACTIONS(4936), + [anon_sym_crossinline] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4938), + [anon_sym_continue_AT] = ACTIONS(4938), + [anon_sym_break_AT] = ACTIONS(4938), + [anon_sym_this_AT] = ACTIONS(4938), + [anon_sym_super_AT] = ACTIONS(4938), + [sym_real_literal] = ACTIONS(4938), + [sym_integer_literal] = ACTIONS(4936), + [sym_hex_literal] = ACTIONS(4938), + [sym_bin_literal] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4936), + [anon_sym_false] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4938), + [sym__backtick_identifier] = ACTIONS(4938), + [sym__automatic_semicolon] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4938), }, - [1072] = { + [1080] = { [sym__alpha_identifier] = ACTIONS(4940), [anon_sym_AT] = ACTIONS(4942), [anon_sym_LBRACK] = ACTIONS(4942), @@ -168969,225 +170086,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4942), }, - [1073] = { - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_DOT] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_object] = ACTIONS(4018), - [anon_sym_fun] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_this] = ACTIONS(4018), - [anon_sym_super] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [sym_label] = ACTIONS(4018), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_null] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_PLUS_EQ] = ACTIONS(4020), - [anon_sym_DASH_EQ] = ACTIONS(4020), - [anon_sym_STAR_EQ] = ACTIONS(4020), - [anon_sym_SLASH_EQ] = ACTIONS(4020), - [anon_sym_PERCENT_EQ] = ACTIONS(4020), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4020), - [anon_sym_DASH_DASH] = ACTIONS(4020), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_BANG_BANG] = ACTIONS(4020), - [anon_sym_suspend] = ACTIONS(4018), - [anon_sym_sealed] = ACTIONS(4018), - [anon_sym_annotation] = ACTIONS(4018), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_override] = ACTIONS(4018), - [anon_sym_lateinit] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_internal] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_tailrec] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_infix] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym_external] = ACTIONS(4018), - [sym_property_modifier] = ACTIONS(4018), - [anon_sym_abstract] = ACTIONS(4018), - [anon_sym_final] = ACTIONS(4018), - [anon_sym_open] = ACTIONS(4018), - [anon_sym_vararg] = ACTIONS(4018), - [anon_sym_noinline] = ACTIONS(4018), - [anon_sym_crossinline] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4020), - [anon_sym_continue_AT] = ACTIONS(4020), - [anon_sym_break_AT] = ACTIONS(4020), - [anon_sym_this_AT] = ACTIONS(4020), - [anon_sym_super_AT] = ACTIONS(4020), - [sym_real_literal] = ACTIONS(4020), - [sym_integer_literal] = ACTIONS(4018), - [sym_hex_literal] = ACTIONS(4020), - [sym_bin_literal] = ACTIONS(4020), - [anon_sym_true] = ACTIONS(4018), - [anon_sym_false] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4020), - [sym__backtick_identifier] = ACTIONS(4020), - [sym__automatic_semicolon] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4020), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4020), - }, - [1074] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4444), - [anon_sym_super_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), - }, - [1075] = { + [1081] = { [sym__alpha_identifier] = ACTIONS(4944), [anon_sym_AT] = ACTIONS(4946), [anon_sym_LBRACK] = ACTIONS(4946), [anon_sym_DOT] = ACTIONS(4944), [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4944), [anon_sym_LBRACE] = ACTIONS(4946), [anon_sym_RBRACE] = ACTIONS(4946), [anon_sym_LPAREN] = ACTIONS(4946), @@ -169218,431 +170123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4944), [anon_sym_continue] = ACTIONS(4944), [anon_sym_break] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(4950), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_suspend] = ACTIONS(4944), - [anon_sym_sealed] = ACTIONS(4944), - [anon_sym_annotation] = ACTIONS(4944), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_override] = ACTIONS(4944), - [anon_sym_lateinit] = ACTIONS(4944), - [anon_sym_public] = ACTIONS(4944), - [anon_sym_private] = ACTIONS(4944), - [anon_sym_internal] = ACTIONS(4944), - [anon_sym_protected] = ACTIONS(4944), - [anon_sym_tailrec] = ACTIONS(4944), - [anon_sym_operator] = ACTIONS(4944), - [anon_sym_infix] = ACTIONS(4944), - [anon_sym_inline] = ACTIONS(4944), - [anon_sym_external] = ACTIONS(4944), - [sym_property_modifier] = ACTIONS(4944), - [anon_sym_abstract] = ACTIONS(4944), - [anon_sym_final] = ACTIONS(4944), - [anon_sym_open] = ACTIONS(4944), - [anon_sym_vararg] = ACTIONS(4944), - [anon_sym_noinline] = ACTIONS(4944), - [anon_sym_crossinline] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4946), - [anon_sym_continue_AT] = ACTIONS(4946), - [anon_sym_break_AT] = ACTIONS(4946), - [anon_sym_this_AT] = ACTIONS(4946), - [anon_sym_super_AT] = ACTIONS(4946), - [sym_real_literal] = ACTIONS(4946), - [sym_integer_literal] = ACTIONS(4944), - [sym_hex_literal] = ACTIONS(4946), - [sym_bin_literal] = ACTIONS(4946), - [anon_sym_true] = ACTIONS(4944), - [anon_sym_false] = ACTIONS(4944), - [anon_sym_SQUOTE] = ACTIONS(4946), - [sym__backtick_identifier] = ACTIONS(4946), - [sym__automatic_semicolon] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4946), - }, - [1076] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_object] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_this] = ACTIONS(4894), - [anon_sym_super] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [sym_label] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_when] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_throw] = ACTIONS(4894), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_continue] = ACTIONS(4894), - [anon_sym_break] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_suspend] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_annotation] = ACTIONS(4894), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_lateinit] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_tailrec] = ACTIONS(4894), - [anon_sym_operator] = ACTIONS(4894), - [anon_sym_infix] = ACTIONS(4894), - [anon_sym_inline] = ACTIONS(4894), - [anon_sym_external] = ACTIONS(4894), - [sym_property_modifier] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_final] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_vararg] = ACTIONS(4894), - [anon_sym_noinline] = ACTIONS(4894), - [anon_sym_crossinline] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4896), - [anon_sym_continue_AT] = ACTIONS(4896), - [anon_sym_break_AT] = ACTIONS(4896), - [anon_sym_this_AT] = ACTIONS(4896), - [anon_sym_super_AT] = ACTIONS(4896), - [sym_real_literal] = ACTIONS(4896), - [sym_integer_literal] = ACTIONS(4894), - [sym_hex_literal] = ACTIONS(4896), - [sym_bin_literal] = ACTIONS(4896), - [anon_sym_true] = ACTIONS(4894), - [anon_sym_false] = ACTIONS(4894), - [anon_sym_SQUOTE] = ACTIONS(4896), - [sym__backtick_identifier] = ACTIONS(4896), - [sym__automatic_semicolon] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4896), - }, - [1077] = { - [sym__alpha_identifier] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_where] = ACTIONS(4955), - [anon_sym_object] = ACTIONS(4955), - [anon_sym_fun] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4957), - [anon_sym_get] = ACTIONS(4955), - [anon_sym_set] = ACTIONS(4955), - [anon_sym_this] = ACTIONS(4955), - [anon_sym_super] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4955), - [anon_sym_DOT_DOT] = ACTIONS(4957), - [anon_sym_QMARK_COLON] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_if] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4955), - [anon_sym_when] = ACTIONS(4955), - [anon_sym_try] = ACTIONS(4955), - [anon_sym_throw] = ACTIONS(4955), - [anon_sym_return] = ACTIONS(4955), - [anon_sym_continue] = ACTIONS(4955), - [anon_sym_break] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4957), - [anon_sym_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_BANGin] = ACTIONS(4957), - [anon_sym_is] = ACTIONS(4955), - [anon_sym_BANGis] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4957), - [anon_sym_suspend] = ACTIONS(4955), - [anon_sym_sealed] = ACTIONS(4955), - [anon_sym_annotation] = ACTIONS(4955), - [anon_sym_data] = ACTIONS(4955), - [anon_sym_inner] = ACTIONS(4955), - [anon_sym_value] = ACTIONS(4955), - [anon_sym_override] = ACTIONS(4955), - [anon_sym_lateinit] = ACTIONS(4955), - [anon_sym_public] = ACTIONS(4955), - [anon_sym_private] = ACTIONS(4955), - [anon_sym_internal] = ACTIONS(4955), - [anon_sym_protected] = ACTIONS(4955), - [anon_sym_tailrec] = ACTIONS(4955), - [anon_sym_operator] = ACTIONS(4955), - [anon_sym_infix] = ACTIONS(4955), - [anon_sym_inline] = ACTIONS(4955), - [anon_sym_external] = ACTIONS(4955), - [sym_property_modifier] = ACTIONS(4955), - [anon_sym_abstract] = ACTIONS(4955), - [anon_sym_final] = ACTIONS(4955), - [anon_sym_open] = ACTIONS(4955), - [anon_sym_vararg] = ACTIONS(4955), - [anon_sym_noinline] = ACTIONS(4955), - [anon_sym_crossinline] = ACTIONS(4955), - [anon_sym_expect] = ACTIONS(4955), - [anon_sym_actual] = ACTIONS(4955), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4957), - [anon_sym_continue_AT] = ACTIONS(4957), - [anon_sym_break_AT] = ACTIONS(4957), - [anon_sym_this_AT] = ACTIONS(4957), - [anon_sym_super_AT] = ACTIONS(4957), - [sym_real_literal] = ACTIONS(4957), - [sym_integer_literal] = ACTIONS(4955), - [sym_hex_literal] = ACTIONS(4957), - [sym_bin_literal] = ACTIONS(4957), - [anon_sym_true] = ACTIONS(4955), - [anon_sym_false] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4957), - [sym__backtick_identifier] = ACTIONS(4957), - [sym__automatic_semicolon] = ACTIONS(4957), - [sym_safe_nav] = ACTIONS(4957), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4957), - }, - [1078] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4961), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4961), - [anon_sym_super_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), - }, - [1079] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_object] = ACTIONS(4944), - [anon_sym_fun] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_this] = ACTIONS(4944), - [anon_sym_super] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [sym_label] = ACTIONS(4944), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(4944), - [anon_sym_if] = ACTIONS(4944), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_when] = ACTIONS(4944), - [anon_sym_try] = ACTIONS(4944), - [anon_sym_throw] = ACTIONS(4944), - [anon_sym_return] = ACTIONS(4944), - [anon_sym_continue] = ACTIONS(4944), - [anon_sym_break] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(4950), + [anon_sym_COLON_COLON] = ACTIONS(4946), [anon_sym_PLUS_EQ] = ACTIONS(4946), [anon_sym_DASH_EQ] = ACTIONS(4946), [anon_sym_STAR_EQ] = ACTIONS(4946), @@ -169711,1915 +170192,2021 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4946), }, - [1080] = { - [sym__alpha_identifier] = ACTIONS(4908), - [anon_sym_AT] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(4908), - [anon_sym_LBRACE] = ACTIONS(4910), - [anon_sym_RBRACE] = ACTIONS(4910), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4908), - [anon_sym_object] = ACTIONS(4908), - [anon_sym_fun] = ACTIONS(4908), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_get] = ACTIONS(4908), - [anon_sym_set] = ACTIONS(4908), - [anon_sym_this] = ACTIONS(4908), - [anon_sym_super] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [sym_label] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_DOT_DOT] = ACTIONS(4910), - [anon_sym_QMARK_COLON] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_null] = ACTIONS(4908), - [anon_sym_if] = ACTIONS(4908), - [anon_sym_else] = ACTIONS(4908), - [anon_sym_when] = ACTIONS(4908), - [anon_sym_try] = ACTIONS(4908), - [anon_sym_throw] = ACTIONS(4908), - [anon_sym_return] = ACTIONS(4908), - [anon_sym_continue] = ACTIONS(4908), - [anon_sym_break] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(4910), - [anon_sym_PLUS_EQ] = ACTIONS(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [anon_sym_BANG_EQ] = ACTIONS(4908), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), - [anon_sym_LT_EQ] = ACTIONS(4910), - [anon_sym_GT_EQ] = ACTIONS(4910), - [anon_sym_BANGin] = ACTIONS(4910), - [anon_sym_is] = ACTIONS(4908), - [anon_sym_BANGis] = ACTIONS(4910), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_as_QMARK] = ACTIONS(4910), - [anon_sym_PLUS_PLUS] = ACTIONS(4910), - [anon_sym_DASH_DASH] = ACTIONS(4910), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_BANG_BANG] = ACTIONS(4910), - [anon_sym_suspend] = ACTIONS(4908), - [anon_sym_sealed] = ACTIONS(4908), - [anon_sym_annotation] = ACTIONS(4908), - [anon_sym_data] = ACTIONS(4908), - [anon_sym_inner] = ACTIONS(4908), - [anon_sym_value] = ACTIONS(4908), - [anon_sym_override] = ACTIONS(4908), - [anon_sym_lateinit] = ACTIONS(4908), - [anon_sym_public] = ACTIONS(4908), - [anon_sym_private] = ACTIONS(4908), - [anon_sym_internal] = ACTIONS(4908), - [anon_sym_protected] = ACTIONS(4908), - [anon_sym_tailrec] = ACTIONS(4908), - [anon_sym_operator] = ACTIONS(4908), - [anon_sym_infix] = ACTIONS(4908), - [anon_sym_inline] = ACTIONS(4908), - [anon_sym_external] = ACTIONS(4908), - [sym_property_modifier] = ACTIONS(4908), - [anon_sym_abstract] = ACTIONS(4908), - [anon_sym_final] = ACTIONS(4908), - [anon_sym_open] = ACTIONS(4908), - [anon_sym_vararg] = ACTIONS(4908), - [anon_sym_noinline] = ACTIONS(4908), - [anon_sym_crossinline] = ACTIONS(4908), - [anon_sym_expect] = ACTIONS(4908), - [anon_sym_actual] = ACTIONS(4908), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4910), - [anon_sym_continue_AT] = ACTIONS(4910), - [anon_sym_break_AT] = ACTIONS(4910), - [anon_sym_this_AT] = ACTIONS(4910), - [anon_sym_super_AT] = ACTIONS(4910), - [sym_real_literal] = ACTIONS(4910), - [sym_integer_literal] = ACTIONS(4908), - [sym_hex_literal] = ACTIONS(4910), - [sym_bin_literal] = ACTIONS(4910), - [anon_sym_true] = ACTIONS(4908), - [anon_sym_false] = ACTIONS(4908), - [anon_sym_SQUOTE] = ACTIONS(4910), - [sym__backtick_identifier] = ACTIONS(4910), - [sym__automatic_semicolon] = ACTIONS(4910), - [sym_safe_nav] = ACTIONS(4910), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4910), - }, - [1081] = { - [sym__alpha_identifier] = ACTIONS(4963), - [anon_sym_AT] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4963), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4965), - [anon_sym_super_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), - }, [1082] = { - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), }, [1083] = { - [sym__alpha_identifier] = ACTIONS(4967), - [anon_sym_AT] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4967), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4969), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_where] = ACTIONS(4948), + [anon_sym_object] = ACTIONS(4948), + [anon_sym_fun] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_get] = ACTIONS(4948), + [anon_sym_set] = ACTIONS(4948), + [anon_sym_this] = ACTIONS(4948), + [anon_sym_super] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [sym_label] = ACTIONS(4948), + [anon_sym_in] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4950), + [anon_sym_QMARK_COLON] = ACTIONS(4950), + [anon_sym_AMP_AMP] = ACTIONS(4950), + [anon_sym_PIPE_PIPE] = ACTIONS(4950), + [anon_sym_null] = ACTIONS(4948), + [anon_sym_if] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_when] = ACTIONS(4948), + [anon_sym_try] = ACTIONS(4948), + [anon_sym_throw] = ACTIONS(4948), + [anon_sym_return] = ACTIONS(4948), + [anon_sym_continue] = ACTIONS(4948), + [anon_sym_break] = ACTIONS(4948), + [anon_sym_COLON_COLON] = ACTIONS(4950), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_PERCENT_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_BANGin] = ACTIONS(4950), + [anon_sym_is] = ACTIONS(4948), + [anon_sym_BANGis] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_as_QMARK] = ACTIONS(4950), + [anon_sym_PLUS_PLUS] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_BANG_BANG] = ACTIONS(4950), + [anon_sym_suspend] = ACTIONS(4948), + [anon_sym_sealed] = ACTIONS(4948), + [anon_sym_annotation] = ACTIONS(4948), + [anon_sym_data] = ACTIONS(4948), + [anon_sym_inner] = ACTIONS(4948), + [anon_sym_value] = ACTIONS(4948), + [anon_sym_override] = ACTIONS(4948), + [anon_sym_lateinit] = ACTIONS(4948), + [anon_sym_public] = ACTIONS(4948), + [anon_sym_private] = ACTIONS(4948), + [anon_sym_internal] = ACTIONS(4948), + [anon_sym_protected] = ACTIONS(4948), + [anon_sym_tailrec] = ACTIONS(4948), + [anon_sym_operator] = ACTIONS(4948), + [anon_sym_infix] = ACTIONS(4948), + [anon_sym_inline] = ACTIONS(4948), + [anon_sym_external] = ACTIONS(4948), + [sym_property_modifier] = ACTIONS(4948), + [anon_sym_abstract] = ACTIONS(4948), + [anon_sym_final] = ACTIONS(4948), + [anon_sym_open] = ACTIONS(4948), + [anon_sym_vararg] = ACTIONS(4948), + [anon_sym_noinline] = ACTIONS(4948), + [anon_sym_crossinline] = ACTIONS(4948), + [anon_sym_expect] = ACTIONS(4948), + [anon_sym_actual] = ACTIONS(4948), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4950), + [anon_sym_continue_AT] = ACTIONS(4950), + [anon_sym_break_AT] = ACTIONS(4950), + [anon_sym_this_AT] = ACTIONS(4950), + [anon_sym_super_AT] = ACTIONS(4950), + [sym_real_literal] = ACTIONS(4950), + [sym_integer_literal] = ACTIONS(4948), + [sym_hex_literal] = ACTIONS(4950), + [sym_bin_literal] = ACTIONS(4950), + [anon_sym_true] = ACTIONS(4948), + [anon_sym_false] = ACTIONS(4948), + [anon_sym_SQUOTE] = ACTIONS(4950), + [sym__backtick_identifier] = ACTIONS(4950), + [sym__automatic_semicolon] = ACTIONS(4950), + [sym_safe_nav] = ACTIONS(4950), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4950), }, [1084] = { - [sym_function_body] = STATE(1101), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_object] = ACTIONS(4952), + [anon_sym_fun] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_get] = ACTIONS(4952), + [anon_sym_set] = ACTIONS(4952), + [anon_sym_this] = ACTIONS(4952), + [anon_sym_super] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [sym_label] = ACTIONS(4952), + [anon_sym_in] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_QMARK_COLON] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4954), + [anon_sym_PIPE_PIPE] = ACTIONS(4954), + [anon_sym_null] = ACTIONS(4952), + [anon_sym_if] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_when] = ACTIONS(4952), + [anon_sym_try] = ACTIONS(4952), + [anon_sym_throw] = ACTIONS(4952), + [anon_sym_return] = ACTIONS(4952), + [anon_sym_continue] = ACTIONS(4952), + [anon_sym_break] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_PERCENT_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_BANGin] = ACTIONS(4954), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_BANGis] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_as_QMARK] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_BANG_BANG] = ACTIONS(4954), + [anon_sym_suspend] = ACTIONS(4952), + [anon_sym_sealed] = ACTIONS(4952), + [anon_sym_annotation] = ACTIONS(4952), + [anon_sym_data] = ACTIONS(4952), + [anon_sym_inner] = ACTIONS(4952), + [anon_sym_value] = ACTIONS(4952), + [anon_sym_override] = ACTIONS(4952), + [anon_sym_lateinit] = ACTIONS(4952), + [anon_sym_public] = ACTIONS(4952), + [anon_sym_private] = ACTIONS(4952), + [anon_sym_internal] = ACTIONS(4952), + [anon_sym_protected] = ACTIONS(4952), + [anon_sym_tailrec] = ACTIONS(4952), + [anon_sym_operator] = ACTIONS(4952), + [anon_sym_infix] = ACTIONS(4952), + [anon_sym_inline] = ACTIONS(4952), + [anon_sym_external] = ACTIONS(4952), + [sym_property_modifier] = ACTIONS(4952), + [anon_sym_abstract] = ACTIONS(4952), + [anon_sym_final] = ACTIONS(4952), + [anon_sym_open] = ACTIONS(4952), + [anon_sym_vararg] = ACTIONS(4952), + [anon_sym_noinline] = ACTIONS(4952), + [anon_sym_crossinline] = ACTIONS(4952), + [anon_sym_expect] = ACTIONS(4952), + [anon_sym_actual] = ACTIONS(4952), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4954), + [anon_sym_continue_AT] = ACTIONS(4954), + [anon_sym_break_AT] = ACTIONS(4954), + [anon_sym_this_AT] = ACTIONS(4954), + [anon_sym_super_AT] = ACTIONS(4954), + [sym_real_literal] = ACTIONS(4954), + [sym_integer_literal] = ACTIONS(4952), + [sym_hex_literal] = ACTIONS(4954), + [sym_bin_literal] = ACTIONS(4954), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [anon_sym_SQUOTE] = ACTIONS(4954), + [sym__backtick_identifier] = ACTIONS(4954), + [sym__automatic_semicolon] = ACTIONS(4954), + [sym_safe_nav] = ACTIONS(4954), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4954), }, [1085] = { - [sym__alpha_identifier] = ACTIONS(4971), - [anon_sym_AT] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4971), - [anon_sym_as] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_where] = ACTIONS(4971), - [anon_sym_object] = ACTIONS(4971), - [anon_sym_fun] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4973), - [anon_sym_get] = ACTIONS(4971), - [anon_sym_set] = ACTIONS(4971), - [anon_sym_this] = ACTIONS(4971), - [anon_sym_super] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [sym_label] = ACTIONS(4971), - [anon_sym_in] = ACTIONS(4971), - [anon_sym_DOT_DOT] = ACTIONS(4973), - [anon_sym_QMARK_COLON] = ACTIONS(4973), - [anon_sym_AMP_AMP] = ACTIONS(4973), - [anon_sym_PIPE_PIPE] = ACTIONS(4973), - [anon_sym_null] = ACTIONS(4971), - [anon_sym_if] = ACTIONS(4971), - [anon_sym_else] = ACTIONS(4971), - [anon_sym_when] = ACTIONS(4971), - [anon_sym_try] = ACTIONS(4971), - [anon_sym_throw] = ACTIONS(4971), - [anon_sym_return] = ACTIONS(4971), - [anon_sym_continue] = ACTIONS(4971), - [anon_sym_break] = ACTIONS(4971), - [anon_sym_COLON_COLON] = ACTIONS(4973), - [anon_sym_PLUS_EQ] = ACTIONS(4973), - [anon_sym_DASH_EQ] = ACTIONS(4973), - [anon_sym_STAR_EQ] = ACTIONS(4973), - [anon_sym_SLASH_EQ] = ACTIONS(4973), - [anon_sym_PERCENT_EQ] = ACTIONS(4973), - [anon_sym_BANG_EQ] = ACTIONS(4971), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4973), - [anon_sym_EQ_EQ] = ACTIONS(4971), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4973), - [anon_sym_LT_EQ] = ACTIONS(4973), - [anon_sym_GT_EQ] = ACTIONS(4973), - [anon_sym_BANGin] = ACTIONS(4973), - [anon_sym_is] = ACTIONS(4971), - [anon_sym_BANGis] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_as_QMARK] = ACTIONS(4973), - [anon_sym_PLUS_PLUS] = ACTIONS(4973), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_BANG_BANG] = ACTIONS(4973), - [anon_sym_suspend] = ACTIONS(4971), - [anon_sym_sealed] = ACTIONS(4971), - [anon_sym_annotation] = ACTIONS(4971), - [anon_sym_data] = ACTIONS(4971), - [anon_sym_inner] = ACTIONS(4971), - [anon_sym_value] = ACTIONS(4971), - [anon_sym_override] = ACTIONS(4971), - [anon_sym_lateinit] = ACTIONS(4971), - [anon_sym_public] = ACTIONS(4971), - [anon_sym_private] = ACTIONS(4971), - [anon_sym_internal] = ACTIONS(4971), - [anon_sym_protected] = ACTIONS(4971), - [anon_sym_tailrec] = ACTIONS(4971), - [anon_sym_operator] = ACTIONS(4971), - [anon_sym_infix] = ACTIONS(4971), - [anon_sym_inline] = ACTIONS(4971), - [anon_sym_external] = ACTIONS(4971), - [sym_property_modifier] = ACTIONS(4971), - [anon_sym_abstract] = ACTIONS(4971), - [anon_sym_final] = ACTIONS(4971), - [anon_sym_open] = ACTIONS(4971), - [anon_sym_vararg] = ACTIONS(4971), - [anon_sym_noinline] = ACTIONS(4971), - [anon_sym_crossinline] = ACTIONS(4971), - [anon_sym_expect] = ACTIONS(4971), - [anon_sym_actual] = ACTIONS(4971), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4973), - [anon_sym_continue_AT] = ACTIONS(4973), - [anon_sym_break_AT] = ACTIONS(4973), - [anon_sym_this_AT] = ACTIONS(4973), - [anon_sym_super_AT] = ACTIONS(4973), - [sym_real_literal] = ACTIONS(4973), - [sym_integer_literal] = ACTIONS(4971), - [sym_hex_literal] = ACTIONS(4973), - [sym_bin_literal] = ACTIONS(4973), - [anon_sym_true] = ACTIONS(4971), - [anon_sym_false] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4973), - [sym__backtick_identifier] = ACTIONS(4973), - [sym__automatic_semicolon] = ACTIONS(4973), - [sym_safe_nav] = ACTIONS(4973), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4973), + [sym__alpha_identifier] = ACTIONS(4956), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_where] = ACTIONS(4956), + [anon_sym_object] = ACTIONS(4956), + [anon_sym_fun] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_get] = ACTIONS(4956), + [anon_sym_set] = ACTIONS(4956), + [anon_sym_this] = ACTIONS(4956), + [anon_sym_super] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [sym_label] = ACTIONS(4956), + [anon_sym_in] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_QMARK_COLON] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_null] = ACTIONS(4956), + [anon_sym_if] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_when] = ACTIONS(4956), + [anon_sym_try] = ACTIONS(4956), + [anon_sym_throw] = ACTIONS(4956), + [anon_sym_return] = ACTIONS(4956), + [anon_sym_continue] = ACTIONS(4956), + [anon_sym_break] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4958), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_PERCENT_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_BANGin] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4956), + [anon_sym_BANGis] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_as_QMARK] = ACTIONS(4958), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_BANG_BANG] = ACTIONS(4958), + [anon_sym_suspend] = ACTIONS(4956), + [anon_sym_sealed] = ACTIONS(4956), + [anon_sym_annotation] = ACTIONS(4956), + [anon_sym_data] = ACTIONS(4956), + [anon_sym_inner] = ACTIONS(4956), + [anon_sym_value] = ACTIONS(4956), + [anon_sym_override] = ACTIONS(4956), + [anon_sym_lateinit] = ACTIONS(4956), + [anon_sym_public] = ACTIONS(4956), + [anon_sym_private] = ACTIONS(4956), + [anon_sym_internal] = ACTIONS(4956), + [anon_sym_protected] = ACTIONS(4956), + [anon_sym_tailrec] = ACTIONS(4956), + [anon_sym_operator] = ACTIONS(4956), + [anon_sym_infix] = ACTIONS(4956), + [anon_sym_inline] = ACTIONS(4956), + [anon_sym_external] = ACTIONS(4956), + [sym_property_modifier] = ACTIONS(4956), + [anon_sym_abstract] = ACTIONS(4956), + [anon_sym_final] = ACTIONS(4956), + [anon_sym_open] = ACTIONS(4956), + [anon_sym_vararg] = ACTIONS(4956), + [anon_sym_noinline] = ACTIONS(4956), + [anon_sym_crossinline] = ACTIONS(4956), + [anon_sym_expect] = ACTIONS(4956), + [anon_sym_actual] = ACTIONS(4956), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4958), + [anon_sym_continue_AT] = ACTIONS(4958), + [anon_sym_break_AT] = ACTIONS(4958), + [anon_sym_this_AT] = ACTIONS(4958), + [anon_sym_super_AT] = ACTIONS(4958), + [sym_real_literal] = ACTIONS(4958), + [sym_integer_literal] = ACTIONS(4956), + [sym_hex_literal] = ACTIONS(4958), + [sym_bin_literal] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4956), + [anon_sym_false] = ACTIONS(4956), + [anon_sym_SQUOTE] = ACTIONS(4958), + [sym__backtick_identifier] = ACTIONS(4958), + [sym__automatic_semicolon] = ACTIONS(4958), + [sym_safe_nav] = ACTIONS(4958), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4958), }, [1086] = { - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, [1087] = { - [sym__alpha_identifier] = ACTIONS(4975), - [anon_sym_AT] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4977), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_where] = ACTIONS(4975), - [anon_sym_object] = ACTIONS(4975), - [anon_sym_fun] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4977), - [anon_sym_get] = ACTIONS(4975), - [anon_sym_set] = ACTIONS(4975), - [anon_sym_this] = ACTIONS(4975), - [anon_sym_super] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [sym_label] = ACTIONS(4975), - [anon_sym_in] = ACTIONS(4975), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_QMARK_COLON] = ACTIONS(4977), - [anon_sym_AMP_AMP] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4977), - [anon_sym_null] = ACTIONS(4975), - [anon_sym_if] = ACTIONS(4975), - [anon_sym_else] = ACTIONS(4975), - [anon_sym_when] = ACTIONS(4975), - [anon_sym_try] = ACTIONS(4975), - [anon_sym_throw] = ACTIONS(4975), - [anon_sym_return] = ACTIONS(4975), - [anon_sym_continue] = ACTIONS(4975), - [anon_sym_break] = ACTIONS(4975), - [anon_sym_COLON_COLON] = ACTIONS(4977), - [anon_sym_PLUS_EQ] = ACTIONS(4977), - [anon_sym_DASH_EQ] = ACTIONS(4977), - [anon_sym_STAR_EQ] = ACTIONS(4977), - [anon_sym_SLASH_EQ] = ACTIONS(4977), - [anon_sym_PERCENT_EQ] = ACTIONS(4977), - [anon_sym_BANG_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4977), - [anon_sym_EQ_EQ] = ACTIONS(4975), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4977), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4977), - [anon_sym_BANGin] = ACTIONS(4977), - [anon_sym_is] = ACTIONS(4975), - [anon_sym_BANGis] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_as_QMARK] = ACTIONS(4977), - [anon_sym_PLUS_PLUS] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_BANG_BANG] = ACTIONS(4977), - [anon_sym_suspend] = ACTIONS(4975), - [anon_sym_sealed] = ACTIONS(4975), - [anon_sym_annotation] = ACTIONS(4975), - [anon_sym_data] = ACTIONS(4975), - [anon_sym_inner] = ACTIONS(4975), - [anon_sym_value] = ACTIONS(4975), - [anon_sym_override] = ACTIONS(4975), - [anon_sym_lateinit] = ACTIONS(4975), - [anon_sym_public] = ACTIONS(4975), - [anon_sym_private] = ACTIONS(4975), - [anon_sym_internal] = ACTIONS(4975), - [anon_sym_protected] = ACTIONS(4975), - [anon_sym_tailrec] = ACTIONS(4975), - [anon_sym_operator] = ACTIONS(4975), - [anon_sym_infix] = ACTIONS(4975), - [anon_sym_inline] = ACTIONS(4975), - [anon_sym_external] = ACTIONS(4975), - [sym_property_modifier] = ACTIONS(4975), - [anon_sym_abstract] = ACTIONS(4975), - [anon_sym_final] = ACTIONS(4975), - [anon_sym_open] = ACTIONS(4975), - [anon_sym_vararg] = ACTIONS(4975), - [anon_sym_noinline] = ACTIONS(4975), - [anon_sym_crossinline] = ACTIONS(4975), - [anon_sym_expect] = ACTIONS(4975), - [anon_sym_actual] = ACTIONS(4975), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4977), - [anon_sym_continue_AT] = ACTIONS(4977), - [anon_sym_break_AT] = ACTIONS(4977), - [anon_sym_this_AT] = ACTIONS(4977), - [anon_sym_super_AT] = ACTIONS(4977), - [sym_real_literal] = ACTIONS(4977), - [sym_integer_literal] = ACTIONS(4975), - [sym_hex_literal] = ACTIONS(4977), - [sym_bin_literal] = ACTIONS(4977), - [anon_sym_true] = ACTIONS(4975), - [anon_sym_false] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4977), - [sym__backtick_identifier] = ACTIONS(4977), - [sym__automatic_semicolon] = ACTIONS(4977), - [sym_safe_nav] = ACTIONS(4977), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4977), + [sym__alpha_identifier] = ACTIONS(4960), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4960), + [anon_sym_object] = ACTIONS(4960), + [anon_sym_fun] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_get] = ACTIONS(4960), + [anon_sym_set] = ACTIONS(4960), + [anon_sym_this] = ACTIONS(4960), + [anon_sym_super] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [sym_label] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4962), + [anon_sym_QMARK_COLON] = ACTIONS(4962), + [anon_sym_AMP_AMP] = ACTIONS(4962), + [anon_sym_PIPE_PIPE] = ACTIONS(4962), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_when] = ACTIONS(4960), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_throw] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_continue] = ACTIONS(4960), + [anon_sym_break] = ACTIONS(4960), + [anon_sym_COLON_COLON] = ACTIONS(4962), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_PERCENT_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_BANGin] = ACTIONS(4962), + [anon_sym_is] = ACTIONS(4960), + [anon_sym_BANGis] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_as_QMARK] = ACTIONS(4962), + [anon_sym_PLUS_PLUS] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_BANG_BANG] = ACTIONS(4962), + [anon_sym_suspend] = ACTIONS(4960), + [anon_sym_sealed] = ACTIONS(4960), + [anon_sym_annotation] = ACTIONS(4960), + [anon_sym_data] = ACTIONS(4960), + [anon_sym_inner] = ACTIONS(4960), + [anon_sym_value] = ACTIONS(4960), + [anon_sym_override] = ACTIONS(4960), + [anon_sym_lateinit] = ACTIONS(4960), + [anon_sym_public] = ACTIONS(4960), + [anon_sym_private] = ACTIONS(4960), + [anon_sym_internal] = ACTIONS(4960), + [anon_sym_protected] = ACTIONS(4960), + [anon_sym_tailrec] = ACTIONS(4960), + [anon_sym_operator] = ACTIONS(4960), + [anon_sym_infix] = ACTIONS(4960), + [anon_sym_inline] = ACTIONS(4960), + [anon_sym_external] = ACTIONS(4960), + [sym_property_modifier] = ACTIONS(4960), + [anon_sym_abstract] = ACTIONS(4960), + [anon_sym_final] = ACTIONS(4960), + [anon_sym_open] = ACTIONS(4960), + [anon_sym_vararg] = ACTIONS(4960), + [anon_sym_noinline] = ACTIONS(4960), + [anon_sym_crossinline] = ACTIONS(4960), + [anon_sym_expect] = ACTIONS(4960), + [anon_sym_actual] = ACTIONS(4960), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4962), + [anon_sym_continue_AT] = ACTIONS(4962), + [anon_sym_break_AT] = ACTIONS(4962), + [anon_sym_this_AT] = ACTIONS(4962), + [anon_sym_super_AT] = ACTIONS(4962), + [sym_real_literal] = ACTIONS(4962), + [sym_integer_literal] = ACTIONS(4960), + [sym_hex_literal] = ACTIONS(4962), + [sym_bin_literal] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4960), + [anon_sym_false] = ACTIONS(4960), + [anon_sym_SQUOTE] = ACTIONS(4962), + [sym__backtick_identifier] = ACTIONS(4962), + [sym__automatic_semicolon] = ACTIONS(4962), + [sym_safe_nav] = ACTIONS(4962), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4962), }, [1088] = { - [sym_function_body] = STATE(1128), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), + [sym__alpha_identifier] = ACTIONS(4964), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_where] = ACTIONS(4964), + [anon_sym_object] = ACTIONS(4964), + [anon_sym_fun] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_get] = ACTIONS(4964), + [anon_sym_set] = ACTIONS(4964), + [anon_sym_this] = ACTIONS(4964), + [anon_sym_super] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [sym_label] = ACTIONS(4964), + [anon_sym_in] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4966), + [anon_sym_QMARK_COLON] = ACTIONS(4966), + [anon_sym_AMP_AMP] = ACTIONS(4966), + [anon_sym_PIPE_PIPE] = ACTIONS(4966), + [anon_sym_null] = ACTIONS(4964), + [anon_sym_if] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_when] = ACTIONS(4964), + [anon_sym_try] = ACTIONS(4964), + [anon_sym_throw] = ACTIONS(4964), + [anon_sym_return] = ACTIONS(4964), + [anon_sym_continue] = ACTIONS(4964), + [anon_sym_break] = ACTIONS(4964), + [anon_sym_COLON_COLON] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_PERCENT_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_BANGin] = ACTIONS(4966), + [anon_sym_is] = ACTIONS(4964), + [anon_sym_BANGis] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_as_QMARK] = ACTIONS(4966), + [anon_sym_PLUS_PLUS] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_BANG_BANG] = ACTIONS(4966), + [anon_sym_suspend] = ACTIONS(4964), + [anon_sym_sealed] = ACTIONS(4964), + [anon_sym_annotation] = ACTIONS(4964), + [anon_sym_data] = ACTIONS(4964), + [anon_sym_inner] = ACTIONS(4964), + [anon_sym_value] = ACTIONS(4964), + [anon_sym_override] = ACTIONS(4964), + [anon_sym_lateinit] = ACTIONS(4964), + [anon_sym_public] = ACTIONS(4964), + [anon_sym_private] = ACTIONS(4964), + [anon_sym_internal] = ACTIONS(4964), + [anon_sym_protected] = ACTIONS(4964), + [anon_sym_tailrec] = ACTIONS(4964), + [anon_sym_operator] = ACTIONS(4964), + [anon_sym_infix] = ACTIONS(4964), + [anon_sym_inline] = ACTIONS(4964), + [anon_sym_external] = ACTIONS(4964), + [sym_property_modifier] = ACTIONS(4964), + [anon_sym_abstract] = ACTIONS(4964), + [anon_sym_final] = ACTIONS(4964), + [anon_sym_open] = ACTIONS(4964), + [anon_sym_vararg] = ACTIONS(4964), + [anon_sym_noinline] = ACTIONS(4964), + [anon_sym_crossinline] = ACTIONS(4964), + [anon_sym_expect] = ACTIONS(4964), + [anon_sym_actual] = ACTIONS(4964), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4966), + [anon_sym_continue_AT] = ACTIONS(4966), + [anon_sym_break_AT] = ACTIONS(4966), + [anon_sym_this_AT] = ACTIONS(4966), + [anon_sym_super_AT] = ACTIONS(4966), + [sym_real_literal] = ACTIONS(4966), + [sym_integer_literal] = ACTIONS(4964), + [sym_hex_literal] = ACTIONS(4966), + [sym_bin_literal] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4964), + [anon_sym_false] = ACTIONS(4964), + [anon_sym_SQUOTE] = ACTIONS(4966), + [sym__backtick_identifier] = ACTIONS(4966), + [sym__automatic_semicolon] = ACTIONS(4966), + [sym_safe_nav] = ACTIONS(4966), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4966), }, [1089] = { - [sym_function_body] = STATE(1163), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [sym__alpha_identifier] = ACTIONS(4968), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_where] = ACTIONS(4968), + [anon_sym_object] = ACTIONS(4968), + [anon_sym_fun] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_get] = ACTIONS(4968), + [anon_sym_set] = ACTIONS(4968), + [anon_sym_this] = ACTIONS(4968), + [anon_sym_super] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [sym_label] = ACTIONS(4968), + [anon_sym_in] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_QMARK_COLON] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_PIPE_PIPE] = ACTIONS(4970), + [anon_sym_null] = ACTIONS(4968), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_when] = ACTIONS(4968), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_throw] = ACTIONS(4968), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4970), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_PERCENT_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_BANGin] = ACTIONS(4970), + [anon_sym_is] = ACTIONS(4968), + [anon_sym_BANGis] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_as_QMARK] = ACTIONS(4970), + [anon_sym_PLUS_PLUS] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_BANG_BANG] = ACTIONS(4970), + [anon_sym_suspend] = ACTIONS(4968), + [anon_sym_sealed] = ACTIONS(4968), + [anon_sym_annotation] = ACTIONS(4968), + [anon_sym_data] = ACTIONS(4968), + [anon_sym_inner] = ACTIONS(4968), + [anon_sym_value] = ACTIONS(4968), + [anon_sym_override] = ACTIONS(4968), + [anon_sym_lateinit] = ACTIONS(4968), + [anon_sym_public] = ACTIONS(4968), + [anon_sym_private] = ACTIONS(4968), + [anon_sym_internal] = ACTIONS(4968), + [anon_sym_protected] = ACTIONS(4968), + [anon_sym_tailrec] = ACTIONS(4968), + [anon_sym_operator] = ACTIONS(4968), + [anon_sym_infix] = ACTIONS(4968), + [anon_sym_inline] = ACTIONS(4968), + [anon_sym_external] = ACTIONS(4968), + [sym_property_modifier] = ACTIONS(4968), + [anon_sym_abstract] = ACTIONS(4968), + [anon_sym_final] = ACTIONS(4968), + [anon_sym_open] = ACTIONS(4968), + [anon_sym_vararg] = ACTIONS(4968), + [anon_sym_noinline] = ACTIONS(4968), + [anon_sym_crossinline] = ACTIONS(4968), + [anon_sym_expect] = ACTIONS(4968), + [anon_sym_actual] = ACTIONS(4968), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4970), + [anon_sym_continue_AT] = ACTIONS(4970), + [anon_sym_break_AT] = ACTIONS(4970), + [anon_sym_this_AT] = ACTIONS(4970), + [anon_sym_super_AT] = ACTIONS(4970), + [sym_real_literal] = ACTIONS(4970), + [sym_integer_literal] = ACTIONS(4968), + [sym_hex_literal] = ACTIONS(4970), + [sym_bin_literal] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_SQUOTE] = ACTIONS(4970), + [sym__backtick_identifier] = ACTIONS(4970), + [sym__automatic_semicolon] = ACTIONS(4970), + [sym_safe_nav] = ACTIONS(4970), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4970), }, [1090] = { - [sym__alpha_identifier] = ACTIONS(4979), - [anon_sym_AT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4979), - [anon_sym_as] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4979), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_where] = ACTIONS(4979), - [anon_sym_object] = ACTIONS(4979), - [anon_sym_fun] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4981), - [anon_sym_get] = ACTIONS(4979), - [anon_sym_set] = ACTIONS(4979), - [anon_sym_this] = ACTIONS(4979), - [anon_sym_super] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [sym_label] = ACTIONS(4979), - [anon_sym_in] = ACTIONS(4979), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_QMARK_COLON] = ACTIONS(4981), - [anon_sym_AMP_AMP] = ACTIONS(4981), - [anon_sym_PIPE_PIPE] = ACTIONS(4981), - [anon_sym_null] = ACTIONS(4979), - [anon_sym_if] = ACTIONS(4979), - [anon_sym_else] = ACTIONS(4979), - [anon_sym_when] = ACTIONS(4979), - [anon_sym_try] = ACTIONS(4979), - [anon_sym_throw] = ACTIONS(4979), - [anon_sym_return] = ACTIONS(4979), - [anon_sym_continue] = ACTIONS(4979), - [anon_sym_break] = ACTIONS(4979), - [anon_sym_COLON_COLON] = ACTIONS(4981), - [anon_sym_PLUS_EQ] = ACTIONS(4981), - [anon_sym_DASH_EQ] = ACTIONS(4981), - [anon_sym_STAR_EQ] = ACTIONS(4981), - [anon_sym_SLASH_EQ] = ACTIONS(4981), - [anon_sym_PERCENT_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ] = ACTIONS(4979), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4981), - [anon_sym_EQ_EQ] = ACTIONS(4979), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_BANGin] = ACTIONS(4981), - [anon_sym_is] = ACTIONS(4979), - [anon_sym_BANGis] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_as_QMARK] = ACTIONS(4981), - [anon_sym_PLUS_PLUS] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_BANG_BANG] = ACTIONS(4981), - [anon_sym_suspend] = ACTIONS(4979), - [anon_sym_sealed] = ACTIONS(4979), - [anon_sym_annotation] = ACTIONS(4979), - [anon_sym_data] = ACTIONS(4979), - [anon_sym_inner] = ACTIONS(4979), - [anon_sym_value] = ACTIONS(4979), - [anon_sym_override] = ACTIONS(4979), - [anon_sym_lateinit] = ACTIONS(4979), - [anon_sym_public] = ACTIONS(4979), - [anon_sym_private] = ACTIONS(4979), - [anon_sym_internal] = ACTIONS(4979), - [anon_sym_protected] = ACTIONS(4979), - [anon_sym_tailrec] = ACTIONS(4979), - [anon_sym_operator] = ACTIONS(4979), - [anon_sym_infix] = ACTIONS(4979), - [anon_sym_inline] = ACTIONS(4979), - [anon_sym_external] = ACTIONS(4979), - [sym_property_modifier] = ACTIONS(4979), - [anon_sym_abstract] = ACTIONS(4979), - [anon_sym_final] = ACTIONS(4979), - [anon_sym_open] = ACTIONS(4979), - [anon_sym_vararg] = ACTIONS(4979), - [anon_sym_noinline] = ACTIONS(4979), - [anon_sym_crossinline] = ACTIONS(4979), - [anon_sym_expect] = ACTIONS(4979), - [anon_sym_actual] = ACTIONS(4979), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4981), - [anon_sym_continue_AT] = ACTIONS(4981), - [anon_sym_break_AT] = ACTIONS(4981), - [anon_sym_this_AT] = ACTIONS(4981), - [anon_sym_super_AT] = ACTIONS(4981), - [sym_real_literal] = ACTIONS(4981), - [sym_integer_literal] = ACTIONS(4979), - [sym_hex_literal] = ACTIONS(4981), - [sym_bin_literal] = ACTIONS(4981), - [anon_sym_true] = ACTIONS(4979), - [anon_sym_false] = ACTIONS(4979), - [anon_sym_SQUOTE] = ACTIONS(4981), - [sym__backtick_identifier] = ACTIONS(4981), - [sym__automatic_semicolon] = ACTIONS(4981), - [sym_safe_nav] = ACTIONS(4981), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4981), + [sym__alpha_identifier] = ACTIONS(4972), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_where] = ACTIONS(4972), + [anon_sym_object] = ACTIONS(4972), + [anon_sym_fun] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_get] = ACTIONS(4972), + [anon_sym_set] = ACTIONS(4972), + [anon_sym_this] = ACTIONS(4972), + [anon_sym_super] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [sym_label] = ACTIONS(4972), + [anon_sym_in] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4974), + [anon_sym_QMARK_COLON] = ACTIONS(4974), + [anon_sym_AMP_AMP] = ACTIONS(4974), + [anon_sym_PIPE_PIPE] = ACTIONS(4974), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_when] = ACTIONS(4972), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_throw] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_continue] = ACTIONS(4972), + [anon_sym_break] = ACTIONS(4972), + [anon_sym_COLON_COLON] = ACTIONS(4974), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_PERCENT_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_BANGin] = ACTIONS(4974), + [anon_sym_is] = ACTIONS(4972), + [anon_sym_BANGis] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_as_QMARK] = ACTIONS(4974), + [anon_sym_PLUS_PLUS] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_BANG_BANG] = ACTIONS(4974), + [anon_sym_suspend] = ACTIONS(4972), + [anon_sym_sealed] = ACTIONS(4972), + [anon_sym_annotation] = ACTIONS(4972), + [anon_sym_data] = ACTIONS(4972), + [anon_sym_inner] = ACTIONS(4972), + [anon_sym_value] = ACTIONS(4972), + [anon_sym_override] = ACTIONS(4972), + [anon_sym_lateinit] = ACTIONS(4972), + [anon_sym_public] = ACTIONS(4972), + [anon_sym_private] = ACTIONS(4972), + [anon_sym_internal] = ACTIONS(4972), + [anon_sym_protected] = ACTIONS(4972), + [anon_sym_tailrec] = ACTIONS(4972), + [anon_sym_operator] = ACTIONS(4972), + [anon_sym_infix] = ACTIONS(4972), + [anon_sym_inline] = ACTIONS(4972), + [anon_sym_external] = ACTIONS(4972), + [sym_property_modifier] = ACTIONS(4972), + [anon_sym_abstract] = ACTIONS(4972), + [anon_sym_final] = ACTIONS(4972), + [anon_sym_open] = ACTIONS(4972), + [anon_sym_vararg] = ACTIONS(4972), + [anon_sym_noinline] = ACTIONS(4972), + [anon_sym_crossinline] = ACTIONS(4972), + [anon_sym_expect] = ACTIONS(4972), + [anon_sym_actual] = ACTIONS(4972), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4974), + [anon_sym_continue_AT] = ACTIONS(4974), + [anon_sym_break_AT] = ACTIONS(4974), + [anon_sym_this_AT] = ACTIONS(4974), + [anon_sym_super_AT] = ACTIONS(4974), + [sym_real_literal] = ACTIONS(4974), + [sym_integer_literal] = ACTIONS(4972), + [sym_hex_literal] = ACTIONS(4974), + [sym_bin_literal] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4972), + [anon_sym_false] = ACTIONS(4972), + [anon_sym_SQUOTE] = ACTIONS(4974), + [sym__backtick_identifier] = ACTIONS(4974), + [sym__automatic_semicolon] = ACTIONS(4974), + [sym_safe_nav] = ACTIONS(4974), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4974), }, [1091] = { - [sym__alpha_identifier] = ACTIONS(4983), - [anon_sym_AT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_where] = ACTIONS(4983), - [anon_sym_object] = ACTIONS(4983), - [anon_sym_fun] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_get] = ACTIONS(4983), - [anon_sym_set] = ACTIONS(4983), - [anon_sym_this] = ACTIONS(4983), - [anon_sym_super] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [sym_label] = ACTIONS(4983), - [anon_sym_in] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4985), - [anon_sym_QMARK_COLON] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_null] = ACTIONS(4983), - [anon_sym_if] = ACTIONS(4983), - [anon_sym_else] = ACTIONS(4983), - [anon_sym_when] = ACTIONS(4983), - [anon_sym_try] = ACTIONS(4983), - [anon_sym_throw] = ACTIONS(4983), - [anon_sym_return] = ACTIONS(4983), - [anon_sym_continue] = ACTIONS(4983), - [anon_sym_break] = ACTIONS(4983), - [anon_sym_COLON_COLON] = ACTIONS(4985), - [anon_sym_PLUS_EQ] = ACTIONS(4985), - [anon_sym_DASH_EQ] = ACTIONS(4985), - [anon_sym_STAR_EQ] = ACTIONS(4985), - [anon_sym_SLASH_EQ] = ACTIONS(4985), - [anon_sym_PERCENT_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_BANGin] = ACTIONS(4985), - [anon_sym_is] = ACTIONS(4983), - [anon_sym_BANGis] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_as_QMARK] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_BANG_BANG] = ACTIONS(4985), - [anon_sym_suspend] = ACTIONS(4983), - [anon_sym_sealed] = ACTIONS(4983), - [anon_sym_annotation] = ACTIONS(4983), - [anon_sym_data] = ACTIONS(4983), - [anon_sym_inner] = ACTIONS(4983), - [anon_sym_value] = ACTIONS(4983), - [anon_sym_override] = ACTIONS(4983), - [anon_sym_lateinit] = ACTIONS(4983), - [anon_sym_public] = ACTIONS(4983), - [anon_sym_private] = ACTIONS(4983), - [anon_sym_internal] = ACTIONS(4983), - [anon_sym_protected] = ACTIONS(4983), - [anon_sym_tailrec] = ACTIONS(4983), - [anon_sym_operator] = ACTIONS(4983), - [anon_sym_infix] = ACTIONS(4983), - [anon_sym_inline] = ACTIONS(4983), - [anon_sym_external] = ACTIONS(4983), - [sym_property_modifier] = ACTIONS(4983), - [anon_sym_abstract] = ACTIONS(4983), - [anon_sym_final] = ACTIONS(4983), - [anon_sym_open] = ACTIONS(4983), - [anon_sym_vararg] = ACTIONS(4983), - [anon_sym_noinline] = ACTIONS(4983), - [anon_sym_crossinline] = ACTIONS(4983), - [anon_sym_expect] = ACTIONS(4983), - [anon_sym_actual] = ACTIONS(4983), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4985), - [anon_sym_continue_AT] = ACTIONS(4985), - [anon_sym_break_AT] = ACTIONS(4985), - [anon_sym_this_AT] = ACTIONS(4985), - [anon_sym_super_AT] = ACTIONS(4985), - [sym_real_literal] = ACTIONS(4985), - [sym_integer_literal] = ACTIONS(4983), - [sym_hex_literal] = ACTIONS(4985), - [sym_bin_literal] = ACTIONS(4985), - [anon_sym_true] = ACTIONS(4983), - [anon_sym_false] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4985), - [sym__backtick_identifier] = ACTIONS(4985), - [sym__automatic_semicolon] = ACTIONS(4985), - [sym_safe_nav] = ACTIONS(4985), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4985), + [sym__alpha_identifier] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_where] = ACTIONS(4976), + [anon_sym_object] = ACTIONS(4976), + [anon_sym_fun] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_get] = ACTIONS(4976), + [anon_sym_set] = ACTIONS(4976), + [anon_sym_this] = ACTIONS(4976), + [anon_sym_super] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [sym_label] = ACTIONS(4976), + [anon_sym_in] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4978), + [anon_sym_QMARK_COLON] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_null] = ACTIONS(4976), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_when] = ACTIONS(4976), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_throw] = ACTIONS(4976), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_BANGin] = ACTIONS(4978), + [anon_sym_is] = ACTIONS(4976), + [anon_sym_BANGis] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_as_QMARK] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_BANG_BANG] = ACTIONS(4978), + [anon_sym_suspend] = ACTIONS(4976), + [anon_sym_sealed] = ACTIONS(4976), + [anon_sym_annotation] = ACTIONS(4976), + [anon_sym_data] = ACTIONS(4976), + [anon_sym_inner] = ACTIONS(4976), + [anon_sym_value] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_lateinit] = ACTIONS(4976), + [anon_sym_public] = ACTIONS(4976), + [anon_sym_private] = ACTIONS(4976), + [anon_sym_internal] = ACTIONS(4976), + [anon_sym_protected] = ACTIONS(4976), + [anon_sym_tailrec] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_infix] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym_external] = ACTIONS(4976), + [sym_property_modifier] = ACTIONS(4976), + [anon_sym_abstract] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_open] = ACTIONS(4976), + [anon_sym_vararg] = ACTIONS(4976), + [anon_sym_noinline] = ACTIONS(4976), + [anon_sym_crossinline] = ACTIONS(4976), + [anon_sym_expect] = ACTIONS(4976), + [anon_sym_actual] = ACTIONS(4976), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4978), + [anon_sym_continue_AT] = ACTIONS(4978), + [anon_sym_break_AT] = ACTIONS(4978), + [anon_sym_this_AT] = ACTIONS(4978), + [anon_sym_super_AT] = ACTIONS(4978), + [sym_real_literal] = ACTIONS(4978), + [sym_integer_literal] = ACTIONS(4976), + [sym_hex_literal] = ACTIONS(4978), + [sym_bin_literal] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4978), + [sym__backtick_identifier] = ACTIONS(4978), + [sym__automatic_semicolon] = ACTIONS(4978), + [sym_safe_nav] = ACTIONS(4978), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4978), }, [1092] = { - [sym__alpha_identifier] = ACTIONS(4987), - [anon_sym_AT] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_where] = ACTIONS(4987), - [anon_sym_object] = ACTIONS(4987), - [anon_sym_fun] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_get] = ACTIONS(4987), - [anon_sym_set] = ACTIONS(4987), - [anon_sym_this] = ACTIONS(4987), - [anon_sym_super] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [sym_label] = ACTIONS(4987), - [anon_sym_in] = ACTIONS(4987), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_QMARK_COLON] = ACTIONS(4989), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_null] = ACTIONS(4987), - [anon_sym_if] = ACTIONS(4987), - [anon_sym_else] = ACTIONS(4987), - [anon_sym_when] = ACTIONS(4987), - [anon_sym_try] = ACTIONS(4987), - [anon_sym_throw] = ACTIONS(4987), - [anon_sym_return] = ACTIONS(4987), - [anon_sym_continue] = ACTIONS(4987), - [anon_sym_break] = ACTIONS(4987), - [anon_sym_COLON_COLON] = ACTIONS(4989), - [anon_sym_PLUS_EQ] = ACTIONS(4989), - [anon_sym_DASH_EQ] = ACTIONS(4989), - [anon_sym_STAR_EQ] = ACTIONS(4989), - [anon_sym_SLASH_EQ] = ACTIONS(4989), - [anon_sym_PERCENT_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4989), - [anon_sym_EQ_EQ] = ACTIONS(4987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4989), - [anon_sym_GT_EQ] = ACTIONS(4989), - [anon_sym_BANGin] = ACTIONS(4989), - [anon_sym_is] = ACTIONS(4987), - [anon_sym_BANGis] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_as_QMARK] = ACTIONS(4989), - [anon_sym_PLUS_PLUS] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_BANG_BANG] = ACTIONS(4989), - [anon_sym_suspend] = ACTIONS(4987), - [anon_sym_sealed] = ACTIONS(4987), - [anon_sym_annotation] = ACTIONS(4987), - [anon_sym_data] = ACTIONS(4987), - [anon_sym_inner] = ACTIONS(4987), - [anon_sym_value] = ACTIONS(4987), - [anon_sym_override] = ACTIONS(4987), - [anon_sym_lateinit] = ACTIONS(4987), - [anon_sym_public] = ACTIONS(4987), - [anon_sym_private] = ACTIONS(4987), - [anon_sym_internal] = ACTIONS(4987), - [anon_sym_protected] = ACTIONS(4987), - [anon_sym_tailrec] = ACTIONS(4987), - [anon_sym_operator] = ACTIONS(4987), - [anon_sym_infix] = ACTIONS(4987), - [anon_sym_inline] = ACTIONS(4987), - [anon_sym_external] = ACTIONS(4987), - [sym_property_modifier] = ACTIONS(4987), - [anon_sym_abstract] = ACTIONS(4987), - [anon_sym_final] = ACTIONS(4987), - [anon_sym_open] = ACTIONS(4987), - [anon_sym_vararg] = ACTIONS(4987), - [anon_sym_noinline] = ACTIONS(4987), - [anon_sym_crossinline] = ACTIONS(4987), - [anon_sym_expect] = ACTIONS(4987), - [anon_sym_actual] = ACTIONS(4987), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4989), - [anon_sym_continue_AT] = ACTIONS(4989), - [anon_sym_break_AT] = ACTIONS(4989), - [anon_sym_this_AT] = ACTIONS(4989), - [anon_sym_super_AT] = ACTIONS(4989), - [sym_real_literal] = ACTIONS(4989), - [sym_integer_literal] = ACTIONS(4987), - [sym_hex_literal] = ACTIONS(4989), - [sym_bin_literal] = ACTIONS(4989), - [anon_sym_true] = ACTIONS(4987), - [anon_sym_false] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4989), - [sym__backtick_identifier] = ACTIONS(4989), - [sym__automatic_semicolon] = ACTIONS(4989), - [sym_safe_nav] = ACTIONS(4989), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4989), + [sym__alpha_identifier] = ACTIONS(4980), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_as] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_where] = ACTIONS(4980), + [anon_sym_object] = ACTIONS(4980), + [anon_sym_fun] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(4980), + [anon_sym_set] = ACTIONS(4980), + [anon_sym_this] = ACTIONS(4980), + [anon_sym_super] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [sym_label] = ACTIONS(4980), + [anon_sym_in] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4982), + [anon_sym_QMARK_COLON] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_null] = ACTIONS(4980), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_when] = ACTIONS(4980), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_throw] = ACTIONS(4980), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_BANGin] = ACTIONS(4982), + [anon_sym_is] = ACTIONS(4980), + [anon_sym_BANGis] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_as_QMARK] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_BANG_BANG] = ACTIONS(4982), + [anon_sym_suspend] = ACTIONS(4980), + [anon_sym_sealed] = ACTIONS(4980), + [anon_sym_annotation] = ACTIONS(4980), + [anon_sym_data] = ACTIONS(4980), + [anon_sym_inner] = ACTIONS(4980), + [anon_sym_value] = ACTIONS(4980), + [anon_sym_override] = ACTIONS(4980), + [anon_sym_lateinit] = ACTIONS(4980), + [anon_sym_public] = ACTIONS(4980), + [anon_sym_private] = ACTIONS(4980), + [anon_sym_internal] = ACTIONS(4980), + [anon_sym_protected] = ACTIONS(4980), + [anon_sym_tailrec] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4980), + [anon_sym_infix] = ACTIONS(4980), + [anon_sym_inline] = ACTIONS(4980), + [anon_sym_external] = ACTIONS(4980), + [sym_property_modifier] = ACTIONS(4980), + [anon_sym_abstract] = ACTIONS(4980), + [anon_sym_final] = ACTIONS(4980), + [anon_sym_open] = ACTIONS(4980), + [anon_sym_vararg] = ACTIONS(4980), + [anon_sym_noinline] = ACTIONS(4980), + [anon_sym_crossinline] = ACTIONS(4980), + [anon_sym_expect] = ACTIONS(4980), + [anon_sym_actual] = ACTIONS(4980), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4982), + [anon_sym_continue_AT] = ACTIONS(4982), + [anon_sym_break_AT] = ACTIONS(4982), + [anon_sym_this_AT] = ACTIONS(4982), + [anon_sym_super_AT] = ACTIONS(4982), + [sym_real_literal] = ACTIONS(4982), + [sym_integer_literal] = ACTIONS(4980), + [sym_hex_literal] = ACTIONS(4982), + [sym_bin_literal] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4982), + [sym__backtick_identifier] = ACTIONS(4982), + [sym__automatic_semicolon] = ACTIONS(4982), + [sym_safe_nav] = ACTIONS(4982), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4982), }, [1093] = { - [sym__alpha_identifier] = ACTIONS(4991), - [anon_sym_AT] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4993), - [anon_sym_RBRACE] = ACTIONS(4993), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_where] = ACTIONS(4991), - [anon_sym_object] = ACTIONS(4991), - [anon_sym_fun] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4993), - [anon_sym_get] = ACTIONS(4991), - [anon_sym_set] = ACTIONS(4991), - [anon_sym_this] = ACTIONS(4991), - [anon_sym_super] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [sym_label] = ACTIONS(4991), - [anon_sym_in] = ACTIONS(4991), - [anon_sym_DOT_DOT] = ACTIONS(4993), - [anon_sym_QMARK_COLON] = ACTIONS(4993), - [anon_sym_AMP_AMP] = ACTIONS(4993), - [anon_sym_PIPE_PIPE] = ACTIONS(4993), - [anon_sym_null] = ACTIONS(4991), - [anon_sym_if] = ACTIONS(4991), - [anon_sym_else] = ACTIONS(4991), - [anon_sym_when] = ACTIONS(4991), - [anon_sym_try] = ACTIONS(4991), - [anon_sym_throw] = ACTIONS(4991), - [anon_sym_return] = ACTIONS(4991), - [anon_sym_continue] = ACTIONS(4991), - [anon_sym_break] = ACTIONS(4991), - [anon_sym_COLON_COLON] = ACTIONS(4993), - [anon_sym_PLUS_EQ] = ACTIONS(4993), - [anon_sym_DASH_EQ] = ACTIONS(4993), - [anon_sym_STAR_EQ] = ACTIONS(4993), - [anon_sym_SLASH_EQ] = ACTIONS(4993), - [anon_sym_PERCENT_EQ] = ACTIONS(4993), - [anon_sym_BANG_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4993), - [anon_sym_EQ_EQ] = ACTIONS(4991), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4993), - [anon_sym_LT_EQ] = ACTIONS(4993), - [anon_sym_GT_EQ] = ACTIONS(4993), - [anon_sym_BANGin] = ACTIONS(4993), - [anon_sym_is] = ACTIONS(4991), - [anon_sym_BANGis] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_as_QMARK] = ACTIONS(4993), - [anon_sym_PLUS_PLUS] = ACTIONS(4993), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_BANG_BANG] = ACTIONS(4993), - [anon_sym_suspend] = ACTIONS(4991), - [anon_sym_sealed] = ACTIONS(4991), - [anon_sym_annotation] = ACTIONS(4991), - [anon_sym_data] = ACTIONS(4991), - [anon_sym_inner] = ACTIONS(4991), - [anon_sym_value] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_lateinit] = ACTIONS(4991), - [anon_sym_public] = ACTIONS(4991), - [anon_sym_private] = ACTIONS(4991), - [anon_sym_internal] = ACTIONS(4991), - [anon_sym_protected] = ACTIONS(4991), - [anon_sym_tailrec] = ACTIONS(4991), - [anon_sym_operator] = ACTIONS(4991), - [anon_sym_infix] = ACTIONS(4991), - [anon_sym_inline] = ACTIONS(4991), - [anon_sym_external] = ACTIONS(4991), - [sym_property_modifier] = ACTIONS(4991), - [anon_sym_abstract] = ACTIONS(4991), - [anon_sym_final] = ACTIONS(4991), - [anon_sym_open] = ACTIONS(4991), - [anon_sym_vararg] = ACTIONS(4991), - [anon_sym_noinline] = ACTIONS(4991), - [anon_sym_crossinline] = ACTIONS(4991), - [anon_sym_expect] = ACTIONS(4991), - [anon_sym_actual] = ACTIONS(4991), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4993), - [anon_sym_continue_AT] = ACTIONS(4993), - [anon_sym_break_AT] = ACTIONS(4993), - [anon_sym_this_AT] = ACTIONS(4993), - [anon_sym_super_AT] = ACTIONS(4993), - [sym_real_literal] = ACTIONS(4993), - [sym_integer_literal] = ACTIONS(4991), - [sym_hex_literal] = ACTIONS(4993), - [sym_bin_literal] = ACTIONS(4993), - [anon_sym_true] = ACTIONS(4991), - [anon_sym_false] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4993), - [sym__backtick_identifier] = ACTIONS(4993), - [sym__automatic_semicolon] = ACTIONS(4993), - [sym_safe_nav] = ACTIONS(4993), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4993), + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_as] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_where] = ACTIONS(4984), + [anon_sym_object] = ACTIONS(4984), + [anon_sym_fun] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_get] = ACTIONS(4984), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_this] = ACTIONS(4984), + [anon_sym_super] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [sym_label] = ACTIONS(4984), + [anon_sym_in] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4986), + [anon_sym_QMARK_COLON] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_null] = ACTIONS(4984), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_when] = ACTIONS(4984), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_throw] = ACTIONS(4984), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_BANGin] = ACTIONS(4986), + [anon_sym_is] = ACTIONS(4984), + [anon_sym_BANGis] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_as_QMARK] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_BANG_BANG] = ACTIONS(4986), + [anon_sym_suspend] = ACTIONS(4984), + [anon_sym_sealed] = ACTIONS(4984), + [anon_sym_annotation] = ACTIONS(4984), + [anon_sym_data] = ACTIONS(4984), + [anon_sym_inner] = ACTIONS(4984), + [anon_sym_value] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_lateinit] = ACTIONS(4984), + [anon_sym_public] = ACTIONS(4984), + [anon_sym_private] = ACTIONS(4984), + [anon_sym_internal] = ACTIONS(4984), + [anon_sym_protected] = ACTIONS(4984), + [anon_sym_tailrec] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + [anon_sym_infix] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym_external] = ACTIONS(4984), + [sym_property_modifier] = ACTIONS(4984), + [anon_sym_abstract] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_open] = ACTIONS(4984), + [anon_sym_vararg] = ACTIONS(4984), + [anon_sym_noinline] = ACTIONS(4984), + [anon_sym_crossinline] = ACTIONS(4984), + [anon_sym_expect] = ACTIONS(4984), + [anon_sym_actual] = ACTIONS(4984), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4986), + [anon_sym_continue_AT] = ACTIONS(4986), + [anon_sym_break_AT] = ACTIONS(4986), + [anon_sym_this_AT] = ACTIONS(4986), + [anon_sym_super_AT] = ACTIONS(4986), + [sym_real_literal] = ACTIONS(4986), + [sym_integer_literal] = ACTIONS(4984), + [sym_hex_literal] = ACTIONS(4986), + [sym_bin_literal] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4986), + [sym__backtick_identifier] = ACTIONS(4986), + [sym__automatic_semicolon] = ACTIONS(4986), + [sym_safe_nav] = ACTIONS(4986), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4986), }, [1094] = { - [sym_function_body] = STATE(1120), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), + [anon_sym_suspend] = ACTIONS(3368), + [anon_sym_sealed] = ACTIONS(3368), + [anon_sym_annotation] = ACTIONS(3368), + [anon_sym_data] = ACTIONS(3368), + [anon_sym_inner] = ACTIONS(3368), + [anon_sym_value] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_lateinit] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_internal] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_tailrec] = ACTIONS(3368), + [anon_sym_operator] = ACTIONS(3368), + [anon_sym_infix] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym_external] = ACTIONS(3368), + [sym_property_modifier] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_final] = ACTIONS(3368), + [anon_sym_open] = ACTIONS(3368), + [anon_sym_vararg] = ACTIONS(3368), + [anon_sym_noinline] = ACTIONS(3368), + [anon_sym_crossinline] = ACTIONS(3368), + [anon_sym_expect] = ACTIONS(3368), + [anon_sym_actual] = ACTIONS(3368), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, [1095] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_object] = ACTIONS(4419), - [anon_sym_fun] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_this] = ACTIONS(4419), - [anon_sym_super] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4419), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_when] = ACTIONS(4419), - [anon_sym_try] = ACTIONS(4419), - [anon_sym_throw] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4421), - [anon_sym_continue_AT] = ACTIONS(4421), - [anon_sym_break_AT] = ACTIONS(4421), - [anon_sym_this_AT] = ACTIONS(4421), - [anon_sym_super_AT] = ACTIONS(4421), - [sym_real_literal] = ACTIONS(4421), - [sym_integer_literal] = ACTIONS(4419), - [sym_hex_literal] = ACTIONS(4421), - [sym_bin_literal] = ACTIONS(4421), - [anon_sym_true] = ACTIONS(4419), - [anon_sym_false] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4421), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4421), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), }, [1096] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4444), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [1097] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4995), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4997), - [anon_sym_super_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(4630), + [anon_sym_AT] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4630), + [anon_sym_as] = ACTIONS(4630), + [anon_sym_EQ] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4632), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_where] = ACTIONS(4630), + [anon_sym_object] = ACTIONS(4630), + [anon_sym_fun] = ACTIONS(4630), + [anon_sym_SEMI] = ACTIONS(4632), + [anon_sym_get] = ACTIONS(4630), + [anon_sym_set] = ACTIONS(4630), + [anon_sym_this] = ACTIONS(4630), + [anon_sym_super] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [sym_label] = ACTIONS(4630), + [anon_sym_in] = ACTIONS(4630), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_QMARK_COLON] = ACTIONS(4632), + [anon_sym_AMP_AMP] = ACTIONS(4632), + [anon_sym_PIPE_PIPE] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4630), + [anon_sym_if] = ACTIONS(4630), + [anon_sym_else] = ACTIONS(4630), + [anon_sym_when] = ACTIONS(4630), + [anon_sym_try] = ACTIONS(4630), + [anon_sym_throw] = ACTIONS(4630), + [anon_sym_return] = ACTIONS(4630), + [anon_sym_continue] = ACTIONS(4630), + [anon_sym_break] = ACTIONS(4630), + [anon_sym_COLON_COLON] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4632), + [anon_sym_DASH_EQ] = ACTIONS(4632), + [anon_sym_STAR_EQ] = ACTIONS(4632), + [anon_sym_SLASH_EQ] = ACTIONS(4632), + [anon_sym_PERCENT_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4632), + [anon_sym_BANGin] = ACTIONS(4632), + [anon_sym_is] = ACTIONS(4630), + [anon_sym_BANGis] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_as_QMARK] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_BANG] = ACTIONS(4630), + [anon_sym_BANG_BANG] = ACTIONS(4632), + [anon_sym_suspend] = ACTIONS(4630), + [anon_sym_sealed] = ACTIONS(4630), + [anon_sym_annotation] = ACTIONS(4630), + [anon_sym_data] = ACTIONS(4630), + [anon_sym_inner] = ACTIONS(4630), + [anon_sym_value] = ACTIONS(4630), + [anon_sym_override] = ACTIONS(4630), + [anon_sym_lateinit] = ACTIONS(4630), + [anon_sym_public] = ACTIONS(4630), + [anon_sym_private] = ACTIONS(4630), + [anon_sym_internal] = ACTIONS(4630), + [anon_sym_protected] = ACTIONS(4630), + [anon_sym_tailrec] = ACTIONS(4630), + [anon_sym_operator] = ACTIONS(4630), + [anon_sym_infix] = ACTIONS(4630), + [anon_sym_inline] = ACTIONS(4630), + [anon_sym_external] = ACTIONS(4630), + [sym_property_modifier] = ACTIONS(4630), + [anon_sym_abstract] = ACTIONS(4630), + [anon_sym_final] = ACTIONS(4630), + [anon_sym_open] = ACTIONS(4630), + [anon_sym_vararg] = ACTIONS(4630), + [anon_sym_noinline] = ACTIONS(4630), + [anon_sym_crossinline] = ACTIONS(4630), + [anon_sym_expect] = ACTIONS(4630), + [anon_sym_actual] = ACTIONS(4630), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4632), + [anon_sym_continue_AT] = ACTIONS(4632), + [anon_sym_break_AT] = ACTIONS(4632), + [anon_sym_this_AT] = ACTIONS(4632), + [anon_sym_super_AT] = ACTIONS(4632), + [sym_real_literal] = ACTIONS(4632), + [sym_integer_literal] = ACTIONS(4630), + [sym_hex_literal] = ACTIONS(4632), + [sym_bin_literal] = ACTIONS(4632), + [anon_sym_true] = ACTIONS(4630), + [anon_sym_false] = ACTIONS(4630), + [anon_sym_SQUOTE] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4632), + [sym__automatic_semicolon] = ACTIONS(4632), + [sym_safe_nav] = ACTIONS(4632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4632), }, [1098] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_as] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_object] = ACTIONS(4988), + [anon_sym_fun] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_this] = ACTIONS(4988), + [anon_sym_super] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [sym_label] = ACTIONS(4988), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4990), + [anon_sym_AMP_AMP] = ACTIONS(4990), + [anon_sym_PIPE_PIPE] = ACTIONS(4990), + [anon_sym_null] = ACTIONS(4988), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_when] = ACTIONS(4988), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_throw] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4990), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_PERCENT_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_BANGin] = ACTIONS(4990), + [anon_sym_is] = ACTIONS(4988), + [anon_sym_BANGis] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_as_QMARK] = ACTIONS(4990), + [anon_sym_PLUS_PLUS] = ACTIONS(4990), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_BANG_BANG] = ACTIONS(4990), + [anon_sym_suspend] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_annotation] = ACTIONS(4988), + [anon_sym_data] = ACTIONS(4988), + [anon_sym_inner] = ACTIONS(4988), + [anon_sym_value] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_lateinit] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_tailrec] = ACTIONS(4988), + [anon_sym_operator] = ACTIONS(4988), + [anon_sym_infix] = ACTIONS(4988), + [anon_sym_inline] = ACTIONS(4988), + [anon_sym_external] = ACTIONS(4988), + [sym_property_modifier] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(4988), + [anon_sym_open] = ACTIONS(4988), + [anon_sym_vararg] = ACTIONS(4988), + [anon_sym_noinline] = ACTIONS(4988), + [anon_sym_crossinline] = ACTIONS(4988), + [anon_sym_expect] = ACTIONS(4988), + [anon_sym_actual] = ACTIONS(4988), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4990), + [anon_sym_continue_AT] = ACTIONS(4990), + [anon_sym_break_AT] = ACTIONS(4990), + [anon_sym_this_AT] = ACTIONS(4990), + [anon_sym_super_AT] = ACTIONS(4990), + [sym_real_literal] = ACTIONS(4990), + [sym_integer_literal] = ACTIONS(4988), + [sym_hex_literal] = ACTIONS(4990), + [sym_bin_literal] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4990), + [sym__backtick_identifier] = ACTIONS(4990), + [sym__automatic_semicolon] = ACTIONS(4990), + [sym_safe_nav] = ACTIONS(4990), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4990), + }, + [1099] = { + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_object] = ACTIONS(4888), + [anon_sym_fun] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_this] = ACTIONS(4888), + [anon_sym_super] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [sym_label] = ACTIONS(4888), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4888), + [anon_sym_if] = ACTIONS(4888), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_when] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4888), + [anon_sym_throw] = ACTIONS(4888), + [anon_sym_return] = ACTIONS(4888), + [anon_sym_continue] = ACTIONS(4888), + [anon_sym_break] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_suspend] = ACTIONS(4888), + [anon_sym_sealed] = ACTIONS(4888), + [anon_sym_annotation] = ACTIONS(4888), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_override] = ACTIONS(4888), + [anon_sym_lateinit] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_internal] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_tailrec] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_infix] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym_external] = ACTIONS(4888), + [sym_property_modifier] = ACTIONS(4888), + [anon_sym_abstract] = ACTIONS(4888), + [anon_sym_final] = ACTIONS(4888), + [anon_sym_open] = ACTIONS(4888), + [anon_sym_vararg] = ACTIONS(4888), + [anon_sym_noinline] = ACTIONS(4888), + [anon_sym_crossinline] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4890), + [anon_sym_continue_AT] = ACTIONS(4890), + [anon_sym_break_AT] = ACTIONS(4890), + [anon_sym_this_AT] = ACTIONS(4890), + [anon_sym_super_AT] = ACTIONS(4890), + [sym_real_literal] = ACTIONS(4890), + [sym_integer_literal] = ACTIONS(4888), + [sym_hex_literal] = ACTIONS(4890), + [sym_bin_literal] = ACTIONS(4890), + [anon_sym_true] = ACTIONS(4888), + [anon_sym_false] = ACTIONS(4888), + [anon_sym_SQUOTE] = ACTIONS(4890), + [sym__backtick_identifier] = ACTIONS(4890), + [sym__automatic_semicolon] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4890), + }, + [1100] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_object] = ACTIONS(4992), + [anon_sym_fun] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_this] = ACTIONS(4992), + [anon_sym_super] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [sym_label] = ACTIONS(4992), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_when] = ACTIONS(4992), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_throw] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(4996), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_PERCENT_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_suspend] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_annotation] = ACTIONS(4992), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_lateinit] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_tailrec] = ACTIONS(4992), + [anon_sym_operator] = ACTIONS(4992), + [anon_sym_infix] = ACTIONS(4992), + [anon_sym_inline] = ACTIONS(4992), + [anon_sym_external] = ACTIONS(4992), + [sym_property_modifier] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_final] = ACTIONS(4992), + [anon_sym_open] = ACTIONS(4992), + [anon_sym_vararg] = ACTIONS(4992), + [anon_sym_noinline] = ACTIONS(4992), + [anon_sym_crossinline] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4994), + [anon_sym_continue_AT] = ACTIONS(4994), + [anon_sym_break_AT] = ACTIONS(4994), + [anon_sym_this_AT] = ACTIONS(4994), + [anon_sym_super_AT] = ACTIONS(4994), + [sym_real_literal] = ACTIONS(4994), + [sym_integer_literal] = ACTIONS(4992), + [sym_hex_literal] = ACTIONS(4994), + [sym_bin_literal] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4994), + [sym__backtick_identifier] = ACTIONS(4994), + [sym__automatic_semicolon] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4994), + }, + [1101] = { [sym__alpha_identifier] = ACTIONS(4999), [anon_sym_AT] = ACTIONS(5001), [anon_sym_LBRACK] = ACTIONS(5001), @@ -171725,7 +172312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5001), }, - [1099] = { + [1102] = { [sym__alpha_identifier] = ACTIONS(5003), [anon_sym_AT] = ACTIONS(5005), [anon_sym_LBRACK] = ACTIONS(5005), @@ -171831,643 +172418,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5005), }, - [1100] = { - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(1822), - [anon_sym_set] = ACTIONS(1822), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), - [anon_sym_suspend] = ACTIONS(1822), - [anon_sym_sealed] = ACTIONS(1822), - [anon_sym_annotation] = ACTIONS(1822), - [anon_sym_data] = ACTIONS(1822), - [anon_sym_inner] = ACTIONS(1822), - [anon_sym_value] = ACTIONS(1822), - [anon_sym_override] = ACTIONS(1822), - [anon_sym_lateinit] = ACTIONS(1822), - [anon_sym_public] = ACTIONS(1822), - [anon_sym_private] = ACTIONS(1822), - [anon_sym_internal] = ACTIONS(1822), - [anon_sym_protected] = ACTIONS(1822), - [anon_sym_tailrec] = ACTIONS(1822), - [anon_sym_operator] = ACTIONS(1822), - [anon_sym_infix] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_external] = ACTIONS(1822), - [sym_property_modifier] = ACTIONS(1822), - [anon_sym_abstract] = ACTIONS(1822), - [anon_sym_final] = ACTIONS(1822), - [anon_sym_open] = ACTIONS(1822), - [anon_sym_vararg] = ACTIONS(1822), - [anon_sym_noinline] = ACTIONS(1822), - [anon_sym_crossinline] = ACTIONS(1822), - [anon_sym_expect] = ACTIONS(1822), - [anon_sym_actual] = ACTIONS(1822), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), - }, - [1101] = { - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [1102] = { - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(4301), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(4299), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), - }, [1103] = { - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4264), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), + [sym_function_body] = STATE(1017), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), }, [1104] = { - [sym__alpha_identifier] = ACTIONS(4716), - [anon_sym_AT] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4716), - [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_SEMI] = ACTIONS(4718), - [anon_sym_get] = ACTIONS(4716), - [anon_sym_set] = ACTIONS(4716), - [anon_sym_this] = ACTIONS(4716), - [anon_sym_super] = ACTIONS(4716), - [anon_sym_STAR] = ACTIONS(4716), - [sym_label] = ACTIONS(4716), - [anon_sym_in] = ACTIONS(4716), - [anon_sym_DOT_DOT] = ACTIONS(4718), - [anon_sym_QMARK_COLON] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_null] = ACTIONS(4716), - [anon_sym_if] = ACTIONS(4716), - [anon_sym_else] = ACTIONS(4716), - [anon_sym_when] = ACTIONS(4716), - [anon_sym_try] = ACTIONS(4716), - [anon_sym_throw] = ACTIONS(4716), - [anon_sym_return] = ACTIONS(4716), - [anon_sym_continue] = ACTIONS(4716), - [anon_sym_break] = ACTIONS(4716), - [anon_sym_COLON_COLON] = ACTIONS(4718), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_STAR_EQ] = ACTIONS(4718), - [anon_sym_SLASH_EQ] = ACTIONS(4718), - [anon_sym_PERCENT_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_BANGin] = ACTIONS(4718), - [anon_sym_is] = ACTIONS(4716), - [anon_sym_BANGis] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_SLASH] = ACTIONS(4716), - [anon_sym_PERCENT] = ACTIONS(4716), - [anon_sym_as_QMARK] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [anon_sym_BANG] = ACTIONS(4716), - [anon_sym_BANG_BANG] = ACTIONS(4718), - [anon_sym_suspend] = ACTIONS(4716), - [anon_sym_sealed] = ACTIONS(4716), - [anon_sym_annotation] = ACTIONS(4716), - [anon_sym_data] = ACTIONS(4716), - [anon_sym_inner] = ACTIONS(4716), - [anon_sym_value] = ACTIONS(4716), - [anon_sym_override] = ACTIONS(4716), - [anon_sym_lateinit] = ACTIONS(4716), - [anon_sym_public] = ACTIONS(4716), - [anon_sym_private] = ACTIONS(4716), - [anon_sym_internal] = ACTIONS(4716), - [anon_sym_protected] = ACTIONS(4716), - [anon_sym_tailrec] = ACTIONS(4716), - [anon_sym_operator] = ACTIONS(4716), - [anon_sym_infix] = ACTIONS(4716), - [anon_sym_inline] = ACTIONS(4716), - [anon_sym_external] = ACTIONS(4716), - [sym_property_modifier] = ACTIONS(4716), - [anon_sym_abstract] = ACTIONS(4716), - [anon_sym_final] = ACTIONS(4716), - [anon_sym_open] = ACTIONS(4716), - [anon_sym_vararg] = ACTIONS(4716), - [anon_sym_noinline] = ACTIONS(4716), - [anon_sym_crossinline] = ACTIONS(4716), - [anon_sym_expect] = ACTIONS(4716), - [anon_sym_actual] = ACTIONS(4716), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4718), - [anon_sym_continue_AT] = ACTIONS(4718), - [anon_sym_break_AT] = ACTIONS(4718), - [anon_sym_this_AT] = ACTIONS(4718), - [anon_sym_super_AT] = ACTIONS(4718), - [sym_real_literal] = ACTIONS(4718), - [sym_integer_literal] = ACTIONS(4716), - [sym_hex_literal] = ACTIONS(4718), - [sym_bin_literal] = ACTIONS(4718), - [anon_sym_true] = ACTIONS(4716), - [anon_sym_false] = ACTIONS(4716), - [anon_sym_SQUOTE] = ACTIONS(4718), - [sym__backtick_identifier] = ACTIONS(4718), - [sym__automatic_semicolon] = ACTIONS(4718), - [sym_safe_nav] = ACTIONS(4718), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4718), - }, - [1105] = { - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3420), - [anon_sym_set] = ACTIONS(3420), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), - [anon_sym_suspend] = ACTIONS(3420), - [anon_sym_sealed] = ACTIONS(3420), - [anon_sym_annotation] = ACTIONS(3420), - [anon_sym_data] = ACTIONS(3420), - [anon_sym_inner] = ACTIONS(3420), - [anon_sym_value] = ACTIONS(3420), - [anon_sym_override] = ACTIONS(3420), - [anon_sym_lateinit] = ACTIONS(3420), - [anon_sym_public] = ACTIONS(3420), - [anon_sym_private] = ACTIONS(3420), - [anon_sym_internal] = ACTIONS(3420), - [anon_sym_protected] = ACTIONS(3420), - [anon_sym_tailrec] = ACTIONS(3420), - [anon_sym_operator] = ACTIONS(3420), - [anon_sym_infix] = ACTIONS(3420), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym_external] = ACTIONS(3420), - [sym_property_modifier] = ACTIONS(3420), - [anon_sym_abstract] = ACTIONS(3420), - [anon_sym_final] = ACTIONS(3420), - [anon_sym_open] = ACTIONS(3420), - [anon_sym_vararg] = ACTIONS(3420), - [anon_sym_noinline] = ACTIONS(3420), - [anon_sym_crossinline] = ACTIONS(3420), - [anon_sym_expect] = ACTIONS(3420), - [anon_sym_actual] = ACTIONS(3420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), - }, - [1106] = { [sym__alpha_identifier] = ACTIONS(5007), [anon_sym_AT] = ACTIONS(5009), [anon_sym_LBRACK] = ACTIONS(5009), @@ -172573,113 +172630,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5009), }, - [1107] = { - [sym__alpha_identifier] = ACTIONS(5011), - [anon_sym_AT] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5011), + [1105] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_where] = ACTIONS(5011), - [anon_sym_object] = ACTIONS(5011), - [anon_sym_fun] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5013), - [anon_sym_get] = ACTIONS(5011), - [anon_sym_set] = ACTIONS(5011), - [anon_sym_this] = ACTIONS(5011), - [anon_sym_super] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [sym_label] = ACTIONS(5011), - [anon_sym_in] = ACTIONS(5011), - [anon_sym_DOT_DOT] = ACTIONS(5013), - [anon_sym_QMARK_COLON] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_PIPE_PIPE] = ACTIONS(5013), - [anon_sym_null] = ACTIONS(5011), - [anon_sym_if] = ACTIONS(5011), - [anon_sym_else] = ACTIONS(5011), - [anon_sym_when] = ACTIONS(5011), - [anon_sym_try] = ACTIONS(5011), - [anon_sym_throw] = ACTIONS(5011), - [anon_sym_return] = ACTIONS(5011), - [anon_sym_continue] = ACTIONS(5011), - [anon_sym_break] = ACTIONS(5011), - [anon_sym_COLON_COLON] = ACTIONS(5013), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_object] = ACTIONS(4992), + [anon_sym_fun] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_this] = ACTIONS(4992), + [anon_sym_super] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [sym_label] = ACTIONS(4992), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_when] = ACTIONS(4992), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_throw] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(4996), [anon_sym_PLUS_EQ] = ACTIONS(5013), [anon_sym_DASH_EQ] = ACTIONS(5013), [anon_sym_STAR_EQ] = ACTIONS(5013), [anon_sym_SLASH_EQ] = ACTIONS(5013), [anon_sym_PERCENT_EQ] = ACTIONS(5013), - [anon_sym_BANG_EQ] = ACTIONS(5011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5013), - [anon_sym_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5013), - [anon_sym_LT_EQ] = ACTIONS(5013), - [anon_sym_GT_EQ] = ACTIONS(5013), - [anon_sym_BANGin] = ACTIONS(5013), - [anon_sym_is] = ACTIONS(5011), - [anon_sym_BANGis] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_as_QMARK] = ACTIONS(5013), - [anon_sym_PLUS_PLUS] = ACTIONS(5013), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_BANG_BANG] = ACTIONS(5013), - [anon_sym_suspend] = ACTIONS(5011), - [anon_sym_sealed] = ACTIONS(5011), - [anon_sym_annotation] = ACTIONS(5011), - [anon_sym_data] = ACTIONS(5011), - [anon_sym_inner] = ACTIONS(5011), - [anon_sym_value] = ACTIONS(5011), - [anon_sym_override] = ACTIONS(5011), - [anon_sym_lateinit] = ACTIONS(5011), - [anon_sym_public] = ACTIONS(5011), - [anon_sym_private] = ACTIONS(5011), - [anon_sym_internal] = ACTIONS(5011), - [anon_sym_protected] = ACTIONS(5011), - [anon_sym_tailrec] = ACTIONS(5011), - [anon_sym_operator] = ACTIONS(5011), - [anon_sym_infix] = ACTIONS(5011), - [anon_sym_inline] = ACTIONS(5011), - [anon_sym_external] = ACTIONS(5011), - [sym_property_modifier] = ACTIONS(5011), - [anon_sym_abstract] = ACTIONS(5011), - [anon_sym_final] = ACTIONS(5011), - [anon_sym_open] = ACTIONS(5011), - [anon_sym_vararg] = ACTIONS(5011), - [anon_sym_noinline] = ACTIONS(5011), - [anon_sym_crossinline] = ACTIONS(5011), - [anon_sym_expect] = ACTIONS(5011), - [anon_sym_actual] = ACTIONS(5011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5013), - [anon_sym_continue_AT] = ACTIONS(5013), - [anon_sym_break_AT] = ACTIONS(5013), - [anon_sym_this_AT] = ACTIONS(5013), - [anon_sym_super_AT] = ACTIONS(5013), - [sym_real_literal] = ACTIONS(5013), - [sym_integer_literal] = ACTIONS(5011), - [sym_hex_literal] = ACTIONS(5013), - [sym_bin_literal] = ACTIONS(5013), - [anon_sym_true] = ACTIONS(5011), - [anon_sym_false] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5013), - [sym__backtick_identifier] = ACTIONS(5013), - [sym__automatic_semicolon] = ACTIONS(5013), - [sym_safe_nav] = ACTIONS(5013), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5013), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_suspend] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_annotation] = ACTIONS(4992), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_lateinit] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_tailrec] = ACTIONS(4992), + [anon_sym_operator] = ACTIONS(4992), + [anon_sym_infix] = ACTIONS(4992), + [anon_sym_inline] = ACTIONS(4992), + [anon_sym_external] = ACTIONS(4992), + [sym_property_modifier] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_final] = ACTIONS(4992), + [anon_sym_open] = ACTIONS(4992), + [anon_sym_vararg] = ACTIONS(4992), + [anon_sym_noinline] = ACTIONS(4992), + [anon_sym_crossinline] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4994), + [anon_sym_continue_AT] = ACTIONS(4994), + [anon_sym_break_AT] = ACTIONS(4994), + [anon_sym_this_AT] = ACTIONS(4994), + [anon_sym_super_AT] = ACTIONS(4994), + [sym_real_literal] = ACTIONS(4994), + [sym_integer_literal] = ACTIONS(4992), + [sym_hex_literal] = ACTIONS(4994), + [sym_bin_literal] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4994), + [sym__backtick_identifier] = ACTIONS(4994), + [sym__automatic_semicolon] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4994), }, - [1108] = { + [1106] = { + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_object] = ACTIONS(3950), + [anon_sym_fun] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_this] = ACTIONS(3950), + [anon_sym_super] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [sym_label] = ACTIONS(3950), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_null] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_when] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_PLUS_EQ] = ACTIONS(3952), + [anon_sym_DASH_EQ] = ACTIONS(3952), + [anon_sym_STAR_EQ] = ACTIONS(3952), + [anon_sym_SLASH_EQ] = ACTIONS(3952), + [anon_sym_PERCENT_EQ] = ACTIONS(3952), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3950), + [anon_sym_BANG_BANG] = ACTIONS(3952), + [anon_sym_suspend] = ACTIONS(3950), + [anon_sym_sealed] = ACTIONS(3950), + [anon_sym_annotation] = ACTIONS(3950), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [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(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3952), + [anon_sym_continue_AT] = ACTIONS(3952), + [anon_sym_break_AT] = ACTIONS(3952), + [anon_sym_this_AT] = ACTIONS(3952), + [anon_sym_super_AT] = ACTIONS(3952), + [sym_real_literal] = ACTIONS(3952), + [sym_integer_literal] = ACTIONS(3950), + [sym_hex_literal] = ACTIONS(3952), + [sym_bin_literal] = ACTIONS(3952), + [anon_sym_true] = ACTIONS(3950), + [anon_sym_false] = ACTIONS(3950), + [anon_sym_SQUOTE] = ACTIONS(3952), + [sym__backtick_identifier] = ACTIONS(3952), + [sym__automatic_semicolon] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3952), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3952), + }, + [1107] = { [sym__alpha_identifier] = ACTIONS(5015), [anon_sym_AT] = ACTIONS(5017), [anon_sym_LBRACK] = ACTIONS(5017), @@ -172785,7 +172948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5017), }, - [1109] = { + [1108] = { [sym__alpha_identifier] = ACTIONS(5019), [anon_sym_AT] = ACTIONS(5021), [anon_sym_LBRACK] = ACTIONS(5021), @@ -172891,7 +173054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5021), }, - [1110] = { + [1109] = { [sym__alpha_identifier] = ACTIONS(5023), [anon_sym_AT] = ACTIONS(5025), [anon_sym_LBRACK] = ACTIONS(5025), @@ -172997,1789 +173160,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5025), }, + [1110] = { + [sym__alpha_identifier] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1580), + [anon_sym_fun] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1580), + [anon_sym_set] = ACTIONS(1580), + [anon_sym_this] = ACTIONS(1580), + [anon_sym_super] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [sym_label] = ACTIONS(1580), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1580), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(1580), + [anon_sym_try] = ACTIONS(1580), + [anon_sym_throw] = ACTIONS(1580), + [anon_sym_return] = ACTIONS(1580), + [anon_sym_continue] = ACTIONS(1580), + [anon_sym_break] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1578), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1580), + [anon_sym_inner] = ACTIONS(1580), + [anon_sym_value] = ACTIONS(1580), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1580), + [anon_sym_actual] = ACTIONS(1580), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1578), + [anon_sym_continue_AT] = ACTIONS(1578), + [anon_sym_break_AT] = ACTIONS(1578), + [anon_sym_this_AT] = ACTIONS(1578), + [anon_sym_super_AT] = ACTIONS(1578), + [sym_real_literal] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1580), + [sym_hex_literal] = ACTIONS(1578), + [sym_bin_literal] = ACTIONS(1578), + [anon_sym_true] = ACTIONS(1580), + [anon_sym_false] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1578), + [sym__backtick_identifier] = ACTIONS(1578), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1578), + }, [1111] = { - [sym__alpha_identifier] = ACTIONS(5027), - [anon_sym_AT] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5027), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(5029), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, [1112] = { - [sym__alpha_identifier] = ACTIONS(5031), - [anon_sym_AT] = ACTIONS(5033), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5031), - [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_SEMI] = ACTIONS(5033), - [anon_sym_get] = ACTIONS(5031), - [anon_sym_set] = ACTIONS(5031), - [anon_sym_this] = ACTIONS(5031), - [anon_sym_super] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [sym_label] = ACTIONS(5031), - [anon_sym_in] = ACTIONS(5031), - [anon_sym_DOT_DOT] = ACTIONS(5033), - [anon_sym_QMARK_COLON] = ACTIONS(5033), - [anon_sym_AMP_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5033), - [anon_sym_null] = ACTIONS(5031), - [anon_sym_if] = ACTIONS(5031), - [anon_sym_else] = ACTIONS(5031), - [anon_sym_when] = ACTIONS(5031), - [anon_sym_try] = ACTIONS(5031), - [anon_sym_throw] = ACTIONS(5031), - [anon_sym_return] = ACTIONS(5031), - [anon_sym_continue] = ACTIONS(5031), - [anon_sym_break] = ACTIONS(5031), - [anon_sym_COLON_COLON] = ACTIONS(5033), - [anon_sym_PLUS_EQ] = ACTIONS(5033), - [anon_sym_DASH_EQ] = ACTIONS(5033), - [anon_sym_STAR_EQ] = ACTIONS(5033), - [anon_sym_SLASH_EQ] = ACTIONS(5033), - [anon_sym_PERCENT_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ] = ACTIONS(5031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5033), - [anon_sym_BANGin] = ACTIONS(5033), - [anon_sym_is] = ACTIONS(5031), - [anon_sym_BANGis] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_as_QMARK] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_BANG_BANG] = ACTIONS(5033), - [anon_sym_suspend] = ACTIONS(5031), - [anon_sym_sealed] = ACTIONS(5031), - [anon_sym_annotation] = ACTIONS(5031), - [anon_sym_data] = ACTIONS(5031), - [anon_sym_inner] = ACTIONS(5031), - [anon_sym_value] = ACTIONS(5031), - [anon_sym_override] = ACTIONS(5031), - [anon_sym_lateinit] = ACTIONS(5031), - [anon_sym_public] = ACTIONS(5031), - [anon_sym_private] = ACTIONS(5031), - [anon_sym_internal] = ACTIONS(5031), - [anon_sym_protected] = ACTIONS(5031), - [anon_sym_tailrec] = ACTIONS(5031), - [anon_sym_operator] = ACTIONS(5031), - [anon_sym_infix] = ACTIONS(5031), - [anon_sym_inline] = ACTIONS(5031), - [anon_sym_external] = ACTIONS(5031), - [sym_property_modifier] = ACTIONS(5031), - [anon_sym_abstract] = ACTIONS(5031), - [anon_sym_final] = ACTIONS(5031), - [anon_sym_open] = ACTIONS(5031), - [anon_sym_vararg] = ACTIONS(5031), - [anon_sym_noinline] = ACTIONS(5031), - [anon_sym_crossinline] = ACTIONS(5031), - [anon_sym_expect] = ACTIONS(5031), - [anon_sym_actual] = ACTIONS(5031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5033), - [anon_sym_continue_AT] = ACTIONS(5033), - [anon_sym_break_AT] = ACTIONS(5033), - [anon_sym_this_AT] = ACTIONS(5033), - [anon_sym_super_AT] = ACTIONS(5033), - [sym_real_literal] = ACTIONS(5033), - [sym_integer_literal] = ACTIONS(5031), - [sym_hex_literal] = ACTIONS(5033), - [sym_bin_literal] = ACTIONS(5033), - [anon_sym_true] = ACTIONS(5031), - [anon_sym_false] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5033), - [sym__backtick_identifier] = ACTIONS(5033), - [sym__automatic_semicolon] = ACTIONS(5033), - [sym_safe_nav] = ACTIONS(5033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5033), + [sym__alpha_identifier] = ACTIONS(5007), + [anon_sym_AT] = ACTIONS(5009), + [anon_sym_LBRACK] = ACTIONS(5009), + [anon_sym_DOT] = ACTIONS(5007), + [anon_sym_as] = ACTIONS(5007), + [anon_sym_EQ] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5009), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_COMMA] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5027), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_where] = ACTIONS(5007), + [anon_sym_object] = ACTIONS(5007), + [anon_sym_fun] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_get] = ACTIONS(5007), + [anon_sym_set] = ACTIONS(5007), + [anon_sym_this] = ACTIONS(5007), + [anon_sym_super] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [sym_label] = ACTIONS(5007), + [anon_sym_in] = ACTIONS(5007), + [anon_sym_DOT_DOT] = ACTIONS(5009), + [anon_sym_QMARK_COLON] = ACTIONS(5009), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5007), + [anon_sym_if] = ACTIONS(5007), + [anon_sym_else] = ACTIONS(5007), + [anon_sym_when] = ACTIONS(5007), + [anon_sym_try] = ACTIONS(5007), + [anon_sym_throw] = ACTIONS(5007), + [anon_sym_return] = ACTIONS(5007), + [anon_sym_continue] = ACTIONS(5007), + [anon_sym_break] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5009), + [anon_sym_PLUS_EQ] = ACTIONS(5009), + [anon_sym_DASH_EQ] = ACTIONS(5009), + [anon_sym_STAR_EQ] = ACTIONS(5009), + [anon_sym_SLASH_EQ] = ACTIONS(5009), + [anon_sym_PERCENT_EQ] = ACTIONS(5009), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5009), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5009), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5009), + [anon_sym_BANGin] = ACTIONS(5009), + [anon_sym_is] = ACTIONS(5007), + [anon_sym_BANGis] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_as_QMARK] = ACTIONS(5009), + [anon_sym_PLUS_PLUS] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5009), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_BANG_BANG] = ACTIONS(5009), + [anon_sym_suspend] = ACTIONS(5007), + [anon_sym_sealed] = ACTIONS(5007), + [anon_sym_annotation] = ACTIONS(5007), + [anon_sym_data] = ACTIONS(5007), + [anon_sym_inner] = ACTIONS(5007), + [anon_sym_value] = ACTIONS(5007), + [anon_sym_override] = ACTIONS(5007), + [anon_sym_lateinit] = ACTIONS(5007), + [anon_sym_public] = ACTIONS(5007), + [anon_sym_private] = ACTIONS(5007), + [anon_sym_internal] = ACTIONS(5007), + [anon_sym_protected] = ACTIONS(5007), + [anon_sym_tailrec] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5007), + [anon_sym_infix] = ACTIONS(5007), + [anon_sym_inline] = ACTIONS(5007), + [anon_sym_external] = ACTIONS(5007), + [sym_property_modifier] = ACTIONS(5007), + [anon_sym_abstract] = ACTIONS(5007), + [anon_sym_final] = ACTIONS(5007), + [anon_sym_open] = ACTIONS(5007), + [anon_sym_vararg] = ACTIONS(5007), + [anon_sym_noinline] = ACTIONS(5007), + [anon_sym_crossinline] = ACTIONS(5007), + [anon_sym_expect] = ACTIONS(5007), + [anon_sym_actual] = ACTIONS(5007), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5009), + [anon_sym_continue_AT] = ACTIONS(5009), + [anon_sym_break_AT] = ACTIONS(5009), + [anon_sym_this_AT] = ACTIONS(5009), + [anon_sym_super_AT] = ACTIONS(5009), + [sym_real_literal] = ACTIONS(5009), + [sym_integer_literal] = ACTIONS(5007), + [sym_hex_literal] = ACTIONS(5009), + [sym_bin_literal] = ACTIONS(5009), + [anon_sym_true] = ACTIONS(5007), + [anon_sym_false] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5009), + [sym__backtick_identifier] = ACTIONS(5009), + [sym__automatic_semicolon] = ACTIONS(5009), + [sym_safe_nav] = ACTIONS(5009), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5009), }, [1113] = { - [sym__alpha_identifier] = ACTIONS(5035), - [anon_sym_AT] = ACTIONS(5037), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5037), - [anon_sym_RBRACE] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5037), - [anon_sym_COMMA] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5035), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_where] = ACTIONS(5035), - [anon_sym_object] = ACTIONS(5035), - [anon_sym_fun] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5037), - [anon_sym_get] = ACTIONS(5035), - [anon_sym_set] = ACTIONS(5035), - [anon_sym_this] = ACTIONS(5035), - [anon_sym_super] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [sym_label] = ACTIONS(5035), - [anon_sym_in] = ACTIONS(5035), - [anon_sym_DOT_DOT] = ACTIONS(5037), - [anon_sym_QMARK_COLON] = ACTIONS(5037), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE_PIPE] = ACTIONS(5037), - [anon_sym_null] = ACTIONS(5035), - [anon_sym_if] = ACTIONS(5035), - [anon_sym_else] = ACTIONS(5035), - [anon_sym_when] = ACTIONS(5035), - [anon_sym_try] = ACTIONS(5035), - [anon_sym_throw] = ACTIONS(5035), - [anon_sym_return] = ACTIONS(5035), - [anon_sym_continue] = ACTIONS(5035), - [anon_sym_break] = ACTIONS(5035), - [anon_sym_COLON_COLON] = ACTIONS(5037), - [anon_sym_PLUS_EQ] = ACTIONS(5037), - [anon_sym_DASH_EQ] = ACTIONS(5037), - [anon_sym_STAR_EQ] = ACTIONS(5037), - [anon_sym_SLASH_EQ] = ACTIONS(5037), - [anon_sym_PERCENT_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), - [anon_sym_LT_EQ] = ACTIONS(5037), - [anon_sym_GT_EQ] = ACTIONS(5037), - [anon_sym_BANGin] = ACTIONS(5037), - [anon_sym_is] = ACTIONS(5035), - [anon_sym_BANGis] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_as_QMARK] = ACTIONS(5037), - [anon_sym_PLUS_PLUS] = ACTIONS(5037), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_BANG_BANG] = ACTIONS(5037), - [anon_sym_suspend] = ACTIONS(5035), - [anon_sym_sealed] = ACTIONS(5035), - [anon_sym_annotation] = ACTIONS(5035), - [anon_sym_data] = ACTIONS(5035), - [anon_sym_inner] = ACTIONS(5035), - [anon_sym_value] = ACTIONS(5035), - [anon_sym_override] = ACTIONS(5035), - [anon_sym_lateinit] = ACTIONS(5035), - [anon_sym_public] = ACTIONS(5035), - [anon_sym_private] = ACTIONS(5035), - [anon_sym_internal] = ACTIONS(5035), - [anon_sym_protected] = ACTIONS(5035), - [anon_sym_tailrec] = ACTIONS(5035), - [anon_sym_operator] = ACTIONS(5035), - [anon_sym_infix] = ACTIONS(5035), - [anon_sym_inline] = ACTIONS(5035), - [anon_sym_external] = ACTIONS(5035), - [sym_property_modifier] = ACTIONS(5035), - [anon_sym_abstract] = ACTIONS(5035), - [anon_sym_final] = ACTIONS(5035), - [anon_sym_open] = ACTIONS(5035), - [anon_sym_vararg] = ACTIONS(5035), - [anon_sym_noinline] = ACTIONS(5035), - [anon_sym_crossinline] = ACTIONS(5035), - [anon_sym_expect] = ACTIONS(5035), - [anon_sym_actual] = ACTIONS(5035), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5037), - [anon_sym_continue_AT] = ACTIONS(5037), - [anon_sym_break_AT] = ACTIONS(5037), - [anon_sym_this_AT] = ACTIONS(5037), - [anon_sym_super_AT] = ACTIONS(5037), - [sym_real_literal] = ACTIONS(5037), - [sym_integer_literal] = ACTIONS(5035), - [sym_hex_literal] = ACTIONS(5037), - [sym_bin_literal] = ACTIONS(5037), - [anon_sym_true] = ACTIONS(5035), - [anon_sym_false] = ACTIONS(5035), - [anon_sym_SQUOTE] = ACTIONS(5037), - [sym__backtick_identifier] = ACTIONS(5037), - [sym__automatic_semicolon] = ACTIONS(5037), - [sym_safe_nav] = ACTIONS(5037), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5037), + [sym__alpha_identifier] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_where] = ACTIONS(5029), + [anon_sym_object] = ACTIONS(5029), + [anon_sym_fun] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_get] = ACTIONS(5029), + [anon_sym_set] = ACTIONS(5029), + [anon_sym_this] = ACTIONS(5029), + [anon_sym_super] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [sym_label] = ACTIONS(5029), + [anon_sym_in] = ACTIONS(5029), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_QMARK_COLON] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_null] = ACTIONS(5029), + [anon_sym_if] = ACTIONS(5029), + [anon_sym_else] = ACTIONS(5029), + [anon_sym_when] = ACTIONS(5029), + [anon_sym_try] = ACTIONS(5029), + [anon_sym_throw] = ACTIONS(5029), + [anon_sym_return] = ACTIONS(5029), + [anon_sym_continue] = ACTIONS(5029), + [anon_sym_break] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym_PLUS_EQ] = ACTIONS(5031), + [anon_sym_DASH_EQ] = ACTIONS(5031), + [anon_sym_STAR_EQ] = ACTIONS(5031), + [anon_sym_SLASH_EQ] = ACTIONS(5031), + [anon_sym_PERCENT_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_BANGin] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5029), + [anon_sym_BANGis] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_as_QMARK] = ACTIONS(5031), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_BANG_BANG] = ACTIONS(5031), + [anon_sym_suspend] = ACTIONS(5029), + [anon_sym_sealed] = ACTIONS(5029), + [anon_sym_annotation] = ACTIONS(5029), + [anon_sym_data] = ACTIONS(5029), + [anon_sym_inner] = ACTIONS(5029), + [anon_sym_value] = ACTIONS(5029), + [anon_sym_override] = ACTIONS(5029), + [anon_sym_lateinit] = ACTIONS(5029), + [anon_sym_public] = ACTIONS(5029), + [anon_sym_private] = ACTIONS(5029), + [anon_sym_internal] = ACTIONS(5029), + [anon_sym_protected] = ACTIONS(5029), + [anon_sym_tailrec] = ACTIONS(5029), + [anon_sym_operator] = ACTIONS(5029), + [anon_sym_infix] = ACTIONS(5029), + [anon_sym_inline] = ACTIONS(5029), + [anon_sym_external] = ACTIONS(5029), + [sym_property_modifier] = ACTIONS(5029), + [anon_sym_abstract] = ACTIONS(5029), + [anon_sym_final] = ACTIONS(5029), + [anon_sym_open] = ACTIONS(5029), + [anon_sym_vararg] = ACTIONS(5029), + [anon_sym_noinline] = ACTIONS(5029), + [anon_sym_crossinline] = ACTIONS(5029), + [anon_sym_expect] = ACTIONS(5029), + [anon_sym_actual] = ACTIONS(5029), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5031), + [anon_sym_continue_AT] = ACTIONS(5031), + [anon_sym_break_AT] = ACTIONS(5031), + [anon_sym_this_AT] = ACTIONS(5031), + [anon_sym_super_AT] = ACTIONS(5031), + [sym_real_literal] = ACTIONS(5031), + [sym_integer_literal] = ACTIONS(5029), + [sym_hex_literal] = ACTIONS(5031), + [sym_bin_literal] = ACTIONS(5031), + [anon_sym_true] = ACTIONS(5029), + [anon_sym_false] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5031), + [sym__backtick_identifier] = ACTIONS(5031), + [sym__automatic_semicolon] = ACTIONS(5031), + [sym_safe_nav] = ACTIONS(5031), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5031), }, [1114] = { - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(4415), - [anon_sym_object] = ACTIONS(4415), - [anon_sym_fun] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_this] = ACTIONS(4415), - [anon_sym_super] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [sym_label] = ACTIONS(4415), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_null] = ACTIONS(4415), - [anon_sym_if] = ACTIONS(4415), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_when] = ACTIONS(4415), - [anon_sym_try] = ACTIONS(4415), - [anon_sym_throw] = ACTIONS(4415), - [anon_sym_return] = ACTIONS(4415), - [anon_sym_continue] = ACTIONS(4415), - [anon_sym_break] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(4415), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_suspend] = ACTIONS(4415), - [anon_sym_sealed] = ACTIONS(4415), - [anon_sym_annotation] = ACTIONS(4415), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_override] = ACTIONS(4415), - [anon_sym_lateinit] = ACTIONS(4415), - [anon_sym_public] = ACTIONS(4415), - [anon_sym_private] = ACTIONS(4415), - [anon_sym_internal] = ACTIONS(4415), - [anon_sym_protected] = ACTIONS(4415), - [anon_sym_tailrec] = ACTIONS(4415), - [anon_sym_operator] = ACTIONS(4415), - [anon_sym_infix] = ACTIONS(4415), - [anon_sym_inline] = ACTIONS(4415), - [anon_sym_external] = ACTIONS(4415), - [sym_property_modifier] = ACTIONS(4415), - [anon_sym_abstract] = ACTIONS(4415), - [anon_sym_final] = ACTIONS(4415), - [anon_sym_open] = ACTIONS(4415), - [anon_sym_vararg] = ACTIONS(4415), - [anon_sym_noinline] = ACTIONS(4415), - [anon_sym_crossinline] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4417), - [anon_sym_continue_AT] = ACTIONS(4417), - [anon_sym_break_AT] = ACTIONS(4417), - [anon_sym_this_AT] = ACTIONS(4417), - [anon_sym_super_AT] = ACTIONS(4417), - [sym_real_literal] = ACTIONS(4417), - [sym_integer_literal] = ACTIONS(4415), - [sym_hex_literal] = ACTIONS(4417), - [sym_bin_literal] = ACTIONS(4417), - [anon_sym_true] = ACTIONS(4415), - [anon_sym_false] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4417), - [sym__backtick_identifier] = ACTIONS(4417), - [sym__automatic_semicolon] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4417), + [sym_function_body] = STATE(1015), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, [1115] = { - [sym__alpha_identifier] = ACTIONS(5039), - [anon_sym_AT] = ACTIONS(5041), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5041), - [anon_sym_RBRACE] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5041), - [anon_sym_COMMA] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5039), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_where] = ACTIONS(5039), - [anon_sym_object] = ACTIONS(5039), - [anon_sym_fun] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5041), - [anon_sym_get] = ACTIONS(5039), - [anon_sym_set] = ACTIONS(5039), - [anon_sym_this] = ACTIONS(5039), - [anon_sym_super] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [sym_label] = ACTIONS(5039), - [anon_sym_in] = ACTIONS(5039), - [anon_sym_DOT_DOT] = ACTIONS(5041), - [anon_sym_QMARK_COLON] = ACTIONS(5041), - [anon_sym_AMP_AMP] = ACTIONS(5041), - [anon_sym_PIPE_PIPE] = ACTIONS(5041), - [anon_sym_null] = ACTIONS(5039), - [anon_sym_if] = ACTIONS(5039), - [anon_sym_else] = ACTIONS(5039), - [anon_sym_when] = ACTIONS(5039), - [anon_sym_try] = ACTIONS(5039), - [anon_sym_throw] = ACTIONS(5039), - [anon_sym_return] = ACTIONS(5039), - [anon_sym_continue] = ACTIONS(5039), - [anon_sym_break] = ACTIONS(5039), - [anon_sym_COLON_COLON] = ACTIONS(5041), - [anon_sym_PLUS_EQ] = ACTIONS(5041), - [anon_sym_DASH_EQ] = ACTIONS(5041), - [anon_sym_STAR_EQ] = ACTIONS(5041), - [anon_sym_SLASH_EQ] = ACTIONS(5041), - [anon_sym_PERCENT_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), - [anon_sym_LT_EQ] = ACTIONS(5041), - [anon_sym_GT_EQ] = ACTIONS(5041), - [anon_sym_BANGin] = ACTIONS(5041), - [anon_sym_is] = ACTIONS(5039), - [anon_sym_BANGis] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_as_QMARK] = ACTIONS(5041), - [anon_sym_PLUS_PLUS] = ACTIONS(5041), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_BANG_BANG] = ACTIONS(5041), - [anon_sym_suspend] = ACTIONS(5039), - [anon_sym_sealed] = ACTIONS(5039), - [anon_sym_annotation] = ACTIONS(5039), - [anon_sym_data] = ACTIONS(5039), - [anon_sym_inner] = ACTIONS(5039), - [anon_sym_value] = ACTIONS(5039), - [anon_sym_override] = ACTIONS(5039), - [anon_sym_lateinit] = ACTIONS(5039), - [anon_sym_public] = ACTIONS(5039), - [anon_sym_private] = ACTIONS(5039), - [anon_sym_internal] = ACTIONS(5039), - [anon_sym_protected] = ACTIONS(5039), - [anon_sym_tailrec] = ACTIONS(5039), - [anon_sym_operator] = ACTIONS(5039), - [anon_sym_infix] = ACTIONS(5039), - [anon_sym_inline] = ACTIONS(5039), - [anon_sym_external] = ACTIONS(5039), - [sym_property_modifier] = ACTIONS(5039), - [anon_sym_abstract] = ACTIONS(5039), - [anon_sym_final] = ACTIONS(5039), - [anon_sym_open] = ACTIONS(5039), - [anon_sym_vararg] = ACTIONS(5039), - [anon_sym_noinline] = ACTIONS(5039), - [anon_sym_crossinline] = ACTIONS(5039), - [anon_sym_expect] = ACTIONS(5039), - [anon_sym_actual] = ACTIONS(5039), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5041), - [anon_sym_continue_AT] = ACTIONS(5041), - [anon_sym_break_AT] = ACTIONS(5041), - [anon_sym_this_AT] = ACTIONS(5041), - [anon_sym_super_AT] = ACTIONS(5041), - [sym_real_literal] = ACTIONS(5041), - [sym_integer_literal] = ACTIONS(5039), - [sym_hex_literal] = ACTIONS(5041), - [sym_bin_literal] = ACTIONS(5041), - [anon_sym_true] = ACTIONS(5039), - [anon_sym_false] = ACTIONS(5039), - [anon_sym_SQUOTE] = ACTIONS(5041), - [sym__backtick_identifier] = ACTIONS(5041), - [sym__automatic_semicolon] = ACTIONS(5041), - [sym_safe_nav] = ACTIONS(5041), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5041), + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_object] = ACTIONS(4331), + [anon_sym_fun] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_this] = ACTIONS(4331), + [anon_sym_super] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4333), + [anon_sym_continue_AT] = ACTIONS(4333), + [anon_sym_break_AT] = ACTIONS(4333), + [anon_sym_this_AT] = ACTIONS(4333), + [anon_sym_super_AT] = ACTIONS(4333), + [sym_real_literal] = ACTIONS(4333), + [sym_integer_literal] = ACTIONS(4331), + [sym_hex_literal] = ACTIONS(4333), + [sym_bin_literal] = ACTIONS(4333), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4333), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4333), }, [1116] = { - [sym__alpha_identifier] = ACTIONS(3986), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_object] = ACTIONS(3986), - [anon_sym_fun] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(3986), - [anon_sym_set] = ACTIONS(3986), - [anon_sym_this] = ACTIONS(3986), - [anon_sym_super] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3986), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3988), - [anon_sym_QMARK_COLON] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_PIPE_PIPE] = ACTIONS(3988), - [anon_sym_null] = ACTIONS(3986), - [anon_sym_if] = ACTIONS(3986), - [anon_sym_else] = ACTIONS(3986), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_try] = ACTIONS(3986), - [anon_sym_throw] = ACTIONS(3986), - [anon_sym_return] = ACTIONS(3986), - [anon_sym_continue] = ACTIONS(3986), - [anon_sym_break] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_PLUS_EQ] = ACTIONS(3988), - [anon_sym_DASH_EQ] = ACTIONS(3988), - [anon_sym_STAR_EQ] = ACTIONS(3988), - [anon_sym_SLASH_EQ] = ACTIONS(3988), - [anon_sym_PERCENT_EQ] = ACTIONS(3988), - [anon_sym_BANG_EQ] = ACTIONS(3986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3988), - [anon_sym_EQ_EQ] = ACTIONS(3986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3988), - [anon_sym_LT_EQ] = ACTIONS(3988), - [anon_sym_GT_EQ] = ACTIONS(3988), - [anon_sym_BANGin] = ACTIONS(3988), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_BANGis] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3986), - [anon_sym_sealed] = ACTIONS(3986), - [anon_sym_annotation] = ACTIONS(3986), - [anon_sym_data] = ACTIONS(3986), - [anon_sym_inner] = ACTIONS(3986), - [anon_sym_value] = ACTIONS(3986), - [anon_sym_override] = ACTIONS(3986), - [anon_sym_lateinit] = ACTIONS(3986), - [anon_sym_public] = ACTIONS(3986), - [anon_sym_private] = ACTIONS(3986), - [anon_sym_internal] = ACTIONS(3986), - [anon_sym_protected] = ACTIONS(3986), - [anon_sym_tailrec] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_infix] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym_external] = ACTIONS(3986), - [sym_property_modifier] = ACTIONS(3986), - [anon_sym_abstract] = ACTIONS(3986), - [anon_sym_final] = ACTIONS(3986), - [anon_sym_open] = ACTIONS(3986), - [anon_sym_vararg] = ACTIONS(3986), - [anon_sym_noinline] = ACTIONS(3986), - [anon_sym_crossinline] = ACTIONS(3986), - [anon_sym_expect] = ACTIONS(3986), - [anon_sym_actual] = ACTIONS(3986), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3988), - [anon_sym_continue_AT] = ACTIONS(3988), - [anon_sym_break_AT] = ACTIONS(3988), - [anon_sym_this_AT] = ACTIONS(3988), - [anon_sym_super_AT] = ACTIONS(3988), - [sym_real_literal] = ACTIONS(3988), - [sym_integer_literal] = ACTIONS(3986), - [sym_hex_literal] = ACTIONS(3988), - [sym_bin_literal] = ACTIONS(3988), - [anon_sym_true] = ACTIONS(3986), - [anon_sym_false] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3988), - [sym__backtick_identifier] = ACTIONS(3988), - [sym__automatic_semicolon] = ACTIONS(3988), - [sym_safe_nav] = ACTIONS(3988), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3988), - }, - [1117] = { - [sym__alpha_identifier] = ACTIONS(5043), - [anon_sym_AT] = ACTIONS(5045), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5045), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5045), - [anon_sym_COMMA] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5043), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_where] = ACTIONS(5043), - [anon_sym_object] = ACTIONS(5043), - [anon_sym_fun] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5045), - [anon_sym_get] = ACTIONS(5043), - [anon_sym_set] = ACTIONS(5043), - [anon_sym_this] = ACTIONS(5043), - [anon_sym_super] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [sym_label] = ACTIONS(5043), - [anon_sym_in] = ACTIONS(5043), - [anon_sym_DOT_DOT] = ACTIONS(5045), - [anon_sym_QMARK_COLON] = ACTIONS(5045), - [anon_sym_AMP_AMP] = ACTIONS(5045), - [anon_sym_PIPE_PIPE] = ACTIONS(5045), - [anon_sym_null] = ACTIONS(5043), - [anon_sym_if] = ACTIONS(5043), - [anon_sym_else] = ACTIONS(5043), - [anon_sym_when] = ACTIONS(5043), - [anon_sym_try] = ACTIONS(5043), - [anon_sym_throw] = ACTIONS(5043), - [anon_sym_return] = ACTIONS(5043), - [anon_sym_continue] = ACTIONS(5043), - [anon_sym_break] = ACTIONS(5043), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_PLUS_EQ] = ACTIONS(5045), - [anon_sym_DASH_EQ] = ACTIONS(5045), - [anon_sym_STAR_EQ] = ACTIONS(5045), - [anon_sym_SLASH_EQ] = ACTIONS(5045), - [anon_sym_PERCENT_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5045), - [anon_sym_GT_EQ] = ACTIONS(5045), - [anon_sym_BANGin] = ACTIONS(5045), - [anon_sym_is] = ACTIONS(5043), - [anon_sym_BANGis] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_as_QMARK] = ACTIONS(5045), - [anon_sym_PLUS_PLUS] = ACTIONS(5045), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_BANG_BANG] = ACTIONS(5045), - [anon_sym_suspend] = ACTIONS(5043), - [anon_sym_sealed] = ACTIONS(5043), - [anon_sym_annotation] = ACTIONS(5043), - [anon_sym_data] = ACTIONS(5043), - [anon_sym_inner] = ACTIONS(5043), - [anon_sym_value] = ACTIONS(5043), - [anon_sym_override] = ACTIONS(5043), - [anon_sym_lateinit] = ACTIONS(5043), - [anon_sym_public] = ACTIONS(5043), - [anon_sym_private] = ACTIONS(5043), - [anon_sym_internal] = ACTIONS(5043), - [anon_sym_protected] = ACTIONS(5043), - [anon_sym_tailrec] = ACTIONS(5043), - [anon_sym_operator] = ACTIONS(5043), - [anon_sym_infix] = ACTIONS(5043), - [anon_sym_inline] = ACTIONS(5043), - [anon_sym_external] = ACTIONS(5043), - [sym_property_modifier] = ACTIONS(5043), - [anon_sym_abstract] = ACTIONS(5043), - [anon_sym_final] = ACTIONS(5043), - [anon_sym_open] = ACTIONS(5043), - [anon_sym_vararg] = ACTIONS(5043), - [anon_sym_noinline] = ACTIONS(5043), - [anon_sym_crossinline] = ACTIONS(5043), - [anon_sym_expect] = ACTIONS(5043), - [anon_sym_actual] = ACTIONS(5043), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5045), - [anon_sym_continue_AT] = ACTIONS(5045), - [anon_sym_break_AT] = ACTIONS(5045), - [anon_sym_this_AT] = ACTIONS(5045), - [anon_sym_super_AT] = ACTIONS(5045), - [sym_real_literal] = ACTIONS(5045), - [sym_integer_literal] = ACTIONS(5043), - [sym_hex_literal] = ACTIONS(5045), - [sym_bin_literal] = ACTIONS(5045), - [anon_sym_true] = ACTIONS(5043), - [anon_sym_false] = ACTIONS(5043), - [anon_sym_SQUOTE] = ACTIONS(5045), - [sym__backtick_identifier] = ACTIONS(5045), - [sym__automatic_semicolon] = ACTIONS(5045), - [sym_safe_nav] = ACTIONS(5045), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5045), - }, - [1118] = { - [sym__alpha_identifier] = ACTIONS(5047), - [anon_sym_AT] = ACTIONS(5049), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_RBRACE] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5047), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_where] = ACTIONS(5047), - [anon_sym_object] = ACTIONS(5047), - [anon_sym_fun] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5049), - [anon_sym_get] = ACTIONS(5047), - [anon_sym_set] = ACTIONS(5047), - [anon_sym_this] = ACTIONS(5047), - [anon_sym_super] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [sym_label] = ACTIONS(5047), - [anon_sym_in] = ACTIONS(5047), - [anon_sym_DOT_DOT] = ACTIONS(5049), - [anon_sym_QMARK_COLON] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_null] = ACTIONS(5047), - [anon_sym_if] = ACTIONS(5047), - [anon_sym_else] = ACTIONS(5047), - [anon_sym_when] = ACTIONS(5047), - [anon_sym_try] = ACTIONS(5047), - [anon_sym_throw] = ACTIONS(5047), - [anon_sym_return] = ACTIONS(5047), - [anon_sym_continue] = ACTIONS(5047), - [anon_sym_break] = ACTIONS(5047), - [anon_sym_COLON_COLON] = ACTIONS(5049), - [anon_sym_PLUS_EQ] = ACTIONS(5049), - [anon_sym_DASH_EQ] = ACTIONS(5049), - [anon_sym_STAR_EQ] = ACTIONS(5049), - [anon_sym_SLASH_EQ] = ACTIONS(5049), - [anon_sym_PERCENT_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), - [anon_sym_LT_EQ] = ACTIONS(5049), - [anon_sym_GT_EQ] = ACTIONS(5049), - [anon_sym_BANGin] = ACTIONS(5049), - [anon_sym_is] = ACTIONS(5047), - [anon_sym_BANGis] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_as_QMARK] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_BANG_BANG] = ACTIONS(5049), - [anon_sym_suspend] = ACTIONS(5047), - [anon_sym_sealed] = ACTIONS(5047), - [anon_sym_annotation] = ACTIONS(5047), - [anon_sym_data] = ACTIONS(5047), - [anon_sym_inner] = ACTIONS(5047), - [anon_sym_value] = ACTIONS(5047), - [anon_sym_override] = ACTIONS(5047), - [anon_sym_lateinit] = ACTIONS(5047), - [anon_sym_public] = ACTIONS(5047), - [anon_sym_private] = ACTIONS(5047), - [anon_sym_internal] = ACTIONS(5047), - [anon_sym_protected] = ACTIONS(5047), - [anon_sym_tailrec] = ACTIONS(5047), - [anon_sym_operator] = ACTIONS(5047), - [anon_sym_infix] = ACTIONS(5047), - [anon_sym_inline] = ACTIONS(5047), - [anon_sym_external] = ACTIONS(5047), - [sym_property_modifier] = ACTIONS(5047), - [anon_sym_abstract] = ACTIONS(5047), - [anon_sym_final] = ACTIONS(5047), - [anon_sym_open] = ACTIONS(5047), - [anon_sym_vararg] = ACTIONS(5047), - [anon_sym_noinline] = ACTIONS(5047), - [anon_sym_crossinline] = ACTIONS(5047), - [anon_sym_expect] = ACTIONS(5047), - [anon_sym_actual] = ACTIONS(5047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5049), - [anon_sym_continue_AT] = ACTIONS(5049), - [anon_sym_break_AT] = ACTIONS(5049), - [anon_sym_this_AT] = ACTIONS(5049), - [anon_sym_super_AT] = ACTIONS(5049), - [sym_real_literal] = ACTIONS(5049), - [sym_integer_literal] = ACTIONS(5047), - [sym_hex_literal] = ACTIONS(5049), - [sym_bin_literal] = ACTIONS(5049), - [anon_sym_true] = ACTIONS(5047), - [anon_sym_false] = ACTIONS(5047), - [anon_sym_SQUOTE] = ACTIONS(5049), - [sym__backtick_identifier] = ACTIONS(5049), - [sym__automatic_semicolon] = ACTIONS(5049), - [sym_safe_nav] = ACTIONS(5049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5049), - }, - [1119] = { - [sym__alpha_identifier] = ACTIONS(5051), - [anon_sym_AT] = ACTIONS(5053), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5051), - [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_SEMI] = ACTIONS(5053), - [anon_sym_get] = ACTIONS(5051), - [anon_sym_set] = ACTIONS(5051), - [anon_sym_this] = ACTIONS(5051), - [anon_sym_super] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [sym_label] = ACTIONS(5051), - [anon_sym_in] = ACTIONS(5051), - [anon_sym_DOT_DOT] = ACTIONS(5053), - [anon_sym_QMARK_COLON] = ACTIONS(5053), - [anon_sym_AMP_AMP] = ACTIONS(5053), - [anon_sym_PIPE_PIPE] = ACTIONS(5053), - [anon_sym_null] = ACTIONS(5051), - [anon_sym_if] = ACTIONS(5051), - [anon_sym_else] = ACTIONS(5051), - [anon_sym_when] = ACTIONS(5051), - [anon_sym_try] = ACTIONS(5051), - [anon_sym_throw] = ACTIONS(5051), - [anon_sym_return] = ACTIONS(5051), - [anon_sym_continue] = ACTIONS(5051), - [anon_sym_break] = ACTIONS(5051), - [anon_sym_COLON_COLON] = ACTIONS(5053), - [anon_sym_PLUS_EQ] = ACTIONS(5053), - [anon_sym_DASH_EQ] = ACTIONS(5053), - [anon_sym_STAR_EQ] = ACTIONS(5053), - [anon_sym_SLASH_EQ] = ACTIONS(5053), - [anon_sym_PERCENT_EQ] = ACTIONS(5053), - [anon_sym_BANG_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), - [anon_sym_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), - [anon_sym_LT_EQ] = ACTIONS(5053), - [anon_sym_GT_EQ] = ACTIONS(5053), - [anon_sym_BANGin] = ACTIONS(5053), - [anon_sym_is] = ACTIONS(5051), - [anon_sym_BANGis] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_as_QMARK] = ACTIONS(5053), - [anon_sym_PLUS_PLUS] = ACTIONS(5053), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_BANG_BANG] = ACTIONS(5053), - [anon_sym_suspend] = ACTIONS(5051), - [anon_sym_sealed] = ACTIONS(5051), - [anon_sym_annotation] = ACTIONS(5051), - [anon_sym_data] = ACTIONS(5051), - [anon_sym_inner] = ACTIONS(5051), - [anon_sym_value] = ACTIONS(5051), - [anon_sym_override] = ACTIONS(5051), - [anon_sym_lateinit] = ACTIONS(5051), - [anon_sym_public] = ACTIONS(5051), - [anon_sym_private] = ACTIONS(5051), - [anon_sym_internal] = ACTIONS(5051), - [anon_sym_protected] = ACTIONS(5051), - [anon_sym_tailrec] = ACTIONS(5051), - [anon_sym_operator] = ACTIONS(5051), - [anon_sym_infix] = ACTIONS(5051), - [anon_sym_inline] = ACTIONS(5051), - [anon_sym_external] = ACTIONS(5051), - [sym_property_modifier] = ACTIONS(5051), - [anon_sym_abstract] = ACTIONS(5051), - [anon_sym_final] = ACTIONS(5051), - [anon_sym_open] = ACTIONS(5051), - [anon_sym_vararg] = ACTIONS(5051), - [anon_sym_noinline] = ACTIONS(5051), - [anon_sym_crossinline] = ACTIONS(5051), - [anon_sym_expect] = ACTIONS(5051), - [anon_sym_actual] = ACTIONS(5051), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5053), - [anon_sym_continue_AT] = ACTIONS(5053), - [anon_sym_break_AT] = ACTIONS(5053), - [anon_sym_this_AT] = ACTIONS(5053), - [anon_sym_super_AT] = ACTIONS(5053), - [sym_real_literal] = ACTIONS(5053), - [sym_integer_literal] = ACTIONS(5051), - [sym_hex_literal] = ACTIONS(5053), - [sym_bin_literal] = ACTIONS(5053), - [anon_sym_true] = ACTIONS(5051), - [anon_sym_false] = ACTIONS(5051), - [anon_sym_SQUOTE] = ACTIONS(5053), - [sym__backtick_identifier] = ACTIONS(5053), - [sym__automatic_semicolon] = ACTIONS(5053), - [sym_safe_nav] = ACTIONS(5053), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5053), - }, - [1120] = { - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACE] = ACTIONS(4208), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), - }, - [1121] = { - [sym__alpha_identifier] = ACTIONS(5055), - [anon_sym_AT] = ACTIONS(5057), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5055), - [anon_sym_as] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5057), - [anon_sym_RBRACE] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5057), - [anon_sym_COMMA] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5055), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_where] = ACTIONS(5055), - [anon_sym_object] = ACTIONS(5055), - [anon_sym_fun] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5057), - [anon_sym_get] = ACTIONS(5055), - [anon_sym_set] = ACTIONS(5055), - [anon_sym_this] = ACTIONS(5055), - [anon_sym_super] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [sym_label] = ACTIONS(5055), - [anon_sym_in] = ACTIONS(5055), - [anon_sym_DOT_DOT] = ACTIONS(5057), - [anon_sym_QMARK_COLON] = ACTIONS(5057), - [anon_sym_AMP_AMP] = ACTIONS(5057), - [anon_sym_PIPE_PIPE] = ACTIONS(5057), - [anon_sym_null] = ACTIONS(5055), - [anon_sym_if] = ACTIONS(5055), - [anon_sym_else] = ACTIONS(5055), - [anon_sym_when] = ACTIONS(5055), - [anon_sym_try] = ACTIONS(5055), - [anon_sym_throw] = ACTIONS(5055), - [anon_sym_return] = ACTIONS(5055), - [anon_sym_continue] = ACTIONS(5055), - [anon_sym_break] = ACTIONS(5055), - [anon_sym_COLON_COLON] = ACTIONS(5057), - [anon_sym_PLUS_EQ] = ACTIONS(5057), - [anon_sym_DASH_EQ] = ACTIONS(5057), - [anon_sym_STAR_EQ] = ACTIONS(5057), - [anon_sym_SLASH_EQ] = ACTIONS(5057), - [anon_sym_PERCENT_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ] = ACTIONS(5055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5057), - [anon_sym_LT_EQ] = ACTIONS(5057), - [anon_sym_GT_EQ] = ACTIONS(5057), - [anon_sym_BANGin] = ACTIONS(5057), - [anon_sym_is] = ACTIONS(5055), - [anon_sym_BANGis] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_as_QMARK] = ACTIONS(5057), - [anon_sym_PLUS_PLUS] = ACTIONS(5057), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_BANG_BANG] = ACTIONS(5057), - [anon_sym_suspend] = ACTIONS(5055), - [anon_sym_sealed] = ACTIONS(5055), - [anon_sym_annotation] = ACTIONS(5055), - [anon_sym_data] = ACTIONS(5055), - [anon_sym_inner] = ACTIONS(5055), - [anon_sym_value] = ACTIONS(5055), - [anon_sym_override] = ACTIONS(5055), - [anon_sym_lateinit] = ACTIONS(5055), - [anon_sym_public] = ACTIONS(5055), - [anon_sym_private] = ACTIONS(5055), - [anon_sym_internal] = ACTIONS(5055), - [anon_sym_protected] = ACTIONS(5055), - [anon_sym_tailrec] = ACTIONS(5055), - [anon_sym_operator] = ACTIONS(5055), - [anon_sym_infix] = ACTIONS(5055), - [anon_sym_inline] = ACTIONS(5055), - [anon_sym_external] = ACTIONS(5055), - [sym_property_modifier] = ACTIONS(5055), - [anon_sym_abstract] = ACTIONS(5055), - [anon_sym_final] = ACTIONS(5055), - [anon_sym_open] = ACTIONS(5055), - [anon_sym_vararg] = ACTIONS(5055), - [anon_sym_noinline] = ACTIONS(5055), - [anon_sym_crossinline] = ACTIONS(5055), - [anon_sym_expect] = ACTIONS(5055), - [anon_sym_actual] = ACTIONS(5055), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5057), - [anon_sym_continue_AT] = ACTIONS(5057), - [anon_sym_break_AT] = ACTIONS(5057), - [anon_sym_this_AT] = ACTIONS(5057), - [anon_sym_super_AT] = ACTIONS(5057), - [sym_real_literal] = ACTIONS(5057), - [sym_integer_literal] = ACTIONS(5055), - [sym_hex_literal] = ACTIONS(5057), - [sym_bin_literal] = ACTIONS(5057), - [anon_sym_true] = ACTIONS(5055), - [anon_sym_false] = ACTIONS(5055), - [anon_sym_SQUOTE] = ACTIONS(5057), - [sym__backtick_identifier] = ACTIONS(5057), - [sym__automatic_semicolon] = ACTIONS(5057), - [sym_safe_nav] = ACTIONS(5057), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5057), - }, - [1122] = { - [sym__alpha_identifier] = ACTIONS(5059), - [anon_sym_AT] = ACTIONS(5061), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5059), - [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_SEMI] = ACTIONS(5061), - [anon_sym_get] = ACTIONS(5059), - [anon_sym_set] = ACTIONS(5059), - [anon_sym_this] = ACTIONS(5059), - [anon_sym_super] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [sym_label] = ACTIONS(5059), - [anon_sym_in] = ACTIONS(5059), - [anon_sym_DOT_DOT] = ACTIONS(5061), - [anon_sym_QMARK_COLON] = ACTIONS(5061), - [anon_sym_AMP_AMP] = ACTIONS(5061), - [anon_sym_PIPE_PIPE] = ACTIONS(5061), - [anon_sym_null] = ACTIONS(5059), - [anon_sym_if] = ACTIONS(5059), - [anon_sym_else] = ACTIONS(5059), - [anon_sym_when] = ACTIONS(5059), - [anon_sym_try] = ACTIONS(5059), - [anon_sym_throw] = ACTIONS(5059), - [anon_sym_return] = ACTIONS(5059), - [anon_sym_continue] = ACTIONS(5059), - [anon_sym_break] = ACTIONS(5059), - [anon_sym_COLON_COLON] = ACTIONS(5061), - [anon_sym_PLUS_EQ] = ACTIONS(5061), - [anon_sym_DASH_EQ] = ACTIONS(5061), - [anon_sym_STAR_EQ] = ACTIONS(5061), - [anon_sym_SLASH_EQ] = ACTIONS(5061), - [anon_sym_PERCENT_EQ] = ACTIONS(5061), - [anon_sym_BANG_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), - [anon_sym_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), - [anon_sym_LT_EQ] = ACTIONS(5061), - [anon_sym_GT_EQ] = ACTIONS(5061), - [anon_sym_BANGin] = ACTIONS(5061), - [anon_sym_is] = ACTIONS(5059), - [anon_sym_BANGis] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_as_QMARK] = ACTIONS(5061), - [anon_sym_PLUS_PLUS] = ACTIONS(5061), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_BANG_BANG] = ACTIONS(5061), - [anon_sym_suspend] = ACTIONS(5059), - [anon_sym_sealed] = ACTIONS(5059), - [anon_sym_annotation] = ACTIONS(5059), - [anon_sym_data] = ACTIONS(5059), - [anon_sym_inner] = ACTIONS(5059), - [anon_sym_value] = ACTIONS(5059), - [anon_sym_override] = ACTIONS(5059), - [anon_sym_lateinit] = ACTIONS(5059), - [anon_sym_public] = ACTIONS(5059), - [anon_sym_private] = ACTIONS(5059), - [anon_sym_internal] = ACTIONS(5059), - [anon_sym_protected] = ACTIONS(5059), - [anon_sym_tailrec] = ACTIONS(5059), - [anon_sym_operator] = ACTIONS(5059), - [anon_sym_infix] = ACTIONS(5059), - [anon_sym_inline] = ACTIONS(5059), - [anon_sym_external] = ACTIONS(5059), - [sym_property_modifier] = ACTIONS(5059), - [anon_sym_abstract] = ACTIONS(5059), - [anon_sym_final] = ACTIONS(5059), - [anon_sym_open] = ACTIONS(5059), - [anon_sym_vararg] = ACTIONS(5059), - [anon_sym_noinline] = ACTIONS(5059), - [anon_sym_crossinline] = ACTIONS(5059), - [anon_sym_expect] = ACTIONS(5059), - [anon_sym_actual] = ACTIONS(5059), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5061), - [anon_sym_continue_AT] = ACTIONS(5061), - [anon_sym_break_AT] = ACTIONS(5061), - [anon_sym_this_AT] = ACTIONS(5061), - [anon_sym_super_AT] = ACTIONS(5061), - [sym_real_literal] = ACTIONS(5061), - [sym_integer_literal] = ACTIONS(5059), - [sym_hex_literal] = ACTIONS(5061), - [sym_bin_literal] = ACTIONS(5061), - [anon_sym_true] = ACTIONS(5059), - [anon_sym_false] = ACTIONS(5059), - [anon_sym_SQUOTE] = ACTIONS(5061), - [sym__backtick_identifier] = ACTIONS(5061), - [sym__automatic_semicolon] = ACTIONS(5061), - [sym_safe_nav] = ACTIONS(5061), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5061), - }, - [1123] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), - }, - [1124] = { - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), - [anon_sym_suspend] = ACTIONS(3312), - [anon_sym_sealed] = ACTIONS(3312), - [anon_sym_annotation] = ACTIONS(3312), - [anon_sym_data] = ACTIONS(3312), - [anon_sym_inner] = ACTIONS(3312), - [anon_sym_value] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_lateinit] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_internal] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_tailrec] = ACTIONS(3312), - [anon_sym_operator] = ACTIONS(3312), - [anon_sym_infix] = ACTIONS(3312), - [anon_sym_inline] = ACTIONS(3312), - [anon_sym_external] = ACTIONS(3312), - [sym_property_modifier] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_final] = ACTIONS(3312), - [anon_sym_open] = ACTIONS(3312), - [anon_sym_vararg] = ACTIONS(3312), - [anon_sym_noinline] = ACTIONS(3312), - [anon_sym_crossinline] = ACTIONS(3312), - [anon_sym_expect] = ACTIONS(3312), - [anon_sym_actual] = ACTIONS(3312), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), - }, - [1125] = { - [sym__alpha_identifier] = ACTIONS(5063), - [anon_sym_AT] = ACTIONS(5065), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5063), - [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_SEMI] = ACTIONS(5065), - [anon_sym_get] = ACTIONS(5063), - [anon_sym_set] = ACTIONS(5063), - [anon_sym_this] = ACTIONS(5063), - [anon_sym_super] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [sym_label] = ACTIONS(5063), - [anon_sym_in] = ACTIONS(5063), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_QMARK_COLON] = ACTIONS(5065), - [anon_sym_AMP_AMP] = ACTIONS(5065), - [anon_sym_PIPE_PIPE] = ACTIONS(5065), - [anon_sym_null] = ACTIONS(5063), - [anon_sym_if] = ACTIONS(5063), - [anon_sym_else] = ACTIONS(5063), - [anon_sym_when] = ACTIONS(5063), - [anon_sym_try] = ACTIONS(5063), - [anon_sym_throw] = ACTIONS(5063), - [anon_sym_return] = ACTIONS(5063), - [anon_sym_continue] = ACTIONS(5063), - [anon_sym_break] = ACTIONS(5063), - [anon_sym_COLON_COLON] = ACTIONS(5065), - [anon_sym_PLUS_EQ] = ACTIONS(5065), - [anon_sym_DASH_EQ] = ACTIONS(5065), - [anon_sym_STAR_EQ] = ACTIONS(5065), - [anon_sym_SLASH_EQ] = ACTIONS(5065), - [anon_sym_PERCENT_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ] = ACTIONS(5063), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), - [anon_sym_EQ_EQ] = ACTIONS(5063), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), - [anon_sym_LT_EQ] = ACTIONS(5065), - [anon_sym_GT_EQ] = ACTIONS(5065), - [anon_sym_BANGin] = ACTIONS(5065), - [anon_sym_is] = ACTIONS(5063), - [anon_sym_BANGis] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_as_QMARK] = ACTIONS(5065), - [anon_sym_PLUS_PLUS] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_BANG_BANG] = ACTIONS(5065), - [anon_sym_suspend] = ACTIONS(5063), - [anon_sym_sealed] = ACTIONS(5063), - [anon_sym_annotation] = ACTIONS(5063), - [anon_sym_data] = ACTIONS(5063), - [anon_sym_inner] = ACTIONS(5063), - [anon_sym_value] = ACTIONS(5063), - [anon_sym_override] = ACTIONS(5063), - [anon_sym_lateinit] = ACTIONS(5063), - [anon_sym_public] = ACTIONS(5063), - [anon_sym_private] = ACTIONS(5063), - [anon_sym_internal] = ACTIONS(5063), - [anon_sym_protected] = ACTIONS(5063), - [anon_sym_tailrec] = ACTIONS(5063), - [anon_sym_operator] = ACTIONS(5063), - [anon_sym_infix] = ACTIONS(5063), - [anon_sym_inline] = ACTIONS(5063), - [anon_sym_external] = ACTIONS(5063), - [sym_property_modifier] = ACTIONS(5063), - [anon_sym_abstract] = ACTIONS(5063), - [anon_sym_final] = ACTIONS(5063), - [anon_sym_open] = ACTIONS(5063), - [anon_sym_vararg] = ACTIONS(5063), - [anon_sym_noinline] = ACTIONS(5063), - [anon_sym_crossinline] = ACTIONS(5063), - [anon_sym_expect] = ACTIONS(5063), - [anon_sym_actual] = ACTIONS(5063), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5065), - [anon_sym_continue_AT] = ACTIONS(5065), - [anon_sym_break_AT] = ACTIONS(5065), - [anon_sym_this_AT] = ACTIONS(5065), - [anon_sym_super_AT] = ACTIONS(5065), - [sym_real_literal] = ACTIONS(5065), - [sym_integer_literal] = ACTIONS(5063), - [sym_hex_literal] = ACTIONS(5065), - [sym_bin_literal] = ACTIONS(5065), - [anon_sym_true] = ACTIONS(5063), - [anon_sym_false] = ACTIONS(5063), - [anon_sym_SQUOTE] = ACTIONS(5065), - [sym__backtick_identifier] = ACTIONS(5065), - [sym__automatic_semicolon] = ACTIONS(5065), - [sym_safe_nav] = ACTIONS(5065), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5065), - }, - [1126] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), - }, - [1127] = { - [sym__alpha_identifier] = ACTIONS(3294), + [sym__alpha_identifier] = ACTIONS(3296), [anon_sym_AT] = ACTIONS(3298), [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), [anon_sym_LBRACE] = ACTIONS(3298), [anon_sym_RBRACE] = ACTIONS(3298), [anon_sym_LPAREN] = ACTIONS(3298), [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3294), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), [anon_sym_DOT_DOT] = ACTIONS(3298), [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), [anon_sym_COLON_COLON] = ACTIONS(3298), [anon_sym_PLUS_EQ] = ACTIONS(3298), [anon_sym_DASH_EQ] = ACTIONS(3298), [anon_sym_STAR_EQ] = ACTIONS(3298), [anon_sym_SLASH_EQ] = ACTIONS(3298), [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3296), [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3296), [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), [anon_sym_LT_EQ] = ACTIONS(3298), [anon_sym_GT_EQ] = ACTIONS(3298), [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3296), [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), [anon_sym_as_QMARK] = ACTIONS(3298), [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3296), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [anon_sym_suspend] = ACTIONS(3296), + [anon_sym_sealed] = ACTIONS(3296), + [anon_sym_annotation] = ACTIONS(3296), + [anon_sym_data] = ACTIONS(3296), + [anon_sym_inner] = ACTIONS(3296), + [anon_sym_value] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_lateinit] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_internal] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_tailrec] = ACTIONS(3296), + [anon_sym_operator] = ACTIONS(3296), + [anon_sym_infix] = ACTIONS(3296), + [anon_sym_inline] = ACTIONS(3296), + [anon_sym_external] = ACTIONS(3296), + [sym_property_modifier] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_final] = ACTIONS(3296), + [anon_sym_open] = ACTIONS(3296), + [anon_sym_vararg] = ACTIONS(3296), + [anon_sym_noinline] = ACTIONS(3296), + [anon_sym_crossinline] = ACTIONS(3296), + [anon_sym_expect] = ACTIONS(3296), + [anon_sym_actual] = ACTIONS(3296), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(3298), [anon_sym_continue_AT] = ACTIONS(3298), @@ -174787,11 +173890,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(3298), [anon_sym_super_AT] = ACTIONS(3298), [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), + [sym_integer_literal] = ACTIONS(3296), [sym_hex_literal] = ACTIONS(3298), [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), [anon_sym_SQUOTE] = ACTIONS(3298), [sym__backtick_identifier] = ACTIONS(3298), [sym__automatic_semicolon] = ACTIONS(3298), @@ -174799,643 +173902,3293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3298), }, + [1117] = { + [sym__alpha_identifier] = ACTIONS(5033), + [anon_sym_AT] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5033), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(5035), + [anon_sym_super_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), + }, + [1118] = { + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), + }, + [1119] = { + [sym_function_body] = STATE(1166), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, + [1120] = { + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(4260), + [anon_sym_object] = ACTIONS(4260), + [anon_sym_fun] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_this] = ACTIONS(4260), + [anon_sym_super] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [sym_label] = ACTIONS(4260), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_when] = ACTIONS(4260), + [anon_sym_try] = ACTIONS(4260), + [anon_sym_throw] = ACTIONS(4260), + [anon_sym_return] = ACTIONS(4260), + [anon_sym_continue] = ACTIONS(4260), + [anon_sym_break] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4260), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4260), + [anon_sym_false] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [1121] = { + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [1122] = { + [sym__alpha_identifier] = ACTIONS(5037), + [anon_sym_AT] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5037), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(5039), + [anon_sym_super_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), + }, + [1123] = { + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [1124] = { + [sym__alpha_identifier] = ACTIONS(5041), + [anon_sym_AT] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5041), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(5043), + [anon_sym_super_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), + }, + [1125] = { + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [1126] = { + [sym__alpha_identifier] = ACTIONS(5045), + [anon_sym_AT] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5045), + [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_SEMI] = ACTIONS(5047), + [anon_sym_get] = ACTIONS(5045), + [anon_sym_set] = ACTIONS(5045), + [anon_sym_this] = ACTIONS(5045), + [anon_sym_super] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [sym_label] = ACTIONS(5045), + [anon_sym_in] = ACTIONS(5045), + [anon_sym_DOT_DOT] = ACTIONS(5047), + [anon_sym_QMARK_COLON] = ACTIONS(5047), + [anon_sym_AMP_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5047), + [anon_sym_null] = ACTIONS(5045), + [anon_sym_if] = ACTIONS(5045), + [anon_sym_else] = ACTIONS(5045), + [anon_sym_when] = ACTIONS(5045), + [anon_sym_try] = ACTIONS(5045), + [anon_sym_throw] = ACTIONS(5045), + [anon_sym_return] = ACTIONS(5045), + [anon_sym_continue] = ACTIONS(5045), + [anon_sym_break] = ACTIONS(5045), + [anon_sym_COLON_COLON] = ACTIONS(5047), + [anon_sym_PLUS_EQ] = ACTIONS(5047), + [anon_sym_DASH_EQ] = ACTIONS(5047), + [anon_sym_STAR_EQ] = ACTIONS(5047), + [anon_sym_SLASH_EQ] = ACTIONS(5047), + [anon_sym_PERCENT_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), + [anon_sym_LT_EQ] = ACTIONS(5047), + [anon_sym_GT_EQ] = ACTIONS(5047), + [anon_sym_BANGin] = ACTIONS(5047), + [anon_sym_is] = ACTIONS(5045), + [anon_sym_BANGis] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5045), + [anon_sym_as_QMARK] = ACTIONS(5047), + [anon_sym_PLUS_PLUS] = ACTIONS(5047), + [anon_sym_DASH_DASH] = ACTIONS(5047), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_BANG_BANG] = ACTIONS(5047), + [anon_sym_suspend] = ACTIONS(5045), + [anon_sym_sealed] = ACTIONS(5045), + [anon_sym_annotation] = ACTIONS(5045), + [anon_sym_data] = ACTIONS(5045), + [anon_sym_inner] = ACTIONS(5045), + [anon_sym_value] = ACTIONS(5045), + [anon_sym_override] = ACTIONS(5045), + [anon_sym_lateinit] = ACTIONS(5045), + [anon_sym_public] = ACTIONS(5045), + [anon_sym_private] = ACTIONS(5045), + [anon_sym_internal] = ACTIONS(5045), + [anon_sym_protected] = ACTIONS(5045), + [anon_sym_tailrec] = ACTIONS(5045), + [anon_sym_operator] = ACTIONS(5045), + [anon_sym_infix] = ACTIONS(5045), + [anon_sym_inline] = ACTIONS(5045), + [anon_sym_external] = ACTIONS(5045), + [sym_property_modifier] = ACTIONS(5045), + [anon_sym_abstract] = ACTIONS(5045), + [anon_sym_final] = ACTIONS(5045), + [anon_sym_open] = ACTIONS(5045), + [anon_sym_vararg] = ACTIONS(5045), + [anon_sym_noinline] = ACTIONS(5045), + [anon_sym_crossinline] = ACTIONS(5045), + [anon_sym_expect] = ACTIONS(5045), + [anon_sym_actual] = ACTIONS(5045), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5047), + [anon_sym_continue_AT] = ACTIONS(5047), + [anon_sym_break_AT] = ACTIONS(5047), + [anon_sym_this_AT] = ACTIONS(5047), + [anon_sym_super_AT] = ACTIONS(5047), + [sym_real_literal] = ACTIONS(5047), + [sym_integer_literal] = ACTIONS(5045), + [sym_hex_literal] = ACTIONS(5047), + [sym_bin_literal] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5045), + [anon_sym_false] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5047), + [sym__backtick_identifier] = ACTIONS(5047), + [sym__automatic_semicolon] = ACTIONS(5047), + [sym_safe_nav] = ACTIONS(5047), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5047), + }, + [1127] = { + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4077), + [anon_sym_LBRACE] = ACTIONS(4079), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, [1128] = { - [sym__alpha_identifier] = ACTIONS(5067), - [anon_sym_AT] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5067), - [anon_sym_as] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5067), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_where] = ACTIONS(5067), - [anon_sym_object] = ACTIONS(5067), - [anon_sym_fun] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5069), - [anon_sym_get] = ACTIONS(5067), - [anon_sym_set] = ACTIONS(5067), - [anon_sym_this] = ACTIONS(5067), - [anon_sym_super] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [sym_label] = ACTIONS(5067), - [anon_sym_in] = ACTIONS(5067), - [anon_sym_DOT_DOT] = ACTIONS(5069), - [anon_sym_QMARK_COLON] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_null] = ACTIONS(5067), - [anon_sym_if] = ACTIONS(5067), - [anon_sym_else] = ACTIONS(5067), - [anon_sym_when] = ACTIONS(5067), - [anon_sym_try] = ACTIONS(5067), - [anon_sym_throw] = ACTIONS(5067), - [anon_sym_return] = ACTIONS(5067), - [anon_sym_continue] = ACTIONS(5067), - [anon_sym_break] = ACTIONS(5067), - [anon_sym_COLON_COLON] = ACTIONS(5069), - [anon_sym_PLUS_EQ] = ACTIONS(5069), - [anon_sym_DASH_EQ] = ACTIONS(5069), - [anon_sym_STAR_EQ] = ACTIONS(5069), - [anon_sym_SLASH_EQ] = ACTIONS(5069), - [anon_sym_PERCENT_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_BANGin] = ACTIONS(5069), - [anon_sym_is] = ACTIONS(5067), - [anon_sym_BANGis] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_as_QMARK] = ACTIONS(5069), - [anon_sym_PLUS_PLUS] = ACTIONS(5069), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_BANG_BANG] = ACTIONS(5069), - [anon_sym_suspend] = ACTIONS(5067), - [anon_sym_sealed] = ACTIONS(5067), - [anon_sym_annotation] = ACTIONS(5067), - [anon_sym_data] = ACTIONS(5067), - [anon_sym_inner] = ACTIONS(5067), - [anon_sym_value] = ACTIONS(5067), - [anon_sym_override] = ACTIONS(5067), - [anon_sym_lateinit] = ACTIONS(5067), - [anon_sym_public] = ACTIONS(5067), - [anon_sym_private] = ACTIONS(5067), - [anon_sym_internal] = ACTIONS(5067), - [anon_sym_protected] = ACTIONS(5067), - [anon_sym_tailrec] = ACTIONS(5067), - [anon_sym_operator] = ACTIONS(5067), - [anon_sym_infix] = ACTIONS(5067), - [anon_sym_inline] = ACTIONS(5067), - [anon_sym_external] = ACTIONS(5067), - [sym_property_modifier] = ACTIONS(5067), - [anon_sym_abstract] = ACTIONS(5067), - [anon_sym_final] = ACTIONS(5067), - [anon_sym_open] = ACTIONS(5067), - [anon_sym_vararg] = ACTIONS(5067), - [anon_sym_noinline] = ACTIONS(5067), - [anon_sym_crossinline] = ACTIONS(5067), - [anon_sym_expect] = ACTIONS(5067), - [anon_sym_actual] = ACTIONS(5067), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5069), - [anon_sym_continue_AT] = ACTIONS(5069), - [anon_sym_break_AT] = ACTIONS(5069), - [anon_sym_this_AT] = ACTIONS(5069), - [anon_sym_super_AT] = ACTIONS(5069), - [sym_real_literal] = ACTIONS(5069), - [sym_integer_literal] = ACTIONS(5067), - [sym_hex_literal] = ACTIONS(5069), - [sym_bin_literal] = ACTIONS(5069), - [anon_sym_true] = ACTIONS(5067), - [anon_sym_false] = ACTIONS(5067), - [anon_sym_SQUOTE] = ACTIONS(5069), - [sym__backtick_identifier] = ACTIONS(5069), - [sym__automatic_semicolon] = ACTIONS(5069), - [sym_safe_nav] = ACTIONS(5069), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5069), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = 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(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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, [1129] = { - [sym__alpha_identifier] = ACTIONS(5071), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_as] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(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_SEMI] = ACTIONS(5073), - [anon_sym_get] = ACTIONS(5071), - [anon_sym_set] = ACTIONS(5071), - [anon_sym_this] = ACTIONS(5071), - [anon_sym_super] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [sym_label] = ACTIONS(5071), - [anon_sym_in] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(5073), - [anon_sym_QMARK_COLON] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_null] = ACTIONS(5071), - [anon_sym_if] = ACTIONS(5071), - [anon_sym_else] = ACTIONS(5071), - [anon_sym_when] = ACTIONS(5071), - [anon_sym_try] = ACTIONS(5071), - [anon_sym_throw] = ACTIONS(5071), - [anon_sym_return] = ACTIONS(5071), - [anon_sym_continue] = ACTIONS(5071), - [anon_sym_break] = ACTIONS(5071), - [anon_sym_COLON_COLON] = ACTIONS(5073), - [anon_sym_PLUS_EQ] = ACTIONS(5073), - [anon_sym_DASH_EQ] = ACTIONS(5073), - [anon_sym_STAR_EQ] = ACTIONS(5073), - [anon_sym_SLASH_EQ] = ACTIONS(5073), - [anon_sym_PERCENT_EQ] = ACTIONS(5073), - [anon_sym_BANG_EQ] = ACTIONS(5071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), - [anon_sym_EQ_EQ] = ACTIONS(5071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), - [anon_sym_LT_EQ] = ACTIONS(5073), - [anon_sym_GT_EQ] = ACTIONS(5073), - [anon_sym_BANGin] = ACTIONS(5073), - [anon_sym_is] = ACTIONS(5071), - [anon_sym_BANGis] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_as_QMARK] = ACTIONS(5073), - [anon_sym_PLUS_PLUS] = ACTIONS(5073), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_BANG_BANG] = ACTIONS(5073), - [anon_sym_suspend] = ACTIONS(5071), - [anon_sym_sealed] = ACTIONS(5071), - [anon_sym_annotation] = ACTIONS(5071), - [anon_sym_data] = ACTIONS(5071), - [anon_sym_inner] = ACTIONS(5071), - [anon_sym_value] = ACTIONS(5071), - [anon_sym_override] = ACTIONS(5071), - [anon_sym_lateinit] = ACTIONS(5071), - [anon_sym_public] = ACTIONS(5071), - [anon_sym_private] = ACTIONS(5071), - [anon_sym_internal] = ACTIONS(5071), - [anon_sym_protected] = ACTIONS(5071), - [anon_sym_tailrec] = ACTIONS(5071), - [anon_sym_operator] = ACTIONS(5071), - [anon_sym_infix] = ACTIONS(5071), - [anon_sym_inline] = ACTIONS(5071), - [anon_sym_external] = ACTIONS(5071), - [sym_property_modifier] = ACTIONS(5071), - [anon_sym_abstract] = ACTIONS(5071), - [anon_sym_final] = ACTIONS(5071), - [anon_sym_open] = ACTIONS(5071), - [anon_sym_vararg] = ACTIONS(5071), - [anon_sym_noinline] = ACTIONS(5071), - [anon_sym_crossinline] = ACTIONS(5071), - [anon_sym_expect] = ACTIONS(5071), - [anon_sym_actual] = ACTIONS(5071), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5073), - [anon_sym_continue_AT] = ACTIONS(5073), - [anon_sym_break_AT] = ACTIONS(5073), - [anon_sym_this_AT] = ACTIONS(5073), - [anon_sym_super_AT] = ACTIONS(5073), - [sym_real_literal] = ACTIONS(5073), - [sym_integer_literal] = ACTIONS(5071), - [sym_hex_literal] = ACTIONS(5073), - [sym_bin_literal] = ACTIONS(5073), - [anon_sym_true] = ACTIONS(5071), - [anon_sym_false] = ACTIONS(5071), - [anon_sym_SQUOTE] = ACTIONS(5073), - [sym__backtick_identifier] = ACTIONS(5073), - [sym__automatic_semicolon] = ACTIONS(5073), - [sym_safe_nav] = ACTIONS(5073), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5073), + [sym__alpha_identifier] = ACTIONS(5049), + [anon_sym_AT] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5049), + [anon_sym_EQ] = ACTIONS(5049), + [anon_sym_LBRACE] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_where] = ACTIONS(5049), + [anon_sym_object] = ACTIONS(5049), + [anon_sym_fun] = ACTIONS(5049), + [anon_sym_SEMI] = ACTIONS(5051), + [anon_sym_get] = ACTIONS(5049), + [anon_sym_set] = ACTIONS(5049), + [anon_sym_this] = ACTIONS(5049), + [anon_sym_super] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [sym_label] = ACTIONS(5049), + [anon_sym_in] = ACTIONS(5049), + [anon_sym_DOT_DOT] = ACTIONS(5051), + [anon_sym_QMARK_COLON] = ACTIONS(5051), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE_PIPE] = ACTIONS(5051), + [anon_sym_null] = ACTIONS(5049), + [anon_sym_if] = ACTIONS(5049), + [anon_sym_else] = ACTIONS(5049), + [anon_sym_when] = ACTIONS(5049), + [anon_sym_try] = ACTIONS(5049), + [anon_sym_throw] = ACTIONS(5049), + [anon_sym_return] = ACTIONS(5049), + [anon_sym_continue] = ACTIONS(5049), + [anon_sym_break] = ACTIONS(5049), + [anon_sym_COLON_COLON] = ACTIONS(5051), + [anon_sym_PLUS_EQ] = ACTIONS(5051), + [anon_sym_DASH_EQ] = ACTIONS(5051), + [anon_sym_STAR_EQ] = ACTIONS(5051), + [anon_sym_SLASH_EQ] = ACTIONS(5051), + [anon_sym_PERCENT_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_BANGin] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5049), + [anon_sym_BANGis] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_PERCENT] = ACTIONS(5049), + [anon_sym_as_QMARK] = ACTIONS(5051), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_BANG_BANG] = ACTIONS(5051), + [anon_sym_suspend] = ACTIONS(5049), + [anon_sym_sealed] = ACTIONS(5049), + [anon_sym_annotation] = ACTIONS(5049), + [anon_sym_data] = ACTIONS(5049), + [anon_sym_inner] = ACTIONS(5049), + [anon_sym_value] = ACTIONS(5049), + [anon_sym_override] = ACTIONS(5049), + [anon_sym_lateinit] = ACTIONS(5049), + [anon_sym_public] = ACTIONS(5049), + [anon_sym_private] = ACTIONS(5049), + [anon_sym_internal] = ACTIONS(5049), + [anon_sym_protected] = ACTIONS(5049), + [anon_sym_tailrec] = ACTIONS(5049), + [anon_sym_operator] = ACTIONS(5049), + [anon_sym_infix] = ACTIONS(5049), + [anon_sym_inline] = ACTIONS(5049), + [anon_sym_external] = ACTIONS(5049), + [sym_property_modifier] = ACTIONS(5049), + [anon_sym_abstract] = ACTIONS(5049), + [anon_sym_final] = ACTIONS(5049), + [anon_sym_open] = ACTIONS(5049), + [anon_sym_vararg] = ACTIONS(5049), + [anon_sym_noinline] = ACTIONS(5049), + [anon_sym_crossinline] = ACTIONS(5049), + [anon_sym_expect] = ACTIONS(5049), + [anon_sym_actual] = ACTIONS(5049), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5051), + [anon_sym_continue_AT] = ACTIONS(5051), + [anon_sym_break_AT] = ACTIONS(5051), + [anon_sym_this_AT] = ACTIONS(5051), + [anon_sym_super_AT] = ACTIONS(5051), + [sym_real_literal] = ACTIONS(5051), + [sym_integer_literal] = ACTIONS(5049), + [sym_hex_literal] = ACTIONS(5051), + [sym_bin_literal] = ACTIONS(5051), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [anon_sym_SQUOTE] = ACTIONS(5051), + [sym__backtick_identifier] = ACTIONS(5051), + [sym__automatic_semicolon] = ACTIONS(5051), + [sym_safe_nav] = ACTIONS(5051), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5051), }, [1130] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5075), - [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_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_this] = ACTIONS(5075), - [anon_sym_super] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [sym_label] = ACTIONS(5075), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_when] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_throw] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_suspend] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_value] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_lateinit] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_tailrec] = ACTIONS(5075), - [anon_sym_operator] = ACTIONS(5075), - [anon_sym_infix] = ACTIONS(5075), - [anon_sym_inline] = ACTIONS(5075), - [anon_sym_external] = ACTIONS(5075), - [sym_property_modifier] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_final] = ACTIONS(5075), - [anon_sym_open] = ACTIONS(5075), - [anon_sym_vararg] = ACTIONS(5075), - [anon_sym_noinline] = ACTIONS(5075), - [anon_sym_crossinline] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5077), - [anon_sym_continue_AT] = ACTIONS(5077), - [anon_sym_break_AT] = ACTIONS(5077), - [anon_sym_this_AT] = ACTIONS(5077), - [anon_sym_super_AT] = ACTIONS(5077), - [sym_real_literal] = ACTIONS(5077), - [sym_integer_literal] = ACTIONS(5075), - [sym_hex_literal] = ACTIONS(5077), - [sym_bin_literal] = ACTIONS(5077), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5077), - [sym__backtick_identifier] = ACTIONS(5077), - [sym__automatic_semicolon] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5077), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4422), + [anon_sym_super_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), }, [1131] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(4240), - [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_SEMI] = ACTIONS(4240), - [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(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [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(4240), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [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(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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(4240), - [anon_sym_continue_AT] = ACTIONS(4240), - [anon_sym_break_AT] = ACTIONS(4240), - [anon_sym_this_AT] = ACTIONS(4240), - [anon_sym_super_AT] = ACTIONS(4240), - [sym_real_literal] = ACTIONS(4240), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4240), - [sym_bin_literal] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4240), - [sym__backtick_identifier] = ACTIONS(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4240), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1682), + [anon_sym_set] = ACTIONS(1682), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), + [anon_sym_suspend] = ACTIONS(1682), + [anon_sym_sealed] = ACTIONS(1682), + [anon_sym_annotation] = ACTIONS(1682), + [anon_sym_data] = ACTIONS(1682), + [anon_sym_inner] = ACTIONS(1682), + [anon_sym_value] = ACTIONS(1682), + [anon_sym_override] = ACTIONS(1682), + [anon_sym_lateinit] = ACTIONS(1682), + [anon_sym_public] = ACTIONS(1682), + [anon_sym_private] = ACTIONS(1682), + [anon_sym_internal] = ACTIONS(1682), + [anon_sym_protected] = ACTIONS(1682), + [anon_sym_tailrec] = ACTIONS(1682), + [anon_sym_operator] = ACTIONS(1682), + [anon_sym_infix] = ACTIONS(1682), + [anon_sym_inline] = ACTIONS(1682), + [anon_sym_external] = ACTIONS(1682), + [sym_property_modifier] = ACTIONS(1682), + [anon_sym_abstract] = ACTIONS(1682), + [anon_sym_final] = ACTIONS(1682), + [anon_sym_open] = ACTIONS(1682), + [anon_sym_vararg] = ACTIONS(1682), + [anon_sym_noinline] = ACTIONS(1682), + [anon_sym_crossinline] = ACTIONS(1682), + [anon_sym_expect] = ACTIONS(1682), + [anon_sym_actual] = ACTIONS(1682), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, [1132] = { - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(211), - [anon_sym_fun] = ACTIONS(211), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(211), - [anon_sym_set] = ACTIONS(211), - [anon_sym_this] = ACTIONS(211), - [anon_sym_super] = ACTIONS(211), - [anon_sym_STAR] = ACTIONS(211), - [sym_label] = ACTIONS(211), - [anon_sym_in] = ACTIONS(211), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(211), - [anon_sym_try] = ACTIONS(211), - [anon_sym_throw] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_continue] = ACTIONS(211), - [anon_sym_break] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_BANG_BANG] = ACTIONS(209), - [anon_sym_suspend] = ACTIONS(211), - [anon_sym_sealed] = ACTIONS(211), - [anon_sym_annotation] = ACTIONS(211), - [anon_sym_data] = ACTIONS(211), - [anon_sym_inner] = ACTIONS(211), - [anon_sym_value] = ACTIONS(211), - [anon_sym_override] = ACTIONS(211), - [anon_sym_lateinit] = ACTIONS(211), - [anon_sym_public] = ACTIONS(211), - [anon_sym_private] = ACTIONS(211), - [anon_sym_internal] = ACTIONS(211), - [anon_sym_protected] = ACTIONS(211), - [anon_sym_tailrec] = ACTIONS(211), - [anon_sym_operator] = ACTIONS(211), - [anon_sym_infix] = ACTIONS(211), - [anon_sym_inline] = ACTIONS(211), - [anon_sym_external] = ACTIONS(211), - [sym_property_modifier] = ACTIONS(211), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_final] = ACTIONS(211), - [anon_sym_open] = ACTIONS(211), - [anon_sym_vararg] = ACTIONS(211), - [anon_sym_noinline] = ACTIONS(211), - [anon_sym_crossinline] = ACTIONS(211), - [anon_sym_expect] = ACTIONS(211), - [anon_sym_actual] = ACTIONS(211), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(209), - [anon_sym_continue_AT] = ACTIONS(209), - [anon_sym_break_AT] = ACTIONS(209), - [anon_sym_this_AT] = ACTIONS(209), - [anon_sym_super_AT] = ACTIONS(209), - [sym_real_literal] = ACTIONS(209), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(209), - [sym_bin_literal] = ACTIONS(209), - [anon_sym_true] = ACTIONS(211), - [anon_sym_false] = ACTIONS(211), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym__backtick_identifier] = ACTIONS(209), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(209), + [sym__alpha_identifier] = ACTIONS(5053), + [anon_sym_AT] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_DOT] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(5053), + [anon_sym_LBRACE] = ACTIONS(5055), + [anon_sym_RBRACE] = ACTIONS(5055), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_where] = ACTIONS(5053), + [anon_sym_object] = ACTIONS(5053), + [anon_sym_fun] = ACTIONS(5053), + [anon_sym_SEMI] = ACTIONS(5055), + [anon_sym_get] = ACTIONS(5053), + [anon_sym_set] = ACTIONS(5053), + [anon_sym_this] = ACTIONS(5053), + [anon_sym_super] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5053), + [anon_sym_DOT_DOT] = ACTIONS(5055), + [anon_sym_QMARK_COLON] = ACTIONS(5055), + [anon_sym_AMP_AMP] = ACTIONS(5055), + [anon_sym_PIPE_PIPE] = ACTIONS(5055), + [anon_sym_null] = ACTIONS(5053), + [anon_sym_if] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5053), + [anon_sym_when] = ACTIONS(5053), + [anon_sym_try] = ACTIONS(5053), + [anon_sym_throw] = ACTIONS(5053), + [anon_sym_return] = ACTIONS(5053), + [anon_sym_continue] = ACTIONS(5053), + [anon_sym_break] = ACTIONS(5053), + [anon_sym_COLON_COLON] = ACTIONS(5055), + [anon_sym_PLUS_EQ] = ACTIONS(5055), + [anon_sym_DASH_EQ] = ACTIONS(5055), + [anon_sym_STAR_EQ] = ACTIONS(5055), + [anon_sym_SLASH_EQ] = ACTIONS(5055), + [anon_sym_PERCENT_EQ] = ACTIONS(5055), + [anon_sym_BANG_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5055), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5055), + [anon_sym_BANGin] = ACTIONS(5055), + [anon_sym_is] = ACTIONS(5053), + [anon_sym_BANGis] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5053), + [anon_sym_as_QMARK] = ACTIONS(5055), + [anon_sym_PLUS_PLUS] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5055), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5055), + [anon_sym_suspend] = ACTIONS(5053), + [anon_sym_sealed] = ACTIONS(5053), + [anon_sym_annotation] = ACTIONS(5053), + [anon_sym_data] = ACTIONS(5053), + [anon_sym_inner] = ACTIONS(5053), + [anon_sym_value] = ACTIONS(5053), + [anon_sym_override] = ACTIONS(5053), + [anon_sym_lateinit] = ACTIONS(5053), + [anon_sym_public] = ACTIONS(5053), + [anon_sym_private] = ACTIONS(5053), + [anon_sym_internal] = ACTIONS(5053), + [anon_sym_protected] = ACTIONS(5053), + [anon_sym_tailrec] = ACTIONS(5053), + [anon_sym_operator] = ACTIONS(5053), + [anon_sym_infix] = ACTIONS(5053), + [anon_sym_inline] = ACTIONS(5053), + [anon_sym_external] = ACTIONS(5053), + [sym_property_modifier] = ACTIONS(5053), + [anon_sym_abstract] = ACTIONS(5053), + [anon_sym_final] = ACTIONS(5053), + [anon_sym_open] = ACTIONS(5053), + [anon_sym_vararg] = ACTIONS(5053), + [anon_sym_noinline] = ACTIONS(5053), + [anon_sym_crossinline] = ACTIONS(5053), + [anon_sym_expect] = ACTIONS(5053), + [anon_sym_actual] = ACTIONS(5053), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5055), + [anon_sym_continue_AT] = ACTIONS(5055), + [anon_sym_break_AT] = ACTIONS(5055), + [anon_sym_this_AT] = ACTIONS(5055), + [anon_sym_super_AT] = ACTIONS(5055), + [sym_real_literal] = ACTIONS(5055), + [sym_integer_literal] = ACTIONS(5053), + [sym_hex_literal] = ACTIONS(5055), + [sym_bin_literal] = ACTIONS(5055), + [anon_sym_true] = ACTIONS(5053), + [anon_sym_false] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5055), + [sym__backtick_identifier] = ACTIONS(5055), + [sym__automatic_semicolon] = ACTIONS(5055), + [sym_safe_nav] = ACTIONS(5055), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5055), }, [1133] = { - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(4470), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_object] = ACTIONS(4468), - [anon_sym_fun] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_this] = ACTIONS(4468), - [anon_sym_super] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4468), - [anon_sym_if] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [anon_sym_try] = ACTIONS(4468), - [anon_sym_throw] = ACTIONS(4468), - [anon_sym_return] = ACTIONS(4468), - [anon_sym_continue] = ACTIONS(4468), - [anon_sym_break] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_suspend] = ACTIONS(4468), - [anon_sym_sealed] = ACTIONS(4468), - [anon_sym_annotation] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_lateinit] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_tailrec] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_infix] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym_external] = ACTIONS(4468), - [sym_property_modifier] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_final] = ACTIONS(4468), - [anon_sym_open] = ACTIONS(4468), - [anon_sym_vararg] = ACTIONS(4468), - [anon_sym_noinline] = ACTIONS(4468), - [anon_sym_crossinline] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4470), - [anon_sym_continue_AT] = ACTIONS(4470), - [anon_sym_break_AT] = ACTIONS(4470), - [anon_sym_this_AT] = ACTIONS(4470), - [anon_sym_super_AT] = ACTIONS(4470), - [sym_real_literal] = ACTIONS(4470), - [sym_integer_literal] = ACTIONS(4468), - [sym_hex_literal] = ACTIONS(4470), - [sym_bin_literal] = ACTIONS(4470), - [anon_sym_true] = ACTIONS(4468), - [anon_sym_false] = ACTIONS(4468), - [anon_sym_SQUOTE] = ACTIONS(4470), - [sym__backtick_identifier] = ACTIONS(4470), - [sym__automatic_semicolon] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4470), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4232), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, [1134] = { + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(4620), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_object] = ACTIONS(4618), + [anon_sym_fun] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_this] = ACTIONS(4618), + [anon_sym_super] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [sym_label] = ACTIONS(4618), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_when] = ACTIONS(4618), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_throw] = ACTIONS(4618), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_suspend] = ACTIONS(4618), + [anon_sym_sealed] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4618), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_override] = ACTIONS(4618), + [anon_sym_lateinit] = ACTIONS(4618), + [anon_sym_public] = ACTIONS(4618), + [anon_sym_private] = ACTIONS(4618), + [anon_sym_internal] = ACTIONS(4618), + [anon_sym_protected] = ACTIONS(4618), + [anon_sym_tailrec] = ACTIONS(4618), + [anon_sym_operator] = ACTIONS(4618), + [anon_sym_infix] = ACTIONS(4618), + [anon_sym_inline] = ACTIONS(4618), + [anon_sym_external] = ACTIONS(4618), + [sym_property_modifier] = ACTIONS(4618), + [anon_sym_abstract] = ACTIONS(4618), + [anon_sym_final] = ACTIONS(4618), + [anon_sym_open] = ACTIONS(4618), + [anon_sym_vararg] = ACTIONS(4618), + [anon_sym_noinline] = ACTIONS(4618), + [anon_sym_crossinline] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4620), + [anon_sym_continue_AT] = ACTIONS(4620), + [anon_sym_break_AT] = ACTIONS(4620), + [anon_sym_this_AT] = ACTIONS(4620), + [anon_sym_super_AT] = ACTIONS(4620), + [sym_real_literal] = ACTIONS(4620), + [sym_integer_literal] = ACTIONS(4618), + [sym_hex_literal] = ACTIONS(4620), + [sym_bin_literal] = ACTIONS(4620), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4620), + [sym__backtick_identifier] = ACTIONS(4620), + [sym__automatic_semicolon] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4620), + }, + [1135] = { + [sym__alpha_identifier] = ACTIONS(5057), + [anon_sym_AT] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5057), + [anon_sym_as] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(5057), + [anon_sym_LBRACE] = ACTIONS(5059), + [anon_sym_RBRACE] = ACTIONS(5059), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_where] = ACTIONS(5057), + [anon_sym_object] = ACTIONS(5057), + [anon_sym_fun] = ACTIONS(5057), + [anon_sym_SEMI] = ACTIONS(5059), + [anon_sym_get] = ACTIONS(5057), + [anon_sym_set] = ACTIONS(5057), + [anon_sym_this] = ACTIONS(5057), + [anon_sym_super] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [sym_label] = ACTIONS(5057), + [anon_sym_in] = ACTIONS(5057), + [anon_sym_DOT_DOT] = ACTIONS(5059), + [anon_sym_QMARK_COLON] = ACTIONS(5059), + [anon_sym_AMP_AMP] = ACTIONS(5059), + [anon_sym_PIPE_PIPE] = ACTIONS(5059), + [anon_sym_null] = ACTIONS(5057), + [anon_sym_if] = ACTIONS(5057), + [anon_sym_else] = ACTIONS(5057), + [anon_sym_when] = ACTIONS(5057), + [anon_sym_try] = ACTIONS(5057), + [anon_sym_throw] = ACTIONS(5057), + [anon_sym_return] = ACTIONS(5057), + [anon_sym_continue] = ACTIONS(5057), + [anon_sym_break] = ACTIONS(5057), + [anon_sym_COLON_COLON] = ACTIONS(5059), + [anon_sym_PLUS_EQ] = ACTIONS(5059), + [anon_sym_DASH_EQ] = ACTIONS(5059), + [anon_sym_STAR_EQ] = ACTIONS(5059), + [anon_sym_SLASH_EQ] = ACTIONS(5059), + [anon_sym_PERCENT_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5059), + [anon_sym_GT_EQ] = ACTIONS(5059), + [anon_sym_BANGin] = ACTIONS(5059), + [anon_sym_is] = ACTIONS(5057), + [anon_sym_BANGis] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_PERCENT] = ACTIONS(5057), + [anon_sym_as_QMARK] = ACTIONS(5059), + [anon_sym_PLUS_PLUS] = ACTIONS(5059), + [anon_sym_DASH_DASH] = ACTIONS(5059), + [anon_sym_BANG] = ACTIONS(5057), + [anon_sym_BANG_BANG] = ACTIONS(5059), + [anon_sym_suspend] = ACTIONS(5057), + [anon_sym_sealed] = ACTIONS(5057), + [anon_sym_annotation] = ACTIONS(5057), + [anon_sym_data] = ACTIONS(5057), + [anon_sym_inner] = ACTIONS(5057), + [anon_sym_value] = ACTIONS(5057), + [anon_sym_override] = ACTIONS(5057), + [anon_sym_lateinit] = ACTIONS(5057), + [anon_sym_public] = ACTIONS(5057), + [anon_sym_private] = ACTIONS(5057), + [anon_sym_internal] = ACTIONS(5057), + [anon_sym_protected] = ACTIONS(5057), + [anon_sym_tailrec] = ACTIONS(5057), + [anon_sym_operator] = ACTIONS(5057), + [anon_sym_infix] = ACTIONS(5057), + [anon_sym_inline] = ACTIONS(5057), + [anon_sym_external] = ACTIONS(5057), + [sym_property_modifier] = ACTIONS(5057), + [anon_sym_abstract] = ACTIONS(5057), + [anon_sym_final] = ACTIONS(5057), + [anon_sym_open] = ACTIONS(5057), + [anon_sym_vararg] = ACTIONS(5057), + [anon_sym_noinline] = ACTIONS(5057), + [anon_sym_crossinline] = ACTIONS(5057), + [anon_sym_expect] = ACTIONS(5057), + [anon_sym_actual] = ACTIONS(5057), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5059), + [anon_sym_continue_AT] = ACTIONS(5059), + [anon_sym_break_AT] = ACTIONS(5059), + [anon_sym_this_AT] = ACTIONS(5059), + [anon_sym_super_AT] = ACTIONS(5059), + [sym_real_literal] = ACTIONS(5059), + [sym_integer_literal] = ACTIONS(5057), + [sym_hex_literal] = ACTIONS(5059), + [sym_bin_literal] = ACTIONS(5059), + [anon_sym_true] = ACTIONS(5057), + [anon_sym_false] = ACTIONS(5057), + [anon_sym_SQUOTE] = ACTIONS(5059), + [sym__backtick_identifier] = ACTIONS(5059), + [sym__automatic_semicolon] = ACTIONS(5059), + [sym_safe_nav] = ACTIONS(5059), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5059), + }, + [1136] = { + [sym_function_body] = STATE(1120), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), + }, + [1137] = { + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_object] = ACTIONS(4260), + [anon_sym_fun] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_this] = ACTIONS(4260), + [anon_sym_super] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [sym_label] = ACTIONS(4260), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_when] = ACTIONS(4260), + [anon_sym_try] = ACTIONS(4260), + [anon_sym_throw] = ACTIONS(4260), + [anon_sym_return] = ACTIONS(4260), + [anon_sym_continue] = ACTIONS(4260), + [anon_sym_break] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4260), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4260), + [anon_sym_false] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [1138] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_object] = ACTIONS(4343), + [anon_sym_fun] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_this] = ACTIONS(4343), + [anon_sym_super] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_null] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4345), + [anon_sym_continue_AT] = ACTIONS(4345), + [anon_sym_break_AT] = ACTIONS(4345), + [anon_sym_this_AT] = ACTIONS(4345), + [anon_sym_super_AT] = ACTIONS(4345), + [sym_real_literal] = ACTIONS(4345), + [sym_integer_literal] = ACTIONS(4343), + [sym_hex_literal] = ACTIONS(4345), + [sym_bin_literal] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [anon_sym_SQUOTE] = ACTIONS(4345), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4345), + }, + [1139] = { + [sym_function_body] = STATE(1068), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4172), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [1140] = { + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(1738), + [anon_sym_set] = ACTIONS(1738), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), + [anon_sym_suspend] = ACTIONS(1738), + [anon_sym_sealed] = ACTIONS(1738), + [anon_sym_annotation] = ACTIONS(1738), + [anon_sym_data] = ACTIONS(1738), + [anon_sym_inner] = ACTIONS(1738), + [anon_sym_value] = ACTIONS(1738), + [anon_sym_override] = ACTIONS(1738), + [anon_sym_lateinit] = ACTIONS(1738), + [anon_sym_public] = ACTIONS(1738), + [anon_sym_private] = ACTIONS(1738), + [anon_sym_internal] = ACTIONS(1738), + [anon_sym_protected] = ACTIONS(1738), + [anon_sym_tailrec] = ACTIONS(1738), + [anon_sym_operator] = ACTIONS(1738), + [anon_sym_infix] = ACTIONS(1738), + [anon_sym_inline] = ACTIONS(1738), + [anon_sym_external] = ACTIONS(1738), + [sym_property_modifier] = ACTIONS(1738), + [anon_sym_abstract] = ACTIONS(1738), + [anon_sym_final] = ACTIONS(1738), + [anon_sym_open] = ACTIONS(1738), + [anon_sym_vararg] = ACTIONS(1738), + [anon_sym_noinline] = ACTIONS(1738), + [anon_sym_crossinline] = ACTIONS(1738), + [anon_sym_expect] = ACTIONS(1738), + [anon_sym_actual] = ACTIONS(1738), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), + }, + [1141] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1142] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5067), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1143] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1144] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5071), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1145] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1146] = { + [sym_getter] = STATE(5128), + [sym_setter] = STATE(5128), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5075), + [anon_sym_get] = ACTIONS(5063), + [anon_sym_set] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(1764), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1147] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_object] = ACTIONS(5077), + [anon_sym_fun] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_this] = ACTIONS(5077), + [anon_sym_super] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5077), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5077), + [anon_sym_if] = ACTIONS(5077), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_when] = ACTIONS(5077), + [anon_sym_try] = ACTIONS(5077), + [anon_sym_throw] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5077), + [anon_sym_continue] = ACTIONS(5077), + [anon_sym_break] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5079), + [anon_sym_continue_AT] = ACTIONS(5079), + [anon_sym_break_AT] = ACTIONS(5079), + [anon_sym_this_AT] = ACTIONS(5079), + [anon_sym_super_AT] = ACTIONS(5079), + [sym_real_literal] = ACTIONS(5079), + [sym_integer_literal] = ACTIONS(5077), + [sym_hex_literal] = ACTIONS(5079), + [sym_bin_literal] = ACTIONS(5079), + [anon_sym_true] = ACTIONS(5077), + [anon_sym_false] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5079), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5079), + }, + [1148] = { [sym__alpha_identifier] = ACTIONS(5081), [anon_sym_AT] = ACTIONS(5083), [anon_sym_LBRACK] = ACTIONS(5083), @@ -175541,113 +177294,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5083), }, - [1135] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(5085), - [anon_sym_COMMA] = ACTIONS(4223), - [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_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), + [1149] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_object] = ACTIONS(5085), + [anon_sym_fun] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_this] = ACTIONS(5085), + [anon_sym_super] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [sym_label] = ACTIONS(5085), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_null] = ACTIONS(5085), + [anon_sym_if] = ACTIONS(5085), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_when] = ACTIONS(5085), + [anon_sym_try] = ACTIONS(5085), + [anon_sym_throw] = ACTIONS(5085), + [anon_sym_return] = ACTIONS(5085), + [anon_sym_continue] = ACTIONS(5085), + [anon_sym_break] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_suspend] = ACTIONS(5085), + [anon_sym_sealed] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_override] = ACTIONS(5085), + [anon_sym_lateinit] = ACTIONS(5085), + [anon_sym_public] = ACTIONS(5085), + [anon_sym_private] = ACTIONS(5085), + [anon_sym_internal] = ACTIONS(5085), + [anon_sym_protected] = ACTIONS(5085), + [anon_sym_tailrec] = ACTIONS(5085), + [anon_sym_operator] = ACTIONS(5085), + [anon_sym_infix] = ACTIONS(5085), + [anon_sym_inline] = ACTIONS(5085), + [anon_sym_external] = ACTIONS(5085), + [sym_property_modifier] = ACTIONS(5085), + [anon_sym_abstract] = ACTIONS(5085), + [anon_sym_final] = ACTIONS(5085), + [anon_sym_open] = ACTIONS(5085), + [anon_sym_vararg] = ACTIONS(5085), + [anon_sym_noinline] = ACTIONS(5085), + [anon_sym_crossinline] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5087), + [anon_sym_continue_AT] = ACTIONS(5087), + [anon_sym_break_AT] = ACTIONS(5087), + [anon_sym_this_AT] = ACTIONS(5087), + [anon_sym_super_AT] = ACTIONS(5087), + [sym_real_literal] = ACTIONS(5087), + [sym_integer_literal] = ACTIONS(5085), + [sym_hex_literal] = ACTIONS(5087), + [sym_bin_literal] = ACTIONS(5087), + [anon_sym_true] = ACTIONS(5085), + [anon_sym_false] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5087), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5087), }, - [1136] = { + [1150] = { + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_object] = ACTIONS(4412), + [anon_sym_fun] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_this] = ACTIONS(4412), + [anon_sym_super] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_null] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_try] = ACTIONS(4412), + [anon_sym_throw] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_suspend] = ACTIONS(4412), + [anon_sym_sealed] = ACTIONS(4412), + [anon_sym_annotation] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_override] = ACTIONS(4412), + [anon_sym_lateinit] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_internal] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_tailrec] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_infix] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym_external] = ACTIONS(4412), + [sym_property_modifier] = ACTIONS(4412), + [anon_sym_abstract] = ACTIONS(4412), + [anon_sym_final] = ACTIONS(4412), + [anon_sym_open] = ACTIONS(4412), + [anon_sym_vararg] = ACTIONS(4412), + [anon_sym_noinline] = ACTIONS(4412), + [anon_sym_crossinline] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4414), + [anon_sym_continue_AT] = ACTIONS(4414), + [anon_sym_break_AT] = ACTIONS(4414), + [anon_sym_this_AT] = ACTIONS(4414), + [anon_sym_super_AT] = ACTIONS(4414), + [sym_real_literal] = ACTIONS(4414), + [sym_integer_literal] = ACTIONS(4412), + [sym_hex_literal] = ACTIONS(4414), + [sym_bin_literal] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4412), + [anon_sym_false] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4414), + [sym__backtick_identifier] = ACTIONS(4414), + [sym__automatic_semicolon] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4414), + }, + [1151] = { [sym__alpha_identifier] = ACTIONS(5089), [anon_sym_AT] = ACTIONS(5091), [anon_sym_LBRACK] = ACTIONS(5091), @@ -175753,113 +177612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5091), }, - [1137] = { - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [1138] = { + [1152] = { [sym__alpha_identifier] = ACTIONS(5093), [anon_sym_AT] = ACTIONS(5095), [anon_sym_LBRACK] = ACTIONS(5095), @@ -175965,113 +177718,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5095), }, - [1139] = { - [sym__alpha_identifier] = ACTIONS(5097), - [anon_sym_AT] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_as] = ACTIONS(5097), - [anon_sym_EQ] = ACTIONS(5097), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_where] = ACTIONS(5097), - [anon_sym_object] = ACTIONS(5097), - [anon_sym_fun] = ACTIONS(5097), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_get] = ACTIONS(5097), - [anon_sym_set] = ACTIONS(5097), - [anon_sym_this] = ACTIONS(5097), - [anon_sym_super] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [sym_label] = ACTIONS(5097), - [anon_sym_in] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_QMARK_COLON] = ACTIONS(5099), - [anon_sym_AMP_AMP] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5099), - [anon_sym_null] = ACTIONS(5097), - [anon_sym_if] = ACTIONS(5097), - [anon_sym_else] = ACTIONS(5097), - [anon_sym_when] = ACTIONS(5097), - [anon_sym_try] = ACTIONS(5097), - [anon_sym_throw] = ACTIONS(5097), - [anon_sym_return] = ACTIONS(5097), - [anon_sym_continue] = ACTIONS(5097), - [anon_sym_break] = ACTIONS(5097), - [anon_sym_COLON_COLON] = ACTIONS(5099), - [anon_sym_PLUS_EQ] = ACTIONS(5099), - [anon_sym_DASH_EQ] = ACTIONS(5099), - [anon_sym_STAR_EQ] = ACTIONS(5099), - [anon_sym_SLASH_EQ] = ACTIONS(5099), - [anon_sym_PERCENT_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ] = ACTIONS(5097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_BANGin] = ACTIONS(5099), - [anon_sym_is] = ACTIONS(5097), - [anon_sym_BANGis] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_PERCENT] = ACTIONS(5097), - [anon_sym_as_QMARK] = ACTIONS(5099), - [anon_sym_PLUS_PLUS] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_BANG_BANG] = ACTIONS(5099), - [anon_sym_suspend] = ACTIONS(5097), - [anon_sym_sealed] = ACTIONS(5097), - [anon_sym_annotation] = ACTIONS(5097), - [anon_sym_data] = ACTIONS(5097), - [anon_sym_inner] = ACTIONS(5097), - [anon_sym_value] = ACTIONS(5097), - [anon_sym_override] = ACTIONS(5097), - [anon_sym_lateinit] = ACTIONS(5097), - [anon_sym_public] = ACTIONS(5097), - [anon_sym_private] = ACTIONS(5097), - [anon_sym_internal] = ACTIONS(5097), - [anon_sym_protected] = ACTIONS(5097), - [anon_sym_tailrec] = ACTIONS(5097), - [anon_sym_operator] = ACTIONS(5097), - [anon_sym_infix] = ACTIONS(5097), - [anon_sym_inline] = ACTIONS(5097), - [anon_sym_external] = ACTIONS(5097), - [sym_property_modifier] = ACTIONS(5097), - [anon_sym_abstract] = ACTIONS(5097), - [anon_sym_final] = ACTIONS(5097), - [anon_sym_open] = ACTIONS(5097), - [anon_sym_vararg] = ACTIONS(5097), - [anon_sym_noinline] = ACTIONS(5097), - [anon_sym_crossinline] = ACTIONS(5097), - [anon_sym_expect] = ACTIONS(5097), - [anon_sym_actual] = ACTIONS(5097), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5099), - [anon_sym_continue_AT] = ACTIONS(5099), - [anon_sym_break_AT] = ACTIONS(5099), - [anon_sym_this_AT] = ACTIONS(5099), - [anon_sym_super_AT] = ACTIONS(5099), - [sym_real_literal] = ACTIONS(5099), - [sym_integer_literal] = ACTIONS(5097), - [sym_hex_literal] = ACTIONS(5099), - [sym_bin_literal] = ACTIONS(5099), - [anon_sym_true] = ACTIONS(5097), - [anon_sym_false] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5099), - [sym__backtick_identifier] = ACTIONS(5099), - [sym__automatic_semicolon] = ACTIONS(5099), - [sym_safe_nav] = ACTIONS(5099), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5099), + [1153] = { + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, - [1140] = { + [1154] = { + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1754), + [anon_sym_set] = ACTIONS(1754), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), + [anon_sym_suspend] = ACTIONS(1754), + [anon_sym_sealed] = ACTIONS(1754), + [anon_sym_annotation] = ACTIONS(1754), + [anon_sym_data] = ACTIONS(1754), + [anon_sym_inner] = ACTIONS(1754), + [anon_sym_value] = ACTIONS(1754), + [anon_sym_override] = ACTIONS(1754), + [anon_sym_lateinit] = ACTIONS(1754), + [anon_sym_public] = ACTIONS(1754), + [anon_sym_private] = ACTIONS(1754), + [anon_sym_internal] = ACTIONS(1754), + [anon_sym_protected] = ACTIONS(1754), + [anon_sym_tailrec] = ACTIONS(1754), + [anon_sym_operator] = ACTIONS(1754), + [anon_sym_infix] = ACTIONS(1754), + [anon_sym_inline] = ACTIONS(1754), + [anon_sym_external] = ACTIONS(1754), + [sym_property_modifier] = ACTIONS(1754), + [anon_sym_abstract] = ACTIONS(1754), + [anon_sym_final] = ACTIONS(1754), + [anon_sym_open] = ACTIONS(1754), + [anon_sym_vararg] = ACTIONS(1754), + [anon_sym_noinline] = ACTIONS(1754), + [anon_sym_crossinline] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(1754), + [anon_sym_actual] = ACTIONS(1754), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), + }, + [1155] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_this] = ACTIONS(123), + [anon_sym_super] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [sym_label] = ACTIONS(123), + [anon_sym_in] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_break] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(123), + [anon_sym_annotation] = ACTIONS(123), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_override] = ACTIONS(123), + [anon_sym_lateinit] = ACTIONS(123), + [anon_sym_public] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_internal] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_tailrec] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(123), + [anon_sym_infix] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_external] = ACTIONS(123), + [sym_property_modifier] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_final] = ACTIONS(123), + [anon_sym_open] = ACTIONS(123), + [anon_sym_vararg] = ACTIONS(123), + [anon_sym_noinline] = ACTIONS(123), + [anon_sym_crossinline] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(121), + [anon_sym_continue_AT] = ACTIONS(121), + [anon_sym_break_AT] = ACTIONS(121), + [anon_sym_this_AT] = ACTIONS(121), + [anon_sym_super_AT] = ACTIONS(121), + [sym_real_literal] = ACTIONS(121), + [sym_integer_literal] = ACTIONS(123), + [sym_hex_literal] = ACTIONS(121), + [sym_bin_literal] = ACTIONS(121), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), + [anon_sym_SQUOTE] = ACTIONS(121), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(121), + }, + [1156] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [1157] = { [sym__alpha_identifier] = ACTIONS(5101), [anon_sym_AT] = ACTIONS(5103), [anon_sym_LBRACK] = ACTIONS(5103), @@ -176177,643 +178248,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5103), }, - [1141] = { - [sym__alpha_identifier] = ACTIONS(4920), - [anon_sym_AT] = ACTIONS(4922), - [anon_sym_LBRACK] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4920), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4922), - [anon_sym_RBRACE] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_where] = ACTIONS(4920), - [anon_sym_object] = ACTIONS(4920), - [anon_sym_fun] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4922), - [anon_sym_get] = ACTIONS(4920), - [anon_sym_set] = ACTIONS(4920), - [anon_sym_this] = ACTIONS(4920), - [anon_sym_super] = ACTIONS(4920), - [anon_sym_STAR] = ACTIONS(4920), - [sym_label] = ACTIONS(4920), - [anon_sym_in] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_QMARK_COLON] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_null] = ACTIONS(4920), - [anon_sym_if] = ACTIONS(4920), - [anon_sym_else] = ACTIONS(4920), - [anon_sym_when] = ACTIONS(4920), - [anon_sym_try] = ACTIONS(4920), - [anon_sym_throw] = ACTIONS(4920), - [anon_sym_return] = ACTIONS(4920), - [anon_sym_continue] = ACTIONS(4920), - [anon_sym_break] = ACTIONS(4920), - [anon_sym_COLON_COLON] = ACTIONS(4922), - [anon_sym_PLUS_EQ] = ACTIONS(4922), - [anon_sym_DASH_EQ] = ACTIONS(4922), - [anon_sym_STAR_EQ] = ACTIONS(4922), - [anon_sym_SLASH_EQ] = ACTIONS(4922), - [anon_sym_PERCENT_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_BANGin] = ACTIONS(4922), - [anon_sym_is] = ACTIONS(4920), - [anon_sym_BANGis] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_as_QMARK] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4922), - [anon_sym_BANG] = ACTIONS(4920), - [anon_sym_BANG_BANG] = ACTIONS(4922), - [anon_sym_suspend] = ACTIONS(4920), - [anon_sym_sealed] = ACTIONS(4920), - [anon_sym_annotation] = ACTIONS(4920), - [anon_sym_data] = ACTIONS(4920), - [anon_sym_inner] = ACTIONS(4920), - [anon_sym_value] = ACTIONS(4920), - [anon_sym_override] = ACTIONS(4920), - [anon_sym_lateinit] = ACTIONS(4920), - [anon_sym_public] = ACTIONS(4920), - [anon_sym_private] = ACTIONS(4920), - [anon_sym_internal] = ACTIONS(4920), - [anon_sym_protected] = ACTIONS(4920), - [anon_sym_tailrec] = ACTIONS(4920), - [anon_sym_operator] = ACTIONS(4920), - [anon_sym_infix] = ACTIONS(4920), - [anon_sym_inline] = ACTIONS(4920), - [anon_sym_external] = ACTIONS(4920), - [sym_property_modifier] = ACTIONS(4920), - [anon_sym_abstract] = ACTIONS(4920), - [anon_sym_final] = ACTIONS(4920), - [anon_sym_open] = ACTIONS(4920), - [anon_sym_vararg] = ACTIONS(4920), - [anon_sym_noinline] = ACTIONS(4920), - [anon_sym_crossinline] = ACTIONS(4920), - [anon_sym_expect] = ACTIONS(4920), - [anon_sym_actual] = ACTIONS(4920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4922), - [anon_sym_continue_AT] = ACTIONS(4922), - [anon_sym_break_AT] = ACTIONS(4922), - [anon_sym_this_AT] = ACTIONS(4922), - [anon_sym_super_AT] = ACTIONS(4922), - [sym_real_literal] = ACTIONS(4922), - [sym_integer_literal] = ACTIONS(4920), - [sym_hex_literal] = ACTIONS(4922), - [sym_bin_literal] = ACTIONS(4922), - [anon_sym_true] = ACTIONS(4920), - [anon_sym_false] = ACTIONS(4920), - [anon_sym_SQUOTE] = ACTIONS(4922), - [sym__backtick_identifier] = ACTIONS(4922), - [sym__automatic_semicolon] = ACTIONS(4922), - [sym_safe_nav] = ACTIONS(4922), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4922), - }, - [1142] = { - [sym__alpha_identifier] = ACTIONS(5105), - [anon_sym_AT] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_as] = ACTIONS(5105), - [anon_sym_EQ] = ACTIONS(5105), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_RBRACE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_where] = ACTIONS(5105), - [anon_sym_object] = ACTIONS(5105), - [anon_sym_fun] = ACTIONS(5105), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_get] = ACTIONS(5105), - [anon_sym_set] = ACTIONS(5105), - [anon_sym_this] = ACTIONS(5105), - [anon_sym_super] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [sym_label] = ACTIONS(5105), - [anon_sym_in] = ACTIONS(5105), - [anon_sym_DOT_DOT] = ACTIONS(5107), - [anon_sym_QMARK_COLON] = ACTIONS(5107), - [anon_sym_AMP_AMP] = ACTIONS(5107), - [anon_sym_PIPE_PIPE] = ACTIONS(5107), - [anon_sym_null] = ACTIONS(5105), - [anon_sym_if] = ACTIONS(5105), - [anon_sym_else] = ACTIONS(5105), - [anon_sym_when] = ACTIONS(5105), - [anon_sym_try] = ACTIONS(5105), - [anon_sym_throw] = ACTIONS(5105), - [anon_sym_return] = ACTIONS(5105), - [anon_sym_continue] = ACTIONS(5105), - [anon_sym_break] = ACTIONS(5105), - [anon_sym_COLON_COLON] = ACTIONS(5107), - [anon_sym_PLUS_EQ] = ACTIONS(5107), - [anon_sym_DASH_EQ] = ACTIONS(5107), - [anon_sym_STAR_EQ] = ACTIONS(5107), - [anon_sym_SLASH_EQ] = ACTIONS(5107), - [anon_sym_PERCENT_EQ] = ACTIONS(5107), - [anon_sym_BANG_EQ] = ACTIONS(5105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5107), - [anon_sym_EQ_EQ] = ACTIONS(5105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5107), - [anon_sym_LT_EQ] = ACTIONS(5107), - [anon_sym_GT_EQ] = ACTIONS(5107), - [anon_sym_BANGin] = ACTIONS(5107), - [anon_sym_is] = ACTIONS(5105), - [anon_sym_BANGis] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5105), - [anon_sym_as_QMARK] = ACTIONS(5107), - [anon_sym_PLUS_PLUS] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_BANG_BANG] = ACTIONS(5107), - [anon_sym_suspend] = ACTIONS(5105), - [anon_sym_sealed] = ACTIONS(5105), - [anon_sym_annotation] = ACTIONS(5105), - [anon_sym_data] = ACTIONS(5105), - [anon_sym_inner] = ACTIONS(5105), - [anon_sym_value] = ACTIONS(5105), - [anon_sym_override] = ACTIONS(5105), - [anon_sym_lateinit] = ACTIONS(5105), - [anon_sym_public] = ACTIONS(5105), - [anon_sym_private] = ACTIONS(5105), - [anon_sym_internal] = ACTIONS(5105), - [anon_sym_protected] = ACTIONS(5105), - [anon_sym_tailrec] = ACTIONS(5105), - [anon_sym_operator] = ACTIONS(5105), - [anon_sym_infix] = ACTIONS(5105), - [anon_sym_inline] = ACTIONS(5105), - [anon_sym_external] = ACTIONS(5105), - [sym_property_modifier] = ACTIONS(5105), - [anon_sym_abstract] = ACTIONS(5105), - [anon_sym_final] = ACTIONS(5105), - [anon_sym_open] = ACTIONS(5105), - [anon_sym_vararg] = ACTIONS(5105), - [anon_sym_noinline] = ACTIONS(5105), - [anon_sym_crossinline] = ACTIONS(5105), - [anon_sym_expect] = ACTIONS(5105), - [anon_sym_actual] = ACTIONS(5105), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5107), - [anon_sym_continue_AT] = ACTIONS(5107), - [anon_sym_break_AT] = ACTIONS(5107), - [anon_sym_this_AT] = ACTIONS(5107), - [anon_sym_super_AT] = ACTIONS(5107), - [sym_real_literal] = ACTIONS(5107), - [sym_integer_literal] = ACTIONS(5105), - [sym_hex_literal] = ACTIONS(5107), - [sym_bin_literal] = ACTIONS(5107), - [anon_sym_true] = ACTIONS(5105), - [anon_sym_false] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5107), - [sym__backtick_identifier] = ACTIONS(5107), - [sym__automatic_semicolon] = ACTIONS(5107), - [sym_safe_nav] = ACTIONS(5107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5107), - }, - [1143] = { - [sym__alpha_identifier] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3189), - [anon_sym_set] = ACTIONS(3189), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [sym_label] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_QMARK_COLON] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3191), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_as_QMARK] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(3191), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3189), - [anon_sym_inner] = ACTIONS(3189), - [anon_sym_value] = ACTIONS(3189), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3189), - [anon_sym_actual] = ACTIONS(3189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(3191), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(3191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), + [1158] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, - [1144] = { - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4175), - [anon_sym_LBRACE] = ACTIONS(4177), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [1159] = { + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [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_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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, - [1145] = { - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [1160] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_DOT] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5111), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_object] = ACTIONS(5109), + [anon_sym_fun] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5109), + [anon_sym_set] = ACTIONS(5109), + [anon_sym_this] = ACTIONS(5109), + [anon_sym_super] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [sym_label] = ACTIONS(5109), + [anon_sym_in] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5111), + [anon_sym_QMARK_COLON] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5111), + [anon_sym_null] = ACTIONS(5109), + [anon_sym_if] = ACTIONS(5109), + [anon_sym_else] = ACTIONS(5109), + [anon_sym_when] = ACTIONS(5109), + [anon_sym_try] = ACTIONS(5109), + [anon_sym_throw] = ACTIONS(5109), + [anon_sym_return] = ACTIONS(5109), + [anon_sym_continue] = ACTIONS(5109), + [anon_sym_break] = ACTIONS(5109), + [anon_sym_COLON_COLON] = ACTIONS(5111), + [anon_sym_PLUS_EQ] = ACTIONS(5111), + [anon_sym_DASH_EQ] = ACTIONS(5111), + [anon_sym_STAR_EQ] = ACTIONS(5111), + [anon_sym_SLASH_EQ] = ACTIONS(5111), + [anon_sym_PERCENT_EQ] = ACTIONS(5111), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_BANGin] = ACTIONS(5111), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_BANGis] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_as_QMARK] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5111), + [anon_sym_BANG] = ACTIONS(5109), + [anon_sym_BANG_BANG] = ACTIONS(5111), + [anon_sym_suspend] = ACTIONS(5109), + [anon_sym_sealed] = ACTIONS(5109), + [anon_sym_annotation] = ACTIONS(5109), + [anon_sym_data] = ACTIONS(5109), + [anon_sym_inner] = ACTIONS(5109), + [anon_sym_value] = ACTIONS(5109), + [anon_sym_override] = ACTIONS(5109), + [anon_sym_lateinit] = ACTIONS(5109), + [anon_sym_public] = ACTIONS(5109), + [anon_sym_private] = ACTIONS(5109), + [anon_sym_internal] = ACTIONS(5109), + [anon_sym_protected] = ACTIONS(5109), + [anon_sym_tailrec] = ACTIONS(5109), + [anon_sym_operator] = ACTIONS(5109), + [anon_sym_infix] = ACTIONS(5109), + [anon_sym_inline] = ACTIONS(5109), + [anon_sym_external] = ACTIONS(5109), + [sym_property_modifier] = ACTIONS(5109), + [anon_sym_abstract] = ACTIONS(5109), + [anon_sym_final] = ACTIONS(5109), + [anon_sym_open] = ACTIONS(5109), + [anon_sym_vararg] = ACTIONS(5109), + [anon_sym_noinline] = ACTIONS(5109), + [anon_sym_crossinline] = ACTIONS(5109), + [anon_sym_expect] = ACTIONS(5109), + [anon_sym_actual] = ACTIONS(5109), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5111), + [anon_sym_continue_AT] = ACTIONS(5111), + [anon_sym_break_AT] = ACTIONS(5111), + [anon_sym_this_AT] = ACTIONS(5111), + [anon_sym_super_AT] = ACTIONS(5111), + [sym_real_literal] = ACTIONS(5111), + [sym_integer_literal] = ACTIONS(5109), + [sym_hex_literal] = ACTIONS(5111), + [sym_bin_literal] = ACTIONS(5111), + [anon_sym_true] = ACTIONS(5109), + [anon_sym_false] = ACTIONS(5109), + [anon_sym_SQUOTE] = ACTIONS(5111), + [sym__backtick_identifier] = ACTIONS(5111), + [sym__automatic_semicolon] = ACTIONS(5111), + [sym_safe_nav] = ACTIONS(5111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5111), }, - [1146] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [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), + [1161] = { + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4613), + [anon_sym_super_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), }, - [1147] = { + [1162] = { [sym__alpha_identifier] = ACTIONS(5113), [anon_sym_AT] = ACTIONS(5115), [anon_sym_LBRACK] = ACTIONS(5115), @@ -176919,7 +178778,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5115), }, - [1148] = { + [1163] = { + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [1164] = { [sym__alpha_identifier] = ACTIONS(5117), [anon_sym_AT] = ACTIONS(5119), [anon_sym_LBRACK] = ACTIONS(5119), @@ -177025,7 +178990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5119), }, - [1149] = { + [1165] = { [sym__alpha_identifier] = ACTIONS(5121), [anon_sym_AT] = ACTIONS(5123), [anon_sym_LBRACK] = ACTIONS(5123), @@ -177131,7 +179096,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5123), }, - [1150] = { + [1166] = { + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [1167] = { + [sym__alpha_identifier] = ACTIONS(4607), + [anon_sym_AT] = ACTIONS(4609), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(4609), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_where] = ACTIONS(4607), + [anon_sym_object] = ACTIONS(4607), + [anon_sym_fun] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4609), + [anon_sym_get] = ACTIONS(4607), + [anon_sym_set] = ACTIONS(4607), + [anon_sym_this] = ACTIONS(4607), + [anon_sym_super] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [sym_label] = ACTIONS(4607), + [anon_sym_in] = ACTIONS(4607), + [anon_sym_DOT_DOT] = ACTIONS(4609), + [anon_sym_QMARK_COLON] = ACTIONS(4609), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4609), + [anon_sym_null] = ACTIONS(4607), + [anon_sym_if] = ACTIONS(4607), + [anon_sym_else] = ACTIONS(4607), + [anon_sym_when] = ACTIONS(4607), + [anon_sym_try] = ACTIONS(4607), + [anon_sym_throw] = ACTIONS(4607), + [anon_sym_return] = ACTIONS(4607), + [anon_sym_continue] = ACTIONS(4607), + [anon_sym_break] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4609), + [anon_sym_PLUS_EQ] = ACTIONS(4609), + [anon_sym_DASH_EQ] = ACTIONS(4609), + [anon_sym_STAR_EQ] = ACTIONS(4609), + [anon_sym_SLASH_EQ] = ACTIONS(4609), + [anon_sym_PERCENT_EQ] = ACTIONS(4609), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4609), + [anon_sym_BANGin] = ACTIONS(4609), + [anon_sym_is] = ACTIONS(4607), + [anon_sym_BANGis] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_as_QMARK] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4609), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_BANG_BANG] = ACTIONS(4609), + [anon_sym_suspend] = ACTIONS(4607), + [anon_sym_sealed] = ACTIONS(4607), + [anon_sym_annotation] = ACTIONS(4607), + [anon_sym_data] = ACTIONS(4607), + [anon_sym_inner] = ACTIONS(4607), + [anon_sym_value] = ACTIONS(4607), + [anon_sym_override] = ACTIONS(4607), + [anon_sym_lateinit] = ACTIONS(4607), + [anon_sym_public] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4607), + [anon_sym_internal] = ACTIONS(4607), + [anon_sym_protected] = ACTIONS(4607), + [anon_sym_tailrec] = ACTIONS(4607), + [anon_sym_operator] = ACTIONS(4607), + [anon_sym_infix] = ACTIONS(4607), + [anon_sym_inline] = ACTIONS(4607), + [anon_sym_external] = ACTIONS(4607), + [sym_property_modifier] = ACTIONS(4607), + [anon_sym_abstract] = ACTIONS(4607), + [anon_sym_final] = ACTIONS(4607), + [anon_sym_open] = ACTIONS(4607), + [anon_sym_vararg] = ACTIONS(4607), + [anon_sym_noinline] = ACTIONS(4607), + [anon_sym_crossinline] = ACTIONS(4607), + [anon_sym_expect] = ACTIONS(4607), + [anon_sym_actual] = ACTIONS(4607), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4609), + [anon_sym_continue_AT] = ACTIONS(4609), + [anon_sym_break_AT] = ACTIONS(4609), + [anon_sym_this_AT] = ACTIONS(4609), + [anon_sym_super_AT] = ACTIONS(4609), + [sym_real_literal] = ACTIONS(4609), + [sym_integer_literal] = ACTIONS(4607), + [sym_hex_literal] = ACTIONS(4609), + [sym_bin_literal] = ACTIONS(4609), + [anon_sym_true] = ACTIONS(4607), + [anon_sym_false] = ACTIONS(4607), + [anon_sym_SQUOTE] = ACTIONS(4609), + [sym__backtick_identifier] = ACTIONS(4609), + [sym__automatic_semicolon] = ACTIONS(4609), + [sym_safe_nav] = ACTIONS(4609), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4609), + }, + [1168] = { [sym__alpha_identifier] = ACTIONS(5125), [anon_sym_AT] = ACTIONS(5127), [anon_sym_LBRACK] = ACTIONS(5127), @@ -177237,219 +179414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5127), }, - [1151] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(1790), - [anon_sym_sealed] = ACTIONS(1790), - [anon_sym_annotation] = ACTIONS(1790), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_override] = ACTIONS(1790), - [anon_sym_lateinit] = ACTIONS(1790), - [anon_sym_public] = ACTIONS(1790), - [anon_sym_private] = ACTIONS(1790), - [anon_sym_internal] = ACTIONS(1790), - [anon_sym_protected] = ACTIONS(1790), - [anon_sym_tailrec] = ACTIONS(1790), - [anon_sym_operator] = ACTIONS(1790), - [anon_sym_infix] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_external] = ACTIONS(1790), - [sym_property_modifier] = ACTIONS(1790), - [anon_sym_abstract] = ACTIONS(1790), - [anon_sym_final] = ACTIONS(1790), - [anon_sym_open] = ACTIONS(1790), - [anon_sym_vararg] = ACTIONS(1790), - [anon_sym_noinline] = ACTIONS(1790), - [anon_sym_crossinline] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [1152] = { - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(4260), - [anon_sym_LBRACE] = ACTIONS(4262), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), - [anon_sym_object] = ACTIONS(4260), - [anon_sym_fun] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_this] = ACTIONS(4260), - [anon_sym_super] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [anon_sym_try] = ACTIONS(4260), - [anon_sym_throw] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_PLUS_EQ] = ACTIONS(4262), - [anon_sym_DASH_EQ] = ACTIONS(4262), - [anon_sym_STAR_EQ] = ACTIONS(4262), - [anon_sym_SLASH_EQ] = ACTIONS(4262), - [anon_sym_PERCENT_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4262), - [anon_sym_continue_AT] = ACTIONS(4262), - [anon_sym_break_AT] = ACTIONS(4262), - [anon_sym_this_AT] = ACTIONS(4262), - [anon_sym_super_AT] = ACTIONS(4262), - [sym_real_literal] = ACTIONS(4262), - [sym_integer_literal] = ACTIONS(4260), - [sym_hex_literal] = ACTIONS(4262), - [sym_bin_literal] = ACTIONS(4262), - [anon_sym_true] = ACTIONS(4260), - [anon_sym_false] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4262), - [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4262), - }, - [1153] = { + [1169] = { [sym__alpha_identifier] = ACTIONS(5129), [anon_sym_AT] = ACTIONS(5131), [anon_sym_LBRACK] = ACTIONS(5131), @@ -177555,7 +179520,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5131), }, - [1154] = { + [1170] = { + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [1171] = { [sym__alpha_identifier] = ACTIONS(5133), [anon_sym_AT] = ACTIONS(5135), [anon_sym_LBRACK] = ACTIONS(5135), @@ -177661,219 +179732,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5135), }, - [1155] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [1172] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4806), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [1156] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(4223), - [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_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4223), - [anon_sym_DASH_EQ] = ACTIONS(4223), - [anon_sym_STAR_EQ] = ACTIONS(4223), - [anon_sym_SLASH_EQ] = ACTIONS(4223), - [anon_sym_PERCENT_EQ] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), + [1173] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(4798), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4217), + [anon_sym_DASH_EQ] = ACTIONS(4217), + [anon_sym_STAR_EQ] = ACTIONS(4217), + [anon_sym_SLASH_EQ] = ACTIONS(4217), + [anon_sym_PERCENT_EQ] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, - [1157] = { + [1174] = { + [sym__alpha_identifier] = ACTIONS(5137), + [anon_sym_AT] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_object] = ACTIONS(5137), + [anon_sym_fun] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5137), + [anon_sym_set] = ACTIONS(5137), + [anon_sym_this] = ACTIONS(5137), + [anon_sym_super] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5137), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_QMARK_COLON] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_null] = ACTIONS(5137), + [anon_sym_if] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5137), + [anon_sym_when] = ACTIONS(5137), + [anon_sym_try] = ACTIONS(5137), + [anon_sym_throw] = ACTIONS(5137), + [anon_sym_return] = ACTIONS(5137), + [anon_sym_continue] = ACTIONS(5137), + [anon_sym_break] = ACTIONS(5137), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_PLUS_EQ] = ACTIONS(5139), + [anon_sym_DASH_EQ] = ACTIONS(5139), + [anon_sym_STAR_EQ] = ACTIONS(5139), + [anon_sym_SLASH_EQ] = ACTIONS(5139), + [anon_sym_PERCENT_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_BANGin] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5137), + [anon_sym_BANGis] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5137), + [anon_sym_as_QMARK] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5139), + [anon_sym_suspend] = ACTIONS(5137), + [anon_sym_sealed] = ACTIONS(5137), + [anon_sym_annotation] = ACTIONS(5137), + [anon_sym_data] = ACTIONS(5137), + [anon_sym_inner] = ACTIONS(5137), + [anon_sym_value] = ACTIONS(5137), + [anon_sym_override] = ACTIONS(5137), + [anon_sym_lateinit] = ACTIONS(5137), + [anon_sym_public] = ACTIONS(5137), + [anon_sym_private] = ACTIONS(5137), + [anon_sym_internal] = ACTIONS(5137), + [anon_sym_protected] = ACTIONS(5137), + [anon_sym_tailrec] = ACTIONS(5137), + [anon_sym_operator] = ACTIONS(5137), + [anon_sym_infix] = ACTIONS(5137), + [anon_sym_inline] = ACTIONS(5137), + [anon_sym_external] = ACTIONS(5137), + [sym_property_modifier] = ACTIONS(5137), + [anon_sym_abstract] = ACTIONS(5137), + [anon_sym_final] = ACTIONS(5137), + [anon_sym_open] = ACTIONS(5137), + [anon_sym_vararg] = ACTIONS(5137), + [anon_sym_noinline] = ACTIONS(5137), + [anon_sym_crossinline] = ACTIONS(5137), + [anon_sym_expect] = ACTIONS(5137), + [anon_sym_actual] = ACTIONS(5137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5139), + [anon_sym_continue_AT] = ACTIONS(5139), + [anon_sym_break_AT] = ACTIONS(5139), + [anon_sym_this_AT] = ACTIONS(5139), + [anon_sym_super_AT] = ACTIONS(5139), + [sym_real_literal] = ACTIONS(5139), + [sym_integer_literal] = ACTIONS(5137), + [sym_hex_literal] = ACTIONS(5139), + [sym_bin_literal] = ACTIONS(5139), + [anon_sym_true] = ACTIONS(5137), + [anon_sym_false] = ACTIONS(5137), + [anon_sym_SQUOTE] = ACTIONS(5139), + [sym__backtick_identifier] = ACTIONS(5139), + [sym__automatic_semicolon] = ACTIONS(5139), + [sym_safe_nav] = ACTIONS(5139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5139), + }, + [1175] = { [sym__alpha_identifier] = ACTIONS(5141), [anon_sym_AT] = ACTIONS(5143), [anon_sym_LBRACK] = ACTIONS(5143), @@ -177979,219 +180156,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5143), }, - [1158] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), + [1176] = { + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [1159] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4228), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), + [1177] = { + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_object] = ACTIONS(5145), + [anon_sym_fun] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_this] = ACTIONS(5145), + [anon_sym_super] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(5145), + [anon_sym_if] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_when] = ACTIONS(5145), + [anon_sym_try] = ACTIONS(5145), + [anon_sym_throw] = ACTIONS(5145), + [anon_sym_return] = ACTIONS(5145), + [anon_sym_continue] = ACTIONS(5145), + [anon_sym_break] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_suspend] = ACTIONS(5145), + [anon_sym_sealed] = ACTIONS(5145), + [anon_sym_annotation] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_lateinit] = ACTIONS(5145), + [anon_sym_public] = ACTIONS(5145), + [anon_sym_private] = ACTIONS(5145), + [anon_sym_internal] = ACTIONS(5145), + [anon_sym_protected] = ACTIONS(5145), + [anon_sym_tailrec] = ACTIONS(5145), + [anon_sym_operator] = ACTIONS(5145), + [anon_sym_infix] = ACTIONS(5145), + [anon_sym_inline] = ACTIONS(5145), + [anon_sym_external] = ACTIONS(5145), + [sym_property_modifier] = ACTIONS(5145), + [anon_sym_abstract] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_open] = ACTIONS(5145), + [anon_sym_vararg] = ACTIONS(5145), + [anon_sym_noinline] = ACTIONS(5145), + [anon_sym_crossinline] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5147), + [anon_sym_continue_AT] = ACTIONS(5147), + [anon_sym_break_AT] = ACTIONS(5147), + [anon_sym_this_AT] = ACTIONS(5147), + [anon_sym_super_AT] = ACTIONS(5147), + [sym_real_literal] = ACTIONS(5147), + [sym_integer_literal] = ACTIONS(5145), + [sym_hex_literal] = ACTIONS(5147), + [sym_bin_literal] = ACTIONS(5147), + [anon_sym_true] = ACTIONS(5145), + [anon_sym_false] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5147), + [sym__backtick_identifier] = ACTIONS(5147), + [sym__automatic_semicolon] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5147), }, - [1160] = { + [1178] = { + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_suspend] = ACTIONS(1744), + [anon_sym_sealed] = ACTIONS(1744), + [anon_sym_annotation] = ACTIONS(1744), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(1744), + [anon_sym_lateinit] = ACTIONS(1744), + [anon_sym_public] = ACTIONS(1744), + [anon_sym_private] = ACTIONS(1744), + [anon_sym_internal] = ACTIONS(1744), + [anon_sym_protected] = ACTIONS(1744), + [anon_sym_tailrec] = ACTIONS(1744), + [anon_sym_operator] = ACTIONS(1744), + [anon_sym_infix] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym_external] = ACTIONS(1744), + [sym_property_modifier] = ACTIONS(1744), + [anon_sym_abstract] = ACTIONS(1744), + [anon_sym_final] = ACTIONS(1744), + [anon_sym_open] = ACTIONS(1744), + [anon_sym_vararg] = ACTIONS(1744), + [anon_sym_noinline] = ACTIONS(1744), + [anon_sym_crossinline] = ACTIONS(1744), + [anon_sym_expect] = ACTIONS(1744), + [anon_sym_actual] = ACTIONS(1744), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), + }, + [1179] = { [sym__alpha_identifier] = ACTIONS(5149), [anon_sym_AT] = ACTIONS(5151), [anon_sym_LBRACK] = ACTIONS(5151), @@ -178297,325 +180580,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5151), }, - [1161] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(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(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [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), - }, - [1162] = { - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), - }, - [1163] = { - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4395), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), + [1180] = { + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, - [1164] = { + [1181] = { [sym__alpha_identifier] = ACTIONS(5153), [anon_sym_AT] = ACTIONS(5155), [anon_sym_LBRACK] = ACTIONS(5155), @@ -178721,325 +180792,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5155), }, - [1165] = { - [sym__alpha_identifier] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3114), - [anon_sym_as] = ACTIONS(3114), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3114), - [anon_sym_set] = ACTIONS(3114), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [sym_label] = ACTIONS(3114), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(3116), - [anon_sym_QMARK_COLON] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3116), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_as_QMARK] = ACTIONS(3116), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(3116), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3114), - [anon_sym_inner] = ACTIONS(3114), - [anon_sym_value] = ACTIONS(3114), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3114), - [anon_sym_actual] = ACTIONS(3114), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(3116), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(3116), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), - }, - [1166] = { - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(4429), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [1182] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), }, - [1167] = { - [sym__alpha_identifier] = ACTIONS(4672), - [anon_sym_AT] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(4674), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_LBRACE] = ACTIONS(4674), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_COMMA] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4672), - [anon_sym_GT] = ACTIONS(4672), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_object] = ACTIONS(4672), - [anon_sym_fun] = ACTIONS(4672), - [anon_sym_SEMI] = ACTIONS(4674), - [anon_sym_get] = ACTIONS(4672), - [anon_sym_set] = ACTIONS(4672), - [anon_sym_this] = ACTIONS(4672), - [anon_sym_super] = ACTIONS(4672), - [anon_sym_STAR] = ACTIONS(4672), - [sym_label] = ACTIONS(4672), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(4674), - [anon_sym_QMARK_COLON] = ACTIONS(4674), - [anon_sym_AMP_AMP] = ACTIONS(4674), - [anon_sym_PIPE_PIPE] = ACTIONS(4674), - [anon_sym_null] = ACTIONS(4672), - [anon_sym_if] = ACTIONS(4672), - [anon_sym_else] = ACTIONS(4672), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_try] = ACTIONS(4672), - [anon_sym_throw] = ACTIONS(4672), - [anon_sym_return] = ACTIONS(4672), - [anon_sym_continue] = ACTIONS(4672), - [anon_sym_break] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_PLUS_EQ] = ACTIONS(4674), - [anon_sym_DASH_EQ] = ACTIONS(4674), - [anon_sym_STAR_EQ] = ACTIONS(4674), - [anon_sym_SLASH_EQ] = ACTIONS(4674), - [anon_sym_PERCENT_EQ] = ACTIONS(4674), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), - [anon_sym_LT_EQ] = ACTIONS(4674), - [anon_sym_GT_EQ] = ACTIONS(4674), - [anon_sym_BANGin] = ACTIONS(4674), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_BANGis] = ACTIONS(4674), - [anon_sym_PLUS] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_as_QMARK] = ACTIONS(4674), - [anon_sym_PLUS_PLUS] = ACTIONS(4674), - [anon_sym_DASH_DASH] = ACTIONS(4674), - [anon_sym_BANG] = ACTIONS(4672), - [anon_sym_BANG_BANG] = ACTIONS(4674), - [anon_sym_suspend] = ACTIONS(4672), - [anon_sym_sealed] = ACTIONS(4672), - [anon_sym_annotation] = ACTIONS(4672), - [anon_sym_data] = ACTIONS(4672), - [anon_sym_inner] = ACTIONS(4672), - [anon_sym_value] = ACTIONS(4672), - [anon_sym_override] = ACTIONS(4672), - [anon_sym_lateinit] = ACTIONS(4672), - [anon_sym_public] = ACTIONS(4672), - [anon_sym_private] = ACTIONS(4672), - [anon_sym_internal] = ACTIONS(4672), - [anon_sym_protected] = ACTIONS(4672), - [anon_sym_tailrec] = ACTIONS(4672), - [anon_sym_operator] = ACTIONS(4672), - [anon_sym_infix] = ACTIONS(4672), - [anon_sym_inline] = ACTIONS(4672), - [anon_sym_external] = ACTIONS(4672), - [sym_property_modifier] = ACTIONS(4672), - [anon_sym_abstract] = ACTIONS(4672), - [anon_sym_final] = ACTIONS(4672), - [anon_sym_open] = ACTIONS(4672), - [anon_sym_vararg] = ACTIONS(4672), - [anon_sym_noinline] = ACTIONS(4672), - [anon_sym_crossinline] = ACTIONS(4672), - [anon_sym_expect] = ACTIONS(4672), - [anon_sym_actual] = ACTIONS(4672), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4674), - [anon_sym_continue_AT] = ACTIONS(4674), - [anon_sym_break_AT] = ACTIONS(4674), - [anon_sym_this_AT] = ACTIONS(4674), - [anon_sym_super_AT] = ACTIONS(4674), - [sym_real_literal] = ACTIONS(4674), - [sym_integer_literal] = ACTIONS(4672), - [sym_hex_literal] = ACTIONS(4674), - [sym_bin_literal] = ACTIONS(4674), - [anon_sym_true] = ACTIONS(4672), - [anon_sym_false] = ACTIONS(4672), - [anon_sym_SQUOTE] = ACTIONS(4674), - [sym__backtick_identifier] = ACTIONS(4674), - [sym__automatic_semicolon] = ACTIONS(4674), - [sym_safe_nav] = ACTIONS(4674), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4674), + [1183] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), }, - [1168] = { + [1184] = { [sym__alpha_identifier] = ACTIONS(5157), [anon_sym_AT] = ACTIONS(5159), [anon_sym_LBRACK] = ACTIONS(5159), @@ -179145,7 +181110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5159), }, - [1169] = { + [1185] = { [sym__alpha_identifier] = ACTIONS(5161), [anon_sym_AT] = ACTIONS(5163), [anon_sym_LBRACK] = ACTIONS(5163), @@ -179251,3358 +181216,1137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5163), }, - [1170] = { - [sym__alpha_identifier] = ACTIONS(5165), - [anon_sym_AT] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_as] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_where] = ACTIONS(5165), - [anon_sym_object] = ACTIONS(5165), - [anon_sym_fun] = ACTIONS(5165), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_get] = ACTIONS(5165), - [anon_sym_set] = ACTIONS(5165), - [anon_sym_this] = ACTIONS(5165), - [anon_sym_super] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [sym_label] = ACTIONS(5165), - [anon_sym_in] = ACTIONS(5165), - [anon_sym_DOT_DOT] = ACTIONS(5167), - [anon_sym_QMARK_COLON] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_PIPE_PIPE] = ACTIONS(5167), - [anon_sym_null] = ACTIONS(5165), - [anon_sym_if] = ACTIONS(5165), - [anon_sym_else] = ACTIONS(5165), - [anon_sym_when] = ACTIONS(5165), - [anon_sym_try] = ACTIONS(5165), - [anon_sym_throw] = ACTIONS(5165), - [anon_sym_return] = ACTIONS(5165), - [anon_sym_continue] = ACTIONS(5165), - [anon_sym_break] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_PLUS_EQ] = ACTIONS(5167), - [anon_sym_DASH_EQ] = ACTIONS(5167), - [anon_sym_STAR_EQ] = ACTIONS(5167), - [anon_sym_SLASH_EQ] = ACTIONS(5167), - [anon_sym_PERCENT_EQ] = ACTIONS(5167), - [anon_sym_BANG_EQ] = ACTIONS(5165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), - [anon_sym_EQ_EQ] = ACTIONS(5165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), - [anon_sym_LT_EQ] = ACTIONS(5167), - [anon_sym_GT_EQ] = ACTIONS(5167), - [anon_sym_BANGin] = ACTIONS(5167), - [anon_sym_is] = ACTIONS(5165), - [anon_sym_BANGis] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_as_QMARK] = ACTIONS(5167), - [anon_sym_PLUS_PLUS] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_BANG_BANG] = ACTIONS(5167), - [anon_sym_suspend] = ACTIONS(5165), - [anon_sym_sealed] = ACTIONS(5165), - [anon_sym_annotation] = ACTIONS(5165), - [anon_sym_data] = ACTIONS(5165), - [anon_sym_inner] = ACTIONS(5165), - [anon_sym_value] = ACTIONS(5165), - [anon_sym_override] = ACTIONS(5165), - [anon_sym_lateinit] = ACTIONS(5165), - [anon_sym_public] = ACTIONS(5165), - [anon_sym_private] = ACTIONS(5165), - [anon_sym_internal] = ACTIONS(5165), - [anon_sym_protected] = ACTIONS(5165), - [anon_sym_tailrec] = ACTIONS(5165), - [anon_sym_operator] = ACTIONS(5165), - [anon_sym_infix] = ACTIONS(5165), - [anon_sym_inline] = ACTIONS(5165), - [anon_sym_external] = ACTIONS(5165), - [sym_property_modifier] = ACTIONS(5165), - [anon_sym_abstract] = ACTIONS(5165), - [anon_sym_final] = ACTIONS(5165), - [anon_sym_open] = ACTIONS(5165), - [anon_sym_vararg] = ACTIONS(5165), - [anon_sym_noinline] = ACTIONS(5165), - [anon_sym_crossinline] = ACTIONS(5165), - [anon_sym_expect] = ACTIONS(5165), - [anon_sym_actual] = ACTIONS(5165), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5167), - [anon_sym_continue_AT] = ACTIONS(5167), - [anon_sym_break_AT] = ACTIONS(5167), - [anon_sym_this_AT] = ACTIONS(5167), - [anon_sym_super_AT] = ACTIONS(5167), - [sym_real_literal] = ACTIONS(5167), - [sym_integer_literal] = ACTIONS(5165), - [sym_hex_literal] = ACTIONS(5167), - [sym_bin_literal] = ACTIONS(5167), - [anon_sym_true] = ACTIONS(5165), - [anon_sym_false] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5167), - [sym__backtick_identifier] = ACTIONS(5167), - [sym__automatic_semicolon] = ACTIONS(5167), - [sym_safe_nav] = ACTIONS(5167), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5167), + [1186] = { + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4097), + [anon_sym_LBRACE] = ACTIONS(4099), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, - [1171] = { - [sym__alpha_identifier] = ACTIONS(5169), - [anon_sym_AT] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_as] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_RBRACE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_where] = ACTIONS(5169), - [anon_sym_object] = ACTIONS(5169), - [anon_sym_fun] = ACTIONS(5169), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_get] = ACTIONS(5169), - [anon_sym_set] = ACTIONS(5169), - [anon_sym_this] = ACTIONS(5169), - [anon_sym_super] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [sym_label] = ACTIONS(5169), + [1187] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3122), + [anon_sym_fun] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_super] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), [anon_sym_in] = ACTIONS(5169), [anon_sym_DOT_DOT] = ACTIONS(5171), - [anon_sym_QMARK_COLON] = ACTIONS(5171), - [anon_sym_AMP_AMP] = ACTIONS(5171), - [anon_sym_PIPE_PIPE] = ACTIONS(5171), - [anon_sym_null] = ACTIONS(5169), - [anon_sym_if] = ACTIONS(5169), - [anon_sym_else] = ACTIONS(5169), - [anon_sym_when] = ACTIONS(5169), - [anon_sym_try] = ACTIONS(5169), - [anon_sym_throw] = ACTIONS(5169), - [anon_sym_return] = ACTIONS(5169), - [anon_sym_continue] = ACTIONS(5169), - [anon_sym_break] = ACTIONS(5169), - [anon_sym_COLON_COLON] = ACTIONS(5171), - [anon_sym_PLUS_EQ] = ACTIONS(5171), - [anon_sym_DASH_EQ] = ACTIONS(5171), - [anon_sym_STAR_EQ] = ACTIONS(5171), - [anon_sym_SLASH_EQ] = ACTIONS(5171), - [anon_sym_PERCENT_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ] = ACTIONS(5169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ] = ACTIONS(5169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), - [anon_sym_LT_EQ] = ACTIONS(5171), - [anon_sym_GT_EQ] = ACTIONS(5171), - [anon_sym_BANGin] = ACTIONS(5171), - [anon_sym_is] = ACTIONS(5169), - [anon_sym_BANGis] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_PERCENT] = ACTIONS(5169), - [anon_sym_as_QMARK] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_BANG_BANG] = ACTIONS(5171), - [anon_sym_suspend] = ACTIONS(5169), - [anon_sym_sealed] = ACTIONS(5169), - [anon_sym_annotation] = ACTIONS(5169), - [anon_sym_data] = ACTIONS(5169), - [anon_sym_inner] = ACTIONS(5169), - [anon_sym_value] = ACTIONS(5169), - [anon_sym_override] = ACTIONS(5169), - [anon_sym_lateinit] = ACTIONS(5169), - [anon_sym_public] = ACTIONS(5169), - [anon_sym_private] = ACTIONS(5169), - [anon_sym_internal] = ACTIONS(5169), - [anon_sym_protected] = ACTIONS(5169), - [anon_sym_tailrec] = ACTIONS(5169), - [anon_sym_operator] = ACTIONS(5169), - [anon_sym_infix] = ACTIONS(5169), - [anon_sym_inline] = ACTIONS(5169), - [anon_sym_external] = ACTIONS(5169), - [sym_property_modifier] = ACTIONS(5169), - [anon_sym_abstract] = ACTIONS(5169), - [anon_sym_final] = ACTIONS(5169), - [anon_sym_open] = ACTIONS(5169), - [anon_sym_vararg] = ACTIONS(5169), - [anon_sym_noinline] = ACTIONS(5169), - [anon_sym_crossinline] = ACTIONS(5169), - [anon_sym_expect] = ACTIONS(5169), - [anon_sym_actual] = ACTIONS(5169), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5171), - [anon_sym_continue_AT] = ACTIONS(5171), - [anon_sym_break_AT] = ACTIONS(5171), - [anon_sym_this_AT] = ACTIONS(5171), - [anon_sym_super_AT] = ACTIONS(5171), - [sym_real_literal] = ACTIONS(5171), - [sym_integer_literal] = ACTIONS(5169), - [sym_hex_literal] = ACTIONS(5171), - [sym_bin_literal] = ACTIONS(5171), - [anon_sym_true] = ACTIONS(5169), - [anon_sym_false] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5171), - [sym__backtick_identifier] = ACTIONS(5171), - [sym__automatic_semicolon] = ACTIONS(5171), - [sym_safe_nav] = ACTIONS(5171), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5171), - }, - [1172] = { - [sym__alpha_identifier] = ACTIONS(5173), - [anon_sym_AT] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_RBRACE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5173), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_object] = ACTIONS(5173), - [anon_sym_fun] = ACTIONS(5173), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_get] = ACTIONS(5173), - [anon_sym_set] = ACTIONS(5173), - [anon_sym_this] = ACTIONS(5173), - [anon_sym_super] = ACTIONS(5173), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5173), - [anon_sym_DOT_DOT] = ACTIONS(5175), - [anon_sym_QMARK_COLON] = ACTIONS(5175), + [anon_sym_QMARK_COLON] = ACTIONS(5173), [anon_sym_AMP_AMP] = ACTIONS(5175), - [anon_sym_PIPE_PIPE] = ACTIONS(5175), - [anon_sym_null] = ACTIONS(5173), - [anon_sym_if] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5173), - [anon_sym_when] = ACTIONS(5173), - [anon_sym_try] = ACTIONS(5173), - [anon_sym_throw] = ACTIONS(5173), - [anon_sym_return] = ACTIONS(5173), - [anon_sym_continue] = ACTIONS(5173), - [anon_sym_break] = ACTIONS(5173), - [anon_sym_COLON_COLON] = ACTIONS(5175), - [anon_sym_PLUS_EQ] = ACTIONS(5175), - [anon_sym_DASH_EQ] = ACTIONS(5175), - [anon_sym_STAR_EQ] = ACTIONS(5175), - [anon_sym_SLASH_EQ] = ACTIONS(5175), - [anon_sym_PERCENT_EQ] = ACTIONS(5175), - [anon_sym_BANG_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5175), - [anon_sym_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5175), - [anon_sym_LT_EQ] = ACTIONS(5175), - [anon_sym_GT_EQ] = ACTIONS(5175), - [anon_sym_BANGin] = ACTIONS(5175), - [anon_sym_is] = ACTIONS(5173), - [anon_sym_BANGis] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5173), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5173), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5175), - [anon_sym_PLUS_PLUS] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5175), - [anon_sym_suspend] = ACTIONS(5173), - [anon_sym_sealed] = ACTIONS(5173), - [anon_sym_annotation] = ACTIONS(5173), - [anon_sym_data] = ACTIONS(5173), - [anon_sym_inner] = ACTIONS(5173), - [anon_sym_value] = ACTIONS(5173), - [anon_sym_override] = ACTIONS(5173), - [anon_sym_lateinit] = ACTIONS(5173), - [anon_sym_public] = ACTIONS(5173), - [anon_sym_private] = ACTIONS(5173), - [anon_sym_internal] = ACTIONS(5173), - [anon_sym_protected] = ACTIONS(5173), - [anon_sym_tailrec] = ACTIONS(5173), - [anon_sym_operator] = ACTIONS(5173), - [anon_sym_infix] = ACTIONS(5173), - [anon_sym_inline] = ACTIONS(5173), - [anon_sym_external] = ACTIONS(5173), - [sym_property_modifier] = ACTIONS(5173), - [anon_sym_abstract] = ACTIONS(5173), - [anon_sym_final] = ACTIONS(5173), - [anon_sym_open] = ACTIONS(5173), - [anon_sym_vararg] = ACTIONS(5173), - [anon_sym_noinline] = ACTIONS(5173), - [anon_sym_crossinline] = ACTIONS(5173), - [anon_sym_expect] = ACTIONS(5173), - [anon_sym_actual] = ACTIONS(5173), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5175), - [anon_sym_continue_AT] = ACTIONS(5175), - [anon_sym_break_AT] = ACTIONS(5175), - [anon_sym_this_AT] = ACTIONS(5175), - [anon_sym_super_AT] = ACTIONS(5175), - [sym_real_literal] = ACTIONS(5175), - [sym_integer_literal] = ACTIONS(5173), - [sym_hex_literal] = ACTIONS(5175), - [sym_bin_literal] = ACTIONS(5175), - [anon_sym_true] = ACTIONS(5173), - [anon_sym_false] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5175), - [sym__backtick_identifier] = ACTIONS(5175), - [sym__automatic_semicolon] = ACTIONS(5175), - [sym_safe_nav] = ACTIONS(5175), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5175), - }, - [1173] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), - }, - [1174] = { - [sym__alpha_identifier] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_as] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym_COMMA] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4040), - [anon_sym_GT] = ACTIONS(4040), - [anon_sym_where] = ACTIONS(4040), - [anon_sym_object] = ACTIONS(4040), - [anon_sym_fun] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_get] = ACTIONS(4040), - [anon_sym_set] = ACTIONS(4040), - [anon_sym_this] = ACTIONS(4040), - [anon_sym_super] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [sym_label] = ACTIONS(4040), - [anon_sym_in] = ACTIONS(4040), - [anon_sym_DOT_DOT] = ACTIONS(4042), - [anon_sym_QMARK_COLON] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_null] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_else] = ACTIONS(4040), - [anon_sym_when] = ACTIONS(4040), - [anon_sym_try] = ACTIONS(4040), - [anon_sym_throw] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_PLUS_EQ] = ACTIONS(4042), - [anon_sym_DASH_EQ] = ACTIONS(4042), - [anon_sym_STAR_EQ] = ACTIONS(4042), - [anon_sym_SLASH_EQ] = ACTIONS(4042), - [anon_sym_PERCENT_EQ] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4042), - [anon_sym_LT_EQ] = ACTIONS(4042), - [anon_sym_GT_EQ] = ACTIONS(4042), - [anon_sym_BANGin] = ACTIONS(4042), - [anon_sym_is] = ACTIONS(4040), - [anon_sym_BANGis] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_SLASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_as_QMARK] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_BANG_BANG] = ACTIONS(4042), - [anon_sym_suspend] = ACTIONS(4040), - [anon_sym_sealed] = ACTIONS(4040), - [anon_sym_annotation] = ACTIONS(4040), - [anon_sym_data] = ACTIONS(4040), - [anon_sym_inner] = ACTIONS(4040), - [anon_sym_value] = ACTIONS(4040), - [anon_sym_override] = ACTIONS(4040), - [anon_sym_lateinit] = ACTIONS(4040), - [anon_sym_public] = ACTIONS(4040), - [anon_sym_private] = ACTIONS(4040), - [anon_sym_internal] = ACTIONS(4040), - [anon_sym_protected] = ACTIONS(4040), - [anon_sym_tailrec] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_infix] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym_external] = ACTIONS(4040), - [sym_property_modifier] = ACTIONS(4040), - [anon_sym_abstract] = ACTIONS(4040), - [anon_sym_final] = ACTIONS(4040), - [anon_sym_open] = ACTIONS(4040), - [anon_sym_vararg] = ACTIONS(4040), - [anon_sym_noinline] = ACTIONS(4040), - [anon_sym_crossinline] = ACTIONS(4040), - [anon_sym_expect] = ACTIONS(4040), - [anon_sym_actual] = ACTIONS(4040), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4042), - [anon_sym_continue_AT] = ACTIONS(4042), - [anon_sym_break_AT] = ACTIONS(4042), - [anon_sym_this_AT] = ACTIONS(4042), - [anon_sym_super_AT] = ACTIONS(4042), - [sym_real_literal] = ACTIONS(4042), - [sym_integer_literal] = ACTIONS(4040), - [sym_hex_literal] = ACTIONS(4042), - [sym_bin_literal] = ACTIONS(4042), - [anon_sym_true] = ACTIONS(4040), - [anon_sym_false] = ACTIONS(4040), - [anon_sym_SQUOTE] = ACTIONS(4042), - [sym__backtick_identifier] = ACTIONS(4042), - [sym__automatic_semicolon] = ACTIONS(4042), - [sym_safe_nav] = ACTIONS(4042), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4042), - }, - [1175] = { - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4202), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), - }, - [1176] = { - [sym__alpha_identifier] = ACTIONS(5181), - [anon_sym_AT] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_as] = ACTIONS(5181), - [anon_sym_EQ] = ACTIONS(5181), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_where] = ACTIONS(5181), - [anon_sym_object] = ACTIONS(5181), - [anon_sym_fun] = ACTIONS(5181), - [anon_sym_SEMI] = ACTIONS(5183), - [anon_sym_get] = ACTIONS(5181), - [anon_sym_set] = ACTIONS(5181), - [anon_sym_this] = ACTIONS(5181), - [anon_sym_super] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [sym_label] = ACTIONS(5181), - [anon_sym_in] = ACTIONS(5181), - [anon_sym_DOT_DOT] = ACTIONS(5183), - [anon_sym_QMARK_COLON] = ACTIONS(5183), - [anon_sym_AMP_AMP] = ACTIONS(5183), - [anon_sym_PIPE_PIPE] = ACTIONS(5183), - [anon_sym_null] = ACTIONS(5181), - [anon_sym_if] = ACTIONS(5181), - [anon_sym_else] = ACTIONS(5181), - [anon_sym_when] = ACTIONS(5181), - [anon_sym_try] = ACTIONS(5181), - [anon_sym_throw] = ACTIONS(5181), - [anon_sym_return] = ACTIONS(5181), - [anon_sym_continue] = ACTIONS(5181), - [anon_sym_break] = ACTIONS(5181), - [anon_sym_COLON_COLON] = ACTIONS(5183), - [anon_sym_PLUS_EQ] = ACTIONS(5183), - [anon_sym_DASH_EQ] = ACTIONS(5183), - [anon_sym_STAR_EQ] = ACTIONS(5183), - [anon_sym_SLASH_EQ] = ACTIONS(5183), - [anon_sym_PERCENT_EQ] = ACTIONS(5183), - [anon_sym_BANG_EQ] = ACTIONS(5181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5183), - [anon_sym_EQ_EQ] = ACTIONS(5181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5183), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [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(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), [anon_sym_LT_EQ] = ACTIONS(5183), [anon_sym_GT_EQ] = ACTIONS(5183), - [anon_sym_BANGin] = ACTIONS(5183), - [anon_sym_is] = ACTIONS(5181), - [anon_sym_BANGis] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_PERCENT] = ACTIONS(5181), - [anon_sym_as_QMARK] = ACTIONS(5183), - [anon_sym_PLUS_PLUS] = ACTIONS(5183), - [anon_sym_DASH_DASH] = ACTIONS(5183), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_BANG_BANG] = ACTIONS(5183), - [anon_sym_suspend] = ACTIONS(5181), - [anon_sym_sealed] = ACTIONS(5181), - [anon_sym_annotation] = ACTIONS(5181), - [anon_sym_data] = ACTIONS(5181), - [anon_sym_inner] = ACTIONS(5181), - [anon_sym_value] = ACTIONS(5181), - [anon_sym_override] = ACTIONS(5181), - [anon_sym_lateinit] = ACTIONS(5181), - [anon_sym_public] = ACTIONS(5181), - [anon_sym_private] = ACTIONS(5181), - [anon_sym_internal] = ACTIONS(5181), - [anon_sym_protected] = ACTIONS(5181), - [anon_sym_tailrec] = ACTIONS(5181), - [anon_sym_operator] = ACTIONS(5181), - [anon_sym_infix] = ACTIONS(5181), - [anon_sym_inline] = ACTIONS(5181), - [anon_sym_external] = ACTIONS(5181), - [sym_property_modifier] = ACTIONS(5181), - [anon_sym_abstract] = ACTIONS(5181), - [anon_sym_final] = ACTIONS(5181), - [anon_sym_open] = ACTIONS(5181), - [anon_sym_vararg] = ACTIONS(5181), - [anon_sym_noinline] = ACTIONS(5181), - [anon_sym_crossinline] = ACTIONS(5181), - [anon_sym_expect] = ACTIONS(5181), - [anon_sym_actual] = ACTIONS(5181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5183), - [anon_sym_continue_AT] = ACTIONS(5183), - [anon_sym_break_AT] = ACTIONS(5183), - [anon_sym_this_AT] = ACTIONS(5183), - [anon_sym_super_AT] = ACTIONS(5183), - [sym_real_literal] = ACTIONS(5183), - [sym_integer_literal] = ACTIONS(5181), - [sym_hex_literal] = ACTIONS(5183), - [sym_bin_literal] = ACTIONS(5183), - [anon_sym_true] = ACTIONS(5181), - [anon_sym_false] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5183), - [sym__backtick_identifier] = ACTIONS(5183), - [sym__automatic_semicolon] = ACTIONS(5183), - [sym_safe_nav] = ACTIONS(5183), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5183), - }, - [1177] = { - [sym__alpha_identifier] = ACTIONS(5185), - [anon_sym_AT] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_DOT] = ACTIONS(5185), - [anon_sym_as] = ACTIONS(5185), - [anon_sym_EQ] = ACTIONS(5185), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_where] = ACTIONS(5185), - [anon_sym_object] = ACTIONS(5185), - [anon_sym_fun] = ACTIONS(5185), - [anon_sym_SEMI] = ACTIONS(5187), - [anon_sym_get] = ACTIONS(5185), - [anon_sym_set] = ACTIONS(5185), - [anon_sym_this] = ACTIONS(5185), - [anon_sym_super] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [sym_label] = ACTIONS(5185), - [anon_sym_in] = ACTIONS(5185), - [anon_sym_DOT_DOT] = ACTIONS(5187), - [anon_sym_QMARK_COLON] = ACTIONS(5187), - [anon_sym_AMP_AMP] = ACTIONS(5187), - [anon_sym_PIPE_PIPE] = ACTIONS(5187), - [anon_sym_null] = ACTIONS(5185), - [anon_sym_if] = ACTIONS(5185), - [anon_sym_else] = ACTIONS(5185), - [anon_sym_when] = ACTIONS(5185), - [anon_sym_try] = ACTIONS(5185), - [anon_sym_throw] = ACTIONS(5185), - [anon_sym_return] = ACTIONS(5185), - [anon_sym_continue] = ACTIONS(5185), - [anon_sym_break] = ACTIONS(5185), - [anon_sym_COLON_COLON] = ACTIONS(5187), - [anon_sym_PLUS_EQ] = ACTIONS(5187), - [anon_sym_DASH_EQ] = ACTIONS(5187), - [anon_sym_STAR_EQ] = ACTIONS(5187), - [anon_sym_SLASH_EQ] = ACTIONS(5187), - [anon_sym_PERCENT_EQ] = ACTIONS(5187), - [anon_sym_BANG_EQ] = ACTIONS(5185), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5187), - [anon_sym_EQ_EQ] = ACTIONS(5185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5187), - [anon_sym_LT_EQ] = ACTIONS(5187), - [anon_sym_GT_EQ] = ACTIONS(5187), - [anon_sym_BANGin] = ACTIONS(5187), - [anon_sym_is] = ACTIONS(5185), - [anon_sym_BANGis] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_PERCENT] = ACTIONS(5185), - [anon_sym_as_QMARK] = ACTIONS(5187), - [anon_sym_PLUS_PLUS] = ACTIONS(5187), - [anon_sym_DASH_DASH] = ACTIONS(5187), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_BANG_BANG] = ACTIONS(5187), - [anon_sym_suspend] = ACTIONS(5185), - [anon_sym_sealed] = ACTIONS(5185), - [anon_sym_annotation] = ACTIONS(5185), - [anon_sym_data] = ACTIONS(5185), - [anon_sym_inner] = ACTIONS(5185), - [anon_sym_value] = ACTIONS(5185), - [anon_sym_override] = ACTIONS(5185), - [anon_sym_lateinit] = ACTIONS(5185), - [anon_sym_public] = ACTIONS(5185), - [anon_sym_private] = ACTIONS(5185), - [anon_sym_internal] = ACTIONS(5185), - [anon_sym_protected] = ACTIONS(5185), - [anon_sym_tailrec] = ACTIONS(5185), - [anon_sym_operator] = ACTIONS(5185), - [anon_sym_infix] = ACTIONS(5185), - [anon_sym_inline] = ACTIONS(5185), - [anon_sym_external] = ACTIONS(5185), - [sym_property_modifier] = ACTIONS(5185), - [anon_sym_abstract] = ACTIONS(5185), - [anon_sym_final] = ACTIONS(5185), - [anon_sym_open] = ACTIONS(5185), - [anon_sym_vararg] = ACTIONS(5185), - [anon_sym_noinline] = ACTIONS(5185), - [anon_sym_crossinline] = ACTIONS(5185), - [anon_sym_expect] = ACTIONS(5185), - [anon_sym_actual] = ACTIONS(5185), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5187), - [anon_sym_continue_AT] = ACTIONS(5187), - [anon_sym_break_AT] = ACTIONS(5187), - [anon_sym_this_AT] = ACTIONS(5187), - [anon_sym_super_AT] = ACTIONS(5187), - [sym_real_literal] = ACTIONS(5187), - [sym_integer_literal] = ACTIONS(5185), - [sym_hex_literal] = ACTIONS(5187), - [sym_bin_literal] = ACTIONS(5187), - [anon_sym_true] = ACTIONS(5185), - [anon_sym_false] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5187), - [sym__backtick_identifier] = ACTIONS(5187), - [sym__automatic_semicolon] = ACTIONS(5187), - [sym_safe_nav] = ACTIONS(5187), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5187), - }, - [1178] = { - [sym__alpha_identifier] = ACTIONS(5189), - [anon_sym_AT] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_DOT] = ACTIONS(5189), - [anon_sym_as] = ACTIONS(5189), - [anon_sym_EQ] = ACTIONS(5189), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_where] = ACTIONS(5189), - [anon_sym_object] = ACTIONS(5189), - [anon_sym_fun] = ACTIONS(5189), - [anon_sym_SEMI] = ACTIONS(5191), - [anon_sym_get] = ACTIONS(5189), - [anon_sym_set] = ACTIONS(5189), - [anon_sym_this] = ACTIONS(5189), - [anon_sym_super] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [sym_label] = ACTIONS(5189), - [anon_sym_in] = ACTIONS(5189), - [anon_sym_DOT_DOT] = ACTIONS(5191), - [anon_sym_QMARK_COLON] = ACTIONS(5191), - [anon_sym_AMP_AMP] = ACTIONS(5191), - [anon_sym_PIPE_PIPE] = ACTIONS(5191), - [anon_sym_null] = ACTIONS(5189), - [anon_sym_if] = ACTIONS(5189), - [anon_sym_else] = ACTIONS(5189), - [anon_sym_when] = ACTIONS(5189), - [anon_sym_try] = ACTIONS(5189), - [anon_sym_throw] = ACTIONS(5189), - [anon_sym_return] = ACTIONS(5189), - [anon_sym_continue] = ACTIONS(5189), - [anon_sym_break] = ACTIONS(5189), - [anon_sym_COLON_COLON] = ACTIONS(5191), - [anon_sym_PLUS_EQ] = ACTIONS(5191), - [anon_sym_DASH_EQ] = ACTIONS(5191), - [anon_sym_STAR_EQ] = ACTIONS(5191), - [anon_sym_SLASH_EQ] = ACTIONS(5191), - [anon_sym_PERCENT_EQ] = ACTIONS(5191), - [anon_sym_BANG_EQ] = ACTIONS(5189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5191), - [anon_sym_EQ_EQ] = ACTIONS(5189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5191), - [anon_sym_LT_EQ] = ACTIONS(5191), - [anon_sym_GT_EQ] = ACTIONS(5191), - [anon_sym_BANGin] = ACTIONS(5191), - [anon_sym_is] = ACTIONS(5189), - [anon_sym_BANGis] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_PERCENT] = ACTIONS(5189), - [anon_sym_as_QMARK] = ACTIONS(5191), - [anon_sym_PLUS_PLUS] = ACTIONS(5191), - [anon_sym_DASH_DASH] = ACTIONS(5191), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_BANG_BANG] = ACTIONS(5191), - [anon_sym_suspend] = ACTIONS(5189), - [anon_sym_sealed] = ACTIONS(5189), - [anon_sym_annotation] = ACTIONS(5189), - [anon_sym_data] = ACTIONS(5189), - [anon_sym_inner] = ACTIONS(5189), - [anon_sym_value] = ACTIONS(5189), - [anon_sym_override] = ACTIONS(5189), - [anon_sym_lateinit] = ACTIONS(5189), - [anon_sym_public] = ACTIONS(5189), - [anon_sym_private] = ACTIONS(5189), - [anon_sym_internal] = ACTIONS(5189), - [anon_sym_protected] = ACTIONS(5189), - [anon_sym_tailrec] = ACTIONS(5189), - [anon_sym_operator] = ACTIONS(5189), - [anon_sym_infix] = ACTIONS(5189), - [anon_sym_inline] = ACTIONS(5189), - [anon_sym_external] = ACTIONS(5189), - [sym_property_modifier] = ACTIONS(5189), - [anon_sym_abstract] = ACTIONS(5189), - [anon_sym_final] = ACTIONS(5189), - [anon_sym_open] = ACTIONS(5189), - [anon_sym_vararg] = ACTIONS(5189), - [anon_sym_noinline] = ACTIONS(5189), - [anon_sym_crossinline] = ACTIONS(5189), - [anon_sym_expect] = ACTIONS(5189), - [anon_sym_actual] = ACTIONS(5189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5191), - [anon_sym_continue_AT] = ACTIONS(5191), - [anon_sym_break_AT] = ACTIONS(5191), - [anon_sym_this_AT] = ACTIONS(5191), - [anon_sym_super_AT] = ACTIONS(5191), - [sym_real_literal] = ACTIONS(5191), - [sym_integer_literal] = ACTIONS(5189), - [sym_hex_literal] = ACTIONS(5191), - [sym_bin_literal] = ACTIONS(5191), - [anon_sym_true] = ACTIONS(5189), - [anon_sym_false] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5191), - [sym__backtick_identifier] = ACTIONS(5191), - [sym__automatic_semicolon] = ACTIONS(5191), - [sym_safe_nav] = ACTIONS(5191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5191), - }, - [1179] = { - [sym__alpha_identifier] = ACTIONS(5193), - [anon_sym_AT] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_DOT] = ACTIONS(5193), - [anon_sym_as] = ACTIONS(5193), - [anon_sym_EQ] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_where] = ACTIONS(5193), - [anon_sym_object] = ACTIONS(5193), - [anon_sym_fun] = ACTIONS(5193), - [anon_sym_SEMI] = ACTIONS(5195), - [anon_sym_get] = ACTIONS(5193), - [anon_sym_set] = ACTIONS(5193), - [anon_sym_this] = ACTIONS(5193), - [anon_sym_super] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [sym_label] = ACTIONS(5193), - [anon_sym_in] = ACTIONS(5193), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_QMARK_COLON] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_null] = ACTIONS(5193), - [anon_sym_if] = ACTIONS(5193), - [anon_sym_else] = ACTIONS(5193), - [anon_sym_when] = ACTIONS(5193), - [anon_sym_try] = ACTIONS(5193), - [anon_sym_throw] = ACTIONS(5193), - [anon_sym_return] = ACTIONS(5193), - [anon_sym_continue] = ACTIONS(5193), - [anon_sym_break] = ACTIONS(5193), - [anon_sym_COLON_COLON] = ACTIONS(5195), - [anon_sym_PLUS_EQ] = ACTIONS(5195), - [anon_sym_DASH_EQ] = ACTIONS(5195), - [anon_sym_STAR_EQ] = ACTIONS(5195), - [anon_sym_SLASH_EQ] = ACTIONS(5195), - [anon_sym_PERCENT_EQ] = ACTIONS(5195), - [anon_sym_BANG_EQ] = ACTIONS(5193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), - [anon_sym_EQ_EQ] = ACTIONS(5193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), - [anon_sym_LT_EQ] = ACTIONS(5195), - [anon_sym_GT_EQ] = ACTIONS(5195), - [anon_sym_BANGin] = ACTIONS(5195), - [anon_sym_is] = ACTIONS(5193), - [anon_sym_BANGis] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_PERCENT] = ACTIONS(5193), - [anon_sym_as_QMARK] = ACTIONS(5195), - [anon_sym_PLUS_PLUS] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_BANG_BANG] = ACTIONS(5195), - [anon_sym_suspend] = ACTIONS(5193), - [anon_sym_sealed] = ACTIONS(5193), - [anon_sym_annotation] = ACTIONS(5193), - [anon_sym_data] = ACTIONS(5193), - [anon_sym_inner] = ACTIONS(5193), - [anon_sym_value] = ACTIONS(5193), - [anon_sym_override] = ACTIONS(5193), - [anon_sym_lateinit] = ACTIONS(5193), - [anon_sym_public] = ACTIONS(5193), - [anon_sym_private] = ACTIONS(5193), - [anon_sym_internal] = ACTIONS(5193), - [anon_sym_protected] = ACTIONS(5193), - [anon_sym_tailrec] = ACTIONS(5193), - [anon_sym_operator] = ACTIONS(5193), - [anon_sym_infix] = ACTIONS(5193), - [anon_sym_inline] = ACTIONS(5193), - [anon_sym_external] = ACTIONS(5193), - [sym_property_modifier] = ACTIONS(5193), - [anon_sym_abstract] = ACTIONS(5193), - [anon_sym_final] = ACTIONS(5193), - [anon_sym_open] = ACTIONS(5193), - [anon_sym_vararg] = ACTIONS(5193), - [anon_sym_noinline] = ACTIONS(5193), - [anon_sym_crossinline] = ACTIONS(5193), - [anon_sym_expect] = ACTIONS(5193), - [anon_sym_actual] = ACTIONS(5193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5195), - [anon_sym_continue_AT] = ACTIONS(5195), - [anon_sym_break_AT] = ACTIONS(5195), - [anon_sym_this_AT] = ACTIONS(5195), - [anon_sym_super_AT] = ACTIONS(5195), - [sym_real_literal] = ACTIONS(5195), - [sym_integer_literal] = ACTIONS(5193), - [sym_hex_literal] = ACTIONS(5195), - [sym_bin_literal] = ACTIONS(5195), - [anon_sym_true] = ACTIONS(5193), - [anon_sym_false] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5195), - [sym__backtick_identifier] = ACTIONS(5195), - [sym__automatic_semicolon] = ACTIONS(5195), - [sym_safe_nav] = ACTIONS(5195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5195), - }, - [1180] = { - [sym__alpha_identifier] = ACTIONS(5197), - [anon_sym_AT] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_DOT] = ACTIONS(5197), - [anon_sym_as] = ACTIONS(5197), - [anon_sym_EQ] = ACTIONS(5197), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_where] = ACTIONS(5197), - [anon_sym_object] = ACTIONS(5197), - [anon_sym_fun] = ACTIONS(5197), - [anon_sym_SEMI] = ACTIONS(5199), - [anon_sym_get] = ACTIONS(5197), - [anon_sym_set] = ACTIONS(5197), - [anon_sym_this] = ACTIONS(5197), - [anon_sym_super] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [sym_label] = ACTIONS(5197), - [anon_sym_in] = ACTIONS(5197), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_QMARK_COLON] = ACTIONS(5199), - [anon_sym_AMP_AMP] = ACTIONS(5199), - [anon_sym_PIPE_PIPE] = ACTIONS(5199), - [anon_sym_null] = ACTIONS(5197), - [anon_sym_if] = ACTIONS(5197), - [anon_sym_else] = ACTIONS(5197), - [anon_sym_when] = ACTIONS(5197), - [anon_sym_try] = ACTIONS(5197), - [anon_sym_throw] = ACTIONS(5197), - [anon_sym_return] = ACTIONS(5197), - [anon_sym_continue] = ACTIONS(5197), - [anon_sym_break] = ACTIONS(5197), - [anon_sym_COLON_COLON] = ACTIONS(5199), - [anon_sym_PLUS_EQ] = ACTIONS(5199), - [anon_sym_DASH_EQ] = ACTIONS(5199), - [anon_sym_STAR_EQ] = ACTIONS(5199), - [anon_sym_SLASH_EQ] = ACTIONS(5199), - [anon_sym_PERCENT_EQ] = ACTIONS(5199), - [anon_sym_BANG_EQ] = ACTIONS(5197), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), - [anon_sym_EQ_EQ] = ACTIONS(5197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), - [anon_sym_LT_EQ] = ACTIONS(5199), - [anon_sym_GT_EQ] = ACTIONS(5199), - [anon_sym_BANGin] = ACTIONS(5199), - [anon_sym_is] = ACTIONS(5197), - [anon_sym_BANGis] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_PERCENT] = ACTIONS(5197), - [anon_sym_as_QMARK] = ACTIONS(5199), - [anon_sym_PLUS_PLUS] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_BANG_BANG] = ACTIONS(5199), - [anon_sym_suspend] = ACTIONS(5197), - [anon_sym_sealed] = ACTIONS(5197), - [anon_sym_annotation] = ACTIONS(5197), - [anon_sym_data] = ACTIONS(5197), - [anon_sym_inner] = ACTIONS(5197), - [anon_sym_value] = ACTIONS(5197), - [anon_sym_override] = ACTIONS(5197), - [anon_sym_lateinit] = ACTIONS(5197), - [anon_sym_public] = ACTIONS(5197), - [anon_sym_private] = ACTIONS(5197), - [anon_sym_internal] = ACTIONS(5197), - [anon_sym_protected] = ACTIONS(5197), - [anon_sym_tailrec] = ACTIONS(5197), - [anon_sym_operator] = ACTIONS(5197), - [anon_sym_infix] = ACTIONS(5197), - [anon_sym_inline] = ACTIONS(5197), - [anon_sym_external] = ACTIONS(5197), - [sym_property_modifier] = ACTIONS(5197), - [anon_sym_abstract] = ACTIONS(5197), - [anon_sym_final] = ACTIONS(5197), - [anon_sym_open] = ACTIONS(5197), - [anon_sym_vararg] = ACTIONS(5197), - [anon_sym_noinline] = ACTIONS(5197), - [anon_sym_crossinline] = ACTIONS(5197), - [anon_sym_expect] = ACTIONS(5197), - [anon_sym_actual] = ACTIONS(5197), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5199), - [anon_sym_continue_AT] = ACTIONS(5199), - [anon_sym_break_AT] = ACTIONS(5199), - [anon_sym_this_AT] = ACTIONS(5199), - [anon_sym_super_AT] = ACTIONS(5199), - [sym_real_literal] = ACTIONS(5199), - [sym_integer_literal] = ACTIONS(5197), - [sym_hex_literal] = ACTIONS(5199), - [sym_bin_literal] = ACTIONS(5199), - [anon_sym_true] = ACTIONS(5197), - [anon_sym_false] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5199), - [sym__backtick_identifier] = ACTIONS(5199), - [sym__automatic_semicolon] = ACTIONS(5199), - [sym_safe_nav] = ACTIONS(5199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5199), - }, - [1181] = { - [sym__alpha_identifier] = ACTIONS(5201), - [anon_sym_AT] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_DOT] = ACTIONS(5201), - [anon_sym_as] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_where] = ACTIONS(5201), - [anon_sym_object] = ACTIONS(5201), - [anon_sym_fun] = ACTIONS(5201), - [anon_sym_SEMI] = ACTIONS(5203), - [anon_sym_get] = ACTIONS(5201), - [anon_sym_set] = ACTIONS(5201), - [anon_sym_this] = ACTIONS(5201), - [anon_sym_super] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [sym_label] = ACTIONS(5201), - [anon_sym_in] = ACTIONS(5201), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_QMARK_COLON] = ACTIONS(5203), - [anon_sym_AMP_AMP] = ACTIONS(5203), - [anon_sym_PIPE_PIPE] = ACTIONS(5203), - [anon_sym_null] = ACTIONS(5201), - [anon_sym_if] = ACTIONS(5201), - [anon_sym_else] = ACTIONS(5201), - [anon_sym_when] = ACTIONS(5201), - [anon_sym_try] = ACTIONS(5201), - [anon_sym_throw] = ACTIONS(5201), - [anon_sym_return] = ACTIONS(5201), - [anon_sym_continue] = ACTIONS(5201), - [anon_sym_break] = ACTIONS(5201), - [anon_sym_COLON_COLON] = ACTIONS(5203), - [anon_sym_PLUS_EQ] = ACTIONS(5203), - [anon_sym_DASH_EQ] = ACTIONS(5203), - [anon_sym_STAR_EQ] = ACTIONS(5203), - [anon_sym_SLASH_EQ] = ACTIONS(5203), - [anon_sym_PERCENT_EQ] = ACTIONS(5203), - [anon_sym_BANG_EQ] = ACTIONS(5201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5203), - [anon_sym_EQ_EQ] = ACTIONS(5201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5203), - [anon_sym_LT_EQ] = ACTIONS(5203), - [anon_sym_GT_EQ] = ACTIONS(5203), - [anon_sym_BANGin] = ACTIONS(5203), - [anon_sym_is] = ACTIONS(5201), - [anon_sym_BANGis] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_PERCENT] = ACTIONS(5201), - [anon_sym_as_QMARK] = ACTIONS(5203), - [anon_sym_PLUS_PLUS] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_BANG_BANG] = ACTIONS(5203), - [anon_sym_suspend] = ACTIONS(5201), - [anon_sym_sealed] = ACTIONS(5201), - [anon_sym_annotation] = ACTIONS(5201), - [anon_sym_data] = ACTIONS(5201), - [anon_sym_inner] = ACTIONS(5201), - [anon_sym_value] = ACTIONS(5201), - [anon_sym_override] = ACTIONS(5201), - [anon_sym_lateinit] = ACTIONS(5201), - [anon_sym_public] = ACTIONS(5201), - [anon_sym_private] = ACTIONS(5201), - [anon_sym_internal] = ACTIONS(5201), - [anon_sym_protected] = ACTIONS(5201), - [anon_sym_tailrec] = ACTIONS(5201), - [anon_sym_operator] = ACTIONS(5201), - [anon_sym_infix] = ACTIONS(5201), - [anon_sym_inline] = ACTIONS(5201), - [anon_sym_external] = ACTIONS(5201), - [sym_property_modifier] = ACTIONS(5201), - [anon_sym_abstract] = ACTIONS(5201), - [anon_sym_final] = ACTIONS(5201), - [anon_sym_open] = ACTIONS(5201), - [anon_sym_vararg] = ACTIONS(5201), - [anon_sym_noinline] = ACTIONS(5201), - [anon_sym_crossinline] = ACTIONS(5201), - [anon_sym_expect] = ACTIONS(5201), - [anon_sym_actual] = ACTIONS(5201), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5203), - [anon_sym_continue_AT] = ACTIONS(5203), - [anon_sym_break_AT] = ACTIONS(5203), - [anon_sym_this_AT] = ACTIONS(5203), - [anon_sym_super_AT] = ACTIONS(5203), - [sym_real_literal] = ACTIONS(5203), - [sym_integer_literal] = ACTIONS(5201), - [sym_hex_literal] = ACTIONS(5203), - [sym_bin_literal] = ACTIONS(5203), - [anon_sym_true] = ACTIONS(5201), - [anon_sym_false] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5203), - [sym__backtick_identifier] = ACTIONS(5203), - [sym__automatic_semicolon] = ACTIONS(5203), - [sym_safe_nav] = ACTIONS(5203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5203), - }, - [1182] = { - [sym__alpha_identifier] = ACTIONS(5205), - [anon_sym_AT] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_as] = ACTIONS(5205), - [anon_sym_EQ] = ACTIONS(5205), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_where] = ACTIONS(5205), - [anon_sym_object] = ACTIONS(5205), - [anon_sym_fun] = ACTIONS(5205), - [anon_sym_SEMI] = ACTIONS(5207), - [anon_sym_get] = ACTIONS(5205), - [anon_sym_set] = ACTIONS(5205), - [anon_sym_this] = ACTIONS(5205), - [anon_sym_super] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [sym_label] = ACTIONS(5205), - [anon_sym_in] = ACTIONS(5205), - [anon_sym_DOT_DOT] = ACTIONS(5207), - [anon_sym_QMARK_COLON] = ACTIONS(5207), - [anon_sym_AMP_AMP] = ACTIONS(5207), - [anon_sym_PIPE_PIPE] = ACTIONS(5207), - [anon_sym_null] = ACTIONS(5205), - [anon_sym_if] = ACTIONS(5205), - [anon_sym_else] = ACTIONS(5205), - [anon_sym_when] = ACTIONS(5205), - [anon_sym_try] = ACTIONS(5205), - [anon_sym_throw] = ACTIONS(5205), - [anon_sym_return] = ACTIONS(5205), - [anon_sym_continue] = ACTIONS(5205), - [anon_sym_break] = ACTIONS(5205), - [anon_sym_COLON_COLON] = ACTIONS(5207), - [anon_sym_PLUS_EQ] = ACTIONS(5207), - [anon_sym_DASH_EQ] = ACTIONS(5207), - [anon_sym_STAR_EQ] = ACTIONS(5207), - [anon_sym_SLASH_EQ] = ACTIONS(5207), - [anon_sym_PERCENT_EQ] = ACTIONS(5207), - [anon_sym_BANG_EQ] = ACTIONS(5205), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), - [anon_sym_EQ_EQ] = ACTIONS(5205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), - [anon_sym_LT_EQ] = ACTIONS(5207), - [anon_sym_GT_EQ] = ACTIONS(5207), - [anon_sym_BANGin] = ACTIONS(5207), - [anon_sym_is] = ACTIONS(5205), - [anon_sym_BANGis] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_PERCENT] = ACTIONS(5205), - [anon_sym_as_QMARK] = ACTIONS(5207), - [anon_sym_PLUS_PLUS] = ACTIONS(5207), - [anon_sym_DASH_DASH] = ACTIONS(5207), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_BANG_BANG] = ACTIONS(5207), - [anon_sym_suspend] = ACTIONS(5205), - [anon_sym_sealed] = ACTIONS(5205), - [anon_sym_annotation] = ACTIONS(5205), - [anon_sym_data] = ACTIONS(5205), - [anon_sym_inner] = ACTIONS(5205), - [anon_sym_value] = ACTIONS(5205), - [anon_sym_override] = ACTIONS(5205), - [anon_sym_lateinit] = ACTIONS(5205), - [anon_sym_public] = ACTIONS(5205), - [anon_sym_private] = ACTIONS(5205), - [anon_sym_internal] = ACTIONS(5205), - [anon_sym_protected] = ACTIONS(5205), - [anon_sym_tailrec] = ACTIONS(5205), - [anon_sym_operator] = ACTIONS(5205), - [anon_sym_infix] = ACTIONS(5205), - [anon_sym_inline] = ACTIONS(5205), - [anon_sym_external] = ACTIONS(5205), - [sym_property_modifier] = ACTIONS(5205), - [anon_sym_abstract] = ACTIONS(5205), - [anon_sym_final] = ACTIONS(5205), - [anon_sym_open] = ACTIONS(5205), - [anon_sym_vararg] = ACTIONS(5205), - [anon_sym_noinline] = ACTIONS(5205), - [anon_sym_crossinline] = ACTIONS(5205), - [anon_sym_expect] = ACTIONS(5205), - [anon_sym_actual] = ACTIONS(5205), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5207), - [anon_sym_continue_AT] = ACTIONS(5207), - [anon_sym_break_AT] = ACTIONS(5207), - [anon_sym_this_AT] = ACTIONS(5207), - [anon_sym_super_AT] = ACTIONS(5207), - [sym_real_literal] = ACTIONS(5207), - [sym_integer_literal] = ACTIONS(5205), - [sym_hex_literal] = ACTIONS(5207), - [sym_bin_literal] = ACTIONS(5207), - [anon_sym_true] = ACTIONS(5205), - [anon_sym_false] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5207), - [sym__backtick_identifier] = ACTIONS(5207), - [sym__automatic_semicolon] = ACTIONS(5207), - [sym_safe_nav] = ACTIONS(5207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5207), - }, - [1183] = { - [sym__alpha_identifier] = ACTIONS(5209), - [anon_sym_AT] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_DOT] = ACTIONS(5209), - [anon_sym_as] = ACTIONS(5209), - [anon_sym_EQ] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_where] = ACTIONS(5209), - [anon_sym_object] = ACTIONS(5209), - [anon_sym_fun] = ACTIONS(5209), - [anon_sym_SEMI] = ACTIONS(5211), - [anon_sym_get] = ACTIONS(5209), - [anon_sym_set] = ACTIONS(5209), - [anon_sym_this] = ACTIONS(5209), - [anon_sym_super] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [sym_label] = ACTIONS(5209), - [anon_sym_in] = ACTIONS(5209), - [anon_sym_DOT_DOT] = ACTIONS(5211), - [anon_sym_QMARK_COLON] = ACTIONS(5211), - [anon_sym_AMP_AMP] = ACTIONS(5211), - [anon_sym_PIPE_PIPE] = ACTIONS(5211), - [anon_sym_null] = ACTIONS(5209), - [anon_sym_if] = ACTIONS(5209), - [anon_sym_else] = ACTIONS(5209), - [anon_sym_when] = ACTIONS(5209), - [anon_sym_try] = ACTIONS(5209), - [anon_sym_throw] = ACTIONS(5209), - [anon_sym_return] = ACTIONS(5209), - [anon_sym_continue] = ACTIONS(5209), - [anon_sym_break] = ACTIONS(5209), - [anon_sym_COLON_COLON] = ACTIONS(5211), - [anon_sym_PLUS_EQ] = ACTIONS(5211), - [anon_sym_DASH_EQ] = ACTIONS(5211), - [anon_sym_STAR_EQ] = ACTIONS(5211), - [anon_sym_SLASH_EQ] = ACTIONS(5211), - [anon_sym_PERCENT_EQ] = ACTIONS(5211), - [anon_sym_BANG_EQ] = ACTIONS(5209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), - [anon_sym_EQ_EQ] = ACTIONS(5209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), - [anon_sym_LT_EQ] = ACTIONS(5211), - [anon_sym_GT_EQ] = ACTIONS(5211), - [anon_sym_BANGin] = ACTIONS(5211), - [anon_sym_is] = ACTIONS(5209), - [anon_sym_BANGis] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_PERCENT] = ACTIONS(5209), - [anon_sym_as_QMARK] = ACTIONS(5211), - [anon_sym_PLUS_PLUS] = ACTIONS(5211), - [anon_sym_DASH_DASH] = ACTIONS(5211), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_BANG_BANG] = ACTIONS(5211), - [anon_sym_suspend] = ACTIONS(5209), - [anon_sym_sealed] = ACTIONS(5209), - [anon_sym_annotation] = ACTIONS(5209), - [anon_sym_data] = ACTIONS(5209), - [anon_sym_inner] = ACTIONS(5209), - [anon_sym_value] = ACTIONS(5209), - [anon_sym_override] = ACTIONS(5209), - [anon_sym_lateinit] = ACTIONS(5209), - [anon_sym_public] = ACTIONS(5209), - [anon_sym_private] = ACTIONS(5209), - [anon_sym_internal] = ACTIONS(5209), - [anon_sym_protected] = ACTIONS(5209), - [anon_sym_tailrec] = ACTIONS(5209), - [anon_sym_operator] = ACTIONS(5209), - [anon_sym_infix] = ACTIONS(5209), - [anon_sym_inline] = ACTIONS(5209), - [anon_sym_external] = ACTIONS(5209), - [sym_property_modifier] = ACTIONS(5209), - [anon_sym_abstract] = ACTIONS(5209), - [anon_sym_final] = ACTIONS(5209), - [anon_sym_open] = ACTIONS(5209), - [anon_sym_vararg] = ACTIONS(5209), - [anon_sym_noinline] = ACTIONS(5209), - [anon_sym_crossinline] = ACTIONS(5209), - [anon_sym_expect] = ACTIONS(5209), - [anon_sym_actual] = ACTIONS(5209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5211), - [anon_sym_continue_AT] = ACTIONS(5211), - [anon_sym_break_AT] = ACTIONS(5211), - [anon_sym_this_AT] = ACTIONS(5211), - [anon_sym_super_AT] = ACTIONS(5211), - [sym_real_literal] = ACTIONS(5211), - [sym_integer_literal] = ACTIONS(5209), - [sym_hex_literal] = ACTIONS(5211), - [sym_bin_literal] = ACTIONS(5211), - [anon_sym_true] = ACTIONS(5209), - [anon_sym_false] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5211), - [sym__backtick_identifier] = ACTIONS(5211), - [sym__automatic_semicolon] = ACTIONS(5211), - [sym_safe_nav] = ACTIONS(5211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5211), - }, - [1184] = { - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACE] = ACTIONS(4196), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [1185] = { - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1796), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(1796), - [anon_sym_sealed] = ACTIONS(1796), - [anon_sym_annotation] = ACTIONS(1796), - [anon_sym_data] = ACTIONS(1796), - [anon_sym_inner] = ACTIONS(1796), - [anon_sym_value] = ACTIONS(1796), - [anon_sym_override] = ACTIONS(1796), - [anon_sym_lateinit] = ACTIONS(1796), - [anon_sym_public] = ACTIONS(1796), - [anon_sym_private] = ACTIONS(1796), - [anon_sym_internal] = ACTIONS(1796), - [anon_sym_protected] = ACTIONS(1796), - [anon_sym_tailrec] = ACTIONS(1796), - [anon_sym_operator] = ACTIONS(1796), - [anon_sym_infix] = ACTIONS(1796), - [anon_sym_inline] = ACTIONS(1796), - [anon_sym_external] = ACTIONS(1796), - [sym_property_modifier] = ACTIONS(1796), - [anon_sym_abstract] = ACTIONS(1796), - [anon_sym_final] = ACTIONS(1796), - [anon_sym_open] = ACTIONS(1796), - [anon_sym_vararg] = ACTIONS(1796), - [anon_sym_noinline] = ACTIONS(1796), - [anon_sym_crossinline] = ACTIONS(1796), - [anon_sym_expect] = ACTIONS(1796), - [anon_sym_actual] = ACTIONS(1796), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), - }, - [1186] = { - [sym__alpha_identifier] = ACTIONS(5213), - [anon_sym_AT] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_DOT] = ACTIONS(5213), - [anon_sym_as] = ACTIONS(5213), - [anon_sym_EQ] = ACTIONS(5213), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_where] = ACTIONS(5213), - [anon_sym_object] = ACTIONS(5213), - [anon_sym_fun] = ACTIONS(5213), - [anon_sym_SEMI] = ACTIONS(5215), - [anon_sym_get] = ACTIONS(5213), - [anon_sym_set] = ACTIONS(5213), - [anon_sym_this] = ACTIONS(5213), - [anon_sym_super] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [sym_label] = ACTIONS(5213), - [anon_sym_in] = ACTIONS(5213), - [anon_sym_DOT_DOT] = ACTIONS(5215), - [anon_sym_QMARK_COLON] = ACTIONS(5215), - [anon_sym_AMP_AMP] = ACTIONS(5215), - [anon_sym_PIPE_PIPE] = ACTIONS(5215), - [anon_sym_null] = ACTIONS(5213), - [anon_sym_if] = ACTIONS(5213), - [anon_sym_else] = ACTIONS(5213), - [anon_sym_when] = ACTIONS(5213), - [anon_sym_try] = ACTIONS(5213), - [anon_sym_throw] = ACTIONS(5213), - [anon_sym_return] = ACTIONS(5213), - [anon_sym_continue] = ACTIONS(5213), - [anon_sym_break] = ACTIONS(5213), - [anon_sym_COLON_COLON] = ACTIONS(5215), - [anon_sym_PLUS_EQ] = ACTIONS(5215), - [anon_sym_DASH_EQ] = ACTIONS(5215), - [anon_sym_STAR_EQ] = ACTIONS(5215), - [anon_sym_SLASH_EQ] = ACTIONS(5215), - [anon_sym_PERCENT_EQ] = ACTIONS(5215), - [anon_sym_BANG_EQ] = ACTIONS(5213), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5215), - [anon_sym_BANGin] = ACTIONS(5215), - [anon_sym_is] = ACTIONS(5213), - [anon_sym_BANGis] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_PERCENT] = ACTIONS(5213), - [anon_sym_as_QMARK] = ACTIONS(5215), - [anon_sym_PLUS_PLUS] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5215), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_BANG_BANG] = ACTIONS(5215), - [anon_sym_suspend] = ACTIONS(5213), - [anon_sym_sealed] = ACTIONS(5213), - [anon_sym_annotation] = ACTIONS(5213), - [anon_sym_data] = ACTIONS(5213), - [anon_sym_inner] = ACTIONS(5213), - [anon_sym_value] = ACTIONS(5213), - [anon_sym_override] = ACTIONS(5213), - [anon_sym_lateinit] = ACTIONS(5213), - [anon_sym_public] = ACTIONS(5213), - [anon_sym_private] = ACTIONS(5213), - [anon_sym_internal] = ACTIONS(5213), - [anon_sym_protected] = ACTIONS(5213), - [anon_sym_tailrec] = ACTIONS(5213), - [anon_sym_operator] = ACTIONS(5213), - [anon_sym_infix] = ACTIONS(5213), - [anon_sym_inline] = ACTIONS(5213), - [anon_sym_external] = ACTIONS(5213), - [sym_property_modifier] = ACTIONS(5213), - [anon_sym_abstract] = ACTIONS(5213), - [anon_sym_final] = ACTIONS(5213), - [anon_sym_open] = ACTIONS(5213), - [anon_sym_vararg] = ACTIONS(5213), - [anon_sym_noinline] = ACTIONS(5213), - [anon_sym_crossinline] = ACTIONS(5213), - [anon_sym_expect] = ACTIONS(5213), - [anon_sym_actual] = ACTIONS(5213), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5215), - [anon_sym_continue_AT] = ACTIONS(5215), - [anon_sym_break_AT] = ACTIONS(5215), - [anon_sym_this_AT] = ACTIONS(5215), - [anon_sym_super_AT] = ACTIONS(5215), - [sym_real_literal] = ACTIONS(5215), - [sym_integer_literal] = ACTIONS(5213), - [sym_hex_literal] = ACTIONS(5215), - [sym_bin_literal] = ACTIONS(5215), - [anon_sym_true] = ACTIONS(5213), - [anon_sym_false] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5215), - [sym__backtick_identifier] = ACTIONS(5215), - [sym__automatic_semicolon] = ACTIONS(5215), - [sym_safe_nav] = ACTIONS(5215), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5215), - }, - [1187] = { - [sym_getter] = STATE(9251), - [sym_setter] = STATE(9251), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9312), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(5217), - [anon_sym_get] = ACTIONS(5219), - [anon_sym_set] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(3696), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [anon_sym_this_AT] = ACTIONS(3124), + [anon_sym_super_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), }, [1188] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_fun] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3193), - [anon_sym_super] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3195), - [anon_sym_continue_AT] = ACTIONS(3195), - [anon_sym_break_AT] = ACTIONS(3195), - [anon_sym_this_AT] = ACTIONS(3195), - [anon_sym_super_AT] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_hex_literal] = ACTIONS(3195), - [sym_bin_literal] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3195), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_object] = ACTIONS(3050), + [anon_sym_fun] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_super] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_when] = ACTIONS(3050), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3052), + [anon_sym_continue_AT] = ACTIONS(3052), + [anon_sym_break_AT] = ACTIONS(3052), + [anon_sym_this_AT] = ACTIONS(3052), + [anon_sym_super_AT] = ACTIONS(3052), + [sym_real_literal] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [sym_hex_literal] = ACTIONS(3052), + [sym_bin_literal] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3052), }, [1189] = { - [sym_getter] = STATE(9442), - [sym_setter] = STATE(9442), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9312), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(5227), - [anon_sym_get] = ACTIONS(5219), - [anon_sym_set] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_fun] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3100), + [anon_sym_super] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_null] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_when] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3102), + [anon_sym_continue_AT] = ACTIONS(3102), + [anon_sym_break_AT] = ACTIONS(3102), + [anon_sym_this_AT] = ACTIONS(3102), + [anon_sym_super_AT] = ACTIONS(3102), + [sym_real_literal] = ACTIONS(3102), + [sym_integer_literal] = ACTIONS(3100), + [sym_hex_literal] = ACTIONS(3102), + [sym_bin_literal] = ACTIONS(3102), + [anon_sym_true] = ACTIONS(3100), + [anon_sym_false] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3102), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3102), }, [1190] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3090), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3109), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [1191] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3191), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3117), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [1192] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5243), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(4523), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3113), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), }, [1193] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3096), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3096), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3132), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [1194] = { - [sym_getter] = STATE(9444), - [sym_setter] = STATE(9444), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9312), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(5249), - [anon_sym_get] = ACTIONS(5219), - [anon_sym_set] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3078), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [1195] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3108), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3108), - [anon_sym_DASH_EQ] = ACTIONS(3108), - [anon_sym_STAR_EQ] = ACTIONS(3108), - [anon_sym_SLASH_EQ] = ACTIONS(3108), - [anon_sym_PERCENT_EQ] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1196] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1197] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_super] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_when] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5243), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3096), - [anon_sym_continue_AT] = ACTIONS(3096), - [anon_sym_break_AT] = ACTIONS(3096), - [anon_sym_this_AT] = ACTIONS(3096), - [anon_sym_super_AT] = ACTIONS(3096), - [sym_real_literal] = ACTIONS(3096), - [sym_integer_literal] = ACTIONS(3094), - [sym_hex_literal] = ACTIONS(3096), - [sym_bin_literal] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3096), - }, - [1198] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3112), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1199] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3175), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1200] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3168), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_tailrec] = ACTIONS(3166), - [anon_sym_operator] = ACTIONS(3166), - [anon_sym_infix] = ACTIONS(3166), - [anon_sym_inline] = ACTIONS(3166), - [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3124), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [1201] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), + [1196] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3526), [anon_sym_COMMA] = ACTIONS(3139), [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), [anon_sym_where] = ACTIONS(3137), [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), [anon_sym_DASH_GT] = ACTIONS(3139), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3550), [anon_sym_PLUS_EQ] = ACTIONS(3139), [anon_sym_DASH_EQ] = ACTIONS(3139), [anon_sym_STAR_EQ] = ACTIONS(3139), [anon_sym_SLASH_EQ] = ACTIONS(3139), [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(3137), [anon_sym_sealed] = ACTIONS(3137), [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), [anon_sym_override] = ACTIONS(3137), [anon_sym_lateinit] = ACTIONS(3137), [anon_sym_public] = ACTIONS(3137), @@ -182621,256 +182365,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3137), [anon_sym_noinline] = ACTIONS(3137), [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [1202] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_DASH_GT] = ACTIONS(3161), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(3602), + [1197] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3086), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [1203] = { - [sym_getter] = STATE(9333), - [sym_setter] = STATE(9333), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9312), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(5251), - [anon_sym_get] = ACTIONS(5219), - [anon_sym_set] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [1198] = { + [sym_type_constraints] = STATE(1318), + [sym_function_body] = STATE(1127), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4123), + [anon_sym_fun] = ACTIONS(4123), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_this] = ACTIONS(4123), + [anon_sym_super] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [sym_label] = ACTIONS(4123), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_throw] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4125), + [anon_sym_continue_AT] = ACTIONS(4125), + [anon_sym_break_AT] = ACTIONS(4125), + [anon_sym_this_AT] = ACTIONS(4125), + [anon_sym_super_AT] = ACTIONS(4125), + [sym_real_literal] = ACTIONS(4125), + [sym_integer_literal] = ACTIONS(4123), + [sym_hex_literal] = ACTIONS(4125), + [sym_bin_literal] = ACTIONS(4125), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4125), + }, + [1199] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3059), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [1204] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), + [1200] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [1201] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3526), [anon_sym_COMMA] = ACTIONS(3143), [anon_sym_RPAREN] = ACTIONS(3143), [anon_sym_LT] = ACTIONS(3145), @@ -182879,9 +182833,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(3143), [anon_sym_get] = ACTIONS(3141), [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3588), + [anon_sym_STAR] = ACTIONS(3536), [anon_sym_DASH_GT] = ACTIONS(3143), - [sym_label] = ACTIONS(3590), + [sym_label] = ACTIONS(3538), [anon_sym_in] = ACTIONS(3141), [anon_sym_while] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), @@ -182889,7 +182843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3550), [anon_sym_PLUS_EQ] = ACTIONS(3143), [anon_sym_DASH_EQ] = ACTIONS(3143), [anon_sym_STAR_EQ] = ACTIONS(3143), @@ -182906,12 +182860,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(3141), [anon_sym_sealed] = ACTIONS(3141), [anon_sym_annotation] = ACTIONS(3141), @@ -182940,1511 +182894,1301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3141), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3602), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [1205] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3116), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [1202] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_DASH_GT] = ACTIONS(3102), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [1203] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3052), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, + [1204] = { + [sym_type_constraints] = STATE(1327), + [sym_function_body] = STATE(1166), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, + [1205] = { + [sym_type_constraints] = STATE(1330), + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, [1206] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_RPAREN] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3187), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3187), - [anon_sym_DASH_EQ] = ACTIONS(3187), - [anon_sym_STAR_EQ] = ACTIONS(3187), - [anon_sym_SLASH_EQ] = ACTIONS(3187), - [anon_sym_PERCENT_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3185), - [anon_sym_sealed] = ACTIONS(3185), - [anon_sym_annotation] = ACTIONS(3185), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_lateinit] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_internal] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_tailrec] = ACTIONS(3185), - [anon_sym_operator] = ACTIONS(3185), - [anon_sym_infix] = ACTIONS(3185), - [anon_sym_inline] = ACTIONS(3185), - [anon_sym_external] = ACTIONS(3185), - [sym_property_modifier] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_final] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_vararg] = ACTIONS(3185), - [anon_sym_noinline] = ACTIONS(3185), - [anon_sym_crossinline] = ACTIONS(3185), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_getter] = STATE(9240), + [sym_setter] = STATE(9240), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9327), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5197), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [1207] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3123), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3082), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [1208] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3127), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3063), + [anon_sym_RPAREN] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3063), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3063), + [anon_sym_DASH_EQ] = ACTIONS(3063), + [anon_sym_STAR_EQ] = ACTIONS(3063), + [anon_sym_SLASH_EQ] = ACTIONS(3063), + [anon_sym_PERCENT_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [1209] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3131), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(1332), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, [1210] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3580), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3135), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3604), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3604), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3606), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_BANGin] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5205), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [1211] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5209), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [1212] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym_getter] = STATE(9296), + [sym_setter] = STATE(9296), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9327), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5213), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, [1213] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_fun] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_super] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_when] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [anon_sym_this_AT] = ACTIONS(3168), - [anon_sym_super_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3166), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(4523), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3128), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), }, [1214] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3154), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3594), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3154), - [anon_sym_DASH_EQ] = ACTIONS(3154), - [anon_sym_STAR_EQ] = ACTIONS(3154), - [anon_sym_SLASH_EQ] = ACTIONS(3154), - [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1215] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_fun] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_super] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [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(5241), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5243), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [anon_sym_this_AT] = ACTIONS(3108), - [anon_sym_super_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3106), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), - }, - [1216] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3110), - [anon_sym_fun] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_super] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_when] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5243), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3112), - [anon_sym_continue_AT] = ACTIONS(3112), - [anon_sym_break_AT] = ACTIONS(3112), - [anon_sym_this_AT] = ACTIONS(3112), - [anon_sym_super_AT] = ACTIONS(3112), - [sym_real_literal] = ACTIONS(3112), - [sym_integer_literal] = ACTIONS(3110), - [sym_hex_literal] = ACTIONS(3112), - [sym_bin_literal] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3112), - }, - [1217] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(2140), - [sym__comparison_operator] = STATE(2141), - [sym__in_operator] = STATE(2142), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(2143), - [sym__multiplicative_operator] = STATE(2146), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2148), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_DASH_GT] = ACTIONS(3195), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_PERCENT] = ACTIONS(3588), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1218] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_fun] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3148), - [anon_sym_super] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_when] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [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(5241), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5243), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [anon_sym_this_AT] = ACTIONS(3150), - [anon_sym_super_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3148), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3148), - [anon_sym_false] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), - }, - [1219] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1852), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4465), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), [anon_sym_object] = ACTIONS(3141), @@ -184454,8 +184198,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(3141), [anon_sym_this] = ACTIONS(3141), [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), [anon_sym_in] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), @@ -184470,7 +184214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3141), [anon_sym_continue] = ACTIONS(3141), [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4479), [anon_sym_PLUS_EQ] = ACTIONS(3143), [anon_sym_DASH_EQ] = ACTIONS(3143), [anon_sym_STAR_EQ] = ACTIONS(3143), @@ -184487,13 +184231,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4493), [anon_sym_data] = ACTIONS(3141), [anon_sym_inner] = ACTIONS(3141), [anon_sym_value] = ACTIONS(3141), @@ -184514,614 +184258,1139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3143), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(4523), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3143), }, + [1215] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [1216] = { + [sym_getter] = STATE(9392), + [sym_setter] = STATE(9392), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9327), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5215), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1217] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_fun] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_super] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_when] = ACTIONS(3057), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3059), + [anon_sym_continue_AT] = ACTIONS(3059), + [anon_sym_break_AT] = ACTIONS(3059), + [anon_sym_this_AT] = ACTIONS(3059), + [anon_sym_super_AT] = ACTIONS(3059), + [sym_real_literal] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(3057), + [sym_hex_literal] = ACTIONS(3059), + [sym_bin_literal] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3059), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3059), + }, + [1218] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [1219] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3098), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, [1220] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(4523), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_fun] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_super] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_null] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [anon_sym_DASH_EQ] = ACTIONS(3139), + [anon_sym_STAR_EQ] = ACTIONS(3139), + [anon_sym_SLASH_EQ] = ACTIONS(3139), + [anon_sym_PERCENT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3139), + [anon_sym_continue_AT] = ACTIONS(3139), + [anon_sym_break_AT] = ACTIONS(3139), + [anon_sym_this_AT] = ACTIONS(3139), + [anon_sym_super_AT] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_hex_literal] = ACTIONS(3139), + [sym_bin_literal] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), + [sym__string_start] = ACTIONS(3139), }, [1221] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5243), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(4523), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3044), + [anon_sym_fun] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [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(4479), + [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(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3046), + [anon_sym_continue_AT] = ACTIONS(3046), + [anon_sym_break_AT] = ACTIONS(3046), + [anon_sym_this_AT] = ACTIONS(3046), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [sym__string_start] = ACTIONS(3046), }, [1222] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_fun] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3121), - [anon_sym_super] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_when] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3123), - [anon_sym_continue_AT] = ACTIONS(3123), - [anon_sym_break_AT] = ACTIONS(3123), - [anon_sym_this_AT] = ACTIONS(3123), - [anon_sym_super_AT] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3123), - [sym_integer_literal] = ACTIONS(3121), - [sym_hex_literal] = ACTIONS(3123), - [sym_bin_literal] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3123), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(4523), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3076), + [anon_sym_super] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_when] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3078), + [anon_sym_continue_AT] = ACTIONS(3078), + [anon_sym_break_AT] = ACTIONS(3078), + [anon_sym_this_AT] = ACTIONS(3078), + [anon_sym_super_AT] = ACTIONS(3078), + [sym_real_literal] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(3076), + [sym_hex_literal] = ACTIONS(3078), + [sym_bin_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3078), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3123), + [sym__string_start] = ACTIONS(3078), }, [1223] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_fun] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_null] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_when] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3127), - [anon_sym_continue_AT] = ACTIONS(3127), - [anon_sym_break_AT] = ACTIONS(3127), - [anon_sym_this_AT] = ACTIONS(3127), - [anon_sym_super_AT] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3127), - [sym_integer_literal] = ACTIONS(3125), - [sym_hex_literal] = ACTIONS(3127), - [sym_bin_literal] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3127), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(4523), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_fun] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_super] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_when] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3132), + [anon_sym_continue_AT] = ACTIONS(3132), + [anon_sym_break_AT] = ACTIONS(3132), + [anon_sym_this_AT] = ACTIONS(3132), + [anon_sym_super_AT] = ACTIONS(3132), + [sym_real_literal] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(3130), + [sym_hex_literal] = ACTIONS(3132), + [sym_bin_literal] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), + [sym__string_start] = ACTIONS(3132), }, [1224] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_super] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(5239), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5243), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3175), - [anon_sym_continue_AT] = ACTIONS(3175), - [anon_sym_break_AT] = ACTIONS(3175), - [anon_sym_this_AT] = ACTIONS(3175), - [anon_sym_super_AT] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_hex_literal] = ACTIONS(3175), - [sym_bin_literal] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3175), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_object] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3115), + [anon_sym_super] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_when] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3117), + [anon_sym_continue_AT] = ACTIONS(3117), + [anon_sym_break_AT] = ACTIONS(3117), + [anon_sym_this_AT] = ACTIONS(3117), + [anon_sym_super_AT] = ACTIONS(3117), + [sym_real_literal] = ACTIONS(3117), + [sym_integer_literal] = ACTIONS(3115), + [sym_hex_literal] = ACTIONS(3117), + [sym_bin_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(3115), + [anon_sym_false] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3117), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3117), }, [1225] = { - [sym_getter] = STATE(9224), - [sym_setter] = STATE(9224), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9312), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(5261), - [anon_sym_get] = ACTIONS(5219), - [anon_sym_set] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [sym_getter] = STATE(9418), + [sym_setter] = STATE(9418), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9327), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5217), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -185140,408 +185409,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [1226] = { - [sym_type_constraints] = STATE(1307), - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [1227] = { - [sym_type_constraints] = STATE(1304), - [sym_function_body] = STATE(1101), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [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(3216), - [anon_sym_object] = ACTIONS(4150), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), - }, - [1228] = { - [sym_type_constraints] = STATE(1303), - [sym_function_body] = STATE(1040), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(5269), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_COMMA] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4133), - [anon_sym_fun] = ACTIONS(4133), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_this] = ACTIONS(4133), - [anon_sym_super] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4135), - [sym_label] = ACTIONS(4133), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_if] = ACTIONS(4133), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_when] = ACTIONS(4133), - [anon_sym_try] = ACTIONS(4133), - [anon_sym_throw] = ACTIONS(4133), - [anon_sym_return] = ACTIONS(4133), - [anon_sym_continue] = ACTIONS(4133), - [anon_sym_break] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4135), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4133), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4135), - [anon_sym_continue_AT] = ACTIONS(4135), - [anon_sym_break_AT] = ACTIONS(4135), - [anon_sym_this_AT] = ACTIONS(4135), - [anon_sym_super_AT] = ACTIONS(4135), - [sym_real_literal] = ACTIONS(4135), - [sym_integer_literal] = ACTIONS(4133), - [sym_hex_literal] = ACTIONS(4135), - [sym_bin_literal] = ACTIONS(4135), - [anon_sym_true] = ACTIONS(4133), - [anon_sym_false] = ACTIONS(4133), - [anon_sym_SQUOTE] = ACTIONS(4135), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4135), - }, - [1229] = { - [sym_getter] = STATE(9132), - [sym_setter] = STATE(9132), - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_modifiers] = STATE(9312), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(5271), - [anon_sym_get] = ACTIONS(5219), - [anon_sym_set] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [sym_getter] = STATE(9446), + [sym_setter] = STATE(9446), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9327), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5219), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -185560,1909 +185514,976 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [1230] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_fun] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_super] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(5237), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5243), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3131), - [anon_sym_continue_AT] = ACTIONS(3131), - [anon_sym_break_AT] = ACTIONS(3131), - [anon_sym_this_AT] = ACTIONS(3131), - [anon_sym_super_AT] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_hex_literal] = ACTIONS(3131), - [sym_bin_literal] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(4523), + [1227] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), + }, + [1228] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3080), + [anon_sym_super] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_when] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3082), + [anon_sym_continue_AT] = ACTIONS(3082), + [anon_sym_break_AT] = ACTIONS(3082), + [anon_sym_this_AT] = ACTIONS(3082), + [anon_sym_super_AT] = ACTIONS(3082), + [sym_real_literal] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(3080), + [sym_hex_literal] = ACTIONS(3082), + [sym_bin_literal] = ACTIONS(3082), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3082), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3082), + }, + [1229] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3131), + [sym__string_start] = ACTIONS(3098), + }, + [1230] = { + [sym_type_constraints] = STATE(1336), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3194), + [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_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_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(4144), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, [1231] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5229), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3133), - [anon_sym_super] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5231), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(5235), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_when] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_throw] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(5241), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5243), - [anon_sym_EQ_EQ] = ACTIONS(5241), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5243), - [anon_sym_LT_EQ] = ACTIONS(5245), - [anon_sym_GT_EQ] = ACTIONS(5245), - [anon_sym_BANGin] = ACTIONS(5247), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3135), - [anon_sym_continue_AT] = ACTIONS(3135), - [anon_sym_break_AT] = ACTIONS(3135), - [anon_sym_this_AT] = ACTIONS(3135), - [anon_sym_super_AT] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3135), - [sym_integer_literal] = ACTIONS(3133), - [sym_hex_literal] = ACTIONS(3135), - [sym_bin_literal] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3135), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(4523), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_fun] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_super] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3128), + [anon_sym_continue_AT] = ACTIONS(3128), + [anon_sym_break_AT] = ACTIONS(3128), + [anon_sym_this_AT] = ACTIONS(3128), + [anon_sym_super_AT] = ACTIONS(3128), + [sym_real_literal] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_hex_literal] = ACTIONS(3128), + [sym_bin_literal] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3135), + [sym__string_start] = ACTIONS(3128), }, [1232] = { - [sym_type_constraints] = STATE(1306), - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(5273), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [sym_getter] = STATE(9379), + [sym_setter] = STATE(9379), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_modifiers] = STATE(9327), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(5223), + [anon_sym_get] = ACTIONS(5199), + [anon_sym_set] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, [1233] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_object] = ACTIONS(3159), - [anon_sym_fun] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_super] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_null] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3161), - [anon_sym_continue_AT] = ACTIONS(3161), - [anon_sym_break_AT] = ACTIONS(3161), - [anon_sym_this_AT] = ACTIONS(3161), - [anon_sym_super_AT] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_hex_literal] = ACTIONS(3161), - [sym_bin_literal] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(4523), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1503), + [sym__comparison_operator] = STATE(1502), + [sym__in_operator] = STATE(1501), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1500), + [sym__multiplicative_operator] = STATE(1486), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1485), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_fun] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_super] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(5167), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5169), + [anon_sym_DOT_DOT] = ACTIONS(5171), + [anon_sym_QMARK_COLON] = ACTIONS(5173), + [anon_sym_AMP_AMP] = ACTIONS(5175), + [anon_sym_PIPE_PIPE] = ACTIONS(5177), + [anon_sym_null] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(5179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5181), + [anon_sym_EQ_EQ] = ACTIONS(5179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5181), + [anon_sym_LT_EQ] = ACTIONS(5183), + [anon_sym_GT_EQ] = ACTIONS(5183), + [anon_sym_BANGin] = ACTIONS(5185), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5187), + [anon_sym_DASH] = ACTIONS(5187), + [anon_sym_SLASH] = ACTIONS(5167), + [anon_sym_PERCENT] = ACTIONS(5167), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3113), + [anon_sym_continue_AT] = ACTIONS(3113), + [anon_sym_break_AT] = ACTIONS(3113), + [anon_sym_this_AT] = ACTIONS(3113), + [anon_sym_super_AT] = ACTIONS(3113), + [sym_real_literal] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_hex_literal] = ACTIONS(3113), + [sym_bin_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3161), + [sym__string_start] = ACTIONS(3113), }, [1234] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1682), - [sym__comparison_operator] = STATE(1681), - [sym__in_operator] = STATE(1680), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1679), - [sym__multiplicative_operator] = STATE(1678), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1677), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_fun] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3152), - [anon_sym_super] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(5223), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(5233), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [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(4523), - [anon_sym_PLUS_EQ] = ACTIONS(3154), - [anon_sym_DASH_EQ] = ACTIONS(3154), - [anon_sym_STAR_EQ] = ACTIONS(3154), - [anon_sym_SLASH_EQ] = ACTIONS(3154), - [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5223), - [anon_sym_PERCENT] = ACTIONS(5223), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3046), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3154), - [anon_sym_continue_AT] = ACTIONS(3154), - [anon_sym_break_AT] = ACTIONS(3154), - [anon_sym_this_AT] = ACTIONS(3154), - [anon_sym_super_AT] = ACTIONS(3154), - [sym_real_literal] = ACTIONS(3154), - [sym_integer_literal] = ACTIONS(3152), - [sym_hex_literal] = ACTIONS(3154), - [sym_bin_literal] = ACTIONS(3154), - [anon_sym_true] = ACTIONS(3152), - [anon_sym_false] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3154), }, [1235] = { - [sym_type_constraints] = STATE(1305), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [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(3216), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [1236] = { - [sym__expression] = STATE(4289), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_object] = ACTIONS(5280), - [anon_sym_fun] = ACTIONS(5283), - [anon_sym_get] = ACTIONS(5286), - [anon_sym_set] = ACTIONS(5286), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_super] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2914), - [sym_label] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2920), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2926), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_BANG] = ACTIONS(2929), - [anon_sym_data] = ACTIONS(5286), - [anon_sym_inner] = ACTIONS(5286), - [anon_sym_value] = ACTIONS(5286), - [anon_sym_expect] = ACTIONS(5286), - [anon_sym_actual] = ACTIONS(5286), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2679), - [anon_sym_break_AT] = ACTIONS(2682), - [anon_sym_this_AT] = ACTIONS(2685), - [anon_sym_super_AT] = ACTIONS(2688), - [sym_real_literal] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2694), - [sym_hex_literal] = ACTIONS(2697), - [sym_bin_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2703), - [sym__backtick_identifier] = ACTIONS(2706), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2709), - }, - [1237] = { - [sym_type_constraints] = STATE(2174), - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [1238] = { - [sym_type_constraints] = STATE(1307), - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [1239] = { - [sym_type_constraints] = STATE(1306), - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [1240] = { - [sym_type_constraints] = STATE(1305), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [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(3216), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1465), + [sym__comparison_operator] = STATE(1463), + [sym__in_operator] = STATE(1462), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1461), + [sym__multiplicative_operator] = STATE(1460), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1458), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_RPAREN] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3528), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_DASH_GT] = ACTIONS(3074), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_QMARK_COLON] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3546), + [anon_sym_PIPE_PIPE] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3074), + [anon_sym_DASH_EQ] = ACTIONS(3074), + [anon_sym_STAR_EQ] = ACTIONS(3074), + [anon_sym_SLASH_EQ] = ACTIONS(3074), + [anon_sym_PERCENT_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(3552), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3554), + [anon_sym_EQ_EQ] = ACTIONS(3552), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3554), + [anon_sym_LT_EQ] = ACTIONS(3556), + [anon_sym_GT_EQ] = ACTIONS(3556), + [anon_sym_BANGin] = ACTIONS(3558), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_PERCENT] = ACTIONS(3536), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3072), + [anon_sym_sealed] = ACTIONS(3072), + [anon_sym_annotation] = ACTIONS(3072), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3072), + [anon_sym_lateinit] = ACTIONS(3072), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_internal] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_tailrec] = ACTIONS(3072), + [anon_sym_operator] = ACTIONS(3072), + [anon_sym_infix] = ACTIONS(3072), + [anon_sym_inline] = ACTIONS(3072), + [anon_sym_external] = ACTIONS(3072), + [sym_property_modifier] = ACTIONS(3072), + [anon_sym_abstract] = ACTIONS(3072), + [anon_sym_final] = ACTIONS(3072), + [anon_sym_open] = ACTIONS(3072), + [anon_sym_vararg] = ACTIONS(3072), + [anon_sym_noinline] = ACTIONS(3072), + [anon_sym_crossinline] = ACTIONS(3072), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), - }, - [1242] = { - [sym_type_constraints] = STATE(2185), - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [1243] = { - [sym__expression] = STATE(2253), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_object] = ACTIONS(5299), - [anon_sym_fun] = ACTIONS(5302), - [anon_sym_get] = ACTIONS(5305), - [anon_sym_set] = ACTIONS(5305), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2716), - [sym_label] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2722), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2725), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2719), - [anon_sym_PLUS_PLUS] = ACTIONS(2731), - [anon_sym_DASH_DASH] = ACTIONS(2731), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_data] = ACTIONS(5305), - [anon_sym_inner] = ACTIONS(5305), - [anon_sym_value] = ACTIONS(5305), - [anon_sym_expect] = ACTIONS(5305), - [anon_sym_actual] = ACTIONS(5305), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), - }, - [1244] = { - [sym_type_constraints] = STATE(2144), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(5308), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [1245] = { - [sym_type_constraints] = STATE(1794), - [sym_function_body] = STATE(1040), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(5310), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4133), - [anon_sym_fun] = ACTIONS(4133), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_this] = ACTIONS(4133), - [anon_sym_super] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4135), - [sym_label] = ACTIONS(4133), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_if] = ACTIONS(4133), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_when] = ACTIONS(4133), - [anon_sym_try] = ACTIONS(4133), - [anon_sym_throw] = ACTIONS(4133), - [anon_sym_return] = ACTIONS(4133), - [anon_sym_continue] = ACTIONS(4133), - [anon_sym_break] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4135), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4133), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4135), - [anon_sym_continue_AT] = ACTIONS(4135), - [anon_sym_break_AT] = ACTIONS(4135), - [anon_sym_this_AT] = ACTIONS(4135), - [anon_sym_super_AT] = ACTIONS(4135), - [sym_real_literal] = ACTIONS(4135), - [sym_integer_literal] = ACTIONS(4133), - [sym_hex_literal] = ACTIONS(4135), - [sym_bin_literal] = ACTIONS(4135), - [anon_sym_true] = ACTIONS(4133), - [anon_sym_false] = ACTIONS(4133), - [anon_sym_SQUOTE] = ACTIONS(4135), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4135), - }, - [1246] = { - [sym__expression] = STATE(362), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(5312), - [anon_sym_fun] = ACTIONS(5315), - [anon_sym_get] = ACTIONS(5318), - [anon_sym_set] = ACTIONS(5318), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2738), - [sym_label] = ACTIONS(2741), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2750), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2741), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_PLUS_PLUS] = ACTIONS(2753), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_data] = ACTIONS(5318), - [anon_sym_inner] = ACTIONS(5318), - [anon_sym_value] = ACTIONS(5318), - [anon_sym_expect] = ACTIONS(5318), - [anon_sym_actual] = ACTIONS(5318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), - }, - [1247] = { - [sym__expression] = STATE(1415), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_object] = ACTIONS(5321), - [anon_sym_fun] = ACTIONS(5324), - [anon_sym_get] = ACTIONS(5327), - [anon_sym_set] = ACTIONS(5327), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2870), - [sym_label] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2879), - [anon_sym_return] = ACTIONS(2882), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_PLUS_PLUS] = ACTIONS(2885), - [anon_sym_DASH_DASH] = ACTIONS(2885), - [anon_sym_BANG] = ACTIONS(2885), - [anon_sym_data] = ACTIONS(5327), - [anon_sym_inner] = ACTIONS(5327), - [anon_sym_value] = ACTIONS(5327), - [anon_sym_expect] = ACTIONS(5327), - [anon_sym_actual] = ACTIONS(5327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), }, - [1248] = { - [sym_type_constraints] = STATE(1308), - [sym_function_body] = STATE(1103), - [sym__block] = STATE(1092), + [1236] = { + [sym_type_constraints] = STATE(1339), + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1109), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3194), [anon_sym_object] = ACTIONS(4260), [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), @@ -187550,501 +186571,1957 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, - [1249] = { - [sym_type_constraints] = STATE(1309), - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), + [1237] = { + [sym__expression] = STATE(475), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_object] = ACTIONS(5228), + [anon_sym_fun] = ACTIONS(5231), + [anon_sym_get] = ACTIONS(5234), + [anon_sym_set] = ACTIONS(5234), + [anon_sym_this] = ACTIONS(2533), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2539), + [sym_label] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2548), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_throw] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2560), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2542), + [anon_sym_PLUS_PLUS] = ACTIONS(2569), + [anon_sym_DASH_DASH] = ACTIONS(2569), + [anon_sym_BANG] = ACTIONS(2569), + [anon_sym_data] = ACTIONS(5234), + [anon_sym_inner] = ACTIONS(5234), + [anon_sym_value] = ACTIONS(5234), + [anon_sym_expect] = ACTIONS(5234), + [anon_sym_actual] = ACTIONS(5234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2572), + [anon_sym_break_AT] = ACTIONS(2575), + [anon_sym_this_AT] = ACTIONS(2578), + [anon_sym_super_AT] = ACTIONS(2581), + [sym_real_literal] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2587), + [sym_hex_literal] = ACTIONS(2590), + [sym_bin_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym__backtick_identifier] = ACTIONS(2599), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2602), }, - [1250] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(5330), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(5332), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [1238] = { + [sym_type_constraints] = STATE(1593), + [sym_function_body] = STATE(1127), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4123), + [anon_sym_fun] = ACTIONS(4123), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_this] = ACTIONS(4123), + [anon_sym_super] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [sym_label] = ACTIONS(4123), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_throw] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4125), + [anon_sym_continue_AT] = ACTIONS(4125), + [anon_sym_break_AT] = ACTIONS(4125), + [anon_sym_this_AT] = ACTIONS(4125), + [anon_sym_super_AT] = ACTIONS(4125), + [sym_real_literal] = ACTIONS(4125), + [sym_integer_literal] = ACTIONS(4123), + [sym_hex_literal] = ACTIONS(4125), + [sym_bin_literal] = ACTIONS(4125), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4125), + }, + [1239] = { + [sym__expression] = STATE(1800), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_object] = ACTIONS(5241), + [anon_sym_fun] = ACTIONS(5244), + [anon_sym_get] = ACTIONS(5247), + [anon_sym_set] = ACTIONS(5247), + [anon_sym_this] = ACTIONS(2629), + [anon_sym_super] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2906), + [sym_label] = ACTIONS(2909), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2912), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2921), + [anon_sym_DASH_DASH] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_data] = ACTIONS(5247), + [anon_sym_inner] = ACTIONS(5247), + [anon_sym_value] = ACTIONS(5247), + [anon_sym_expect] = ACTIONS(5247), + [anon_sym_actual] = ACTIONS(5247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2668), + [anon_sym_continue_AT] = ACTIONS(2671), + [anon_sym_break_AT] = ACTIONS(2674), + [anon_sym_this_AT] = ACTIONS(2677), + [anon_sym_super_AT] = ACTIONS(2680), + [sym_real_literal] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2686), + [sym_hex_literal] = ACTIONS(2689), + [sym_bin_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym__backtick_identifier] = ACTIONS(2698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2701), + }, + [1240] = { + [sym_type_constraints] = STATE(1337), + [sym_function_body] = STATE(1120), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), + }, + [1241] = { + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(2020), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_object] = ACTIONS(5250), + [anon_sym_fun] = ACTIONS(5253), + [anon_sym_get] = ACTIONS(5256), + [anon_sym_set] = ACTIONS(5256), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_super] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2274), + [sym_label] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_when] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_PLUS_PLUS] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_data] = ACTIONS(5256), + [anon_sym_inner] = ACTIONS(5256), + [anon_sym_value] = ACTIONS(5256), + [anon_sym_expect] = ACTIONS(5256), + [anon_sym_actual] = ACTIONS(5256), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2094), + [anon_sym_break_AT] = ACTIONS(2097), + [anon_sym_this_AT] = ACTIONS(2100), + [anon_sym_super_AT] = ACTIONS(2103), + [sym_real_literal] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2109), + [sym_hex_literal] = ACTIONS(2112), + [sym_bin_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2118), + [sym__backtick_identifier] = ACTIONS(2121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2124), + }, + [1242] = { + [sym_getter] = STATE(10016), + [sym_setter] = STATE(10016), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9211), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(5259), + [anon_sym_get] = ACTIONS(5261), + [anon_sym_set] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), }, - [1251] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5334), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4240), - [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(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [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(4240), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [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(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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(4240), - [anon_sym_continue_AT] = ACTIONS(4240), - [anon_sym_break_AT] = ACTIONS(4240), - [anon_sym_this_AT] = ACTIONS(4240), - [anon_sym_super_AT] = ACTIONS(4240), - [sym_real_literal] = ACTIONS(4240), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4240), - [sym_bin_literal] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4240), - [sym__backtick_identifier] = ACTIONS(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4240), + [1243] = { + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_object] = ACTIONS(5228), + [anon_sym_fun] = ACTIONS(5265), + [anon_sym_get] = ACTIONS(5234), + [anon_sym_set] = ACTIONS(5234), + [anon_sym_this] = ACTIONS(2533), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2972), + [sym_label] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2978), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2984), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2975), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_data] = ACTIONS(5234), + [anon_sym_inner] = ACTIONS(5234), + [anon_sym_value] = ACTIONS(5234), + [anon_sym_expect] = ACTIONS(5234), + [anon_sym_actual] = ACTIONS(5234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2572), + [anon_sym_break_AT] = ACTIONS(2575), + [anon_sym_this_AT] = ACTIONS(2578), + [anon_sym_super_AT] = ACTIONS(2581), + [sym_real_literal] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2587), + [sym_hex_literal] = ACTIONS(2590), + [sym_bin_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym__backtick_identifier] = ACTIONS(2599), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2602), + }, + [1244] = { + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_object] = ACTIONS(5268), + [anon_sym_fun] = ACTIONS(5271), + [anon_sym_get] = ACTIONS(5274), + [anon_sym_set] = ACTIONS(5274), + [anon_sym_this] = ACTIONS(2316), + [anon_sym_super] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2884), + [sym_label] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_when] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2896), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2887), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_data] = ACTIONS(5274), + [anon_sym_inner] = ACTIONS(5274), + [anon_sym_value] = ACTIONS(5274), + [anon_sym_expect] = ACTIONS(5274), + [anon_sym_actual] = ACTIONS(5274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2355), + [anon_sym_break_AT] = ACTIONS(2358), + [anon_sym_this_AT] = ACTIONS(2361), + [anon_sym_super_AT] = ACTIONS(2364), + [sym_real_literal] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2370), + [sym_hex_literal] = ACTIONS(2373), + [sym_bin_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym__backtick_identifier] = ACTIONS(2382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2385), + }, + [1245] = { + [sym__expression] = STATE(4241), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_object] = ACTIONS(5277), + [anon_sym_fun] = ACTIONS(5280), + [anon_sym_get] = ACTIONS(5283), + [anon_sym_set] = ACTIONS(5283), + [anon_sym_this] = ACTIONS(2151), + [anon_sym_super] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2252), + [sym_label] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2258), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2267), + [anon_sym_DASH_DASH] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_data] = ACTIONS(5283), + [anon_sym_inner] = ACTIONS(5283), + [anon_sym_value] = ACTIONS(5283), + [anon_sym_expect] = ACTIONS(5283), + [anon_sym_actual] = ACTIONS(5283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2193), + [anon_sym_break_AT] = ACTIONS(2196), + [anon_sym_this_AT] = ACTIONS(2199), + [anon_sym_super_AT] = ACTIONS(2202), + [sym_real_literal] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2208), + [sym_hex_literal] = ACTIONS(2211), + [sym_bin_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2217), + [sym__backtick_identifier] = ACTIONS(2220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2223), + }, + [1246] = { + [sym__expression] = STATE(4115), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_object] = ACTIONS(5286), + [anon_sym_fun] = ACTIONS(5289), + [anon_sym_get] = ACTIONS(5292), + [anon_sym_set] = ACTIONS(5292), + [anon_sym_this] = ACTIONS(2434), + [anon_sym_super] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2928), + [sym_label] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_when] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2940), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2931), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_data] = ACTIONS(5292), + [anon_sym_inner] = ACTIONS(5292), + [anon_sym_value] = ACTIONS(5292), + [anon_sym_expect] = ACTIONS(5292), + [anon_sym_actual] = ACTIONS(5292), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2473), + [anon_sym_continue_AT] = ACTIONS(2476), + [anon_sym_break_AT] = ACTIONS(2479), + [anon_sym_this_AT] = ACTIONS(2482), + [anon_sym_super_AT] = ACTIONS(2485), + [sym_real_literal] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2491), + [sym_hex_literal] = ACTIONS(2494), + [sym_bin_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2500), + [sym__backtick_identifier] = ACTIONS(2503), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2506), + }, + [1247] = { + [sym__expression] = STATE(4077), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_object] = ACTIONS(5277), + [anon_sym_fun] = ACTIONS(5295), + [anon_sym_get] = ACTIONS(5283), + [anon_sym_set] = ACTIONS(5283), + [anon_sym_this] = ACTIONS(2151), + [anon_sym_super] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2818), + [sym_label] = ACTIONS(2821), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2824), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2827), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2833), + [anon_sym_DASH_DASH] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_data] = ACTIONS(5283), + [anon_sym_inner] = ACTIONS(5283), + [anon_sym_value] = ACTIONS(5283), + [anon_sym_expect] = ACTIONS(5283), + [anon_sym_actual] = ACTIONS(5283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2193), + [anon_sym_break_AT] = ACTIONS(2196), + [anon_sym_this_AT] = ACTIONS(2199), + [anon_sym_super_AT] = ACTIONS(2202), + [sym_real_literal] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2208), + [sym_hex_literal] = ACTIONS(2211), + [sym_bin_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2217), + [sym__backtick_identifier] = ACTIONS(2220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2223), + }, + [1248] = { + [sym__expression] = STATE(4272), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_object] = ACTIONS(5286), + [anon_sym_fun] = ACTIONS(5298), + [anon_sym_get] = ACTIONS(5292), + [anon_sym_set] = ACTIONS(5292), + [anon_sym_this] = ACTIONS(2434), + [anon_sym_super] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2752), + [sym_label] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_when] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2764), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_data] = ACTIONS(5292), + [anon_sym_inner] = ACTIONS(5292), + [anon_sym_value] = ACTIONS(5292), + [anon_sym_expect] = ACTIONS(5292), + [anon_sym_actual] = ACTIONS(5292), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2473), + [anon_sym_continue_AT] = ACTIONS(2476), + [anon_sym_break_AT] = ACTIONS(2479), + [anon_sym_this_AT] = ACTIONS(2482), + [anon_sym_super_AT] = ACTIONS(2485), + [sym_real_literal] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2491), + [sym_hex_literal] = ACTIONS(2494), + [sym_bin_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2500), + [sym__backtick_identifier] = ACTIONS(2503), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2506), + }, + [1249] = { + [sym__expression] = STATE(4021), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_object] = ACTIONS(5286), + [anon_sym_fun] = ACTIONS(5301), + [anon_sym_get] = ACTIONS(5292), + [anon_sym_set] = ACTIONS(5292), + [anon_sym_this] = ACTIONS(2434), + [anon_sym_super] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2440), + [sym_label] = ACTIONS(2443), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_when] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2443), + [anon_sym_DASH] = ACTIONS(2443), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_data] = ACTIONS(5292), + [anon_sym_inner] = ACTIONS(5292), + [anon_sym_value] = ACTIONS(5292), + [anon_sym_expect] = ACTIONS(5292), + [anon_sym_actual] = ACTIONS(5292), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2473), + [anon_sym_continue_AT] = ACTIONS(2476), + [anon_sym_break_AT] = ACTIONS(2479), + [anon_sym_this_AT] = ACTIONS(2482), + [anon_sym_super_AT] = ACTIONS(2485), + [sym_real_literal] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2491), + [sym_hex_literal] = ACTIONS(2494), + [sym_bin_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2500), + [sym__backtick_identifier] = ACTIONS(2503), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2506), + }, + [1250] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), + }, + [1251] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(5306), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_object] = ACTIONS(4840), + [anon_sym_fun] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_this] = ACTIONS(4840), + [anon_sym_super] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4840), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), }, [1252] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(5332), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [1253] = { - [sym_getter] = STATE(9718), - [sym_setter] = STATE(9718), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9365), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(5336), - [anon_sym_get] = ACTIONS(5338), - [anon_sym_set] = ACTIONS(5340), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), + }, + [1254] = { + [sym__expression] = STATE(1803), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_object] = ACTIONS(5268), + [anon_sym_fun] = ACTIONS(5316), + [anon_sym_get] = ACTIONS(5274), + [anon_sym_set] = ACTIONS(5274), + [anon_sym_this] = ACTIONS(2316), + [anon_sym_super] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2840), + [sym_label] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_when] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2852), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2843), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2855), + [anon_sym_data] = ACTIONS(5274), + [anon_sym_inner] = ACTIONS(5274), + [anon_sym_value] = ACTIONS(5274), + [anon_sym_expect] = ACTIONS(5274), + [anon_sym_actual] = ACTIONS(5274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2355), + [anon_sym_break_AT] = ACTIONS(2358), + [anon_sym_this_AT] = ACTIONS(2361), + [anon_sym_super_AT] = ACTIONS(2364), + [sym_real_literal] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2370), + [sym_hex_literal] = ACTIONS(2373), + [sym_bin_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym__backtick_identifier] = ACTIONS(2382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2385), + }, + [1255] = { + [sym_getter] = STATE(9888), + [sym_setter] = STATE(9888), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9211), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(5319), + [anon_sym_get] = ACTIONS(5261), + [anon_sym_set] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -188063,924 +188540,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [1254] = { - [sym__expression] = STATE(2054), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_object] = ACTIONS(5299), - [anon_sym_fun] = ACTIONS(5342), - [anon_sym_get] = ACTIONS(5305), - [anon_sym_set] = ACTIONS(5305), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2958), - [sym_label] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2964), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2961), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_data] = ACTIONS(5305), - [anon_sym_inner] = ACTIONS(5305), - [anon_sym_value] = ACTIONS(5305), - [anon_sym_expect] = ACTIONS(5305), - [anon_sym_actual] = ACTIONS(5305), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), - }, - [1255] = { - [sym_function_body] = STATE(1162), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), - }, [1256] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_this] = ACTIONS(4228), - [anon_sym_super] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [sym_label] = ACTIONS(4228), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_throw] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4226), - [anon_sym_continue_AT] = ACTIONS(4226), - [anon_sym_break_AT] = ACTIONS(4226), - [anon_sym_this_AT] = ACTIONS(4226), - [anon_sym_super_AT] = ACTIONS(4226), - [sym_real_literal] = ACTIONS(4226), - [sym_integer_literal] = ACTIONS(4228), - [sym_hex_literal] = ACTIONS(4226), - [sym_bin_literal] = ACTIONS(4226), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4226), + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4188), + [anon_sym_continue_AT] = ACTIONS(4188), + [anon_sym_break_AT] = ACTIONS(4188), + [anon_sym_this_AT] = ACTIONS(4188), + [anon_sym_super_AT] = ACTIONS(4188), + [sym_real_literal] = ACTIONS(4188), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4188), + [sym_bin_literal] = ACTIONS(4188), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4188), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4188), }, [1257] = { - [sym__expression] = STATE(970), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_object] = ACTIONS(5349), - [anon_sym_fun] = ACTIONS(5352), - [anon_sym_get] = ACTIONS(5355), - [anon_sym_set] = ACTIONS(5355), - [anon_sym_this] = ACTIONS(2541), - [anon_sym_super] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2547), - [sym_label] = ACTIONS(2550), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_when] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2550), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_PLUS_PLUS] = ACTIONS(2577), - [anon_sym_DASH_DASH] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2577), - [anon_sym_data] = ACTIONS(5355), - [anon_sym_inner] = ACTIONS(5355), - [anon_sym_value] = ACTIONS(5355), - [anon_sym_expect] = ACTIONS(5355), - [anon_sym_actual] = ACTIONS(5355), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2583), - [anon_sym_break_AT] = ACTIONS(2586), - [anon_sym_this_AT] = ACTIONS(2589), - [anon_sym_super_AT] = ACTIONS(2592), - [sym_real_literal] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2598), - [sym_hex_literal] = ACTIONS(2601), - [sym_bin_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2607), - [sym__backtick_identifier] = ACTIONS(2610), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2613), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), }, [1258] = { - [sym_function_body] = STATE(1120), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(5358), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [sym__expression] = STATE(521), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_object] = ACTIONS(5228), + [anon_sym_fun] = ACTIONS(5325), + [anon_sym_get] = ACTIONS(5234), + [anon_sym_set] = ACTIONS(5234), + [anon_sym_this] = ACTIONS(2533), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2730), + [sym_label] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2736), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_throw] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2745), + [anon_sym_DASH_DASH] = ACTIONS(2745), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_data] = ACTIONS(5234), + [anon_sym_inner] = ACTIONS(5234), + [anon_sym_value] = ACTIONS(5234), + [anon_sym_expect] = ACTIONS(5234), + [anon_sym_actual] = ACTIONS(5234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2572), + [anon_sym_break_AT] = ACTIONS(2575), + [anon_sym_this_AT] = ACTIONS(2578), + [anon_sym_super_AT] = ACTIONS(2581), + [sym_real_literal] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2587), + [sym_hex_literal] = ACTIONS(2590), + [sym_bin_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym__backtick_identifier] = ACTIONS(2599), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2602), }, [1259] = { - [sym__expression] = STATE(4003), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_object] = ACTIONS(5360), - [anon_sym_fun] = ACTIONS(5363), - [anon_sym_get] = ACTIONS(5366), - [anon_sym_set] = ACTIONS(5366), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2936), - [sym_label] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2942), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2948), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_data] = ACTIONS(5366), - [anon_sym_inner] = ACTIONS(5366), - [anon_sym_value] = ACTIONS(5366), - [anon_sym_expect] = ACTIONS(5366), - [anon_sym_actual] = ACTIONS(5366), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [sym__expression] = STATE(2453), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(2020), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_object] = ACTIONS(5250), + [anon_sym_fun] = ACTIONS(5328), + [anon_sym_get] = ACTIONS(5256), + [anon_sym_set] = ACTIONS(5256), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_super] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2056), + [sym_label] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_when] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_PLUS_PLUS] = ACTIONS(2088), + [anon_sym_DASH_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_data] = ACTIONS(5256), + [anon_sym_inner] = ACTIONS(5256), + [anon_sym_value] = ACTIONS(5256), + [anon_sym_expect] = ACTIONS(5256), + [anon_sym_actual] = ACTIONS(5256), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2094), + [anon_sym_break_AT] = ACTIONS(2097), + [anon_sym_this_AT] = ACTIONS(2100), + [anon_sym_super_AT] = ACTIONS(2103), + [sym_real_literal] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2109), + [sym_hex_literal] = ACTIONS(2112), + [sym_bin_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2118), + [sym__backtick_identifier] = ACTIONS(2121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2124), }, [1260] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym_type_constraints] = STATE(1706), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(5331), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3194), + [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_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_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(4144), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, [1261] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(5333), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [1262] = { - [sym_getter] = STATE(9808), - [sym_setter] = STATE(9808), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9365), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(5377), - [anon_sym_get] = ACTIONS(5338), - [anon_sym_set] = ACTIONS(5340), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(5337), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4217), + [anon_sym_DASH_EQ] = ACTIONS(4217), + [anon_sym_STAR_EQ] = ACTIONS(4217), + [anon_sym_SLASH_EQ] = ACTIONS(4217), + [anon_sym_PERCENT_EQ] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), + }, + [1263] = { + [sym_getter] = STATE(9875), + [sym_setter] = STATE(9875), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9211), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(5341), + [anon_sym_get] = ACTIONS(5261), + [anon_sym_set] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -188999,92 +189372,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [1263] = { - [sym_getter] = STATE(9497), - [sym_setter] = STATE(9497), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9365), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(5379), - [anon_sym_get] = ACTIONS(5338), - [anon_sym_set] = ACTIONS(5340), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [1264] = { + [sym_type_constraints] = STATE(1336), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3194), + [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_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_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(4144), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [1265] = { + [sym_type_constraints] = STATE(1638), + [sym_function_body] = STATE(1166), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(5343), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, + [1266] = { + [sym_function_body] = STATE(1071), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(5345), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_where] = ACTIONS(4250), + [anon_sym_object] = ACTIONS(4250), + [anon_sym_fun] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_this] = ACTIONS(4250), + [anon_sym_super] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_null] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_when] = ACTIONS(4250), + [anon_sym_try] = ACTIONS(4250), + [anon_sym_throw] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4252), + [anon_sym_continue_AT] = ACTIONS(4252), + [anon_sym_break_AT] = ACTIONS(4252), + [anon_sym_this_AT] = ACTIONS(4252), + [anon_sym_super_AT] = ACTIONS(4252), + [sym_real_literal] = ACTIONS(4252), + [sym_integer_literal] = ACTIONS(4250), + [sym_hex_literal] = ACTIONS(4252), + [sym_bin_literal] = ACTIONS(4252), + [anon_sym_true] = ACTIONS(4250), + [anon_sym_false] = ACTIONS(4250), + [anon_sym_SQUOTE] = ACTIONS(4252), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4252), + }, + [1267] = { + [sym__expression] = STATE(2249), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_object] = ACTIONS(5241), + [anon_sym_fun] = ACTIONS(5347), + [anon_sym_get] = ACTIONS(5247), + [anon_sym_set] = ACTIONS(5247), + [anon_sym_this] = ACTIONS(2629), + [anon_sym_super] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2708), + [sym_label] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2720), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2711), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_data] = ACTIONS(5247), + [anon_sym_inner] = ACTIONS(5247), + [anon_sym_value] = ACTIONS(5247), + [anon_sym_expect] = ACTIONS(5247), + [anon_sym_actual] = ACTIONS(5247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2668), + [anon_sym_continue_AT] = ACTIONS(2671), + [anon_sym_break_AT] = ACTIONS(2674), + [anon_sym_this_AT] = ACTIONS(2677), + [anon_sym_super_AT] = ACTIONS(2680), + [sym_real_literal] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2686), + [sym_hex_literal] = ACTIONS(2689), + [sym_bin_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym__backtick_identifier] = ACTIONS(2698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2701), + }, + [1268] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [1269] = { + [sym_type_constraints] = STATE(1332), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [1270] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [1271] = { + [sym_getter] = STATE(10035), + [sym_setter] = STATE(10035), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9211), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(5358), + [anon_sym_get] = ACTIONS(5261), + [anon_sym_set] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -189103,716 +190204,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(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [1264] = { - [sym__expression] = STATE(3286), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_object] = ACTIONS(5360), - [anon_sym_fun] = ACTIONS(5381), - [anon_sym_get] = ACTIONS(5366), - [anon_sym_set] = ACTIONS(5366), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2848), - [sym_label] = ACTIONS(2851), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2854), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2857), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_data] = ACTIONS(5366), - [anon_sym_inner] = ACTIONS(5366), - [anon_sym_value] = ACTIONS(5366), - [anon_sym_expect] = ACTIONS(5366), - [anon_sym_actual] = ACTIONS(5366), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), - }, - [1265] = { - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(5312), - [anon_sym_fun] = ACTIONS(5384), - [anon_sym_get] = ACTIONS(5318), - [anon_sym_set] = ACTIONS(5318), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2826), - [sym_label] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2835), - [anon_sym_return] = ACTIONS(2838), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2829), - [anon_sym_PLUS_PLUS] = ACTIONS(2841), - [anon_sym_DASH_DASH] = ACTIONS(2841), - [anon_sym_BANG] = ACTIONS(2841), - [anon_sym_data] = ACTIONS(5318), - [anon_sym_inner] = ACTIONS(5318), - [anon_sym_value] = ACTIONS(5318), - [anon_sym_expect] = ACTIONS(5318), - [anon_sym_actual] = ACTIONS(5318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), - }, - [1266] = { - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_object] = ACTIONS(5299), - [anon_sym_fun] = ACTIONS(5387), - [anon_sym_get] = ACTIONS(5305), - [anon_sym_set] = ACTIONS(5305), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(3024), - [sym_label] = ACTIONS(3027), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(3030), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3036), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_data] = ACTIONS(5305), - [anon_sym_inner] = ACTIONS(5305), - [anon_sym_value] = ACTIONS(5305), - [anon_sym_expect] = ACTIONS(5305), - [anon_sym_actual] = ACTIONS(5305), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), - }, - [1267] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5390), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4228), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [1268] = { - [sym__expression] = STATE(3761), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_object] = ACTIONS(5280), - [anon_sym_fun] = ACTIONS(5394), - [anon_sym_get] = ACTIONS(5286), - [anon_sym_set] = ACTIONS(5286), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_super] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2804), - [sym_label] = ACTIONS(2807), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2810), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_PLUS_PLUS] = ACTIONS(2819), - [anon_sym_DASH_DASH] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_data] = ACTIONS(5286), - [anon_sym_inner] = ACTIONS(5286), - [anon_sym_value] = ACTIONS(5286), - [anon_sym_expect] = ACTIONS(5286), - [anon_sym_actual] = ACTIONS(5286), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2679), - [anon_sym_break_AT] = ACTIONS(2682), - [anon_sym_this_AT] = ACTIONS(2685), - [anon_sym_super_AT] = ACTIONS(2688), - [sym_real_literal] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2694), - [sym_hex_literal] = ACTIONS(2697), - [sym_bin_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2703), - [sym__backtick_identifier] = ACTIONS(2706), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2709), + [1272] = { + [sym__expression] = STATE(3810), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_object] = ACTIONS(5277), + [anon_sym_fun] = ACTIONS(5360), + [anon_sym_get] = ACTIONS(5283), + [anon_sym_set] = ACTIONS(5283), + [anon_sym_this] = ACTIONS(2151), + [anon_sym_super] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2774), + [sym_label] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2780), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2783), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2789), + [anon_sym_DASH_DASH] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_data] = ACTIONS(5283), + [anon_sym_inner] = ACTIONS(5283), + [anon_sym_value] = ACTIONS(5283), + [anon_sym_expect] = ACTIONS(5283), + [anon_sym_actual] = ACTIONS(5283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2193), + [anon_sym_break_AT] = ACTIONS(2196), + [anon_sym_this_AT] = ACTIONS(2199), + [anon_sym_super_AT] = ACTIONS(2202), + [sym_real_literal] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2208), + [sym_hex_literal] = ACTIONS(2211), + [sym_bin_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2217), + [sym__backtick_identifier] = ACTIONS(2220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2223), }, - [1269] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_object] = ACTIONS(5360), - [anon_sym_fun] = ACTIONS(5397), - [anon_sym_get] = ACTIONS(5366), - [anon_sym_set] = ACTIONS(5366), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(3002), - [sym_label] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(3008), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(3011), - [anon_sym_return] = ACTIONS(3014), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_data] = ACTIONS(5366), - [anon_sym_inner] = ACTIONS(5366), - [anon_sym_value] = ACTIONS(5366), - [anon_sym_expect] = ACTIONS(5366), - [anon_sym_actual] = ACTIONS(5366), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [1273] = { + [sym_type_constraints] = STATE(1330), + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, - [1270] = { - [sym_getter] = STATE(9819), - [sym_setter] = STATE(9819), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9365), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(5400), - [anon_sym_get] = ACTIONS(5338), - [anon_sym_set] = ACTIONS(5340), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [1274] = { + [sym_getter] = STATE(9908), + [sym_setter] = STATE(9908), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9211), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(5363), + [anon_sym_get] = ACTIONS(5261), + [anon_sym_set] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -189831,1860 +190516,1444 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1271] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5402), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), - }, - [1272] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(5406), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_object] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_this] = ACTIONS(4844), - [anon_sym_super] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [sym_label] = ACTIONS(4844), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4844), - [anon_sym_if] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_throw] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_continue] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4844), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4846), - [anon_sym_continue_AT] = ACTIONS(4846), - [anon_sym_break_AT] = ACTIONS(4846), - [anon_sym_this_AT] = ACTIONS(4846), - [anon_sym_super_AT] = ACTIONS(4846), - [sym_real_literal] = ACTIONS(4846), - [sym_integer_literal] = ACTIONS(4844), - [sym_hex_literal] = ACTIONS(4846), - [sym_bin_literal] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4846), - }, - [1273] = { - [sym__expression] = STATE(532), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(5312), - [anon_sym_fun] = ACTIONS(5408), - [anon_sym_get] = ACTIONS(5318), - [anon_sym_set] = ACTIONS(5318), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2308), - [sym_label] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2317), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2329), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2311), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_data] = ACTIONS(5318), - [anon_sym_inner] = ACTIONS(5318), - [anon_sym_value] = ACTIONS(5318), - [anon_sym_expect] = ACTIONS(5318), - [anon_sym_actual] = ACTIONS(5318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), - }, - [1274] = { - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_where] = ACTIONS(4289), - [anon_sym_object] = ACTIONS(4289), - [anon_sym_fun] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_this] = ACTIONS(4289), - [anon_sym_super] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4289), - [anon_sym_if] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_when] = ACTIONS(4289), - [anon_sym_try] = ACTIONS(4289), - [anon_sym_throw] = ACTIONS(4289), - [anon_sym_return] = ACTIONS(4289), - [anon_sym_continue] = ACTIONS(4289), - [anon_sym_break] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4291), - [anon_sym_continue_AT] = ACTIONS(4291), - [anon_sym_break_AT] = ACTIONS(4291), - [anon_sym_this_AT] = ACTIONS(4291), - [anon_sym_super_AT] = ACTIONS(4291), - [sym_real_literal] = ACTIONS(4291), - [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4291), - [sym_bin_literal] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4289), - [anon_sym_false] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4291), }, [1275] = { - [sym__expression] = STATE(4102), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2399), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_object] = ACTIONS(5360), - [anon_sym_fun] = ACTIONS(5413), - [anon_sym_get] = ACTIONS(5366), - [anon_sym_set] = ACTIONS(5366), - [anon_sym_this] = ACTIONS(2420), - [anon_sym_super] = ACTIONS(2423), - [anon_sym_STAR] = ACTIONS(2426), - [sym_label] = ACTIONS(2429), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2432), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_when] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2441), - [anon_sym_throw] = ACTIONS(2444), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_PLUS] = ACTIONS(2429), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_PLUS_PLUS] = ACTIONS(2456), - [anon_sym_DASH_DASH] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_data] = ACTIONS(5366), - [anon_sym_inner] = ACTIONS(5366), - [anon_sym_value] = ACTIONS(5366), - [anon_sym_expect] = ACTIONS(5366), - [anon_sym_actual] = ACTIONS(5366), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2459), - [anon_sym_continue_AT] = ACTIONS(2462), - [anon_sym_break_AT] = ACTIONS(2465), - [anon_sym_this_AT] = ACTIONS(2468), - [anon_sym_super_AT] = ACTIONS(2471), - [sym_real_literal] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2477), - [sym_hex_literal] = ACTIONS(2480), - [sym_bin_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SQUOTE] = ACTIONS(2486), - [sym__backtick_identifier] = ACTIONS(2489), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2492), + [sym__expression] = STATE(2293), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_object] = ACTIONS(5268), + [anon_sym_fun] = ACTIONS(5365), + [anon_sym_get] = ACTIONS(5274), + [anon_sym_set] = ACTIONS(5274), + [anon_sym_this] = ACTIONS(2316), + [anon_sym_super] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2322), + [sym_label] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_when] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2325), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_PLUS_PLUS] = ACTIONS(2352), + [anon_sym_DASH_DASH] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_data] = ACTIONS(5274), + [anon_sym_inner] = ACTIONS(5274), + [anon_sym_value] = ACTIONS(5274), + [anon_sym_expect] = ACTIONS(5274), + [anon_sym_actual] = ACTIONS(5274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2355), + [anon_sym_break_AT] = ACTIONS(2358), + [anon_sym_this_AT] = ACTIONS(2361), + [anon_sym_super_AT] = ACTIONS(2364), + [sym_real_literal] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2370), + [sym_hex_literal] = ACTIONS(2373), + [sym_bin_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym__backtick_identifier] = ACTIONS(2382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2385), }, [1276] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(5402), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(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(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [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__expression] = STATE(3295), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2413), + [anon_sym_LBRACE] = ACTIONS(2416), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_object] = ACTIONS(5286), + [anon_sym_fun] = ACTIONS(5368), + [anon_sym_get] = ACTIONS(5292), + [anon_sym_set] = ACTIONS(5292), + [anon_sym_this] = ACTIONS(2434), + [anon_sym_super] = ACTIONS(2437), + [anon_sym_STAR] = ACTIONS(2796), + [sym_label] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2802), + [anon_sym_when] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2455), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2808), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2467), + [anon_sym_PLUS] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2811), + [anon_sym_data] = ACTIONS(5292), + [anon_sym_inner] = ACTIONS(5292), + [anon_sym_value] = ACTIONS(5292), + [anon_sym_expect] = ACTIONS(5292), + [anon_sym_actual] = ACTIONS(5292), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2473), + [anon_sym_continue_AT] = ACTIONS(2476), + [anon_sym_break_AT] = ACTIONS(2479), + [anon_sym_this_AT] = ACTIONS(2482), + [anon_sym_super_AT] = ACTIONS(2485), + [sym_real_literal] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2491), + [sym_hex_literal] = ACTIONS(2494), + [sym_bin_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2500), + [sym__backtick_identifier] = ACTIONS(2503), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2506), }, [1277] = { - [sym__expression] = STATE(475), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(5312), - [anon_sym_fun] = ACTIONS(5416), - [anon_sym_get] = ACTIONS(5318), - [anon_sym_set] = ACTIONS(5318), - [anon_sym_this] = ACTIONS(2302), - [anon_sym_super] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2980), - [sym_label] = ACTIONS(2983), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2986), - [anon_sym_when] = ACTIONS(2320), - [anon_sym_try] = ACTIONS(2323), - [anon_sym_throw] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2992), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_COLON_COLON] = ACTIONS(2335), - [anon_sym_PLUS] = ACTIONS(2983), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_data] = ACTIONS(5318), - [anon_sym_inner] = ACTIONS(5318), - [anon_sym_value] = ACTIONS(5318), - [anon_sym_expect] = ACTIONS(5318), - [anon_sym_actual] = ACTIONS(5318), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2341), - [anon_sym_break_AT] = ACTIONS(2344), - [anon_sym_this_AT] = ACTIONS(2347), - [anon_sym_super_AT] = ACTIONS(2350), - [sym_real_literal] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2356), - [sym_hex_literal] = ACTIONS(2359), - [sym_bin_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2365), - [sym__backtick_identifier] = ACTIONS(2368), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2371), + [sym__expression] = STATE(1012), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_object] = ACTIONS(5268), + [anon_sym_fun] = ACTIONS(5371), + [anon_sym_get] = ACTIONS(5274), + [anon_sym_set] = ACTIONS(5274), + [anon_sym_this] = ACTIONS(2316), + [anon_sym_super] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2392), + [sym_label] = ACTIONS(2395), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_when] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2337), + [anon_sym_throw] = ACTIONS(2401), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_PLUS] = ACTIONS(2395), + [anon_sym_DASH] = ACTIONS(2395), + [anon_sym_PLUS_PLUS] = ACTIONS(2407), + [anon_sym_DASH_DASH] = ACTIONS(2407), + [anon_sym_BANG] = ACTIONS(2407), + [anon_sym_data] = ACTIONS(5274), + [anon_sym_inner] = ACTIONS(5274), + [anon_sym_value] = ACTIONS(5274), + [anon_sym_expect] = ACTIONS(5274), + [anon_sym_actual] = ACTIONS(5274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2355), + [anon_sym_break_AT] = ACTIONS(2358), + [anon_sym_this_AT] = ACTIONS(2361), + [anon_sym_super_AT] = ACTIONS(2364), + [sym_real_literal] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2370), + [sym_hex_literal] = ACTIONS(2373), + [sym_bin_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2379), + [sym__backtick_identifier] = ACTIONS(2382), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2385), }, [1278] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(5390), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4223), - [anon_sym_DASH_EQ] = ACTIONS(4223), - [anon_sym_STAR_EQ] = ACTIONS(4223), - [anon_sym_SLASH_EQ] = ACTIONS(4223), - [anon_sym_PERCENT_EQ] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_object] = ACTIONS(5241), + [anon_sym_fun] = ACTIONS(5374), + [anon_sym_get] = ACTIONS(5247), + [anon_sym_set] = ACTIONS(5247), + [anon_sym_this] = ACTIONS(2629), + [anon_sym_super] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2635), + [sym_label] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2644), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2656), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2638), + [anon_sym_PLUS_PLUS] = ACTIONS(2665), + [anon_sym_DASH_DASH] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_data] = ACTIONS(5247), + [anon_sym_inner] = ACTIONS(5247), + [anon_sym_value] = ACTIONS(5247), + [anon_sym_expect] = ACTIONS(5247), + [anon_sym_actual] = ACTIONS(5247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2668), + [anon_sym_continue_AT] = ACTIONS(2671), + [anon_sym_break_AT] = ACTIONS(2674), + [anon_sym_this_AT] = ACTIONS(2677), + [anon_sym_super_AT] = ACTIONS(2680), + [sym_real_literal] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2686), + [sym_hex_literal] = ACTIONS(2689), + [sym_bin_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym__backtick_identifier] = ACTIONS(2698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2701), }, [1279] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(5419), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), + [sym_type_constraints] = STATE(1639), + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(5377), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, [1280] = { - [sym__expression] = STATE(4066), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_object] = ACTIONS(5280), - [anon_sym_fun] = ACTIONS(5421), - [anon_sym_get] = ACTIONS(5286), - [anon_sym_set] = ACTIONS(5286), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_super] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2782), - [sym_label] = ACTIONS(2785), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2794), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2785), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_PLUS_PLUS] = ACTIONS(2797), - [anon_sym_DASH_DASH] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2797), - [anon_sym_data] = ACTIONS(5286), - [anon_sym_inner] = ACTIONS(5286), - [anon_sym_value] = ACTIONS(5286), - [anon_sym_expect] = ACTIONS(5286), - [anon_sym_actual] = ACTIONS(5286), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2679), - [anon_sym_break_AT] = ACTIONS(2682), - [anon_sym_this_AT] = ACTIONS(2685), - [anon_sym_super_AT] = ACTIONS(2688), - [sym_real_literal] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2694), - [sym_hex_literal] = ACTIONS(2697), - [sym_bin_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2703), - [sym__backtick_identifier] = ACTIONS(2706), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2709), + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5333), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, [1281] = { - [sym__expression] = STATE(2250), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_object] = ACTIONS(5349), - [anon_sym_fun] = ACTIONS(5424), - [anon_sym_get] = ACTIONS(5355), - [anon_sym_set] = ACTIONS(5355), - [anon_sym_this] = ACTIONS(2541), - [anon_sym_super] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2892), - [sym_label] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_when] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_return] = ACTIONS(2904), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_data] = ACTIONS(5355), - [anon_sym_inner] = ACTIONS(5355), - [anon_sym_value] = ACTIONS(5355), - [anon_sym_expect] = ACTIONS(5355), - [anon_sym_actual] = ACTIONS(5355), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2583), - [anon_sym_break_AT] = ACTIONS(2586), - [anon_sym_this_AT] = ACTIONS(2589), - [anon_sym_super_AT] = ACTIONS(2592), - [sym_real_literal] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2598), - [sym_hex_literal] = ACTIONS(2601), - [sym_bin_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2607), - [sym__backtick_identifier] = ACTIONS(2610), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2613), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5337), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, [1282] = { - [sym__expression] = STATE(2547), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [sym__expression] = STATE(2492), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(2605), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2608), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_object] = ACTIONS(5241), + [anon_sym_fun] = ACTIONS(5379), + [anon_sym_get] = ACTIONS(5247), + [anon_sym_set] = ACTIONS(5247), + [anon_sym_this] = ACTIONS(2629), + [anon_sym_super] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2862), + [sym_label] = ACTIONS(2865), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2868), + [anon_sym_when] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2650), + [anon_sym_throw] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2662), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2877), + [anon_sym_DASH_DASH] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_data] = ACTIONS(5247), + [anon_sym_inner] = ACTIONS(5247), + [anon_sym_value] = ACTIONS(5247), + [anon_sym_expect] = ACTIONS(5247), + [anon_sym_actual] = ACTIONS(5247), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2668), + [anon_sym_continue_AT] = ACTIONS(2671), + [anon_sym_break_AT] = ACTIONS(2674), + [anon_sym_this_AT] = ACTIONS(2677), + [anon_sym_super_AT] = ACTIONS(2680), + [sym_real_literal] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2686), + [sym_hex_literal] = ACTIONS(2689), + [sym_bin_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2692), + [anon_sym_false] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2695), + [sym__backtick_identifier] = ACTIONS(2698), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2701), + }, + [1283] = { + [sym__expression] = STATE(2587), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_object] = ACTIONS(5321), - [anon_sym_fun] = ACTIONS(5427), - [anon_sym_get] = ACTIONS(5327), - [anon_sym_set] = ACTIONS(5327), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2499), - [sym_label] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2508), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2502), - [anon_sym_PLUS_PLUS] = ACTIONS(2514), - [anon_sym_DASH_DASH] = ACTIONS(2514), - [anon_sym_BANG] = ACTIONS(2514), - [anon_sym_data] = ACTIONS(5327), - [anon_sym_inner] = ACTIONS(5327), - [anon_sym_value] = ACTIONS(5327), - [anon_sym_expect] = ACTIONS(5327), - [anon_sym_actual] = ACTIONS(5327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), - }, - [1283] = { - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(2616), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2619), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_object] = ACTIONS(5280), - [anon_sym_fun] = ACTIONS(5430), - [anon_sym_get] = ACTIONS(5286), - [anon_sym_set] = ACTIONS(5286), - [anon_sym_this] = ACTIONS(2640), - [anon_sym_super] = ACTIONS(2643), - [anon_sym_STAR] = ACTIONS(2646), - [sym_label] = ACTIONS(2649), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_when] = ACTIONS(2658), - [anon_sym_try] = ACTIONS(2661), - [anon_sym_throw] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_PLUS] = ACTIONS(2649), - [anon_sym_DASH] = ACTIONS(2649), - [anon_sym_PLUS_PLUS] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2676), - [anon_sym_BANG] = ACTIONS(2676), - [anon_sym_data] = ACTIONS(5286), - [anon_sym_inner] = ACTIONS(5286), - [anon_sym_value] = ACTIONS(5286), - [anon_sym_expect] = ACTIONS(5286), - [anon_sym_actual] = ACTIONS(5286), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2679), - [anon_sym_break_AT] = ACTIONS(2682), - [anon_sym_this_AT] = ACTIONS(2685), - [anon_sym_super_AT] = ACTIONS(2688), - [sym_real_literal] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2694), - [sym_hex_literal] = ACTIONS(2697), - [sym_bin_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SQUOTE] = ACTIONS(2703), - [sym__backtick_identifier] = ACTIONS(2706), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2709), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(2020), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_object] = ACTIONS(5250), + [anon_sym_fun] = ACTIONS(5382), + [anon_sym_get] = ACTIONS(5256), + [anon_sym_set] = ACTIONS(5256), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_super] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2994), + [sym_label] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(3000), + [anon_sym_when] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(3003), + [anon_sym_return] = ACTIONS(3006), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_data] = ACTIONS(5256), + [anon_sym_inner] = ACTIONS(5256), + [anon_sym_value] = ACTIONS(5256), + [anon_sym_expect] = ACTIONS(5256), + [anon_sym_actual] = ACTIONS(5256), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2094), + [anon_sym_break_AT] = ACTIONS(2097), + [anon_sym_this_AT] = ACTIONS(2100), + [anon_sym_super_AT] = ACTIONS(2103), + [sym_real_literal] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2109), + [sym_hex_literal] = ACTIONS(2112), + [sym_bin_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2118), + [sym__backtick_identifier] = ACTIONS(2121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2124), }, [1284] = { - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_object] = ACTIONS(5349), - [anon_sym_fun] = ACTIONS(5433), - [anon_sym_get] = ACTIONS(5355), - [anon_sym_set] = ACTIONS(5355), - [anon_sym_this] = ACTIONS(2541), - [anon_sym_super] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(2760), - [sym_label] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_when] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2769), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2763), - [anon_sym_PLUS_PLUS] = ACTIONS(2775), - [anon_sym_DASH_DASH] = ACTIONS(2775), - [anon_sym_BANG] = ACTIONS(2775), - [anon_sym_data] = ACTIONS(5355), - [anon_sym_inner] = ACTIONS(5355), - [anon_sym_value] = ACTIONS(5355), - [anon_sym_expect] = ACTIONS(5355), - [anon_sym_actual] = ACTIONS(5355), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2583), - [anon_sym_break_AT] = ACTIONS(2586), - [anon_sym_this_AT] = ACTIONS(2589), - [anon_sym_super_AT] = ACTIONS(2592), - [sym_real_literal] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2598), - [sym_hex_literal] = ACTIONS(2601), - [sym_bin_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2607), - [sym__backtick_identifier] = ACTIONS(2610), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2613), + [sym__expression] = STATE(2221), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(2020), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_object] = ACTIONS(5250), + [anon_sym_fun] = ACTIONS(5385), + [anon_sym_get] = ACTIONS(5256), + [anon_sym_set] = ACTIONS(5256), + [anon_sym_this] = ACTIONS(2050), + [anon_sym_super] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2230), + [sym_label] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_when] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2245), + [anon_sym_DASH_DASH] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_data] = ACTIONS(5256), + [anon_sym_inner] = ACTIONS(5256), + [anon_sym_value] = ACTIONS(5256), + [anon_sym_expect] = ACTIONS(5256), + [anon_sym_actual] = ACTIONS(5256), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2094), + [anon_sym_break_AT] = ACTIONS(2097), + [anon_sym_this_AT] = ACTIONS(2100), + [anon_sym_super_AT] = ACTIONS(2103), + [sym_real_literal] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2109), + [sym_hex_literal] = ACTIONS(2112), + [sym_bin_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2118), + [sym__backtick_identifier] = ACTIONS(2121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2124), }, [1285] = { - [sym_type_constraints] = STATE(1928), - [sym_function_body] = STATE(1101), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(5436), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4150), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [sym_type_constraints] = STATE(1689), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(5388), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, [1286] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(5438), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(5390), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(5392), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, [1287] = { - [sym__expression] = STATE(2110), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(2517), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2520), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_object] = ACTIONS(5349), - [anon_sym_fun] = ACTIONS(5442), - [anon_sym_get] = ACTIONS(5355), - [anon_sym_set] = ACTIONS(5355), - [anon_sym_this] = ACTIONS(2541), - [anon_sym_super] = ACTIONS(2544), - [anon_sym_STAR] = ACTIONS(3046), - [sym_label] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2553), - [anon_sym_if] = ACTIONS(3052), - [anon_sym_when] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3058), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_data] = ACTIONS(5355), - [anon_sym_inner] = ACTIONS(5355), - [anon_sym_value] = ACTIONS(5355), - [anon_sym_expect] = ACTIONS(5355), - [anon_sym_actual] = ACTIONS(5355), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2580), - [anon_sym_continue_AT] = ACTIONS(2583), - [anon_sym_break_AT] = ACTIONS(2586), - [anon_sym_this_AT] = ACTIONS(2589), - [anon_sym_super_AT] = ACTIONS(2592), - [sym_real_literal] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2598), - [sym_hex_literal] = ACTIONS(2601), - [sym_bin_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2607), - [sym__backtick_identifier] = ACTIONS(2610), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2613), + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(5394), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), }, [1288] = { - [sym_getter] = STATE(9554), - [sym_setter] = STATE(9554), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9365), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(5445), - [anon_sym_get] = ACTIONS(5338), - [anon_sym_set] = ACTIONS(5340), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [sym_getter] = STATE(9939), + [sym_setter] = STATE(9939), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_modifiers] = STATE(9211), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(6160), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(5396), + [anon_sym_get] = ACTIONS(5261), + [anon_sym_set] = ACTIONS(5263), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), + [anon_sym_data] = ACTIONS(1732), + [anon_sym_inner] = ACTIONS(1732), + [anon_sym_value] = ACTIONS(1732), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), [anon_sym_public] = ACTIONS(81), @@ -191703,6007 +191972,5595 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), + [anon_sym_expect] = ACTIONS(1734), + [anon_sym_actual] = ACTIONS(1734), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [1289] = { - [sym__expression] = STATE(2421), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_object] = ACTIONS(5321), - [anon_sym_fun] = ACTIONS(5447), - [anon_sym_get] = ACTIONS(5327), - [anon_sym_set] = ACTIONS(5327), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2209), - [sym_label] = ACTIONS(2212), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2239), - [anon_sym_DASH_DASH] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_data] = ACTIONS(5327), - [anon_sym_inner] = ACTIONS(5327), - [anon_sym_value] = ACTIONS(5327), - [anon_sym_expect] = ACTIONS(5327), - [anon_sym_actual] = ACTIONS(5327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), - }, - [1290] = { - [sym__expression] = STATE(2236), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(2179), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_object] = ACTIONS(5321), - [anon_sym_fun] = ACTIONS(5450), - [anon_sym_get] = ACTIONS(5327), - [anon_sym_set] = ACTIONS(5327), - [anon_sym_this] = ACTIONS(2203), - [anon_sym_super] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2378), - [sym_label] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_when] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2390), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2381), - [anon_sym_DASH] = ACTIONS(2381), - [anon_sym_PLUS_PLUS] = ACTIONS(2393), - [anon_sym_DASH_DASH] = ACTIONS(2393), - [anon_sym_BANG] = ACTIONS(2393), - [anon_sym_data] = ACTIONS(5327), - [anon_sym_inner] = ACTIONS(5327), - [anon_sym_value] = ACTIONS(5327), - [anon_sym_expect] = ACTIONS(5327), - [anon_sym_actual] = ACTIONS(5327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2242), - [anon_sym_continue_AT] = ACTIONS(2245), - [anon_sym_break_AT] = ACTIONS(2248), - [anon_sym_this_AT] = ACTIONS(2251), - [anon_sym_super_AT] = ACTIONS(2254), - [sym_real_literal] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2260), - [sym_hex_literal] = ACTIONS(2263), - [sym_bin_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2269), - [sym__backtick_identifier] = ACTIONS(2272), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2275), - }, - [1291] = { - [sym_getter] = STATE(9913), - [sym_setter] = STATE(9913), - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_modifiers] = STATE(9365), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(6315), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(5453), - [anon_sym_get] = ACTIONS(5338), - [anon_sym_set] = ACTIONS(5340), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(1784), - [anon_sym_inner] = ACTIONS(1784), - [anon_sym_value] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(1786), - [anon_sym_actual] = ACTIONS(1786), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1292] = { - [sym__expression] = STATE(2470), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_object] = ACTIONS(5299), - [anon_sym_fun] = ACTIONS(5455), - [anon_sym_get] = ACTIONS(5305), - [anon_sym_set] = ACTIONS(5305), - [anon_sym_this] = ACTIONS(2102), - [anon_sym_super] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2108), - [sym_label] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2114), - [anon_sym_while] = ACTIONS(2114), - [anon_sym_do] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_when] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2125), - [anon_sym_throw] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2134), - [anon_sym_break] = ACTIONS(2134), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_data] = ACTIONS(5305), - [anon_sym_inner] = ACTIONS(5305), - [anon_sym_value] = ACTIONS(5305), - [anon_sym_expect] = ACTIONS(5305), - [anon_sym_actual] = ACTIONS(5305), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(2143), - [anon_sym_continue_AT] = ACTIONS(2146), - [anon_sym_break_AT] = ACTIONS(2149), - [anon_sym_this_AT] = ACTIONS(2152), - [anon_sym_super_AT] = ACTIONS(2155), - [sym_real_literal] = ACTIONS(2158), - [sym_integer_literal] = ACTIONS(2161), - [sym_hex_literal] = ACTIONS(2164), - [sym_bin_literal] = ACTIONS(2164), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2170), - [sym__backtick_identifier] = ACTIONS(2173), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(2176), - }, - [1293] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8912), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5458), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1294] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8849), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5462), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1295] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8857), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1296] = { - [sym__expression] = STATE(4514), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1386), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8414), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(5466), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1297] = { - [sym_type_constraints] = STATE(2174), - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [1298] = { - [sym_function_body] = STATE(1163), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4387), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4387), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), - }, - [1299] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_RBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5468), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4223), - [anon_sym_DASH_GT] = ACTIONS(4226), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [1300] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), + [sym_function_body] = STATE(1020), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(5398), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5472), + [anon_sym_LPAREN] = ACTIONS(4240), [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4237), - [anon_sym_DASH_GT] = ACTIONS(4240), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), [anon_sym_DOT_DOT] = ACTIONS(4240), [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), + [anon_sym_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4238), [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), [anon_sym_LT_EQ] = ACTIONS(4240), [anon_sym_GT_EQ] = ACTIONS(4240), [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4238), [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), [anon_sym_PERCENT] = ACTIONS(4240), [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), + [anon_sym_return_AT] = ACTIONS(4240), + [anon_sym_continue_AT] = ACTIONS(4240), + [anon_sym_break_AT] = ACTIONS(4240), + [anon_sym_this_AT] = ACTIONS(4240), + [anon_sym_super_AT] = ACTIONS(4240), + [sym_real_literal] = ACTIONS(4240), + [sym_integer_literal] = ACTIONS(4238), + [sym_hex_literal] = ACTIONS(4240), + [sym_bin_literal] = ACTIONS(4240), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [1301] = { - [sym_function_body] = STATE(1128), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4395), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4395), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), - }, - [1302] = { - [sym_type_constraints] = STATE(2144), - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [1303] = { - [sym_function_body] = STATE(1101), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [sym__string_start] = ACTIONS(4240), }, - [1304] = { - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [1290] = { + [sym__expression] = STATE(4293), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(2127), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_object] = ACTIONS(5277), + [anon_sym_fun] = ACTIONS(5400), + [anon_sym_get] = ACTIONS(5283), + [anon_sym_set] = ACTIONS(5283), + [anon_sym_this] = ACTIONS(2151), + [anon_sym_super] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2157), + [sym_label] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_when] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2187), + [anon_sym_DASH_DASH] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_data] = ACTIONS(5283), + [anon_sym_inner] = ACTIONS(5283), + [anon_sym_value] = ACTIONS(5283), + [anon_sym_expect] = ACTIONS(5283), + [anon_sym_actual] = ACTIONS(5283), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2190), + [anon_sym_continue_AT] = ACTIONS(2193), + [anon_sym_break_AT] = ACTIONS(2196), + [anon_sym_this_AT] = ACTIONS(2199), + [anon_sym_super_AT] = ACTIONS(2202), + [sym_real_literal] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2208), + [sym_hex_literal] = ACTIONS(2211), + [sym_bin_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SQUOTE] = ACTIONS(2217), + [sym__backtick_identifier] = ACTIONS(2220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2223), }, - [1305] = { - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [1291] = { + [sym__expression] = STATE(373), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(2509), + [anon_sym_AT] = ACTIONS(5225), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_object] = ACTIONS(5228), + [anon_sym_fun] = ACTIONS(5403), + [anon_sym_get] = ACTIONS(5234), + [anon_sym_set] = ACTIONS(5234), + [anon_sym_this] = ACTIONS(2533), + [anon_sym_super] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2950), + [sym_label] = ACTIONS(2953), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_do] = ACTIONS(2062), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2554), + [anon_sym_throw] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2962), + [anon_sym_continue] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2566), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2965), + [anon_sym_DASH_DASH] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_data] = ACTIONS(5234), + [anon_sym_inner] = ACTIONS(5234), + [anon_sym_value] = ACTIONS(5234), + [anon_sym_expect] = ACTIONS(5234), + [anon_sym_actual] = ACTIONS(5234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(2091), + [anon_sym_continue_AT] = ACTIONS(2572), + [anon_sym_break_AT] = ACTIONS(2575), + [anon_sym_this_AT] = ACTIONS(2578), + [anon_sym_super_AT] = ACTIONS(2581), + [sym_real_literal] = ACTIONS(2584), + [sym_integer_literal] = ACTIONS(2587), + [sym_hex_literal] = ACTIONS(2590), + [sym_bin_literal] = ACTIONS(2590), + [anon_sym_true] = ACTIONS(2593), + [anon_sym_false] = ACTIONS(2593), + [anon_sym_SQUOTE] = ACTIONS(2596), + [sym__backtick_identifier] = ACTIONS(2599), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(2602), }, - [1306] = { - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [1292] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(5392), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, - [1307] = { - [sym_function_body] = STATE(1103), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), - [anon_sym_object] = ACTIONS(4260), - [anon_sym_fun] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_this] = ACTIONS(4260), - [anon_sym_super] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [anon_sym_try] = ACTIONS(4260), - [anon_sym_throw] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), + [1293] = { + [sym_primary_constructor] = STATE(4549), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(1416), + [sym_type_constraints] = STATE(4686), + [sym_enum_class_body] = STATE(4712), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5406), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5416), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4262), - [anon_sym_continue_AT] = ACTIONS(4262), - [anon_sym_break_AT] = ACTIONS(4262), - [anon_sym_this_AT] = ACTIONS(4262), - [anon_sym_super_AT] = ACTIONS(4262), - [sym_real_literal] = ACTIONS(4262), - [sym_integer_literal] = ACTIONS(4260), - [sym_hex_literal] = ACTIONS(4262), - [sym_bin_literal] = ACTIONS(4262), - [anon_sym_true] = ACTIONS(4260), - [anon_sym_false] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4262), - [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4262), }, - [1308] = { - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), + [1294] = { + [sym_type_constraints] = STATE(1713), + [sym_function_body] = STATE(1120), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, - [1309] = { - [sym_function_body] = STATE(1157), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), + [1295] = { + [sym_function_body] = STATE(1017), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4418), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), }, - [1310] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [1296] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(8923), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5476), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5418), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1311] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5478), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1297] = { + [sym_class_body] = STATE(1183), + [sym_type_constraints] = STATE(962), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(5422), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, - [1312] = { - [sym_primary_constructor] = STATE(4566), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(1423), - [sym_type_constraints] = STATE(4668), - [sym_enum_class_body] = STATE(4749), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5480), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_RBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_DASH_GT] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), + [1298] = { + [sym_type_constraints] = STATE(960), + [sym_enum_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(5424), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [1299] = { + [sym_class_body] = STATE(1153), + [sym_type_constraints] = STATE(955), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), [anon_sym_tailrec] = ACTIONS(3218), [anon_sym_operator] = ACTIONS(3218), [anon_sym_infix] = ACTIONS(3218), [anon_sym_inline] = ACTIONS(3218), [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [1313] = { - [sym_primary_constructor] = STATE(4570), - [sym_class_body] = STATE(4751), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(1420), - [sym_type_constraints] = STATE(4681), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5492), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), + [1300] = { + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1153), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), [anon_sym_tailrec] = ACTIONS(3218), [anon_sym_operator] = ACTIONS(3218), [anon_sym_infix] = ACTIONS(3218), [anon_sym_inline] = ACTIONS(3218), [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [1314] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [1301] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9039), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5496), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1315] = { - [sym_primary_constructor] = STATE(4571), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(1418), - [sym_type_constraints] = STATE(4645), - [sym_enum_class_body] = STATE(4751), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [1316] = { - [sym_primary_constructor] = STATE(4575), - [sym_class_body] = STATE(4812), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(1414), - [sym_type_constraints] = STATE(4626), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5500), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [anon_sym_DASH_GT] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5426), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1317] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [1302] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5502), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5428), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1318] = { - [sym_primary_constructor] = STATE(3029), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(1402), - [sym_type_constraints] = STATE(3302), - [sym_enum_class_body] = STATE(3559), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5504), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), + [1303] = { + [sym_class_body] = STATE(1118), + [sym_type_constraints] = STATE(930), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [1304] = { + [sym_primary_constructor] = STATE(4568), + [sym_class_body] = STATE(4806), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(1415), + [sym_type_constraints] = STATE(4671), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5430), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, - [1319] = { - [sym_type_constraints] = STATE(2185), - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [1305] = { + [sym_type_constraints] = STATE(1639), + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, - [1320] = { - [sym_primary_constructor] = STATE(2970), - [sym_class_body] = STATE(3559), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(1401), - [sym_type_constraints] = STATE(3351), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), + [1306] = { + [sym_function_body] = STATE(1015), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, - [1321] = { - [sym_primary_constructor] = STATE(3047), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(1399), - [sym_type_constraints] = STATE(3281), - [sym_enum_class_body] = STATE(3516), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5518), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_RBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_DASH_GT] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), + [1307] = { + [sym_type_constraints] = STATE(1689), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, - [1322] = { - [sym_type_constraints] = STATE(981), - [sym_enum_class_body] = STATE(1114), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(5520), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), + [1308] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5434), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_DASH_GT] = ACTIONS(4188), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [1323] = { - [sym_type_constraints] = STATE(968), - [sym_enum_class_body] = STATE(1175), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [1309] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [1310] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5438), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1311] = { + [sym_primary_constructor] = STATE(2985), + [sym_class_body] = STATE(3444), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(1412), + [sym_type_constraints] = STATE(3311), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5440), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_RBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_DASH_GT] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), + }, + [1312] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5450), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1313] = { + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(5452), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), + }, + [1314] = { + [sym_primary_constructor] = STATE(4555), + [sym_class_body] = STATE(4838), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(1388), + [sym_type_constraints] = STATE(4652), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5454), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_RBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_DASH_GT] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + }, + [1315] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5456), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1316] = { + [sym_class_body] = STATE(1150), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(5458), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), + }, + [1317] = { + [sym_primary_constructor] = STATE(2981), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(1408), + [sym_type_constraints] = STATE(3278), + [sym_enum_class_body] = STATE(3555), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5460), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [1318] = { + [sym_function_body] = STATE(1166), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, + [1319] = { + [sym_primary_constructor] = STATE(2975), + [sym_class_body] = STATE(3555), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(1395), + [sym_type_constraints] = STATE(3299), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5464), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [1320] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5466), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1321] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5468), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1322] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(8981), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5470), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1323] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5472), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1324] = { - [sym_class_body] = STATE(1166), - [sym_type_constraints] = STATE(966), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(5522), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(8799), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5474), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1325] = { - [sym_type_constraints] = STATE(963), - [sym_enum_class_body] = STATE(1166), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(5524), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5476), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1326] = { - [sym_class_body] = STATE(1062), - [sym_type_constraints] = STATE(955), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5478), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1327] = { - [sym_type_constraints] = STATE(950), - [sym_enum_class_body] = STATE(1062), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, [1328] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9022), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5526), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5480), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1329] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9023), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5528), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5482), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1330] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5530), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, [1331] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(8861), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5532), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5484), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1332] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8801), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5534), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [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_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_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_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(4144), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, [1333] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5536), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5486), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1334] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5538), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5488), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1335] = { - [sym_primary_constructor] = STATE(2973), - [sym_class_body] = STATE(3589), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(1406), - [sym_type_constraints] = STATE(3316), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5540), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [anon_sym_DASH_GT] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5490), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4217), + [anon_sym_DASH_GT] = ACTIONS(4220), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [1336] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5542), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_function_body] = STATE(1120), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, [1337] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5544), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(4260), + [anon_sym_object] = ACTIONS(4260), + [anon_sym_fun] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_this] = ACTIONS(4260), + [anon_sym_super] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4260), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_when] = ACTIONS(4260), + [anon_sym_try] = ACTIONS(4260), + [anon_sym_throw] = ACTIONS(4260), + [anon_sym_return] = ACTIONS(4260), + [anon_sym_continue] = ACTIONS(4260), + [anon_sym_break] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4260), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4260), + [anon_sym_false] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, [1338] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8876), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5546), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_primary_constructor] = STATE(2978), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(1387), + [sym_type_constraints] = STATE(3324), + [sym_enum_class_body] = STATE(3467), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5494), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5448), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), }, [1339] = { - [sym_class_body] = STATE(1057), - [sym_type_constraints] = STATE(940), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(5548), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), + [sym_function_body] = STATE(1068), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, [1340] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5550), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5496), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1341] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5552), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5498), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1342] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8824), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5554), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5500), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1343] = { - [sym_class_body] = STATE(1102), - [sym_type_constraints] = STATE(986), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, - [1344] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5556), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1345] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5558), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1346] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9034), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5560), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1347] = { - [sym_type_constraints] = STATE(2177), - [sym_function_body] = STATE(1103), - [sym__block] = STATE(1092), + [sym_type_constraints] = STATE(1715), + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1109), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(3216), + [anon_sym_where] = ACTIONS(3194), [anon_sym_object] = ACTIONS(4260), [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), @@ -197791,5931 +197648,5935 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, + [1344] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9027), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5502), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1345] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5504), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1346] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5506), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1347] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9035), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5508), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, [1348] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5562), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5510), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1349] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5564), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5512), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1350] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8975), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5566), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5514), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1351] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5568), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5516), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1352] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(8979), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5570), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5518), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1353] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5572), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5520), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1354] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(8926), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5574), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5522), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1355] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5576), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_primary_constructor] = STATE(4560), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(1396), + [sym_type_constraints] = STATE(4663), + [sym_enum_class_body] = STATE(4806), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5524), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), }, [1356] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5578), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5526), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1357] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8902), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5580), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5528), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1358] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9053), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5582), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5530), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1359] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5584), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4484), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1397), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8430), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(5532), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1360] = { - [sym_function_body] = STATE(1120), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1013), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, [1361] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5586), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5534), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1362] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5588), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5536), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1363] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8869), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9061), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5590), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5538), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1364] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5592), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5540), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1365] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5594), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5542), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1366] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8797), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5596), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5544), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1367] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9068), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5598), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5546), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1368] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5600), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5548), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1369] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8809), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9075), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5602), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5550), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1370] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5604), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5552), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1371] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(8834), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5606), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5554), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1372] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8845), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9089), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5608), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5556), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1373] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5610), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5558), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1374] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5612), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5560), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1375] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8906), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5614), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1376] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5616), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5562), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1376] = { + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9000), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5564), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1377] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9052), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5618), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5566), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1378] = { - [sym_type_constraints] = STATE(2176), - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), + [sym_type_constraints] = STATE(1706), + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3194), + [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_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_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(4144), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, [1379] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(8887), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5620), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5568), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1380] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5622), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5570), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1381] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9013), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5624), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5572), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1382] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9059), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), [sym_simple_identifier] = STATE(5656), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(5626), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_RPAREN] = ACTIONS(5574), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1383] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(3696), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [1384] = { - [sym_class_body] = STATE(1016), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(5628), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4379), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), + [sym_variable_declaration] = STATE(8870), + [sym__expression] = STATE(4455), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5665), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1385] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4391), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym_value_argument] = STATE(9292), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1918), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5656), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5420), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1386] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(5630), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_val] = ACTIONS(5633), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_class_body] = STATE(1153), + [sym_type_constraints] = STATE(955), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [1387] = { - [sym_class_body] = STATE(1052), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(5635), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_where] = ACTIONS(4405), - [anon_sym_object] = ACTIONS(4405), - [anon_sym_fun] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_this] = ACTIONS(4405), - [anon_sym_super] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4407), - [sym_label] = ACTIONS(4405), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_when] = ACTIONS(4405), - [anon_sym_try] = ACTIONS(4405), - [anon_sym_throw] = ACTIONS(4405), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_continue] = ACTIONS(4405), - [anon_sym_break] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4407), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4405), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4407), - [anon_sym_continue_AT] = ACTIONS(4407), - [anon_sym_break_AT] = ACTIONS(4407), - [anon_sym_this_AT] = ACTIONS(4407), - [anon_sym_super_AT] = ACTIONS(4407), - [sym_real_literal] = ACTIONS(4407), - [sym_integer_literal] = ACTIONS(4405), - [sym_hex_literal] = ACTIONS(4407), - [sym_bin_literal] = ACTIONS(4407), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4407), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4407), - }, - [1388] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(2982), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3363), + [sym_enum_class_body] = STATE(3430), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5576), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [1389] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [1388] = { + [sym_primary_constructor] = STATE(4558), + [sym_class_body] = STATE(4804), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4658), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5578), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_DASH_GT] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), [anon_sym_tailrec] = ACTIONS(3166), [anon_sym_operator] = ACTIONS(3166), [anon_sym_infix] = ACTIONS(3166), [anon_sym_inline] = ACTIONS(3166), [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, + [1389] = { + [sym_type_constraints] = STATE(946), + [sym_enum_class_body] = STATE(1153), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, [1390] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(1150), + [sym_type_constraints] = STATE(943), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(5580), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), }, [1391] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(1071), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(5582), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_object] = ACTIONS(4250), + [anon_sym_fun] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_this] = ACTIONS(4250), + [anon_sym_super] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_null] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_when] = ACTIONS(4250), + [anon_sym_try] = ACTIONS(4250), + [anon_sym_throw] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4252), + [anon_sym_continue_AT] = ACTIONS(4252), + [anon_sym_break_AT] = ACTIONS(4252), + [anon_sym_this_AT] = ACTIONS(4252), + [anon_sym_super_AT] = ACTIONS(4252), + [sym_real_literal] = ACTIONS(4252), + [sym_integer_literal] = ACTIONS(4250), + [sym_hex_literal] = ACTIONS(4252), + [sym_bin_literal] = ACTIONS(4252), + [anon_sym_true] = ACTIONS(4250), + [anon_sym_false] = ACTIONS(4250), + [anon_sym_SQUOTE] = ACTIONS(4252), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4252), }, [1392] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym_value_arguments] = STATE(1059), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(5584), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), }, [1393] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(1118), + [sym_type_constraints] = STATE(930), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, [1394] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(3696), + [sym_function_body] = STATE(1020), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(5586), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4240), + [anon_sym_continue_AT] = ACTIONS(4240), + [anon_sym_break_AT] = ACTIONS(4240), + [anon_sym_this_AT] = ACTIONS(4240), + [anon_sym_super_AT] = ACTIONS(4240), + [sym_real_literal] = ACTIONS(4240), + [sym_integer_literal] = ACTIONS(4238), + [sym_hex_literal] = ACTIONS(4240), + [sym_bin_literal] = ACTIONS(4240), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4240), }, [1395] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(2971), + [sym_class_body] = STATE(3501), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3339), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5588), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [1396] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(4559), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4690), + [sym_enum_class_body] = STATE(4733), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5590), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [1397] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3154), - [anon_sym_DASH_EQ] = ACTIONS(3154), - [anon_sym_STAR_EQ] = ACTIONS(3154), - [anon_sym_SLASH_EQ] = ACTIONS(3154), - [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4272), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(5592), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_val] = ACTIONS(5595), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1398] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3696), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [1399] = { - [sym_primary_constructor] = STATE(3010), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3335), - [sym_enum_class_body] = STATE(3480), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5637), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_RBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_DASH_GT] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [1400] = { - [sym_class_body] = STATE(1057), - [sym_type_constraints] = STATE(940), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(5639), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), - }, - [1401] = { - [sym_primary_constructor] = STATE(3048), - [sym_class_body] = STATE(3536), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3274), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5641), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [1402] = { - [sym_primary_constructor] = STATE(3050), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3313), - [sym_enum_class_body] = STATE(3536), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5643), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [1403] = { - [sym_type_constraints] = STATE(950), - [sym_enum_class_body] = STATE(1062), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [1404] = { - [sym__expression] = STATE(4389), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym_value_argument] = STATE(9410), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(2186), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5656), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5460), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1405] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), + [1401] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1594), [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3618), [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), [anon_sym_where] = ACTIONS(3137), [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3642), [anon_sym_PLUS_EQ] = ACTIONS(3139), [anon_sym_DASH_EQ] = ACTIONS(3139), [anon_sym_STAR_EQ] = ACTIONS(3139), [anon_sym_SLASH_EQ] = ACTIONS(3139), [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(3137), [anon_sym_sealed] = ACTIONS(3137), [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), [anon_sym_override] = ACTIONS(3137), [anon_sym_lateinit] = ACTIONS(3137), [anon_sym_public] = ACTIONS(3137), @@ -203734,7802 +203595,8412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3137), [anon_sym_noinline] = ACTIONS(3137), [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(3696), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1402] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3063), + [anon_sym_DASH_EQ] = ACTIONS(3063), + [anon_sym_STAR_EQ] = ACTIONS(3063), + [anon_sym_SLASH_EQ] = ACTIONS(3063), + [anon_sym_PERCENT_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3063), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1403] = { + [sym_type_constraints] = STATE(960), + [sym_enum_class_body] = STATE(1183), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(5597), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [1404] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [1405] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [1406] = { - [sym_primary_constructor] = STATE(3004), - [sym_class_body] = STATE(3562), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3303), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5645), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [1407] = { - [sym_function_body] = STATE(1120), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(5647), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, [1408] = { - [sym_function_body] = STATE(1148), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(5649), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_object] = ACTIONS(4289), - [anon_sym_fun] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_this] = ACTIONS(4289), - [anon_sym_super] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4289), - [anon_sym_if] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_when] = ACTIONS(4289), - [anon_sym_try] = ACTIONS(4289), - [anon_sym_throw] = ACTIONS(4289), - [anon_sym_return] = ACTIONS(4289), - [anon_sym_continue] = ACTIONS(4289), - [anon_sym_break] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4291), - [anon_sym_continue_AT] = ACTIONS(4291), - [anon_sym_break_AT] = ACTIONS(4291), - [anon_sym_this_AT] = ACTIONS(4291), - [anon_sym_super_AT] = ACTIONS(4291), - [sym_real_literal] = ACTIONS(4291), - [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4291), - [sym_bin_literal] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4289), - [anon_sym_false] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4291), + [sym_primary_constructor] = STATE(2974), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), }, [1409] = { - [sym_value_arguments] = STATE(1186), - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(5651), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3143), + [anon_sym_DASH_EQ] = ACTIONS(3143), + [anon_sym_STAR_EQ] = ACTIONS(3143), + [anon_sym_SLASH_EQ] = ACTIONS(3143), + [anon_sym_PERCENT_EQ] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3141), + [anon_sym_sealed] = ACTIONS(3141), + [anon_sym_annotation] = ACTIONS(3141), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_lateinit] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_internal] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_tailrec] = ACTIONS(3141), + [anon_sym_operator] = ACTIONS(3141), + [anon_sym_infix] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_external] = ACTIONS(3141), + [sym_property_modifier] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_final] = ACTIONS(3141), + [anon_sym_open] = ACTIONS(3141), + [anon_sym_vararg] = ACTIONS(3141), + [anon_sym_noinline] = ACTIONS(3141), + [anon_sym_crossinline] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3143), + [sym__automatic_semicolon] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, [1410] = { - [sym_function_body] = STATE(1162), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(5653), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, [1411] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(3696), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [1412] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3187), - [anon_sym_DASH_EQ] = ACTIONS(3187), - [anon_sym_STAR_EQ] = ACTIONS(3187), - [anon_sym_SLASH_EQ] = ACTIONS(3187), - [anon_sym_PERCENT_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3185), - [anon_sym_sealed] = ACTIONS(3185), - [anon_sym_annotation] = ACTIONS(3185), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_lateinit] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_internal] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_tailrec] = ACTIONS(3185), - [anon_sym_operator] = ACTIONS(3185), - [anon_sym_infix] = ACTIONS(3185), - [anon_sym_inline] = ACTIONS(3185), - [anon_sym_external] = ACTIONS(3185), - [sym_property_modifier] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_final] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_vararg] = ACTIONS(3185), - [anon_sym_noinline] = ACTIONS(3185), - [anon_sym_crossinline] = ACTIONS(3185), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3187), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(2984), + [sym_class_body] = STATE(3549), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3273), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_DASH_GT] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, [1413] = { - [sym_variable_declaration] = STATE(9011), - [sym__expression] = STATE(4494), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5649), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1414] = { - [sym_primary_constructor] = STATE(4573), - [sym_class_body] = STATE(4764), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4639), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5655), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3074), + [anon_sym_DASH_EQ] = ACTIONS(3074), + [anon_sym_STAR_EQ] = ACTIONS(3074), + [anon_sym_SLASH_EQ] = ACTIONS(3074), + [anon_sym_PERCENT_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3072), + [anon_sym_sealed] = ACTIONS(3072), + [anon_sym_annotation] = ACTIONS(3072), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3072), + [anon_sym_lateinit] = ACTIONS(3072), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_internal] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_tailrec] = ACTIONS(3072), + [anon_sym_operator] = ACTIONS(3072), + [anon_sym_infix] = ACTIONS(3072), + [anon_sym_inline] = ACTIONS(3072), + [anon_sym_external] = ACTIONS(3072), + [sym_property_modifier] = ACTIONS(3072), + [anon_sym_abstract] = ACTIONS(3072), + [anon_sym_final] = ACTIONS(3072), + [anon_sym_open] = ACTIONS(3072), + [anon_sym_vararg] = ACTIONS(3072), + [anon_sym_noinline] = ACTIONS(3072), + [anon_sym_crossinline] = ACTIONS(3072), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3074), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, + [1414] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, [1415] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(4550), + [sym_class_body] = STATE(4733), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4689), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5605), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [1416] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(4576), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4692), + [sym_enum_class_body] = STATE(4702), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, [1417] = { - [sym_type_constraints] = STATE(981), - [sym_enum_class_body] = STATE(1114), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), + [sym_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_object] = ACTIONS(4353), + [anon_sym_fun] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_this] = ACTIONS(4353), + [anon_sym_super] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4353), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_null] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_try] = ACTIONS(4353), + [anon_sym_throw] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4355), + [anon_sym_continue_AT] = ACTIONS(4355), + [anon_sym_break_AT] = ACTIONS(4355), + [anon_sym_this_AT] = ACTIONS(4355), + [anon_sym_super_AT] = ACTIONS(4355), + [sym_real_literal] = ACTIONS(4355), + [sym_integer_literal] = ACTIONS(4353), + [sym_hex_literal] = ACTIONS(4355), + [sym_bin_literal] = ACTIONS(4355), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4355), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4355), }, [1418] = { - [sym_primary_constructor] = STATE(4569), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4643), - [sym_enum_class_body] = STATE(4775), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(969), + [sym_enum_class_body] = STATE(1170), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, [1419] = { - [sym_class_body] = STATE(1102), - [sym_type_constraints] = STATE(986), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, [1420] = { - [sym_primary_constructor] = STATE(4567), - [sym_class_body] = STATE(4775), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4651), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5661), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [1421] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(2122), - [sym__comparison_operator] = STATE(2123), - [sym__in_operator] = STATE(2124), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(2125), - [sym__multiplicative_operator] = STATE(2126), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2127), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3682), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3686), - [anon_sym_DOT_DOT] = ACTIONS(3688), - [anon_sym_QMARK_COLON] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3692), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3702), - [anon_sym_GT_EQ] = ACTIONS(3702), - [anon_sym_BANGin] = ACTIONS(3704), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3710), - [anon_sym_DASH] = ACTIONS(3710), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_PERCENT] = ACTIONS(3682), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(5613), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_COMMA] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_where] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_fun] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_this] = ACTIONS(4325), + [anon_sym_super] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_when] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4327), + [anon_sym_continue_AT] = ACTIONS(4327), + [anon_sym_break_AT] = ACTIONS(4327), + [anon_sym_this_AT] = ACTIONS(4327), + [anon_sym_super_AT] = ACTIONS(4327), + [sym_real_literal] = ACTIONS(4327), + [sym_integer_literal] = ACTIONS(4325), + [sym_hex_literal] = ACTIONS(4327), + [sym_bin_literal] = ACTIONS(4327), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4327), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4327), }, [1422] = { - [sym_type_constraints] = STATE(968), - [sym_enum_class_body] = STATE(1175), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3552), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), }, [1423] = { - [sym_primary_constructor] = STATE(4565), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4629), - [sym_enum_class_body] = STATE(4810), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5663), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_RBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_DASH_GT] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(1183), + [sym_type_constraints] = STATE(962), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, [1424] = { - [sym_class_body] = STATE(1166), - [sym_type_constraints] = STATE(966), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(5665), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym_type_constraints] = STATE(963), + [sym_enum_class_body] = STATE(1013), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, [1425] = { - [sym_class_body] = STATE(1062), - [sym_type_constraints] = STATE(955), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3620), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3632), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3636), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_PIPE_PIPE] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(3644), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3646), + [anon_sym_EQ_EQ] = ACTIONS(3644), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3646), + [anon_sym_LT_EQ] = ACTIONS(3648), + [anon_sym_GT_EQ] = ACTIONS(3648), + [anon_sym_BANGin] = ACTIONS(3650), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, [1426] = { - [sym_type_constraints] = STATE(963), - [sym_enum_class_body] = STATE(1166), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(5667), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1539), + [sym__comparison_operator] = STATE(1538), + [sym__in_operator] = STATE(1537), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1536), + [sym__multiplicative_operator] = STATE(1535), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1534), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3628), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3634), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_PERCENT] = ACTIONS(3628), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, [1427] = { - [sym__expression] = STATE(275), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [sym__expression] = STATE(277), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1428] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_object] = ACTIONS(3110), - [anon_sym_fun] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_super] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_when] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3112), - [anon_sym_continue_AT] = ACTIONS(3112), - [anon_sym_break_AT] = ACTIONS(3112), - [anon_sym_this_AT] = ACTIONS(3112), - [anon_sym_super_AT] = ACTIONS(3112), - [sym_real_literal] = ACTIONS(3112), - [sym_integer_literal] = ACTIONS(3110), - [sym_hex_literal] = ACTIONS(3112), - [sym_bin_literal] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3112), + [sym__expression] = STATE(523), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1429] = { - [sym__expression] = STATE(760), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4455), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1430] = { - [sym__expression] = STATE(759), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(403), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1431] = { - [sym__expression] = STATE(754), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(381), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1432] = { - [sym__expression] = STATE(1189), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(389), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1433] = { - [sym__expression] = STATE(2553), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(396), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1434] = { - [sym__expression] = STATE(2555), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(387), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1435] = { - [sym__expression] = STATE(2556), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [sym__expression] = STATE(2584), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1436] = { - [sym__expression] = STATE(2557), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [sym__expression] = STATE(2583), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1437] = { - [sym__expression] = STATE(517), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(2582), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1438] = { - [sym__expression] = STATE(523), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(2581), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1439] = { - [sym__expression] = STATE(524), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(392), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1440] = { - [sym__expression] = STATE(526), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(388), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1441] = { - [sym__expression] = STATE(527), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(810), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1442] = { - [sym__expression] = STATE(528), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(391), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1443] = { - [sym__expression] = STATE(2558), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4282), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [1444] = { - [sym__expression] = STATE(2559), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(804), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1445] = { - [sym__expression] = STATE(2561), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [sym__expression] = STATE(2572), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1446] = { - [sym__expression] = STATE(2563), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [sym__expression] = STATE(2569), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1447] = { - [sym__expression] = STATE(2564), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [sym__expression] = STATE(2567), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1448] = { - [sym__expression] = STATE(529), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(2564), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1449] = { - [sym__expression] = STATE(2567), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [sym__expression] = STATE(2563), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1450] = { - [sym__expression] = STATE(2287), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__expression] = STATE(999), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1451] = { - [sym__expression] = STATE(530), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1452] = { - [sym__expression] = STATE(1019), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [sym__expression] = STATE(2561), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1452] = { + [sym__expression] = STATE(2263), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1453] = { - [sym__expression] = STATE(1022), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(471), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1454] = { - [sym__expression] = STATE(533), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1207), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1455] = { - [sym__expression] = STATE(1024), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(394), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1456] = { - [sym__expression] = STATE(1025), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(395), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1457] = { - [sym__expression] = STATE(1026), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(1404), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1458] = { - [sym__expression] = STATE(1027), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(1203), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1459] = { - [sym__expression] = STATE(4003), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(996), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1460] = { - [sym__expression] = STATE(291), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1202), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1461] = { - [sym__expression] = STATE(289), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1201), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1462] = { - [sym__expression] = STATE(294), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1200), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1463] = { - [sym__expression] = STATE(285), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1199), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1464] = { - [sym__expression] = STATE(293), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(808), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1465] = { - [sym__expression] = STATE(295), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1197), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1466] = { - [sym__expression] = STATE(774), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(1196), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1467] = { - [sym__expression] = STATE(536), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1194), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1468] = { - [sym__expression] = STATE(324), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1469] = { - [sym__expression] = STATE(4519), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(1193), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1469] = { + [sym__expression] = STATE(393), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1470] = { - [sym__expression] = STATE(325), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1191), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1471] = { - [sym__expression] = STATE(326), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(386), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1472] = { - [sym__expression] = STATE(328), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(995), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1473] = { - [sym__expression] = STATE(329), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1006), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1474] = { - [sym__expression] = STATE(330), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(405), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1475] = { - [sym__expression] = STATE(775), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(1192), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1476] = { - [sym__expression] = STATE(4335), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4115), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1477] = { + [sym__expression] = STATE(994), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1477] = { - [sym__expression] = STATE(803), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1478] = { - [sym__expression] = STATE(4314), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2297), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1479] = { + [sym__expression] = STATE(1190), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1479] = { - [sym__expression] = STATE(805), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1480] = { - [sym__expression] = STATE(801), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym_function_body] = STATE(1015), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, [1481] = { - [sym__expression] = STATE(532), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(1195), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1482] = { - [sym__expression] = STATE(3792), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [sym__expression] = STATE(799), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1483] = { + [sym__expression] = STATE(993), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1484] = { + [sym__expression] = STATE(4082), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [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(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -211540,501 +212011,703 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1483] = { - [sym__expression] = STATE(808), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1484] = { - [sym__expression] = STATE(377), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, [1485] = { - [sym__expression] = STATE(811), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(1188), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1486] = { - [sym__expression] = STATE(802), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(1189), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1487] = { - [sym__expression] = STATE(4224), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [sym__expression] = STATE(2547), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1488] = { + [sym__expression] = STATE(292), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1489] = { + [sym__expression] = STATE(293), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1490] = { + [sym__expression] = STATE(800), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1491] = { + [sym__expression] = STATE(4293), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -212045,1107 +212718,7874 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1488] = { - [sym__expression] = STATE(989), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1492] = { + [sym__expression] = STATE(284), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1489] = { - [sym__expression] = STATE(994), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1493] = { + [sym__expression] = STATE(286), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1490] = { - [sym__expression] = STATE(995), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1494] = { + [sym__expression] = STATE(295), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1491] = { - [sym__expression] = STATE(996), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1495] = { + [sym__expression] = STATE(294), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1492] = { - [sym__expression] = STATE(1206), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1496] = { + [sym__expression] = STATE(2290), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1493] = { - [sym__expression] = STATE(2570), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), + [1497] = { + [sym__expression] = STATE(322), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1498] = { + [sym__expression] = STATE(325), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1499] = { + [sym__expression] = STATE(326), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1500] = { + [sym__expression] = STATE(1214), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1501] = { + [sym__expression] = STATE(1215), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1502] = { + [sym__expression] = STATE(1217), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1503] = { + [sym__expression] = STATE(1218), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1504] = { + [sym__expression] = STATE(1220), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1505] = { + [sym__expression] = STATE(811), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1506] = { + [sym__expression] = STATE(327), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1507] = { + [sym__expression] = STATE(329), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1508] = { + [sym__expression] = STATE(1222), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1509] = { + [sym__expression] = STATE(1223), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1510] = { + [sym__expression] = STATE(1224), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1511] = { + [sym__expression] = STATE(1233), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1512] = { + [sym__expression] = STATE(330), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1513] = { + [sym__expression] = STATE(4428), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1514] = { + [sym__expression] = STATE(2305), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1515] = { + [sym__expression] = STATE(1187), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1516] = { + [sym__expression] = STATE(4122), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1517] = { + [sym__expression] = STATE(4350), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1518] = { + [sym__expression] = STATE(4124), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1519] = { + [sym__expression] = STATE(4125), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1520] = { + [sym__expression] = STATE(4127), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1521] = { + [sym_function_body] = STATE(1017), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4418), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), + }, + [1522] = { + [sym__expression] = STATE(4130), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1523] = { + [sym__expression] = STATE(4105), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1524] = { + [sym__expression] = STATE(2276), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1525] = { + [sym__expression] = STATE(2236), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1526] = { + [sym__expression] = STATE(2296), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1527] = { + [sym__expression] = STATE(4390), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1528] = { + [sym__expression] = STATE(2587), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), [sym__prefix_unary_operator] = STATE(1528), [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1494] = { - [sym__expression] = STATE(999), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1529] = { + [sym__expression] = STATE(2301), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1495] = { - [sym__expression] = STATE(1000), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1530] = { + [sym__expression] = STATE(2255), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1496] = { - [sym__expression] = STATE(4494), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [1531] = { + [sym__expression] = STATE(522), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1532] = { + [sym__expression] = STATE(1425), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1533] = { + [sym__expression] = STATE(1010), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1534] = { + [sym__expression] = STATE(1426), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1535] = { + [sym__expression] = STATE(1419), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1536] = { + [sym__expression] = STATE(1409), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1537] = { + [sym__expression] = STATE(1406), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1538] = { + [sym__expression] = STATE(1383), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1539] = { + [sym__expression] = STATE(1405), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1540] = { + [sym__expression] = STATE(1401), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1541] = { + [sym__expression] = STATE(1400), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1542] = { + [sym__expression] = STATE(2251), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1543] = { + [sym__expression] = STATE(1399), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1544] = { + [sym__expression] = STATE(1398), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1545] = { + [sym__expression] = STATE(4472), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1546] = { + [sym__expression] = STATE(2254), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1547] = { + [sym__expression] = STATE(2257), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1548] = { + [sym__expression] = STATE(4474), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1549] = { + [sym__expression] = STATE(2258), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1497] = { - [sym__expression] = STATE(4227), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [1550] = { + [sym__expression] = STATE(1410), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1551] = { + [sym__expression] = STATE(4134), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1498] = { - [sym__expression] = STATE(4253), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1552] = { + [sym__expression] = STATE(1411), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1553] = { + [sym__expression] = STATE(2260), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1554] = { + [sym__expression] = STATE(4139), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1555] = { + [sym__expression] = STATE(1407), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1556] = { + [sym__expression] = STATE(4118), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1557] = { + [sym__expression] = STATE(2261), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1558] = { + [sym__expression] = STATE(2262), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1559] = { + [sym__expression] = STATE(328), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1560] = { + [sym__expression] = STATE(4141), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1561] = { + [sym__expression] = STATE(2249), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1562] = { + [sym__expression] = STATE(4140), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1563] = { + [sym__expression] = STATE(318), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1564] = { + [sym__expression] = STATE(1225), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1565] = { + [sym__expression] = STATE(2298), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1566] = { + [sym__expression] = STATE(2294), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1567] = { + [sym__expression] = STATE(324), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1568] = { + [sym__expression] = STATE(4367), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1569] = { + [sym__expression] = STATE(4281), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -213156,198 +220596,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1499] = { - [sym__expression] = STATE(2450), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1500] = { - [sym__expression] = STATE(4239), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1570] = { + [sym__expression] = STATE(4290), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -213358,97 +220697,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1501] = { - [sym__expression] = STATE(4229), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1571] = { + [sym__expression] = STATE(4287), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -213459,683 +220798,986 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1502] = { - [sym__expression] = STATE(534), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1572] = { + [sym__expression] = STATE(4308), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1503] = { - [sym__expression] = STATE(402), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1573] = { + [sym__expression] = STATE(4440), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1504] = { - [sym__expression] = STATE(4004), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1574] = { + [sym__expression] = STATE(4517), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1505] = { - [sym__expression] = STATE(531), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1575] = { + [sym__expression] = STATE(4515), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1506] = { - [sym__expression] = STATE(4232), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [1576] = { + [sym__expression] = STATE(4368), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1507] = { - [sym__expression] = STATE(4234), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [1577] = { + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(5584), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), + }, + [1578] = { + [sym__expression] = STATE(4132), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1579] = { + [sym__expression] = STATE(4258), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1580] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3080), + [anon_sym_super] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(5629), + [anon_sym_null] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_when] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3082), + [anon_sym_continue_AT] = ACTIONS(3082), + [anon_sym_break_AT] = ACTIONS(3082), + [anon_sym_this_AT] = ACTIONS(3082), + [anon_sym_super_AT] = ACTIONS(3082), + [sym_real_literal] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(3080), + [sym_hex_literal] = ACTIONS(3082), + [sym_bin_literal] = ACTIONS(3082), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3082), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__string_start] = ACTIONS(3082), }, - [1508] = { - [sym__expression] = STATE(4295), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1581] = { + [sym__expression] = STATE(4291), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), @@ -214144,18 +221786,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(71), [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -214166,97 +221808,1107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1509] = { - [sym__expression] = STATE(4236), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1582] = { + [sym_function_body] = STATE(1025), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [1583] = { + [sym__expression] = STATE(323), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1584] = { + [sym__expression] = STATE(4449), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1585] = { + [sym__expression] = STATE(760), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1586] = { + [sym__expression] = STATE(4500), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1587] = { + [sym__expression] = STATE(4499), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1588] = { + [sym__expression] = STATE(771), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1589] = { + [sym__expression] = STATE(4494), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1590] = { + [sym__expression] = STATE(755), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1591] = { + [sym__expression] = STATE(4392), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1592] = { + [sym__expression] = STATE(4295), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -214267,198 +222919,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1510] = { - [sym__expression] = STATE(3996), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1593] = { + [sym_function_body] = STATE(1166), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), }, - [1511] = { - [sym__expression] = STATE(4242), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1594] = { + [sym__expression] = STATE(753), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1595] = { + [sym__expression] = STATE(4296), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -214469,97 +223222,1612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1512] = { - [sym__expression] = STATE(4245), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1596] = { + [sym__expression] = STATE(3355), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1597] = { + [sym__expression] = STATE(3272), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1598] = { + [sym__expression] = STATE(3354), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1599] = { + [sym__expression] = STATE(3352), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1600] = { + [sym__expression] = STATE(3346), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1601] = { + [sym__expression] = STATE(3341), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1602] = { + [sym__expression] = STATE(3340), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1603] = { + [sym__expression] = STATE(3333), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1604] = { + [sym__expression] = STATE(3331), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1605] = { + [sym__expression] = STATE(3328), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1606] = { + [sym__expression] = STATE(3326), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1607] = { + [sym__expression] = STATE(3322), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1608] = { + [sym__expression] = STATE(789), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1609] = { + [sym__expression] = STATE(3295), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1610] = { + [sym__expression] = STATE(791), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1611] = { + [sym__expression] = STATE(4297), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -214570,97 +224838,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1513] = { - [sym__expression] = STATE(4247), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1612] = { + [sym__expression] = STATE(4303), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -214671,198 +224939,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1514] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(5651), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), + [1613] = { + [sym__expression] = STATE(3301), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1515] = { - [sym__expression] = STATE(4231), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1614] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_object] = ACTIONS(3072), + [anon_sym_fun] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3072), + [anon_sym_super] = ACTIONS(3072), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(5629), + [anon_sym_null] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3072), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_when] = ACTIONS(3072), + [anon_sym_try] = ACTIONS(3072), + [anon_sym_throw] = ACTIONS(3072), + [anon_sym_return] = ACTIONS(3072), + [anon_sym_continue] = ACTIONS(3072), + [anon_sym_break] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3072), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3074), + [anon_sym_continue_AT] = ACTIONS(3074), + [anon_sym_break_AT] = ACTIONS(3074), + [anon_sym_this_AT] = ACTIONS(3074), + [anon_sym_super_AT] = ACTIONS(3074), + [sym_real_literal] = ACTIONS(3074), + [sym_integer_literal] = ACTIONS(3072), + [sym_hex_literal] = ACTIONS(3074), + [sym_bin_literal] = ACTIONS(3074), + [anon_sym_true] = ACTIONS(3072), + [anon_sym_false] = ACTIONS(3072), + [anon_sym_SQUOTE] = ACTIONS(3074), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3074), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3074), + }, + [1615] = { + [sym__expression] = STATE(1011), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1616] = { + [sym__expression] = STATE(3297), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1617] = { + [sym__expression] = STATE(4302), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -214873,97 +225444,1612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1516] = { - [sym__expression] = STATE(4235), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1618] = { + [sym__expression] = STATE(1402), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1619] = { + [sym__expression] = STATE(991), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1620] = { + [sym__expression] = STATE(878), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1621] = { + [sym__expression] = STATE(877), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1622] = { + [sym__expression] = STATE(870), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1623] = { + [sym__expression] = STATE(863), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1624] = { + [sym__expression] = STATE(885), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1625] = { + [sym__expression] = STATE(890), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1626] = { + [sym__expression] = STATE(1232), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1627] = { + [sym__expression] = STATE(4385), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1628] = { + [sym__expression] = STATE(912), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1629] = { + [sym__expression] = STATE(911), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1630] = { + [sym__expression] = STATE(909), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1631] = { + [sym__expression] = STATE(908), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1632] = { + [sym__expression] = STATE(4387), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1633] = { + [sym__expression] = STATE(4284), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -214974,97 +227060,5147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1517] = { - [sym__expression] = STATE(4058), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1634] = { + [sym__expression] = STATE(2592), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1635] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1635), + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_as] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4613), + [anon_sym_RBRACE] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(5643), + [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_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(4613), + [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_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(4613), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4613), + [anon_sym_super_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), + }, + [1636] = { + [sym__expression] = STATE(1226), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1637] = { + [sym__expression] = STATE(4438), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1638] = { + [sym_function_body] = STATE(1186), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [1639] = { + [sym_function_body] = STATE(1159), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [1640] = { + [sym__expression] = STATE(4097), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1641] = { + [sym__expression] = STATE(907), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1642] = { + [sym__expression] = STATE(2549), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1643] = { + [sym__expression] = STATE(331), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1644] = { + [sym__expression] = STATE(906), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1645] = { + [sym__expression] = STATE(307), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1646] = { + [sym__expression] = STATE(300), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1647] = { + [sym__expression] = STATE(312), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1648] = { + [sym__expression] = STATE(305), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1649] = { + [sym__expression] = STATE(301), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1650] = { + [sym__expression] = STATE(306), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1651] = { + [sym__expression] = STATE(311), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1652] = { + [sym__expression] = STATE(4384), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1653] = { + [sym__expression] = STATE(310), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1654] = { + [sym__expression] = STATE(308), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1655] = { + [sym__expression] = STATE(304), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1656] = { + [sym__expression] = STATE(303), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1657] = { + [sym__expression] = STATE(302), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1658] = { + [sym__expression] = STATE(750), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1659] = { + [sym__expression] = STATE(721), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1660] = { + [sym__expression] = STATE(749), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1661] = { + [sym__expression] = STATE(748), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1662] = { + [sym__expression] = STATE(746), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1663] = { + [sym__expression] = STATE(734), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1664] = { + [sym__expression] = STATE(751), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1665] = { + [sym__expression] = STATE(714), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1666] = { + [sym__expression] = STATE(735), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1667] = { + [sym__expression] = STATE(736), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1668] = { + [sym__expression] = STATE(738), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1669] = { + [sym__expression] = STATE(741), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1670] = { + [sym__expression] = STATE(367), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1671] = { + [sym__expression] = STATE(4393), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5646), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1672] = { + [sym__expression] = STATE(1012), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1673] = { + [sym__expression] = STATE(986), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1674] = { + [sym__expression] = STATE(992), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1675] = { + [sym__expression] = STATE(997), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1676] = { + [sym__expression] = STATE(461), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1677] = { + [sym__expression] = STATE(998), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1678] = { + [sym__expression] = STATE(926), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1679] = { + [sym__expression] = STATE(1216), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1680] = { + [sym__expression] = STATE(532), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1681] = { + [sym__expression] = STATE(4513), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1682] = { + [sym__expression] = STATE(1000), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1683] = { + [sym__expression] = STATE(1001), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1684] = { + [sym__expression] = STATE(3810), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -215075,299 +232211,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1518] = { - [sym__expression] = STATE(3940), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1685] = { + [sym__expression] = STATE(1002), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [1519] = { - [sym__expression] = STATE(3942), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1686] = { + [sym__expression] = STATE(1004), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [1520] = { - [sym__expression] = STATE(4255), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1687] = { + [sym__expression] = STATE(1005), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [1688] = { + [sym__expression] = STATE(3755), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -215378,198 +232615,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1521] = { - [sym__expression] = STATE(3943), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1689] = { + [sym_function_body] = STATE(1133), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = 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_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_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(4144), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, - [1522] = { - [sym__expression] = STATE(3794), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1690] = { + [sym__expression] = STATE(3761), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -215580,97 +232817,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1523] = { - [sym__expression] = STATE(4064), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1691] = { + [sym__expression] = STATE(4437), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1692] = { + [sym__expression] = STATE(3762), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -215681,2905 +233019,683 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1524] = { - [sym__expression] = STATE(3944), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1525] = { - [sym__expression] = STATE(3945), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1526] = { - [sym__expression] = STATE(677), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1527] = { - [sym__expression] = STATE(3946), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1528] = { - [sym__expression] = STATE(2547), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1529] = { - [sym__expression] = STATE(3947), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1530] = { - [sym__expression] = STATE(3948), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1531] = { - [sym__expression] = STATE(4333), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1532] = { - [sym__expression] = STATE(1412), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1533] = { - [sym__expression] = STATE(3950), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1534] = { - [sym__expression] = STATE(393), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1535] = { - [sym__expression] = STATE(3952), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1536] = { - [sym__expression] = STATE(699), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1537] = { - [sym__expression] = STATE(708), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1538] = { - [sym__expression] = STATE(3929), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1539] = { - [sym__expression] = STATE(3954), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1459), - [sym_annotation] = STATE(1459), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(298), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1926), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1319), - [sym_label] = ACTIONS(663), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(163), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(169), - [anon_sym_return] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(663), - [anon_sym_DASH] = ACTIONS(663), - [anon_sym_PLUS_PLUS] = ACTIONS(665), - [anon_sym_DASH_DASH] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1540] = { - [sym__expression] = STATE(706), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1541] = { - [sym__expression] = STATE(2449), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1542] = { - [sym__expression] = STATE(2447), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1543] = { - [sym__expression] = STATE(2421), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1544] = { - [sym__expression] = STATE(705), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1545] = { - [sym__expression] = STATE(2441), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1546] = { - [sym__expression] = STATE(703), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1693] = { + [sym__expression] = STATE(989), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(296), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [1547] = { - [sym__expression] = STATE(711), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1694] = { + [sym__expression] = STATE(3763), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1548] = { - [sym__expression] = STATE(2457), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [1695] = { + [sym__expression] = STATE(2434), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1549] = { - [sym__expression] = STATE(331), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1696] = { + [sym__expression] = STATE(3708), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1550] = { - [sym__expression] = STATE(520), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1697] = { + [sym__expression] = STATE(3773), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1551] = { - [sym__expression] = STATE(704), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1698] = { + [sym__expression] = STATE(3774), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1552] = { - [sym__expression] = STATE(4289), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1699] = { + [sym__expression] = STATE(4299), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), @@ -218588,18 +233704,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(71), [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -218610,10883 +233726,4924 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1553] = { - [sym__expression] = STATE(707), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1700] = { + [sym__expression] = STATE(3779), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1554] = { - [sym__expression] = STATE(320), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1701] = { + [sym__expression] = STATE(462), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1555] = { - [sym__expression] = STATE(710), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1702] = { + [sym__expression] = STATE(3781), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1556] = { - [sym__expression] = STATE(2545), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1703] = { + [sym__expression] = STATE(1945), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1557] = { - [sym__expression] = STATE(2551), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1704] = { + [sym__expression] = STATE(3731), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1558] = { - [sym__expression] = STATE(2442), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1559] = { - [sym__expression] = STATE(702), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1560] = { - [sym__expression] = STATE(2259), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1561] = { - [sym__expression] = STATE(701), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1562] = { - [sym__expression] = STATE(323), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1563] = { - [sym__expression] = STATE(2452), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1705] = { + [sym__expression] = STATE(3786), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1564] = { - [sym__expression] = STATE(2464), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1706] = { + [sym_function_body] = STATE(1120), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, - [1565] = { - [sym__expression] = STATE(2459), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1707] = { + [sym__expression] = STATE(4378), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1566] = { - [sym__expression] = STATE(278), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1708] = { + [sym__expression] = STATE(1714), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1567] = { - [sym__expression] = STATE(2455), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1709] = { + [sym__expression] = STATE(4227), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1568] = { - [sym__expression] = STATE(2454), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1710] = { + [sym__expression] = STATE(537), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1569] = { - [sym__expression] = STATE(2419), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1711] = { + [sym__expression] = STATE(315), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1570] = { - [sym__expression] = STATE(2463), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1712] = { + [sym__expression] = STATE(4377), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1571] = { - [sym__expression] = STATE(2462), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1713] = { + [sym_function_body] = STATE(1096), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_object] = ACTIONS(4260), + [anon_sym_fun] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_this] = ACTIONS(4260), + [anon_sym_super] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4260), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_when] = ACTIONS(4260), + [anon_sym_try] = ACTIONS(4260), + [anon_sym_throw] = ACTIONS(4260), + [anon_sym_return] = ACTIONS(4260), + [anon_sym_continue] = ACTIONS(4260), + [anon_sym_break] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4260), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4260), + [anon_sym_false] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [1572] = { - [sym__expression] = STATE(1960), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1714] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3063), + [anon_sym_DASH_EQ] = ACTIONS(3063), + [anon_sym_STAR_EQ] = ACTIONS(3063), + [anon_sym_SLASH_EQ] = ACTIONS(3063), + [anon_sym_PERCENT_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, - [1573] = { - [sym__expression] = STATE(2461), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1715] = { + [sym_function_body] = STATE(1068), + [sym__block] = STATE(1109), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(4085), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, - [1574] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(4523), + [1716] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_fun] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_super] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(5629), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3128), + [anon_sym_continue_AT] = ACTIONS(3128), + [anon_sym_break_AT] = ACTIONS(3128), + [anon_sym_this_AT] = ACTIONS(3128), + [anon_sym_super_AT] = ACTIONS(3128), + [sym_real_literal] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_hex_literal] = ACTIONS(3128), + [sym_bin_literal] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), + [sym__string_start] = ACTIONS(3128), }, - [1575] = { - [sym__expression] = STATE(276), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1717] = { + [sym__expression] = STATE(524), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1576] = { - [sym__expression] = STATE(316), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1718] = { + [sym__expression] = STATE(525), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1577] = { - [sym__expression] = STATE(274), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1719] = { + [sym_type_constraints] = STATE(2214), + [sym_property_delegate] = STATE(2368), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(5648), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), }, - [1578] = { - [sym__expression] = STATE(314), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1720] = { + [sym__expression] = STATE(517), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1579] = { - [sym__expression] = STATE(322), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1721] = { + [sym__expression] = STATE(533), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1580] = { - [sym__expression] = STATE(280), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1581] = { - [sym__expression] = STATE(1187), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [1722] = { + [sym__expression] = STATE(534), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1582] = { - [sym__expression] = STATE(982), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [1723] = { + [sym__expression] = STATE(531), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1583] = { - [sym__expression] = STATE(279), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1724] = { + [sym__expression] = STATE(375), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1584] = { - [sym__expression] = STATE(2255), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1725] = { + [sym__expression] = STATE(518), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1585] = { - [sym__expression] = STATE(271), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1726] = { + [sym__expression] = STATE(372), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1586] = { - [sym__expression] = STATE(272), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1727] = { + [sym__expression] = STATE(373), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1587] = { - [sym__expression] = STATE(282), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1728] = { + [sym__expression] = STATE(374), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1588] = { - [sym__expression] = STATE(2053), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1589] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_super] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3175), - [anon_sym_continue_AT] = ACTIONS(3175), - [anon_sym_break_AT] = ACTIONS(3175), - [anon_sym_this_AT] = ACTIONS(3175), - [anon_sym_super_AT] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_hex_literal] = ACTIONS(3175), - [sym_bin_literal] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3175), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1590] = { - [sym__expression] = STATE(2067), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1729] = { + [sym__expression] = STATE(541), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1591] = { - [sym__expression] = STATE(4362), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1730] = { + [sym__expression] = STATE(536), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1592] = { - [sym__expression] = STATE(281), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1731] = { + [sym__expression] = STATE(377), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1593] = { - [sym__expression] = STATE(2054), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1594] = { - [sym__expression] = STATE(1612), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1595] = { - [sym__expression] = STATE(1619), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1596] = { - [sym__expression] = STATE(1620), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1597] = { - [sym__expression] = STATE(1621), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1598] = { - [sym__expression] = STATE(1622), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1599] = { - [sym__expression] = STATE(1626), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1600] = { - [sym__expression] = STATE(1627), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1601] = { - [sym__expression] = STATE(1628), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1602] = { - [sym__expression] = STATE(1629), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1603] = { - [sym__expression] = STATE(1630), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1604] = { - [sym__expression] = STATE(2418), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1605] = { - [sym__expression] = STATE(277), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1732] = { + [sym__expression] = STATE(366), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1606] = { - [sym__expression] = STATE(634), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1607] = { - [sym__expression] = STATE(519), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1608] = { - [sym__expression] = STATE(1632), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1609] = { - [sym__expression] = STATE(4348), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1610] = { - [sym__expression] = STATE(627), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1611] = { - [sym__expression] = STATE(629), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1612] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1613] = { - [sym__expression] = STATE(631), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1614] = { - [sym__expression] = STATE(625), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1733] = { + [sym__expression] = STATE(378), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1615] = { - [sym__expression] = STATE(521), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), + [1734] = { + [sym__expression] = STATE(528), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1616] = { - [sym__expression] = STATE(4522), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1617] = { - [sym__expression] = STATE(626), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1618] = { - [sym__expression] = STATE(635), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1619] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3154), - [anon_sym_DASH_EQ] = ACTIONS(3154), - [anon_sym_STAR_EQ] = ACTIONS(3154), - [anon_sym_SLASH_EQ] = ACTIONS(3154), - [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1620] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1621] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1622] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1623] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_fun] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3185), - [anon_sym_super] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_null] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_when] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3187), - [anon_sym_continue_AT] = ACTIONS(3187), - [anon_sym_break_AT] = ACTIONS(3187), - [anon_sym_this_AT] = ACTIONS(3187), - [anon_sym_super_AT] = ACTIONS(3187), - [sym_real_literal] = ACTIONS(3187), - [sym_integer_literal] = ACTIONS(3185), - [sym_hex_literal] = ACTIONS(3187), - [sym_bin_literal] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3187), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3187), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3187), - }, - [1624] = { - [sym__expression] = STATE(633), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1625] = { - [sym__expression] = STATE(632), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1626] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1627] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1628] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1629] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1630] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_tailrec] = ACTIONS(3166), - [anon_sym_operator] = ACTIONS(3166), - [anon_sym_infix] = ACTIONS(3166), - [anon_sym_inline] = ACTIONS(3166), - [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), + [1735] = { + [sym_type_constraints] = STATE(2211), + [sym_property_delegate] = STATE(2323), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(5656), + [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_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [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_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [1631] = { - [sym__expression] = STATE(630), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1632] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [1736] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(5629), + [anon_sym_null] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3109), }, - [1633] = { - [sym__expression] = STATE(1428), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1634] = { - [sym__expression] = STATE(2113), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [1737] = { + [sym__expression] = STATE(2213), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1635] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [1738] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(5629), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), }, - [1636] = { - [sym__expression] = STATE(2110), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1637] = { - [sym__expression] = STATE(1669), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1638] = { - [sym__expression] = STATE(1670), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1639] = { - [sym__expression] = STATE(400), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1640] = { - [sym__expression] = STATE(628), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1641] = { - [sym__expression] = STATE(1676), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1739] = { + [sym__expression] = STATE(1221), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1642] = { - [sym__expression] = STATE(404), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1643] = { - [sym__expression] = STATE(403), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1644] = { - [sym__expression] = STATE(389), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1645] = { - [sym__expression] = STATE(388), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1646] = { - [sym__expression] = STATE(386), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1647] = { - [sym__expression] = STATE(383), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1648] = { - [sym__expression] = STATE(391), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1649] = { - [sym__expression] = STATE(387), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1650] = { - [sym__expression] = STATE(636), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [1651] = { - [sym__expression] = STATE(385), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1652] = { - [sym__expression] = STATE(390), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1740] = { + [sym__expression] = STATE(2209), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1653] = { - [sym__expression] = STATE(395), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1741] = { + [sym__expression] = STATE(2207), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1654] = { - [sym__expression] = STATE(1688), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [1742] = { + [sym__expression] = STATE(2206), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1655] = { - [sym__expression] = STATE(380), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1743] = { + [sym__expression] = STATE(2205), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1656] = { - [sym__expression] = STATE(396), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1744] = { + [sym__expression] = STATE(2199), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1657] = { - [sym__expression] = STATE(359), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1745] = { + [sym__expression] = STATE(2197), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1658] = { - [sym__expression] = STATE(4332), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1746] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_object] = ACTIONS(3044), + [anon_sym_fun] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(5629), + [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(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3046), + [anon_sym_continue_AT] = ACTIONS(3046), + [anon_sym_break_AT] = ACTIONS(3046), + [anon_sym_this_AT] = ACTIONS(3046), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3046), }, - [1659] = { - [sym__expression] = STATE(369), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1747] = { + [sym__expression] = STATE(521), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1660] = { - [sym_type_constraints] = STATE(2202), - [sym_property_delegate] = STATE(2315), - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(5695), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(5699), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [1748] = { + [sym_type_constraints] = STATE(2204), + [sym_property_delegate] = STATE(2318), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -229511,1194 +238668,588 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [1661] = { - [sym__expression] = STATE(1690), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1662] = { - [sym__expression] = STATE(1691), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1663] = { - [sym__expression] = STATE(1574), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1664] = { - [sym__expression] = STATE(1723), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [1749] = { + [sym__expression] = STATE(3760), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1665] = { - [sym__expression] = STATE(1724), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), + [1750] = { + [sym__expression] = STATE(4243), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1666] = { - [sym__expression] = STATE(1726), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), + [1751] = { + [sym__expression] = STATE(4245), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1667] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, - [1668] = { - [sym__expression] = STATE(1589), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), + [1752] = { + [sym__expression] = STATE(4247), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1669] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_fun] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3193), - [anon_sym_super] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3195), - [anon_sym_continue_AT] = ACTIONS(3195), - [anon_sym_break_AT] = ACTIONS(3195), - [anon_sym_this_AT] = ACTIONS(3195), - [anon_sym_super_AT] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_hex_literal] = ACTIONS(3195), - [sym_bin_literal] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3195), - }, - [1670] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_fun] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3152), - [anon_sym_super] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [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(4523), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3154), - [anon_sym_continue_AT] = ACTIONS(3154), - [anon_sym_break_AT] = ACTIONS(3154), - [anon_sym_this_AT] = ACTIONS(3154), - [anon_sym_super_AT] = ACTIONS(3154), - [sym_real_literal] = ACTIONS(3154), - [sym_integer_literal] = ACTIONS(3152), - [sym_hex_literal] = ACTIONS(3154), - [sym_bin_literal] = ACTIONS(3154), - [anon_sym_true] = ACTIONS(3152), - [anon_sym_false] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(4523), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3154), + [sym__string_start] = ACTIONS(113), }, - [1671] = { - [sym__expression] = STATE(2279), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [1753] = { + [sym__expression] = STATE(368), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1672] = { - [sym_type_constraints] = STATE(2212), - [sym_property_delegate] = STATE(2348), - [sym_getter] = STATE(3596), - [sym_setter] = STATE(3596), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_RBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(5705), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(5707), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_DASH_GT] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [1754] = { + [sym_type_constraints] = STATE(2191), + [sym_property_delegate] = STATE(2359), + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5660), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -230723,7881 +239274,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [1673] = { - [sym__expression] = STATE(1190), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1755] = { + [sym__expression] = STATE(397), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1674] = { - [sym__expression] = STATE(799), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1675] = { - [sym__expression] = STATE(4354), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5709), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1676] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3133), - [anon_sym_super] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_when] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_throw] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3135), - [anon_sym_continue_AT] = ACTIONS(3135), - [anon_sym_break_AT] = ACTIONS(3135), - [anon_sym_this_AT] = ACTIONS(3135), - [anon_sym_super_AT] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3135), - [sym_integer_literal] = ACTIONS(3133), - [sym_hex_literal] = ACTIONS(3135), - [sym_bin_literal] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3135), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3135), - }, - [1677] = { - [sym__expression] = STATE(1213), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1678] = { - [sym__expression] = STATE(1233), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1679] = { - [sym__expression] = STATE(1219), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1680] = { - [sym__expression] = STATE(1220), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1681] = { - [sym__expression] = STATE(1222), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1682] = { - [sym__expression] = STATE(1223), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1683] = { - [sym__expression] = STATE(1230), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1684] = { - [sym__expression] = STATE(1231), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1685] = { - [sym__expression] = STATE(1234), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1686] = { - [sym__expression] = STATE(1188), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1687] = { - [sym__expression] = STATE(1215), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1688] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_fun] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_super] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3131), - [anon_sym_continue_AT] = ACTIONS(3131), - [anon_sym_break_AT] = ACTIONS(3131), - [anon_sym_this_AT] = ACTIONS(3131), - [anon_sym_super_AT] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_hex_literal] = ACTIONS(3131), - [sym_bin_literal] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3131), - }, - [1689] = { - [sym__expression] = STATE(1201), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1690] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_fun] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_null] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_when] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3127), - [anon_sym_continue_AT] = ACTIONS(3127), - [anon_sym_break_AT] = ACTIONS(3127), - [anon_sym_this_AT] = ACTIONS(3127), - [anon_sym_super_AT] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3127), - [sym_integer_literal] = ACTIONS(3125), - [sym_hex_literal] = ACTIONS(3127), - [sym_bin_literal] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3127), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), - }, - [1691] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_fun] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3121), - [anon_sym_super] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_when] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3123), - [anon_sym_continue_AT] = ACTIONS(3123), - [anon_sym_break_AT] = ACTIONS(3123), - [anon_sym_this_AT] = ACTIONS(3123), - [anon_sym_super_AT] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3123), - [sym_integer_literal] = ACTIONS(3121), - [sym_hex_literal] = ACTIONS(3123), - [sym_bin_literal] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3123), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3123), - }, - [1692] = { - [sym__expression] = STATE(2295), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1693] = { - [sym__expression] = STATE(1216), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1694] = { - [sym__expression] = STATE(273), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1695] = { - [sym__expression] = STATE(809), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1696] = { - [sym__expression] = STATE(4491), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1697] = { - [sym__expression] = STATE(2277), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1698] = { - [sym__expression] = STATE(4328), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1699] = { - [sym__expression] = STATE(800), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1700] = { - [sym__expression] = STATE(807), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1701] = { - [sym__expression] = STATE(4485), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1702] = { - [sym__expression] = STATE(804), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1703] = { - [sym__expression] = STATE(810), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1704] = { - [sym_function_body] = STATE(1120), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), - }, - [1705] = { - [sym__expression] = STATE(2499), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1706] = { - [sym__expression] = STATE(1229), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1707] = { - [sym__expression] = STATE(2269), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1708] = { - [sym__expression] = STATE(1001), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1709] = { - [sym__expression] = STATE(2229), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1710] = { - [sym__expression] = STATE(2303), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1711] = { - [sym__expression] = STATE(2312), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1712] = { - [sym__expression] = STATE(2308), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1713] = { - [sym__expression] = STATE(2302), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1714] = { - [sym__expression] = STATE(478), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1715] = { - [sym__expression] = STATE(2300), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1716] = { - [sym__expression] = STATE(993), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1717] = { - [sym__expression] = STATE(472), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1718] = { - [sym__expression] = STATE(2299), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1719] = { - [sym__expression] = STATE(2294), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1720] = { - [sym__expression] = STATE(2293), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1721] = { - [sym__expression] = STATE(2291), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1722] = { - [sym__expression] = STATE(2289), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1723] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_fun] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_this] = ACTIONS(3141), - [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_null] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_when] = ACTIONS(3141), - [anon_sym_try] = ACTIONS(3141), - [anon_sym_throw] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3143), - [anon_sym_continue_AT] = ACTIONS(3143), - [anon_sym_break_AT] = ACTIONS(3143), - [anon_sym_this_AT] = ACTIONS(3143), - [anon_sym_super_AT] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3143), - [sym_integer_literal] = ACTIONS(3141), - [sym_hex_literal] = ACTIONS(3143), - [sym_bin_literal] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_SQUOTE] = ACTIONS(3143), - [sym__backtick_identifier] = ACTIONS(3143), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3143), - }, - [1724] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_object] = ACTIONS(3159), - [anon_sym_fun] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_super] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_null] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3161), - [anon_sym_continue_AT] = ACTIONS(3161), - [anon_sym_break_AT] = ACTIONS(3161), - [anon_sym_this_AT] = ACTIONS(3161), - [anon_sym_super_AT] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_hex_literal] = ACTIONS(3161), - [sym_bin_literal] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3161), - }, - [1725] = { - [sym__expression] = STATE(2253), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1726] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_fun] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_super] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_when] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [anon_sym_this_AT] = ACTIONS(3168), - [anon_sym_super_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3166), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), - }, - [1727] = { - [sym__expression] = STATE(990), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1728] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [1729] = { - [sym__expression] = STATE(474), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1730] = { - [sym__expression] = STATE(2297), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1731] = { - [sym__expression] = STATE(464), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1732] = { - [sym__expression] = STATE(2313), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1725), - [sym_annotation] = STATE(1725), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(265), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1676), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(865), - [sym_label] = ACTIONS(875), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1678), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_return] = ACTIONS(1682), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(875), - [anon_sym_DASH] = ACTIONS(875), - [anon_sym_PLUS_PLUS] = ACTIONS(877), - [anon_sym_DASH_DASH] = ACTIONS(877), - [anon_sym_BANG] = ACTIONS(877), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1733] = { - [sym__expression] = STATE(4322), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5711), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1734] = { - [sym__expression] = STATE(984), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1735] = { - [sym__expression] = STATE(980), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1736] = { - [sym__expression] = STATE(977), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1737] = { - [sym__expression] = STATE(1291), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1738] = { - [sym__expression] = STATE(4386), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1739] = { - [sym__expression] = STATE(1253), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1740] = { - [sym__expression] = STATE(4441), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1741] = { - [sym__expression] = STATE(1288), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1742] = { - [sym__expression] = STATE(1270), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1756] = { + [sym__expression] = STATE(519), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, - [1743] = { - [sym__expression] = STATE(1623), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1636), - [sym_annotation] = STATE(1636), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), + [1757] = { + [sym__expression] = STATE(4254), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), [sym__return_at] = STATE(356), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(925), - [sym_label] = ACTIONS(935), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_PLUS_PLUS] = ACTIONS(937), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1744] = { - [sym__expression] = STATE(4439), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1745] = { - [sym__expression] = STATE(475), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1746] = { - [sym__expression] = STATE(4133), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1747] = { - [sym__expression] = STATE(4109), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1748] = { - [sym__expression] = STATE(1263), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1749] = { - [sym__expression] = STATE(4373), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1750] = { - [sym__expression] = STATE(3761), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -238608,602 +239584,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1751] = { - [sym__expression] = STATE(286), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1752] = { - [sym__expression] = STATE(2494), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1753] = { - [sym__expression] = STATE(1262), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1754] = { - [sym__expression] = STATE(2244), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1755] = { - [sym__expression] = STATE(288), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1756] = { - [sym__expression] = STATE(3727), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1758] = { + [sym__expression] = STATE(4222), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -239214,97 +239685,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1757] = { - [sym__expression] = STATE(3726), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1759] = { + [sym__expression] = STATE(2196), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1760] = { + [sym__expression] = STATE(2193), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1761] = { + [sym__expression] = STATE(4251), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -239315,1410 +239988,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1758] = { - [sym__expression] = STATE(1221), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [1759] = { - [sym__expression] = STATE(2247), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1760] = { - [sym__expression] = STATE(2219), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1761] = { - [sym__expression] = STATE(284), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, [1762] = { - [sym__expression] = STATE(2188), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__expression] = STATE(2235), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1763] = { - [sym__expression] = STATE(2203), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__expression] = STATE(2189), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1764] = { - [sym__expression] = STATE(2245), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__expression] = STATE(2221), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1765] = { - [sym__expression] = STATE(2243), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__expression] = STATE(2222), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1766] = { - [sym__expression] = STATE(2241), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__expression] = STATE(2220), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1767] = { - [sym__expression] = STATE(461), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1768] = { - [sym__expression] = STATE(2237), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1769] = { - [sym__expression] = STATE(2235), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1770] = { - [sym__expression] = STATE(2228), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1771] = { - [sym__expression] = STATE(3725), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [sym__expression] = STATE(3764), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -240729,198 +240594,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1772] = { - [sym__expression] = STATE(473), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1768] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1769), + [sym__alpha_identifier] = ACTIONS(4587), + [anon_sym_AT] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4589), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(5664), + [anon_sym_LT] = ACTIONS(4587), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_where] = ACTIONS(4587), + [anon_sym_object] = ACTIONS(4587), + [anon_sym_fun] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), + [anon_sym_this] = ACTIONS(4587), + [anon_sym_super] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4589), + [sym_label] = ACTIONS(4587), + [anon_sym_in] = ACTIONS(4587), + [anon_sym_DOT_DOT] = ACTIONS(4589), + [anon_sym_QMARK_COLON] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_null] = ACTIONS(4587), + [anon_sym_if] = ACTIONS(4587), + [anon_sym_else] = ACTIONS(4587), + [anon_sym_when] = ACTIONS(4587), + [anon_sym_try] = ACTIONS(4587), + [anon_sym_throw] = ACTIONS(4587), + [anon_sym_return] = ACTIONS(4587), + [anon_sym_continue] = ACTIONS(4587), + [anon_sym_break] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_BANGin] = ACTIONS(4589), + [anon_sym_is] = ACTIONS(4587), + [anon_sym_BANGis] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4589), + [anon_sym_as_QMARK] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_BANG_BANG] = ACTIONS(4589), + [anon_sym_suspend] = ACTIONS(4587), + [anon_sym_sealed] = ACTIONS(4587), + [anon_sym_annotation] = ACTIONS(4587), + [anon_sym_data] = ACTIONS(4587), + [anon_sym_inner] = ACTIONS(4587), + [anon_sym_value] = ACTIONS(4587), + [anon_sym_override] = ACTIONS(4587), + [anon_sym_lateinit] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_internal] = ACTIONS(4587), + [anon_sym_protected] = ACTIONS(4587), + [anon_sym_tailrec] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), + [anon_sym_infix] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym_external] = ACTIONS(4587), + [sym_property_modifier] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_open] = ACTIONS(4587), + [anon_sym_vararg] = ACTIONS(4587), + [anon_sym_noinline] = ACTIONS(4587), + [anon_sym_crossinline] = ACTIONS(4587), + [anon_sym_expect] = ACTIONS(4587), + [anon_sym_actual] = ACTIONS(4587), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4589), + [anon_sym_continue_AT] = ACTIONS(4589), + [anon_sym_break_AT] = ACTIONS(4589), + [anon_sym_this_AT] = ACTIONS(4589), + [anon_sym_super_AT] = ACTIONS(4589), + [sym_real_literal] = ACTIONS(4589), + [sym_integer_literal] = ACTIONS(4587), + [sym_hex_literal] = ACTIONS(4589), + [sym_bin_literal] = ACTIONS(4589), + [anon_sym_true] = ACTIONS(4587), + [anon_sym_false] = ACTIONS(4587), + [anon_sym_SQUOTE] = ACTIONS(4589), + [sym__backtick_identifier] = ACTIONS(4589), + [sym__automatic_semicolon] = ACTIONS(4589), + [sym_safe_nav] = ACTIONS(4589), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4589), }, - [1773] = { - [sym__expression] = STATE(3724), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1769] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(1635), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_as] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_RBRACE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(5664), + [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_SEMI] = ACTIONS(4515), + [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_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_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(4515), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4515), + [anon_sym_super_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), + }, + [1770] = { + [sym__expression] = STATE(362), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1771] = { + [sym__expression] = STATE(4270), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1772] = { + [sym__expression] = STATE(4062), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [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(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -240931,602 +241099,2117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, + [1773] = { + [sym__expression] = STATE(4102), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, [1774] = { - [sym__expression] = STATE(2236), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4261), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1775] = { - [sym__expression] = STATE(470), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4269), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1776] = { - [sym__expression] = STATE(2231), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4265), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1777] = { - [sym__expression] = STATE(460), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4262), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1778] = { - [sym__expression] = STATE(2238), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4273), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1779] = { - [sym__expression] = STATE(3802), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [sym__expression] = STATE(4274), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1780] = { + [sym__expression] = STATE(4259), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1781] = { + [sym_type_constraints] = STATE(2201), + [sym_property_delegate] = STATE(2342), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(5666), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + }, + [1782] = { + [sym__expression] = STATE(4268), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1783] = { + [sym__expression] = STATE(2489), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1784] = { + [sym__expression] = STATE(364), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1785] = { + [sym__expression] = STATE(2493), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1786] = { + [sym__expression] = STATE(379), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1787] = { + [sym__expression] = STATE(4271), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1788] = { + [sym__expression] = STATE(371), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1789] = { + [sym__expression] = STATE(4256), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1790] = { + [sym__expression] = STATE(361), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [1791] = { + [sym__expression] = STATE(4345), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1792] = { + [sym__expression] = STATE(4272), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1793] = { + [sym__expression] = STATE(4248), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -241537,501 +243220,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1780] = { - [sym__expression] = STATE(4276), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1781] = { - [sym__expression] = STATE(2468), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1782] = { - [sym__expression] = STATE(471), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1783] = { - [sym__expression] = STATE(2471), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1784] = { - [sym__expression] = STATE(3723), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1794] = { + [sym__expression] = STATE(4244), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -242042,2602 +243321,1087 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1785] = { - [sym__expression] = STATE(4094), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1786] = { - [sym__expression] = STATE(4278), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1787] = { - [sym__expression] = STATE(4277), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1788] = { - [sym__expression] = STATE(4272), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1789] = { - [sym__expression] = STATE(4409), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1790] = { - [sym__expression] = STATE(4259), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1791] = { - [sym__expression] = STATE(4260), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1792] = { - [sym__expression] = STATE(4308), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1793] = { - [sym__expression] = STATE(4262), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1794] = { - [sym_function_body] = STATE(1101), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), - }, [1795] = { - [sym__expression] = STATE(2470), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4264), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1796] = { - [sym__expression] = STATE(476), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [1797] = { - [sym__expression] = STATE(4256), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2492), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1798] = { - [sym__expression] = STATE(4264), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4280), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1799] = { - [sym__expression] = STATE(4265), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(3323), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1609), + [sym_annotation] = STATE(1609), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(283), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1788), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1185), + [sym_label] = ACTIONS(257), + [anon_sym_null] = ACTIONS(1792), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1800] = { - [sym__expression] = STATE(4266), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [1801] = { - [sym__expression] = STATE(468), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [1802] = { - [sym__expression] = STATE(467), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_object] = ACTIONS(3122), + [anon_sym_fun] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_super] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(5629), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [anon_sym_this_AT] = ACTIONS(3124), + [anon_sym_super_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), }, [1803] = { - [sym__expression] = STATE(4267), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_fun] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_super] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(5629), + [anon_sym_null] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3113), + [anon_sym_continue_AT] = ACTIONS(3113), + [anon_sym_break_AT] = ACTIONS(3113), + [anon_sym_this_AT] = ACTIONS(3113), + [anon_sym_super_AT] = ACTIONS(3113), + [sym_real_literal] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_hex_literal] = ACTIONS(3113), + [sym_bin_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3113), }, [1804] = { - [sym__expression] = STATE(462), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(2194), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1805] = { - [sym__expression] = STATE(4258), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1806] = { - [sym__expression] = STATE(4282), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [1807] = { - [sym__expression] = STATE(4280), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1808] = { - [sym__expression] = STATE(3338), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1809] = { - [sym__expression] = STATE(290), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1810] = { - [sym__expression] = STATE(4293), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [sym__expression] = STATE(4285), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(43), [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), @@ -244646,18 +244410,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(71), [anon_sym_DASH_DASH] = ACTIONS(71), [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -244668,198 +244432,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1811] = { - [sym__expression] = STATE(287), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1812] = { - [sym__expression] = STATE(4299), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1806] = { + [sym__expression] = STATE(4053), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -244870,173 +244533,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1813] = { - [sym__expression] = STATE(2246), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1814] = { - [sym__expression] = STATE(4082), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1807] = { + [sym__expression] = STATE(4051), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -245045,23 +244607,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -245072,72 +244634,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1815] = { - [sym__expression] = STATE(4081), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1808] = { + [sym__expression] = STATE(4043), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -245146,23 +244708,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -245173,274 +244735,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1816] = { - [sym__expression] = STATE(292), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1653), - [sym_annotation] = STATE(1653), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(264), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1674), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1347), - [sym_label] = ACTIONS(727), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(721), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(723), - [anon_sym_return] = ACTIONS(725), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(727), - [anon_sym_DASH] = ACTIONS(727), - [anon_sym_PLUS_PLUS] = ACTIONS(729), - [anon_sym_DASH_DASH] = ACTIONS(729), - [anon_sym_BANG] = ACTIONS(729), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1809] = { + [sym_type_constraints] = STATE(2202), + [sym_property_delegate] = STATE(2339), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(5672), + [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_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [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_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), + [sym_multiline_comment] = ACTIONS(3), }, - [1817] = { - [sym__expression] = STATE(4116), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1810] = { + [sym__expression] = STATE(4520), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1818] = { - [sym__expression] = STATE(4080), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1811] = { + [sym__expression] = STATE(4071), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -245449,23 +245011,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -245476,97 +245038,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1819] = { - [sym__expression] = STATE(3722), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1812] = { + [sym__expression] = STATE(4238), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -245577,97 +245139,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1820] = { - [sym__expression] = STATE(4079), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1813] = { + [sym__expression] = STATE(4236), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -245678,198 +245240,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1821] = { - [sym__expression] = STATE(466), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1822] = { - [sym__expression] = STATE(4078), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1814] = { + [sym__expression] = STATE(4234), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -245880,72 +245341,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1823] = { - [sym__expression] = STATE(4076), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1815] = { + [sym__expression] = STATE(4452), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1816] = { + [sym__expression] = STATE(4066), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -245954,23 +245516,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -245981,72 +245543,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1824] = { - [sym__expression] = STATE(4074), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1817] = { + [sym__expression] = STATE(4059), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -246055,23 +245617,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -246082,72 +245644,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1825] = { - [sym__expression] = STATE(4073), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1818] = { + [sym__expression] = STATE(4056), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -246156,23 +245718,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -246183,72 +245745,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1826] = { - [sym__expression] = STATE(4071), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1819] = { + [sym__expression] = STATE(4048), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -246257,23 +245819,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -246284,72 +245846,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1827] = { - [sym__expression] = STATE(4070), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1820] = { + [sym_type_constraints] = STATE(2212), + [sym_property_delegate] = STATE(2315), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5674), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + }, + [1821] = { + [sym__expression] = STATE(4047), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -246358,23 +246021,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -246385,501 +246048,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1828] = { - [sym__expression] = STATE(2472), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1829] = { - [sym__expression] = STATE(2473), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1830] = { - [sym__expression] = STATE(2474), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1822] = { + [sym__expression] = STATE(4433), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1831] = { - [sym__expression] = STATE(2465), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1823] = { + [sym__expression] = STATE(4430), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1832] = { - [sym__expression] = STATE(4069), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1824] = { + [sym__expression] = STATE(4241), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(55), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -246890,274 +246351,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1833] = { - [sym__expression] = STATE(4499), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1825] = { + [sym__expression] = STATE(4383), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1834] = { - [sym__expression] = STATE(299), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [1826] = { + [sym__expression] = STATE(4328), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1835] = { - [sym__expression] = STATE(4066), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1827] = { + [sym__expression] = STATE(4408), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1828] = { + [sym__expression] = STATE(4042), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), @@ -247166,124 +246728,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [1836] = { - [sym__expression] = STATE(4298), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -247294,97 +246755,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1837] = { - [sym__expression] = STATE(4287), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1829] = { + [sym__expression] = STATE(4235), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -247395,602 +246856,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1838] = { - [sym__expression] = STATE(2476), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), + [1830] = { + [sym__expression] = STATE(2511), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1839] = { - [sym__expression] = STATE(2477), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), + [1831] = { + [sym__expression] = STATE(2512), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1840] = { - [sym__expression] = STATE(2479), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), + [1832] = { + [sym__expression] = STATE(2517), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1841] = { - [sym__expression] = STATE(2480), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), + [1833] = { + [sym__expression] = STATE(2529), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1842] = { - [sym__expression] = STATE(2481), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [1834] = { + [sym__expression] = STATE(1045), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1843] = { - [sym__expression] = STATE(4302), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1835] = { + [sym__expression] = STATE(3759), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1866), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -248001,299 +247462,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1844] = { - [sym__expression] = STATE(2484), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1845] = { - [sym__expression] = STATE(2531), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [1846] = { - [sym__expression] = STATE(4284), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1836] = { + [sym__expression] = STATE(4061), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -248304,299 +247563,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1847] = { - [sym__expression] = STATE(4521), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1848] = { - [sym__expression] = STATE(4433), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [1837] = { + [sym__expression] = STATE(4403), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1849] = { - [sym__expression] = STATE(4292), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1838] = { + [sym__expression] = STATE(4086), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(1289), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(61), + [anon_sym_return] = ACTIONS(63), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -248607,1006 +247765,2420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1850] = { - [sym__expression] = STATE(4398), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [1839] = { + [sym__expression] = STATE(4466), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1840] = { + [sym__expression] = STATE(2530), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1851] = { - [sym__expression] = STATE(4401), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [1841] = { + [sym__expression] = STATE(2469), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1852] = { - [sym__expression] = STATE(4402), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [1842] = { + [sym__expression] = STATE(2499), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1853] = { - [sym__expression] = STATE(4406), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [1843] = { + [sym__expression] = STATE(2474), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1854] = { - [sym__expression] = STATE(4407), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [1844] = { + [sym__expression] = STATE(2475), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1855] = { - [sym__expression] = STATE(4408), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [1845] = { + [sym__expression] = STATE(1035), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1846] = { + [sym__expression] = STATE(2477), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [1856] = { - [sym__expression] = STATE(4410), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [1847] = { + [sym__expression] = STATE(2566), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1848] = { + [sym__expression] = STATE(676), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1849] = { + [sym__expression] = STATE(711), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1850] = { + [sym__expression] = STATE(4504), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [1857] = { - [sym__expression] = STATE(4411), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [1851] = { + [sym__expression] = STATE(710), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1852] = { + [sym__expression] = STATE(4405), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1853] = { + [sym_type_constraints] = STATE(2216), + [sym_property_delegate] = STATE(2336), + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5676), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5678), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + }, + [1854] = { + [sym__expression] = STATE(1032), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1855] = { + [sym__expression] = STATE(699), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1856] = { + [sym__expression] = STATE(696), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1857] = { + [sym__expression] = STATE(695), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1858] = { - [sym__expression] = STATE(4412), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1031), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1859] = { - [sym__expression] = STATE(3721), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [sym__expression] = STATE(1028), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1860] = { + [sym__expression] = STATE(1026), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1861] = { + [sym__expression] = STATE(709), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [1862] = { + [sym__expression] = STATE(4077), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1862), + [sym_annotation] = STATE(1862), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(299), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(1876), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [sym_label] = ACTIONS(677), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(55), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [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(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -249617,198 +250189,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1860] = { - [sym__expression] = STATE(4414), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [1863] = { + [sym__expression] = STATE(681), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, - [1861] = { - [sym__expression] = STATE(3720), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), + [1864] = { + [sym__expression] = STATE(4347), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1865] = { + [sym__expression] = STATE(4301), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1491), + [sym_annotation] = STATE(1491), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(359), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(13), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), [anon_sym_this] = ACTIONS(39), [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), + [anon_sym_STAR] = ACTIONS(43), + [sym_label] = ACTIONS(69), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3038), [anon_sym_when] = ACTIONS(57), [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), + [anon_sym_throw] = ACTIONS(3040), + [anon_sym_return] = ACTIONS(3042), [anon_sym_continue] = ACTIONS(65), [anon_sym_break] = ACTIONS(65), [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [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(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), [anon_sym_continue_AT] = ACTIONS(93), [anon_sym_break_AT] = ACTIONS(95), [anon_sym_this_AT] = ACTIONS(97), [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), + [sym_real_literal] = ACTIONS(1872), [sym_integer_literal] = ACTIONS(103), [sym_hex_literal] = ACTIONS(105), [sym_bin_literal] = ACTIONS(105), @@ -249819,29568 +250492,32897 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(113), }, - [1862] = { - [sym__expression] = STATE(4415), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1863] = { - [sym__expression] = STATE(4416), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1864] = { - [sym__expression] = STATE(4419), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1865] = { - [sym__expression] = STATE(4425), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, [1866] = { - [sym__expression] = STATE(4420), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4477), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1867] = { - [sym__expression] = STATE(4421), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2302), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1868] = { - [sym__expression] = STATE(3714), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), + [sym__expression] = STATE(973), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1672), + [sym_annotation] = STATE(1672), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1856), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1191), + [sym_label] = ACTIONS(597), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(583), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(589), + [anon_sym_return] = ACTIONS(591), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [anon_sym_BANG] = ACTIONS(599), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1869] = { - [sym__expression] = STATE(4428), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4463), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [1870] = { - [sym__expression] = STATE(4291), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1870] = { + [sym__expression] = STATE(679), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1871] = { - [sym__expression] = STATE(4431), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4410), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1872] = { - [sym__expression] = STATE(4395), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2510), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1873] = { - [sym__expression] = STATE(327), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(698), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1874] = { - [sym__expression] = STATE(4301), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__expression] = STATE(4503), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1875] = { - [sym__expression] = STATE(4434), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(680), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1876] = { - [sym__expression] = STATE(4436), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(677), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1877] = { - [sym__expression] = STATE(4437), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(279), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1878] = { - [sym__expression] = STATE(4440), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_type_constraints] = STATE(2218), + [sym_property_delegate] = STATE(2338), + [sym_getter] = STATE(4825), + [sym_setter] = STATE(4825), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_RBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(5680), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5682), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_DASH_GT] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), }, [1879] = { - [sym__expression] = STATE(4442), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2519), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1880] = { - [sym__expression] = STATE(4444), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(271), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1881] = { - [sym__expression] = STATE(4445), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1212), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1882] = { - [sym__expression] = STATE(4446), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4397), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1883] = { - [sym__expression] = STATE(4447), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(280), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1884] = { - [sym__expression] = STATE(4448), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(281), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1885] = { - [sym__expression] = STATE(2492), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1795), - [sym_annotation] = STATE(1795), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(268), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1700), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1117), - [sym_label] = ACTIONS(1125), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1702), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_return] = ACTIONS(1706), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_PLUS_PLUS] = ACTIONS(1127), - [anon_sym_DASH_DASH] = ACTIONS(1127), - [anon_sym_BANG] = ACTIONS(1127), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4331), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1886] = { - [sym__expression] = STATE(4450), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(2541), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1887] = { - [sym__expression] = STATE(4452), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4489), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1888] = { - [sym__expression] = STATE(4453), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(282), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1889] = { - [sym__expression] = STATE(4456), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4429), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1890] = { - [sym__expression] = STATE(4458), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(272), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1891] = { - [sym__expression] = STATE(4460), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4427), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1892] = { - [sym__expression] = STATE(4461), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(275), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1893] = { - [sym__expression] = STATE(4462), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(274), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1894] = { - [sym__expression] = STATE(4281), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__expression] = STATE(4413), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1895] = { - [sym__expression] = STATE(4472), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(273), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1896] = { - [sym__expression] = STATE(4297), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__expression] = STATE(4414), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1897] = { - [sym__expression] = STATE(317), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4380), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1898] = { - [sym__expression] = STATE(321), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(470), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1899] = { - [sym__expression] = STATE(319), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4407), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1900] = { - [sym__expression] = STATE(318), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(278), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1901] = { - [sym__expression] = STATE(315), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1481), - [sym_annotation] = STATE(1481), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(270), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1716), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1019), - [sym_label] = ACTIONS(1027), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1718), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_return] = ACTIONS(1722), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_DASH] = ACTIONS(1027), - [anon_sym_PLUS_PLUS] = ACTIONS(1029), - [anon_sym_DASH_DASH] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(276), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1902] = { - [sym__expression] = STATE(4488), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(627), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1903] = { - [sym__expression] = STATE(4288), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1552), - [sym_annotation] = STATE(1552), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(376), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3177), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(43), - [sym_label] = ACTIONS(69), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(71), - [anon_sym_DASH_DASH] = ACTIONS(71), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__expression] = STATE(4416), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1904] = { - [sym__expression] = STATE(4102), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4375), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1905] = { - [sym__expression] = STATE(1225), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4418), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1906] = { - [sym__expression] = STATE(3713), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [sym__expression] = STATE(628), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1907] = { - [sym__expression] = STATE(3712), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__expression] = STATE(4420), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1908] = { - [sym__expression] = STATE(1203), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(2314), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1909] = { - [sym__expression] = STATE(4249), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__expression] = STATE(4398), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1910] = { - [sym_function_body] = STATE(1163), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4387), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4387), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [sym__expression] = STATE(4422), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1911] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [sym__expression] = STATE(4424), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1912] = { - [sym__expression] = STATE(375), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4399), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1913] = { - [sym__expression] = STATE(768), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4400), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1914] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_fun] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3148), - [anon_sym_super] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_null] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_when] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [anon_sym_this_AT] = ACTIONS(3150), - [anon_sym_super_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3148), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3148), - [anon_sym_false] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym__expression] = STATE(629), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1915] = { - [sym__expression] = STATE(374), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4425), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1916] = { - [sym__expression] = STATE(373), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4426), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1917] = { - [sym__expression] = STATE(370), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4340), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1918] = { - [sym_type_constraints] = STATE(2191), - [sym_property_delegate] = STATE(2320), - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(5713), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [sym__expression] = STATE(4379), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5663), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5684), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1919] = { - [sym__expression] = STATE(364), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(469), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1920] = { - [sym__expression] = STATE(365), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(466), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1921] = { - [sym__expression] = STATE(4112), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(465), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1922] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1922), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(5715), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4639), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), + [sym__expression] = STATE(4404), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1923] = { - [sym__expression] = STATE(4111), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(464), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1924] = { - [sym__expression] = STATE(4104), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(477), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1925] = { - [sym__expression] = STATE(1911), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(463), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1926] = { - [sym__expression] = STATE(4430), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(467), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1927] = { - [sym__expression] = STATE(1728), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4411), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1928] = { - [sym_function_body] = STATE(1184), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [sym__expression] = STATE(468), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1929] = { - [sym__expression] = STATE(4099), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(473), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1930] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), + [sym__expression] = STATE(474), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1931] = { - [sym__expression] = STATE(366), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(475), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1932] = { - [sym__expression] = STATE(463), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [aux_sym__delegation_specifiers_repeat1] = STATE(1635), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_as] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_RBRACE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [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_SEMI] = ACTIONS(4515), + [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_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_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(4515), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4515), + [anon_sym_super_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), }, [1933] = { - [sym__expression] = STATE(465), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4412), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1934] = { - [sym__expression] = STATE(738), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(460), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1935] = { - [sym__expression] = STATE(751), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4421), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1936] = { - [sym__expression] = STATE(714), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4334), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1937] = { - [sym__expression] = STATE(715), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4436), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1938] = { - [sym__expression] = STATE(716), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4447), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1939] = { - [sym__expression] = STATE(717), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(476), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1931), + [sym_annotation] = STATE(1931), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(266), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1632), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(921), + [sym_label] = ACTIONS(931), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1636), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(933), + [anon_sym_DASH_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1940] = { - [sym__expression] = STATE(746), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [1941] = { - [sym__expression] = STATE(367), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), - }, - [1942] = { - [sym_type_constraints] = STATE(2194), - [sym_property_delegate] = STATE(2317), - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5718), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [sym__expression] = STATE(4448), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [1941] = { + [sym__expression] = STATE(632), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [1942] = { + [sym__expression] = STATE(4310), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1943] = { - [sym__expression] = STATE(368), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4483), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1944] = { - [sym__expression] = STATE(372), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4487), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1945] = { - [sym__expression] = STATE(745), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [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(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [1946] = { - [sym__expression] = STATE(750), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_object] = ACTIONS(3050), + [anon_sym_fun] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_super] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_when] = ACTIONS(3050), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3052), + [anon_sym_continue_AT] = ACTIONS(3052), + [anon_sym_break_AT] = ACTIONS(3052), + [anon_sym_this_AT] = ACTIONS(3052), + [anon_sym_super_AT] = ACTIONS(3052), + [sym_real_literal] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [sym_hex_literal] = ACTIONS(3052), + [sym_bin_literal] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3052), }, [1947] = { - [sym__expression] = STATE(748), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4502), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1948] = { - [sym__expression] = STATE(747), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_fun] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3100), + [anon_sym_super] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_null] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_when] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3102), + [anon_sym_continue_AT] = ACTIONS(3102), + [anon_sym_break_AT] = ACTIONS(3102), + [anon_sym_this_AT] = ACTIONS(3102), + [anon_sym_super_AT] = ACTIONS(3102), + [sym_real_literal] = ACTIONS(3102), + [sym_integer_literal] = ACTIONS(3100), + [sym_hex_literal] = ACTIONS(3102), + [sym_bin_literal] = ACTIONS(3102), + [anon_sym_true] = ACTIONS(3100), + [anon_sym_false] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3102), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3102), }, [1949] = { - [sym__expression] = STATE(712), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(1593), - [sym_annotation] = STATE(1593), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(262), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1670), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1325), - [sym_label] = ACTIONS(785), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(779), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(781), - [anon_sym_return] = ACTIONS(783), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_PLUS_PLUS] = ACTIONS(787), - [anon_sym_DASH_DASH] = ACTIONS(787), - [anon_sym_BANG] = ACTIONS(787), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4521), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1950] = { - [sym__expression] = STATE(301), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(634), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1951] = { - [sym__expression] = STATE(302), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_object] = ACTIONS(3141), + [anon_sym_fun] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_this] = ACTIONS(3141), + [anon_sym_super] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_null] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_when] = ACTIONS(3141), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3143), + [anon_sym_continue_AT] = ACTIONS(3143), + [anon_sym_break_AT] = ACTIONS(3143), + [anon_sym_this_AT] = ACTIONS(3143), + [anon_sym_super_AT] = ACTIONS(3143), + [sym_real_literal] = ACTIONS(3143), + [sym_integer_literal] = ACTIONS(3141), + [sym_hex_literal] = ACTIONS(3143), + [sym_bin_literal] = ACTIONS(3143), + [anon_sym_true] = ACTIONS(3141), + [anon_sym_false] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3143), + [sym__backtick_identifier] = ACTIONS(3143), + [sym__automatic_semicolon] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3143), }, [1952] = { - [sym__expression] = STATE(303), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4522), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1953] = { - [sym__expression] = STATE(304), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), }, [1954] = { - [sym__expression] = STATE(379), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_fun] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_super] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_when] = ACTIONS(3057), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3059), + [anon_sym_continue_AT] = ACTIONS(3059), + [anon_sym_break_AT] = ACTIONS(3059), + [anon_sym_this_AT] = ACTIONS(3059), + [anon_sym_super_AT] = ACTIONS(3059), + [sym_real_literal] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(3057), + [sym_hex_literal] = ACTIONS(3059), + [sym_bin_literal] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3059), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3059), }, [1955] = { - [sym__expression] = STATE(305), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), }, [1956] = { - [sym__expression] = STATE(306), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_fun] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_super] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5627), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_null] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3139), + [anon_sym_continue_AT] = ACTIONS(3139), + [anon_sym_break_AT] = ACTIONS(3139), + [anon_sym_this_AT] = ACTIONS(3139), + [anon_sym_super_AT] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_hex_literal] = ACTIONS(3139), + [sym_bin_literal] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3139), }, [1957] = { - [sym__expression] = STATE(300), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4519), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1958] = { - [sym__expression] = STATE(915), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4431), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1959] = { - [sym__expression] = STATE(310), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4518), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1960] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), + [sym__expression] = STATE(4511), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1961] = { - [sym__expression] = STATE(311), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4496), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1962] = { - [sym__expression] = STATE(312), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5617), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3076), + [anon_sym_super] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5621), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_when] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5631), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5633), + [anon_sym_EQ_EQ] = ACTIONS(5631), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5633), + [anon_sym_LT_EQ] = ACTIONS(5635), + [anon_sym_GT_EQ] = ACTIONS(5635), + [anon_sym_BANGin] = ACTIONS(5637), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3078), + [anon_sym_continue_AT] = ACTIONS(3078), + [anon_sym_break_AT] = ACTIONS(3078), + [anon_sym_this_AT] = ACTIONS(3078), + [anon_sym_super_AT] = ACTIONS(3078), + [sym_real_literal] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(3076), + [sym_hex_literal] = ACTIONS(3078), + [sym_bin_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3078), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3078), }, [1963] = { - [sym__expression] = STATE(308), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1745), - [sym_annotation] = STATE(1745), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(266), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1684), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(957), - [sym_label] = ACTIONS(967), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1686), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(967), - [anon_sym_DASH] = ACTIONS(967), - [anon_sym_PLUS_PLUS] = ACTIONS(969), - [anon_sym_DASH_DASH] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4495), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1964] = { - [sym__expression] = STATE(909), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4491), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1965] = { - [sym__expression] = STATE(901), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4490), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1966] = { - [sym__expression] = STATE(895), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(635), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1967] = { - [sym__expression] = STATE(863), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(625), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1968] = { - [sym__expression] = STATE(362), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(631), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1969] = { - [sym_type_constraints] = STATE(2196), - [sym_property_delegate] = STATE(2325), - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5720), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(398), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [1970] = { - [sym__expression] = STATE(890), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_fun] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_super] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(5623), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_when] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3132), + [anon_sym_continue_AT] = ACTIONS(3132), + [anon_sym_break_AT] = ACTIONS(3132), + [anon_sym_this_AT] = ACTIONS(3132), + [anon_sym_super_AT] = ACTIONS(3132), + [sym_real_literal] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(3130), + [sym_hex_literal] = ACTIONS(3132), + [sym_bin_literal] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3132), }, [1971] = { - [sym__expression] = STATE(888), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(1263), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1972] = { - [sym__expression] = STATE(917), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(1984), + [sym__comparison_operator] = STATE(1983), + [sym__in_operator] = STATE(1982), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(1981), + [sym__multiplicative_operator] = STATE(1980), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1978), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_object] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3115), + [anon_sym_super] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(5619), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_when] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5639), + [anon_sym_SLASH] = ACTIONS(5641), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3117), + [anon_sym_continue_AT] = ACTIONS(3117), + [anon_sym_break_AT] = ACTIONS(3117), + [anon_sym_this_AT] = ACTIONS(3117), + [anon_sym_super_AT] = ACTIONS(3117), + [sym_real_literal] = ACTIONS(3117), + [sym_integer_literal] = ACTIONS(3115), + [sym_hex_literal] = ACTIONS(3117), + [sym_bin_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(3115), + [anon_sym_false] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3117), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3117), }, [1973] = { - [sym__expression] = STATE(916), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(1580), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1974] = { - [sym__expression] = STATE(4097), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4486), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1975] = { - [sym__expression] = STATE(4096), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4479), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1976] = { - [sym__expression] = STATE(914), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [1977] = { - [sym__expression] = STATE(4100), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1413), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1550), + [sym_annotation] = STATE(1550), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(260), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1598), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1257), + [sym_label] = ACTIONS(515), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(501), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(507), + [anon_sym_return] = ACTIONS(509), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(515), + [anon_sym_DASH] = ACTIONS(515), + [anon_sym_PLUS_PLUS] = ACTIONS(517), + [anon_sym_DASH_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [1978] = { - [sym__expression] = STATE(913), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(1946), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1979] = { - [sym__expression] = STATE(912), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1543), - [sym_annotation] = STATE(1543), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(267), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1692), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(989), - [sym_label] = ACTIONS(999), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1694), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_return] = ACTIONS(1698), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(999), - [anon_sym_DASH] = ACTIONS(999), - [anon_sym_PLUS_PLUS] = ACTIONS(1001), - [anon_sym_DASH_DASH] = ACTIONS(1001), - [anon_sym_BANG] = ACTIONS(1001), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(630), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1980] = { - [sym__expression] = STATE(1405), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(1948), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1981] = { - [sym__expression] = STATE(3280), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1951), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1982] = { - [sym__expression] = STATE(3288), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1953), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1983] = { - [sym__expression] = STATE(3286), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1954), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1984] = { - [sym__expression] = STATE(3343), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1955), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1985] = { - [sym__expression] = STATE(4244), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1520), - [sym_annotation] = STATE(1520), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), + [sym__expression] = STATE(1956), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), [sym__return_at] = STATE(357), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(897), - [sym_label] = ACTIONS(905), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(3074), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(3076), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(905), - [anon_sym_DASH] = ACTIONS(905), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1986] = { - [sym__expression] = STATE(3344), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1962), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1987] = { - [sym__expression] = STATE(3337), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4478), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1988] = { - [sym__expression] = STATE(3352), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1970), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1989] = { - [sym__expression] = STATE(3353), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1972), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1990] = { - [sym__expression] = STATE(4103), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1803), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1991] = { - [sym__expression] = STATE(3354), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [1992] = { - [sym__expression] = STATE(3357), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4476), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1993] = { - [sym__expression] = STATE(3358), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1736), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1994] = { - [sym__expression] = STATE(3359), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1802), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [1995] = { - [sym__expression] = STATE(3360), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(1255), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [1996] = { - [sym__expression] = STATE(4497), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4475), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1997] = { - [sym__expression] = STATE(4489), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4471), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1998] = { - [sym__expression] = STATE(4512), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4462), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [1999] = { - [sym__expression] = STATE(4511), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(626), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2000] = { - [sym__expression] = STATE(4105), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4460), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2001] = { - [sym__expression] = STATE(360), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym__expression] = STATE(4458), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2002] = { - [sym__expression] = STATE(363), - [sym__unary_expression] = STATE(1073), - [sym_postfix_expression] = STATE(1073), - [sym_call_expression] = STATE(1073), - [sym_indexing_expression] = STATE(1073), - [sym_navigation_expression] = STATE(1073), - [sym_prefix_expression] = STATE(1073), - [sym_as_expression] = STATE(1073), - [sym_spread_expression] = STATE(1073), - [sym__binary_expression] = STATE(1073), - [sym_multiplicative_expression] = STATE(1073), - [sym_additive_expression] = STATE(1073), - [sym_range_expression] = STATE(1073), - [sym_infix_expression] = STATE(1073), - [sym_elvis_expression] = STATE(1073), - [sym_check_expression] = STATE(1073), - [sym_comparison_expression] = STATE(1073), - [sym_equality_expression] = STATE(1073), - [sym_conjunction_expression] = STATE(1073), - [sym_disjunction_expression] = STATE(1073), - [sym__primary_expression] = STATE(1073), - [sym_parenthesized_expression] = STATE(1073), - [sym_collection_literal] = STATE(1073), - [sym__literal_constant] = STATE(1073), - [sym_string_literal] = STATE(1073), - [sym_lambda_literal] = STATE(1073), - [sym_anonymous_function] = STATE(1073), - [sym__function_literal] = STATE(1073), - [sym_object_literal] = STATE(1073), - [sym_this_expression] = STATE(1073), - [sym_super_expression] = STATE(1073), - [sym_if_expression] = STATE(1073), - [sym_when_expression] = STATE(1073), - [sym_try_expression] = STATE(1073), - [sym_jump_expression] = STATE(1073), - [sym_callable_reference] = STATE(1073), - [sym__prefix_unary_operator] = STATE(1968), - [sym_annotation] = STATE(1968), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(1079), - [sym__return_at] = STATE(261), - [sym__continue_at] = STATE(1067), - [sym__break_at] = STATE(1067), - [sym__this_at] = STATE(1055), - [sym__super_at] = STATE(1076), - [sym_unsigned_literal] = STATE(1073), - [sym_long_literal] = STATE(1073), - [sym_boolean_literal] = STATE(1073), - [sym_character_literal] = STATE(1073), - [sym__lexical_identifier] = STATE(813), - [sym__alpha_identifier] = ACTIONS(345), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(347), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_object] = ACTIONS(1660), - [anon_sym_fun] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1664), - [anon_sym_set] = ACTIONS(1664), - [anon_sym_this] = ACTIONS(369), - [anon_sym_super] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(1309), - [sym_label] = ACTIONS(399), - [anon_sym_null] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(385), - [anon_sym_when] = ACTIONS(387), - [anon_sym_try] = ACTIONS(389), - [anon_sym_throw] = ACTIONS(391), - [anon_sym_return] = ACTIONS(393), - [anon_sym_continue] = ACTIONS(395), - [anon_sym_break] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(399), - [anon_sym_PLUS_PLUS] = ACTIONS(401), - [anon_sym_DASH_DASH] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(401), - [anon_sym_data] = ACTIONS(1664), - [anon_sym_inner] = ACTIONS(1664), - [anon_sym_value] = ACTIONS(1664), - [anon_sym_expect] = ACTIONS(1664), - [anon_sym_actual] = ACTIONS(1664), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(409), - [anon_sym_break_AT] = ACTIONS(411), - [anon_sym_this_AT] = ACTIONS(413), - [anon_sym_super_AT] = ACTIONS(415), - [sym_real_literal] = ACTIONS(1668), - [sym_integer_literal] = ACTIONS(419), - [sym_hex_literal] = ACTIONS(421), - [sym_bin_literal] = ACTIONS(421), - [anon_sym_true] = ACTIONS(423), - [anon_sym_false] = ACTIONS(423), - [anon_sym_SQUOTE] = ACTIONS(425), - [sym__backtick_identifier] = ACTIONS(427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(429), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3856), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2003] = { - [sym__expression] = STATE(4108), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4456), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2004] = { - [sym__expression] = STATE(4449), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(636), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2005] = { - [sym__expression] = STATE(4426), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2006] = { - [sym__expression] = STATE(4418), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4464), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2007] = { - [sym__expression] = STATE(4270), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2008] = { - [sym__expression] = STATE(4501), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3143), + [anon_sym_DASH_EQ] = ACTIONS(3143), + [anon_sym_STAR_EQ] = ACTIONS(3143), + [anon_sym_SLASH_EQ] = ACTIONS(3143), + [anon_sym_PERCENT_EQ] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3141), + [anon_sym_sealed] = ACTIONS(3141), + [anon_sym_annotation] = ACTIONS(3141), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_lateinit] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_internal] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_tailrec] = ACTIONS(3141), + [anon_sym_operator] = ACTIONS(3141), + [anon_sym_infix] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_external] = ACTIONS(3141), + [sym_property_modifier] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_final] = ACTIONS(3141), + [anon_sym_open] = ACTIONS(3141), + [anon_sym_vararg] = ACTIONS(3141), + [anon_sym_noinline] = ACTIONS(3141), + [anon_sym_crossinline] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2009] = { - [sym__expression] = STATE(4498), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2010] = { - [sym__expression] = STATE(4495), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(1274), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2011] = { - [sym__expression] = STATE(4482), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4453), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2012] = { - [sym__expression] = STATE(4479), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2013] = { - [sym__expression] = STATE(4475), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2014] = { - [sym__expression] = STATE(4474), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3854), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [anon_sym_DASH_EQ] = ACTIONS(3139), + [anon_sym_STAR_EQ] = ACTIONS(3139), + [anon_sym_SLASH_EQ] = ACTIONS(3139), + [anon_sym_PERCENT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_annotation] = ACTIONS(3137), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_lateinit] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_tailrec] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_infix] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym_external] = ACTIONS(3137), + [sym_property_modifier] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_final] = ACTIONS(3137), + [anon_sym_open] = ACTIONS(3137), + [anon_sym_vararg] = ACTIONS(3137), + [anon_sym_noinline] = ACTIONS(3137), + [anon_sym_crossinline] = ACTIONS(3137), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2015] = { - [sym__expression] = STATE(4471), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3848), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3852), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3858), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3860), + [anon_sym_EQ_EQ] = ACTIONS(3858), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3860), + [anon_sym_LT_EQ] = ACTIONS(3862), + [anon_sym_GT_EQ] = ACTIONS(3862), + [anon_sym_BANGin] = ACTIONS(3864), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2016] = { - [sym__expression] = STATE(4468), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4465), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2017] = { - [sym__expression] = STATE(4463), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4467), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2018] = { - [sym__expression] = STATE(4459), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4454), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2019] = { - [sym__expression] = STATE(3307), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4451), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2020] = { - [sym__expression] = STATE(4443), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4450), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2021] = { - [sym__expression] = STATE(3361), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1983), - [sym_annotation] = STATE(1983), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(283), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(633), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1840), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1263), - [sym_label] = ACTIONS(249), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(243), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(245), - [anon_sym_return] = ACTIONS(247), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(249), - [anon_sym_DASH] = ACTIONS(249), - [anon_sym_PLUS_PLUS] = ACTIONS(251), - [anon_sym_DASH_DASH] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2022] = { - [sym__expression] = STATE(4523), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4434), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2023] = { - [sym__expression] = STATE(4510), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(360), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2024] = { - [sym_function_body] = STATE(1128), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4395), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4395), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), + [sym__expression] = STATE(363), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2025] = { - [sym__expression] = STATE(4457), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(3850), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2026] = { - [sym__expression] = STATE(4503), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4445), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2027] = { - [sym__expression] = STATE(4470), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(2037), + [sym__comparison_operator] = STATE(2036), + [sym__in_operator] = STATE(2035), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(2033), + [sym__multiplicative_operator] = STATE(2032), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2031), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3846), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3866), + [anon_sym_DASH] = ACTIONS(3866), + [anon_sym_SLASH] = ACTIONS(3846), + [anon_sym_PERCENT] = ACTIONS(3846), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2028] = { - [sym__expression] = STATE(4397), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2002), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2029] = { - [sym__expression] = STATE(4403), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym_type_constraints] = STATE(2192), + [sym_property_delegate] = STATE(2372), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_RBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(5686), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5688), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(3284), + [anon_sym_DASH_GT] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), }, [2030] = { - [sym__expression] = STATE(4405), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(2440), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2031] = { - [sym__expression] = STATE(4417), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2005), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2032] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1922), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_object] = ACTIONS(4539), - [anon_sym_fun] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_this] = ACTIONS(4539), - [anon_sym_super] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4539), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_null] = ACTIONS(4539), - [anon_sym_if] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_when] = ACTIONS(4539), - [anon_sym_try] = ACTIONS(4539), - [anon_sym_throw] = ACTIONS(4539), - [anon_sym_return] = ACTIONS(4539), - [anon_sym_continue] = ACTIONS(4539), - [anon_sym_break] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4541), - [anon_sym_continue_AT] = ACTIONS(4541), - [anon_sym_break_AT] = ACTIONS(4541), - [anon_sym_this_AT] = ACTIONS(4541), - [anon_sym_super_AT] = ACTIONS(4541), - [sym_real_literal] = ACTIONS(4541), - [sym_integer_literal] = ACTIONS(4539), - [sym_hex_literal] = ACTIONS(4541), - [sym_bin_literal] = ACTIONS(4541), - [anon_sym_true] = ACTIONS(4539), - [anon_sym_false] = ACTIONS(4539), - [anon_sym_SQUOTE] = ACTIONS(4541), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4541), + [sym__expression] = STATE(2007), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2033] = { - [sym__expression] = STATE(4520), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2008), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2034] = { - [sym__expression] = STATE(4422), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4441), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2035] = { - [sym__expression] = STATE(4427), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2009), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2036] = { - [sym__expression] = STATE(4429), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2012), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2037] = { - [sym__expression] = STATE(4464), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2013), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2038] = { - [sym__expression] = STATE(4396), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2014), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2039] = { - [sym__expression] = STATE(4473), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2015), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2040] = { - [sym__expression] = STATE(4476), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2025), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2041] = { - [sym__expression] = STATE(4506), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(2027), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2042] = { - [sym__expression] = STATE(4496), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4443), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2043] = { - [sym__expression] = STATE(4480), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4439), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2044] = { - [sym__expression] = STATE(4490), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4435), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2045] = { - [sym__expression] = STATE(4465), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4432), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2046] = { - [sym__expression] = STATE(4466), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(1800), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2047] = { - [sym__expression] = STATE(4451), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4442), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2048] = { - [sym__expression] = STATE(4492), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4423), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2049] = { - [sym__expression] = STATE(4493), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(1801), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2050] = { - [sym__expression] = STATE(4310), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4419), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2051] = { - [sym__expression] = STATE(4509), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(1796), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(2046), + [sym_annotation] = STATE(2046), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(262), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1618), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1239), + [sym_label] = ACTIONS(653), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(647), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(649), + [anon_sym_return] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(653), + [anon_sym_DASH] = ACTIONS(653), + [anon_sym_PLUS_PLUS] = ACTIONS(655), + [anon_sym_DASH_DASH] = ACTIONS(655), + [anon_sym_BANG] = ACTIONS(655), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2052] = { - [sym__expression] = STATE(4508), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4417), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2053] = { + [sym__expression] = STATE(1288), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [2053] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2054] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3108), - [anon_sym_DASH_EQ] = ACTIONS(3108), - [anon_sym_STAR_EQ] = ACTIONS(3108), - [anon_sym_SLASH_EQ] = ACTIONS(3108), - [anon_sym_PERCENT_EQ] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4415), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2055] = { - [sym__expression] = STATE(1010), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [sym__expression] = STATE(4457), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2056] = { - [sym__expression] = STATE(4484), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(1234), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2057] = { - [sym__expression] = STATE(4315), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4459), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2058] = { - [sym__expression] = STATE(4413), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(1208), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2059] = { - [sym__expression] = STATE(4432), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4444), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2060] = { - [sym__expression] = STATE(4455), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4461), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2061] = { - [sym__expression] = STATE(4518), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4409), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2062] = { - [sym__expression] = STATE(4309), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4396), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2063] = { - [sym__expression] = STATE(4400), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4446), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2064] = { - [sym__expression] = STATE(4404), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4406), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2065] = { - [sym__expression] = STATE(4438), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4402), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2066] = { - [sym__expression] = STATE(4321), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4395), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2067] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1598), - [sym__comparison_operator] = STATE(1599), - [sym__in_operator] = STATE(1600), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1601), - [sym__multiplicative_operator] = STATE(1602), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1603), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3890), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3898), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3900), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(3902), - [anon_sym_QMARK_COLON] = ACTIONS(3904), - [anon_sym_AMP_AMP] = ACTIONS(3906), - [anon_sym_PIPE_PIPE] = ACTIONS(3908), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3912), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3912), - [anon_sym_LT_EQ] = ACTIONS(3914), - [anon_sym_GT_EQ] = ACTIONS(3914), - [anon_sym_BANGin] = ACTIONS(3916), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3918), - [anon_sym_DASH] = ACTIONS(3918), - [anon_sym_SLASH] = ACTIONS(3898), - [anon_sym_PERCENT] = ACTIONS(3898), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(4493), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2068] = { - [sym__expression] = STATE(4469), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(3807), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1684), + [sym_annotation] = STATE(1684), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(297), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [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(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(1227), + [sym_label] = ACTIONS(457), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(451), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(453), + [anon_sym_return] = ACTIONS(455), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(457), + [anon_sym_PLUS_PLUS] = ACTIONS(459), + [anon_sym_DASH_DASH] = ACTIONS(459), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [2069] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(1922), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(5722), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_object] = ACTIONS(4539), - [anon_sym_fun] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_this] = ACTIONS(4539), - [anon_sym_super] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4539), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_null] = ACTIONS(4539), - [anon_sym_if] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_when] = ACTIONS(4539), - [anon_sym_try] = ACTIONS(4539), - [anon_sym_throw] = ACTIONS(4539), - [anon_sym_return] = ACTIONS(4539), - [anon_sym_continue] = ACTIONS(4539), - [anon_sym_break] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4541), - [anon_sym_continue_AT] = ACTIONS(4541), - [anon_sym_break_AT] = ACTIONS(4541), - [anon_sym_this_AT] = ACTIONS(4541), - [anon_sym_super_AT] = ACTIONS(4541), - [sym_real_literal] = ACTIONS(4541), - [sym_integer_literal] = ACTIONS(4539), - [sym_hex_literal] = ACTIONS(4541), - [sym_bin_literal] = ACTIONS(4541), - [anon_sym_true] = ACTIONS(4539), - [anon_sym_false] = ACTIONS(4539), - [anon_sym_SQUOTE] = ACTIONS(4541), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4541), + [sym__expression] = STATE(4469), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2070] = { - [sym__expression] = STATE(4486), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4470), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2071] = { - [sym__expression] = STATE(4487), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4473), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2072] = { - [sym__expression] = STATE(4467), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(404), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2073] = { - [sym__expression] = STATE(4305), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4480), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2074] = { - [sym__expression] = STATE(4502), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4481), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2075] = { - [sym__expression] = STATE(4500), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(941), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2076] = { - [sym__expression] = STATE(4454), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(1235), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1475), + [sym_annotation] = STATE(1475), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(258), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(1233), + [sym_label] = ACTIONS(173), + [anon_sym_null] = ACTIONS(1590), + [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(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2077] = { - [sym__expression] = STATE(4319), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(2458), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2078] = { - [sym__expression] = STATE(1017), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2079] = { - [sym__expression] = STATE(1011), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [sym__expression] = STATE(1746), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2079] = { + [sym__expression] = STATE(2459), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2080] = { - [sym__expression] = STATE(1018), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(2460), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2081] = { - [sym__expression] = STATE(1029), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(2462), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2082] = { - [sym__expression] = STATE(4435), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(2463), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2083] = { - [sym__expression] = STATE(1031), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(2419), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2084] = { - [sym__expression] = STATE(4477), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(942), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2085] = { - [sym__expression] = STATE(4478), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(2464), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2086] = { - [sym__expression] = STATE(1037), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2087] = { - [sym__expression] = STATE(4513), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(947), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2087] = { + [sym__expression] = STATE(2450), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2088] = { - [sym__expression] = STATE(1049), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(2446), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2089] = { - [sym__expression] = STATE(4307), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(2439), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2090] = { - [sym__expression] = STATE(4515), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(2418), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2091] = { - [sym__expression] = STATE(4505), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(948), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2092] = { - [sym__expression] = STATE(4424), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(2453), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2093] = { - [sym__expression] = STATE(4320), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(949), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2094] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(2069), - [sym__alpha_identifier] = ACTIONS(4621), - [anon_sym_AT] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(5722), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4621), - [anon_sym_where] = ACTIONS(4621), - [anon_sym_object] = ACTIONS(4621), - [anon_sym_fun] = ACTIONS(4621), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_get] = ACTIONS(4621), - [anon_sym_set] = ACTIONS(4621), - [anon_sym_this] = ACTIONS(4621), - [anon_sym_super] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4623), - [sym_label] = ACTIONS(4621), - [anon_sym_in] = ACTIONS(4621), - [anon_sym_DOT_DOT] = ACTIONS(4623), - [anon_sym_QMARK_COLON] = ACTIONS(4623), - [anon_sym_AMP_AMP] = ACTIONS(4623), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(4621), - [anon_sym_if] = ACTIONS(4621), - [anon_sym_else] = ACTIONS(4621), - [anon_sym_when] = ACTIONS(4621), - [anon_sym_try] = ACTIONS(4621), - [anon_sym_throw] = ACTIONS(4621), - [anon_sym_return] = ACTIONS(4621), - [anon_sym_continue] = ACTIONS(4621), - [anon_sym_break] = ACTIONS(4621), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_BANG_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), - [anon_sym_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4623), - [anon_sym_is] = ACTIONS(4621), - [anon_sym_BANGis] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4621), - [anon_sym_PERCENT] = ACTIONS(4623), - [anon_sym_as_QMARK] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4621), - [anon_sym_BANG_BANG] = ACTIONS(4623), - [anon_sym_suspend] = ACTIONS(4621), - [anon_sym_sealed] = ACTIONS(4621), - [anon_sym_annotation] = ACTIONS(4621), - [anon_sym_data] = ACTIONS(4621), - [anon_sym_inner] = ACTIONS(4621), - [anon_sym_value] = ACTIONS(4621), - [anon_sym_override] = ACTIONS(4621), - [anon_sym_lateinit] = ACTIONS(4621), - [anon_sym_public] = ACTIONS(4621), - [anon_sym_private] = ACTIONS(4621), - [anon_sym_internal] = ACTIONS(4621), - [anon_sym_protected] = ACTIONS(4621), - [anon_sym_tailrec] = ACTIONS(4621), - [anon_sym_operator] = ACTIONS(4621), - [anon_sym_infix] = ACTIONS(4621), - [anon_sym_inline] = ACTIONS(4621), - [anon_sym_external] = ACTIONS(4621), - [sym_property_modifier] = ACTIONS(4621), - [anon_sym_abstract] = ACTIONS(4621), - [anon_sym_final] = ACTIONS(4621), - [anon_sym_open] = ACTIONS(4621), - [anon_sym_vararg] = ACTIONS(4621), - [anon_sym_noinline] = ACTIONS(4621), - [anon_sym_crossinline] = ACTIONS(4621), - [anon_sym_expect] = ACTIONS(4621), - [anon_sym_actual] = ACTIONS(4621), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4623), - [anon_sym_continue_AT] = ACTIONS(4623), - [anon_sym_break_AT] = ACTIONS(4623), - [anon_sym_this_AT] = ACTIONS(4623), - [anon_sym_super_AT] = ACTIONS(4623), - [sym_real_literal] = ACTIONS(4623), - [sym_integer_literal] = ACTIONS(4621), - [sym_hex_literal] = ACTIONS(4623), - [sym_bin_literal] = ACTIONS(4623), - [anon_sym_true] = ACTIONS(4621), - [anon_sym_false] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4623), - [sym__backtick_identifier] = ACTIONS(4623), - [sym__automatic_semicolon] = ACTIONS(4623), - [sym_safe_nav] = ACTIONS(4623), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4623), + [sym__expression] = STATE(2442), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2095] = { - [sym__expression] = STATE(927), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__expression] = STATE(951), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2096] = { - [sym__expression] = STATE(997), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__expression] = STATE(2452), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2097] = { - [sym__expression] = STATE(998), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [sym__expression] = STATE(4482), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2098] = { - [sym__expression] = STATE(1224), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__expression] = STATE(806), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2099] = { - [sym__expression] = STATE(1002), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__expression] = STATE(1242), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2100] = { - [sym__expression] = STATE(1003), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__expression] = STATE(365), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1727), + [sym_annotation] = STATE(1727), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(261), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1610), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1197), + [sym_label] = ACTIONS(391), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(377), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(383), + [anon_sym_return] = ACTIONS(385), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(391), + [anon_sym_PLUS_PLUS] = ACTIONS(393), + [anon_sym_DASH_DASH] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(393), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2101] = { - [sym__expression] = STATE(4350), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(809), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2102] = { - [sym__expression] = STATE(1004), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [sym__expression] = STATE(4098), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2103] = { - [sym__expression] = STATE(1005), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [sym__expression] = STATE(4386), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2104] = { - [sym__expression] = STATE(1006), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [sym__expression] = STATE(4485), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2105] = { - [sym__expression] = STATE(1411), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4388), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(5690), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2106] = { - [sym__expression] = STATE(4312), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(4488), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2107] = { + [sym__expression] = STATE(807), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [2107] = { - [sym__expression] = STATE(4399), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2108] = { - [sym__expression] = STATE(4516), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(4492), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2109] = { - [sym__expression] = STATE(4517), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(805), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2110] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_fun] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_super] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [anon_sym_this_AT] = ACTIONS(3108), - [anon_sym_super_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3106), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), - }, - [2111] = { - [sym__expression] = STATE(4316), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__expression] = STATE(803), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2111] = { + [sym__expression] = STATE(4389), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1476), + [sym_annotation] = STATE(1476), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(313), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1938), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(839), + [sym_label] = ACTIONS(847), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(847), + [anon_sym_DASH] = ACTIONS(847), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_BANG] = ACTIONS(849), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2112] = { - [sym__expression] = STATE(772), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(1614), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1990), + [sym_annotation] = STATE(1990), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(357), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(865), + [sym_label] = ACTIONS(875), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3022), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3024), + [anon_sym_return] = ACTIONS(3026), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(875), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [2113] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(1661), - [sym__comparison_operator] = STATE(1662), - [sym__in_operator] = STATE(1663), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(1664), - [sym__multiplicative_operator] = STATE(1665), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1666), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5669), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_super] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(5671), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5673), - [anon_sym_DOT_DOT] = ACTIONS(5675), - [anon_sym_QMARK_COLON] = ACTIONS(5677), - [anon_sym_AMP_AMP] = ACTIONS(5679), - [anon_sym_PIPE_PIPE] = ACTIONS(5681), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_when] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5683), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5683), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5685), - [anon_sym_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_BANGin] = ACTIONS(5689), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5691), - [anon_sym_DASH] = ACTIONS(5691), - [anon_sym_SLASH] = ACTIONS(5693), - [anon_sym_PERCENT] = ACTIONS(5671), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3096), - [anon_sym_continue_AT] = ACTIONS(3096), - [anon_sym_break_AT] = ACTIONS(3096), - [anon_sym_this_AT] = ACTIONS(3096), - [anon_sym_super_AT] = ACTIONS(3096), - [sym_real_literal] = ACTIONS(3096), - [sym_integer_literal] = ACTIONS(3094), - [sym_hex_literal] = ACTIONS(3096), - [sym_bin_literal] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3096), + [sym__expression] = STATE(4497), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2114] = { - [sym__expression] = STATE(4423), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(1228), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, [2115] = { - [sym__expression] = STATE(1416), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3997), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2116] = { - [sym__expression] = STATE(1415), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(801), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1561), + [sym_annotation] = STATE(1561), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(265), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1624), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(809), + [sym_label] = ACTIONS(819), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1626), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(819), + [anon_sym_DASH] = ACTIONS(819), + [anon_sym_PLUS_PLUS] = ACTIONS(821), + [anon_sym_DASH_DASH] = ACTIONS(821), + [anon_sym_BANG] = ACTIONS(821), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, [2117] = { - [sym__expression] = STATE(1398), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4008), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2118] = { - [sym__expression] = STATE(1397), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3994), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2119] = { - [sym__expression] = STATE(1396), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3993), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2120] = { - [sym__expression] = STATE(756), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3989), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2121] = { - [sym__expression] = STATE(1395), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3988), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2122] = { - [sym__expression] = STATE(1394), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3987), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2123] = { - [sym__expression] = STATE(1393), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3986), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2124] = { - [sym__expression] = STATE(1392), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3985), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2125] = { - [sym__expression] = STATE(1391), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(4498), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2126] = { - [sym__expression] = STATE(1390), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3984), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2127] = { - [sym__expression] = STATE(1389), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(316), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2128] = { - [sym__expression] = STATE(974), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__expression] = STATE(314), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2129] = { - [sym__expression] = STATE(1388), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__expression] = STATE(3983), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2130] = { - [sym__expression] = STATE(1198), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(3824), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2131] = { - [sym__expression] = STATE(1193), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4501), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2132] = { - [sym__expression] = STATE(4481), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(4021), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2133] = { - [sym__expression] = STATE(1195), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(320), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2134] = { - [sym__expression] = STATE(1217), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4022), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2135] = { - [sym__expression] = STATE(1214), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4505), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2136] = { - [sym__expression] = STATE(4483), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [sym__expression] = STATE(321), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2137] = { - [sym__expression] = STATE(1210), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4020), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(2132), + [sym_annotation] = STATE(2132), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(298), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(1874), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1263), + [sym_label] = ACTIONS(761), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(327), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(329), + [anon_sym_return] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [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(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2138] = { - [sym__expression] = STATE(1209), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(2435), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(2092), + [sym_annotation] = STATE(2092), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(267), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(951), + [sym_label] = ACTIONS(961), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1644), + [anon_sym_return] = ACTIONS(1646), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(961), + [anon_sym_DASH] = ACTIONS(961), + [anon_sym_PLUS_PLUS] = ACTIONS(963), + [anon_sym_DASH_DASH] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2139] = { - [sym__expression] = STATE(970), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__expression] = STATE(319), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2140] = { - [sym__expression] = STATE(1208), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4225), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [2141] = { - [sym__expression] = STATE(1207), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4506), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2142] = { - [sym__expression] = STATE(1205), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4507), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, [2143] = { - [sym__expression] = STATE(1204), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(4231), + [sym__unary_expression] = STATE(5086), + [sym_postfix_expression] = STATE(5086), + [sym_call_expression] = STATE(5086), + [sym_indexing_expression] = STATE(5086), + [sym_navigation_expression] = STATE(5086), + [sym_prefix_expression] = STATE(5086), + [sym_as_expression] = STATE(5086), + [sym_spread_expression] = STATE(5086), + [sym__binary_expression] = STATE(5086), + [sym_multiplicative_expression] = STATE(5086), + [sym_additive_expression] = STATE(5086), + [sym_range_expression] = STATE(5086), + [sym_infix_expression] = STATE(5086), + [sym_elvis_expression] = STATE(5086), + [sym_check_expression] = STATE(5086), + [sym_comparison_expression] = STATE(5086), + [sym_equality_expression] = STATE(5086), + [sym_conjunction_expression] = STATE(5086), + [sym_disjunction_expression] = STATE(5086), + [sym__primary_expression] = STATE(5086), + [sym_parenthesized_expression] = STATE(5086), + [sym_collection_literal] = STATE(5086), + [sym__literal_constant] = STATE(5086), + [sym_string_literal] = STATE(5086), + [sym_lambda_literal] = STATE(5086), + [sym_anonymous_function] = STATE(5086), + [sym__function_literal] = STATE(5086), + [sym_object_literal] = STATE(5086), + [sym_this_expression] = STATE(5086), + [sym_super_expression] = STATE(5086), + [sym_if_expression] = STATE(5086), + [sym_when_expression] = STATE(5086), + [sym_try_expression] = STATE(5086), + [sym_jump_expression] = STATE(5086), + [sym_callable_reference] = STATE(5086), + [sym__prefix_unary_operator] = STATE(1824), + [sym_annotation] = STATE(1824), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(5153), + [sym__return_at] = STATE(356), + [sym__continue_at] = STATE(5078), + [sym__break_at] = STATE(5078), + [sym__this_at] = STATE(5070), + [sym__super_at] = STATE(5112), + [sym_unsigned_literal] = STATE(5086), + [sym_long_literal] = STATE(5086), + [sym_boolean_literal] = STATE(5086), + [sym_character_literal] = STATE(5086), + [sym__lexical_identifier] = STATE(4609), + [sym__alpha_identifier] = ACTIONS(7), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(27), + [anon_sym_object] = ACTIONS(1864), + [anon_sym_fun] = ACTIONS(3012), + [anon_sym_get] = ACTIONS(1868), + [anon_sym_set] = ACTIONS(1868), + [anon_sym_this] = ACTIONS(39), + [anon_sym_super] = ACTIONS(41), + [anon_sym_STAR] = ACTIONS(895), + [sym_label] = ACTIONS(903), + [anon_sym_null] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(3014), + [anon_sym_when] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_throw] = ACTIONS(3016), + [anon_sym_return] = ACTIONS(3018), + [anon_sym_continue] = ACTIONS(65), + [anon_sym_break] = ACTIONS(65), + [anon_sym_COLON_COLON] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(903), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_data] = ACTIONS(1868), + [anon_sym_inner] = ACTIONS(1868), + [anon_sym_value] = ACTIONS(1868), + [anon_sym_expect] = ACTIONS(1868), + [anon_sym_actual] = ACTIONS(1868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(93), + [anon_sym_break_AT] = ACTIONS(95), + [anon_sym_this_AT] = ACTIONS(97), + [anon_sym_super_AT] = ACTIONS(99), + [sym_real_literal] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(103), + [sym_hex_literal] = ACTIONS(105), + [sym_bin_literal] = ACTIONS(105), + [anon_sym_true] = ACTIONS(107), + [anon_sym_false] = ACTIONS(107), + [anon_sym_SQUOTE] = ACTIONS(109), + [sym__backtick_identifier] = ACTIONS(111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(113), }, [2144] = { - [sym_function_body] = STATE(1144), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [sym__expression] = STATE(317), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1747), + [sym_annotation] = STATE(1747), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(270), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1664), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1027), + [sym_label] = ACTIONS(1035), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(1668), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(1035), + [anon_sym_DASH] = ACTIONS(1035), + [anon_sym_PLUS_PLUS] = ACTIONS(1037), + [anon_sym_DASH_DASH] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2145] = { - [sym_type_constraints] = STATE(2233), - [sym_property_delegate] = STATE(2366), - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(5724), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), + [sym__expression] = STATE(752), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2146] = { - [sym__expression] = STATE(1202), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(291), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), }, [2147] = { - [sym__expression] = STATE(790), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), + [sym__expression] = STATE(768), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2148] = { - [sym__expression] = STATE(1200), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), + [sym__expression] = STATE(769), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), }, [2149] = { - [sym__expression] = STATE(4507), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), + [sym__expression] = STATE(784), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2150] = { + [sym__expression] = STATE(290), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2151] = { + [sym__expression] = STATE(785), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2152] = { + [sym__expression] = STATE(786), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1764), + [sym_annotation] = STATE(1764), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(263), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1245), + [sym_label] = ACTIONS(737), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(731), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(733), + [anon_sym_return] = ACTIONS(735), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(737), + [anon_sym_DASH] = ACTIONS(737), + [anon_sym_PLUS_PLUS] = ACTIONS(739), + [anon_sym_DASH_DASH] = ACTIONS(739), + [anon_sym_BANG] = ACTIONS(739), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2153] = { + [sym__expression] = STATE(4509), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2154] = { + [sym__expression] = STATE(289), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2155] = { + [sym__expression] = STATE(288), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2156] = { + [sym__expression] = STATE(287), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2157] = { + [sym__expression] = STATE(2289), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2158] = { + [sym__expression] = STATE(1227), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(1511), + [sym_annotation] = STATE(1511), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(309), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1251), + [sym_label] = ACTIONS(791), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(785), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(787), + [anon_sym_return] = ACTIONS(789), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_BANG] = ACTIONS(793), + [anon_sym_data] = ACTIONS(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2159] = { + [sym__expression] = STATE(285), + [sym__unary_expression] = STATE(1106), + [sym_postfix_expression] = STATE(1106), + [sym_call_expression] = STATE(1106), + [sym_indexing_expression] = STATE(1106), + [sym_navigation_expression] = STATE(1106), + [sym_prefix_expression] = STATE(1106), + [sym_as_expression] = STATE(1106), + [sym_spread_expression] = STATE(1106), + [sym__binary_expression] = STATE(1106), + [sym_multiplicative_expression] = STATE(1106), + [sym_additive_expression] = STATE(1106), + [sym_range_expression] = STATE(1106), + [sym_infix_expression] = STATE(1106), + [sym_elvis_expression] = STATE(1106), + [sym_check_expression] = STATE(1106), + [sym_comparison_expression] = STATE(1106), + [sym_equality_expression] = STATE(1106), + [sym_conjunction_expression] = STATE(1106), + [sym_disjunction_expression] = STATE(1106), + [sym__primary_expression] = STATE(1106), + [sym_parenthesized_expression] = STATE(1106), + [sym_collection_literal] = STATE(1106), + [sym__literal_constant] = STATE(1106), + [sym_string_literal] = STATE(1106), + [sym_lambda_literal] = STATE(1106), + [sym_anonymous_function] = STATE(1106), + [sym__function_literal] = STATE(1106), + [sym_object_literal] = STATE(1106), + [sym_this_expression] = STATE(1106), + [sym_super_expression] = STATE(1106), + [sym_if_expression] = STATE(1106), + [sym_when_expression] = STATE(1106), + [sym_try_expression] = STATE(1106), + [sym_jump_expression] = STATE(1106), + [sym_callable_reference] = STATE(1106), + [sym__prefix_unary_operator] = STATE(1434), + [sym_annotation] = STATE(1434), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(1100), + [sym__return_at] = STATE(264), + [sym__continue_at] = STATE(1110), + [sym__break_at] = STATE(1110), + [sym__this_at] = STATE(1113), + [sym__super_at] = STATE(1104), + [sym_unsigned_literal] = STATE(1106), + [sym_long_literal] = STATE(1106), + [sym_boolean_literal] = STATE(1106), + [sym_character_literal] = STATE(1106), + [sym__lexical_identifier] = STATE(820), + [sym__alpha_identifier] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_object] = ACTIONS(1608), + [anon_sym_fun] = ACTIONS(1622), + [anon_sym_get] = ACTIONS(1612), + [anon_sym_set] = ACTIONS(1612), + [anon_sym_this] = ACTIONS(361), + [anon_sym_super] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(1209), + [sym_label] = ACTIONS(707), + [anon_sym_null] = ACTIONS(1614), + [anon_sym_if] = ACTIONS(701), + [anon_sym_when] = ACTIONS(379), + [anon_sym_try] = ACTIONS(381), + [anon_sym_throw] = ACTIONS(703), + [anon_sym_return] = ACTIONS(705), + [anon_sym_continue] = ACTIONS(387), + [anon_sym_break] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(709), + [anon_sym_DASH_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_data] = ACTIONS(1612), + [anon_sym_inner] = ACTIONS(1612), + [anon_sym_value] = ACTIONS(1612), + [anon_sym_expect] = ACTIONS(1612), + [anon_sym_actual] = ACTIONS(1612), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(401), + [anon_sym_break_AT] = ACTIONS(403), + [anon_sym_this_AT] = ACTIONS(405), + [anon_sym_super_AT] = ACTIONS(407), + [sym_real_literal] = ACTIONS(1616), + [sym_integer_literal] = ACTIONS(411), + [sym_hex_literal] = ACTIONS(413), + [sym_bin_literal] = ACTIONS(413), + [anon_sym_true] = ACTIONS(415), + [anon_sym_false] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(417), + [sym__backtick_identifier] = ACTIONS(419), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(421), + }, + [2160] = { + [sym__expression] = STATE(4510), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2161] = { + [sym__expression] = STATE(4512), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2162] = { + [sym__expression] = STATE(2494), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), + [anon_sym_AT] = ACTIONS(1576), [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), }, - [2150] = { - [sym__expression] = STATE(969), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2163] = { + [sym__expression] = STATE(1271), + [sym__unary_expression] = STATE(3570), + [sym_postfix_expression] = STATE(3570), + [sym_call_expression] = STATE(3570), + [sym_indexing_expression] = STATE(3570), + [sym_navigation_expression] = STATE(3570), + [sym_prefix_expression] = STATE(3570), + [sym_as_expression] = STATE(3570), + [sym_spread_expression] = STATE(3570), + [sym__binary_expression] = STATE(3570), + [sym_multiplicative_expression] = STATE(3570), + [sym_additive_expression] = STATE(3570), + [sym_range_expression] = STATE(3570), + [sym_infix_expression] = STATE(3570), + [sym_elvis_expression] = STATE(3570), + [sym_check_expression] = STATE(3570), + [sym_comparison_expression] = STATE(3570), + [sym_equality_expression] = STATE(3570), + [sym_conjunction_expression] = STATE(3570), + [sym_disjunction_expression] = STATE(3570), + [sym__primary_expression] = STATE(3570), + [sym_parenthesized_expression] = STATE(3570), + [sym_collection_literal] = STATE(3570), + [sym__literal_constant] = STATE(3570), + [sym_string_literal] = STATE(3570), + [sym_lambda_literal] = STATE(3570), + [sym_anonymous_function] = STATE(3570), + [sym__function_literal] = STATE(3570), + [sym_object_literal] = STATE(3570), + [sym_this_expression] = STATE(3570), + [sym_super_expression] = STATE(3570), + [sym_if_expression] = STATE(3570), + [sym_when_expression] = STATE(3570), + [sym_try_expression] = STATE(3570), + [sym_jump_expression] = STATE(3570), + [sym_callable_reference] = STATE(3570), + [sym__prefix_unary_operator] = STATE(1797), + [sym_annotation] = STATE(1797), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3574), + [sym__return_at] = STATE(268), + [sym__continue_at] = STATE(3568), + [sym__break_at] = STATE(3568), + [sym__this_at] = STATE(3566), + [sym__super_at] = STATE(3366), + [sym_unsigned_literal] = STATE(3570), + [sym_long_literal] = STATE(3570), + [sym_boolean_literal] = STATE(3570), + [sym_character_literal] = STATE(3570), + [sym__lexical_identifier] = STATE(2894), + [sym__alpha_identifier] = ACTIONS(115), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(119), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_LPAREN] = ACTIONS(133), + [anon_sym_object] = ACTIONS(1584), + [anon_sym_fun] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1588), + [anon_sym_set] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(143), + [anon_sym_super] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(979), + [sym_label] = ACTIONS(987), + [anon_sym_null] = ACTIONS(1590), + [anon_sym_if] = ACTIONS(1650), + [anon_sym_when] = ACTIONS(161), + [anon_sym_try] = ACTIONS(163), + [anon_sym_throw] = ACTIONS(1652), + [anon_sym_return] = ACTIONS(1654), + [anon_sym_continue] = ACTIONS(169), + [anon_sym_break] = ACTIONS(169), + [anon_sym_COLON_COLON] = ACTIONS(171), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_PLUS_PLUS] = ACTIONS(989), + [anon_sym_DASH_DASH] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_data] = ACTIONS(1588), + [anon_sym_inner] = ACTIONS(1588), + [anon_sym_value] = ACTIONS(1588), + [anon_sym_expect] = ACTIONS(1588), + [anon_sym_actual] = ACTIONS(1588), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(181), + [anon_sym_continue_AT] = ACTIONS(183), + [anon_sym_break_AT] = ACTIONS(185), + [anon_sym_this_AT] = ACTIONS(187), + [anon_sym_super_AT] = ACTIONS(189), + [sym_real_literal] = ACTIONS(1592), + [sym_integer_literal] = ACTIONS(193), + [sym_hex_literal] = ACTIONS(195), + [sym_bin_literal] = ACTIONS(195), + [anon_sym_true] = ACTIONS(197), + [anon_sym_false] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [sym__backtick_identifier] = ACTIONS(201), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(203), + }, + [2164] = { + [sym__expression] = STATE(1141), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2165] = { + [sym__expression] = STATE(1142), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2166] = { + [sym__expression] = STATE(2285), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [2151] = { - [sym__expression] = STATE(794), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [2167] = { + [sym__expression] = STATE(4514), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), }, - [2152] = { - [sym__expression] = STATE(971), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2168] = { + [sym__expression] = STATE(2282), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [2153] = { - [sym__expression] = STATE(797), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), + [2169] = { + [sym__expression] = STATE(2293), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), }, - [2154] = { - [sym_type_constraints] = STATE(2225), - [sym_property_delegate] = STATE(2358), - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5730), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2170] = { + [sym__expression] = STATE(2281), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2171] = { + [sym__expression] = STATE(4401), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2172] = { + [sym__expression] = STATE(2279), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2173] = { + [sym__expression] = STATE(2278), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2174] = { + [sym__expression] = STATE(2277), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2175] = { + [sym__expression] = STATE(4516), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2176] = { + [sym__expression] = STATE(4523), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2177] = { + [sym__expression] = STATE(4508), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2178] = { + [sym__expression] = STATE(1146), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2179] = { + [sym__expression] = STATE(1145), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2180] = { + [sym__expression] = STATE(4468), + [sym__unary_expression] = STATE(4735), + [sym_postfix_expression] = STATE(4735), + [sym_call_expression] = STATE(4735), + [sym_indexing_expression] = STATE(4735), + [sym_navigation_expression] = STATE(4735), + [sym_prefix_expression] = STATE(4735), + [sym_as_expression] = STATE(4735), + [sym_spread_expression] = STATE(4735), + [sym__binary_expression] = STATE(4735), + [sym_multiplicative_expression] = STATE(4735), + [sym_additive_expression] = STATE(4735), + [sym_range_expression] = STATE(4735), + [sym_infix_expression] = STATE(4735), + [sym_elvis_expression] = STATE(4735), + [sym_check_expression] = STATE(4735), + [sym_comparison_expression] = STATE(4735), + [sym_equality_expression] = STATE(4735), + [sym_conjunction_expression] = STATE(4735), + [sym_disjunction_expression] = STATE(4735), + [sym__primary_expression] = STATE(4735), + [sym_parenthesized_expression] = STATE(4735), + [sym_collection_literal] = STATE(4735), + [sym__literal_constant] = STATE(4735), + [sym_string_literal] = STATE(4735), + [sym_lambda_literal] = STATE(4735), + [sym_anonymous_function] = STATE(4735), + [sym__function_literal] = STATE(4735), + [sym_object_literal] = STATE(4735), + [sym_this_expression] = STATE(4735), + [sym_super_expression] = STATE(4735), + [sym_if_expression] = STATE(4735), + [sym_when_expression] = STATE(4735), + [sym_try_expression] = STATE(4735), + [sym_jump_expression] = STATE(4735), + [sym_callable_reference] = STATE(4735), + [sym__prefix_unary_operator] = STATE(1792), + [sym_annotation] = STATE(1792), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(4884), + [sym__return_at] = STATE(358), + [sym__continue_at] = STATE(4732), + [sym__break_at] = STATE(4732), + [sym__this_at] = STATE(4730), + [sym__super_at] = STATE(4737), + [sym_unsigned_literal] = STATE(4735), + [sym_long_literal] = STATE(4735), + [sym_boolean_literal] = STATE(4735), + [sym_character_literal] = STATE(4735), + [sym__lexical_identifier] = STATE(4534), + [sym__alpha_identifier] = ACTIONS(205), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(217), + [anon_sym_object] = ACTIONS(1786), + [anon_sym_fun] = ACTIONS(3028), + [anon_sym_get] = ACTIONS(1790), + [anon_sym_set] = ACTIONS(1790), + [anon_sym_this] = ACTIONS(227), + [anon_sym_super] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(1051), + [sym_label] = ACTIONS(333), + [anon_sym_null] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(3030), + [anon_sym_when] = ACTIONS(245), + [anon_sym_try] = ACTIONS(247), + [anon_sym_throw] = ACTIONS(3032), + [anon_sym_return] = ACTIONS(3034), + [anon_sym_continue] = ACTIONS(253), + [anon_sym_break] = ACTIONS(253), + [anon_sym_COLON_COLON] = ACTIONS(255), + [anon_sym_PLUS] = ACTIONS(333), + [anon_sym_DASH] = ACTIONS(333), + [anon_sym_PLUS_PLUS] = ACTIONS(335), + [anon_sym_DASH_DASH] = ACTIONS(335), + [anon_sym_BANG] = ACTIONS(335), + [anon_sym_data] = ACTIONS(1790), + [anon_sym_inner] = ACTIONS(1790), + [anon_sym_value] = ACTIONS(1790), + [anon_sym_expect] = ACTIONS(1790), + [anon_sym_actual] = ACTIONS(1790), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(265), + [anon_sym_continue_AT] = ACTIONS(267), + [anon_sym_break_AT] = ACTIONS(269), + [anon_sym_this_AT] = ACTIONS(271), + [anon_sym_super_AT] = ACTIONS(273), + [sym_real_literal] = ACTIONS(1794), + [sym_integer_literal] = ACTIONS(277), + [sym_hex_literal] = ACTIONS(279), + [sym_bin_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(281), + [anon_sym_false] = ACTIONS(281), + [anon_sym_SQUOTE] = ACTIONS(283), + [sym__backtick_identifier] = ACTIONS(285), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(287), + }, + [2181] = { + [sym__expression] = STATE(2274), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2182] = { + [sym__expression] = STATE(2273), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2183] = { + [sym__expression] = STATE(2272), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2184] = { + [sym__expression] = STATE(1144), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2185] = { + [sym__expression] = STATE(2271), + [sym__unary_expression] = STATE(3182), + [sym_postfix_expression] = STATE(3182), + [sym_call_expression] = STATE(3182), + [sym_indexing_expression] = STATE(3182), + [sym_navigation_expression] = STATE(3182), + [sym_prefix_expression] = STATE(3182), + [sym_as_expression] = STATE(3182), + [sym_spread_expression] = STATE(3182), + [sym__binary_expression] = STATE(3182), + [sym_multiplicative_expression] = STATE(3182), + [sym_additive_expression] = STATE(3182), + [sym_range_expression] = STATE(3182), + [sym_infix_expression] = STATE(3182), + [sym_elvis_expression] = STATE(3182), + [sym_check_expression] = STATE(3182), + [sym_comparison_expression] = STATE(3182), + [sym_equality_expression] = STATE(3182), + [sym_conjunction_expression] = STATE(3182), + [sym_disjunction_expression] = STATE(3182), + [sym__primary_expression] = STATE(3182), + [sym_parenthesized_expression] = STATE(3182), + [sym_collection_literal] = STATE(3182), + [sym__literal_constant] = STATE(3182), + [sym_string_literal] = STATE(3182), + [sym_lambda_literal] = STATE(3182), + [sym_anonymous_function] = STATE(3182), + [sym__function_literal] = STATE(3182), + [sym_object_literal] = STATE(3182), + [sym_this_expression] = STATE(3182), + [sym_super_expression] = STATE(3182), + [sym_if_expression] = STATE(3182), + [sym_when_expression] = STATE(3182), + [sym_try_expression] = STATE(3182), + [sym_jump_expression] = STATE(3182), + [sym_callable_reference] = STATE(3182), + [sym__prefix_unary_operator] = STATE(2169), + [sym_annotation] = STATE(2169), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3179), + [sym__return_at] = STATE(369), + [sym__continue_at] = STATE(3187), + [sym__break_at] = STATE(3187), + [sym__this_at] = STATE(3191), + [sym__super_at] = STATE(3181), + [sym_unsigned_literal] = STATE(3182), + [sym_long_literal] = STATE(3182), + [sym_boolean_literal] = STATE(3182), + [sym_character_literal] = STATE(3182), + [sym__lexical_identifier] = STATE(2802), + [sym__alpha_identifier] = ACTIONS(545), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(547), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_object] = ACTIONS(1854), + [anon_sym_fun] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(1858), + [anon_sym_set] = ACTIONS(1858), + [anon_sym_this] = ACTIONS(567), + [anon_sym_super] = ACTIONS(569), + [anon_sym_STAR] = ACTIONS(1085), + [sym_label] = ACTIONS(1093), + [anon_sym_null] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(3090), + [anon_sym_when] = ACTIONS(585), + [anon_sym_try] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_COLON_COLON] = ACTIONS(595), + [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(1858), + [anon_sym_inner] = ACTIONS(1858), + [anon_sym_value] = ACTIONS(1858), + [anon_sym_expect] = ACTIONS(1858), + [anon_sym_actual] = ACTIONS(1858), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(91), + [anon_sym_continue_AT] = ACTIONS(605), + [anon_sym_break_AT] = ACTIONS(607), + [anon_sym_this_AT] = ACTIONS(609), + [anon_sym_super_AT] = ACTIONS(611), + [sym_real_literal] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(615), + [sym_hex_literal] = ACTIONS(617), + [sym_bin_literal] = ACTIONS(617), + [anon_sym_true] = ACTIONS(619), + [anon_sym_false] = ACTIONS(619), + [anon_sym_SQUOTE] = ACTIONS(621), + [sym__backtick_identifier] = ACTIONS(623), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + }, + [2186] = { + [sym__expression] = STATE(1206), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2187] = { + [sym__expression] = STATE(1143), + [sym__unary_expression] = STATE(3948), + [sym_postfix_expression] = STATE(3948), + [sym_call_expression] = STATE(3948), + [sym_indexing_expression] = STATE(3948), + [sym_navigation_expression] = STATE(3948), + [sym_prefix_expression] = STATE(3948), + [sym_as_expression] = STATE(3948), + [sym_spread_expression] = STATE(3948), + [sym__binary_expression] = STATE(3948), + [sym_multiplicative_expression] = STATE(3948), + [sym_additive_expression] = STATE(3948), + [sym_range_expression] = STATE(3948), + [sym_infix_expression] = STATE(3948), + [sym_elvis_expression] = STATE(3948), + [sym_check_expression] = STATE(3948), + [sym_comparison_expression] = STATE(3948), + [sym_equality_expression] = STATE(3948), + [sym_conjunction_expression] = STATE(3948), + [sym_disjunction_expression] = STATE(3948), + [sym__primary_expression] = STATE(3948), + [sym_parenthesized_expression] = STATE(3948), + [sym_collection_literal] = STATE(3948), + [sym__literal_constant] = STATE(3948), + [sym_string_literal] = STATE(3948), + [sym_lambda_literal] = STATE(3948), + [sym_anonymous_function] = STATE(3948), + [sym__function_literal] = STATE(3948), + [sym_object_literal] = STATE(3948), + [sym_this_expression] = STATE(3948), + [sym_super_expression] = STATE(3948), + [sym_if_expression] = STATE(3948), + [sym_when_expression] = STATE(3948), + [sym_try_expression] = STATE(3948), + [sym_jump_expression] = STATE(3948), + [sym_callable_reference] = STATE(3948), + [sym__prefix_unary_operator] = STATE(1528), + [sym_annotation] = STATE(1528), + [sym__single_annotation] = STATE(5553), + [sym__multi_annotation] = STATE(5553), + [sym_simple_identifier] = STATE(3863), + [sym__return_at] = STATE(269), + [sym__continue_at] = STATE(3868), + [sym__break_at] = STATE(3868), + [sym__this_at] = STATE(3875), + [sym__super_at] = STATE(3957), + [sym_unsigned_literal] = STATE(3948), + [sym_long_literal] = STATE(3948), + [sym_boolean_literal] = STATE(3948), + [sym_character_literal] = STATE(3948), + [sym__lexical_identifier] = STATE(3334), + [sym__alpha_identifier] = ACTIONS(463), + [anon_sym_AT] = ACTIONS(1576), + [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_LPAREN] = ACTIONS(475), + [anon_sym_object] = ACTIONS(1596), + [anon_sym_fun] = ACTIONS(1656), + [anon_sym_get] = ACTIONS(1600), + [anon_sym_set] = ACTIONS(1600), + [anon_sym_this] = ACTIONS(485), + [anon_sym_super] = ACTIONS(487), + [anon_sym_STAR] = ACTIONS(1003), + [sym_label] = ACTIONS(1011), + [anon_sym_null] = ACTIONS(1602), + [anon_sym_if] = ACTIONS(1658), + [anon_sym_when] = ACTIONS(503), + [anon_sym_try] = ACTIONS(505), + [anon_sym_throw] = ACTIONS(1660), + [anon_sym_return] = ACTIONS(1662), + [anon_sym_continue] = ACTIONS(511), + [anon_sym_break] = ACTIONS(511), + [anon_sym_COLON_COLON] = ACTIONS(513), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_PLUS_PLUS] = ACTIONS(1013), + [anon_sym_DASH_DASH] = ACTIONS(1013), + [anon_sym_BANG] = ACTIONS(1013), + [anon_sym_data] = ACTIONS(1600), + [anon_sym_inner] = ACTIONS(1600), + [anon_sym_value] = ACTIONS(1600), + [anon_sym_expect] = ACTIONS(1600), + [anon_sym_actual] = ACTIONS(1600), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(399), + [anon_sym_continue_AT] = ACTIONS(523), + [anon_sym_break_AT] = ACTIONS(525), + [anon_sym_this_AT] = ACTIONS(527), + [anon_sym_super_AT] = ACTIONS(529), + [sym_real_literal] = ACTIONS(1604), + [sym_integer_literal] = ACTIONS(533), + [sym_hex_literal] = ACTIONS(535), + [sym_bin_literal] = ACTIONS(535), + [anon_sym_true] = ACTIONS(537), + [anon_sym_false] = ACTIONS(537), + [anon_sym_SQUOTE] = ACTIONS(539), + [sym__backtick_identifier] = ACTIONS(541), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(543), + }, + [2188] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5097), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [2189] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2190] = { + [sym_primary_constructor] = STATE(3399), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2259), + [sym_type_constraints] = STATE(3324), + [sym_enum_class_body] = STATE(3467), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5692), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5448), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [2191] = { + [sym_property_delegate] = STATE(2318), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5658), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -279405,891 +283407,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2155] = { - [sym__expression] = STATE(2314), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [2156] = { - [sym__expression] = STATE(1197), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(1687), - [sym_annotation] = STATE(1687), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(307), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1978), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1331), - [sym_label] = ACTIONS(817), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(811), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(813), - [anon_sym_return] = ACTIONS(815), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_PLUS_PLUS] = ACTIONS(819), - [anon_sym_DASH_DASH] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(819), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [2157] = { - [sym__expression] = STATE(1421), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(2116), - [sym_annotation] = STATE(2116), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(260), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1650), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1269), - [sym_label] = ACTIONS(485), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(471), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(477), - [anon_sym_return] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(485), - [anon_sym_DASH] = ACTIONS(485), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_BANG] = ACTIONS(487), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2158] = { - [sym__expression] = STATE(793), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1774), - [sym_annotation] = STATE(1774), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(263), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1672), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1299), - [sym_label] = ACTIONS(695), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(689), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(691), - [anon_sym_return] = ACTIONS(693), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_PLUS_PLUS] = ACTIONS(697), - [anon_sym_DASH_DASH] = ACTIONS(697), - [anon_sym_BANG] = ACTIONS(697), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2159] = { - [sym__expression] = STATE(4138), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [2160] = { - [sym__expression] = STATE(1199), - [sym__unary_expression] = STATE(3528), - [sym_postfix_expression] = STATE(3528), - [sym_call_expression] = STATE(3528), - [sym_indexing_expression] = STATE(3528), - [sym_navigation_expression] = STATE(3528), - [sym_prefix_expression] = STATE(3528), - [sym_as_expression] = STATE(3528), - [sym_spread_expression] = STATE(3528), - [sym__binary_expression] = STATE(3528), - [sym_multiplicative_expression] = STATE(3528), - [sym_additive_expression] = STATE(3528), - [sym_range_expression] = STATE(3528), - [sym_infix_expression] = STATE(3528), - [sym_elvis_expression] = STATE(3528), - [sym_check_expression] = STATE(3528), - [sym_comparison_expression] = STATE(3528), - [sym_equality_expression] = STATE(3528), - [sym_conjunction_expression] = STATE(3528), - [sym_disjunction_expression] = STATE(3528), - [sym__primary_expression] = STATE(3528), - [sym_parenthesized_expression] = STATE(3528), - [sym_collection_literal] = STATE(3528), - [sym__literal_constant] = STATE(3528), - [sym_string_literal] = STATE(3528), - [sym_lambda_literal] = STATE(3528), - [sym_anonymous_function] = STATE(3528), - [sym__function_literal] = STATE(3528), - [sym_object_literal] = STATE(3528), - [sym_this_expression] = STATE(3528), - [sym_super_expression] = STATE(3528), - [sym_if_expression] = STATE(3528), - [sym_when_expression] = STATE(3528), - [sym_try_expression] = STATE(3528), - [sym_jump_expression] = STATE(3528), - [sym_callable_reference] = STATE(3528), - [sym__prefix_unary_operator] = STATE(2133), - [sym_annotation] = STATE(2133), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3520), - [sym__return_at] = STATE(223), - [sym__continue_at] = STATE(3531), - [sym__break_at] = STATE(3531), - [sym__this_at] = STATE(3534), - [sym__super_at] = STATE(3523), - [sym_unsigned_literal] = STATE(3528), - [sym_long_literal] = STATE(3528), - [sym_boolean_literal] = STATE(3528), - [sym_character_literal] = STATE(3528), - [sym__lexical_identifier] = STATE(2881), - [sym__alpha_identifier] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(267), - [anon_sym_object] = ACTIONS(1433), - [anon_sym_fun] = ACTIONS(1435), - [anon_sym_get] = ACTIONS(1437), - [anon_sym_set] = ACTIONS(1437), - [anon_sym_this] = ACTIONS(279), - [anon_sym_super] = ACTIONS(281), - [anon_sym_STAR] = ACTIONS(1275), - [sym_label] = ACTIONS(309), - [anon_sym_null] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(295), - [anon_sym_when] = ACTIONS(297), - [anon_sym_try] = ACTIONS(299), - [anon_sym_throw] = ACTIONS(301), - [anon_sym_return] = ACTIONS(303), - [anon_sym_continue] = ACTIONS(305), - [anon_sym_break] = ACTIONS(305), - [anon_sym_COLON_COLON] = ACTIONS(307), - [anon_sym_PLUS] = ACTIONS(309), - [anon_sym_DASH] = ACTIONS(309), - [anon_sym_PLUS_PLUS] = ACTIONS(311), - [anon_sym_DASH_DASH] = ACTIONS(311), - [anon_sym_BANG] = ACTIONS(311), - [anon_sym_data] = ACTIONS(1437), - [anon_sym_inner] = ACTIONS(1437), - [anon_sym_value] = ACTIONS(1437), - [anon_sym_expect] = ACTIONS(1437), - [anon_sym_actual] = ACTIONS(1437), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(317), - [anon_sym_continue_AT] = ACTIONS(319), - [anon_sym_break_AT] = ACTIONS(321), - [anon_sym_this_AT] = ACTIONS(323), - [anon_sym_super_AT] = ACTIONS(325), - [sym_real_literal] = ACTIONS(1441), - [sym_integer_literal] = ACTIONS(329), - [sym_hex_literal] = ACTIONS(331), - [sym_bin_literal] = ACTIONS(331), - [anon_sym_true] = ACTIONS(333), - [anon_sym_false] = ACTIONS(333), - [anon_sym_SQUOTE] = ACTIONS(335), - [sym__backtick_identifier] = ACTIONS(337), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(339), - }, - [2161] = { - [sym__expression] = STATE(937), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2139), - [sym_annotation] = STATE(2139), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(297), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(1918), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1245), - [sym_label] = ACTIONS(611), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(597), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(603), - [anon_sym_return] = ACTIONS(605), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_DASH] = ACTIONS(611), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_BANG] = ACTIONS(613), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [2162] = { - [sym__expression] = STATE(2278), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [2163] = { - [sym_type_constraints] = STATE(2221), - [sym_property_delegate] = STATE(2353), - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5732), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2192] = { + [sym_property_delegate] = STATE(2359), + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5660), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -280314,487 +283507,882 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2164] = { - [sym__expression] = STATE(2275), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2193] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, - [2165] = { - [sym__expression] = STATE(2274), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2194] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3063), + [anon_sym_DASH_EQ] = ACTIONS(3063), + [anon_sym_STAR_EQ] = ACTIONS(3063), + [anon_sym_SLASH_EQ] = ACTIONS(3063), + [anon_sym_PERCENT_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3063), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, - [2166] = { - [sym__expression] = STATE(2272), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2195] = { + [sym_primary_constructor] = STATE(3405), + [sym_class_body] = STATE(3555), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2250), + [sym_type_constraints] = STATE(3299), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5694), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), }, - [2167] = { - [sym__expression] = STATE(2250), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), + [2196] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [anon_sym_DASH_EQ] = ACTIONS(3139), + [anon_sym_STAR_EQ] = ACTIONS(3139), + [anon_sym_SLASH_EQ] = ACTIONS(3139), + [anon_sym_PERCENT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_annotation] = ACTIONS(3137), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_lateinit] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_tailrec] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_infix] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym_external] = ACTIONS(3137), + [sym_property_modifier] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_final] = ACTIONS(3137), + [anon_sym_open] = ACTIONS(3137), + [anon_sym_vararg] = ACTIONS(3137), + [anon_sym_noinline] = ACTIONS(3137), + [anon_sym_crossinline] = ACTIONS(3137), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), }, - [2168] = { - [sym_type_constraints] = STATE(2214), - [sym_property_delegate] = STATE(2342), - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(5736), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2197] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2198] = { + [sym_primary_constructor] = STATE(3407), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2288), + [sym_type_constraints] = STATE(3278), + [sym_enum_class_body] = STATE(3555), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5696), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2199] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2200] = { + [sym_primary_constructor] = STATE(3412), + [sym_class_body] = STATE(3444), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2295), + [sym_type_constraints] = STATE(3311), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + }, + [2201] = { + [sym_property_delegate] = STATE(2352), + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(5700), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -280819,184 +284407,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2169] = { - [sym__expression] = STATE(2271), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [2170] = { - [sym_type_constraints] = STATE(2209), - [sym_property_delegate] = STATE(2334), - [sym_getter] = STATE(4803), - [sym_setter] = STATE(4803), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_RBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(5738), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(5740), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(3348), - [anon_sym_DASH_GT] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2202] = { + [sym_property_delegate] = STATE(2342), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(5666), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -281021,1776 +284507,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2171] = { - [sym__expression] = STATE(1194), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2172] = { - [sym__expression] = STATE(2581), - [sym__unary_expression] = STATE(3938), - [sym_postfix_expression] = STATE(3938), - [sym_call_expression] = STATE(3938), - [sym_indexing_expression] = STATE(3938), - [sym_navigation_expression] = STATE(3938), - [sym_prefix_expression] = STATE(3938), - [sym_as_expression] = STATE(3938), - [sym_spread_expression] = STATE(3938), - [sym__binary_expression] = STATE(3938), - [sym_multiplicative_expression] = STATE(3938), - [sym_additive_expression] = STATE(3938), - [sym_range_expression] = STATE(3938), - [sym_infix_expression] = STATE(3938), - [sym_elvis_expression] = STATE(3938), - [sym_check_expression] = STATE(3938), - [sym_comparison_expression] = STATE(3938), - [sym_equality_expression] = STATE(3938), - [sym_conjunction_expression] = STATE(3938), - [sym_disjunction_expression] = STATE(3938), - [sym__primary_expression] = STATE(3938), - [sym_parenthesized_expression] = STATE(3938), - [sym_collection_literal] = STATE(3938), - [sym__literal_constant] = STATE(3938), - [sym_string_literal] = STATE(3938), - [sym_lambda_literal] = STATE(3938), - [sym_anonymous_function] = STATE(3938), - [sym__function_literal] = STATE(3938), - [sym_object_literal] = STATE(3938), - [sym_this_expression] = STATE(3938), - [sym_super_expression] = STATE(3938), - [sym_if_expression] = STATE(3938), - [sym_when_expression] = STATE(3938), - [sym_try_expression] = STATE(3938), - [sym_jump_expression] = STATE(3938), - [sym_callable_reference] = STATE(3938), - [sym__prefix_unary_operator] = STATE(1528), - [sym_annotation] = STATE(1528), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3934), - [sym__return_at] = STATE(269), - [sym__continue_at] = STATE(3958), - [sym__break_at] = STATE(3958), - [sym__this_at] = STATE(3960), - [sym__super_at] = STATE(3936), - [sym_unsigned_literal] = STATE(3938), - [sym_long_literal] = STATE(3938), - [sym_boolean_literal] = STATE(3938), - [sym_character_literal] = STATE(3938), - [sym__lexical_identifier] = STATE(3325), - [sym__alpha_identifier] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(433), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_object] = ACTIONS(1648), - [anon_sym_fun] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1652), - [anon_sym_set] = ACTIONS(1652), - [anon_sym_this] = ACTIONS(455), - [anon_sym_super] = ACTIONS(457), - [anon_sym_STAR] = ACTIONS(1071), - [sym_label] = ACTIONS(1079), - [anon_sym_null] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_when] = ACTIONS(473), - [anon_sym_try] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_return] = ACTIONS(1714), - [anon_sym_continue] = ACTIONS(481), - [anon_sym_break] = ACTIONS(481), - [anon_sym_COLON_COLON] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(1079), - [anon_sym_DASH] = ACTIONS(1079), - [anon_sym_PLUS_PLUS] = ACTIONS(1081), - [anon_sym_DASH_DASH] = ACTIONS(1081), - [anon_sym_BANG] = ACTIONS(1081), - [anon_sym_data] = ACTIONS(1652), - [anon_sym_inner] = ACTIONS(1652), - [anon_sym_value] = ACTIONS(1652), - [anon_sym_expect] = ACTIONS(1652), - [anon_sym_actual] = ACTIONS(1652), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(407), - [anon_sym_continue_AT] = ACTIONS(493), - [anon_sym_break_AT] = ACTIONS(495), - [anon_sym_this_AT] = ACTIONS(497), - [anon_sym_super_AT] = ACTIONS(499), - [sym_real_literal] = ACTIONS(1656), - [sym_integer_literal] = ACTIONS(503), - [sym_hex_literal] = ACTIONS(505), - [sym_bin_literal] = ACTIONS(505), - [anon_sym_true] = ACTIONS(507), - [anon_sym_false] = ACTIONS(507), - [anon_sym_SQUOTE] = ACTIONS(509), - [sym__backtick_identifier] = ACTIONS(511), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(513), - }, - [2173] = { - [sym__expression] = STATE(3760), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1750), - [sym_annotation] = STATE(1750), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(296), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1906), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1289), - [sym_label] = ACTIONS(551), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(545), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(547), - [anon_sym_return] = ACTIONS(549), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(553), - [anon_sym_DASH_DASH] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2174] = { - [sym_function_body] = STATE(1152), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [2175] = { - [sym__expression] = STATE(2270), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [2176] = { - [sym_function_body] = STATE(1157), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), - }, - [2177] = { - [sym_function_body] = STATE(1126), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [2203] = { + [sym_primary_constructor] = STATE(4844), + [sym_class_body] = STATE(4838), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2309), + [sym_type_constraints] = STATE(4652), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5702), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__backtick_identifier] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), - }, - [2178] = { - [sym__expression] = STATE(4329), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [2179] = { - [sym__expression] = STATE(2267), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), }, - [2180] = { - [sym__expression] = STATE(4072), - [sym__unary_expression] = STATE(5154), - [sym_postfix_expression] = STATE(5154), - [sym_call_expression] = STATE(5154), - [sym_indexing_expression] = STATE(5154), - [sym_navigation_expression] = STATE(5154), - [sym_prefix_expression] = STATE(5154), - [sym_as_expression] = STATE(5154), - [sym_spread_expression] = STATE(5154), - [sym__binary_expression] = STATE(5154), - [sym_multiplicative_expression] = STATE(5154), - [sym_additive_expression] = STATE(5154), - [sym_range_expression] = STATE(5154), - [sym_infix_expression] = STATE(5154), - [sym_elvis_expression] = STATE(5154), - [sym_check_expression] = STATE(5154), - [sym_comparison_expression] = STATE(5154), - [sym_equality_expression] = STATE(5154), - [sym_conjunction_expression] = STATE(5154), - [sym_disjunction_expression] = STATE(5154), - [sym__primary_expression] = STATE(5154), - [sym_parenthesized_expression] = STATE(5154), - [sym_collection_literal] = STATE(5154), - [sym__literal_constant] = STATE(5154), - [sym_string_literal] = STATE(5154), - [sym_lambda_literal] = STATE(5154), - [sym_anonymous_function] = STATE(5154), - [sym__function_literal] = STATE(5154), - [sym_object_literal] = STATE(5154), - [sym_this_expression] = STATE(5154), - [sym_super_expression] = STATE(5154), - [sym_if_expression] = STATE(5154), - [sym_when_expression] = STATE(5154), - [sym_try_expression] = STATE(5154), - [sym_jump_expression] = STATE(5154), - [sym_callable_reference] = STATE(5154), - [sym__prefix_unary_operator] = STATE(1835), - [sym_annotation] = STATE(1835), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5252), - [sym__return_at] = STATE(309), - [sym__continue_at] = STATE(5130), - [sym__break_at] = STATE(5130), - [sym__this_at] = STATE(5127), - [sym__super_at] = STATE(5232), - [sym_unsigned_literal] = STATE(5154), - [sym_long_literal] = STATE(5154), - [sym_boolean_literal] = STATE(5154), - [sym_character_literal] = STATE(5154), - [sym__lexical_identifier] = STATE(4584), - [sym__alpha_identifier] = ACTIONS(7), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_object] = ACTIONS(1904), - [anon_sym_fun] = ACTIONS(1982), - [anon_sym_get] = ACTIONS(1908), - [anon_sym_set] = ACTIONS(1908), - [anon_sym_this] = ACTIONS(39), - [anon_sym_super] = ACTIONS(41), - [anon_sym_STAR] = ACTIONS(1353), - [sym_label] = ACTIONS(753), - [anon_sym_null] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(55), - [anon_sym_when] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_throw] = ACTIONS(61), - [anon_sym_return] = ACTIONS(63), - [anon_sym_continue] = ACTIONS(65), - [anon_sym_break] = ACTIONS(65), - [anon_sym_COLON_COLON] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(753), - [anon_sym_DASH] = ACTIONS(753), - [anon_sym_PLUS_PLUS] = ACTIONS(755), - [anon_sym_DASH_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_data] = ACTIONS(1908), - [anon_sym_inner] = ACTIONS(1908), - [anon_sym_value] = ACTIONS(1908), - [anon_sym_expect] = ACTIONS(1908), - [anon_sym_actual] = ACTIONS(1908), + [2204] = { + [sym_property_delegate] = STATE(2323), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(5656), + [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_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [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_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(93), - [anon_sym_break_AT] = ACTIONS(95), - [anon_sym_this_AT] = ACTIONS(97), - [anon_sym_super_AT] = ACTIONS(99), - [sym_real_literal] = ACTIONS(1912), - [sym_integer_literal] = ACTIONS(103), - [sym_hex_literal] = ACTIONS(105), - [sym_bin_literal] = ACTIONS(105), - [anon_sym_true] = ACTIONS(107), - [anon_sym_false] = ACTIONS(107), - [anon_sym_SQUOTE] = ACTIONS(109), - [sym__backtick_identifier] = ACTIONS(111), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(113), - }, - [2181] = { - [sym__expression] = STATE(2266), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [2182] = { - [sym__expression] = STATE(4504), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1803), - [sym_annotation] = STATE(1803), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(358), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(3080), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(1097), - [sym_label] = ACTIONS(177), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(3082), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(3084), - [anon_sym_return] = ACTIONS(3086), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(177), - [anon_sym_DASH] = ACTIONS(177), - [anon_sym_PLUS_PLUS] = ACTIONS(179), - [anon_sym_DASH_DASH] = ACTIONS(179), - [anon_sym_BANG] = ACTIONS(179), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [2183] = { - [sym__expression] = STATE(2282), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), - }, - [2184] = { - [sym__expression] = STATE(2264), - [sym__unary_expression] = STATE(3176), - [sym_postfix_expression] = STATE(3176), - [sym_call_expression] = STATE(3176), - [sym_indexing_expression] = STATE(3176), - [sym_navigation_expression] = STATE(3176), - [sym_prefix_expression] = STATE(3176), - [sym_as_expression] = STATE(3176), - [sym_spread_expression] = STATE(3176), - [sym__binary_expression] = STATE(3176), - [sym_multiplicative_expression] = STATE(3176), - [sym_additive_expression] = STATE(3176), - [sym_range_expression] = STATE(3176), - [sym_infix_expression] = STATE(3176), - [sym_elvis_expression] = STATE(3176), - [sym_check_expression] = STATE(3176), - [sym_comparison_expression] = STATE(3176), - [sym_equality_expression] = STATE(3176), - [sym_conjunction_expression] = STATE(3176), - [sym_disjunction_expression] = STATE(3176), - [sym__primary_expression] = STATE(3176), - [sym_parenthesized_expression] = STATE(3176), - [sym_collection_literal] = STATE(3176), - [sym__literal_constant] = STATE(3176), - [sym_string_literal] = STATE(3176), - [sym_lambda_literal] = STATE(3176), - [sym_anonymous_function] = STATE(3176), - [sym__function_literal] = STATE(3176), - [sym_object_literal] = STATE(3176), - [sym_this_expression] = STATE(3176), - [sym_super_expression] = STATE(3176), - [sym_if_expression] = STATE(3176), - [sym_when_expression] = STATE(3176), - [sym_try_expression] = STATE(3176), - [sym_jump_expression] = STATE(3176), - [sym_callable_reference] = STATE(3176), - [sym__prefix_unary_operator] = STATE(2167), - [sym_annotation] = STATE(2167), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(3253), - [sym__return_at] = STATE(361), - [sym__continue_at] = STATE(3166), - [sym__break_at] = STATE(3166), - [sym__this_at] = STATE(3150), - [sym__super_at] = STATE(3201), - [sym_unsigned_literal] = STATE(3176), - [sym_long_literal] = STATE(3176), - [sym_boolean_literal] = STATE(3176), - [sym_character_literal] = STATE(3176), - [sym__lexical_identifier] = STATE(2770), - [sym__alpha_identifier] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_object] = ACTIONS(1916), - [anon_sym_fun] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(1920), - [anon_sym_set] = ACTIONS(1920), - [anon_sym_this] = ACTIONS(581), - [anon_sym_super] = ACTIONS(583), - [anon_sym_STAR] = ACTIONS(1045), - [sym_label] = ACTIONS(1053), - [anon_sym_null] = ACTIONS(1922), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_when] = ACTIONS(599), - [anon_sym_try] = ACTIONS(601), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3104), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_COLON_COLON] = ACTIONS(609), - [anon_sym_PLUS] = ACTIONS(1053), - [anon_sym_DASH] = ACTIONS(1053), - [anon_sym_PLUS_PLUS] = ACTIONS(1055), - [anon_sym_DASH_DASH] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(1055), - [anon_sym_data] = ACTIONS(1920), - [anon_sym_inner] = ACTIONS(1920), - [anon_sym_value] = ACTIONS(1920), - [anon_sym_expect] = ACTIONS(1920), - [anon_sym_actual] = ACTIONS(1920), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(91), - [anon_sym_continue_AT] = ACTIONS(619), - [anon_sym_break_AT] = ACTIONS(621), - [anon_sym_this_AT] = ACTIONS(623), - [anon_sym_super_AT] = ACTIONS(625), - [sym_real_literal] = ACTIONS(1924), - [sym_integer_literal] = ACTIONS(629), - [sym_hex_literal] = ACTIONS(631), - [sym_bin_literal] = ACTIONS(631), - [anon_sym_true] = ACTIONS(633), - [anon_sym_false] = ACTIONS(633), - [anon_sym_SQUOTE] = ACTIONS(635), - [sym__backtick_identifier] = ACTIONS(637), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(639), }, - [2185] = { - [sym_function_body] = STATE(1103), - [sym__block] = STATE(1092), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(5291), - [anon_sym_LBRACE] = ACTIONS(4141), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_object] = ACTIONS(4260), - [anon_sym_fun] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_this] = ACTIONS(4260), - [anon_sym_super] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [anon_sym_try] = ACTIONS(4260), - [anon_sym_throw] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), + [2205] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4262), - [anon_sym_continue_AT] = ACTIONS(4262), - [anon_sym_break_AT] = ACTIONS(4262), - [anon_sym_this_AT] = ACTIONS(4262), - [anon_sym_super_AT] = ACTIONS(4262), - [sym_real_literal] = ACTIONS(4262), - [sym_integer_literal] = ACTIONS(4260), - [sym_hex_literal] = ACTIONS(4262), - [sym_bin_literal] = ACTIONS(4262), - [anon_sym_true] = ACTIONS(4260), - [anon_sym_false] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4262), - [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4262), }, - [2186] = { - [sym__expression] = STATE(4330), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(5650), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(5742), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [2187] = { - [sym__expression] = STATE(4326), - [sym__unary_expression] = STATE(4693), - [sym_postfix_expression] = STATE(4693), - [sym_call_expression] = STATE(4693), - [sym_indexing_expression] = STATE(4693), - [sym_navigation_expression] = STATE(4693), - [sym_prefix_expression] = STATE(4693), - [sym_as_expression] = STATE(4693), - [sym_spread_expression] = STATE(4693), - [sym__binary_expression] = STATE(4693), - [sym_multiplicative_expression] = STATE(4693), - [sym_additive_expression] = STATE(4693), - [sym_range_expression] = STATE(4693), - [sym_infix_expression] = STATE(4693), - [sym_elvis_expression] = STATE(4693), - [sym_check_expression] = STATE(4693), - [sym_comparison_expression] = STATE(4693), - [sym_equality_expression] = STATE(4693), - [sym_conjunction_expression] = STATE(4693), - [sym_disjunction_expression] = STATE(4693), - [sym__primary_expression] = STATE(4693), - [sym_parenthesized_expression] = STATE(4693), - [sym_collection_literal] = STATE(4693), - [sym__literal_constant] = STATE(4693), - [sym_string_literal] = STATE(4693), - [sym_lambda_literal] = STATE(4693), - [sym_anonymous_function] = STATE(4693), - [sym__function_literal] = STATE(4693), - [sym_object_literal] = STATE(4693), - [sym_this_expression] = STATE(4693), - [sym_super_expression] = STATE(4693), - [sym_if_expression] = STATE(4693), - [sym_when_expression] = STATE(4693), - [sym_try_expression] = STATE(4693), - [sym_jump_expression] = STATE(4693), - [sym_callable_reference] = STATE(4693), - [sym__prefix_unary_operator] = STATE(1904), - [sym_annotation] = STATE(1904), - [sym__single_annotation] = STATE(5552), - [sym__multi_annotation] = STATE(5552), - [sym_simple_identifier] = STATE(4715), - [sym__return_at] = STATE(313), - [sym__continue_at] = STATE(4781), - [sym__break_at] = STATE(4781), - [sym__this_at] = STATE(4774), - [sym__super_at] = STATE(4814), - [sym_unsigned_literal] = STATE(4693), - [sym_long_literal] = STATE(4693), - [sym_boolean_literal] = STATE(4693), - [sym_character_literal] = STATE(4693), - [sym__lexical_identifier] = STATE(4537), - [sym__alpha_identifier] = ACTIONS(115), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(119), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(133), - [anon_sym_object] = ACTIONS(1838), - [anon_sym_fun] = ACTIONS(1990), - [anon_sym_get] = ACTIONS(1842), - [anon_sym_set] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(147), - [anon_sym_super] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(837), - [sym_label] = ACTIONS(845), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_when] = ACTIONS(165), - [anon_sym_try] = ACTIONS(167), - [anon_sym_throw] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_break] = ACTIONS(173), - [anon_sym_COLON_COLON] = ACTIONS(175), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(847), - [anon_sym_DASH_DASH] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(847), - [anon_sym_data] = ACTIONS(1842), - [anon_sym_inner] = ACTIONS(1842), - [anon_sym_value] = ACTIONS(1842), - [anon_sym_expect] = ACTIONS(1842), - [anon_sym_actual] = ACTIONS(1842), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(185), - [anon_sym_continue_AT] = ACTIONS(187), - [anon_sym_break_AT] = ACTIONS(189), - [anon_sym_this_AT] = ACTIONS(191), - [anon_sym_super_AT] = ACTIONS(193), - [sym_real_literal] = ACTIONS(1846), - [sym_integer_literal] = ACTIONS(197), - [sym_hex_literal] = ACTIONS(199), - [sym_bin_literal] = ACTIONS(199), - [anon_sym_true] = ACTIONS(201), - [anon_sym_false] = ACTIONS(201), - [anon_sym_SQUOTE] = ACTIONS(203), - [sym__backtick_identifier] = ACTIONS(205), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(207), - }, - [2188] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), + [2206] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_LBRACE] = ACTIONS(1594), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3618), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), [anon_sym_SEMI] = ACTIONS(3143), [anon_sym_get] = ACTIONS(3141), [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), [anon_sym_in] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3642), [anon_sym_PLUS_EQ] = ACTIONS(3143), [anon_sym_DASH_EQ] = ACTIONS(3143), [anon_sym_STAR_EQ] = ACTIONS(3143), @@ -282807,12 +284876,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(3141), [anon_sym_sealed] = ACTIONS(3141), [anon_sym_annotation] = ACTIONS(3141), @@ -282842,778 +284911,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3696), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2189] = { - [sym_primary_constructor] = STATE(4909), - [sym_class_body] = STATE(5395), - [sym__class_parameters] = STATE(5162), - [sym_type_parameters] = STATE(2357), - [sym_type_constraints] = STATE(5291), - [sym_modifiers] = STATE(9606), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5744), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_constructor] = ACTIONS(5746), - [anon_sym_LBRACE] = ACTIONS(5748), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5752), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_fun] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_this] = ACTIONS(3244), - [anon_sym_super] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3244), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_null] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_when] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3248), - [anon_sym_continue_AT] = ACTIONS(3248), - [anon_sym_break_AT] = ACTIONS(3248), - [anon_sym_this_AT] = ACTIONS(3248), - [anon_sym_super_AT] = ACTIONS(3248), - [sym_real_literal] = ACTIONS(3248), - [sym_integer_literal] = ACTIONS(3244), - [sym_hex_literal] = ACTIONS(3248), - [sym_bin_literal] = ACTIONS(3248), - [anon_sym_true] = ACTIONS(3244), - [anon_sym_false] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3248), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3248), - }, - [2190] = { - [sym_primary_constructor] = STATE(4946), - [sym_class_body] = STATE(5347), - [sym__class_parameters] = STATE(5162), - [sym_type_parameters] = STATE(2355), - [sym_type_constraints] = STATE(5268), - [sym_modifiers] = STATE(9606), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5756), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_constructor] = ACTIONS(5746), - [anon_sym_LBRACE] = ACTIONS(5748), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5752), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), - }, - [2191] = { - [sym_property_delegate] = STATE(2329), - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(5758), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [2207] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2192] = { - [sym_primary_constructor] = STATE(4847), - [sym_class_body] = STATE(5085), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2309), - [sym_type_constraints] = STATE(5024), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5760), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2208] = { + [sym_primary_constructor] = STATE(4846), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2312), + [sym_type_constraints] = STATE(4663), + [sym_enum_class_body] = STATE(4806), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, - [2193] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(5772), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_object] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_this] = ACTIONS(4844), - [anon_sym_super] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [sym_label] = ACTIONS(4844), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4844), - [anon_sym_if] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_throw] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_continue] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4844), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4846), - [anon_sym_continue_AT] = ACTIONS(4846), - [anon_sym_break_AT] = ACTIONS(4846), - [anon_sym_this_AT] = ACTIONS(4846), - [anon_sym_super_AT] = ACTIONS(4846), - [sym_real_literal] = ACTIONS(4846), - [sym_integer_literal] = ACTIONS(4844), - [sym_hex_literal] = ACTIONS(4846), - [sym_bin_literal] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4846), - }, - [2194] = { - [sym_property_delegate] = STATE(2320), - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(5713), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [2209] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2195] = { - [sym_primary_constructor] = STATE(4702), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2310), - [sym_type_constraints] = STATE(4668), - [sym_enum_class_body] = STATE(4749), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5774), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2210] = { + [sym_primary_constructor] = STATE(4847), + [sym_class_body] = STATE(4806), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2307), + [sym_type_constraints] = STATE(4671), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5706), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, - [2196] = { - [sym_property_delegate] = STATE(2317), - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5718), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2211] = { + [sym_property_delegate] = STATE(2368), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(5648), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -283638,582 +285407,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2197] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5776), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_this] = ACTIONS(4228), - [anon_sym_super] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4226), - [sym_label] = ACTIONS(4228), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_throw] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4226), - [anon_sym_continue_AT] = ACTIONS(4226), - [anon_sym_break_AT] = ACTIONS(4226), - [anon_sym_this_AT] = ACTIONS(4226), - [anon_sym_super_AT] = ACTIONS(4226), - [sym_real_literal] = ACTIONS(4226), - [sym_integer_literal] = ACTIONS(4228), - [sym_hex_literal] = ACTIONS(4226), - [sym_bin_literal] = ACTIONS(4226), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4226), - }, - [2198] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5778), - [anon_sym_COMMA] = ACTIONS(4240), - [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_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4240), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [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(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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(4240), - [anon_sym_continue_AT] = ACTIONS(4240), - [anon_sym_break_AT] = ACTIONS(4240), - [anon_sym_this_AT] = ACTIONS(4240), - [anon_sym_super_AT] = ACTIONS(4240), - [sym_real_literal] = ACTIONS(4240), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4240), - [sym_bin_literal] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4240), - [sym__backtick_identifier] = ACTIONS(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4240), - }, - [2199] = { - [sym_primary_constructor] = STATE(4869), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2306), - [sym_type_constraints] = STATE(5002), - [sym_enum_class_body] = STATE(5100), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5780), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - }, - [2200] = { - [sym_primary_constructor] = STATE(4843), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2311), - [sym_type_constraints] = STATE(5031), - [sym_enum_class_body] = STATE(5085), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5784), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2201] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5786), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [2202] = { - [sym_property_delegate] = STATE(2325), - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5720), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2212] = { + [sym_property_delegate] = STATE(2339), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(5672), + [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_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [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), @@ -284238,682 +285507,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2203] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2204] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5790), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [2205] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5085), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4228), - [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(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [2206] = { - [sym_primary_constructor] = STATE(4742), - [sym_class_body] = STATE(4751), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2307), - [sym_type_constraints] = STATE(4681), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5794), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2207] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5109), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), }, - [2208] = { - [sym_primary_constructor] = STATE(4767), - [sym_class_body] = STATE(5245), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2301), - [sym_type_constraints] = STATE(5050), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5796), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2213] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2209] = { - [sym_property_delegate] = STATE(2342), - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(5734), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5736), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2214] = { + [sym_property_delegate] = STATE(2331), + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(5708), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -284938,282 +285707,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2210] = { - [sym_primary_constructor] = STATE(4922), - [sym__class_parameters] = STATE(5162), - [sym_type_parameters] = STATE(2372), - [sym_type_constraints] = STATE(5304), - [sym_enum_class_body] = STATE(5318), - [sym_modifiers] = STATE(9606), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5798), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_constructor] = ACTIONS(5746), - [anon_sym_LBRACE] = ACTIONS(5800), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5752), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_fun] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_this] = ACTIONS(3234), - [anon_sym_super] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3234), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_null] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3238), - [anon_sym_continue_AT] = ACTIONS(3238), - [anon_sym_break_AT] = ACTIONS(3238), - [anon_sym_this_AT] = ACTIONS(3238), - [anon_sym_super_AT] = ACTIONS(3238), - [sym_real_literal] = ACTIONS(3238), - [sym_integer_literal] = ACTIONS(3234), - [sym_hex_literal] = ACTIONS(3238), - [sym_bin_literal] = ACTIONS(3238), - [anon_sym_true] = ACTIONS(3234), - [anon_sym_false] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3238), - }, - [2211] = { - [sym_primary_constructor] = STATE(3426), - [sym_class_body] = STATE(3589), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2286), - [sym_type_constraints] = STATE(3316), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5802), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), + [2215] = { + [sym_primary_constructor] = STATE(4926), + [sym_class_body] = STATE(5397), + [sym__class_parameters] = STATE(5119), + [sym_type_parameters] = STATE(2355), + [sym_type_constraints] = STATE(5279), + [sym_modifiers] = STATE(9825), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5710), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_constructor] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5714), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5716), + [anon_sym_LT] = ACTIONS(5718), + [anon_sym_where] = ACTIONS(5720), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_fun] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_this] = ACTIONS(3182), + [anon_sym_super] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3182), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_null] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_when] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3186), + [anon_sym_continue_AT] = ACTIONS(3186), + [anon_sym_break_AT] = ACTIONS(3186), + [anon_sym_this_AT] = ACTIONS(3186), + [anon_sym_super_AT] = ACTIONS(3186), + [sym_real_literal] = ACTIONS(3186), + [sym_integer_literal] = ACTIONS(3182), + [sym_hex_literal] = ACTIONS(3186), + [sym_bin_literal] = ACTIONS(3186), + [anon_sym_true] = ACTIONS(3182), + [anon_sym_false] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3186), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3186), }, - [2212] = { + [2216] = { [sym_property_delegate] = STATE(2315), - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(5695), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5699), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5674), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -285238,182 +285907,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2213] = { - [sym_primary_constructor] = STATE(4960), - [sym__class_parameters] = STATE(5162), - [sym_type_parameters] = STATE(2341), - [sym_type_constraints] = STATE(5261), - [sym_enum_class_body] = STATE(5347), - [sym_modifiers] = STATE(9606), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5804), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_constructor] = ACTIONS(5746), - [anon_sym_LBRACE] = ACTIONS(5800), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5750), - [anon_sym_LT] = ACTIONS(5752), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_fun] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_this] = ACTIONS(3200), - [anon_sym_super] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3200), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_null] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_when] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3206), - [anon_sym_continue_AT] = ACTIONS(3206), - [anon_sym_break_AT] = ACTIONS(3206), - [anon_sym_this_AT] = ACTIONS(3206), - [anon_sym_super_AT] = ACTIONS(3206), - [sym_real_literal] = ACTIONS(3206), - [sym_integer_literal] = ACTIONS(3200), - [sym_hex_literal] = ACTIONS(3206), - [sym_bin_literal] = ACTIONS(3206), - [anon_sym_true] = ACTIONS(3200), - [anon_sym_false] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3206), + [2217] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(5722), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(5724), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, - [2214] = { - [sym_property_delegate] = STATE(2353), - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5732), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2218] = { + [sym_property_delegate] = STATE(2336), + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5676), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5650), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5678), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -285438,4080 +286107,3977 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2215] = { - [sym_primary_constructor] = STATE(4696), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2252), - [sym_type_constraints] = STATE(4645), - [sym_enum_class_body] = STATE(4751), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5806), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2219] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(5724), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), + }, + [2220] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2216] = { - [sym_primary_constructor] = STATE(3385), - [sym_class_body] = STATE(4022), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2248), - [sym_type_constraints] = STATE(3755), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5808), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2221] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2217] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(5818), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(5820), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [2222] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), }, - [2218] = { - [sym_primary_constructor] = STATE(4738), - [sym_class_body] = STATE(4812), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2284), - [sym_type_constraints] = STATE(4626), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5822), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2223] = { + [sym_primary_constructor] = STATE(4921), + [sym__class_parameters] = STATE(5119), + [sym_type_parameters] = STATE(2367), + [sym_type_constraints] = STATE(5283), + [sym_enum_class_body] = STATE(5369), + [sym_modifiers] = STATE(9825), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_constructor] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5728), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5716), + [anon_sym_LT] = ACTIONS(5718), + [anon_sym_where] = ACTIONS(5720), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), }, - [2219] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(3696), + [2224] = { + [sym_primary_constructor] = STATE(4850), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2286), + [sym_type_constraints] = STATE(4686), + [sym_enum_class_body] = STATE(4712), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5730), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5416), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, - [2220] = { - [sym_primary_constructor] = STATE(3537), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2249), - [sym_type_constraints] = STATE(3741), - [sym_enum_class_body] = STATE(4001), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2225] = { + [sym_primary_constructor] = STATE(3488), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2284), + [sym_type_constraints] = STATE(3710), + [sym_enum_class_body] = STATE(4007), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5742), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2221] = { - [sym_property_delegate] = STATE(2358), - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5730), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2222] = { - [sym_primary_constructor] = STATE(3375), - [sym_class_body] = STATE(4001), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2251), - [sym_type_constraints] = STATE(3716), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5828), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2223] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(5820), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), - }, - [2224] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2225] = { - [sym_property_delegate] = STATE(2366), - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(5724), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, [2226] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(5830), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), + [sym_primary_constructor] = STATE(3480), + [sym_class_body] = STATE(3914), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2270), + [sym_type_constraints] = STATE(3806), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), }, [2227] = { - [sym_primary_constructor] = STATE(3417), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2268), - [sym_type_constraints] = STATE(3302), - [sym_enum_class_body] = STATE(3559), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5832), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym_primary_constructor] = STATE(3478), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2267), + [sym_type_constraints] = STATE(3745), + [sym_enum_class_body] = STATE(3914), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5748), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, [2228] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(3470), + [sym_class_body] = STATE(4017), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2313), + [sym_type_constraints] = STATE(3780), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), [sym_multiline_comment] = ACTIONS(3), }, [2229] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(4715), + [sym_class_body] = STATE(5107), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2265), + [sym_type_constraints] = STATE(4962), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5752), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), [sym_multiline_comment] = ACTIONS(3), }, [2230] = { - [sym_primary_constructor] = STATE(3378), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2273), - [sym_type_constraints] = STATE(3790), - [sym_enum_class_body] = STATE(3909), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5834), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(1148), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(5762), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_fun] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_this] = ACTIONS(4325), + [anon_sym_super] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_when] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4327), + [anon_sym_continue_AT] = ACTIONS(4327), + [anon_sym_break_AT] = ACTIONS(4327), + [anon_sym_this_AT] = ACTIONS(4327), + [anon_sym_super_AT] = ACTIONS(4327), + [sym_real_literal] = ACTIONS(4327), + [sym_integer_literal] = ACTIONS(4325), + [sym_hex_literal] = ACTIONS(4327), + [sym_bin_literal] = ACTIONS(4327), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4327), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4327), }, [2231] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2232] = { - [sym_primary_constructor] = STATE(3415), - [sym_class_body] = STATE(3559), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2262), - [sym_type_constraints] = STATE(3351), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5836), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2233] = { - [sym_property_delegate] = STATE(2383), - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(5838), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(5697), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2234] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), + [sym_primary_constructor] = STATE(4719), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2269), + [sym_type_constraints] = STATE(5029), + [sym_enum_class_body] = STATE(5099), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5764), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3150), - [anon_sym_DASH_EQ] = ACTIONS(3150), - [anon_sym_STAR_EQ] = ACTIONS(3150), - [anon_sym_SLASH_EQ] = ACTIONS(3150), - [anon_sym_PERCENT_EQ] = ACTIONS(3150), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3696), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, - [2235] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1646), + [2232] = { + [sym_primary_constructor] = STATE(4723), + [sym_class_body] = STATE(5099), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2287), + [sym_type_constraints] = STATE(4972), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5768), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5760), [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(3958), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), [anon_sym_QMARK_COLON] = ACTIONS(3154), [anon_sym_AMP_AMP] = ACTIONS(3154), [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), [anon_sym_PLUS_EQ] = ACTIONS(3154), [anon_sym_DASH_EQ] = ACTIONS(3154), [anon_sym_STAR_EQ] = ACTIONS(3154), [anon_sym_SLASH_EQ] = ACTIONS(3154), [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), + [anon_sym_BANG_EQ] = ACTIONS(3148), [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), + [anon_sym_EQ_EQ] = ACTIONS(3148), [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), [anon_sym_LT_EQ] = ACTIONS(3154), [anon_sym_GT_EQ] = ACTIONS(3154), [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2233] = { + [sym_primary_constructor] = STATE(4915), + [sym_class_body] = STATE(5369), + [sym__class_parameters] = STATE(5119), + [sym_type_parameters] = STATE(2347), + [sym_type_constraints] = STATE(5286), + [sym_modifiers] = STATE(9825), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5770), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_constructor] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5714), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5716), + [anon_sym_LT] = ACTIONS(5718), + [anon_sym_where] = ACTIONS(5720), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_fun] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_this] = ACTIONS(3148), + [anon_sym_super] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3148), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_null] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_when] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3154), + [anon_sym_continue_AT] = ACTIONS(3154), + [anon_sym_break_AT] = ACTIONS(3154), + [anon_sym_this_AT] = ACTIONS(3154), + [anon_sym_super_AT] = ACTIONS(3154), + [sym_real_literal] = ACTIONS(3154), + [sym_integer_literal] = ACTIONS(3148), + [sym_hex_literal] = ACTIONS(3154), + [sym_bin_literal] = ACTIONS(3154), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym__backtick_identifier] = ACTIONS(3154), [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(3696), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3154), + }, + [2234] = { + [sym_primary_constructor] = STATE(4727), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2248), + [sym_type_constraints] = STATE(5044), + [sym_enum_class_body] = STATE(5100), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5760), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), + }, + [2235] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2236] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3108), - [anon_sym_DASH_EQ] = ACTIONS(3108), - [anon_sym_STAR_EQ] = ACTIONS(3108), - [anon_sym_SLASH_EQ] = ACTIONS(3108), - [anon_sym_PERCENT_EQ] = ACTIONS(3108), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3696), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2237] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym_primary_constructor] = STATE(4901), + [sym__class_parameters] = STATE(5119), + [sym_type_parameters] = STATE(2329), + [sym_type_constraints] = STATE(5304), + [sym_enum_class_body] = STATE(5331), + [sym_modifiers] = STATE(9825), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_constructor] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5728), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5716), + [anon_sym_LT] = ACTIONS(5718), + [anon_sym_where] = ACTIONS(5720), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3200), + [anon_sym_continue_AT] = ACTIONS(3200), + [anon_sym_break_AT] = ACTIONS(3200), + [anon_sym_this_AT] = ACTIONS(3200), + [anon_sym_super_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3200), }, [2238] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(1107), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(3190), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_object] = ACTIONS(4353), + [anon_sym_fun] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_this] = ACTIONS(4353), + [anon_sym_super] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4353), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_null] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_try] = ACTIONS(4353), + [anon_sym_throw] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4355), + [anon_sym_continue_AT] = ACTIONS(4355), + [anon_sym_break_AT] = ACTIONS(4355), + [anon_sym_this_AT] = ACTIONS(4355), + [anon_sym_super_AT] = ACTIONS(4355), + [sym_real_literal] = ACTIONS(4355), + [sym_integer_literal] = ACTIONS(4353), + [sym_hex_literal] = ACTIONS(4355), + [sym_bin_literal] = ACTIONS(4355), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4355), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4355), }, [2239] = { - [sym_primary_constructor] = STATE(3407), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2257), - [sym_type_constraints] = STATE(3281), - [sym_enum_class_body] = STATE(3516), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5840), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2240] = { - [sym_class_body] = STATE(1052), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(5842), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_object] = ACTIONS(4405), - [anon_sym_fun] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_this] = ACTIONS(4405), - [anon_sym_super] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4407), - [sym_label] = ACTIONS(4405), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_when] = ACTIONS(4405), - [anon_sym_try] = ACTIONS(4405), - [anon_sym_throw] = ACTIONS(4405), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_continue] = ACTIONS(4405), - [anon_sym_break] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4407), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4405), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4407), - [anon_sym_continue_AT] = ACTIONS(4407), - [anon_sym_break_AT] = ACTIONS(4407), - [anon_sym_this_AT] = ACTIONS(4407), - [anon_sym_super_AT] = ACTIONS(4407), - [sym_real_literal] = ACTIONS(4407), - [sym_integer_literal] = ACTIONS(4405), - [sym_hex_literal] = ACTIONS(4407), - [sym_bin_literal] = ACTIONS(4407), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4407), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4407), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5105), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, [2241] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [2242] = { - [sym_class_body] = STATE(1016), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4379), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(5782), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), }, [2243] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(5784), + [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_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(4842), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4840), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_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(4842), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), }, [2244] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(3696), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1745), + [sym__comparison_operator] = STATE(1744), + [sym__in_operator] = STATE(1743), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1742), + [sym__multiplicative_operator] = STATE(1741), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1740), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3902), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3904), + [anon_sym_DOT_DOT] = ACTIONS(3906), + [anon_sym_QMARK_COLON] = ACTIONS(3908), + [anon_sym_AMP_AMP] = ACTIONS(3910), + [anon_sym_PIPE_PIPE] = ACTIONS(3912), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3914), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3916), + [anon_sym_EQ_EQ] = ACTIONS(3914), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3916), + [anon_sym_LT_EQ] = ACTIONS(3918), + [anon_sym_GT_EQ] = ACTIONS(3918), + [anon_sym_BANGin] = ACTIONS(3920), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_SLASH] = ACTIONS(3902), + [anon_sym_PERCENT] = ACTIONS(3902), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2245] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5786), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4188), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4188), + [anon_sym_continue_AT] = ACTIONS(4188), + [anon_sym_break_AT] = ACTIONS(4188), + [anon_sym_this_AT] = ACTIONS(4188), + [anon_sym_super_AT] = ACTIONS(4188), + [sym_real_literal] = ACTIONS(4188), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4188), + [sym_bin_literal] = ACTIONS(4188), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4188), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4188), }, [2246] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3946), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3956), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3962), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3139), - [anon_sym_DASH_EQ] = ACTIONS(3139), - [anon_sym_STAR_EQ] = ACTIONS(3139), - [anon_sym_SLASH_EQ] = ACTIONS(3139), - [anon_sym_PERCENT_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3966), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3966), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3968), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_BANGin] = ACTIONS(3972), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5788), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4220), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), }, [2247] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1765), - [sym__comparison_operator] = STATE(1764), - [sym__in_operator] = STATE(1763), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1762), - [sym__multiplicative_operator] = STATE(1760), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1759), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(3954), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(3958), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3974), - [anon_sym_DASH] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3954), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [2248] = { + [sym_primary_constructor] = STATE(4729), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5012), + [sym_enum_class_body] = STATE(5191), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), [anon_sym_tailrec] = ACTIONS(3166), [anon_sym_operator] = ACTIONS(3166), [anon_sym_infix] = ACTIONS(3166), [anon_sym_inline] = ACTIONS(3166), [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2248] = { - [sym_primary_constructor] = STATE(3386), - [sym_class_body] = STATE(4033), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3742), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5846), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, [2249] = { - [sym_primary_constructor] = STATE(3376), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3734), - [sym_enum_class_body] = STATE(3964), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3113), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [2250] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_fun] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3106), - [anon_sym_super] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_null] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_when] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3108), - [anon_sym_continue_AT] = ACTIONS(3108), - [anon_sym_break_AT] = ACTIONS(3108), - [anon_sym_this_AT] = ACTIONS(3108), - [anon_sym_super_AT] = ACTIONS(3108), - [sym_real_literal] = ACTIONS(3108), - [sym_integer_literal] = ACTIONS(3106), - [sym_hex_literal] = ACTIONS(3108), - [sym_bin_literal] = ACTIONS(3108), - [anon_sym_true] = ACTIONS(3106), - [anon_sym_false] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(4523), + [sym_primary_constructor] = STATE(3402), + [sym_class_body] = STATE(3501), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3339), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5796), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3108), }, [2251] = { - [sym_primary_constructor] = STATE(3377), - [sym_class_body] = STATE(3964), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3783), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5876), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [2252] = { - [sym_primary_constructor] = STATE(4700), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4643), - [sym_enum_class_body] = STATE(4775), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5878), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_primary_constructor] = STATE(3628), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2320), + [sym_type_constraints] = STATE(3710), + [sym_enum_class_body] = STATE(4007), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5798), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5742), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3200), + [sym__automatic_semicolon] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), [sym_multiline_comment] = ACTIONS(3), }, [2253] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3108), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_type_constraints] = STATE(2417), + [sym_property_delegate] = STATE(2559), + [sym_getter] = STATE(5315), + [sym_setter] = STATE(5315), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_EQ] = ACTIONS(5800), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_where] = ACTIONS(5802), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5804), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [2254] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5880), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3059), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), }, [2255] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_RPAREN] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3143), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3141), + [anon_sym_sealed] = ACTIONS(3141), + [anon_sym_annotation] = ACTIONS(3141), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_lateinit] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_internal] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_tailrec] = ACTIONS(3141), + [anon_sym_operator] = ACTIONS(3141), + [anon_sym_infix] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_external] = ACTIONS(3141), + [sym_property_modifier] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_final] = ACTIONS(3141), + [anon_sym_open] = ACTIONS(3141), + [anon_sym_vararg] = ACTIONS(3141), + [anon_sym_noinline] = ACTIONS(3141), + [anon_sym_crossinline] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2256] = { + [sym_primary_constructor] = STATE(4914), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2351), + [sym_type_constraints] = STATE(5044), + [sym_enum_class_body] = STATE(5100), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5810), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5760), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), + }, + [2257] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3086), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2258] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3526), [anon_sym_COMMA] = ACTIONS(3139), [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), [anon_sym_where] = ACTIONS(3137), [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), [anon_sym_DASH_GT] = ACTIONS(3139), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), [anon_sym_suspend] = ACTIONS(3137), [anon_sym_sealed] = ACTIONS(3137), [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), [anon_sym_override] = ACTIONS(3137), [anon_sym_lateinit] = ACTIONS(3137), [anon_sym_public] = ACTIONS(3137), @@ -289530,1826 +290096,2222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3137), [anon_sym_noinline] = ACTIONS(3137), [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [2256] = { - [sym_primary_constructor] = STATE(4892), - [sym_class_body] = STATE(5245), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2359), - [sym_type_constraints] = STATE(5050), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5884), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - }, - [2257] = { - [sym_primary_constructor] = STATE(3404), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3335), - [sym_enum_class_body] = STATE(3480), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5886), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2258] = { - [sym_type_constraints] = STATE(2393), - [sym_property_delegate] = STATE(2579), - [sym_getter] = STATE(5315), - [sym_setter] = STATE(5315), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_EQ] = ACTIONS(5888), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5890), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), - }, [2259] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3090), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_primary_constructor] = STATE(3398), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3363), + [sym_enum_class_body] = STATE(3430), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, [2260] = { - [sym_primary_constructor] = STATE(4949), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2339), - [sym_type_constraints] = STATE(5031), - [sym_enum_class_body] = STATE(5085), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5896), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3078), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [2261] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3191), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3132), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [2262] = { - [sym_primary_constructor] = STATE(3410), - [sym_class_body] = STATE(3536), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3274), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5898), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3117), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, [2263] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3044), + [anon_sym_fun] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3044), + [anon_sym_super] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_PIPE_PIPE] = ACTIONS(5826), + [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(4479), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5830), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3044), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3046), + [anon_sym_continue_AT] = ACTIONS(3046), + [anon_sym_break_AT] = ACTIONS(3046), + [anon_sym_this_AT] = ACTIONS(3046), + [anon_sym_super_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(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3046), }, [2264] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_fun] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3193), - [anon_sym_super] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_null] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_when] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3195), - [anon_sym_continue_AT] = ACTIONS(3195), - [anon_sym_break_AT] = ACTIONS(3195), - [anon_sym_this_AT] = ACTIONS(3195), - [anon_sym_super_AT] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3195), - [sym_integer_literal] = ACTIONS(3193), - [sym_hex_literal] = ACTIONS(3195), - [sym_bin_literal] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3195), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(4523), + [sym_primary_constructor] = STATE(4957), + [sym_class_body] = STATE(5099), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2379), + [sym_type_constraints] = STATE(4972), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3195), }, [2265] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5900), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), + [sym_primary_constructor] = STATE(4718), + [sym_class_body] = STATE(5088), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5034), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5842), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), }, [2266] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_fun] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3133), - [anon_sym_super] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_null] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_when] = ACTIONS(3133), - [anon_sym_try] = ACTIONS(3133), - [anon_sym_throw] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3135), - [anon_sym_continue_AT] = ACTIONS(3135), - [anon_sym_break_AT] = ACTIONS(3135), - [anon_sym_this_AT] = ACTIONS(3135), - [anon_sym_super_AT] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3135), - [sym_integer_literal] = ACTIONS(3133), - [sym_hex_literal] = ACTIONS(3135), - [sym_bin_literal] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_SQUOTE] = ACTIONS(3135), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(4523), + [sym_primary_constructor] = STATE(3638), + [sym_class_body] = STATE(3914), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2373), + [sym_type_constraints] = STATE(3806), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5844), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3135), }, [2267] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3129), - [anon_sym_fun] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3129), - [anon_sym_super] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_null] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_when] = ACTIONS(3129), - [anon_sym_try] = ACTIONS(3129), - [anon_sym_throw] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3131), - [anon_sym_continue_AT] = ACTIONS(3131), - [anon_sym_break_AT] = ACTIONS(3131), - [anon_sym_this_AT] = ACTIONS(3131), - [anon_sym_super_AT] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3131), - [sym_integer_literal] = ACTIONS(3129), - [sym_hex_literal] = ACTIONS(3131), - [sym_bin_literal] = ACTIONS(3131), - [anon_sym_true] = ACTIONS(3129), - [anon_sym_false] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3131), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(4523), + [sym_primary_constructor] = STATE(3483), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3711), + [sym_enum_class_body] = STATE(3893), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5846), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3131), }, [2268] = { - [sym_primary_constructor] = STATE(3414), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3313), - [sym_enum_class_body] = STATE(3536), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5904), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym_primary_constructor] = STATE(3643), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2377), + [sym_type_constraints] = STATE(3745), + [sym_enum_class_body] = STATE(3914), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5848), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, [2269] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3175), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym_primary_constructor] = STATE(4725), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5057), + [sym_enum_class_body] = STATE(5082), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5850), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [2270] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3125), - [anon_sym_fun] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3125), - [anon_sym_super] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_null] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_when] = ACTIONS(3125), - [anon_sym_try] = ACTIONS(3125), - [anon_sym_throw] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3127), - [anon_sym_continue_AT] = ACTIONS(3127), - [anon_sym_break_AT] = ACTIONS(3127), - [anon_sym_this_AT] = ACTIONS(3127), - [anon_sym_super_AT] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3127), - [sym_integer_literal] = ACTIONS(3125), - [sym_hex_literal] = ACTIONS(3127), - [sym_bin_literal] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3125), - [anon_sym_false] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3127), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(4523), + [sym_primary_constructor] = STATE(3487), + [sym_class_body] = STATE(3893), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5852), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3127), }, [2271] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_fun] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3121), - [anon_sym_super] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_null] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_when] = ACTIONS(3121), - [anon_sym_try] = ACTIONS(3121), - [anon_sym_throw] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3123), - [anon_sym_continue_AT] = ACTIONS(3123), - [anon_sym_break_AT] = ACTIONS(3123), - [anon_sym_this_AT] = ACTIONS(3123), - [anon_sym_super_AT] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3123), - [sym_integer_literal] = ACTIONS(3121), - [sym_hex_literal] = ACTIONS(3123), - [sym_bin_literal] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_SQUOTE] = ACTIONS(3123), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3123), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_object] = ACTIONS(3115), + [anon_sym_fun] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3115), + [anon_sym_super] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_null] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_when] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [anon_sym_throw] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3117), + [anon_sym_continue_AT] = ACTIONS(3117), + [anon_sym_break_AT] = ACTIONS(3117), + [anon_sym_this_AT] = ACTIONS(3117), + [anon_sym_super_AT] = ACTIONS(3117), + [sym_real_literal] = ACTIONS(3117), + [sym_integer_literal] = ACTIONS(3115), + [sym_hex_literal] = ACTIONS(3117), + [sym_bin_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(3115), + [anon_sym_false] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3117), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3117), }, [2272] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(4523), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_fun] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3130), + [anon_sym_super] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_null] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_when] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3132), + [anon_sym_continue_AT] = ACTIONS(3132), + [anon_sym_break_AT] = ACTIONS(3132), + [anon_sym_this_AT] = ACTIONS(3132), + [anon_sym_super_AT] = ACTIONS(3132), + [sym_real_literal] = ACTIONS(3132), + [sym_integer_literal] = ACTIONS(3130), + [sym_hex_literal] = ACTIONS(3132), + [sym_bin_literal] = ACTIONS(3132), + [anon_sym_true] = ACTIONS(3130), + [anon_sym_false] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), + [sym__string_start] = ACTIONS(3132), }, [2273] = { - [sym_primary_constructor] = STATE(3379), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3823), - [sym_enum_class_body] = STATE(3831), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5906), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3076), + [anon_sym_fun] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3076), + [anon_sym_super] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_null] = ACTIONS(3076), + [anon_sym_if] = ACTIONS(3076), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_when] = ACTIONS(3076), + [anon_sym_try] = ACTIONS(3076), + [anon_sym_throw] = ACTIONS(3076), + [anon_sym_return] = ACTIONS(3076), + [anon_sym_continue] = ACTIONS(3076), + [anon_sym_break] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5830), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3078), + [anon_sym_continue_AT] = ACTIONS(3078), + [anon_sym_break_AT] = ACTIONS(3078), + [anon_sym_this_AT] = ACTIONS(3078), + [anon_sym_super_AT] = ACTIONS(3078), + [sym_real_literal] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(3076), + [sym_hex_literal] = ACTIONS(3078), + [sym_bin_literal] = ACTIONS(3078), + [anon_sym_true] = ACTIONS(3076), + [anon_sym_false] = ACTIONS(3076), + [anon_sym_SQUOTE] = ACTIONS(3078), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3078), }, [2274] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3137), + [anon_sym_fun] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_super] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_null] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_when] = ACTIONS(3137), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5830), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3139), + [anon_sym_continue_AT] = ACTIONS(3139), + [anon_sym_break_AT] = ACTIONS(3139), + [anon_sym_this_AT] = ACTIONS(3139), + [anon_sym_super_AT] = ACTIONS(3139), + [sym_real_literal] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [sym_hex_literal] = ACTIONS(3139), + [sym_bin_literal] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3139), + }, + [2275] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5854), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [2276] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3082), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2277] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3084), + [anon_sym_fun] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3084), + [anon_sym_super] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_null] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_when] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_throw] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3084), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3086), + [anon_sym_continue_AT] = ACTIONS(3086), + [anon_sym_break_AT] = ACTIONS(3086), + [anon_sym_this_AT] = ACTIONS(3086), + [anon_sym_super_AT] = ACTIONS(3086), + [sym_real_literal] = ACTIONS(3086), + [sym_integer_literal] = ACTIONS(3084), + [sym_hex_literal] = ACTIONS(3086), + [sym_bin_literal] = ACTIONS(3086), + [anon_sym_true] = ACTIONS(3084), + [anon_sym_false] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(3086), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3086), + }, + [2278] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_fun] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_super] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_when] = ACTIONS(3057), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3059), + [anon_sym_continue_AT] = ACTIONS(3059), + [anon_sym_break_AT] = ACTIONS(3059), + [anon_sym_this_AT] = ACTIONS(3059), + [anon_sym_super_AT] = ACTIONS(3059), + [sym_real_literal] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(3057), + [sym_hex_literal] = ACTIONS(3059), + [sym_bin_literal] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3059), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3059), + }, + [2279] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [2280] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5858), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [2281] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(4517), + [anon_sym_LPAREN] = ACTIONS(4465), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), [anon_sym_object] = ACTIONS(3141), @@ -291359,8 +292321,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(3141), [anon_sym_this] = ACTIONS(3141), [anon_sym_super] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), [anon_sym_in] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), @@ -291375,7 +292337,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3141), [anon_sym_continue] = ACTIONS(3141), [anon_sym_break] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(4523), + [anon_sym_COLON_COLON] = ACTIONS(4479), [anon_sym_BANG_EQ] = ACTIONS(3141), [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), [anon_sym_EQ_EQ] = ACTIONS(3141), @@ -291387,13 +292349,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4493), [anon_sym_data] = ACTIONS(3141), [anon_sym_inner] = ACTIONS(3141), [anon_sym_value] = ACTIONS(3141), @@ -291414,857 +292376,1055 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(3143), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(4523), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(3143), }, - [2275] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_object] = ACTIONS(3159), - [anon_sym_fun] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_super] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_null] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3161), - [anon_sym_continue_AT] = ACTIONS(3161), - [anon_sym_break_AT] = ACTIONS(3161), - [anon_sym_this_AT] = ACTIONS(3161), - [anon_sym_super_AT] = ACTIONS(3161), - [sym_real_literal] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_hex_literal] = ACTIONS(3161), - [sym_bin_literal] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3161), + [2282] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_fun] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_this] = ACTIONS(3100), + [anon_sym_super] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_null] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_when] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3102), + [anon_sym_continue_AT] = ACTIONS(3102), + [anon_sym_break_AT] = ACTIONS(3102), + [anon_sym_this_AT] = ACTIONS(3102), + [anon_sym_super_AT] = ACTIONS(3102), + [sym_real_literal] = ACTIONS(3102), + [sym_integer_literal] = ACTIONS(3100), + [sym_hex_literal] = ACTIONS(3102), + [sym_bin_literal] = ACTIONS(3102), + [anon_sym_true] = ACTIONS(3100), + [anon_sym_false] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3102), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3102), }, - [2276] = { - [sym_primary_constructor] = STATE(3663), - [sym_class_body] = STATE(4022), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2363), - [sym_type_constraints] = STATE(3755), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5908), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_EQ] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3244), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_PLUS_EQ] = ACTIONS(3248), - [anon_sym_DASH_EQ] = ACTIONS(3248), - [anon_sym_STAR_EQ] = ACTIONS(3248), - [anon_sym_SLASH_EQ] = ACTIONS(3248), - [anon_sym_PERCENT_EQ] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3244), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2283] = { + [sym_primary_constructor] = STATE(3647), + [sym_class_body] = STATE(4017), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2370), + [sym_type_constraints] = STATE(3780), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5862), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), [sym_multiline_comment] = ACTIONS(3), }, - [2277] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_RPAREN] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3187), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3185), - [anon_sym_sealed] = ACTIONS(3185), - [anon_sym_annotation] = ACTIONS(3185), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_lateinit] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_internal] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_tailrec] = ACTIONS(3185), - [anon_sym_operator] = ACTIONS(3185), - [anon_sym_infix] = ACTIONS(3185), - [anon_sym_inline] = ACTIONS(3185), - [anon_sym_external] = ACTIONS(3185), - [sym_property_modifier] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_final] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_vararg] = ACTIONS(3185), - [anon_sym_noinline] = ACTIONS(3185), - [anon_sym_crossinline] = ACTIONS(3185), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2284] = { + [sym_primary_constructor] = STATE(3490), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3743), + [sym_enum_class_body] = STATE(3876), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), }, - [2278] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_fun] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_this] = ACTIONS(3166), - [anon_sym_super] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_null] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_when] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3168), - [anon_sym_continue_AT] = ACTIONS(3168), - [anon_sym_break_AT] = ACTIONS(3168), - [anon_sym_this_AT] = ACTIONS(3168), - [anon_sym_super_AT] = ACTIONS(3168), - [sym_real_literal] = ACTIONS(3168), - [sym_integer_literal] = ACTIONS(3166), - [sym_hex_literal] = ACTIONS(3168), - [sym_bin_literal] = ACTIONS(3168), - [anon_sym_true] = ACTIONS(3166), - [anon_sym_false] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3168), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(4523), + [2285] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_object] = ACTIONS(3050), + [anon_sym_fun] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_this] = ACTIONS(3050), + [anon_sym_super] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_null] = ACTIONS(3050), + [anon_sym_if] = ACTIONS(3050), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_when] = ACTIONS(3050), + [anon_sym_try] = ACTIONS(3050), + [anon_sym_throw] = ACTIONS(3050), + [anon_sym_return] = ACTIONS(3050), + [anon_sym_continue] = ACTIONS(3050), + [anon_sym_break] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3050), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3052), + [anon_sym_continue_AT] = ACTIONS(3052), + [anon_sym_break_AT] = ACTIONS(3052), + [anon_sym_this_AT] = ACTIONS(3052), + [anon_sym_super_AT] = ACTIONS(3052), + [sym_real_literal] = ACTIONS(3052), + [sym_integer_literal] = ACTIONS(3050), + [sym_hex_literal] = ACTIONS(3052), + [sym_bin_literal] = ACTIONS(3052), + [anon_sym_true] = ACTIONS(3050), + [anon_sym_false] = ACTIONS(3050), + [anon_sym_SQUOTE] = ACTIONS(3052), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3052), + }, + [2286] = { + [sym_primary_constructor] = STATE(4851), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4692), + [sym_enum_class_body] = STATE(4702), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3168), }, - [2279] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_fun] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3173), - [anon_sym_super] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_null] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_when] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3175), - [anon_sym_continue_AT] = ACTIONS(3175), - [anon_sym_break_AT] = ACTIONS(3175), - [anon_sym_this_AT] = ACTIONS(3175), - [anon_sym_super_AT] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3175), - [sym_integer_literal] = ACTIONS(3173), - [sym_hex_literal] = ACTIONS(3175), - [sym_bin_literal] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3175), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(4523), + [2287] = { + [sym_primary_constructor] = STATE(4726), + [sym_class_body] = STATE(5082), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5048), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5868), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3175), }, - [2280] = { - [sym_primary_constructor] = STATE(3668), - [sym_class_body] = STATE(4001), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2347), - [sym_type_constraints] = STATE(3716), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5910), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2288] = { + [sym_primary_constructor] = STATE(3404), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5870), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [2281] = { - [sym_primary_constructor] = STATE(3666), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2368), - [sym_type_constraints] = STATE(3741), - [sym_enum_class_body] = STATE(4001), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2289] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3122), + [anon_sym_fun] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3122), + [anon_sym_super] = ACTIONS(3122), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_PIPE_PIPE] = ACTIONS(5826), + [anon_sym_null] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_when] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5830), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3122), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3124), + [anon_sym_continue_AT] = ACTIONS(3124), + [anon_sym_break_AT] = ACTIONS(3124), + [anon_sym_this_AT] = ACTIONS(3124), + [anon_sym_super_AT] = ACTIONS(3124), + [sym_real_literal] = ACTIONS(3124), + [sym_integer_literal] = ACTIONS(3122), + [sym_hex_literal] = ACTIONS(3124), + [sym_bin_literal] = ACTIONS(3124), + [anon_sym_true] = ACTIONS(3122), + [anon_sym_false] = ACTIONS(3122), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(4479), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3124), + }, + [2290] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_RPAREN] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3074), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3072), + [anon_sym_sealed] = ACTIONS(3072), + [anon_sym_annotation] = ACTIONS(3072), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3072), + [anon_sym_lateinit] = ACTIONS(3072), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_internal] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_tailrec] = ACTIONS(3072), + [anon_sym_operator] = ACTIONS(3072), + [anon_sym_infix] = ACTIONS(3072), + [anon_sym_inline] = ACTIONS(3072), + [anon_sym_external] = ACTIONS(3072), + [sym_property_modifier] = ACTIONS(3072), + [anon_sym_abstract] = ACTIONS(3072), + [anon_sym_final] = ACTIONS(3072), + [anon_sym_open] = ACTIONS(3072), + [anon_sym_vararg] = ACTIONS(3072), + [anon_sym_noinline] = ACTIONS(3072), + [anon_sym_crossinline] = ACTIONS(3072), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2282] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_fun] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3152), - [anon_sym_super] = ACTIONS(3152), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [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(4523), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [2291] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3128), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3154), - [anon_sym_continue_AT] = ACTIONS(3154), - [anon_sym_break_AT] = ACTIONS(3154), - [anon_sym_this_AT] = ACTIONS(3154), - [anon_sym_super_AT] = ACTIONS(3154), - [sym_real_literal] = ACTIONS(3154), - [sym_integer_literal] = ACTIONS(3152), - [sym_hex_literal] = ACTIONS(3154), - [sym_bin_literal] = ACTIONS(3154), - [anon_sym_true] = ACTIONS(3152), - [anon_sym_false] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3154), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(4523), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3154), }, - [2283] = { - [sym_type_constraints] = STATE(2406), - [sym_property_delegate] = STATE(2591), - [sym_getter] = STATE(5378), - [sym_setter] = STATE(5378), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5890), - [anon_sym_object] = ACTIONS(3348), - [anon_sym_fun] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(5916), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(3348), - [anon_sym_super] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3348), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_null] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_when] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG] = ACTIONS(3348), + [2292] = { + [sym_type_constraints] = STATE(2387), + [sym_property_delegate] = STATE(2544), + [sym_getter] = STATE(5364), + [sym_setter] = STATE(5364), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_EQ] = ACTIONS(5872), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_where] = ACTIONS(5802), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292289,675 +293449,675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3350), - [anon_sym_continue_AT] = ACTIONS(3350), - [anon_sym_break_AT] = ACTIONS(3350), - [anon_sym_this_AT] = ACTIONS(3350), - [anon_sym_super_AT] = ACTIONS(3350), - [sym_real_literal] = ACTIONS(3350), - [sym_integer_literal] = ACTIONS(3348), - [sym_hex_literal] = ACTIONS(3350), - [sym_bin_literal] = ACTIONS(3350), - [anon_sym_true] = ACTIONS(3348), - [anon_sym_false] = ACTIONS(3348), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3350), - }, - [2284] = { - [sym_primary_constructor] = STATE(4695), - [sym_class_body] = STATE(4764), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4639), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5918), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), + }, + [2293] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3111), + [anon_sym_fun] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3111), + [anon_sym_super] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_PIPE_PIPE] = ACTIONS(5826), + [anon_sym_null] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_when] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [anon_sym_throw] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5830), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3113), + [anon_sym_continue_AT] = ACTIONS(3113), + [anon_sym_break_AT] = ACTIONS(3113), + [anon_sym_this_AT] = ACTIONS(3113), + [anon_sym_super_AT] = ACTIONS(3113), + [sym_real_literal] = ACTIONS(3113), + [sym_integer_literal] = ACTIONS(3111), + [sym_hex_literal] = ACTIONS(3113), + [sym_bin_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3113), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3113), }, - [2285] = { - [sym_primary_constructor] = STATE(4941), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2371), - [sym_type_constraints] = STATE(5002), - [sym_enum_class_body] = STATE(5100), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5920), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2294] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3124), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2286] = { - [sym_primary_constructor] = STATE(3418), - [sym_class_body] = STATE(3562), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3303), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5922), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2295] = { + [sym_primary_constructor] = STATE(3408), + [sym_class_body] = STATE(3549), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3273), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5874), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, - [2287] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_fun] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3088), - [anon_sym_super] = ACTIONS(3088), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_null] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_when] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3090), - [anon_sym_continue_AT] = ACTIONS(3090), - [anon_sym_break_AT] = ACTIONS(3090), - [anon_sym_this_AT] = ACTIONS(3090), - [anon_sym_super_AT] = ACTIONS(3090), - [sym_real_literal] = ACTIONS(3090), - [sym_integer_literal] = ACTIONS(3088), - [sym_hex_literal] = ACTIONS(3090), - [sym_bin_literal] = ACTIONS(3090), - [anon_sym_true] = ACTIONS(3088), - [anon_sym_false] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3090), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(4523), + [2296] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3052), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3090), }, - [2288] = { - [sym_primary_constructor] = STATE(4890), - [sym_class_body] = STATE(5085), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2316), - [sym_type_constraints] = STATE(5024), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5924), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3200), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_PLUS_EQ] = ACTIONS(3206), - [anon_sym_DASH_EQ] = ACTIONS(3206), - [anon_sym_STAR_EQ] = ACTIONS(3206), - [anon_sym_SLASH_EQ] = ACTIONS(3206), - [anon_sym_PERCENT_EQ] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3200), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [2297] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3080), + [anon_sym_fun] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3080), + [anon_sym_super] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_PIPE_PIPE] = ACTIONS(5826), + [anon_sym_null] = ACTIONS(3080), + [anon_sym_if] = ACTIONS(3080), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_when] = ACTIONS(3080), + [anon_sym_try] = ACTIONS(3080), + [anon_sym_throw] = ACTIONS(3080), + [anon_sym_return] = ACTIONS(3080), + [anon_sym_continue] = ACTIONS(3080), + [anon_sym_break] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5830), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3080), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3082), + [anon_sym_continue_AT] = ACTIONS(3082), + [anon_sym_break_AT] = ACTIONS(3082), + [anon_sym_this_AT] = ACTIONS(3082), + [anon_sym_super_AT] = ACTIONS(3082), + [sym_real_literal] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(3080), + [sym_hex_literal] = ACTIONS(3082), + [sym_bin_literal] = ACTIONS(3082), + [anon_sym_true] = ACTIONS(3080), + [anon_sym_false] = ACTIONS(3080), + [anon_sym_SQUOTE] = ACTIONS(3082), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3082), }, - [2289] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3195), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3602), + [2298] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3109), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2290] = { - [sym_type_constraints] = STATE(2411), - [sym_property_delegate] = STATE(2584), - [sym_getter] = STATE(5354), - [sym_setter] = STATE(5354), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(5926), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5890), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5928), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), + [2299] = { + [sym_type_constraints] = STATE(2416), + [sym_property_delegate] = STATE(2557), + [sym_getter] = STATE(5328), + [sym_setter] = STATE(5328), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_EQ] = ACTIONS(5876), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_where] = ACTIONS(5802), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -292982,180 +294142,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [2291] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3154), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2300] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3126), + [anon_sym_fun] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3126), + [anon_sym_super] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_PIPE_PIPE] = ACTIONS(5826), + [anon_sym_null] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_when] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5830), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3126), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3128), + [anon_sym_continue_AT] = ACTIONS(3128), + [anon_sym_break_AT] = ACTIONS(3128), + [anon_sym_this_AT] = ACTIONS(3128), + [anon_sym_super_AT] = ACTIONS(3128), + [sym_real_literal] = ACTIONS(3128), + [sym_integer_literal] = ACTIONS(3126), + [sym_hex_literal] = ACTIONS(3128), + [sym_bin_literal] = ACTIONS(3128), + [anon_sym_true] = ACTIONS(3126), + [anon_sym_false] = ACTIONS(3126), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3128), }, - [2292] = { - [sym_type_constraints] = STATE(2391), - [sym_property_delegate] = STATE(2580), - [sym_getter] = STATE(5314), - [sym_setter] = STATE(5314), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(5930), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5890), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), + [2301] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_DASH_GT] = ACTIONS(3102), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2302] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3063), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3063), + [anon_sym_RPAREN] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3063), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2303] = { + [sym_type_constraints] = STATE(2398), + [sym_property_delegate] = STATE(2571), + [sym_getter] = STATE(5384), + [sym_setter] = STATE(5384), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_EQ] = ACTIONS(5878), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_where] = ACTIONS(5802), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_fun] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(5880), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(3284), + [anon_sym_super] = ACTIONS(3284), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3284), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_null] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_when] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -293180,1269 +294538,1182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), - }, - [2293] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3135), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3286), + [anon_sym_continue_AT] = ACTIONS(3286), + [anon_sym_break_AT] = ACTIONS(3286), + [anon_sym_this_AT] = ACTIONS(3286), + [anon_sym_super_AT] = ACTIONS(3286), + [sym_real_literal] = ACTIONS(3286), + [sym_integer_literal] = ACTIONS(3284), + [sym_hex_literal] = ACTIONS(3286), + [sym_bin_literal] = ACTIONS(3286), + [anon_sym_true] = ACTIONS(3284), + [anon_sym_false] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3286), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3286), }, - [2294] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3131), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), + [2304] = { + [sym_type_constraints] = STATE(2407), + [sym_property_delegate] = STATE(2548), + [sym_getter] = STATE(5348), + [sym_setter] = STATE(5348), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(5882), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_where] = ACTIONS(5802), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [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), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [2295] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3094), - [anon_sym_fun] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3094), - [anon_sym_super] = ACTIONS(3094), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_null] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_when] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3094), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3096), - [anon_sym_continue_AT] = ACTIONS(3096), - [anon_sym_break_AT] = ACTIONS(3096), - [anon_sym_this_AT] = ACTIONS(3096), - [anon_sym_super_AT] = ACTIONS(3096), - [sym_real_literal] = ACTIONS(3096), - [sym_integer_literal] = ACTIONS(3094), - [sym_hex_literal] = ACTIONS(3096), - [sym_bin_literal] = ACTIONS(3096), - [anon_sym_true] = ACTIONS(3094), - [anon_sym_false] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(3096), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(4523), + [2305] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_fun] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3107), + [anon_sym_super] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_PIPE_PIPE] = ACTIONS(5826), + [anon_sym_null] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_when] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5830), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3109), + [anon_sym_continue_AT] = ACTIONS(3109), + [anon_sym_break_AT] = ACTIONS(3109), + [anon_sym_this_AT] = ACTIONS(3109), + [anon_sym_super_AT] = ACTIONS(3109), + [sym_real_literal] = ACTIONS(3109), + [sym_integer_literal] = ACTIONS(3107), + [sym_hex_literal] = ACTIONS(3109), + [sym_bin_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3109), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3096), + [sym__string_start] = ACTIONS(3109), }, - [2296] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_fun] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3148), - [anon_sym_super] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_null] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_when] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3150), - [anon_sym_continue_AT] = ACTIONS(3150), - [anon_sym_break_AT] = ACTIONS(3150), - [anon_sym_this_AT] = ACTIONS(3150), - [anon_sym_super_AT] = ACTIONS(3150), - [sym_real_literal] = ACTIONS(3150), - [sym_integer_literal] = ACTIONS(3148), - [sym_hex_literal] = ACTIONS(3150), - [sym_bin_literal] = ACTIONS(3150), - [anon_sym_true] = ACTIONS(3148), - [anon_sym_false] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(4523), + [2306] = { + [sym_indexing_suffix] = STATE(3121), + [sym_navigation_suffix] = STATE(3119), + [sym_call_suffix] = STATE(3116), + [sym_annotated_lambda] = STATE(3113), + [sym_type_arguments] = STATE(8108), + [sym_value_arguments] = STATE(2735), + [sym_lambda_literal] = STATE(3212), + [sym__equality_operator] = STATE(2174), + [sym__comparison_operator] = STATE(2173), + [sym__in_operator] = STATE(2172), + [sym__is_operator] = STATE(6275), + [sym__additive_operator] = STATE(2170), + [sym__multiplicative_operator] = STATE(2168), + [sym__as_operator] = STATE(6202), + [sym__postfix_unary_operator] = STATE(3060), + [sym__member_access_operator] = STATE(7719), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2166), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_as] = ACTIONS(4463), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(4465), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(5814), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(5816), + [sym_label] = ACTIONS(4471), + [anon_sym_in] = ACTIONS(5818), + [anon_sym_DOT_DOT] = ACTIONS(5820), + [anon_sym_QMARK_COLON] = ACTIONS(5822), + [anon_sym_AMP_AMP] = ACTIONS(5824), + [anon_sym_PIPE_PIPE] = ACTIONS(5826), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(4479), + [anon_sym_BANG_EQ] = ACTIONS(5828), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5830), + [anon_sym_EQ_EQ] = ACTIONS(5828), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5830), + [anon_sym_LT_EQ] = ACTIONS(5832), + [anon_sym_GT_EQ] = ACTIONS(5832), + [anon_sym_BANGin] = ACTIONS(5834), + [anon_sym_is] = ACTIONS(4485), + [anon_sym_BANGis] = ACTIONS(4487), + [anon_sym_PLUS] = ACTIONS(5836), + [anon_sym_DASH] = ACTIONS(5836), + [anon_sym_SLASH] = ACTIONS(5838), + [anon_sym_PERCENT] = ACTIONS(5816), + [anon_sym_as_QMARK] = ACTIONS(4491), + [anon_sym_PLUS_PLUS] = ACTIONS(4493), + [anon_sym_DASH_DASH] = ACTIONS(4493), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(4493), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(4479), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3150), + [sym__string_start] = ACTIONS(3098), }, - [2297] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3096), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3096), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2307] = { + [sym_primary_constructor] = STATE(4849), + [sym_class_body] = STATE(4733), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4689), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [2298] = { - [sym_primary_constructor] = STATE(3674), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2333), - [sym_type_constraints] = STATE(3790), - [sym_enum_class_body] = STATE(3909), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5932), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_EQ] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3238), - [anon_sym_DASH_EQ] = ACTIONS(3238), - [anon_sym_STAR_EQ] = ACTIONS(3238), - [anon_sym_SLASH_EQ] = ACTIONS(3238), - [anon_sym_PERCENT_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3234), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2308] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3098), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2299] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3127), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2309] = { + [sym_primary_constructor] = STATE(4845), + [sym_class_body] = STATE(4804), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4658), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5886), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, - [2300] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3123), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2310] = { + [sym_primary_constructor] = STATE(4919), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2369), + [sym_type_constraints] = STATE(5029), + [sym_enum_class_body] = STATE(5099), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_EQ] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3148), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_PLUS_EQ] = ACTIONS(3154), + [anon_sym_DASH_EQ] = ACTIONS(3154), + [anon_sym_STAR_EQ] = ACTIONS(3154), + [anon_sym_SLASH_EQ] = ACTIONS(3154), + [anon_sym_PERCENT_EQ] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3148), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, - [2301] = { - [sym_primary_constructor] = STATE(4808), - [sym_class_body] = STATE(5087), - [sym__class_parameters] = STATE(5064), + [2311] = { + [sym_primary_constructor] = STATE(4923), + [sym_class_body] = STATE(5107), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2327), [sym_type_constraints] = STATE(4962), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5934), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5890), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_PLUS_EQ] = ACTIONS(3186), + [anon_sym_DASH_EQ] = ACTIONS(3186), + [anon_sym_STAR_EQ] = ACTIONS(3186), + [anon_sym_SLASH_EQ] = ACTIONS(3186), + [anon_sym_PERCENT_EQ] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3182), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), [sym_multiline_comment] = ACTIONS(3), }, - [2302] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3116), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2312] = { + [sym_primary_constructor] = STATE(4848), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4690), + [sym_enum_class_body] = STATE(4733), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [2303] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3168), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [2313] = { + [sym_primary_constructor] = STATE(3477), + [sym_class_body] = STATE(3947), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3738), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), [anon_sym_tailrec] = ACTIONS(3166), [anon_sym_operator] = ACTIONS(3166), [anon_sym_infix] = ACTIONS(3166), [anon_sym_inline] = ACTIONS(3166), [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, - [2304] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(4523), + [2314] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1547), + [sym__comparison_operator] = STATE(1546), + [sym__in_operator] = STATE(1542), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1530), + [sym__multiplicative_operator] = STATE(1529), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1526), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_RBRACK] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4004), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_DASH_GT] = ACTIONS(3046), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4014), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_QMARK_COLON] = ACTIONS(4018), + [anon_sym_AMP_AMP] = ACTIONS(4020), + [anon_sym_PIPE_PIPE] = ACTIONS(4022), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4024), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4026), + [anon_sym_EQ_EQ] = ACTIONS(4024), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4026), + [anon_sym_LT_EQ] = ACTIONS(4028), + [anon_sym_GT_EQ] = ACTIONS(4028), + [anon_sym_BANGin] = ACTIONS(4030), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4032), + [anon_sym_DASH] = ACTIONS(4032), + [anon_sym_SLASH] = ACTIONS(4034), + [anon_sym_PERCENT] = ACTIONS(4012), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), }, - [2305] = { - [sym_type_constraints] = STATE(2405), - [sym_property_delegate] = STATE(2582), - [sym_getter] = STATE(5414), - [sym_setter] = STATE(5414), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(5936), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_where] = ACTIONS(5890), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), + [2315] = { + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [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), @@ -294467,984 +295738,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), - }, - [2306] = { - [sym_primary_constructor] = STATE(4875), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4961), - [sym_enum_class_body] = STATE(5163), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5938), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [2307] = { - [sym_primary_constructor] = STATE(4701), - [sym_class_body] = STATE(4775), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4651), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5940), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2308] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3143), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [2309] = { - [sym_primary_constructor] = STATE(4850), - [sym_class_body] = STATE(5098), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(5020), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2310] = { - [sym_primary_constructor] = STATE(4703), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4629), - [sym_enum_class_body] = STATE(4810), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5944), + [2316] = { + [sym_type_constraints] = STATE(2443), + [sym_property_delegate] = STATE(2562), + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5896), + [anon_sym_LBRACE] = ACTIONS(3298), [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5486), + [anon_sym_LPAREN] = ACTIONS(3298), [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5900), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(3296), [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), [anon_sym_DOT_DOT] = ACTIONS(3298), [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), + [anon_sym_else] = ACTIONS(3296), [anon_sym_COLON_COLON] = ACTIONS(3298), [anon_sym_PLUS_EQ] = ACTIONS(3298), [anon_sym_DASH_EQ] = ACTIONS(3298), [anon_sym_STAR_EQ] = ACTIONS(3298), [anon_sym_SLASH_EQ] = ACTIONS(3298), [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3296), [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3296), [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), [anon_sym_LT_EQ] = ACTIONS(3298), [anon_sym_GT_EQ] = ACTIONS(3298), [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3296), [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), [anon_sym_as_QMARK] = ACTIONS(3298), [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [2311] = { - [sym_primary_constructor] = STATE(4849), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4999), - [sym_enum_class_body] = STATE(5098), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5946), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2312] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_DASH_GT] = ACTIONS(3161), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [2313] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1718), - [sym__comparison_operator] = STATE(1715), - [sym__in_operator] = STATE(1713), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1712), - [sym__multiplicative_operator] = STATE(1711), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1710), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_DASH_GT] = ACTIONS(3112), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_QMARK_COLON] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4076), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4078), - [anon_sym_EQ_EQ] = ACTIONS(4076), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4078), - [anon_sym_LT_EQ] = ACTIONS(4080), - [anon_sym_GT_EQ] = ACTIONS(4080), - [anon_sym_BANGin] = ACTIONS(4082), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4064), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [2314] = { - [sym_indexing_suffix] = STATE(3247), - [sym_navigation_suffix] = STATE(3206), - [sym_call_suffix] = STATE(3191), - [sym_annotated_lambda] = STATE(3179), - [sym_type_arguments] = STATE(8273), - [sym_value_arguments] = STATE(2744), - [sym_lambda_literal] = STATE(3062), - [sym__equality_operator] = STATE(2175), - [sym__comparison_operator] = STATE(2169), - [sym__in_operator] = STATE(2166), - [sym__is_operator] = STATE(6211), - [sym__additive_operator] = STATE(2165), - [sym__multiplicative_operator] = STATE(2164), - [sym__as_operator] = STATE(6219), - [sym__postfix_unary_operator] = STATE(3199), - [sym__member_access_operator] = STATE(7608), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2162), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_DOT] = ACTIONS(4513), - [anon_sym_as] = ACTIONS(4515), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(4517), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(5850), - [anon_sym_object] = ACTIONS(3110), - [anon_sym_fun] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_this] = ACTIONS(3110), - [anon_sym_super] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(5852), - [sym_label] = ACTIONS(4521), - [anon_sym_in] = ACTIONS(5854), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_QMARK_COLON] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5860), - [anon_sym_PIPE_PIPE] = ACTIONS(5862), - [anon_sym_null] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_when] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym_BANG_EQ] = ACTIONS(5864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT_EQ] = ACTIONS(5868), - [anon_sym_GT_EQ] = ACTIONS(5868), - [anon_sym_BANGin] = ACTIONS(5870), - [anon_sym_is] = ACTIONS(4583), - [anon_sym_BANGis] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(5872), - [anon_sym_DASH] = ACTIONS(5872), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_PERCENT] = ACTIONS(5852), - [anon_sym_as_QMARK] = ACTIONS(4525), - [anon_sym_PLUS_PLUS] = ACTIONS(4527), - [anon_sym_DASH_DASH] = ACTIONS(4527), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_BANG_BANG] = ACTIONS(4527), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3112), - [anon_sym_continue_AT] = ACTIONS(3112), - [anon_sym_break_AT] = ACTIONS(3112), - [anon_sym_this_AT] = ACTIONS(3112), - [anon_sym_super_AT] = ACTIONS(3112), - [sym_real_literal] = ACTIONS(3112), - [sym_integer_literal] = ACTIONS(3110), - [sym_hex_literal] = ACTIONS(3112), - [sym_bin_literal] = ACTIONS(3112), - [anon_sym_true] = ACTIONS(3110), - [anon_sym_false] = ACTIONS(3110), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(4523), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3112), - }, - [2315] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -295469,178 +295836,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2316] = { - [sym_primary_constructor] = STATE(4929), - [sym_class_body] = STATE(5098), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(5020), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5948), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, [2317] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5906), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [2318] = { + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [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), @@ -295665,80 +296032,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2318] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2319] = { + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -295763,80 +296130,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2319] = { - [sym_type_constraints] = STATE(2427), - [sym_property_delegate] = STATE(2583), - [sym_getter] = STATE(3596), - [sym_setter] = STATE(3596), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(5950), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(5954), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2320] = { + [sym_primary_constructor] = STATE(3625), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3743), + [sym_enum_class_body] = STATE(3876), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), + }, + [2321] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5912), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [2322] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(5916), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), + }, + [2323] = { + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -295861,80 +296522,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2320] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2324] = { + [sym_type_constraints] = STATE(2415), + [sym_property_delegate] = STATE(2482), + [sym_getter] = STATE(3980), + [sym_setter] = STATE(3980), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(5918), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(5922), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -295959,79 +296619,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2321] = { - [sym_type_constraints] = STATE(2404), - [sym_property_delegate] = STATE(2491), - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(5960), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(5964), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2325] = { + [sym_type_constraints] = STATE(2454), + [sym_property_delegate] = STATE(2536), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(5928), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296056,81 +296718,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2322] = { - [sym_type_constraints] = STATE(2439), - [sym_property_delegate] = STATE(2590), - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(5970), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(5972), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2326] = { + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296155,79 +296816,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2323] = { - [sym_type_constraints] = STATE(2408), - [sym_property_delegate] = STATE(2486), - [sym_getter] = STATE(5219), - [sym_setter] = STATE(5219), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(5974), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(5976), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2327] = { + [sym_primary_constructor] = STATE(4917), + [sym_class_body] = STATE(5088), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5034), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5934), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + }, + [2328] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(5936), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_object] = ACTIONS(4840), + [anon_sym_fun] = 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(4842), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4840), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_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(4842), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), + }, + [2329] = { + [sym_primary_constructor] = STATE(4894), + [sym__class_parameters] = STATE(5119), + [sym_type_constraints] = STATE(5261), + [sym_enum_class_body] = STATE(5350), + [sym_modifiers] = STATE(9825), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5938), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_constructor] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5728), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5716), + [anon_sym_where] = ACTIONS(5720), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), + }, + [2330] = { + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296252,81 +297208,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2324] = { - [sym_type_constraints] = STATE(2424), - [sym_property_delegate] = STATE(2589), - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2331] = { + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296351,80 +297306,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2325] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2332] = { + [sym_getter] = STATE(3393), + [sym_setter] = STATE(3393), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [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), @@ -296449,80 +297404,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2326] = { - [sym_type_constraints] = STATE(2425), - [sym_property_delegate] = STATE(2595), - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5980), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2333] = { + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [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), @@ -296547,80 +297502,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2327] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2334] = { + [sym_type_constraints] = STATE(2408), + [sym_property_delegate] = STATE(2484), + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(5942), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296645,79 +297599,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2328] = { - [sym_type_constraints] = STATE(2412), - [sym_property_delegate] = STATE(2507), - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5982), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2335] = { + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296742,81 +297698,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2329] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2336] = { + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296841,80 +297796,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2330] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2337] = { + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -296939,80 +297894,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2331] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2338] = { + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5678), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297037,80 +297992,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2332] = { - [sym_type_constraints] = STATE(2448), - [sym_property_delegate] = STATE(2585), - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(5988), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3942), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2339] = { + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297135,178 +298090,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2333] = { - [sym_primary_constructor] = STATE(3675), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3823), - [sym_enum_class_body] = STATE(3831), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(5990), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), + [2340] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5944), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4188), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4188), + [anon_sym_continue_AT] = ACTIONS(4188), + [anon_sym_break_AT] = ACTIONS(4188), + [anon_sym_this_AT] = ACTIONS(4188), + [anon_sym_super_AT] = ACTIONS(4188), + [sym_real_literal] = ACTIONS(4188), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4188), + [sym_bin_literal] = ACTIONS(4188), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4188), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4188), }, - [2334] = { - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5736), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2341] = { + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297331,79 +298286,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2335] = { - [sym_type_constraints] = STATE(2385), - [sym_property_delegate] = STATE(2505), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5992), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2342] = { + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297428,81 +298384,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2336] = { - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2343] = { + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297527,80 +298482,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2337] = { - [sym_type_constraints] = STATE(2428), - [sym_property_delegate] = STATE(2560), - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(5994), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2344] = { + [sym_getter] = STATE(3400), + [sym_setter] = STATE(3400), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_RBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_DASH_GT] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297625,80 +298580,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2338] = { - [sym_getter] = STATE(3459), - [sym_setter] = STATE(3459), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_DASH_GT] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2345] = { + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -297723,178 +298678,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - }, - [2339] = { - [sym_primary_constructor] = STATE(4895), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4999), - [sym_enum_class_body] = STATE(5098), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6000), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2340] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2346] = { + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [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), @@ -297919,178 +298776,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2341] = { - [sym_primary_constructor] = STATE(4939), - [sym__class_parameters] = STATE(5162), - [sym_type_constraints] = STATE(5277), - [sym_enum_class_body] = STATE(5369), - [sym_modifiers] = STATE(9606), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6002), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_constructor] = ACTIONS(5746), - [anon_sym_LBRACE] = ACTIONS(5800), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5750), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [2347] = { + [sym_primary_constructor] = STATE(4907), + [sym_class_body] = STATE(5321), + [sym__class_parameters] = STATE(5119), + [sym_type_constraints] = STATE(5294), + [sym_modifiers] = STATE(9825), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_constructor] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5714), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5716), + [anon_sym_where] = ACTIONS(5720), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [2342] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2348] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5948), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4220), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), + }, + [2349] = { + [sym_type_constraints] = STATE(2437), + [sym_property_delegate] = STATE(2596), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(5950), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5952), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298115,80 +299070,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2343] = { - [sym_type_constraints] = STATE(2429), - [sym_property_delegate] = STATE(2552), - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6004), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2350] = { + [sym_type_constraints] = STATE(2424), + [sym_property_delegate] = STATE(2565), + [sym_getter] = STATE(4825), + [sym_setter] = STATE(4825), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5956), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298213,79 +299168,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2344] = { - [sym_type_constraints] = STATE(2402), - [sym_property_delegate] = STATE(2466), - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6006), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3866), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2351] = { + [sym_primary_constructor] = STATE(4945), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5012), + [sym_enum_class_body] = STATE(5191), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5958), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), + }, + [2352] = { + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298310,80 +299364,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2345] = { - [sym_type_constraints] = STATE(2407), - [sym_property_delegate] = STATE(2503), - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6008), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3880), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2353] = { + [sym_getter] = STATE(4836), + [sym_setter] = STATE(4836), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [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), @@ -298408,81 +299462,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2346] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2354] = { + [sym_type_constraints] = STATE(2426), + [sym_property_delegate] = STATE(2556), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5960), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298507,178 +299560,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2347] = { - [sym_primary_constructor] = STATE(3673), - [sym_class_body] = STATE(3964), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3783), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6010), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [2355] = { + [sym_primary_constructor] = STATE(4922), + [sym_class_body] = STATE(5382), + [sym__class_parameters] = STATE(5119), + [sym_type_constraints] = STATE(5282), + [sym_modifiers] = STATE(9825), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5962), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_constructor] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5714), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5716), + [anon_sym_where] = ACTIONS(5720), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, - [2348] = { - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5699), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2356] = { + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298703,80 +299756,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2349] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2357] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9319), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_RBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(5668), + [anon_sym_set] = ACTIONS(5670), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_DASH_GT] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298801,79 +299854,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2350] = { - [sym_type_constraints] = STATE(2396), - [sym_property_delegate] = STATE(2511), - [sym_getter] = STATE(4026), - [sym_setter] = STATE(4026), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6012), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6014), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2358] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(5964), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), + }, + [2359] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -298898,179 +300050,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2351] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(5438), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4228), - [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(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [2352] = { - [sym_getter] = STATE(3455), - [sym_setter] = STATE(3455), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_RBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_DASH_GT] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2360] = { + [sym_type_constraints] = STATE(2392), + [sym_property_delegate] = STATE(2467), + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299095,80 +300147,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2353] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2361] = { + [sym_type_constraints] = STATE(2431), + [sym_property_delegate] = STATE(2534), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299193,276 +300246,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2354] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), - }, - [2355] = { - [sym_primary_constructor] = STATE(4923), - [sym_class_body] = STATE(5369), - [sym__class_parameters] = STATE(5162), - [sym_type_constraints] = STATE(5303), - [sym_modifiers] = STATE(9606), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6016), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_constructor] = ACTIONS(5746), - [anon_sym_LBRACE] = ACTIONS(5748), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5750), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [2356] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2362] = { + [sym_type_constraints] = STATE(2457), + [sym_property_delegate] = STATE(2554), + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(5978), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299487,178 +300344,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2357] = { - [sym_primary_constructor] = STATE(4959), - [sym_class_body] = STATE(5343), - [sym__class_parameters] = STATE(5162), - [sym_type_constraints] = STATE(5260), - [sym_modifiers] = STATE(9606), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6018), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_constructor] = ACTIONS(5746), - [anon_sym_LBRACE] = ACTIONS(5748), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5750), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [2363] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(5980), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(5964), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, - [2358] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2364] = { + [sym_type_constraints] = STATE(2461), + [sym_property_delegate] = STATE(2540), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5982), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299683,177 +300540,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2359] = { - [sym_primary_constructor] = STATE(4912), - [sym_class_body] = STATE(5087), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4962), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6020), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2365] = { + [sym_type_constraints] = STATE(2405), + [sym_property_delegate] = STATE(2486), + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3704), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2360] = { - [sym_type_constraints] = STATE(2397), - [sym_property_delegate] = STATE(2513), - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6022), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3872), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2366] = { + [sym_type_constraints] = STATE(2403), + [sym_property_delegate] = STATE(2476), + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299878,81 +300735,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2361] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2367] = { + [sym_primary_constructor] = STATE(4912), + [sym__class_parameters] = STATE(5119), + [sym_type_constraints] = STATE(5305), + [sym_enum_class_body] = STATE(5321), + [sym_modifiers] = STATE(9825), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_constructor] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5728), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5716), + [anon_sym_where] = ACTIONS(5720), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [2368] = { + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -299977,374 +300932,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2362] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6024), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_suspend] = ACTIONS(4242), - [anon_sym_sealed] = ACTIONS(4242), - [anon_sym_annotation] = ACTIONS(4242), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [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(4234), - [anon_sym_actual] = ACTIONS(4234), + [2369] = { + [sym_primary_constructor] = STATE(4899), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5057), + [sym_enum_class_body] = STATE(5082), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5990), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), }, - [2363] = { - [sym_primary_constructor] = STATE(3664), - [sym_class_body] = STATE(4033), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3742), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6028), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2370] = { + [sym_primary_constructor] = STATE(3644), + [sym_class_body] = STATE(3947), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3738), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, - [2364] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6030), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [2365] = { - [sym_type_constraints] = STATE(2430), - [sym_property_delegate] = STATE(2546), - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6034), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2371] = { + [sym_type_constraints] = STATE(2404), + [sym_property_delegate] = STATE(2490), + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300369,80 +301225,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2366] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2372] = { + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5662), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300467,80 +301324,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2367] = { - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9257), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(5701), - [anon_sym_set] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2373] = { + [sym_primary_constructor] = STATE(3630), + [sym_class_body] = STATE(3893), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2374] = { + [sym_type_constraints] = STATE(2401), + [sym_property_delegate] = STATE(2472), + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300565,178 +301519,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2368] = { - [sym_primary_constructor] = STATE(3672), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3734), - [sym_enum_class_body] = STATE(3964), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6036), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2369] = { - [sym_type_constraints] = STATE(2431), - [sym_property_delegate] = STATE(2539), - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6038), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6040), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2375] = { + [sym_type_constraints] = STATE(2402), + [sym_property_delegate] = STATE(2500), + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6000), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300761,80 +301617,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2370] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2376] = { + [sym_type_constraints] = STATE(2438), + [sym_property_delegate] = STATE(2553), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6002), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -300859,374 +301716,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2371] = { - [sym_primary_constructor] = STATE(4891), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4961), - [sym_enum_class_body] = STATE(5163), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6042), + [2377] = { + [sym_primary_constructor] = STATE(3634), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3711), + [sym_enum_class_body] = STATE(3893), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6004), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2378] = { + [sym_type_constraints] = STATE(2395), + [sym_property_delegate] = STATE(2470), + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6006), + [anon_sym_LBRACE] = ACTIONS(3298), [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6008), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(3296), [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), + [anon_sym_in] = ACTIONS(3296), [anon_sym_DOT_DOT] = ACTIONS(3298), [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), + [anon_sym_else] = ACTIONS(3296), [anon_sym_COLON_COLON] = ACTIONS(3298), [anon_sym_PLUS_EQ] = ACTIONS(3298), [anon_sym_DASH_EQ] = ACTIONS(3298), [anon_sym_STAR_EQ] = ACTIONS(3298), [anon_sym_SLASH_EQ] = ACTIONS(3298), [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3296), [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3296), [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), [anon_sym_LT_EQ] = ACTIONS(3298), [anon_sym_GT_EQ] = ACTIONS(3298), [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3296), [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), [anon_sym_as_QMARK] = ACTIONS(3298), [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [2372] = { - [sym_primary_constructor] = STATE(4908), - [sym__class_parameters] = STATE(5162), - [sym_type_constraints] = STATE(5289), - [sym_enum_class_body] = STATE(5328), - [sym_modifiers] = STATE(9606), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6044), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_constructor] = ACTIONS(5746), - [anon_sym_LBRACE] = ACTIONS(5800), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5750), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), - }, - [2373] = { - [sym_type_constraints] = STATE(2386), - [sym_property_delegate] = STATE(2515), - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6046), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - }, - [2374] = { - [sym_type_constraints] = STATE(2433), - [sym_property_delegate] = STATE(2533), - [sym_getter] = STATE(4803), - [sym_setter] = STATE(4803), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6048), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6050), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301251,668 +301911,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - }, - [2375] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(6052), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), - }, - [2376] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(6054), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_object] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_this] = ACTIONS(4844), - [anon_sym_super] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [sym_label] = ACTIONS(4844), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4844), - [anon_sym_if] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_throw] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_continue] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4844), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4846), - [anon_sym_continue_AT] = ACTIONS(4846), - [anon_sym_break_AT] = ACTIONS(4846), - [anon_sym_this_AT] = ACTIONS(4846), - [anon_sym_super_AT] = ACTIONS(4846), - [sym_real_literal] = ACTIONS(4846), - [sym_integer_literal] = ACTIONS(4844), - [sym_hex_literal] = ACTIONS(4846), - [sym_bin_literal] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4846), - }, - [2377] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(6056), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(6058), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), - }, - [2378] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6060), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4240), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [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(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4240), - [anon_sym_continue_AT] = ACTIONS(4240), - [anon_sym_break_AT] = ACTIONS(4240), - [anon_sym_this_AT] = ACTIONS(4240), - [anon_sym_super_AT] = ACTIONS(4240), - [sym_real_literal] = ACTIONS(4240), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4240), - [sym_bin_literal] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4240), - [sym__backtick_identifier] = ACTIONS(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4240), }, [2379] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(6058), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [sym_primary_constructor] = STATE(4913), + [sym_class_body] = STATE(5082), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5048), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6010), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), }, [2380] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6062), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_this] = ACTIONS(4228), - [anon_sym_super] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4226), - [sym_label] = ACTIONS(4228), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_throw] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4226), - [anon_sym_continue_AT] = ACTIONS(4226), - [anon_sym_break_AT] = ACTIONS(4226), - [anon_sym_this_AT] = ACTIONS(4226), - [anon_sym_super_AT] = ACTIONS(4226), - [sym_real_literal] = ACTIONS(4226), - [sym_integer_literal] = ACTIONS(4228), - [sym_hex_literal] = ACTIONS(4226), - [sym_bin_literal] = ACTIONS(4226), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4226), - }, - [2381] = { - [sym_getter] = STATE(4790), - [sym_setter] = STATE(4790), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_RBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_DASH_GT] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [sym_type_constraints] = STATE(2423), + [sym_property_delegate] = STATE(2551), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6012), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -301937,80 +302108,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2382] = { - [sym_getter] = STATE(4786), - [sym_setter] = STATE(4786), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_DASH_GT] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2381] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9286), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(5652), + [anon_sym_set] = ACTIONS(5654), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302035,177 +302206,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, + [2382] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(5308), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, [2383] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_modifiers] = STATE(9296), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_get] = ACTIONS(5726), - [anon_sym_set] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(5312), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, [2384] = { - [sym_type_constraints] = STATE(2415), - [sym_property_delegate] = STATE(2509), - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6064), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6066), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_type_constraints] = STATE(2410), + [sym_property_delegate] = STATE(2504), + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6014), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302230,79 +302499,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, [2385] = { - [sym_property_delegate] = STATE(2503), - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6008), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3880), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_type_constraints] = STATE(2528), + [sym_property_delegate] = STATE(2618), + [sym_getter] = STATE(3980), + [sym_setter] = STATE(3980), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6016), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6020), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302327,79 +302596,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, [2386] = { - [sym_property_delegate] = STATE(2518), - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6068), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3882), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_type_constraints] = STATE(2527), + [sym_property_delegate] = STATE(2670), + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6026), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302424,79 +302693,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, [2387] = { - [sym_type_constraints] = STATE(2512), - [sym_property_delegate] = STATE(2675), - [sym_getter] = STATE(5219), - [sym_setter] = STATE(5219), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6070), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6074), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [sym_property_delegate] = STATE(2558), + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_EQ] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302521,176 +302778,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, [2388] = { - [sym_primary_constructor] = STATE(3955), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2438), - [sym_type_constraints] = STATE(3281), - [sym_enum_class_body] = STATE(3516), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6080), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_RBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [anon_sym_DASH_GT] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - }, - [2389] = { - [sym_type_constraints] = STATE(2482), - [sym_property_delegate] = STATE(2660), - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6082), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6084), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_type_constraints] = STATE(2497), + [sym_property_delegate] = STATE(2632), + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6034), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6036), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(3284), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_PLUS_EQ] = ACTIONS(3286), + [anon_sym_DASH_EQ] = ACTIONS(3286), + [anon_sym_STAR_EQ] = ACTIONS(3286), + [anon_sym_SLASH_EQ] = ACTIONS(3286), + [anon_sym_PERCENT_EQ] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3284), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -302715,166 +302887,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2390] = { - [sym_primary_constructor] = STATE(3972), - [sym_class_body] = STATE(3559), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2437), - [sym_type_constraints] = STATE(3351), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6086), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2391] = { - [sym_property_delegate] = STATE(2579), - [sym_getter] = STATE(5315), - [sym_setter] = STATE(5315), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_EQ] = ACTIONS(5888), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), + [2389] = { + [sym_primary_constructor] = STATE(5132), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2449), + [sym_type_constraints] = STATE(4663), + [sym_enum_class_body] = STATE(4806), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6038), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2390] = { + [sym_primary_constructor] = STATE(3918), + [sym_class_body] = STATE(3444), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2421), + [sym_type_constraints] = STATE(3311), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6040), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_RBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + }, + [2391] = { + [sym_primary_constructor] = STATE(3927), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2427), + [sym_type_constraints] = STATE(3278), + [sym_enum_class_body] = STATE(3555), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6042), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2392] = { + [sym_property_delegate] = STATE(2470), + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6006), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6008), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), [anon_sym_data] = ACTIONS(75), [anon_sym_inner] = ACTIONS(75), @@ -302897,176 +303275,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), - }, - [2392] = { - [sym_primary_constructor] = STATE(5231), - [sym_class_body] = STATE(4751), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2451), - [sym_type_constraints] = STATE(4681), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6088), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, [2393] = { - [sym_property_delegate] = STATE(2578), - [sym_getter] = STATE(5322), - [sym_setter] = STATE(5322), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_EQ] = ACTIONS(6090), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), + [sym_primary_constructor] = STATE(3929), + [sym_class_body] = STATE(3555), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2428), + [sym_type_constraints] = STATE(3299), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6044), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2394] = { + [sym_primary_constructor] = STATE(3935), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2429), + [sym_type_constraints] = STATE(3324), + [sym_enum_class_body] = STATE(3467), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6046), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5448), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [2395] = { + [sym_property_delegate] = STATE(2472), + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303091,285 +303566,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [2394] = { - [sym_primary_constructor] = STATE(3973), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2436), - [sym_type_constraints] = STATE(3302), - [sym_enum_class_body] = STATE(3559), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6092), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2395] = { - [sym_primary_constructor] = STATE(3991), - [sym_class_body] = STATE(3589), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2435), - [sym_type_constraints] = STATE(3316), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6094), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_DASH_GT] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, [2396] = { - [sym_property_delegate] = STATE(2509), - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6064), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6066), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_type_constraints] = STATE(2518), + [sym_property_delegate] = STATE(2604), + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6048), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6050), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303394,79 +303663,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, [2397] = { - [sym_property_delegate] = STATE(2515), - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6046), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_type_constraints] = STATE(2502), + [sym_property_delegate] = STATE(2640), + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6052), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303491,79 +303760,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, [2398] = { - [sym_type_constraints] = STATE(2483), - [sym_property_delegate] = STATE(2629), - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6096), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_property_delegate] = STATE(2559), + [sym_getter] = STATE(5315), + [sym_setter] = STATE(5315), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_EQ] = ACTIONS(5800), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5804), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303588,79 +303845,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, [2399] = { - [sym_type_constraints] = STATE(2519), - [sym_property_delegate] = STATE(2650), - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6102), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_type_constraints] = STATE(2513), + [sym_property_delegate] = STATE(2609), + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303685,176 +303954,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, [2400] = { - [sym_primary_constructor] = STATE(5212), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2443), - [sym_type_constraints] = STATE(4645), - [sym_enum_class_body] = STATE(4751), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6104), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_RBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [anon_sym_DASH_GT] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_primary_constructor] = STATE(5143), + [sym_class_body] = STATE(4806), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2441), + [sym_type_constraints] = STATE(4671), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6056), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [anon_sym_DASH_GT] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, [2401] = { - [sym_type_constraints] = STATE(2467), - [sym_property_delegate] = STATE(2631), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6106), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3982), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_property_delegate] = STATE(2476), + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303879,79 +304148,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, [2402] = { - [sym_property_delegate] = STATE(2513), - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6022), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3872), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_property_delegate] = STATE(2504), + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6014), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -303976,79 +304245,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, [2403] = { - [sym_type_constraints] = STATE(2469), - [sym_property_delegate] = STATE(2633), - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6108), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3984), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_property_delegate] = STATE(2486), + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3704), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304073,79 +304342,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, [2404] = { - [sym_property_delegate] = STATE(2466), - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6006), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3866), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_property_delegate] = STATE(2500), + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6000), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304170,67 +304439,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, [2405] = { - [sym_property_delegate] = STATE(2580), - [sym_getter] = STATE(5314), - [sym_setter] = STATE(5314), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(5930), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), + [sym_property_delegate] = STATE(2495), + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6058), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304255,79 +304536,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), }, [2406] = { - [sym_property_delegate] = STATE(2584), - [sym_getter] = STATE(5354), - [sym_setter] = STATE(5354), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_EQ] = ACTIONS(5926), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5928), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), + [sym_primary_constructor] = STATE(5115), + [sym_class_body] = STATE(4838), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2436), + [sym_type_constraints] = STATE(4652), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6060), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_RBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_DASH_GT] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + }, + [2407] = { + [sym_property_delegate] = STATE(2544), + [sym_getter] = STATE(5364), + [sym_setter] = STATE(5364), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_EQ] = ACTIONS(5872), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304352,91 +304718,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [2407] = { - [sym_property_delegate] = STATE(2501), - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6110), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2408] = { + [sym_property_delegate] = STATE(2490), + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304461,79 +304827,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2408] = { - [sym_property_delegate] = STATE(2491), - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(5960), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5964), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2409] = { + [sym_type_constraints] = STATE(2516), + [sym_property_delegate] = STATE(2637), + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304558,176 +304924,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2409] = { - [sym_primary_constructor] = STATE(5226), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2423), - [sym_type_constraints] = STATE(4668), - [sym_enum_class_body] = STATE(4749), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6112), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_RBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [anon_sym_DASH_GT] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, [2410] = { - [sym_type_constraints] = STATE(2496), - [sym_property_delegate] = STATE(2625), - [sym_getter] = STATE(4026), - [sym_setter] = STATE(4026), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6114), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6116), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(3348), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_PLUS_EQ] = ACTIONS(3350), - [anon_sym_DASH_EQ] = ACTIONS(3350), - [anon_sym_STAR_EQ] = ACTIONS(3350), - [anon_sym_SLASH_EQ] = ACTIONS(3350), - [anon_sym_PERCENT_EQ] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3348), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [sym_property_delegate] = STATE(2507), + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6064), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3834), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304752,67 +305021,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, [2411] = { - [sym_property_delegate] = STATE(2582), - [sym_getter] = STATE(5414), - [sym_setter] = STATE(5414), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(5936), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), + [sym_primary_constructor] = STATE(5178), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2432), + [sym_type_constraints] = STATE(4686), + [sym_enum_class_body] = STATE(4712), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6066), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_RBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5416), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [2412] = { + [sym_type_constraints] = STATE(2487), + [sym_property_delegate] = STATE(2672), + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6068), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6070), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304837,91 +305215,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), }, - [2412] = { - [sym_property_delegate] = STATE(2505), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5992), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2413] = { + [sym_type_constraints] = STATE(2526), + [sym_property_delegate] = STATE(2631), + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6072), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -304946,79 +305312,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2413] = { - [sym_type_constraints] = STATE(2490), - [sym_property_delegate] = STATE(2627), - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6118), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6120), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2414] = { + [sym_type_constraints] = STATE(2523), + [sym_property_delegate] = STATE(2624), + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6074), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305043,79 +305409,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2414] = { - [sym_type_constraints] = STATE(2521), - [sym_property_delegate] = STATE(2643), - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6122), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2415] = { + [sym_property_delegate] = STATE(2484), + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5940), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5920), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5942), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305140,79 +305506,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2415] = { - [sym_property_delegate] = STATE(2507), - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5982), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2416] = { + [sym_property_delegate] = STATE(2548), + [sym_getter] = STATE(5348), + [sym_setter] = STATE(5348), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(5882), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_object] = ACTIONS(1770), + [anon_sym_fun] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305237,176 +305591,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2416] = { - [sym_primary_constructor] = STATE(5076), - [sym_class_body] = STATE(4812), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2432), - [sym_type_constraints] = STATE(4626), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6124), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_RBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [anon_sym_DASH_GT] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, [2417] = { - [sym_type_constraints] = STATE(2487), - [sym_property_delegate] = STATE(2658), - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6126), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_property_delegate] = STATE(2557), + [sym_getter] = STATE(5328), + [sym_setter] = STATE(5328), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_EQ] = ACTIONS(5876), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(3472), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305431,271 +305688,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, [2418] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(3696), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2419] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2420] = { - [sym_type_constraints] = STATE(2528), - [sym_property_delegate] = STATE(2694), - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6128), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_type_constraints] = STATE(2505), + [sym_property_delegate] = STATE(2680), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6076), + [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_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305720,174 +305989,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, [2421] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(3926), + [sym_class_body] = STATE(3549), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3273), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6084), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, [2422] = { - [sym_type_constraints] = STATE(2478), - [sym_property_delegate] = STATE(2689), - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6136), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_type_constraints] = STATE(2520), + [sym_property_delegate] = STATE(2698), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6086), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -305912,174 +306181,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, [2423] = { - [sym_primary_constructor] = STATE(5217), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4629), - [sym_enum_class_body] = STATE(4810), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6138), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_RBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_DASH_GT] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [2424] = { - [sym_property_delegate] = STATE(2585), - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(5988), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3942), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [sym_property_delegate] = STATE(2546), + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6092), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306104,78 +306277,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2425] = { - [sym_property_delegate] = STATE(2589), - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2424] = { + [sym_property_delegate] = STATE(2554), + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5978), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306200,78 +306373,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2426] = { - [sym_type_constraints] = STATE(2516), - [sym_property_delegate] = STATE(2728), - [sym_getter] = STATE(4803), - [sym_setter] = STATE(4803), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_RBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6140), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6142), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_DASH_GT] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2425] = { + [sym_type_constraints] = STATE(2485), + [sym_property_delegate] = STATE(2707), + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(6096), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306296,78 +306469,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2427] = { - [sym_property_delegate] = STATE(2590), - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(5970), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5972), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2426] = { + [sym_property_delegate] = STATE(2553), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6002), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306392,270 +306565,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), + [sym_multiline_comment] = ACTIONS(3), + }, + [2427] = { + [sym_primary_constructor] = STATE(3931), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [2428] = { - [sym_property_delegate] = STATE(2566), - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6148), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3926), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [sym_primary_constructor] = STATE(3934), + [sym_class_body] = STATE(3501), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3339), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6100), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [2429] = { - [sym_property_delegate] = STATE(2560), - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(5994), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [sym_primary_constructor] = STATE(3941), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3363), + [sym_enum_class_body] = STATE(3430), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, [2430] = { - [sym_property_delegate] = STATE(2552), - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6004), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_type_constraints] = STATE(2525), + [sym_property_delegate] = STATE(2717), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6104), + [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_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306680,78 +306949,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, [2431] = { - [sym_property_delegate] = STATE(2546), - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6034), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [sym_property_delegate] = STATE(2539), + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6106), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306776,174 +307045,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, [2432] = { [sym_primary_constructor] = STATE(5203), - [sym_class_body] = STATE(4764), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4639), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6150), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4692), + [sym_enum_class_body] = STATE(4702), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6108), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, [2433] = { - [sym_property_delegate] = STATE(2539), - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6038), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6040), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [sym_type_constraints] = STATE(2480), + [sym_property_delegate] = STATE(2705), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_RBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6110), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(6112), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -306968,558 +307237,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, [2434] = { - [sym_type_constraints] = STATE(2488), - [sym_property_delegate] = STATE(2731), - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6152), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6154), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3072), + [anon_sym_sealed] = ACTIONS(3072), + [anon_sym_annotation] = ACTIONS(3072), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3072), + [anon_sym_lateinit] = ACTIONS(3072), + [anon_sym_public] = ACTIONS(3072), + [anon_sym_private] = ACTIONS(3072), + [anon_sym_internal] = ACTIONS(3072), + [anon_sym_protected] = ACTIONS(3072), + [anon_sym_tailrec] = ACTIONS(3072), + [anon_sym_operator] = ACTIONS(3072), + [anon_sym_infix] = ACTIONS(3072), + [anon_sym_inline] = ACTIONS(3072), + [anon_sym_external] = ACTIONS(3072), + [sym_property_modifier] = ACTIONS(3072), + [anon_sym_abstract] = ACTIONS(3072), + [anon_sym_final] = ACTIONS(3072), + [anon_sym_open] = ACTIONS(3072), + [anon_sym_vararg] = ACTIONS(3072), + [anon_sym_noinline] = ACTIONS(3072), + [anon_sym_crossinline] = ACTIONS(3072), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3074), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2435] = { - [sym_primary_constructor] = STATE(3979), - [sym_class_body] = STATE(3562), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3303), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6156), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3061), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3063), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2436] = { - [sym_primary_constructor] = STATE(3963), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3313), - [sym_enum_class_body] = STATE(3536), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6158), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [sym_primary_constructor] = STATE(5131), + [sym_class_body] = STATE(4804), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4658), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6114), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, [2437] = { - [sym_primary_constructor] = STATE(3956), - [sym_class_body] = STATE(3536), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3274), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6160), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2438] = { - [sym_primary_constructor] = STATE(3951), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3335), - [sym_enum_class_body] = STATE(3480), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6162), + [sym_property_delegate] = STATE(2562), + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_RBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(5896), + [anon_sym_LBRACE] = ACTIONS(3298), [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_DASH_GT] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5900), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(3296), [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), [anon_sym_DOT_DOT] = ACTIONS(3298), [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), + [anon_sym_else] = ACTIONS(3296), [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3296), [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), [anon_sym_LT_EQ] = ACTIONS(3298), [anon_sym_GT_EQ] = ACTIONS(3298), [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3296), [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), [anon_sym_as_QMARK] = ACTIONS(3298), [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [2439] = { - [sym_property_delegate] = STATE(2595), - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(5980), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307544,78 +307621,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2440] = { - [sym_type_constraints] = STATE(2475), - [sym_property_delegate] = STATE(2682), - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6164), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2438] = { + [sym_property_delegate] = STATE(2551), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6012), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -307640,366 +307717,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2441] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3696), + [2439] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2442] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3185), - [anon_sym_sealed] = ACTIONS(3185), - [anon_sym_annotation] = ACTIONS(3185), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_lateinit] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_internal] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_tailrec] = ACTIONS(3185), - [anon_sym_operator] = ACTIONS(3185), - [anon_sym_infix] = ACTIONS(3185), - [anon_sym_inline] = ACTIONS(3185), - [anon_sym_external] = ACTIONS(3185), - [sym_property_modifier] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_final] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_vararg] = ACTIONS(3185), - [anon_sym_noinline] = ACTIONS(3185), - [anon_sym_crossinline] = ACTIONS(3185), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3187), - [sym_safe_nav] = ACTIONS(3696), + [2440] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2443] = { - [sym_primary_constructor] = STATE(5171), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4643), - [sym_enum_class_body] = STATE(4775), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6166), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2441] = { + [sym_primary_constructor] = STATE(5177), + [sym_class_body] = STATE(4733), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4689), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6116), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [2444] = { - [sym_type_constraints] = STATE(2527), - [sym_property_delegate] = STATE(2692), - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6168), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2442] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2443] = { + [sym_property_delegate] = STATE(2556), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5960), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308024,78 +308197,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2445] = { - [sym_type_constraints] = STATE(2526), - [sym_property_delegate] = STATE(2693), - [sym_getter] = STATE(3596), - [sym_setter] = STATE(3596), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_RBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6172), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(3350), - [anon_sym_DASH_GT] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2444] = { + [sym_type_constraints] = STATE(2514), + [sym_property_delegate] = STATE(2685), + [sym_getter] = STATE(4825), + [sym_setter] = STATE(4825), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_RBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6118), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(6120), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(3286), + [anon_sym_DASH_GT] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308120,78 +308293,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2446] = { - [sym_type_constraints] = STATE(2485), - [sym_property_delegate] = STATE(2732), - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6176), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2445] = { + [sym_type_constraints] = STATE(2465), + [sym_property_delegate] = STATE(2689), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6122), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308216,174 +308389,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + }, + [2446] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2447] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(3696), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2448] = { - [sym_property_delegate] = STATE(2536), - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6178), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [sym_type_constraints] = STATE(2524), + [sym_property_delegate] = STATE(2683), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308408,179 +308677,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, [2449] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(3696), + [sym_primary_constructor] = STATE(5156), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4690), + [sym_enum_class_body] = STATE(4733), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6126), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [2450] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3618), [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), [anon_sym_where] = ACTIONS(3137), [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(3137), [anon_sym_sealed] = ACTIONS(3137), [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), [anon_sym_override] = ACTIONS(3137), [anon_sym_lateinit] = ACTIONS(3137), [anon_sym_public] = ACTIONS(3137), @@ -308599,271 +308868,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(3137), [anon_sym_noinline] = ACTIONS(3137), [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), + [sym__backtick_identifier] = ACTIONS(1736), [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(3696), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, [2451] = { - [sym_primary_constructor] = STATE(5138), - [sym_class_body] = STATE(4775), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4651), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6180), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2452] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2453] = { - [sym_type_constraints] = STATE(2529), - [sym_property_delegate] = STATE(2698), - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6182), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4116), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [sym_type_constraints] = STATE(2521), + [sym_property_delegate] = STATE(2694), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6128), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -308888,1227 +308965,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2454] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2455] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2456] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2457] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2458] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2459] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2460] = { - [sym_type_constraints] = STATE(2530), - [sym_property_delegate] = STATE(2699), - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6184), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [2452] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2461] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4357), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2462] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_tailrec] = ACTIONS(3166), - [anon_sym_operator] = ACTIONS(3166), - [anon_sym_infix] = ACTIONS(3166), - [anon_sym_inline] = ACTIONS(3166), - [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), + [2453] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2463] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2464] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1565), - [sym__comparison_operator] = STATE(1567), - [sym__in_operator] = STATE(1568), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1569), - [sym__multiplicative_operator] = STATE(1570), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1571), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4339), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4347), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4349), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_QMARK_COLON] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), - [anon_sym_LT_EQ] = ACTIONS(4363), - [anon_sym_GT_EQ] = ACTIONS(4363), - [anon_sym_BANGin] = ACTIONS(4365), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4369), - [anon_sym_PERCENT] = ACTIONS(4347), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2465] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2466] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3872), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2454] = { + [sym_property_delegate] = STATE(2534), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310133,77 +309253,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2467] = { - [sym_property_delegate] = STATE(2633), - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6108), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3984), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2455] = { + [sym_type_constraints] = STATE(2515), + [sym_property_delegate] = STATE(2722), + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(6132), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310228,172 +309349,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2468] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2456] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2469] = { - [sym_property_delegate] = STATE(2635), - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6186), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2457] = { + [sym_property_delegate] = STATE(2540), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(5982), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -310418,838 +309541,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2470] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [2471] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [2472] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [2473] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), - [sym_multiline_comment] = ACTIONS(3), - }, - [2474] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2475] = { - [sym_property_delegate] = STATE(2715), - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6188), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4112), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [2458] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4305), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(4309), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), + [anon_sym_EQ_EQ] = ACTIONS(4309), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2476] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2459] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2477] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2460] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2478] = { - [sym_property_delegate] = STATE(2699), - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6184), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2461] = { + [sym_property_delegate] = STATE(2536), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(5928), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(5898), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311274,155 +309925,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2479] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2480] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), + [2462] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3143), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), [anon_sym_SEMI] = ACTIONS(3143), [anon_sym_get] = ACTIONS(3141), [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), [anon_sym_in] = ACTIONS(3141), - [anon_sym_while] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3602), + [anon_sym_COLON_COLON] = ACTIONS(3642), [anon_sym_BANG_EQ] = ACTIONS(3141), [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), [anon_sym_EQ_EQ] = ACTIONS(3141), @@ -311434,12 +309990,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), [anon_sym_suspend] = ACTIONS(3141), [anon_sym_sealed] = ACTIONS(3141), [anon_sym_annotation] = ACTIONS(3141), @@ -311468,262 +310024,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3141), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3602), + [sym__automatic_semicolon] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2481] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(3602), + [2463] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2482] = { - [sym_property_delegate] = STATE(2658), - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6126), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [2464] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(2085), + [sym__comparison_operator] = STATE(2083), + [sym__in_operator] = STATE(2082), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(2081), + [sym__multiplicative_operator] = STATE(2080), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2079), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4289), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4297), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4299), + [anon_sym_DOT_DOT] = ACTIONS(4301), + [anon_sym_QMARK_COLON] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(4313), + [anon_sym_GT_EQ] = ACTIONS(4313), + [anon_sym_BANGin] = ACTIONS(4315), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(4319), + [anon_sym_PERCENT] = ACTIONS(4297), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2483] = { - [sym_property_delegate] = STATE(2631), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6106), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3982), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2465] = { + [sym_property_delegate] = STATE(2718), + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6134), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311748,173 +310308,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2484] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_tailrec] = ACTIONS(3166), - [anon_sym_operator] = ACTIONS(3166), - [anon_sym_infix] = ACTIONS(3166), - [anon_sym_inline] = ACTIONS(3166), - [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2485] = { - [sym_property_delegate] = STATE(2698), - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6182), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4116), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2466] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -311939,76 +310402,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2486] = { - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5964), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2467] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6008), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312033,77 +310497,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2487] = { - [sym_property_delegate] = STATE(2650), - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6102), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2468] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312128,78 +310592,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2488] = { - [sym_property_delegate] = STATE(2732), - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6176), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2469] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2470] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312224,76 +310782,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2489] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2471] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312318,77 +310877,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2490] = { - [sym_property_delegate] = STATE(2629), - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6096), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2472] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312413,77 +310972,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2491] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3866), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2473] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312508,172 +311067,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2492] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2474] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3141), + [anon_sym_sealed] = ACTIONS(3141), + [anon_sym_annotation] = ACTIONS(3141), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_lateinit] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_internal] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_tailrec] = ACTIONS(3141), + [anon_sym_operator] = ACTIONS(3141), + [anon_sym_infix] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_external] = ACTIONS(3141), + [sym_property_modifier] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_final] = ACTIONS(3141), + [anon_sym_open] = ACTIONS(3141), + [anon_sym_vararg] = ACTIONS(3141), + [anon_sym_noinline] = ACTIONS(3141), + [anon_sym_crossinline] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2493] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2475] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2476] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3704), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312698,172 +311352,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2494] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3137), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [2477] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2478] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2495] = { - [sym_getter] = STATE(4007), - [sym_setter] = STATE(4007), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2479] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312888,77 +311637,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2496] = { - [sym_property_delegate] = STATE(2627), - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6118), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6120), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2480] = { + [sym_property_delegate] = STATE(2722), + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6130), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6132), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -312983,77 +311733,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2497] = { - [sym_getter] = STATE(3913), - [sym_setter] = STATE(3913), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2481] = { + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313078,77 +311827,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2498] = { - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2482] = { + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5942), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313173,172 +311922,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2499] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2500] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2483] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313363,77 +312017,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2501] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3862), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2484] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313458,77 +312112,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2502] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2485] = { + [sym_property_delegate] = STATE(2694), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6128), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313553,77 +312208,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2503] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2486] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313648,77 +312302,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2504] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2487] = { + [sym_property_delegate] = STATE(2631), + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6072), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313743,77 +312397,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2505] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3880), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2488] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313838,77 +312492,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2506] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2489] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2490] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(3700), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -313933,77 +312682,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2507] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3878), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2491] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314028,77 +312777,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2508] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2492] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2493] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2494] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2495] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314123,77 +313157,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2509] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3874), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2496] = { + [sym_getter] = STATE(5124), + [sym_setter] = STATE(5124), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314218,77 +313252,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2510] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2497] = { + [sym_property_delegate] = STATE(2672), + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6068), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6070), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314313,77 +313347,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2511] = { - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9274), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6066), - [anon_sym_get] = ACTIONS(5984), - [anon_sym_set] = ACTIONS(5986), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2498] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314408,77 +313442,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2512] = { - [sym_property_delegate] = STATE(2660), - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6082), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6084), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2499] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2500] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314503,172 +313632,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2513] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [2501] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2514] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2502] = { + [sym_property_delegate] = STATE(2646), + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6136), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314693,77 +313822,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2515] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3882), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2503] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314788,78 +313917,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2516] = { - [sym_property_delegate] = STATE(2731), - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6152), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6154), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2504] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3834), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314884,76 +314012,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2517] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2505] = { + [sym_property_delegate] = STATE(2689), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6122), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -314978,77 +314108,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2518] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2506] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315073,77 +314202,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2519] = { - [sym_property_delegate] = STATE(2643), - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6122), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2507] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3836), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315168,77 +314297,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2520] = { - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2508] = { + [sym_getter] = STATE(3899), + [sym_setter] = STATE(3899), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [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), @@ -315263,77 +314392,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2521] = { - [sym_property_delegate] = STATE(2614), - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6190), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6072), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2509] = { + [sym_getter] = STATE(3830), + [sym_setter] = STATE(3830), + [sym_modifiers] = STATE(9304), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(5924), + [anon_sym_set] = ACTIONS(5926), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315358,267 +314487,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2522] = { - [sym_getter] = STATE(5112), - [sym_setter] = STATE(5112), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [2510] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2523] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [2511] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2524] = { - [sym_getter] = STATE(5105), - [sym_setter] = STATE(5105), - [sym_modifiers] = STATE(9188), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(5966), - [anon_sym_set] = ACTIONS(5968), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2512] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2513] = { + [sym_property_delegate] = STATE(2670), + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6026), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315643,173 +314867,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - }, - [2525] = { - [sym_indexing_suffix] = STATE(3496), - [sym_navigation_suffix] = STATE(3493), - [sym_call_suffix] = STATE(3488), - [sym_annotated_lambda] = STATE(3486), - [sym_type_arguments] = STATE(8245), - [sym_value_arguments] = STATE(2772), - [sym_lambda_literal] = STATE(3484), - [sym__equality_operator] = STATE(1838), - [sym__comparison_operator] = STATE(1839), - [sym__in_operator] = STATE(1840), - [sym__is_operator] = STATE(5997), - [sym__additive_operator] = STATE(1841), - [sym__multiplicative_operator] = STATE(1842), - [sym__as_operator] = STATE(5983), - [sym__postfix_unary_operator] = STATE(3479), - [sym__member_access_operator] = STATE(7718), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1844), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_DOT] = ACTIONS(3574), - [anon_sym_as] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(1431), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4676), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4684), - [sym_label] = ACTIONS(3590), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(4688), - [anon_sym_QMARK_COLON] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4692), - [anon_sym_PIPE_PIPE] = ACTIONS(4694), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(4696), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4698), - [anon_sym_EQ_EQ] = ACTIONS(4696), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4698), - [anon_sym_LT_EQ] = ACTIONS(4700), - [anon_sym_GT_EQ] = ACTIONS(4700), - [anon_sym_BANGin] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_BANGis] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_as_QMARK] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_BANG_BANG] = ACTIONS(3620), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(3602), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2526] = { - [sym_property_delegate] = STATE(2692), - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6168), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2514] = { + [sym_property_delegate] = STATE(2707), + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6094), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6096), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315834,77 +314963,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2527] = { - [sym_property_delegate] = STATE(2689), - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6136), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2515] = { + [sym_property_delegate] = STATE(2683), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6124), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -315929,77 +315058,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2528] = { - [sym_property_delegate] = STATE(2685), - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6192), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2516] = { + [sym_property_delegate] = STATE(2640), + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6052), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316024,77 +315152,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2529] = { - [sym_property_delegate] = STATE(2682), - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6164), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2517] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2518] = { + [sym_property_delegate] = STATE(2624), + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6074), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316119,77 +315342,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2530] = { - [sym_property_delegate] = STATE(2694), - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6128), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6130), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2519] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2520] = { + [sym_property_delegate] = STATE(2700), + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6138), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316214,170 +315533,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - }, - [2531] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3088), - [anon_sym_sealed] = ACTIONS(3088), - [anon_sym_annotation] = ACTIONS(3088), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_lateinit] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_internal] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_tailrec] = ACTIONS(3088), - [anon_sym_operator] = ACTIONS(3088), - [anon_sym_infix] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_external] = ACTIONS(3088), - [sym_property_modifier] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_final] = ACTIONS(3088), - [anon_sym_open] = ACTIONS(3088), - [anon_sym_vararg] = ACTIONS(3088), - [anon_sym_noinline] = ACTIONS(3088), - [anon_sym_crossinline] = ACTIONS(3088), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2532] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2521] = { + [sym_property_delegate] = STATE(2680), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6076), + [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_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316402,76 +315628,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2533] = { - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6040), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2522] = { + [sym_getter] = STATE(5128), + [sym_setter] = STATE(5128), + [sym_modifiers] = STATE(9174), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(5970), + [anon_sym_set] = ACTIONS(5972), + [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), @@ -316496,76 +315722,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2534] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2523] = { + [sym_property_delegate] = STATE(2637), + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6062), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316590,76 +315817,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2535] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2524] = { + [sym_property_delegate] = STATE(2717), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6104), + [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_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316684,76 +315913,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2536] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3938), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2525] = { + [sym_property_delegate] = STATE(2698), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6086), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6078), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316778,76 +316008,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2537] = { - [sym_getter] = STATE(3459), - [sym_setter] = STATE(3459), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2526] = { + [sym_property_delegate] = STATE(2609), + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316872,76 +316102,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2538] = { - [sym_getter] = STATE(3455), - [sym_setter] = STATE(3455), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2527] = { + [sym_property_delegate] = STATE(2607), + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6140), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -316966,76 +316197,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2539] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3932), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2528] = { + [sym_property_delegate] = STATE(2604), + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6048), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6018), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6050), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317060,170 +316292,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2540] = { - [sym_primary_constructor] = STATE(5475), - [sym_class_body] = STATE(4812), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2670), - [sym_type_constraints] = STATE(4626), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6194), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2529] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(4549), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), + [anon_sym_EQ_EQ] = ACTIONS(4549), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_annotation] = ACTIONS(3137), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_lateinit] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_tailrec] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_infix] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym_external] = ACTIONS(3137), + [sym_property_modifier] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_final] = ACTIONS(3137), + [anon_sym_open] = ACTIONS(3137), + [anon_sym_vararg] = ACTIONS(3137), + [anon_sym_noinline] = ACTIONS(3137), + [anon_sym_crossinline] = ACTIONS(3137), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), [sym_multiline_comment] = ACTIONS(3), }, - [2541] = { - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2530] = { + [sym_indexing_suffix] = STATE(3584), + [sym_navigation_suffix] = STATE(3585), + [sym_call_suffix] = STATE(3586), + [sym_annotated_lambda] = STATE(3587), + [sym_type_arguments] = STATE(8181), + [sym_value_arguments] = STATE(2807), + [sym_lambda_literal] = STATE(3588), + [sym__equality_operator] = STATE(1840), + [sym__comparison_operator] = STATE(1841), + [sym__in_operator] = STATE(1842), + [sym__is_operator] = STATE(6191), + [sym__additive_operator] = STATE(1843), + [sym__multiplicative_operator] = STATE(1844), + [sym__as_operator] = STATE(6188), + [sym__postfix_unary_operator] = STATE(3589), + [sym__member_access_operator] = STATE(7612), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1846), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_DOT] = ACTIONS(3522), + [anon_sym_as] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(1582), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4537), + [sym_label] = ACTIONS(3538), + [anon_sym_in] = ACTIONS(4539), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(4541), + [anon_sym_QMARK_COLON] = ACTIONS(4543), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(4553), + [anon_sym_GT_EQ] = ACTIONS(4553), + [anon_sym_BANGin] = ACTIONS(4555), + [anon_sym_is] = ACTIONS(3560), + [anon_sym_BANGis] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(4557), + [anon_sym_DASH] = ACTIONS(4557), + [anon_sym_SLASH] = ACTIONS(4559), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_as_QMARK] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3568), + [anon_sym_DASH_DASH] = ACTIONS(3568), + [anon_sym_BANG_BANG] = ACTIONS(3568), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(3550), + [sym_multiline_comment] = ACTIONS(3), + }, + [2531] = { + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317248,170 +316577,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2542] = { - [sym_primary_constructor] = STATE(5469), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2665), - [sym_type_constraints] = STATE(4645), - [sym_enum_class_body] = STATE(4751), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6196), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2543] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2532] = { + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317436,264 +316671,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2544] = { - [sym_primary_constructor] = STATE(5467), - [sym_class_body] = STATE(4751), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2664), - [sym_type_constraints] = STATE(4681), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6198), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2545] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3094), - [anon_sym_sealed] = ACTIONS(3094), - [anon_sym_annotation] = ACTIONS(3094), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3094), - [anon_sym_lateinit] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_internal] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_tailrec] = ACTIONS(3094), - [anon_sym_operator] = ACTIONS(3094), - [anon_sym_infix] = ACTIONS(3094), - [anon_sym_inline] = ACTIONS(3094), - [anon_sym_external] = ACTIONS(3094), - [sym_property_modifier] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_final] = ACTIONS(3094), - [anon_sym_open] = ACTIONS(3094), - [anon_sym_vararg] = ACTIONS(3094), - [anon_sym_noinline] = ACTIONS(3094), - [anon_sym_crossinline] = ACTIONS(3094), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2546] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3944), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2533] = { + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317718,170 +316765,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2547] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3106), - [anon_sym_sealed] = ACTIONS(3106), - [anon_sym_annotation] = ACTIONS(3106), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_lateinit] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_internal] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_tailrec] = ACTIONS(3106), - [anon_sym_operator] = ACTIONS(3106), - [anon_sym_infix] = ACTIONS(3106), - [anon_sym_inline] = ACTIONS(3106), - [anon_sym_external] = ACTIONS(3106), - [sym_property_modifier] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_final] = ACTIONS(3106), - [anon_sym_open] = ACTIONS(3106), - [anon_sym_vararg] = ACTIONS(3106), - [anon_sym_noinline] = ACTIONS(3106), - [anon_sym_crossinline] = ACTIONS(3106), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2548] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2534] = { + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -317906,76 +316859,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2549] = { - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2535] = { + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318000,264 +316953,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2550] = { - [sym_primary_constructor] = STATE(5443), - [sym_class_body] = STATE(5245), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2662), - [sym_type_constraints] = STATE(5050), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6200), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - }, - [2551] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3110), - [anon_sym_sealed] = ACTIONS(3110), - [anon_sym_annotation] = ACTIONS(3110), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3110), - [anon_sym_lateinit] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_internal] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_tailrec] = ACTIONS(3110), - [anon_sym_operator] = ACTIONS(3110), - [anon_sym_infix] = ACTIONS(3110), - [anon_sym_inline] = ACTIONS(3110), - [anon_sym_external] = ACTIONS(3110), - [sym_property_modifier] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_final] = ACTIONS(3110), - [anon_sym_open] = ACTIONS(3110), - [anon_sym_vararg] = ACTIONS(3110), - [anon_sym_noinline] = ACTIONS(3110), - [anon_sym_crossinline] = ACTIONS(3110), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2552] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3920), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2536] = { + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318282,170 +317047,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2553] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3193), - [anon_sym_sealed] = ACTIONS(3193), - [anon_sym_annotation] = ACTIONS(3193), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_lateinit] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_internal] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_tailrec] = ACTIONS(3193), - [anon_sym_operator] = ACTIONS(3193), - [anon_sym_infix] = ACTIONS(3193), - [anon_sym_inline] = ACTIONS(3193), - [anon_sym_external] = ACTIONS(3193), - [sym_property_modifier] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_final] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_vararg] = ACTIONS(3193), - [anon_sym_noinline] = ACTIONS(3193), - [anon_sym_crossinline] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2554] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2537] = { + [sym_getter] = STATE(3400), + [sym_setter] = STATE(3400), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -318470,546 +317141,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2555] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3152), - [anon_sym_sealed] = ACTIONS(3152), - [anon_sym_annotation] = ACTIONS(3152), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_lateinit] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_internal] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_tailrec] = ACTIONS(3152), - [anon_sym_operator] = ACTIONS(3152), - [anon_sym_infix] = ACTIONS(3152), - [anon_sym_inline] = ACTIONS(3152), - [anon_sym_external] = ACTIONS(3152), - [sym_property_modifier] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_final] = ACTIONS(3152), - [anon_sym_open] = ACTIONS(3152), - [anon_sym_vararg] = ACTIONS(3152), - [anon_sym_noinline] = ACTIONS(3152), - [anon_sym_crossinline] = ACTIONS(3152), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2556] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3133), - [anon_sym_sealed] = ACTIONS(3133), - [anon_sym_annotation] = ACTIONS(3133), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3133), - [anon_sym_lateinit] = ACTIONS(3133), - [anon_sym_public] = ACTIONS(3133), - [anon_sym_private] = ACTIONS(3133), - [anon_sym_internal] = ACTIONS(3133), - [anon_sym_protected] = ACTIONS(3133), - [anon_sym_tailrec] = ACTIONS(3133), - [anon_sym_operator] = ACTIONS(3133), - [anon_sym_infix] = ACTIONS(3133), - [anon_sym_inline] = ACTIONS(3133), - [anon_sym_external] = ACTIONS(3133), - [sym_property_modifier] = ACTIONS(3133), - [anon_sym_abstract] = ACTIONS(3133), - [anon_sym_final] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_vararg] = ACTIONS(3133), - [anon_sym_noinline] = ACTIONS(3133), - [anon_sym_crossinline] = ACTIONS(3133), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2557] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3129), - [anon_sym_sealed] = ACTIONS(3129), - [anon_sym_annotation] = ACTIONS(3129), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3129), - [anon_sym_lateinit] = ACTIONS(3129), - [anon_sym_public] = ACTIONS(3129), - [anon_sym_private] = ACTIONS(3129), - [anon_sym_internal] = ACTIONS(3129), - [anon_sym_protected] = ACTIONS(3129), - [anon_sym_tailrec] = ACTIONS(3129), - [anon_sym_operator] = ACTIONS(3129), - [anon_sym_infix] = ACTIONS(3129), - [anon_sym_inline] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3129), - [sym_property_modifier] = ACTIONS(3129), - [anon_sym_abstract] = ACTIONS(3129), - [anon_sym_final] = ACTIONS(3129), - [anon_sym_open] = ACTIONS(3129), - [anon_sym_vararg] = ACTIONS(3129), - [anon_sym_noinline] = ACTIONS(3129), - [anon_sym_crossinline] = ACTIONS(3129), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2558] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3125), - [anon_sym_sealed] = ACTIONS(3125), - [anon_sym_annotation] = ACTIONS(3125), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3125), - [anon_sym_lateinit] = ACTIONS(3125), - [anon_sym_public] = ACTIONS(3125), - [anon_sym_private] = ACTIONS(3125), - [anon_sym_internal] = ACTIONS(3125), - [anon_sym_protected] = ACTIONS(3125), - [anon_sym_tailrec] = ACTIONS(3125), - [anon_sym_operator] = ACTIONS(3125), - [anon_sym_infix] = ACTIONS(3125), - [anon_sym_inline] = ACTIONS(3125), - [anon_sym_external] = ACTIONS(3125), - [sym_property_modifier] = ACTIONS(3125), - [anon_sym_abstract] = ACTIONS(3125), - [anon_sym_final] = ACTIONS(3125), - [anon_sym_open] = ACTIONS(3125), - [anon_sym_vararg] = ACTIONS(3125), - [anon_sym_noinline] = ACTIONS(3125), - [anon_sym_crossinline] = ACTIONS(3125), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2559] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3121), - [anon_sym_sealed] = ACTIONS(3121), - [anon_sym_annotation] = ACTIONS(3121), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_lateinit] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_internal] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_tailrec] = ACTIONS(3121), - [anon_sym_operator] = ACTIONS(3121), - [anon_sym_infix] = ACTIONS(3121), - [anon_sym_inline] = ACTIONS(3121), - [anon_sym_external] = ACTIONS(3121), - [sym_property_modifier] = ACTIONS(3121), - [anon_sym_abstract] = ACTIONS(3121), - [anon_sym_final] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_vararg] = ACTIONS(3121), - [anon_sym_noinline] = ACTIONS(3121), - [anon_sym_crossinline] = ACTIONS(3121), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2560] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3926), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2538] = { + [sym_getter] = STATE(3393), + [sym_setter] = STATE(3393), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319034,452 +317235,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2561] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2562] = { - [sym_primary_constructor] = STATE(5461), - [sym__class_parameters] = STATE(4625), - [sym_type_parameters] = STATE(2661), - [sym_type_constraints] = STATE(4668), - [sym_enum_class_body] = STATE(4749), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6202), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - }, - [2563] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3141), - [anon_sym_sealed] = ACTIONS(3141), - [anon_sym_annotation] = ACTIONS(3141), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_override] = ACTIONS(3141), - [anon_sym_lateinit] = ACTIONS(3141), - [anon_sym_public] = ACTIONS(3141), - [anon_sym_private] = ACTIONS(3141), - [anon_sym_internal] = ACTIONS(3141), - [anon_sym_protected] = ACTIONS(3141), - [anon_sym_tailrec] = ACTIONS(3141), - [anon_sym_operator] = ACTIONS(3141), - [anon_sym_infix] = ACTIONS(3141), - [anon_sym_inline] = ACTIONS(3141), - [anon_sym_external] = ACTIONS(3141), - [sym_property_modifier] = ACTIONS(3141), - [anon_sym_abstract] = ACTIONS(3141), - [anon_sym_final] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_vararg] = ACTIONS(3141), - [anon_sym_noinline] = ACTIONS(3141), - [anon_sym_crossinline] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2564] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_annotation] = ACTIONS(3159), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_lateinit] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_tailrec] = ACTIONS(3159), - [anon_sym_operator] = ACTIONS(3159), - [anon_sym_infix] = ACTIONS(3159), - [anon_sym_inline] = ACTIONS(3159), - [anon_sym_external] = ACTIONS(3159), - [sym_property_modifier] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_final] = ACTIONS(3159), - [anon_sym_open] = ACTIONS(3159), - [anon_sym_vararg] = ACTIONS(3159), - [anon_sym_noinline] = ACTIONS(3159), - [anon_sym_crossinline] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2565] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2539] = { + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3840), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319504,76 +317329,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2566] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2540] = { + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(3880), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -319598,546 +317423,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - }, - [2567] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3166), - [anon_sym_sealed] = ACTIONS(3166), - [anon_sym_annotation] = ACTIONS(3166), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_lateinit] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_internal] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_tailrec] = ACTIONS(3166), - [anon_sym_operator] = ACTIONS(3166), - [anon_sym_infix] = ACTIONS(3166), - [anon_sym_inline] = ACTIONS(3166), - [anon_sym_external] = ACTIONS(3166), - [sym_property_modifier] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_final] = ACTIONS(3166), - [anon_sym_open] = ACTIONS(3166), - [anon_sym_vararg] = ACTIONS(3166), - [anon_sym_noinline] = ACTIONS(3166), - [anon_sym_crossinline] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2568] = { - [sym_primary_constructor] = STATE(5442), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2657), - [sym_type_constraints] = STATE(5031), - [sym_enum_class_body] = STATE(5085), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6204), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2569] = { - [sym_primary_constructor] = STATE(4193), - [sym_class_body] = STATE(4022), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2656), - [sym_type_constraints] = STATE(3755), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6206), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), - [sym_multiline_comment] = ACTIONS(3), - }, - [2570] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3173), - [anon_sym_sealed] = ACTIONS(3173), - [anon_sym_annotation] = ACTIONS(3173), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_lateinit] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_internal] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_tailrec] = ACTIONS(3173), - [anon_sym_operator] = ACTIONS(3173), - [anon_sym_infix] = ACTIONS(3173), - [anon_sym_inline] = ACTIONS(3173), - [anon_sym_external] = ACTIONS(3173), - [sym_property_modifier] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_final] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_vararg] = ACTIONS(3173), - [anon_sym_noinline] = ACTIONS(3173), - [anon_sym_crossinline] = ACTIONS(3173), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2571] = { - [sym_primary_constructor] = STATE(5455), - [sym_class_body] = STATE(5085), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2649), - [sym_type_constraints] = STATE(5024), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6208), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2541] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3063), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3061), + [anon_sym_sealed] = ACTIONS(3061), + [anon_sym_annotation] = ACTIONS(3061), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_lateinit] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_internal] = ACTIONS(3061), + [anon_sym_protected] = ACTIONS(3061), + [anon_sym_tailrec] = ACTIONS(3061), + [anon_sym_operator] = ACTIONS(3061), + [anon_sym_infix] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_external] = ACTIONS(3061), + [sym_property_modifier] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_open] = ACTIONS(3061), + [anon_sym_vararg] = ACTIONS(3061), + [anon_sym_noinline] = ACTIONS(3061), + [anon_sym_crossinline] = ACTIONS(3061), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3063), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2572] = { - [sym_getter] = STATE(4786), - [sym_setter] = STATE(4786), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2542] = { + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320162,452 +317611,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - }, - [2573] = { - [sym_primary_constructor] = STATE(4175), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2653), - [sym_type_constraints] = STATE(3741), - [sym_enum_class_body] = STATE(4001), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6210), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2574] = { - [sym_primary_constructor] = STATE(4173), - [sym_class_body] = STATE(4001), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2652), - [sym_type_constraints] = STATE(3716), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6212), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2575] = { - [sym_primary_constructor] = STATE(4152), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2645), - [sym_type_constraints] = STATE(3790), - [sym_enum_class_body] = STATE(3909), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6214), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - }, - [2576] = { - [sym_primary_constructor] = STATE(5439), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2646), - [sym_type_constraints] = STATE(5002), - [sym_enum_class_body] = STATE(5100), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6216), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2577] = { - [sym_getter] = STATE(4790), - [sym_setter] = STATE(4790), - [sym_modifiers] = STATE(9438), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(5996), - [anon_sym_set] = ACTIONS(5998), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2543] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320632,63 +317705,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2578] = { - [sym_getter] = STATE(5360), - [sym_setter] = STATE(5360), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), + [2544] = { + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320713,76 +317786,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, - [2579] = { - [sym_getter] = STATE(5322), - [sym_setter] = STATE(5322), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(2036), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), + [2545] = { + [sym_getter] = STATE(4836), + [sym_setter] = STATE(4836), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320807,76 +317893,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), + [sym_multiline_comment] = ACTIONS(3), }, - [2580] = { - [sym_getter] = STATE(5315), - [sym_setter] = STATE(5315), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(2050), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), + [2546] = { + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3868), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -320901,170 +317987,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), }, - [2581] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3137), - [anon_sym_sealed] = ACTIONS(3137), - [anon_sym_annotation] = ACTIONS(3137), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3137), - [anon_sym_lateinit] = ACTIONS(3137), - [anon_sym_public] = ACTIONS(3137), - [anon_sym_private] = ACTIONS(3137), - [anon_sym_internal] = ACTIONS(3137), - [anon_sym_protected] = ACTIONS(3137), - [anon_sym_tailrec] = ACTIONS(3137), - [anon_sym_operator] = ACTIONS(3137), - [anon_sym_infix] = ACTIONS(3137), - [anon_sym_inline] = ACTIONS(3137), - [anon_sym_external] = ACTIONS(3137), - [sym_property_modifier] = ACTIONS(3137), - [anon_sym_abstract] = ACTIONS(3137), - [anon_sym_final] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_vararg] = ACTIONS(3137), - [anon_sym_noinline] = ACTIONS(3137), - [anon_sym_crossinline] = ACTIONS(3137), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), + [2547] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3080), + [anon_sym_sealed] = ACTIONS(3080), + [anon_sym_annotation] = ACTIONS(3080), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3080), + [anon_sym_lateinit] = ACTIONS(3080), + [anon_sym_public] = ACTIONS(3080), + [anon_sym_private] = ACTIONS(3080), + [anon_sym_internal] = ACTIONS(3080), + [anon_sym_protected] = ACTIONS(3080), + [anon_sym_tailrec] = ACTIONS(3080), + [anon_sym_operator] = ACTIONS(3080), + [anon_sym_infix] = ACTIONS(3080), + [anon_sym_inline] = ACTIONS(3080), + [anon_sym_external] = ACTIONS(3080), + [sym_property_modifier] = ACTIONS(3080), + [anon_sym_abstract] = ACTIONS(3080), + [anon_sym_final] = ACTIONS(3080), + [anon_sym_open] = ACTIONS(3080), + [anon_sym_vararg] = ACTIONS(3080), + [anon_sym_noinline] = ACTIONS(3080), + [anon_sym_crossinline] = ACTIONS(3080), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3139), - [sym_safe_nav] = ACTIONS(3696), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2582] = { - [sym_getter] = STATE(5314), - [sym_setter] = STATE(5314), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(2044), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), + [2548] = { + [sym_getter] = STATE(5364), + [sym_setter] = STATE(5364), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321089,89 +318162,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [2583] = { - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5972), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2549] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3122), + [anon_sym_sealed] = ACTIONS(3122), + [anon_sym_annotation] = ACTIONS(3122), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3122), + [anon_sym_lateinit] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_internal] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_tailrec] = ACTIONS(3122), + [anon_sym_operator] = ACTIONS(3122), + [anon_sym_infix] = ACTIONS(3122), + [anon_sym_inline] = ACTIONS(3122), + [anon_sym_external] = ACTIONS(3122), + [sym_property_modifier] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_final] = ACTIONS(3122), + [anon_sym_open] = ACTIONS(3122), + [anon_sym_vararg] = ACTIONS(3122), + [anon_sym_noinline] = ACTIONS(3122), + [anon_sym_crossinline] = ACTIONS(3122), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2550] = { + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321196,63 +318363,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2584] = { - [sym_getter] = STATE(5414), - [sym_setter] = STATE(5414), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(2070), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), + [2551] = { + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321277,89 +318457,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), }, - [2585] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(3940), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2552] = { + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321384,76 +318551,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2586] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2553] = { + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321478,76 +318645,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2587] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2554] = { + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321572,170 +318739,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2588] = { - [sym_primary_constructor] = STATE(4178), - [sym_class_body] = STATE(3589), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2609), - [sym_type_constraints] = STATE(3316), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6218), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2589] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3942), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2555] = { + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321760,76 +318833,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2590] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3936), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2556] = { + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(3884), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321854,63 +318927,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2591] = { - [sym_getter] = STATE(5354), - [sym_setter] = STATE(5354), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(5928), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), + [2557] = { + [sym_getter] = STATE(5348), + [sym_setter] = STATE(5348), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [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(2018), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -321935,89 +319008,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [2592] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2558] = { + [sym_getter] = STATE(5381), + [sym_setter] = STATE(5381), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322042,264 +319102,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2593] = { - [sym_primary_constructor] = STATE(4188), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2605), - [sym_type_constraints] = STATE(3302), - [sym_enum_class_body] = STATE(3559), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6220), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2594] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), }, - [2595] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9405), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_get] = ACTIONS(5956), - [anon_sym_set] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2559] = { + [sym_getter] = STATE(5328), + [sym_setter] = STATE(5328), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322324,356 +319196,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2596] = { - [sym_primary_constructor] = STATE(4162), - [sym_class_body] = STATE(3559), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2602), - [sym_type_constraints] = STATE(3351), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6222), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), - [sym_multiline_comment] = ACTIONS(3), - }, - [2597] = { - [sym_indexing_suffix] = STATE(3918), - [sym_navigation_suffix] = STATE(3911), - [sym_call_suffix] = STATE(3910), - [sym_annotated_lambda] = STATE(3905), - [sym_type_arguments] = STATE(8131), - [sym_value_arguments] = STATE(3002), - [sym_lambda_literal] = STATE(3901), - [sym__equality_operator] = STATE(1443), - [sym__comparison_operator] = STATE(1444), - [sym__in_operator] = STATE(1445), - [sym__is_operator] = STATE(6277), - [sym__additive_operator] = STATE(1446), - [sym__multiplicative_operator] = STATE(1447), - [sym__as_operator] = STATE(6278), - [sym__postfix_unary_operator] = STATE(3900), - [sym__member_access_operator] = STATE(7624), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1449), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_DOT] = ACTIONS(3668), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(4782), - [sym_label] = ACTIONS(3684), - [anon_sym_in] = ACTIONS(4784), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_QMARK_COLON] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(3696), - [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(4798), - [anon_sym_GT_EQ] = ACTIONS(4798), - [anon_sym_BANGin] = ACTIONS(4800), - [anon_sym_is] = ACTIONS(3706), - [anon_sym_BANGis] = ACTIONS(3708), - [anon_sym_PLUS] = ACTIONS(4802), - [anon_sym_DASH] = ACTIONS(4802), - [anon_sym_SLASH] = ACTIONS(4804), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_as_QMARK] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3714), - [anon_sym_DASH_DASH] = ACTIONS(3714), - [anon_sym_BANG_BANG] = ACTIONS(3714), - [anon_sym_suspend] = ACTIONS(3148), - [anon_sym_sealed] = ACTIONS(3148), - [anon_sym_annotation] = ACTIONS(3148), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_lateinit] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_internal] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_tailrec] = ACTIONS(3148), - [anon_sym_operator] = ACTIONS(3148), - [anon_sym_infix] = ACTIONS(3148), - [anon_sym_inline] = ACTIONS(3148), - [anon_sym_external] = ACTIONS(3148), - [sym_property_modifier] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_final] = ACTIONS(3148), - [anon_sym_open] = ACTIONS(3148), - [anon_sym_vararg] = ACTIONS(3148), - [anon_sym_noinline] = ACTIONS(3148), - [anon_sym_crossinline] = ACTIONS(3148), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(3696), - [sym_multiline_comment] = ACTIONS(3), - }, - [2598] = { - [sym_primary_constructor] = STATE(4148), - [sym__class_parameters] = STATE(3314), - [sym_type_parameters] = STATE(2608), - [sym_type_constraints] = STATE(3281), - [sym_enum_class_body] = STATE(3516), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6224), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(5488), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [2599] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2560] = { + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322698,169 +319303,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2600] = { - [sym_primary_constructor] = STATE(4218), - [sym_class_body] = STATE(4001), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2700), - [sym_type_constraints] = STATE(3716), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6226), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [2561] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3050), + [anon_sym_sealed] = ACTIONS(3050), + [anon_sym_annotation] = ACTIONS(3050), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_override] = ACTIONS(3050), + [anon_sym_lateinit] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_internal] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_tailrec] = ACTIONS(3050), + [anon_sym_operator] = ACTIONS(3050), + [anon_sym_infix] = ACTIONS(3050), + [anon_sym_inline] = ACTIONS(3050), + [anon_sym_external] = ACTIONS(3050), + [sym_property_modifier] = ACTIONS(3050), + [anon_sym_abstract] = ACTIONS(3050), + [anon_sym_final] = ACTIONS(3050), + [anon_sym_open] = ACTIONS(3050), + [anon_sym_vararg] = ACTIONS(3050), + [anon_sym_noinline] = ACTIONS(3050), + [anon_sym_crossinline] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2601] = { - [sym_type_constraints] = STATE(2741), - [sym_property_delegate] = STATE(2874), - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4748), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2562] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3874), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -322885,167 +319491,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2602] = { - [sym_primary_constructor] = STATE(4150), - [sym_class_body] = STATE(3536), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3274), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6236), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2563] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3100), + [anon_sym_sealed] = ACTIONS(3100), + [anon_sym_annotation] = ACTIONS(3100), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_lateinit] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_internal] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_tailrec] = ACTIONS(3100), + [anon_sym_operator] = ACTIONS(3100), + [anon_sym_infix] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_external] = ACTIONS(3100), + [sym_property_modifier] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_final] = ACTIONS(3100), + [anon_sym_open] = ACTIONS(3100), + [anon_sym_vararg] = ACTIONS(3100), + [anon_sym_noinline] = ACTIONS(3100), + [anon_sym_crossinline] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2564] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3141), + [anon_sym_sealed] = ACTIONS(3141), + [anon_sym_annotation] = ACTIONS(3141), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_lateinit] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_internal] = ACTIONS(3141), + [anon_sym_protected] = ACTIONS(3141), + [anon_sym_tailrec] = ACTIONS(3141), + [anon_sym_operator] = ACTIONS(3141), + [anon_sym_infix] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_external] = ACTIONS(3141), + [sym_property_modifier] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_final] = ACTIONS(3141), + [anon_sym_open] = ACTIONS(3141), + [anon_sym_vararg] = ACTIONS(3141), + [anon_sym_noinline] = ACTIONS(3141), + [anon_sym_crossinline] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3143), + [sym__automatic_semicolon] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2603] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2565] = { + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5978), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323070,355 +319773,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2604] = { - [sym_type_constraints] = STATE(2705), - [sym_property_delegate] = STATE(2780), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6238), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [2566] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3044), + [anon_sym_sealed] = ACTIONS(3044), + [anon_sym_annotation] = ACTIONS(3044), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [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(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2605] = { - [sym_primary_constructor] = STATE(4181), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3313), - [sym_enum_class_body] = STATE(3536), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2567] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2606] = { - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [2568] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3126), + [anon_sym_sealed] = ACTIONS(3126), + [anon_sym_annotation] = ACTIONS(3126), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_lateinit] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_internal] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_tailrec] = ACTIONS(3126), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_infix] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym_external] = ACTIONS(3126), + [sym_property_modifier] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_open] = ACTIONS(3126), + [anon_sym_vararg] = ACTIONS(3126), + [anon_sym_noinline] = ACTIONS(3126), + [anon_sym_crossinline] = ACTIONS(3126), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2607] = { - [sym_type_constraints] = STATE(2735), - [sym_property_delegate] = STATE(2828), - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6250), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2569] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3057), + [anon_sym_sealed] = ACTIONS(3057), + [anon_sym_annotation] = ACTIONS(3057), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_lateinit] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_internal] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_tailrec] = ACTIONS(3057), + [anon_sym_operator] = ACTIONS(3057), + [anon_sym_infix] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_external] = ACTIONS(3057), + [sym_property_modifier] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_open] = ACTIONS(3057), + [anon_sym_vararg] = ACTIONS(3057), + [anon_sym_noinline] = ACTIONS(3057), + [anon_sym_crossinline] = ACTIONS(3057), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2570] = { + [sym_primary_constructor] = STATE(4159), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2638), + [sym_type_constraints] = STATE(3324), + [sym_enum_class_body] = STATE(3467), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6142), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5448), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [2571] = { + [sym_getter] = STATE(5315), + [sym_setter] = STATE(5315), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5804), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323443,341 +320324,653 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, - [2608] = { - [sym_primary_constructor] = STATE(4186), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3335), - [sym_enum_class_body] = STATE(3480), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2572] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3084), + [anon_sym_sealed] = ACTIONS(3084), + [anon_sym_annotation] = ACTIONS(3084), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3084), + [anon_sym_lateinit] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_internal] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_tailrec] = ACTIONS(3084), + [anon_sym_operator] = ACTIONS(3084), + [anon_sym_infix] = ACTIONS(3084), + [anon_sym_inline] = ACTIONS(3084), + [anon_sym_external] = ACTIONS(3084), + [sym_property_modifier] = ACTIONS(3084), + [anon_sym_abstract] = ACTIONS(3084), + [anon_sym_final] = ACTIONS(3084), + [anon_sym_open] = ACTIONS(3084), + [anon_sym_vararg] = ACTIONS(3084), + [anon_sym_noinline] = ACTIONS(3084), + [anon_sym_crossinline] = ACTIONS(3084), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(3642), [sym_multiline_comment] = ACTIONS(3), }, - [2609] = { - [sym_primary_constructor] = STATE(4187), - [sym_class_body] = STATE(3562), - [sym__class_parameters] = STATE(3314), - [sym_type_constraints] = STATE(3303), - [sym_modifiers] = STATE(9520), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5506), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5510), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2573] = { + [sym_primary_constructor] = STATE(5468), + [sym_class_body] = STATE(4838), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2659), + [sym_type_constraints] = STATE(4652), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6144), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), [sym_multiline_comment] = ACTIONS(3), }, - [2610] = { - [sym_type_constraints] = STATE(2738), - [sym_property_delegate] = STATE(2860), - [sym_getter] = STATE(3596), - [sym_setter] = STATE(3596), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6260), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6262), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [2574] = { + [sym_primary_constructor] = STATE(4172), + [sym_class_body] = STATE(3555), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2666), + [sym_type_constraints] = STATE(3299), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6146), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, - [2611] = { - [sym_getter] = STATE(5354), - [sym_setter] = STATE(5354), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), + [2575] = { + [sym_primary_constructor] = STATE(4185), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2665), + [sym_type_constraints] = STATE(3278), + [sym_enum_class_body] = STATE(3555), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6148), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2576] = { + [sym_primary_constructor] = STATE(5454), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2616), + [sym_type_constraints] = STATE(4663), + [sym_enum_class_body] = STATE(4806), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6150), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2577] = { + [sym_primary_constructor] = STATE(5461), + [sym_class_body] = STATE(4806), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2613), + [sym_type_constraints] = STATE(4671), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2578] = { + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323802,87 +320995,922 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), }, - [2612] = { - [sym_getter] = STATE(5105), - [sym_setter] = STATE(5105), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2579] = { + [sym_primary_constructor] = STATE(4189), + [sym_class_body] = STATE(3444), + [sym__class_parameters] = STATE(3320), + [sym_type_parameters] = STATE(2660), + [sym_type_constraints] = STATE(3311), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6154), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + }, + [2580] = { + [sym_primary_constructor] = STATE(5459), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2622), + [sym_type_constraints] = STATE(5029), + [sym_enum_class_body] = STATE(5099), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6156), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2581] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3137), + [anon_sym_sealed] = ACTIONS(3137), + [anon_sym_annotation] = ACTIONS(3137), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_lateinit] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_internal] = ACTIONS(3137), + [anon_sym_protected] = ACTIONS(3137), + [anon_sym_tailrec] = ACTIONS(3137), + [anon_sym_operator] = ACTIONS(3137), + [anon_sym_infix] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym_external] = ACTIONS(3137), + [sym_property_modifier] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_final] = ACTIONS(3137), + [anon_sym_open] = ACTIONS(3137), + [anon_sym_vararg] = ACTIONS(3137), + [anon_sym_noinline] = ACTIONS(3137), + [anon_sym_crossinline] = ACTIONS(3137), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2582] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3076), + [anon_sym_sealed] = ACTIONS(3076), + [anon_sym_annotation] = ACTIONS(3076), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3076), + [anon_sym_lateinit] = ACTIONS(3076), + [anon_sym_public] = ACTIONS(3076), + [anon_sym_private] = ACTIONS(3076), + [anon_sym_internal] = ACTIONS(3076), + [anon_sym_protected] = ACTIONS(3076), + [anon_sym_tailrec] = ACTIONS(3076), + [anon_sym_operator] = ACTIONS(3076), + [anon_sym_infix] = ACTIONS(3076), + [anon_sym_inline] = ACTIONS(3076), + [anon_sym_external] = ACTIONS(3076), + [sym_property_modifier] = ACTIONS(3076), + [anon_sym_abstract] = ACTIONS(3076), + [anon_sym_final] = ACTIONS(3076), + [anon_sym_open] = ACTIONS(3076), + [anon_sym_vararg] = ACTIONS(3076), + [anon_sym_noinline] = ACTIONS(3076), + [anon_sym_crossinline] = ACTIONS(3076), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2583] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3130), + [anon_sym_sealed] = ACTIONS(3130), + [anon_sym_annotation] = ACTIONS(3130), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_lateinit] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_internal] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_tailrec] = ACTIONS(3130), + [anon_sym_operator] = ACTIONS(3130), + [anon_sym_infix] = ACTIONS(3130), + [anon_sym_inline] = ACTIONS(3130), + [anon_sym_external] = ACTIONS(3130), + [sym_property_modifier] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_final] = ACTIONS(3130), + [anon_sym_open] = ACTIONS(3130), + [anon_sym_vararg] = ACTIONS(3130), + [anon_sym_noinline] = ACTIONS(3130), + [anon_sym_crossinline] = ACTIONS(3130), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2584] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3115), + [anon_sym_sealed] = ACTIONS(3115), + [anon_sym_annotation] = ACTIONS(3115), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_lateinit] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_internal] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_tailrec] = ACTIONS(3115), + [anon_sym_operator] = ACTIONS(3115), + [anon_sym_infix] = ACTIONS(3115), + [anon_sym_inline] = ACTIONS(3115), + [anon_sym_external] = ACTIONS(3115), + [sym_property_modifier] = ACTIONS(3115), + [anon_sym_abstract] = ACTIONS(3115), + [anon_sym_final] = ACTIONS(3115), + [anon_sym_open] = ACTIONS(3115), + [anon_sym_vararg] = ACTIONS(3115), + [anon_sym_noinline] = ACTIONS(3115), + [anon_sym_crossinline] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2585] = { + [sym_primary_constructor] = STATE(5475), + [sym_class_body] = STATE(5107), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2645), + [sym_type_constraints] = STATE(4962), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6158), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + }, + [2586] = { + [sym_primary_constructor] = STATE(4166), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2650), + [sym_type_constraints] = STATE(3710), + [sym_enum_class_body] = STATE(4007), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6160), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5742), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), + }, + [2587] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3111), + [anon_sym_sealed] = ACTIONS(3111), + [anon_sym_annotation] = ACTIONS(3111), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3111), + [anon_sym_lateinit] = ACTIONS(3111), + [anon_sym_public] = ACTIONS(3111), + [anon_sym_private] = ACTIONS(3111), + [anon_sym_internal] = ACTIONS(3111), + [anon_sym_protected] = ACTIONS(3111), + [anon_sym_tailrec] = ACTIONS(3111), + [anon_sym_operator] = ACTIONS(3111), + [anon_sym_infix] = ACTIONS(3111), + [anon_sym_inline] = ACTIONS(3111), + [anon_sym_external] = ACTIONS(3111), + [sym_property_modifier] = ACTIONS(3111), + [anon_sym_abstract] = ACTIONS(3111), + [anon_sym_final] = ACTIONS(3111), + [anon_sym_open] = ACTIONS(3111), + [anon_sym_vararg] = ACTIONS(3111), + [anon_sym_noinline] = ACTIONS(3111), + [anon_sym_crossinline] = ACTIONS(3111), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2588] = { + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9449), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(5930), + [anon_sym_set] = ACTIONS(5932), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -323907,75 +321935,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2613] = { - [sym_getter] = STATE(5112), - [sym_setter] = STATE(5112), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2589] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2590] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324000,75 +322123,546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2614] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4054), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2591] = { + [sym_primary_constructor] = STATE(4177), + [sym_class_body] = STATE(4017), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2608), + [sym_type_constraints] = STATE(3780), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6162), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3186), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + }, + [2592] = { + [sym_indexing_suffix] = STATE(3834), + [sym_navigation_suffix] = STATE(3836), + [sym_call_suffix] = STATE(3840), + [sym_annotated_lambda] = STATE(3847), + [sym_type_arguments] = STATE(8300), + [sym_value_arguments] = STATE(3056), + [sym_lambda_literal] = STATE(3853), + [sym__equality_operator] = STATE(1445), + [sym__comparison_operator] = STATE(1446), + [sym__in_operator] = STATE(1447), + [sym__is_operator] = STATE(6052), + [sym__additive_operator] = STATE(1448), + [sym__multiplicative_operator] = STATE(1449), + [sym__as_operator] = STATE(6051), + [sym__postfix_unary_operator] = STATE(3858), + [sym__member_access_operator] = STATE(7620), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1451), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3614), + [anon_sym_as] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(4738), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(4746), + [sym_label] = ACTIONS(3630), + [anon_sym_in] = ACTIONS(4748), + [anon_sym_DOT_DOT] = ACTIONS(4750), + [anon_sym_QMARK_COLON] = ACTIONS(4752), + [anon_sym_AMP_AMP] = ACTIONS(4754), + [anon_sym_PIPE_PIPE] = ACTIONS(4756), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [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(4762), + [anon_sym_GT_EQ] = ACTIONS(4762), + [anon_sym_BANGin] = ACTIONS(4764), + [anon_sym_is] = ACTIONS(3652), + [anon_sym_BANGis] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_SLASH] = ACTIONS(4768), + [anon_sym_PERCENT] = ACTIONS(4746), + [anon_sym_as_QMARK] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), + [anon_sym_BANG_BANG] = ACTIONS(3660), + [anon_sym_suspend] = ACTIONS(3107), + [anon_sym_sealed] = ACTIONS(3107), + [anon_sym_annotation] = ACTIONS(3107), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_lateinit] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_internal] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_tailrec] = ACTIONS(3107), + [anon_sym_operator] = ACTIONS(3107), + [anon_sym_infix] = ACTIONS(3107), + [anon_sym_inline] = ACTIONS(3107), + [anon_sym_external] = ACTIONS(3107), + [sym_property_modifier] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_final] = ACTIONS(3107), + [anon_sym_open] = ACTIONS(3107), + [anon_sym_vararg] = ACTIONS(3107), + [anon_sym_noinline] = ACTIONS(3107), + [anon_sym_crossinline] = ACTIONS(3107), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(3642), + [sym_multiline_comment] = ACTIONS(3), + }, + [2593] = { + [sym_primary_constructor] = STATE(5462), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2655), + [sym_type_constraints] = STATE(5044), + [sym_enum_class_body] = STATE(5100), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6164), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5760), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), + }, + [2594] = { + [sym_primary_constructor] = STATE(5420), + [sym__class_parameters] = STATE(4651), + [sym_type_parameters] = STATE(2612), + [sym_type_constraints] = STATE(4686), + [sym_enum_class_body] = STATE(4712), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6166), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(5414), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5416), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3200), + [sym_safe_nav] = ACTIONS(3200), + [sym_multiline_comment] = ACTIONS(3), + }, + [2595] = { + [sym_primary_constructor] = STATE(5471), + [sym_class_body] = STATE(5099), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2610), + [sym_type_constraints] = STATE(4972), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6168), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2596] = { + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9406), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(5900), + [anon_sym_get] = ACTIONS(5902), + [anon_sym_set] = ACTIONS(5904), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324093,168 +322687,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2615] = { - [sym_primary_constructor] = STATE(4207), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2691), - [sym_type_constraints] = STATE(3741), - [sym_enum_class_body] = STATE(4001), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6264), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [2597] = { + [sym_primary_constructor] = STATE(4173), + [sym_class_body] = STATE(3914), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2605), + [sym_type_constraints] = STATE(3806), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6170), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), [sym_multiline_comment] = ACTIONS(3), }, - [2616] = { - [sym_type_constraints] = STATE(2704), - [sym_property_delegate] = STATE(2784), - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6266), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4487), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2598] = { + [sym_primary_constructor] = STATE(4175), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2606), + [sym_type_constraints] = STATE(3745), + [sym_enum_class_body] = STATE(3914), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6172), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2599] = { + [sym_primary_constructor] = STATE(4206), + [sym_class_body] = STATE(3914), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2702), + [sym_type_constraints] = STATE(3806), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6174), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2600] = { + [sym_type_constraints] = STATE(2744), + [sym_property_delegate] = STATE(2838), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6176), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324279,76 +323061,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2617] = { - [sym_type_constraints] = STATE(2745), - [sym_property_delegate] = STATE(2871), - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6268), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2601] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324373,74 +323153,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2618] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2602] = { + [sym_primary_constructor] = STATE(4204), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2712), + [sym_type_constraints] = STATE(3745), + [sym_enum_class_body] = STATE(3914), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6184), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2603] = { + [sym_type_constraints] = STATE(2720), + [sym_property_delegate] = STATE(2768), + [sym_getter] = STATE(3980), + [sym_setter] = STATE(3980), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6186), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6190), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324465,75 +323339,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2619] = { - [sym_type_constraints] = STATE(2708), - [sym_property_delegate] = STATE(2769), - [sym_getter] = STATE(4026), - [sym_setter] = STATE(4026), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6270), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6272), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2604] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324558,63 +323432,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2620] = { - [sym_getter] = STATE(5414), - [sym_setter] = STATE(5414), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), + [2605] = { + [sym_primary_constructor] = STATE(4167), + [sym_class_body] = STATE(3893), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2606] = { + [sym_primary_constructor] = STATE(4168), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3711), + [sym_enum_class_body] = STATE(3893), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6198), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2607] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3996), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324639,88 +323711,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), }, - [2621] = { - [sym_type_constraints] = STATE(2752), - [sym_property_delegate] = STATE(2811), - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6274), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4750), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2608] = { + [sym_primary_constructor] = STATE(4176), + [sym_class_body] = STATE(3947), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3738), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + }, + [2609] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3930), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324745,74 +323897,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2622] = { - [sym_type_constraints] = STATE(2707), - [sym_property_delegate] = STATE(2787), - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6276), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6278), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2610] = { + [sym_primary_constructor] = STATE(5480), + [sym_class_body] = STATE(5082), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5048), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6202), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2611] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324837,63 +324083,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2623] = { - [sym_getter] = STATE(5314), - [sym_setter] = STATE(5314), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), + [2612] = { + [sym_primary_constructor] = STATE(5484), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4692), + [sym_enum_class_body] = STATE(4702), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2613] = { + [sym_primary_constructor] = STATE(5474), + [sym_class_body] = STATE(4733), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4689), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2614] = { + [sym_primary_constructor] = STATE(5522), + [sym_class_body] = STATE(5107), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2716), + [sym_type_constraints] = STATE(4962), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + }, + [2615] = { + [sym_type_constraints] = STATE(2740), + [sym_property_delegate] = STATE(2822), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -324918,88 +324456,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), }, - [2624] = { - [sym_type_constraints] = STATE(2737), - [sym_property_delegate] = STATE(2820), - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6280), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2616] = { + [sym_primary_constructor] = STATE(5473), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4690), + [sym_enum_class_body] = STATE(4733), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5410), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2617] = { + [sym_type_constraints] = STATE(2747), + [sym_property_delegate] = STATE(2816), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6214), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325024,74 +324642,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2625] = { - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6120), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2618] = { + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6050), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325116,75 +324734,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2626] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2619] = { + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325209,75 +324827,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2627] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2620] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325302,75 +324920,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2628] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2621] = { + [sym_type_constraints] = STATE(2684), + [sym_property_delegate] = STATE(2774), + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6220), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4380), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [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), @@ -325395,75 +325013,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2629] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3982), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2622] = { + [sym_primary_constructor] = STATE(5479), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5057), + [sym_enum_class_body] = STATE(5082), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2623] = { + [sym_type_constraints] = STATE(2738), + [sym_property_delegate] = STATE(2864), + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6224), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(6226), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325488,75 +325200,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2630] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2624] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(3992), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325581,75 +325292,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2631] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(3984), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2625] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325674,75 +325385,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2632] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2626] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325767,75 +325478,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2633] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2627] = { + [sym_type_constraints] = STATE(2719), + [sym_property_delegate] = STATE(2767), + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6228), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_COMMA] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6230), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325860,75 +325571,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2634] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2628] = { + [sym_primary_constructor] = STATE(4197), + [sym_class_body] = STATE(4017), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2693), + [sym_type_constraints] = STATE(3780), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6236), + [anon_sym_LBRACK] = ACTIONS(3186), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_as] = ACTIONS(3182), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3182), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3186), + [sym_label] = ACTIONS(3186), + [anon_sym_in] = ACTIONS(3182), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [anon_sym_QMARK_COLON] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_PIPE_PIPE] = ACTIONS(3186), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3186), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3186), + [anon_sym_LT_EQ] = ACTIONS(3186), + [anon_sym_GT_EQ] = ACTIONS(3186), + [anon_sym_BANGin] = ACTIONS(3186), + [anon_sym_is] = ACTIONS(3182), + [anon_sym_BANGis] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_PERCENT] = ACTIONS(3186), + [anon_sym_as_QMARK] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_BANG_BANG] = ACTIONS(3186), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3186), + [sym__automatic_semicolon] = ACTIONS(3186), + [sym_safe_nav] = ACTIONS(3186), + [sym_multiline_comment] = ACTIONS(3), + }, + [2629] = { + [sym_primary_constructor] = STATE(5487), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2727), + [sym_type_constraints] = STATE(5029), + [sym_enum_class_body] = STATE(5099), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6238), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2630] = { + [sym_type_constraints] = STATE(2733), + [sym_property_delegate] = STATE(2766), + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6240), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -325953,75 +325850,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2635] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2631] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(3988), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326046,75 +325943,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2636] = { - [sym_getter] = STATE(3913), - [sym_setter] = STATE(3913), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2632] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6070), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326139,75 +326036,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2637] = { - [sym_getter] = STATE(4007), - [sym_setter] = STATE(4007), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2633] = { + [sym_getter] = STATE(5373), + [sym_setter] = STATE(5373), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326232,80 +326117,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), }, - [2638] = { - [sym_type_constraints] = STATE(2706), - [sym_property_delegate] = STATE(2778), - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6282), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4491), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), + [2634] = { + [sym_primary_constructor] = STATE(5517), + [sym_class_body] = STATE(5099), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2730), + [sym_type_constraints] = STATE(4972), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_DOT] = ACTIONS(3148), + [anon_sym_as] = ACTIONS(3148), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3148), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_STAR] = ACTIONS(3154), + [sym_label] = ACTIONS(3154), + [anon_sym_in] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(3154), + [anon_sym_QMARK_COLON] = ACTIONS(3154), + [anon_sym_AMP_AMP] = ACTIONS(3154), + [anon_sym_PIPE_PIPE] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(3154), + [anon_sym_BANG_EQ] = ACTIONS(3148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), + [anon_sym_EQ_EQ] = ACTIONS(3148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), + [anon_sym_LT_EQ] = ACTIONS(3154), + [anon_sym_GT_EQ] = ACTIONS(3154), + [anon_sym_BANGin] = ACTIONS(3154), + [anon_sym_is] = ACTIONS(3148), + [anon_sym_BANGis] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_PERCENT] = ACTIONS(3154), + [anon_sym_as_QMARK] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BANG_BANG] = ACTIONS(3154), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3154), + [sym__automatic_semicolon] = ACTIONS(3154), + [sym_safe_nav] = ACTIONS(3154), + [sym_multiline_comment] = ACTIONS(3), + }, + [2635] = { + [sym_type_constraints] = STATE(2743), + [sym_property_delegate] = STATE(2842), + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(6248), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), [anon_sym_value] = ACTIONS(75), [anon_sym_override] = ACTIONS(79), [anon_sym_lateinit] = ACTIONS(79), @@ -326325,63 +326316,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2639] = { - [sym_getter] = STATE(5315), - [sym_setter] = STATE(5315), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), + [2636] = { + [sym_type_constraints] = STATE(2728), + [sym_property_delegate] = STATE(2779), + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4424), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326406,88 +326408,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), }, - [2640] = { - [sym_type_constraints] = STATE(2746), - [sym_property_delegate] = STATE(2852), - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6284), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6286), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2637] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(3990), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326512,75 +326501,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2641] = { - [sym_type_constraints] = STATE(2742), - [sym_property_delegate] = STATE(2839), - [sym_getter] = STATE(4803), - [sym_setter] = STATE(4803), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6288), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(6290), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2638] = { + [sym_primary_constructor] = STATE(4154), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3363), + [sym_enum_class_body] = STATE(3430), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [2639] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326605,62 +326687,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2642] = { - [sym_getter] = STATE(5360), - [sym_setter] = STATE(5360), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), + [2640] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3986), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326685,87 +326780,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), }, - [2643] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4052), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2641] = { + [sym_primary_constructor] = STATE(5513), + [sym__class_parameters] = STATE(5011), + [sym_type_parameters] = STATE(2725), + [sym_type_constraints] = STATE(5044), + [sym_enum_class_body] = STATE(5100), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6254), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5760), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), + }, + [2642] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326790,63 +326966,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2644] = { - [sym_getter] = STATE(5375), - [sym_setter] = STATE(5375), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), + [2643] = { + [sym_type_constraints] = STATE(2688), + [sym_property_delegate] = STATE(2782), + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4386), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -326871,261 +327059,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), - }, - [2645] = { - [sym_primary_constructor] = STATE(4151), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3823), - [sym_enum_class_body] = STATE(3831), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6292), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [2646] = { - [sym_primary_constructor] = STATE(5440), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4961), - [sym_enum_class_body] = STATE(5163), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6294), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2647] = { - [sym_getter] = STATE(5352), - [sym_setter] = STATE(5352), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), + [2644] = { + [sym_type_constraints] = STATE(2706), + [sym_property_delegate] = STATE(2777), + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4430), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [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), @@ -327150,87 +327152,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [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), }, - [2648] = { - [sym_type_constraints] = STATE(2725), - [sym_property_delegate] = STATE(2798), - [sym_getter] = STATE(5219), - [sym_setter] = STATE(5219), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6296), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6298), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2645] = { + [sym_primary_constructor] = STATE(5457), + [sym_class_body] = STATE(5088), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5034), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6260), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + }, + [2646] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(3984), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327255,168 +327338,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), - [sym_multiline_comment] = ACTIONS(3), - }, - [2649] = { - [sym_primary_constructor] = STATE(5438), - [sym_class_body] = STATE(5098), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(5020), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6304), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2650] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2647] = { + [sym_getter] = STATE(3899), + [sym_setter] = STATE(3899), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [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), @@ -327441,76 +327431,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2651] = { - [sym_type_constraints] = STATE(2740), - [sym_property_delegate] = STATE(2850), - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4734), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2648] = { + [sym_getter] = STATE(3830), + [sym_setter] = STATE(3830), + [sym_modifiers] = STATE(9414), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(6022), + [anon_sym_set] = ACTIONS(6024), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327535,353 +327524,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - }, - [2652] = { - [sym_primary_constructor] = STATE(4149), - [sym_class_body] = STATE(3964), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3783), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2653] = { - [sym_primary_constructor] = STATE(4160), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3734), - [sym_enum_class_body] = STATE(3964), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6310), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2654] = { - [sym_primary_constructor] = STATE(5503), - [sym_class_body] = STATE(5245), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2726), - [sym_type_constraints] = STATE(5050), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6312), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2655] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2649] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -327906,261 +327617,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - }, - [2656] = { - [sym_primary_constructor] = STATE(4182), - [sym_class_body] = STATE(4033), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3742), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6314), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2657] = { - [sym_primary_constructor] = STATE(5433), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4999), - [sym_enum_class_body] = STATE(5098), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6316), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2650] = { + [sym_primary_constructor] = STATE(4165), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3743), + [sym_enum_class_body] = STATE(3876), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = 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), }, - [2658] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(3976), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2651] = { + [sym_getter] = STATE(5364), + [sym_setter] = STATE(5364), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328185,75 +327791,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [2659] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2652] = { + [sym_type_constraints] = STATE(2750), + [sym_property_delegate] = STATE(2831), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328278,75 +327897,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2660] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4012), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2653] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [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(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328371,540 +327989,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2661] = { - [sym_primary_constructor] = STATE(5459), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4629), - [sym_enum_class_body] = STATE(4810), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6318), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [2662] = { - [sym_primary_constructor] = STATE(5427), - [sym_class_body] = STATE(5087), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4962), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6320), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - }, - [2663] = { - [sym_primary_constructor] = STATE(4208), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2734), - [sym_type_constraints] = STATE(3790), - [sym_enum_class_body] = STATE(3909), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6322), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), - [sym_multiline_comment] = ACTIONS(3), - }, - [2664] = { - [sym_primary_constructor] = STATE(5463), - [sym_class_body] = STATE(4775), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4651), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6324), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [2665] = { - [sym_primary_constructor] = STATE(5464), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4643), - [sym_enum_class_body] = STATE(4775), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6326), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5484), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2666] = { - [sym_type_constraints] = STATE(2717), - [sym_property_delegate] = STATE(2785), - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6328), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4450), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2654] = { + [sym_getter] = STATE(5381), + [sym_setter] = STATE(5381), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -328929,75 +328070,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), + }, + [2655] = { + [sym_primary_constructor] = STATE(5423), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5012), + [sym_enum_class_body] = STATE(5191), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6266), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3240), + [sym__automatic_semicolon] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [2667] = { - [sym_type_constraints] = STATE(2718), - [sym_property_delegate] = STATE(2806), - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6330), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4464), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2656] = { + [sym_type_constraints] = STATE(2721), + [sym_property_delegate] = STATE(2787), + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6268), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329022,168 +328268,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2668] = { - [sym_primary_constructor] = STATE(5527), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2719), - [sym_type_constraints] = STATE(5002), - [sym_enum_class_body] = STATE(5100), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6332), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_DOT] = ACTIONS(3234), - [anon_sym_as] = ACTIONS(3234), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3234), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3238), - [sym_label] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3234), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_QMARK_COLON] = ACTIONS(3238), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3234), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3238), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3238), - [anon_sym_BANGin] = ACTIONS(3238), - [anon_sym_is] = ACTIONS(3234), - [anon_sym_BANGis] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_PERCENT] = ACTIONS(3238), - [anon_sym_as_QMARK] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_BANG_BANG] = ACTIONS(3238), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3238), - [sym__automatic_semicolon] = ACTIONS(3238), - [sym_safe_nav] = ACTIONS(3238), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2669] = { - [sym_type_constraints] = STATE(2720), - [sym_property_delegate] = STATE(2795), - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6334), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2657] = { + [sym_type_constraints] = STATE(2739), + [sym_property_delegate] = STATE(2867), + [sym_getter] = STATE(3484), + [sym_setter] = STATE(3484), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6270), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(6272), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329208,262 +328362,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2670] = { - [sym_primary_constructor] = STATE(5470), - [sym_class_body] = STATE(4764), - [sym__class_parameters] = STATE(4625), - [sym_type_constraints] = STATE(4639), - [sym_modifiers] = STATE(9538), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6336), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5482), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5486), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - }, - [2671] = { - [sym_primary_constructor] = STATE(5513), - [sym_class_body] = STATE(5085), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2721), - [sym_type_constraints] = STATE(5024), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6338), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2672] = { - [sym_type_constraints] = STATE(2743), - [sym_property_delegate] = STATE(2842), - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6340), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2658] = { + [sym_type_constraints] = STATE(2741), + [sym_property_delegate] = STATE(2862), + [sym_getter] = STATE(4825), + [sym_setter] = STATE(4825), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6274), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(6276), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329488,74 +328455,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2673] = { - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9395), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(6098), - [anon_sym_set] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2659] = { + [sym_primary_constructor] = STATE(5421), + [sym_class_body] = STATE(4804), + [sym__class_parameters] = STATE(4651), + [sym_type_constraints] = STATE(4658), + [sym_modifiers] = STATE(9780), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6278), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5408), + [anon_sym_LBRACE] = ACTIONS(5432), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5412), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5416), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + }, + [2660] = { + [sym_primary_constructor] = STATE(4178), + [sym_class_body] = STATE(3549), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3273), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6280), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + }, + [2661] = { + [sym_getter] = STATE(5315), + [sym_setter] = STATE(5315), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329580,63 +328721,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3298), }, - [2674] = { - [sym_getter] = STATE(5322), - [sym_setter] = STATE(5322), - [sym_modifiers] = STATE(9187), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_get] = ACTIONS(5892), - [anon_sym_set] = ACTIONS(5894), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), + [2662] = { + [sym_primary_constructor] = STATE(4195), + [sym__class_parameters] = STATE(3793), + [sym_type_parameters] = STATE(2729), + [sym_type_constraints] = STATE(3710), + [sym_enum_class_body] = STATE(4007), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6282), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_DOT] = ACTIONS(3196), + [anon_sym_as] = ACTIONS(3196), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(5740), + [anon_sym_GT] = ACTIONS(3196), + [anon_sym_where] = ACTIONS(5742), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), + }, + [2663] = { + [sym_getter] = STATE(5393), + [sym_setter] = STATE(5393), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329661,87 +328907,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), }, - [2675] = { - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9233), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6084), - [anon_sym_get] = ACTIONS(6076), - [anon_sym_set] = ACTIONS(6078), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2664] = { + [sym_type_constraints] = STATE(2679), + [sym_property_delegate] = STATE(2795), + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6284), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -329766,168 +329012,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2676] = { - [sym_primary_constructor] = STATE(4202), - [sym_class_body] = STATE(4022), - [sym__class_parameters] = STATE(3756), - [sym_type_parameters] = STATE(2711), - [sym_type_constraints] = STATE(3755), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6342), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_DOT] = ACTIONS(3244), - [anon_sym_as] = ACTIONS(3244), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3244), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_STAR] = ACTIONS(3248), - [sym_label] = ACTIONS(3248), - [anon_sym_in] = ACTIONS(3244), - [anon_sym_DOT_DOT] = ACTIONS(3248), - [anon_sym_QMARK_COLON] = ACTIONS(3248), - [anon_sym_AMP_AMP] = ACTIONS(3248), - [anon_sym_PIPE_PIPE] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_COLON_COLON] = ACTIONS(3248), - [anon_sym_BANG_EQ] = ACTIONS(3244), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3248), - [anon_sym_EQ_EQ] = ACTIONS(3244), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3248), - [anon_sym_LT_EQ] = ACTIONS(3248), - [anon_sym_GT_EQ] = ACTIONS(3248), - [anon_sym_BANGin] = ACTIONS(3248), - [anon_sym_is] = ACTIONS(3244), - [anon_sym_BANGis] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_PERCENT] = ACTIONS(3248), - [anon_sym_as_QMARK] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [anon_sym_BANG_BANG] = ACTIONS(3248), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [2665] = { + [sym_primary_constructor] = STATE(4153), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3501), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3248), - [sym__automatic_semicolon] = ACTIONS(3248), - [sym_safe_nav] = ACTIONS(3248), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [2677] = { - [sym_type_constraints] = STATE(2722), - [sym_property_delegate] = STATE(2807), - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6344), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6346), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2666] = { + [sym_primary_constructor] = STATE(4158), + [sym_class_body] = STATE(3501), + [sym__class_parameters] = STATE(3320), + [sym_type_constraints] = STATE(3339), + [sym_modifiers] = STATE(9707), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6288), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5442), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5446), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2667] = { + [sym_getter] = STATE(5128), + [sym_setter] = STATE(5128), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [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), @@ -329952,167 +329291,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2678] = { - [sym_primary_constructor] = STATE(5499), - [sym__class_parameters] = STATE(5064), - [sym_type_parameters] = STATE(2723), - [sym_type_constraints] = STATE(5031), - [sym_enum_class_body] = STATE(5085), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6348), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_DOT] = ACTIONS(3200), - [anon_sym_as] = ACTIONS(3200), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5768), - [anon_sym_GT] = ACTIONS(3200), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_STAR] = ACTIONS(3206), - [sym_label] = ACTIONS(3206), - [anon_sym_in] = ACTIONS(3200), - [anon_sym_DOT_DOT] = ACTIONS(3206), - [anon_sym_QMARK_COLON] = ACTIONS(3206), - [anon_sym_AMP_AMP] = ACTIONS(3206), - [anon_sym_PIPE_PIPE] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_COLON_COLON] = ACTIONS(3206), - [anon_sym_BANG_EQ] = ACTIONS(3200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3206), - [anon_sym_EQ_EQ] = ACTIONS(3200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3206), - [anon_sym_LT_EQ] = ACTIONS(3206), - [anon_sym_GT_EQ] = ACTIONS(3206), - [anon_sym_BANGin] = ACTIONS(3206), - [anon_sym_is] = ACTIONS(3200), - [anon_sym_BANGis] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_as_QMARK] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_BANG_BANG] = ACTIONS(3206), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3206), - [sym__automatic_semicolon] = ACTIONS(3206), - [sym_safe_nav] = ACTIONS(3206), + [sym__backtick_identifier] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2679] = { - [sym_type_constraints] = STATE(2759), - [sym_property_delegate] = STATE(2911), - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6350), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4820), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2668] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330137,75 +329384,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2680] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2669] = { + [sym_getter] = STATE(5348), + [sym_setter] = STATE(5348), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [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(5806), + [anon_sym_set] = ACTIONS(5808), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330230,74 +329465,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1772), + [anon_sym_continue_AT] = ACTIONS(1772), + [anon_sym_break_AT] = ACTIONS(1772), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [2681] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2670] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(3924), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330322,74 +329570,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2682] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4112), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2671] = { + [sym_type_constraints] = STATE(2732), + [sym_property_delegate] = STATE(2806), + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6292), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330414,73 +329663,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2683] = { - [sym_type_constraints] = STATE(2753), - [sym_property_delegate] = STATE(2885), - [sym_getter] = STATE(4026), - [sym_setter] = STATE(4026), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6358), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6360), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2672] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(3936), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330505,75 +329756,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2684] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2673] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330598,74 +329849,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2685] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2674] = { + [sym_getter] = STATE(5328), + [sym_setter] = STATE(5328), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_get] = ACTIONS(5806), + [anon_sym_set] = ACTIONS(5808), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330690,74 +329930,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), }, - [2686] = { - [sym_getter] = STATE(3459), - [sym_setter] = STATE(3459), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_DASH_GT] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2675] = { + [sym_getter] = STATE(5124), + [sym_setter] = STATE(5124), + [sym_modifiers] = STATE(9227), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(6028), + [anon_sym_set] = ACTIONS(6030), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330782,74 +330035,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2687] = { - [sym_getter] = STATE(3455), - [sym_setter] = STATE(3455), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_RBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(3422), - [anon_sym_DASH_GT] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2676] = { + [sym_getter] = STATE(5388), + [sym_setter] = STATE(5388), + [sym_modifiers] = STATE(9257), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [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(5806), + [anon_sym_set] = ACTIONS(5808), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330874,73 +330116,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1766), + [anon_sym_continue_AT] = ACTIONS(1766), + [anon_sym_break_AT] = ACTIONS(1766), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), }, - [2688] = { - [sym_type_constraints] = STATE(2758), - [sym_property_delegate] = STATE(2887), - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6366), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4872), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2677] = { + [sym_type_constraints] = STATE(2751), + [sym_property_delegate] = STATE(2821), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4694), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -330965,75 +330222,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2689] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2678] = { + [sym_type_constraints] = STATE(2745), + [sym_property_delegate] = STATE(2829), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6296), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4571), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331058,74 +330315,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2690] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2679] = { + [sym_property_delegate] = STATE(2797), + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6298), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4434), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331150,166 +330406,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2691] = { - [sym_primary_constructor] = STATE(4216), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3734), - [sym_enum_class_body] = STATE(3964), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6368), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2692] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2680] = { + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331334,74 +330499,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2693] = { - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2681] = { + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331426,74 +330591,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2694] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2682] = { + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331518,74 +330683,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2695] = { - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2683] = { + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(4064), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331610,74 +330775,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2696] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2684] = { + [sym_property_delegate] = STATE(2787), + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6268), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331702,73 +330866,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2697] = { - [sym_type_constraints] = STATE(2755), - [sym_property_delegate] = STATE(2934), - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6370), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6372), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2685] = { + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6096), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331793,75 +330959,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2698] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4088), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2686] = { + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331886,74 +331051,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2699] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2687] = { + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -331978,166 +331143,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - }, - [2700] = { - [sym_primary_constructor] = STATE(4215), - [sym_class_body] = STATE(3964), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3783), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6374), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2701] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2688] = { + [sym_property_delegate] = STATE(2774), + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6220), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4380), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [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), @@ -332162,74 +331234,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2702] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9411), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6132), - [anon_sym_set] = ACTIONS(6134), - [anon_sym_STAR] = ACTIONS(1792), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2689] = { + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332254,74 +331327,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2703] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2690] = { + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332346,73 +331419,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2704] = { - [sym_property_delegate] = STATE(2767), - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6376), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4485), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2691] = { + [sym_type_constraints] = STATE(2760), + [sym_property_delegate] = STATE(2935), + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6300), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332437,74 +331510,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2705] = { - [sym_property_delegate] = STATE(2784), - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6266), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4487), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2692] = { + [sym_type_constraints] = STATE(2754), + [sym_property_delegate] = STATE(2944), + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6308), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6310), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332529,74 +331602,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2706] = { - [sym_property_delegate] = STATE(2780), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6238), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2693] = { + [sym_primary_constructor] = STATE(4208), + [sym_class_body] = STATE(3947), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3738), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + }, + [2694] = { + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(4036), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332621,74 +331787,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2707] = { - [sym_property_delegate] = STATE(2778), - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6282), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4491), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2695] = { + [sym_type_constraints] = STATE(2764), + [sym_property_delegate] = STATE(2919), + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6314), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(5067), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [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), @@ -332713,74 +331878,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2708] = { - [sym_property_delegate] = STATE(2787), - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6276), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6278), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2696] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332805,74 +331971,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2709] = { - [sym_type_constraints] = STATE(2763), - [sym_property_delegate] = STATE(2914), - [sym_getter] = STATE(5219), - [sym_setter] = STATE(5219), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_DOT] = ACTIONS(3348), - [anon_sym_as] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(6378), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6380), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(3350), - [sym_label] = ACTIONS(3350), - [anon_sym_in] = ACTIONS(3348), - [anon_sym_DOT_DOT] = ACTIONS(3350), - [anon_sym_QMARK_COLON] = ACTIONS(3350), - [anon_sym_AMP_AMP] = ACTIONS(3350), - [anon_sym_PIPE_PIPE] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3350), - [anon_sym_BANG_EQ] = ACTIONS(3348), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3350), - [anon_sym_EQ_EQ] = ACTIONS(3348), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3350), - [anon_sym_LT_EQ] = ACTIONS(3350), - [anon_sym_GT_EQ] = ACTIONS(3350), - [anon_sym_BANGin] = ACTIONS(3350), - [anon_sym_is] = ACTIONS(3348), - [anon_sym_BANGis] = ACTIONS(3350), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_PERCENT] = ACTIONS(3350), - [anon_sym_as_QMARK] = ACTIONS(3350), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_BANG_BANG] = ACTIONS(3350), + [2697] = { + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332897,74 +332063,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3350), - [sym__automatic_semicolon] = ACTIONS(3350), - [sym_safe_nav] = ACTIONS(3350), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2710] = { - [sym_type_constraints] = STATE(2765), - [sym_property_delegate] = STATE(2936), - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6382), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(6384), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2698] = { + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4056), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -332989,166 +332155,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2711] = { - [sym_primary_constructor] = STATE(4206), - [sym_class_body] = STATE(4033), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3742), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6386), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2712] = { - [sym_type_constraints] = STATE(2764), - [sym_property_delegate] = STATE(2928), - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4824), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2699] = { + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333173,74 +332247,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2713] = { - [sym_type_constraints] = STATE(2762), - [sym_property_delegate] = STATE(2920), - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6390), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4822), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2700] = { + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4052), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333265,75 +332339,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2714] = { - [sym_getter] = STATE(4790), - [sym_setter] = STATE(4790), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_RBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(3422), - [anon_sym_DASH_GT] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2701] = { + [sym_getter] = STATE(3393), + [sym_setter] = STATE(3393), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333358,74 +332431,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2715] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4100), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2702] = { + [sym_primary_constructor] = STATE(4211), + [sym_class_body] = STATE(3893), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3712), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6320), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2703] = { + [sym_type_constraints] = STATE(2762), + [sym_property_delegate] = STATE(2922), + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6322), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [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), @@ -333450,74 +332614,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2716] = { - [sym_getter] = STATE(4786), - [sym_setter] = STATE(4786), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_DASH_GT] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2704] = { + [sym_getter] = STATE(3400), + [sym_setter] = STATE(3400), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_RBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_DASH_GT] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333542,73 +332707,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2717] = { - [sym_property_delegate] = STATE(2790), - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6392), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2705] = { + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6132), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333633,74 +332799,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2718] = { - [sym_property_delegate] = STATE(2785), - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6328), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4450), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2706] = { + [sym_property_delegate] = STATE(2795), + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6284), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333725,166 +332890,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - }, - [2719] = { - [sym_primary_constructor] = STATE(5510), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4961), - [sym_enum_class_body] = STATE(5163), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6394), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2720] = { - [sym_property_delegate] = STATE(2806), - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6330), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4464), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2707] = { + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4068), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -333909,166 +332983,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2721] = { - [sym_primary_constructor] = STATE(5528), - [sym_class_body] = STATE(5098), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(5020), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6396), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2722] = { - [sym_property_delegate] = STATE(2795), - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6334), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2708] = { + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(3298), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334093,166 +333075,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2723] = { - [sym_primary_constructor] = STATE(5524), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4999), - [sym_enum_class_body] = STATE(5098), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6398), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5782), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2724] = { - [sym_type_constraints] = STATE(2760), - [sym_property_delegate] = STATE(2892), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6400), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2709] = { + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334277,74 +333167,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2725] = { - [sym_property_delegate] = STATE(2807), - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6344), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6240), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6346), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2710] = { + [sym_type_constraints] = STATE(2765), + [sym_property_delegate] = STATE(2899), + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334369,167 +333258,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2726] = { - [sym_primary_constructor] = STATE(5491), - [sym_class_body] = STATE(5087), - [sym__class_parameters] = STATE(5064), - [sym_type_constraints] = STATE(4962), - [sym_modifiers] = STATE(9667), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6402), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_constructor] = ACTIONS(5762), - [anon_sym_LBRACE] = ACTIONS(5764), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5770), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2727] = { - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2711] = { + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334554,74 +333351,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2728] = { - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6154), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(3316), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2712] = { + [sym_primary_constructor] = STATE(4216), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3711), + [sym_enum_class_body] = STATE(3893), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6326), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2713] = { + [sym_getter] = STATE(4836), + [sym_setter] = STATE(4836), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334646,73 +333535,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2729] = { - [sym_type_constraints] = STATE(2761), - [sym_property_delegate] = STATE(2951), - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6404), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2714] = { + [sym_type_constraints] = STATE(2757), + [sym_property_delegate] = STATE(2902), + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334737,75 +333626,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2730] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2715] = { + [sym_type_constraints] = STATE(2763), + [sym_property_delegate] = STATE(2954), + [sym_getter] = STATE(5080), + [sym_setter] = STATE(5080), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6330), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334830,74 +333718,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2731] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2716] = { + [sym_primary_constructor] = STATE(5495), + [sym_class_body] = STATE(5088), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5034), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6334), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + }, + [2717] = { + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4060), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -334922,74 +333903,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2732] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4116), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2718] = { + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1684), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335014,74 +333995,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2733] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9246), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6144), - [anon_sym_set] = ACTIONS(6146), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2719] = { + [sym_property_delegate] = STATE(2766), + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6240), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335106,165 +334086,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2734] = { - [sym_primary_constructor] = STATE(4199), - [sym__class_parameters] = STATE(3756), - [sym_type_constraints] = STATE(3823), - [sym_enum_class_body] = STATE(3831), - [sym_modifiers] = STATE(9470), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_COLON] = ACTIONS(6406), + [2720] = { + [sym_property_delegate] = STATE(2806), + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_constructor] = ACTIONS(5810), - [anon_sym_LBRACE] = ACTIONS(5826), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6290), + [anon_sym_LBRACE] = ACTIONS(3298), [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(5814), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6292), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), [anon_sym_STAR] = ACTIONS(3298), [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), + [anon_sym_in] = ACTIONS(3296), [anon_sym_DOT_DOT] = ACTIONS(3298), [anon_sym_QMARK_COLON] = ACTIONS(3298), [anon_sym_AMP_AMP] = ACTIONS(3298), [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), + [anon_sym_else] = ACTIONS(3296), [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), + [anon_sym_BANG_EQ] = ACTIONS(3296), [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), + [anon_sym_EQ_EQ] = ACTIONS(3296), [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), [anon_sym_LT_EQ] = ACTIONS(3298), [anon_sym_GT_EQ] = ACTIONS(3298), [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), + [anon_sym_is] = ACTIONS(3296), [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), [anon_sym_PERCENT] = ACTIONS(3298), [anon_sym_as_QMARK] = ACTIONS(3298), [anon_sym_PLUS_PLUS] = ACTIONS(3298), [anon_sym_DASH_DASH] = ACTIONS(3298), [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3218), - [anon_sym_sealed] = ACTIONS(3220), - [anon_sym_annotation] = ACTIONS(3220), - [anon_sym_data] = ACTIONS(3220), - [anon_sym_inner] = ACTIONS(3220), - [anon_sym_value] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_lateinit] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_internal] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_tailrec] = ACTIONS(3218), - [anon_sym_operator] = ACTIONS(3218), - [anon_sym_infix] = ACTIONS(3218), - [anon_sym_inline] = ACTIONS(3218), - [anon_sym_external] = ACTIONS(3218), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_final] = ACTIONS(3228), - [anon_sym_open] = ACTIONS(3228), - [anon_sym_vararg] = ACTIONS(3230), - [anon_sym_noinline] = ACTIONS(3230), - [anon_sym_crossinline] = ACTIONS(3230), - [anon_sym_expect] = ACTIONS(3232), - [anon_sym_actual] = ACTIONS(3232), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [2735] = { - [sym_property_delegate] = STATE(2820), - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6280), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335289,164 +334178,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2736] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_RBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(4007), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(4007), - [anon_sym_interface] = ACTIONS(4007), - [anon_sym_enum] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_RPAREN] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(4007), - [anon_sym_var] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(4007), - [anon_sym_fun] = ACTIONS(4007), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(4009), - [anon_sym_set] = ACTIONS(4009), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_DASH_GT] = ACTIONS(3995), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(4009), - [anon_sym_sealed] = ACTIONS(4009), - [anon_sym_annotation] = ACTIONS(4009), - [anon_sym_data] = ACTIONS(4009), - [anon_sym_inner] = ACTIONS(4009), - [anon_sym_value] = ACTIONS(4009), - [anon_sym_override] = ACTIONS(4009), - [anon_sym_lateinit] = ACTIONS(4009), - [anon_sym_public] = ACTIONS(4009), - [anon_sym_private] = ACTIONS(4009), - [anon_sym_internal] = ACTIONS(4009), - [anon_sym_protected] = ACTIONS(4009), - [anon_sym_tailrec] = ACTIONS(4009), - [anon_sym_operator] = ACTIONS(4009), - [anon_sym_infix] = ACTIONS(4009), - [anon_sym_inline] = ACTIONS(4009), - [anon_sym_external] = ACTIONS(4009), - [sym_property_modifier] = ACTIONS(4009), - [anon_sym_abstract] = ACTIONS(4009), - [anon_sym_final] = ACTIONS(4009), - [anon_sym_open] = ACTIONS(4009), - [anon_sym_vararg] = ACTIONS(4009), - [anon_sym_noinline] = ACTIONS(4009), - [anon_sym_crossinline] = ACTIONS(4009), - [anon_sym_expect] = ACTIONS(4009), - [anon_sym_actual] = ACTIONS(4009), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2737] = { - [sym_property_delegate] = STATE(2842), - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6340), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2721] = { + [sym_property_delegate] = STATE(2799), + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6336), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4339), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335471,73 +334270,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2738] = { - [sym_property_delegate] = STATE(2828), - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6248), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6250), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2722] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9447), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym_get] = ACTIONS(6088), + [anon_sym_set] = ACTIONS(6090), + [anon_sym_STAR] = ACTIONS(1740), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335562,164 +334363,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2739] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_RBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(4007), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(4007), - [anon_sym_interface] = ACTIONS(4007), - [anon_sym_enum] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_RPAREN] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(4007), - [anon_sym_var] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(4007), - [anon_sym_fun] = ACTIONS(4007), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(4009), - [anon_sym_set] = ACTIONS(4009), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_DASH_GT] = ACTIONS(3995), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(4007), - [anon_sym_sealed] = ACTIONS(4007), - [anon_sym_annotation] = ACTIONS(4007), - [anon_sym_data] = ACTIONS(4009), - [anon_sym_inner] = ACTIONS(4009), - [anon_sym_value] = ACTIONS(4009), - [anon_sym_override] = ACTIONS(4007), - [anon_sym_lateinit] = ACTIONS(4007), - [anon_sym_public] = ACTIONS(4007), - [anon_sym_private] = ACTIONS(4007), - [anon_sym_internal] = ACTIONS(4007), - [anon_sym_protected] = ACTIONS(4007), - [anon_sym_tailrec] = ACTIONS(4007), - [anon_sym_operator] = ACTIONS(4007), - [anon_sym_infix] = ACTIONS(4007), - [anon_sym_inline] = ACTIONS(4007), - [anon_sym_external] = ACTIONS(4007), - [sym_property_modifier] = ACTIONS(4007), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_final] = ACTIONS(4007), - [anon_sym_open] = ACTIONS(4007), - [anon_sym_vararg] = ACTIONS(4007), - [anon_sym_noinline] = ACTIONS(4007), - [anon_sym_crossinline] = ACTIONS(4007), - [anon_sym_expect] = ACTIONS(4009), - [anon_sym_actual] = ACTIONS(4009), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2740] = { - [sym_property_delegate] = STATE(2853), - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6408), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2723] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_RBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_DASH_GT] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335744,73 +334455,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2741] = { - [sym_property_delegate] = STATE(2871), - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6268), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2724] = { + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9115), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6080), + [anon_sym_set] = ACTIONS(6082), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335835,73 +334547,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2742] = { - [sym_property_delegate] = STATE(2852), - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6284), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6286), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2725] = { + [sym_primary_constructor] = STATE(5530), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5012), + [sym_enum_class_body] = STATE(5191), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6338), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), + }, + [2726] = { + [sym_type_constraints] = STATE(2753), + [sym_property_delegate] = STATE(2950), + [sym_getter] = STATE(3980), + [sym_setter] = STATE(3980), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_DOT] = ACTIONS(3284), + [anon_sym_as] = ACTIONS(3284), + [anon_sym_EQ] = ACTIONS(6340), + [anon_sym_LBRACE] = ACTIONS(3286), + [anon_sym_RBRACE] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3286), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_GT] = ACTIONS(3284), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6342), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(3286), + [sym_label] = ACTIONS(3286), + [anon_sym_in] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(3286), + [anon_sym_QMARK_COLON] = ACTIONS(3286), + [anon_sym_AMP_AMP] = ACTIONS(3286), + [anon_sym_PIPE_PIPE] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_COLON_COLON] = ACTIONS(3286), + [anon_sym_BANG_EQ] = ACTIONS(3284), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3286), + [anon_sym_EQ_EQ] = ACTIONS(3284), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3286), + [anon_sym_LT_EQ] = ACTIONS(3286), + [anon_sym_GT_EQ] = ACTIONS(3286), + [anon_sym_BANGin] = ACTIONS(3286), + [anon_sym_is] = ACTIONS(3284), + [anon_sym_BANGis] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_PERCENT] = ACTIONS(3286), + [anon_sym_as_QMARK] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3286), + [anon_sym_BANG_BANG] = ACTIONS(3286), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -335926,73 +334730,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3286), + [sym__automatic_semicolon] = ACTIONS(3286), + [sym_safe_nav] = ACTIONS(3286), [sym_multiline_comment] = ACTIONS(3), }, - [2743] = { - [sym_property_delegate] = STATE(2850), - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6306), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4734), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2727] = { + [sym_primary_constructor] = STATE(5500), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5057), + [sym_enum_class_body] = STATE(5082), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2728] = { + [sym_property_delegate] = STATE(2777), + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6258), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_where] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4430), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [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), @@ -336017,164 +334914,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2744] = { - [sym_annotated_lambda] = STATE(3192), - [sym_lambda_literal] = STATE(3062), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(3986), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_object] = ACTIONS(3986), - [anon_sym_fun] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(3986), - [anon_sym_set] = ACTIONS(3986), - [anon_sym_this] = ACTIONS(3986), - [anon_sym_super] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3986), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3988), - [anon_sym_QMARK_COLON] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_PIPE_PIPE] = ACTIONS(3988), - [anon_sym_null] = ACTIONS(3986), - [anon_sym_if] = ACTIONS(3986), - [anon_sym_else] = ACTIONS(3986), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_try] = ACTIONS(3986), - [anon_sym_throw] = ACTIONS(3986), - [anon_sym_return] = ACTIONS(3986), - [anon_sym_continue] = ACTIONS(3986), - [anon_sym_break] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_PLUS_EQ] = ACTIONS(3988), - [anon_sym_DASH_EQ] = ACTIONS(3988), - [anon_sym_STAR_EQ] = ACTIONS(3988), - [anon_sym_SLASH_EQ] = ACTIONS(3988), - [anon_sym_PERCENT_EQ] = ACTIONS(3988), - [anon_sym_BANG_EQ] = ACTIONS(3986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3988), - [anon_sym_EQ_EQ] = ACTIONS(3986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3988), - [anon_sym_LT_EQ] = ACTIONS(3988), - [anon_sym_GT_EQ] = ACTIONS(3988), - [anon_sym_BANGin] = ACTIONS(3988), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_BANGis] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_data] = ACTIONS(3986), - [anon_sym_inner] = ACTIONS(3986), - [anon_sym_value] = ACTIONS(3986), - [anon_sym_expect] = ACTIONS(3986), - [anon_sym_actual] = ACTIONS(3986), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3988), - [anon_sym_continue_AT] = ACTIONS(3988), - [anon_sym_break_AT] = ACTIONS(3988), - [anon_sym_this_AT] = ACTIONS(3988), - [anon_sym_super_AT] = ACTIONS(3988), - [sym_real_literal] = ACTIONS(3988), - [sym_integer_literal] = ACTIONS(3986), - [sym_hex_literal] = ACTIONS(3988), - [sym_bin_literal] = ACTIONS(3988), - [anon_sym_true] = ACTIONS(3986), - [anon_sym_false] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3988), - [sym__backtick_identifier] = ACTIONS(3988), - [sym__automatic_semicolon] = ACTIONS(3988), - [sym_safe_nav] = ACTIONS(3988), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3988), + [2729] = { + [sym_primary_constructor] = STATE(4212), + [sym__class_parameters] = STATE(3793), + [sym_type_constraints] = STATE(3743), + [sym_enum_class_body] = STATE(3876), + [sym_modifiers] = STATE(9738), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_constructor] = ACTIONS(5734), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(5738), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [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), }, - [2745] = { - [sym_property_delegate] = STATE(2861), - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6410), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4744), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2730] = { + [sym_primary_constructor] = STATE(5510), + [sym_class_body] = STATE(5082), + [sym__class_parameters] = STATE(5011), + [sym_type_constraints] = STATE(5048), + [sym_modifiers] = STATE(9877), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(6348), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_constructor] = ACTIONS(5754), + [anon_sym_LBRACE] = ACTIONS(5756), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(5758), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5760), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3166), + [anon_sym_sealed] = ACTIONS(3168), + [anon_sym_annotation] = ACTIONS(3168), + [anon_sym_data] = ACTIONS(3168), + [anon_sym_inner] = ACTIONS(3168), + [anon_sym_value] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_lateinit] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_internal] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_tailrec] = ACTIONS(3166), + [anon_sym_operator] = ACTIONS(3166), + [anon_sym_infix] = ACTIONS(3166), + [anon_sym_inline] = ACTIONS(3166), + [anon_sym_external] = ACTIONS(3166), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_final] = ACTIONS(3176), + [anon_sym_open] = ACTIONS(3176), + [anon_sym_vararg] = ACTIONS(3178), + [anon_sym_noinline] = ACTIONS(3178), + [anon_sym_crossinline] = ACTIONS(3178), + [anon_sym_expect] = ACTIONS(3180), + [anon_sym_actual] = ACTIONS(3180), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [2731] = { + [sym_type_constraints] = STATE(2758), + [sym_property_delegate] = STATE(2953), + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6350), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(6352), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336199,73 +335190,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2746] = { - [sym_property_delegate] = STATE(2811), - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6274), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4750), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2732] = { + [sym_property_delegate] = STATE(2782), + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6256), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4386), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336290,528 +335282,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2747] = { - [sym_annotated_lambda] = STATE(3159), - [sym_lambda_literal] = STATE(3062), - [sym_annotation] = STATE(8351), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), - [sym__alpha_identifier] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_as] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym_COMMA] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4040), - [anon_sym_GT] = ACTIONS(4040), - [anon_sym_where] = ACTIONS(4040), - [anon_sym_object] = ACTIONS(4040), - [anon_sym_fun] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_get] = ACTIONS(4040), - [anon_sym_set] = ACTIONS(4040), - [anon_sym_this] = ACTIONS(4040), - [anon_sym_super] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [sym_label] = ACTIONS(4040), - [anon_sym_in] = ACTIONS(4040), - [anon_sym_DOT_DOT] = ACTIONS(4042), - [anon_sym_QMARK_COLON] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_null] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_else] = ACTIONS(4040), - [anon_sym_when] = ACTIONS(4040), - [anon_sym_try] = ACTIONS(4040), - [anon_sym_throw] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_PLUS_EQ] = ACTIONS(4042), - [anon_sym_DASH_EQ] = ACTIONS(4042), - [anon_sym_STAR_EQ] = ACTIONS(4042), - [anon_sym_SLASH_EQ] = ACTIONS(4042), - [anon_sym_PERCENT_EQ] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4042), - [anon_sym_LT_EQ] = ACTIONS(4042), - [anon_sym_GT_EQ] = ACTIONS(4042), - [anon_sym_BANGin] = ACTIONS(4042), - [anon_sym_is] = ACTIONS(4040), - [anon_sym_BANGis] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_SLASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_as_QMARK] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_BANG_BANG] = ACTIONS(4042), - [anon_sym_data] = ACTIONS(4040), - [anon_sym_inner] = ACTIONS(4040), - [anon_sym_value] = ACTIONS(4040), - [anon_sym_expect] = ACTIONS(4040), - [anon_sym_actual] = ACTIONS(4040), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4042), - [anon_sym_continue_AT] = ACTIONS(4042), - [anon_sym_break_AT] = ACTIONS(4042), - [anon_sym_this_AT] = ACTIONS(4042), - [anon_sym_super_AT] = ACTIONS(4042), - [sym_real_literal] = ACTIONS(4042), - [sym_integer_literal] = ACTIONS(4040), - [sym_hex_literal] = ACTIONS(4042), - [sym_bin_literal] = ACTIONS(4042), - [anon_sym_true] = ACTIONS(4040), - [anon_sym_false] = ACTIONS(4040), - [anon_sym_SQUOTE] = ACTIONS(4042), - [sym__backtick_identifier] = ACTIONS(4042), - [sym__automatic_semicolon] = ACTIONS(4042), - [sym_safe_nav] = ACTIONS(4042), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4042), - }, - [2748] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_RBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(3997), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3997), - [anon_sym_interface] = ACTIONS(3997), - [anon_sym_enum] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_RPAREN] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(3997), - [anon_sym_var] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3997), - [anon_sym_fun] = ACTIONS(3997), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3999), - [anon_sym_set] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_DASH_GT] = ACTIONS(3995), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3997), - [anon_sym_sealed] = ACTIONS(3997), - [anon_sym_annotation] = ACTIONS(3997), - [anon_sym_data] = ACTIONS(3999), - [anon_sym_inner] = ACTIONS(3999), - [anon_sym_value] = ACTIONS(3999), - [anon_sym_override] = ACTIONS(3997), - [anon_sym_lateinit] = ACTIONS(3997), - [anon_sym_public] = ACTIONS(3997), - [anon_sym_private] = ACTIONS(3997), - [anon_sym_internal] = ACTIONS(3997), - [anon_sym_protected] = ACTIONS(3997), - [anon_sym_tailrec] = ACTIONS(3997), - [anon_sym_operator] = ACTIONS(3997), - [anon_sym_infix] = ACTIONS(3997), - [anon_sym_inline] = ACTIONS(3997), - [anon_sym_external] = ACTIONS(3997), - [sym_property_modifier] = ACTIONS(3997), - [anon_sym_abstract] = ACTIONS(3997), - [anon_sym_final] = ACTIONS(3997), - [anon_sym_open] = ACTIONS(3997), - [anon_sym_vararg] = ACTIONS(3997), - [anon_sym_noinline] = ACTIONS(3997), - [anon_sym_crossinline] = ACTIONS(3997), - [anon_sym_expect] = ACTIONS(3999), - [anon_sym_actual] = ACTIONS(3999), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - }, - [2749] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_RBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(3997), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3997), - [anon_sym_interface] = ACTIONS(3997), - [anon_sym_enum] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_RPAREN] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(3997), - [anon_sym_var] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3997), - [anon_sym_fun] = ACTIONS(3997), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3999), - [anon_sym_set] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_DASH_GT] = ACTIONS(3995), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3999), - [anon_sym_sealed] = ACTIONS(3999), - [anon_sym_annotation] = ACTIONS(3999), - [anon_sym_data] = ACTIONS(3999), - [anon_sym_inner] = ACTIONS(3999), - [anon_sym_value] = ACTIONS(3999), - [anon_sym_override] = ACTIONS(3999), - [anon_sym_lateinit] = ACTIONS(3999), - [anon_sym_public] = ACTIONS(3999), - [anon_sym_private] = ACTIONS(3999), - [anon_sym_internal] = ACTIONS(3999), - [anon_sym_protected] = ACTIONS(3999), - [anon_sym_tailrec] = ACTIONS(3999), - [anon_sym_operator] = ACTIONS(3999), - [anon_sym_infix] = ACTIONS(3999), - [anon_sym_inline] = ACTIONS(3999), - [anon_sym_external] = ACTIONS(3999), - [sym_property_modifier] = ACTIONS(3999), - [anon_sym_abstract] = ACTIONS(3999), - [anon_sym_final] = ACTIONS(3999), - [anon_sym_open] = ACTIONS(3999), - [anon_sym_vararg] = ACTIONS(3999), - [anon_sym_noinline] = ACTIONS(3999), - [anon_sym_crossinline] = ACTIONS(3999), - [anon_sym_expect] = ACTIONS(3999), - [anon_sym_actual] = ACTIONS(3999), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - }, - [2750] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_object] = ACTIONS(4018), - [anon_sym_fun] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_this] = ACTIONS(4018), - [anon_sym_super] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [sym_label] = ACTIONS(4018), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_null] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [anon_sym_PLUS_EQ] = ACTIONS(4047), - [anon_sym_DASH_EQ] = ACTIONS(4047), - [anon_sym_STAR_EQ] = ACTIONS(4047), - [anon_sym_SLASH_EQ] = ACTIONS(4047), - [anon_sym_PERCENT_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4020), - [anon_sym_continue_AT] = ACTIONS(4020), - [anon_sym_break_AT] = ACTIONS(4020), - [anon_sym_this_AT] = ACTIONS(4020), - [anon_sym_super_AT] = ACTIONS(4020), - [sym_real_literal] = ACTIONS(4020), - [sym_integer_literal] = ACTIONS(4018), - [sym_hex_literal] = ACTIONS(4020), - [sym_bin_literal] = ACTIONS(4020), - [anon_sym_true] = ACTIONS(4018), - [anon_sym_false] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4020), - [sym__backtick_identifier] = ACTIONS(4020), - [sym__automatic_semicolon] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4020), - }, - [2751] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_object] = ACTIONS(4018), - [anon_sym_fun] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_this] = ACTIONS(4018), - [anon_sym_super] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [sym_label] = ACTIONS(4018), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_null] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [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(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4020), - [anon_sym_continue_AT] = ACTIONS(4020), - [anon_sym_break_AT] = ACTIONS(4020), - [anon_sym_this_AT] = ACTIONS(4020), - [anon_sym_super_AT] = ACTIONS(4020), - [sym_real_literal] = ACTIONS(4020), - [sym_integer_literal] = ACTIONS(4018), - [sym_hex_literal] = ACTIONS(4020), - [sym_bin_literal] = ACTIONS(4020), - [anon_sym_true] = ACTIONS(4018), - [anon_sym_false] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4020), - [sym__backtick_identifier] = ACTIONS(4020), - [sym__automatic_semicolon] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4020), - }, - [2752] = { - [sym_property_delegate] = STATE(2874), - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6228), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6230), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4748), + [2733] = { + [sym_property_delegate] = STATE(2779), + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6250), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6188), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4424), [anon_sym_get] = ACTIONS(6232), [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336836,71 +335374,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2753] = { - [sym_property_delegate] = STATE(2934), - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6370), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6372), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2734] = { + [sym_type_constraints] = STATE(2759), + [sym_property_delegate] = STATE(2937), + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6354), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -336925,162 +335466,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2754] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(4004), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(4007), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(4007), - [anon_sym_interface] = ACTIONS(4007), - [anon_sym_enum] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(4007), - [anon_sym_var] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(4007), - [anon_sym_fun] = ACTIONS(4007), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(4009), - [anon_sym_set] = ACTIONS(4009), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_DASH_GT] = ACTIONS(3995), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(4007), - [anon_sym_sealed] = ACTIONS(4007), - [anon_sym_annotation] = ACTIONS(4007), - [anon_sym_data] = ACTIONS(4009), - [anon_sym_inner] = ACTIONS(4009), - [anon_sym_value] = ACTIONS(4009), - [anon_sym_override] = ACTIONS(4007), - [anon_sym_lateinit] = ACTIONS(4007), - [anon_sym_public] = ACTIONS(4007), - [anon_sym_private] = ACTIONS(4007), - [anon_sym_internal] = ACTIONS(4007), - [anon_sym_protected] = ACTIONS(4007), - [anon_sym_tailrec] = ACTIONS(4007), - [anon_sym_operator] = ACTIONS(4007), - [anon_sym_infix] = ACTIONS(4007), - [anon_sym_inline] = ACTIONS(4007), - [anon_sym_external] = ACTIONS(4007), - [sym_property_modifier] = ACTIONS(4007), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_final] = ACTIONS(4007), - [anon_sym_open] = ACTIONS(4007), - [anon_sym_vararg] = ACTIONS(4007), - [anon_sym_noinline] = ACTIONS(4007), - [anon_sym_crossinline] = ACTIONS(4007), - [anon_sym_expect] = ACTIONS(4009), - [anon_sym_actual] = ACTIONS(4009), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), + [2735] = { + [sym_annotated_lambda] = STATE(3076), + [sym_lambda_literal] = STATE(3212), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), + }, + [2736] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3940), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_RBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3945), + [anon_sym_interface] = ACTIONS(3945), + [anon_sym_enum] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3945), + [anon_sym_var] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3947), + [anon_sym_set] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3938), + [anon_sym_DASH_GT] = ACTIONS(3943), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3945), + [anon_sym_sealed] = ACTIONS(3945), + [anon_sym_annotation] = ACTIONS(3945), + [anon_sym_data] = ACTIONS(3947), + [anon_sym_inner] = ACTIONS(3947), + [anon_sym_value] = ACTIONS(3947), + [anon_sym_override] = ACTIONS(3945), + [anon_sym_lateinit] = ACTIONS(3945), + [anon_sym_public] = ACTIONS(3945), + [anon_sym_private] = ACTIONS(3945), + [anon_sym_internal] = ACTIONS(3945), + [anon_sym_protected] = ACTIONS(3945), + [anon_sym_tailrec] = ACTIONS(3945), + [anon_sym_operator] = ACTIONS(3945), + [anon_sym_infix] = ACTIONS(3945), + [anon_sym_inline] = ACTIONS(3945), + [anon_sym_external] = ACTIONS(3945), + [sym_property_modifier] = ACTIONS(3945), + [anon_sym_abstract] = ACTIONS(3945), + [anon_sym_final] = ACTIONS(3945), + [anon_sym_open] = ACTIONS(3945), + [anon_sym_vararg] = ACTIONS(3945), + [anon_sym_noinline] = ACTIONS(3945), + [anon_sym_crossinline] = ACTIONS(3945), + [anon_sym_expect] = ACTIONS(3947), + [anon_sym_actual] = ACTIONS(3947), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), }, - [2755] = { - [sym_property_delegate] = STATE(2887), - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6366), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4872), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2737] = { + [sym_annotated_lambda] = STATE(3103), + [sym_lambda_literal] = STATE(3212), + [sym_annotation] = STATE(8347), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8347), + [sym__alpha_identifier] = ACTIONS(3932), + [anon_sym_AT] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_DOT] = ACTIONS(3932), + [anon_sym_as] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_where] = ACTIONS(3932), + [anon_sym_object] = ACTIONS(3932), + [anon_sym_fun] = ACTIONS(3932), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3932), + [anon_sym_set] = ACTIONS(3932), + [anon_sym_this] = ACTIONS(3932), + [anon_sym_super] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [sym_label] = ACTIONS(3932), + [anon_sym_in] = ACTIONS(3932), + [anon_sym_DOT_DOT] = ACTIONS(3934), + [anon_sym_QMARK_COLON] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_if] = ACTIONS(3932), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_when] = ACTIONS(3932), + [anon_sym_try] = ACTIONS(3932), + [anon_sym_throw] = ACTIONS(3932), + [anon_sym_return] = ACTIONS(3932), + [anon_sym_continue] = ACTIONS(3932), + [anon_sym_break] = ACTIONS(3932), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3934), + [anon_sym_SLASH_EQ] = ACTIONS(3934), + [anon_sym_PERCENT_EQ] = ACTIONS(3934), + [anon_sym_BANG_EQ] = ACTIONS(3932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_BANGin] = ACTIONS(3934), + [anon_sym_is] = ACTIONS(3932), + [anon_sym_BANGis] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_as_QMARK] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [anon_sym_BANG] = ACTIONS(3932), + [anon_sym_BANG_BANG] = ACTIONS(3934), + [anon_sym_data] = ACTIONS(3932), + [anon_sym_inner] = ACTIONS(3932), + [anon_sym_value] = ACTIONS(3932), + [anon_sym_expect] = ACTIONS(3932), + [anon_sym_actual] = ACTIONS(3932), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3934), + [anon_sym_continue_AT] = ACTIONS(3934), + [anon_sym_break_AT] = ACTIONS(3934), + [anon_sym_this_AT] = ACTIONS(3934), + [anon_sym_super_AT] = ACTIONS(3934), + [sym_real_literal] = ACTIONS(3934), + [sym_integer_literal] = ACTIONS(3932), + [sym_hex_literal] = ACTIONS(3934), + [sym_bin_literal] = ACTIONS(3934), + [anon_sym_true] = ACTIONS(3932), + [anon_sym_false] = ACTIONS(3932), + [anon_sym_SQUOTE] = ACTIONS(3934), + [sym__backtick_identifier] = ACTIONS(3934), + [sym__automatic_semicolon] = ACTIONS(3934), + [sym_safe_nav] = ACTIONS(3934), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3934), + }, + [2738] = { + [sym_property_delegate] = STATE(2822), + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6210), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337105,252 +335831,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2756] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(3997), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3997), - [anon_sym_interface] = ACTIONS(3997), - [anon_sym_enum] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(3997), - [anon_sym_var] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3997), - [anon_sym_fun] = ACTIONS(3997), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3999), - [anon_sym_set] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_DASH_GT] = ACTIONS(3995), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3997), - [anon_sym_sealed] = ACTIONS(3997), - [anon_sym_annotation] = ACTIONS(3997), - [anon_sym_data] = ACTIONS(3999), - [anon_sym_inner] = ACTIONS(3999), - [anon_sym_value] = ACTIONS(3999), - [anon_sym_override] = ACTIONS(3997), - [anon_sym_lateinit] = ACTIONS(3997), - [anon_sym_public] = ACTIONS(3997), - [anon_sym_private] = ACTIONS(3997), - [anon_sym_internal] = ACTIONS(3997), - [anon_sym_protected] = ACTIONS(3997), - [anon_sym_tailrec] = ACTIONS(3997), - [anon_sym_operator] = ACTIONS(3997), - [anon_sym_infix] = ACTIONS(3997), - [anon_sym_inline] = ACTIONS(3997), - [anon_sym_external] = ACTIONS(3997), - [sym_property_modifier] = ACTIONS(3997), - [anon_sym_abstract] = ACTIONS(3997), - [anon_sym_final] = ACTIONS(3997), - [anon_sym_open] = ACTIONS(3997), - [anon_sym_vararg] = ACTIONS(3997), - [anon_sym_noinline] = ACTIONS(3997), - [anon_sym_crossinline] = ACTIONS(3997), - [anon_sym_expect] = ACTIONS(3999), - [anon_sym_actual] = ACTIONS(3999), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2757] = { - [sym_catch_block] = STATE(2781), - [sym_finally_block] = STATE(3169), - [aux_sym_try_expression_repeat1] = STATE(2781), - [sym__alpha_identifier] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_EQ] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_object] = ACTIONS(4104), - [anon_sym_fun] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_get] = ACTIONS(4104), - [anon_sym_set] = ACTIONS(4104), - [anon_sym_this] = ACTIONS(4104), - [anon_sym_super] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [sym_label] = ACTIONS(4104), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_QMARK_COLON] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_null] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_else] = ACTIONS(4104), - [anon_sym_when] = ACTIONS(4104), - [anon_sym_try] = ACTIONS(4104), - [anon_sym_catch] = ACTIONS(6412), - [anon_sym_finally] = ACTIONS(6414), - [anon_sym_throw] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_BANGin] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_BANGis] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_as_QMARK] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_BANG_BANG] = ACTIONS(4106), - [anon_sym_data] = ACTIONS(4104), - [anon_sym_inner] = ACTIONS(4104), - [anon_sym_value] = ACTIONS(4104), - [anon_sym_expect] = ACTIONS(4104), - [anon_sym_actual] = ACTIONS(4104), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4106), - [anon_sym_continue_AT] = ACTIONS(4106), - [anon_sym_break_AT] = ACTIONS(4106), - [anon_sym_this_AT] = ACTIONS(4106), - [anon_sym_super_AT] = ACTIONS(4106), - [sym_real_literal] = ACTIONS(4106), - [sym_integer_literal] = ACTIONS(4104), - [sym_hex_literal] = ACTIONS(4106), - [sym_bin_literal] = ACTIONS(4106), - [anon_sym_true] = ACTIONS(4104), - [anon_sym_false] = ACTIONS(4104), - [anon_sym_SQUOTE] = ACTIONS(4106), - [sym__backtick_identifier] = ACTIONS(4106), - [sym__automatic_semicolon] = ACTIONS(4106), - [sym_safe_nav] = ACTIONS(4106), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4106), - }, - [2758] = { - [sym_property_delegate] = STATE(2892), - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6400), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2739] = { + [sym_property_delegate] = STATE(2842), + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6246), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6248), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337375,72 +335922,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2759] = { - [sym_property_delegate] = STATE(2888), - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6416), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4818), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2740] = { + [sym_property_delegate] = STATE(2838), + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6176), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337465,72 +336013,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2760] = { - [sym_property_delegate] = STATE(2951), - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6404), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2741] = { + [sym_property_delegate] = STATE(2864), + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6224), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6226), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337555,72 +336104,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2761] = { - [sym_property_delegate] = STATE(2917), - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(6418), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4830), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2742] = { + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_object] = ACTIONS(3950), + [anon_sym_fun] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_this] = ACTIONS(3950), + [anon_sym_super] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [sym_label] = ACTIONS(3950), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_null] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_when] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3981), + [anon_sym_DASH_EQ] = ACTIONS(3981), + [anon_sym_STAR_EQ] = ACTIONS(3981), + [anon_sym_SLASH_EQ] = ACTIONS(3981), + [anon_sym_PERCENT_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3950), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [anon_sym_expect] = ACTIONS(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3952), + [anon_sym_continue_AT] = ACTIONS(3952), + [anon_sym_break_AT] = ACTIONS(3952), + [anon_sym_this_AT] = ACTIONS(3952), + [anon_sym_super_AT] = ACTIONS(3952), + [sym_real_literal] = ACTIONS(3952), + [sym_integer_literal] = ACTIONS(3950), + [sym_hex_literal] = ACTIONS(3952), + [sym_bin_literal] = ACTIONS(3952), + [anon_sym_true] = ACTIONS(3950), + [anon_sym_false] = ACTIONS(3950), + [anon_sym_SQUOTE] = ACTIONS(3952), + [sym__backtick_identifier] = ACTIONS(3952), + [sym__automatic_semicolon] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3952), + }, + [2743] = { + [sym_property_delegate] = STATE(2831), + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6264), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337645,72 +336286,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2762] = { - [sym_property_delegate] = STATE(2911), - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(6350), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4820), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2744] = { + [sym_property_delegate] = STATE(2829), + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6296), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4571), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337735,72 +336377,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2763] = { - [sym_property_delegate] = STATE(2936), - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(6382), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6384), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2745] = { + [sym_property_delegate] = STATE(2834), + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6356), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337825,72 +336468,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2764] = { - [sym_property_delegate] = STATE(2920), - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(6390), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4822), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2746] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_RBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_interface] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3973), + [anon_sym_var] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3975), + [anon_sym_set] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3938), + [anon_sym_DASH_GT] = ACTIONS(3943), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3973), + [anon_sym_sealed] = ACTIONS(3973), + [anon_sym_annotation] = ACTIONS(3973), + [anon_sym_data] = ACTIONS(3975), + [anon_sym_inner] = ACTIONS(3975), + [anon_sym_value] = ACTIONS(3975), + [anon_sym_override] = ACTIONS(3973), + [anon_sym_lateinit] = ACTIONS(3973), + [anon_sym_public] = ACTIONS(3973), + [anon_sym_private] = ACTIONS(3973), + [anon_sym_internal] = ACTIONS(3973), + [anon_sym_protected] = ACTIONS(3973), + [anon_sym_tailrec] = ACTIONS(3973), + [anon_sym_operator] = ACTIONS(3973), + [anon_sym_infix] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym_external] = ACTIONS(3973), + [sym_property_modifier] = ACTIONS(3973), + [anon_sym_abstract] = ACTIONS(3973), + [anon_sym_final] = ACTIONS(3973), + [anon_sym_open] = ACTIONS(3973), + [anon_sym_vararg] = ACTIONS(3973), + [anon_sym_noinline] = ACTIONS(3973), + [anon_sym_crossinline] = ACTIONS(3973), + [anon_sym_expect] = ACTIONS(3975), + [anon_sym_actual] = ACTIONS(3975), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + }, + [2747] = { + [sym_property_delegate] = STATE(2813), + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6358), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -337915,72 +336650,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2765] = { - [sym_property_delegate] = STATE(2928), - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(6388), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_by] = ACTIONS(6352), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4824), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2748] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_RBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_interface] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3973), + [anon_sym_var] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3975), + [anon_sym_set] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3938), + [anon_sym_DASH_GT] = ACTIONS(3943), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3975), + [anon_sym_sealed] = ACTIONS(3975), + [anon_sym_annotation] = ACTIONS(3975), + [anon_sym_data] = ACTIONS(3975), + [anon_sym_inner] = ACTIONS(3975), + [anon_sym_value] = ACTIONS(3975), + [anon_sym_override] = ACTIONS(3975), + [anon_sym_lateinit] = ACTIONS(3975), + [anon_sym_public] = ACTIONS(3975), + [anon_sym_private] = ACTIONS(3975), + [anon_sym_internal] = ACTIONS(3975), + [anon_sym_protected] = ACTIONS(3975), + [anon_sym_tailrec] = ACTIONS(3975), + [anon_sym_operator] = ACTIONS(3975), + [anon_sym_infix] = ACTIONS(3975), + [anon_sym_inline] = ACTIONS(3975), + [anon_sym_external] = ACTIONS(3975), + [sym_property_modifier] = ACTIONS(3975), + [anon_sym_abstract] = ACTIONS(3975), + [anon_sym_final] = ACTIONS(3975), + [anon_sym_open] = ACTIONS(3975), + [anon_sym_vararg] = ACTIONS(3975), + [anon_sym_noinline] = ACTIONS(3975), + [anon_sym_crossinline] = ACTIONS(3975), + [anon_sym_expect] = ACTIONS(3975), + [anon_sym_actual] = ACTIONS(3975), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + }, + [2749] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3940), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_RBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3945), + [anon_sym_interface] = ACTIONS(3945), + [anon_sym_enum] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3945), + [anon_sym_var] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3947), + [anon_sym_set] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3938), + [anon_sym_DASH_GT] = ACTIONS(3943), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3947), + [anon_sym_sealed] = ACTIONS(3947), + [anon_sym_annotation] = ACTIONS(3947), + [anon_sym_data] = ACTIONS(3947), + [anon_sym_inner] = ACTIONS(3947), + [anon_sym_value] = ACTIONS(3947), + [anon_sym_override] = ACTIONS(3947), + [anon_sym_lateinit] = ACTIONS(3947), + [anon_sym_public] = ACTIONS(3947), + [anon_sym_private] = ACTIONS(3947), + [anon_sym_internal] = ACTIONS(3947), + [anon_sym_protected] = ACTIONS(3947), + [anon_sym_tailrec] = ACTIONS(3947), + [anon_sym_operator] = ACTIONS(3947), + [anon_sym_infix] = ACTIONS(3947), + [anon_sym_inline] = ACTIONS(3947), + [anon_sym_external] = ACTIONS(3947), + [sym_property_modifier] = ACTIONS(3947), + [anon_sym_abstract] = ACTIONS(3947), + [anon_sym_final] = ACTIONS(3947), + [anon_sym_open] = ACTIONS(3947), + [anon_sym_vararg] = ACTIONS(3947), + [anon_sym_noinline] = ACTIONS(3947), + [anon_sym_crossinline] = ACTIONS(3947), + [anon_sym_expect] = ACTIONS(3947), + [anon_sym_actual] = ACTIONS(3947), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + }, + [2750] = { + [sym_property_delegate] = STATE(2821), + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6294), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4694), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338005,160 +336923,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2766] = { - [aux_sym_user_type_repeat1] = STATE(2804), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(6420), - [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_by] = ACTIONS(4162), - [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_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_AMP] = ACTIONS(4162), - [sym__quest] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4164), - [anon_sym_super_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), - }, - [2767] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4483), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2751] = { + [sym_property_delegate] = STATE(2816), + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6214), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6178), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338183,71 +337014,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2768] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2752] = { + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3960), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_object] = ACTIONS(3950), + [anon_sym_fun] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_this] = ACTIONS(3950), + [anon_sym_super] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [sym_label] = ACTIONS(3950), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_null] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_when] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3965), + [anon_sym_DASH_EQ] = ACTIONS(3965), + [anon_sym_STAR_EQ] = ACTIONS(3965), + [anon_sym_SLASH_EQ] = ACTIONS(3965), + [anon_sym_PERCENT_EQ] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3950), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [anon_sym_expect] = ACTIONS(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3952), + [anon_sym_continue_AT] = ACTIONS(3952), + [anon_sym_break_AT] = ACTIONS(3952), + [anon_sym_this_AT] = ACTIONS(3952), + [anon_sym_super_AT] = ACTIONS(3952), + [sym_real_literal] = ACTIONS(3952), + [sym_integer_literal] = ACTIONS(3950), + [sym_hex_literal] = ACTIONS(3952), + [sym_bin_literal] = ACTIONS(3952), + [anon_sym_true] = ACTIONS(3950), + [anon_sym_false] = ACTIONS(3950), + [anon_sym_SQUOTE] = ACTIONS(3952), + [sym__backtick_identifier] = ACTIONS(3952), + [sym__automatic_semicolon] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3952), + }, + [2753] = { + [sym_property_delegate] = STATE(2944), + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6308), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6310), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338272,71 +337194,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2769] = { - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6278), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2754] = { + [sym_property_delegate] = STATE(2935), + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6300), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338361,516 +337284,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2770] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_by] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3990), - [sym__quest] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3990), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [2771] = { - [sym_type_constraints] = STATE(2965), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(6423), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [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(3258), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [2772] = { - [sym_annotated_lambda] = STATE(3447), - [sym_lambda_literal] = STATE(3484), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(3986), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_RBRACK] = ACTIONS(3988), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_RPAREN] = ACTIONS(3988), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(3986), - [anon_sym_set] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_DASH_GT] = ACTIONS(3988), - [sym_label] = ACTIONS(3988), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_while] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3988), - [anon_sym_QMARK_COLON] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_PIPE_PIPE] = ACTIONS(3988), - [anon_sym_else] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_PLUS_EQ] = ACTIONS(3988), - [anon_sym_DASH_EQ] = ACTIONS(3988), - [anon_sym_STAR_EQ] = ACTIONS(3988), - [anon_sym_SLASH_EQ] = ACTIONS(3988), - [anon_sym_PERCENT_EQ] = ACTIONS(3988), - [anon_sym_BANG_EQ] = ACTIONS(3986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3988), - [anon_sym_EQ_EQ] = ACTIONS(3986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3988), - [anon_sym_LT_EQ] = ACTIONS(3988), - [anon_sym_GT_EQ] = ACTIONS(3988), - [anon_sym_BANGin] = ACTIONS(3988), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_BANGis] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3986), - [anon_sym_sealed] = ACTIONS(3986), - [anon_sym_annotation] = ACTIONS(3986), - [anon_sym_data] = ACTIONS(3986), - [anon_sym_inner] = ACTIONS(3986), - [anon_sym_value] = ACTIONS(3986), - [anon_sym_override] = ACTIONS(3986), - [anon_sym_lateinit] = ACTIONS(3986), - [anon_sym_public] = ACTIONS(3986), - [anon_sym_private] = ACTIONS(3986), - [anon_sym_internal] = ACTIONS(3986), - [anon_sym_protected] = ACTIONS(3986), - [anon_sym_tailrec] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_infix] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym_external] = ACTIONS(3986), - [sym_property_modifier] = ACTIONS(3986), - [anon_sym_abstract] = ACTIONS(3986), - [anon_sym_final] = ACTIONS(3986), - [anon_sym_open] = ACTIONS(3986), - [anon_sym_vararg] = ACTIONS(3986), - [anon_sym_noinline] = ACTIONS(3986), - [anon_sym_crossinline] = ACTIONS(3986), - [anon_sym_expect] = ACTIONS(3986), - [anon_sym_actual] = ACTIONS(3986), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3988), - [sym_safe_nav] = ACTIONS(3988), + [2755] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3970), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_interface] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3973), + [anon_sym_var] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3975), + [anon_sym_set] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3938), + [anon_sym_DASH_GT] = ACTIONS(3943), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3973), + [anon_sym_sealed] = ACTIONS(3973), + [anon_sym_annotation] = ACTIONS(3973), + [anon_sym_data] = ACTIONS(3975), + [anon_sym_inner] = ACTIONS(3975), + [anon_sym_value] = ACTIONS(3975), + [anon_sym_override] = ACTIONS(3973), + [anon_sym_lateinit] = ACTIONS(3973), + [anon_sym_public] = ACTIONS(3973), + [anon_sym_private] = ACTIONS(3973), + [anon_sym_internal] = ACTIONS(3973), + [anon_sym_protected] = ACTIONS(3973), + [anon_sym_tailrec] = ACTIONS(3973), + [anon_sym_operator] = ACTIONS(3973), + [anon_sym_infix] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym_external] = ACTIONS(3973), + [sym_property_modifier] = ACTIONS(3973), + [anon_sym_abstract] = ACTIONS(3973), + [anon_sym_final] = ACTIONS(3973), + [anon_sym_open] = ACTIONS(3973), + [anon_sym_vararg] = ACTIONS(3973), + [anon_sym_noinline] = ACTIONS(3973), + [anon_sym_crossinline] = ACTIONS(3973), + [anon_sym_expect] = ACTIONS(3975), + [anon_sym_actual] = ACTIONS(3975), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), }, - [2773] = { - [sym_annotated_lambda] = STATE(3403), - [sym_lambda_literal] = STATE(3484), - [sym_annotation] = STATE(8330), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8330), - [sym__alpha_identifier] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_RBRACK] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_as] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym_COMMA] = ACTIONS(4042), - [anon_sym_RPAREN] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4040), - [anon_sym_GT] = ACTIONS(4040), - [anon_sym_where] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_get] = ACTIONS(4040), - [anon_sym_set] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [anon_sym_DASH_GT] = ACTIONS(4042), - [sym_label] = ACTIONS(4042), - [anon_sym_in] = ACTIONS(4040), - [anon_sym_while] = ACTIONS(4040), - [anon_sym_DOT_DOT] = ACTIONS(4042), - [anon_sym_QMARK_COLON] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_else] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_PLUS_EQ] = ACTIONS(4042), - [anon_sym_DASH_EQ] = ACTIONS(4042), - [anon_sym_STAR_EQ] = ACTIONS(4042), - [anon_sym_SLASH_EQ] = ACTIONS(4042), - [anon_sym_PERCENT_EQ] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4042), - [anon_sym_LT_EQ] = ACTIONS(4042), - [anon_sym_GT_EQ] = ACTIONS(4042), - [anon_sym_BANGin] = ACTIONS(4042), - [anon_sym_is] = ACTIONS(4040), - [anon_sym_BANGis] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_SLASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_as_QMARK] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_BANG_BANG] = ACTIONS(4042), - [anon_sym_suspend] = ACTIONS(4040), - [anon_sym_sealed] = ACTIONS(4040), - [anon_sym_annotation] = ACTIONS(4040), - [anon_sym_data] = ACTIONS(4040), - [anon_sym_inner] = ACTIONS(4040), - [anon_sym_value] = ACTIONS(4040), - [anon_sym_override] = ACTIONS(4040), - [anon_sym_lateinit] = ACTIONS(4040), - [anon_sym_public] = ACTIONS(4040), - [anon_sym_private] = ACTIONS(4040), - [anon_sym_internal] = ACTIONS(4040), - [anon_sym_protected] = ACTIONS(4040), - [anon_sym_tailrec] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_infix] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym_external] = ACTIONS(4040), - [sym_property_modifier] = ACTIONS(4040), - [anon_sym_abstract] = ACTIONS(4040), - [anon_sym_final] = ACTIONS(4040), - [anon_sym_open] = ACTIONS(4040), - [anon_sym_vararg] = ACTIONS(4040), - [anon_sym_noinline] = ACTIONS(4040), - [anon_sym_crossinline] = ACTIONS(4040), - [anon_sym_expect] = ACTIONS(4040), - [anon_sym_actual] = ACTIONS(4040), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4042), - [sym_safe_nav] = ACTIONS(4042), + [2756] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3940), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3945), + [anon_sym_interface] = ACTIONS(3945), + [anon_sym_enum] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3945), + [anon_sym_var] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3947), + [anon_sym_set] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3938), + [anon_sym_DASH_GT] = ACTIONS(3943), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3945), + [anon_sym_sealed] = ACTIONS(3945), + [anon_sym_annotation] = ACTIONS(3945), + [anon_sym_data] = ACTIONS(3947), + [anon_sym_inner] = ACTIONS(3947), + [anon_sym_value] = ACTIONS(3947), + [anon_sym_override] = ACTIONS(3945), + [anon_sym_lateinit] = ACTIONS(3945), + [anon_sym_public] = ACTIONS(3945), + [anon_sym_private] = ACTIONS(3945), + [anon_sym_internal] = ACTIONS(3945), + [anon_sym_protected] = ACTIONS(3945), + [anon_sym_tailrec] = ACTIONS(3945), + [anon_sym_operator] = ACTIONS(3945), + [anon_sym_infix] = ACTIONS(3945), + [anon_sym_inline] = ACTIONS(3945), + [anon_sym_external] = ACTIONS(3945), + [sym_property_modifier] = ACTIONS(3945), + [anon_sym_abstract] = ACTIONS(3945), + [anon_sym_final] = ACTIONS(3945), + [anon_sym_open] = ACTIONS(3945), + [anon_sym_vararg] = ACTIONS(3945), + [anon_sym_noinline] = ACTIONS(3945), + [anon_sym_crossinline] = ACTIONS(3945), + [anon_sym_expect] = ACTIONS(3947), + [anon_sym_actual] = ACTIONS(3947), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), }, - [2774] = { - [sym_type_constraints] = STATE(2968), - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [2775] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2757] = { + [sym_property_delegate] = STATE(2884), + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6360), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -338895,249 +337554,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2776] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_by] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4122), - [sym__quest] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [sym_label] = ACTIONS(4122), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_throw] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_AT] = ACTIONS(4124), - [anon_sym_this_AT] = ACTIONS(4124), - [anon_sym_super_AT] = ACTIONS(4124), - [sym_real_literal] = ACTIONS(4124), - [sym_integer_literal] = ACTIONS(4122), - [sym_hex_literal] = ACTIONS(4124), - [sym_bin_literal] = ACTIONS(4124), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), - }, - [2777] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_RBRACK] = ACTIONS(4020), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_RPAREN] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4020), - [sym_label] = ACTIONS(4020), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_while] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [anon_sym_PLUS_EQ] = ACTIONS(4047), - [anon_sym_DASH_EQ] = ACTIONS(4047), - [anon_sym_STAR_EQ] = ACTIONS(4047), - [anon_sym_SLASH_EQ] = ACTIONS(4047), - [anon_sym_PERCENT_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_suspend] = ACTIONS(4018), - [anon_sym_sealed] = ACTIONS(4018), - [anon_sym_annotation] = ACTIONS(4018), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_override] = ACTIONS(4018), - [anon_sym_lateinit] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_internal] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_tailrec] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_infix] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym_external] = ACTIONS(4018), - [sym_property_modifier] = ACTIONS(4018), - [anon_sym_abstract] = ACTIONS(4018), - [anon_sym_final] = ACTIONS(4018), - [anon_sym_open] = ACTIONS(4018), - [anon_sym_vararg] = ACTIONS(4018), - [anon_sym_noinline] = ACTIONS(4018), - [anon_sym_crossinline] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), - [sym_multiline_comment] = ACTIONS(3), - }, - [2778] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4489), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2758] = { + [sym_property_delegate] = STATE(2937), + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(6354), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339162,71 +337644,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2779] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2759] = { + [sym_property_delegate] = STATE(2919), + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6314), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(5067), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [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), @@ -339251,71 +337734,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2780] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4487), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2760] = { + [sym_property_delegate] = STATE(2922), + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [anon_sym_as] = ACTIONS(1770), + [anon_sym_EQ] = ACTIONS(6322), + [anon_sym_LBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_GT] = ACTIONS(1770), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [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), @@ -339340,249 +337824,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2781] = { - [sym_catch_block] = STATE(2781), - [aux_sym_try_expression_repeat1] = STATE(2781), - [sym__alpha_identifier] = ACTIONS(4126), - [anon_sym_AT] = ACTIONS(4128), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_DOT] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_EQ] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4128), - [anon_sym_RBRACE] = ACTIONS(4128), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_COMMA] = ACTIONS(4128), - [anon_sym_LT] = ACTIONS(4126), - [anon_sym_GT] = ACTIONS(4126), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_object] = ACTIONS(4126), - [anon_sym_fun] = ACTIONS(4126), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(4126), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_this] = ACTIONS(4126), - [anon_sym_super] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4126), - [sym_label] = ACTIONS(4126), - [anon_sym_in] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4128), - [anon_sym_QMARK_COLON] = ACTIONS(4128), - [anon_sym_AMP_AMP] = ACTIONS(4128), - [anon_sym_PIPE_PIPE] = ACTIONS(4128), - [anon_sym_null] = ACTIONS(4126), - [anon_sym_if] = ACTIONS(4126), - [anon_sym_else] = ACTIONS(4126), - [anon_sym_when] = ACTIONS(4126), - [anon_sym_try] = ACTIONS(4126), - [anon_sym_catch] = ACTIONS(6431), - [anon_sym_finally] = ACTIONS(4126), - [anon_sym_throw] = ACTIONS(4126), - [anon_sym_return] = ACTIONS(4126), - [anon_sym_continue] = ACTIONS(4126), - [anon_sym_break] = ACTIONS(4126), - [anon_sym_COLON_COLON] = ACTIONS(4128), - [anon_sym_PLUS_EQ] = ACTIONS(4128), - [anon_sym_DASH_EQ] = ACTIONS(4128), - [anon_sym_STAR_EQ] = ACTIONS(4128), - [anon_sym_SLASH_EQ] = ACTIONS(4128), - [anon_sym_PERCENT_EQ] = ACTIONS(4128), - [anon_sym_BANG_EQ] = ACTIONS(4126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4128), - [anon_sym_EQ_EQ] = ACTIONS(4126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4128), - [anon_sym_LT_EQ] = ACTIONS(4128), - [anon_sym_GT_EQ] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4126), - [anon_sym_PERCENT] = ACTIONS(4126), - [anon_sym_as_QMARK] = ACTIONS(4128), - [anon_sym_PLUS_PLUS] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_BANG_BANG] = ACTIONS(4128), - [anon_sym_data] = ACTIONS(4126), - [anon_sym_inner] = ACTIONS(4126), - [anon_sym_value] = ACTIONS(4126), - [anon_sym_expect] = ACTIONS(4126), - [anon_sym_actual] = ACTIONS(4126), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4128), - [anon_sym_continue_AT] = ACTIONS(4128), - [anon_sym_break_AT] = ACTIONS(4128), - [anon_sym_this_AT] = ACTIONS(4128), - [anon_sym_super_AT] = ACTIONS(4128), - [sym_real_literal] = ACTIONS(4128), - [sym_integer_literal] = ACTIONS(4126), - [sym_hex_literal] = ACTIONS(4128), - [sym_bin_literal] = ACTIONS(4128), - [anon_sym_true] = ACTIONS(4126), - [anon_sym_false] = ACTIONS(4126), - [anon_sym_SQUOTE] = ACTIONS(4128), - [sym__backtick_identifier] = ACTIONS(4128), - [sym__automatic_semicolon] = ACTIONS(4128), - [sym_safe_nav] = ACTIONS(4128), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4128), - }, - [2782] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_RBRACK] = ACTIONS(4020), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_RPAREN] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4020), - [sym_label] = ACTIONS(4020), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_while] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [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(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_suspend] = ACTIONS(4018), - [anon_sym_sealed] = ACTIONS(4018), - [anon_sym_annotation] = ACTIONS(4018), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_override] = ACTIONS(4018), - [anon_sym_lateinit] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_internal] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_tailrec] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_infix] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym_external] = ACTIONS(4018), - [sym_property_modifier] = ACTIONS(4018), - [anon_sym_abstract] = ACTIONS(4018), - [anon_sym_final] = ACTIONS(4018), - [anon_sym_open] = ACTIONS(4018), - [anon_sym_vararg] = ACTIONS(4018), - [anon_sym_noinline] = ACTIONS(4018), - [anon_sym_crossinline] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), - [sym_multiline_comment] = ACTIONS(3), + [2761] = { + [sym_catch_block] = STATE(2778), + [sym_finally_block] = STATE(3102), + [aux_sym_try_expression_repeat1] = STATE(2778), + [sym__alpha_identifier] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_COMMA] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_object] = ACTIONS(4044), + [anon_sym_fun] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_get] = ACTIONS(4044), + [anon_sym_set] = ACTIONS(4044), + [anon_sym_this] = ACTIONS(4044), + [anon_sym_super] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [sym_label] = ACTIONS(4044), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4046), + [anon_sym_QMARK_COLON] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_null] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_when] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_catch] = ACTIONS(6362), + [anon_sym_finally] = ACTIONS(6364), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_PLUS_EQ] = ACTIONS(4046), + [anon_sym_DASH_EQ] = ACTIONS(4046), + [anon_sym_STAR_EQ] = ACTIONS(4046), + [anon_sym_SLASH_EQ] = ACTIONS(4046), + [anon_sym_PERCENT_EQ] = ACTIONS(4046), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4046), + [anon_sym_LT_EQ] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4046), + [anon_sym_BANGin] = ACTIONS(4046), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_BANGis] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_as_QMARK] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_BANG_BANG] = ACTIONS(4046), + [anon_sym_data] = ACTIONS(4044), + [anon_sym_inner] = ACTIONS(4044), + [anon_sym_value] = ACTIONS(4044), + [anon_sym_expect] = ACTIONS(4044), + [anon_sym_actual] = ACTIONS(4044), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4046), + [anon_sym_continue_AT] = ACTIONS(4046), + [anon_sym_break_AT] = ACTIONS(4046), + [anon_sym_this_AT] = ACTIONS(4046), + [anon_sym_super_AT] = ACTIONS(4046), + [sym_real_literal] = ACTIONS(4046), + [sym_integer_literal] = ACTIONS(4044), + [sym_hex_literal] = ACTIONS(4046), + [sym_bin_literal] = ACTIONS(4046), + [anon_sym_true] = ACTIONS(4044), + [anon_sym_false] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [sym__backtick_identifier] = ACTIONS(4046), + [sym__automatic_semicolon] = ACTIONS(4046), + [sym_safe_nav] = ACTIONS(4046), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4046), }, - [2783] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2762] = { + [sym_property_delegate] = STATE(2902), + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6328), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339607,71 +338004,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2784] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4485), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2763] = { + [sym_property_delegate] = STATE(2953), + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(6350), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6352), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339696,71 +338094,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2785] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4341), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2764] = { + [sym_property_delegate] = STATE(2899), + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(6324), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339785,71 +338184,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2786] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2765] = { + [sym_property_delegate] = STATE(2892), + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(6366), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_by] = ACTIONS(6302), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(5071), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339874,71 +338274,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2787] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4491), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2766] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4424), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -339963,71 +338363,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2788] = { - [sym_getter] = STATE(5105), - [sym_setter] = STATE(5105), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2767] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6242), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340052,71 +338452,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2789] = { - [sym_getter] = STATE(5112), - [sym_setter] = STATE(5112), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2768] = { + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6292), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340141,71 +338541,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2790] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4440), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2769] = { + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340230,71 +338630,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2791] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2770] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [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), @@ -340319,71 +338719,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2792] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2771] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340408,71 +338808,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2793] = { - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2772] = { + [sym_type_constraints] = STATE(2883), + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6368), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3164), + [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(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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [2773] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340497,160 +338986,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2794] = { - [aux_sym_user_type_repeat1] = STATE(2794), - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(6434), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_object] = ACTIONS(4187), - [anon_sym_fun] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_this] = ACTIONS(4187), - [anon_sym_super] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4187), - [sym__quest] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4187), - [sym_label] = ACTIONS(4187), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4189), - [anon_sym_QMARK_COLON] = ACTIONS(4189), - [anon_sym_AMP_AMP] = ACTIONS(4189), - [anon_sym_PIPE_PIPE] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4187), - [anon_sym_if] = ACTIONS(4187), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_try] = ACTIONS(4187), - [anon_sym_throw] = ACTIONS(4187), - [anon_sym_return] = ACTIONS(4187), - [anon_sym_continue] = ACTIONS(4187), - [anon_sym_break] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4189), - [anon_sym_DASH_EQ] = ACTIONS(4189), - [anon_sym_STAR_EQ] = ACTIONS(4189), - [anon_sym_SLASH_EQ] = ACTIONS(4189), - [anon_sym_PERCENT_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), - [anon_sym_LT_EQ] = ACTIONS(4189), - [anon_sym_GT_EQ] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_SLASH] = ACTIONS(4187), - [anon_sym_PERCENT] = ACTIONS(4187), - [anon_sym_as_QMARK] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4187), - [anon_sym_BANG_BANG] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4189), - [anon_sym_continue_AT] = ACTIONS(4189), - [anon_sym_break_AT] = ACTIONS(4189), - [anon_sym_this_AT] = ACTIONS(4189), - [anon_sym_super_AT] = ACTIONS(4189), - [sym_real_literal] = ACTIONS(4189), - [sym_integer_literal] = ACTIONS(4187), - [sym_hex_literal] = ACTIONS(4189), - [sym_bin_literal] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [anon_sym_SQUOTE] = ACTIONS(4189), - [sym__backtick_identifier] = ACTIONS(4189), - [sym__automatic_semicolon] = ACTIONS(4189), - [sym_safe_nav] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4189), - }, - [2795] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4464), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2774] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340675,71 +339075,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2796] = { - [sym_getter] = STATE(3913), - [sym_setter] = STATE(3913), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2775] = { + [sym_type_constraints] = STATE(2898), + [sym_function_body] = STATE(3233), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(6374), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, + [2776] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340764,71 +339253,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2797] = { - [sym_getter] = STATE(4007), - [sym_setter] = STATE(4007), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2777] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4432), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -340853,71 +339342,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2798] = { - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6346), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2778] = { + [sym_catch_block] = STATE(2778), + [aux_sym_try_expression_repeat1] = STATE(2778), + [sym__alpha_identifier] = ACTIONS(4110), + [anon_sym_AT] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_LPAREN] = ACTIONS(4112), + [anon_sym_COMMA] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4110), + [anon_sym_GT] = ACTIONS(4110), + [anon_sym_where] = ACTIONS(4110), + [anon_sym_object] = ACTIONS(4110), + [anon_sym_fun] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_get] = ACTIONS(4110), + [anon_sym_set] = ACTIONS(4110), + [anon_sym_this] = ACTIONS(4110), + [anon_sym_super] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4110), + [anon_sym_in] = ACTIONS(4110), + [anon_sym_DOT_DOT] = ACTIONS(4112), + [anon_sym_QMARK_COLON] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_PIPE_PIPE] = ACTIONS(4112), + [anon_sym_null] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4110), + [anon_sym_else] = ACTIONS(4110), + [anon_sym_when] = ACTIONS(4110), + [anon_sym_try] = ACTIONS(4110), + [anon_sym_catch] = ACTIONS(6376), + [anon_sym_finally] = ACTIONS(4110), + [anon_sym_throw] = ACTIONS(4110), + [anon_sym_return] = ACTIONS(4110), + [anon_sym_continue] = ACTIONS(4110), + [anon_sym_break] = ACTIONS(4110), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_PLUS_EQ] = ACTIONS(4112), + [anon_sym_DASH_EQ] = ACTIONS(4112), + [anon_sym_STAR_EQ] = ACTIONS(4112), + [anon_sym_SLASH_EQ] = ACTIONS(4112), + [anon_sym_PERCENT_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_BANGin] = ACTIONS(4112), + [anon_sym_is] = ACTIONS(4110), + [anon_sym_BANGis] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4110), + [anon_sym_BANG_BANG] = ACTIONS(4112), + [anon_sym_data] = ACTIONS(4110), + [anon_sym_inner] = ACTIONS(4110), + [anon_sym_value] = ACTIONS(4110), + [anon_sym_expect] = ACTIONS(4110), + [anon_sym_actual] = ACTIONS(4110), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4112), + [anon_sym_continue_AT] = ACTIONS(4112), + [anon_sym_break_AT] = ACTIONS(4112), + [anon_sym_this_AT] = ACTIONS(4112), + [anon_sym_super_AT] = ACTIONS(4112), + [sym_real_literal] = ACTIONS(4112), + [sym_integer_literal] = ACTIONS(4110), + [sym_hex_literal] = ACTIONS(4112), + [sym_bin_literal] = ACTIONS(4112), + [anon_sym_true] = ACTIONS(4110), + [anon_sym_false] = ACTIONS(4110), + [anon_sym_SQUOTE] = ACTIONS(4112), + [sym__backtick_identifier] = ACTIONS(4112), + [sym__automatic_semicolon] = ACTIONS(4112), + [sym_safe_nav] = ACTIONS(4112), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4112), + }, + [2779] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(4430), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [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), @@ -340942,338 +339520,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2799] = { - [sym_type_constraints] = STATE(2967), - [sym_function_body] = STATE(3194), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_COMMA] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4133), - [anon_sym_fun] = ACTIONS(4133), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_this] = ACTIONS(4133), - [anon_sym_super] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4133), - [sym_label] = ACTIONS(4133), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_if] = ACTIONS(4133), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_when] = ACTIONS(4133), - [anon_sym_try] = ACTIONS(4133), - [anon_sym_throw] = ACTIONS(4133), - [anon_sym_return] = ACTIONS(4133), - [anon_sym_continue] = ACTIONS(4133), - [anon_sym_break] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_PLUS_EQ] = ACTIONS(4135), - [anon_sym_DASH_EQ] = ACTIONS(4135), - [anon_sym_STAR_EQ] = ACTIONS(4135), - [anon_sym_SLASH_EQ] = ACTIONS(4135), - [anon_sym_PERCENT_EQ] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4133), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4133), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4135), - [anon_sym_continue_AT] = ACTIONS(4135), - [anon_sym_break_AT] = ACTIONS(4135), - [anon_sym_this_AT] = ACTIONS(4135), - [anon_sym_super_AT] = ACTIONS(4135), - [sym_real_literal] = ACTIONS(4135), - [sym_integer_literal] = ACTIONS(4133), - [sym_hex_literal] = ACTIONS(4135), - [sym_bin_literal] = ACTIONS(4135), - [anon_sym_true] = ACTIONS(4133), - [anon_sym_false] = ACTIONS(4133), - [anon_sym_SQUOTE] = ACTIONS(4135), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4135), - }, - [2800] = { - [sym_type_constraints] = STATE(2946), - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(6439), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [2801] = { - [sym_type_constraints] = STATE(2959), - [sym_function_body] = STATE(3231), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [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(3258), - [anon_sym_object] = ACTIONS(4150), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [2780] = { + [aux_sym_user_type_repeat1] = STATE(2780), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(6379), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [2802] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2781] = { + [sym_getter] = STATE(3830), + [sym_setter] = STATE(3830), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341298,71 +339698,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2803] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2782] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(4380), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [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), @@ -341387,249 +339787,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2804] = { - [aux_sym_user_type_repeat1] = STATE(2794), - [sym__alpha_identifier] = ACTIONS(4143), - [anon_sym_AT] = ACTIONS(4145), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_DOT] = ACTIONS(6443), - [anon_sym_as] = ACTIONS(4143), - [anon_sym_EQ] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_RBRACE] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(4145), - [anon_sym_COMMA] = ACTIONS(4145), - [anon_sym_by] = ACTIONS(4143), - [anon_sym_LT] = ACTIONS(4143), - [anon_sym_GT] = ACTIONS(4143), - [anon_sym_where] = ACTIONS(4143), - [anon_sym_object] = ACTIONS(4143), - [anon_sym_fun] = ACTIONS(4143), - [anon_sym_SEMI] = ACTIONS(4145), - [anon_sym_get] = ACTIONS(4143), - [anon_sym_set] = ACTIONS(4143), - [anon_sym_this] = ACTIONS(4143), - [anon_sym_super] = ACTIONS(4143), - [anon_sym_AMP] = ACTIONS(4143), - [sym__quest] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(4143), - [sym_label] = ACTIONS(4143), - [anon_sym_in] = ACTIONS(4143), - [anon_sym_DOT_DOT] = ACTIONS(4145), - [anon_sym_QMARK_COLON] = ACTIONS(4145), - [anon_sym_AMP_AMP] = ACTIONS(4145), - [anon_sym_PIPE_PIPE] = ACTIONS(4145), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_if] = ACTIONS(4143), - [anon_sym_else] = ACTIONS(4143), - [anon_sym_when] = ACTIONS(4143), - [anon_sym_try] = ACTIONS(4143), - [anon_sym_throw] = ACTIONS(4143), - [anon_sym_return] = ACTIONS(4143), - [anon_sym_continue] = ACTIONS(4143), - [anon_sym_break] = ACTIONS(4143), - [anon_sym_COLON_COLON] = ACTIONS(4145), - [anon_sym_PLUS_EQ] = ACTIONS(4145), - [anon_sym_DASH_EQ] = ACTIONS(4145), - [anon_sym_STAR_EQ] = ACTIONS(4145), - [anon_sym_SLASH_EQ] = ACTIONS(4145), - [anon_sym_PERCENT_EQ] = ACTIONS(4145), - [anon_sym_BANG_EQ] = ACTIONS(4143), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4145), - [anon_sym_EQ_EQ] = ACTIONS(4143), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4145), - [anon_sym_LT_EQ] = ACTIONS(4145), - [anon_sym_GT_EQ] = ACTIONS(4145), - [anon_sym_BANGin] = ACTIONS(4145), - [anon_sym_is] = ACTIONS(4143), - [anon_sym_BANGis] = ACTIONS(4145), - [anon_sym_PLUS] = ACTIONS(4143), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4143), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_as_QMARK] = ACTIONS(4145), - [anon_sym_PLUS_PLUS] = ACTIONS(4145), - [anon_sym_DASH_DASH] = ACTIONS(4145), - [anon_sym_BANG] = ACTIONS(4143), - [anon_sym_BANG_BANG] = ACTIONS(4145), - [anon_sym_data] = ACTIONS(4143), - [anon_sym_inner] = ACTIONS(4143), - [anon_sym_value] = ACTIONS(4143), - [anon_sym_expect] = ACTIONS(4143), - [anon_sym_actual] = ACTIONS(4143), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4145), - [anon_sym_continue_AT] = ACTIONS(4145), - [anon_sym_break_AT] = ACTIONS(4145), - [anon_sym_this_AT] = ACTIONS(4145), - [anon_sym_super_AT] = ACTIONS(4145), - [sym_real_literal] = ACTIONS(4145), - [sym_integer_literal] = ACTIONS(4143), - [sym_hex_literal] = ACTIONS(4145), - [sym_bin_literal] = ACTIONS(4145), - [anon_sym_true] = ACTIONS(4143), - [anon_sym_false] = ACTIONS(4143), - [anon_sym_SQUOTE] = ACTIONS(4145), - [sym__backtick_identifier] = ACTIONS(4145), - [sym__automatic_semicolon] = ACTIONS(4145), - [sym_safe_nav] = ACTIONS(4145), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4145), + [2783] = { + [aux_sym_user_type_repeat1] = STATE(2800), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(6382), + [anon_sym_as] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_LT] = ACTIONS(4103), + [anon_sym_GT] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_object] = ACTIONS(4103), + [anon_sym_fun] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_this] = ACTIONS(4103), + [anon_sym_super] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(4103), + [sym__quest] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4103), + [sym_label] = ACTIONS(4103), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_DOT_DOT] = ACTIONS(4105), + [anon_sym_QMARK_COLON] = ACTIONS(4105), + [anon_sym_AMP_AMP] = ACTIONS(4105), + [anon_sym_PIPE_PIPE] = ACTIONS(4105), + [anon_sym_null] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_when] = ACTIONS(4103), + [anon_sym_try] = ACTIONS(4103), + [anon_sym_throw] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), + [anon_sym_DASH_EQ] = ACTIONS(4105), + [anon_sym_STAR_EQ] = ACTIONS(4105), + [anon_sym_SLASH_EQ] = ACTIONS(4105), + [anon_sym_PERCENT_EQ] = ACTIONS(4105), + [anon_sym_BANG_EQ] = ACTIONS(4103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4105), + [anon_sym_EQ_EQ] = ACTIONS(4103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4105), + [anon_sym_LT_EQ] = ACTIONS(4105), + [anon_sym_GT_EQ] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_SLASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_as_QMARK] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG] = ACTIONS(4103), + [anon_sym_BANG_BANG] = ACTIONS(4105), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4105), + [anon_sym_continue_AT] = ACTIONS(4105), + [anon_sym_break_AT] = ACTIONS(4105), + [anon_sym_this_AT] = ACTIONS(4105), + [anon_sym_super_AT] = ACTIONS(4105), + [sym_real_literal] = ACTIONS(4105), + [sym_integer_literal] = ACTIONS(4103), + [sym_hex_literal] = ACTIONS(4105), + [sym_bin_literal] = ACTIONS(4105), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_SQUOTE] = ACTIONS(4105), + [sym__backtick_identifier] = ACTIONS(4105), + [sym__automatic_semicolon] = ACTIONS(4105), + [sym_safe_nav] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4105), }, - [2805] = { - [sym_type_arguments] = STATE(2830), - [sym__alpha_identifier] = ACTIONS(4169), - [anon_sym_AT] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_as] = ACTIONS(4169), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_LPAREN] = ACTIONS(4171), - [anon_sym_COMMA] = ACTIONS(4171), - [anon_sym_by] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(6446), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_where] = ACTIONS(4169), - [anon_sym_object] = ACTIONS(4169), - [anon_sym_fun] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4171), - [anon_sym_get] = ACTIONS(4169), - [anon_sym_set] = ACTIONS(4169), - [anon_sym_this] = ACTIONS(4169), - [anon_sym_super] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [sym__quest] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [sym_label] = ACTIONS(4169), - [anon_sym_in] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_QMARK_COLON] = ACTIONS(4171), - [anon_sym_AMP_AMP] = ACTIONS(4171), - [anon_sym_PIPE_PIPE] = ACTIONS(4171), - [anon_sym_null] = ACTIONS(4169), - [anon_sym_if] = ACTIONS(4169), - [anon_sym_else] = ACTIONS(4169), - [anon_sym_when] = ACTIONS(4169), - [anon_sym_try] = ACTIONS(4169), - [anon_sym_throw] = ACTIONS(4169), - [anon_sym_return] = ACTIONS(4169), - [anon_sym_continue] = ACTIONS(4169), - [anon_sym_break] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4171), - [anon_sym_PLUS_EQ] = ACTIONS(4171), - [anon_sym_DASH_EQ] = ACTIONS(4171), - [anon_sym_STAR_EQ] = ACTIONS(4171), - [anon_sym_SLASH_EQ] = ACTIONS(4171), - [anon_sym_PERCENT_EQ] = ACTIONS(4171), - [anon_sym_BANG_EQ] = ACTIONS(4169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4171), - [anon_sym_LT_EQ] = ACTIONS(4171), - [anon_sym_GT_EQ] = ACTIONS(4171), - [anon_sym_BANGin] = ACTIONS(4171), - [anon_sym_is] = ACTIONS(4169), - [anon_sym_BANGis] = ACTIONS(4171), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_as_QMARK] = ACTIONS(4171), - [anon_sym_PLUS_PLUS] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(4171), - [anon_sym_BANG] = ACTIONS(4169), - [anon_sym_BANG_BANG] = ACTIONS(4171), - [anon_sym_data] = ACTIONS(4169), - [anon_sym_inner] = ACTIONS(4169), - [anon_sym_value] = ACTIONS(4169), - [anon_sym_expect] = ACTIONS(4169), - [anon_sym_actual] = ACTIONS(4169), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4171), - [anon_sym_continue_AT] = ACTIONS(4171), - [anon_sym_break_AT] = ACTIONS(4171), - [anon_sym_this_AT] = ACTIONS(4171), - [anon_sym_super_AT] = ACTIONS(4171), - [sym_real_literal] = ACTIONS(4171), - [sym_integer_literal] = ACTIONS(4169), - [sym_hex_literal] = ACTIONS(4171), - [sym_bin_literal] = ACTIONS(4171), - [anon_sym_true] = ACTIONS(4169), - [anon_sym_false] = ACTIONS(4169), - [anon_sym_SQUOTE] = ACTIONS(4171), - [sym__backtick_identifier] = ACTIONS(4171), - [sym__automatic_semicolon] = ACTIONS(4171), - [sym_safe_nav] = ACTIONS(4171), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4171), + [2784] = { + [sym_type_arguments] = STATE(2856), + [sym__alpha_identifier] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_DOT] = ACTIONS(4117), + [anon_sym_as] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_RBRACE] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4119), + [anon_sym_COMMA] = ACTIONS(4119), + [anon_sym_by] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(6385), + [anon_sym_GT] = ACTIONS(4117), + [anon_sym_where] = ACTIONS(4117), + [anon_sym_object] = ACTIONS(4117), + [anon_sym_fun] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4119), + [anon_sym_get] = ACTIONS(4117), + [anon_sym_set] = ACTIONS(4117), + [anon_sym_this] = ACTIONS(4117), + [anon_sym_super] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4117), + [sym__quest] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [sym_label] = ACTIONS(4117), + [anon_sym_in] = ACTIONS(4117), + [anon_sym_DOT_DOT] = ACTIONS(4119), + [anon_sym_QMARK_COLON] = ACTIONS(4119), + [anon_sym_AMP_AMP] = ACTIONS(4119), + [anon_sym_PIPE_PIPE] = ACTIONS(4119), + [anon_sym_null] = ACTIONS(4117), + [anon_sym_if] = ACTIONS(4117), + [anon_sym_else] = ACTIONS(4117), + [anon_sym_when] = ACTIONS(4117), + [anon_sym_try] = ACTIONS(4117), + [anon_sym_throw] = ACTIONS(4117), + [anon_sym_return] = ACTIONS(4117), + [anon_sym_continue] = ACTIONS(4117), + [anon_sym_break] = ACTIONS(4117), + [anon_sym_COLON_COLON] = ACTIONS(4119), + [anon_sym_PLUS_EQ] = ACTIONS(4119), + [anon_sym_DASH_EQ] = ACTIONS(4119), + [anon_sym_STAR_EQ] = ACTIONS(4119), + [anon_sym_SLASH_EQ] = ACTIONS(4119), + [anon_sym_PERCENT_EQ] = ACTIONS(4119), + [anon_sym_BANG_EQ] = ACTIONS(4117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4119), + [anon_sym_EQ_EQ] = ACTIONS(4117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4119), + [anon_sym_LT_EQ] = ACTIONS(4119), + [anon_sym_GT_EQ] = ACTIONS(4119), + [anon_sym_BANGin] = ACTIONS(4119), + [anon_sym_is] = ACTIONS(4117), + [anon_sym_BANGis] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_SLASH] = ACTIONS(4117), + [anon_sym_PERCENT] = ACTIONS(4117), + [anon_sym_as_QMARK] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_BANG_BANG] = ACTIONS(4119), + [anon_sym_data] = ACTIONS(4117), + [anon_sym_inner] = ACTIONS(4117), + [anon_sym_value] = ACTIONS(4117), + [anon_sym_expect] = ACTIONS(4117), + [anon_sym_actual] = ACTIONS(4117), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4119), + [anon_sym_continue_AT] = ACTIONS(4119), + [anon_sym_break_AT] = ACTIONS(4119), + [anon_sym_this_AT] = ACTIONS(4119), + [anon_sym_super_AT] = ACTIONS(4119), + [sym_real_literal] = ACTIONS(4119), + [sym_integer_literal] = ACTIONS(4117), + [sym_hex_literal] = ACTIONS(4119), + [sym_bin_literal] = ACTIONS(4119), + [anon_sym_true] = ACTIONS(4117), + [anon_sym_false] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [sym__backtick_identifier] = ACTIONS(4119), + [sym__automatic_semicolon] = ACTIONS(4119), + [sym_safe_nav] = ACTIONS(4119), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4119), }, - [2806] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4450), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2785] = { + [sym_type_constraints] = STATE(2895), + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(6387), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [2786] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_as] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_by] = ACTIONS(4093), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_GT] = ACTIONS(4093), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_object] = ACTIONS(4093), + [anon_sym_fun] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_this] = ACTIONS(4093), + [anon_sym_super] = ACTIONS(4093), + [anon_sym_AMP] = ACTIONS(4093), + [sym__quest] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [sym_label] = ACTIONS(4093), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_DOT_DOT] = ACTIONS(4095), + [anon_sym_QMARK_COLON] = ACTIONS(4095), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_PIPE_PIPE] = ACTIONS(4095), + [anon_sym_null] = ACTIONS(4093), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_when] = ACTIONS(4093), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ] = ACTIONS(4093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_SLASH] = ACTIONS(4093), + [anon_sym_PERCENT] = ACTIONS(4093), + [anon_sym_as_QMARK] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG] = ACTIONS(4093), + [anon_sym_BANG_BANG] = ACTIONS(4095), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4095), + [anon_sym_continue_AT] = ACTIONS(4095), + [anon_sym_break_AT] = ACTIONS(4095), + [anon_sym_this_AT] = ACTIONS(4095), + [anon_sym_super_AT] = ACTIONS(4095), + [sym_real_literal] = ACTIONS(4095), + [sym_integer_literal] = ACTIONS(4093), + [sym_hex_literal] = ACTIONS(4095), + [sym_bin_literal] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4093), + [anon_sym_false] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(4095), + [sym__backtick_identifier] = ACTIONS(4095), + [sym__automatic_semicolon] = ACTIONS(4095), + [sym_safe_nav] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4095), + }, + [2787] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4339), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341654,71 +340232,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2807] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4472), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2788] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341743,71 +340321,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2808] = { - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9420), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(6242), - [anon_sym_set] = ACTIONS(6244), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2789] = { + [sym_annotated_lambda] = STATE(3543), + [sym_lambda_literal] = STATE(3588), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(3932), + [anon_sym_AT] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_RBRACK] = ACTIONS(3934), + [anon_sym_DOT] = ACTIONS(3932), + [anon_sym_as] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3934), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_where] = ACTIONS(3932), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3932), + [anon_sym_set] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_DASH_GT] = ACTIONS(3934), + [sym_label] = ACTIONS(3934), + [anon_sym_in] = ACTIONS(3932), + [anon_sym_while] = ACTIONS(3932), + [anon_sym_DOT_DOT] = ACTIONS(3934), + [anon_sym_QMARK_COLON] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3934), + [anon_sym_SLASH_EQ] = ACTIONS(3934), + [anon_sym_PERCENT_EQ] = ACTIONS(3934), + [anon_sym_BANG_EQ] = ACTIONS(3932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_BANGin] = ACTIONS(3934), + [anon_sym_is] = ACTIONS(3932), + [anon_sym_BANGis] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_as_QMARK] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [anon_sym_BANG_BANG] = ACTIONS(3934), + [anon_sym_suspend] = ACTIONS(3932), + [anon_sym_sealed] = ACTIONS(3932), + [anon_sym_annotation] = ACTIONS(3932), + [anon_sym_data] = ACTIONS(3932), + [anon_sym_inner] = ACTIONS(3932), + [anon_sym_value] = ACTIONS(3932), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_lateinit] = ACTIONS(3932), + [anon_sym_public] = ACTIONS(3932), + [anon_sym_private] = ACTIONS(3932), + [anon_sym_internal] = ACTIONS(3932), + [anon_sym_protected] = ACTIONS(3932), + [anon_sym_tailrec] = ACTIONS(3932), + [anon_sym_operator] = ACTIONS(3932), + [anon_sym_infix] = ACTIONS(3932), + [anon_sym_inline] = ACTIONS(3932), + [anon_sym_external] = ACTIONS(3932), + [sym_property_modifier] = ACTIONS(3932), + [anon_sym_abstract] = ACTIONS(3932), + [anon_sym_final] = ACTIONS(3932), + [anon_sym_open] = ACTIONS(3932), + [anon_sym_vararg] = ACTIONS(3932), + [anon_sym_noinline] = ACTIONS(3932), + [anon_sym_crossinline] = ACTIONS(3932), + [anon_sym_expect] = ACTIONS(3932), + [anon_sym_actual] = ACTIONS(3932), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3934), + [sym_safe_nav] = ACTIONS(3934), + [sym_multiline_comment] = ACTIONS(3), + }, + [2790] = { + [sym_type_constraints] = STATE(2890), + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(6389), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [2791] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341832,71 +340588,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2809] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9446), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6300), - [anon_sym_set] = ACTIONS(6302), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2792] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -341921,71 +340677,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2810] = { - [sym_getter] = STATE(3459), - [sym_setter] = STATE(3459), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2793] = { + [sym_type_constraints] = STATE(2907), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(6391), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4123), + [anon_sym_fun] = ACTIONS(4123), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_this] = ACTIONS(4123), + [anon_sym_super] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4123), + [sym_label] = ACTIONS(4123), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_throw] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4125), + [anon_sym_continue_AT] = ACTIONS(4125), + [anon_sym_break_AT] = ACTIONS(4125), + [anon_sym_this_AT] = ACTIONS(4125), + [anon_sym_super_AT] = ACTIONS(4125), + [sym_real_literal] = ACTIONS(4125), + [sym_integer_literal] = ACTIONS(4123), + [sym_hex_literal] = ACTIONS(4125), + [sym_bin_literal] = ACTIONS(4125), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4125), + }, + [2794] = { + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_RBRACK] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_RPAREN] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [anon_sym_DASH_GT] = ACTIONS(3952), + [sym_label] = ACTIONS(3952), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3981), + [anon_sym_DASH_EQ] = ACTIONS(3981), + [anon_sym_STAR_EQ] = ACTIONS(3981), + [anon_sym_SLASH_EQ] = ACTIONS(3981), + [anon_sym_PERCENT_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_suspend] = ACTIONS(3950), + [anon_sym_sealed] = ACTIONS(3950), + [anon_sym_annotation] = ACTIONS(3950), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [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(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), + [sym_multiline_comment] = ACTIONS(3), + }, + [2795] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4434), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342010,70 +340944,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2811] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4748), + [2796] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), [anon_sym_get] = ACTIONS(6232), [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342098,686 +341033,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2812] = { - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(6448), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_where] = ACTIONS(4289), - [anon_sym_object] = ACTIONS(4289), - [anon_sym_fun] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_this] = ACTIONS(4289), - [anon_sym_super] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4289), - [anon_sym_if] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_when] = ACTIONS(4289), - [anon_sym_try] = ACTIONS(4289), - [anon_sym_throw] = ACTIONS(4289), - [anon_sym_return] = ACTIONS(4289), - [anon_sym_continue] = ACTIONS(4289), - [anon_sym_break] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_PLUS_EQ] = ACTIONS(4291), - [anon_sym_DASH_EQ] = ACTIONS(4291), - [anon_sym_STAR_EQ] = ACTIONS(4291), - [anon_sym_SLASH_EQ] = ACTIONS(4291), - [anon_sym_PERCENT_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4291), - [anon_sym_continue_AT] = ACTIONS(4291), - [anon_sym_break_AT] = ACTIONS(4291), - [anon_sym_this_AT] = ACTIONS(4291), - [anon_sym_super_AT] = ACTIONS(4291), - [sym_real_literal] = ACTIONS(4291), - [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4291), - [sym_bin_literal] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4289), - [anon_sym_false] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4291), - }, - [2813] = { - [sym_class_body] = STATE(3205), - [sym_type_constraints] = STATE(3024), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(6450), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), - }, - [2814] = { - [sym_class_body] = STATE(3172), - [sym_type_constraints] = STATE(3037), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, - [2815] = { - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_by] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_object] = ACTIONS(4321), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_this] = ACTIONS(4321), - [anon_sym_super] = ACTIONS(4321), - [sym__quest] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [anon_sym_DASH_GT] = ACTIONS(4325), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_null] = ACTIONS(4321), - [anon_sym_if] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_when] = ACTIONS(4321), - [anon_sym_try] = ACTIONS(4321), - [anon_sym_throw] = ACTIONS(4321), - [anon_sym_return] = ACTIONS(4321), - [anon_sym_continue] = ACTIONS(4321), - [anon_sym_break] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4321), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4323), - [anon_sym_continue_AT] = ACTIONS(4323), - [anon_sym_break_AT] = ACTIONS(4323), - [anon_sym_this_AT] = ACTIONS(4323), - [anon_sym_super_AT] = ACTIONS(4323), - [sym_real_literal] = ACTIONS(4323), - [sym_integer_literal] = ACTIONS(4321), - [sym_hex_literal] = ACTIONS(4323), - [sym_bin_literal] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [anon_sym_SQUOTE] = ACTIONS(4323), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4323), - }, - [2816] = { - [sym_type_constraints] = STATE(2965), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [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(3258), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [2817] = { - [sym_type_arguments] = STATE(3007), - [sym__alpha_identifier] = ACTIONS(4169), - [anon_sym_AT] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_EQ] = ACTIONS(4171), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_LPAREN] = ACTIONS(4171), - [anon_sym_COMMA] = ACTIONS(4171), - [anon_sym_by] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(6452), - [anon_sym_where] = ACTIONS(4169), - [anon_sym_object] = ACTIONS(4169), - [anon_sym_fun] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4171), - [anon_sym_get] = ACTIONS(4169), - [anon_sym_set] = ACTIONS(4169), - [anon_sym_this] = ACTIONS(4169), - [anon_sym_super] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4171), - [sym__quest] = ACTIONS(4171), - [anon_sym_STAR] = ACTIONS(4171), - [sym_label] = ACTIONS(4169), - [anon_sym_in] = ACTIONS(4169), - [anon_sym_null] = ACTIONS(4169), - [anon_sym_if] = ACTIONS(4169), - [anon_sym_else] = ACTIONS(4169), - [anon_sym_when] = ACTIONS(4169), - [anon_sym_try] = ACTIONS(4169), - [anon_sym_throw] = ACTIONS(4169), - [anon_sym_return] = ACTIONS(4169), - [anon_sym_continue] = ACTIONS(4169), - [anon_sym_break] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4171), - [anon_sym_BANGin] = ACTIONS(4171), - [anon_sym_is] = ACTIONS(4169), - [anon_sym_BANGis] = ACTIONS(4171), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS_PLUS] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(4171), - [anon_sym_BANG] = ACTIONS(4169), - [anon_sym_suspend] = ACTIONS(4169), - [anon_sym_sealed] = ACTIONS(4169), - [anon_sym_annotation] = ACTIONS(4169), - [anon_sym_data] = ACTIONS(4169), - [anon_sym_inner] = ACTIONS(4169), - [anon_sym_value] = ACTIONS(4169), - [anon_sym_override] = ACTIONS(4169), - [anon_sym_lateinit] = ACTIONS(4169), - [anon_sym_public] = ACTIONS(4169), - [anon_sym_private] = ACTIONS(4169), - [anon_sym_internal] = ACTIONS(4169), - [anon_sym_protected] = ACTIONS(4169), - [anon_sym_tailrec] = ACTIONS(4169), - [anon_sym_operator] = ACTIONS(4169), - [anon_sym_infix] = ACTIONS(4169), - [anon_sym_inline] = ACTIONS(4169), - [anon_sym_external] = ACTIONS(4169), - [sym_property_modifier] = ACTIONS(4169), - [anon_sym_abstract] = ACTIONS(4169), - [anon_sym_final] = ACTIONS(4169), - [anon_sym_open] = ACTIONS(4169), - [anon_sym_vararg] = ACTIONS(4169), - [anon_sym_noinline] = ACTIONS(4169), - [anon_sym_crossinline] = ACTIONS(4169), - [anon_sym_expect] = ACTIONS(4169), - [anon_sym_actual] = ACTIONS(4169), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4171), - [anon_sym_continue_AT] = ACTIONS(4171), - [anon_sym_break_AT] = ACTIONS(4171), - [anon_sym_this_AT] = ACTIONS(4171), - [anon_sym_super_AT] = ACTIONS(4171), - [sym_real_literal] = ACTIONS(4171), - [sym_integer_literal] = ACTIONS(4169), - [sym_hex_literal] = ACTIONS(4171), - [sym_bin_literal] = ACTIONS(4171), - [anon_sym_true] = ACTIONS(4169), - [anon_sym_false] = ACTIONS(4169), - [anon_sym_SQUOTE] = ACTIONS(4171), - [sym__backtick_identifier] = ACTIONS(4171), - [sym__automatic_semicolon] = ACTIONS(4171), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4171), - }, - [2818] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(3997), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3997), - [anon_sym_interface] = ACTIONS(3997), - [anon_sym_enum] = ACTIONS(3997), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(3997), - [anon_sym_var] = ACTIONS(3997), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3997), - [anon_sym_fun] = ACTIONS(3997), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3999), - [anon_sym_set] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3999), - [anon_sym_sealed] = ACTIONS(3999), - [anon_sym_annotation] = ACTIONS(3999), - [anon_sym_data] = ACTIONS(3999), - [anon_sym_inner] = ACTIONS(3999), - [anon_sym_value] = ACTIONS(3999), - [anon_sym_override] = ACTIONS(3999), - [anon_sym_lateinit] = ACTIONS(3999), - [anon_sym_public] = ACTIONS(3999), - [anon_sym_private] = ACTIONS(3999), - [anon_sym_internal] = ACTIONS(3999), - [anon_sym_protected] = ACTIONS(3999), - [anon_sym_tailrec] = ACTIONS(3999), - [anon_sym_operator] = ACTIONS(3999), - [anon_sym_infix] = ACTIONS(3999), - [anon_sym_inline] = ACTIONS(3999), - [anon_sym_external] = ACTIONS(3999), - [sym_property_modifier] = ACTIONS(3999), - [anon_sym_abstract] = ACTIONS(3999), - [anon_sym_final] = ACTIONS(3999), - [anon_sym_open] = ACTIONS(3999), - [anon_sym_vararg] = ACTIONS(3999), - [anon_sym_noinline] = ACTIONS(3999), - [anon_sym_crossinline] = ACTIONS(3999), - [anon_sym_expect] = ACTIONS(3999), - [anon_sym_actual] = ACTIONS(3999), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2819] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2797] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342802,70 +341122,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2820] = { - [sym_getter] = STATE(3507), - [sym_setter] = STATE(3507), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4740), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2798] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -342890,686 +341211,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - }, - [2821] = { - [sym_type_constraints] = STATE(3022), - [sym_enum_class_body] = STATE(3214), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [2822] = { - [sym_type_constraints] = STATE(2946), - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [2823] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_by] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_AMP] = ACTIONS(4256), - [sym__quest] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [2824] = { - [sym__alpha_identifier] = ACTIONS(4309), - [anon_sym_AT] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_as] = ACTIONS(4309), - [anon_sym_EQ] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_RBRACE] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_COMMA] = ACTIONS(4311), - [anon_sym_by] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_where] = ACTIONS(4309), - [anon_sym_object] = ACTIONS(4309), - [anon_sym_fun] = ACTIONS(4309), - [anon_sym_SEMI] = ACTIONS(4311), - [anon_sym_get] = ACTIONS(4309), - [anon_sym_set] = ACTIONS(4309), - [anon_sym_this] = ACTIONS(4309), - [anon_sym_super] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4309), - [sym__quest] = ACTIONS(4309), - [anon_sym_STAR] = ACTIONS(4309), - [sym_label] = ACTIONS(4309), - [anon_sym_in] = ACTIONS(4309), - [anon_sym_DOT_DOT] = ACTIONS(4311), - [anon_sym_QMARK_COLON] = ACTIONS(4311), - [anon_sym_AMP_AMP] = ACTIONS(4311), - [anon_sym_PIPE_PIPE] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4309), - [anon_sym_if] = ACTIONS(4309), - [anon_sym_else] = ACTIONS(4309), - [anon_sym_when] = ACTIONS(4309), - [anon_sym_try] = ACTIONS(4309), - [anon_sym_throw] = ACTIONS(4309), - [anon_sym_return] = ACTIONS(4309), - [anon_sym_continue] = ACTIONS(4309), - [anon_sym_break] = ACTIONS(4309), - [anon_sym_COLON_COLON] = ACTIONS(4311), - [anon_sym_PLUS_EQ] = ACTIONS(4311), - [anon_sym_DASH_EQ] = ACTIONS(4311), - [anon_sym_STAR_EQ] = ACTIONS(4311), - [anon_sym_SLASH_EQ] = ACTIONS(4311), - [anon_sym_PERCENT_EQ] = ACTIONS(4311), - [anon_sym_BANG_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), - [anon_sym_LT_EQ] = ACTIONS(4311), - [anon_sym_GT_EQ] = ACTIONS(4311), - [anon_sym_BANGin] = ACTIONS(4311), - [anon_sym_is] = ACTIONS(4309), - [anon_sym_BANGis] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4309), - [anon_sym_DASH] = ACTIONS(4309), - [anon_sym_SLASH] = ACTIONS(4309), - [anon_sym_PERCENT] = ACTIONS(4309), - [anon_sym_as_QMARK] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_BANG_BANG] = ACTIONS(4311), - [anon_sym_data] = ACTIONS(4309), - [anon_sym_inner] = ACTIONS(4309), - [anon_sym_value] = ACTIONS(4309), - [anon_sym_expect] = ACTIONS(4309), - [anon_sym_actual] = ACTIONS(4309), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4311), - [anon_sym_continue_AT] = ACTIONS(4311), - [anon_sym_break_AT] = ACTIONS(4311), - [anon_sym_this_AT] = ACTIONS(4311), - [anon_sym_super_AT] = ACTIONS(4311), - [sym_real_literal] = ACTIONS(4311), - [sym_integer_literal] = ACTIONS(4309), - [sym_hex_literal] = ACTIONS(4311), - [sym_bin_literal] = ACTIONS(4311), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [anon_sym_SQUOTE] = ACTIONS(4311), - [sym__backtick_identifier] = ACTIONS(4311), - [sym__automatic_semicolon] = ACTIONS(4311), - [sym_safe_nav] = ACTIONS(4311), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4311), - }, - [2825] = { - [sym_class_body] = STATE(3214), - [sym_type_constraints] = STATE(3014), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), }, - [2826] = { - [sym_type_constraints] = STATE(3008), - [sym_enum_class_body] = STATE(3254), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6454), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), - }, - [2827] = { - [sym_class_body] = STATE(3254), - [sym_type_constraints] = STATE(3001), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6456), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), - }, - [2828] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4752), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2799] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4363), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343594,246 +341300,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2829] = { - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_object] = ACTIONS(4187), - [anon_sym_fun] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_this] = ACTIONS(4187), - [anon_sym_super] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4187), - [sym__quest] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4187), - [sym_label] = ACTIONS(4187), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4189), - [anon_sym_QMARK_COLON] = ACTIONS(4189), - [anon_sym_AMP_AMP] = ACTIONS(4189), - [anon_sym_PIPE_PIPE] = ACTIONS(4189), - [anon_sym_null] = ACTIONS(4187), - [anon_sym_if] = ACTIONS(4187), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_try] = ACTIONS(4187), - [anon_sym_throw] = ACTIONS(4187), - [anon_sym_return] = ACTIONS(4187), - [anon_sym_continue] = ACTIONS(4187), - [anon_sym_break] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4189), - [anon_sym_DASH_EQ] = ACTIONS(4189), - [anon_sym_STAR_EQ] = ACTIONS(4189), - [anon_sym_SLASH_EQ] = ACTIONS(4189), - [anon_sym_PERCENT_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), - [anon_sym_LT_EQ] = ACTIONS(4189), - [anon_sym_GT_EQ] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_SLASH] = ACTIONS(4187), - [anon_sym_PERCENT] = ACTIONS(4187), - [anon_sym_as_QMARK] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4187), - [anon_sym_BANG_BANG] = ACTIONS(4189), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4189), - [anon_sym_continue_AT] = ACTIONS(4189), - [anon_sym_break_AT] = ACTIONS(4189), - [anon_sym_this_AT] = ACTIONS(4189), - [anon_sym_super_AT] = ACTIONS(4189), - [sym_real_literal] = ACTIONS(4189), - [sym_integer_literal] = ACTIONS(4187), - [sym_hex_literal] = ACTIONS(4189), - [sym_bin_literal] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [anon_sym_SQUOTE] = ACTIONS(4189), - [sym__backtick_identifier] = ACTIONS(4189), - [sym__automatic_semicolon] = ACTIONS(4189), - [sym_safe_nav] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4189), - }, - [2830] = { - [sym__alpha_identifier] = ACTIONS(4305), - [anon_sym_AT] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_as] = ACTIONS(4305), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_by] = ACTIONS(4305), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_where] = ACTIONS(4305), - [anon_sym_object] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_get] = ACTIONS(4305), - [anon_sym_set] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_super] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(4305), - [sym__quest] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4305), - [sym_label] = ACTIONS(4305), - [anon_sym_in] = ACTIONS(4305), - [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(4305), - [anon_sym_if] = ACTIONS(4305), - [anon_sym_else] = ACTIONS(4305), - [anon_sym_when] = ACTIONS(4305), - [anon_sym_try] = ACTIONS(4305), - [anon_sym_throw] = ACTIONS(4305), - [anon_sym_return] = ACTIONS(4305), - [anon_sym_continue] = ACTIONS(4305), - [anon_sym_break] = ACTIONS(4305), - [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(4305), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [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(4305), - [anon_sym_BANGis] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_SLASH] = ACTIONS(4305), - [anon_sym_PERCENT] = ACTIONS(4305), - [anon_sym_as_QMARK] = ACTIONS(4307), - [anon_sym_PLUS_PLUS] = ACTIONS(4307), - [anon_sym_DASH_DASH] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_BANG_BANG] = ACTIONS(4307), - [anon_sym_data] = ACTIONS(4305), - [anon_sym_inner] = ACTIONS(4305), - [anon_sym_value] = ACTIONS(4305), - [anon_sym_expect] = ACTIONS(4305), - [anon_sym_actual] = ACTIONS(4305), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4307), - [anon_sym_continue_AT] = ACTIONS(4307), - [anon_sym_break_AT] = ACTIONS(4307), - [anon_sym_this_AT] = ACTIONS(4307), - [anon_sym_super_AT] = ACTIONS(4307), - [sym_real_literal] = ACTIONS(4307), - [sym_integer_literal] = ACTIONS(4305), - [sym_hex_literal] = ACTIONS(4307), - [sym_bin_literal] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4305), - [anon_sym_false] = ACTIONS(4305), - [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), + [2800] = { + [aux_sym_user_type_repeat1] = STATE(2780), + [sym__alpha_identifier] = ACTIONS(4070), + [anon_sym_AT] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(6393), + [anon_sym_as] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_by] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_where] = ACTIONS(4070), + [anon_sym_object] = ACTIONS(4070), + [anon_sym_fun] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_get] = ACTIONS(4070), + [anon_sym_set] = ACTIONS(4070), + [anon_sym_this] = ACTIONS(4070), + [anon_sym_super] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [sym__quest] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4070), + [sym_label] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_QMARK_COLON] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_else] = ACTIONS(4070), + [anon_sym_when] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_PLUS_EQ] = ACTIONS(4072), + [anon_sym_DASH_EQ] = ACTIONS(4072), + [anon_sym_STAR_EQ] = ACTIONS(4072), + [anon_sym_SLASH_EQ] = ACTIONS(4072), + [anon_sym_PERCENT_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_BANGin] = ACTIONS(4072), + [anon_sym_is] = ACTIONS(4070), + [anon_sym_BANGis] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4070), + [anon_sym_as_QMARK] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_BANG_BANG] = ACTIONS(4072), + [anon_sym_data] = ACTIONS(4070), + [anon_sym_inner] = ACTIONS(4070), + [anon_sym_value] = ACTIONS(4070), + [anon_sym_expect] = ACTIONS(4070), + [anon_sym_actual] = ACTIONS(4070), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4072), + [anon_sym_continue_AT] = ACTIONS(4072), + [anon_sym_break_AT] = ACTIONS(4072), + [anon_sym_this_AT] = ACTIONS(4072), + [anon_sym_super_AT] = ACTIONS(4072), + [sym_real_literal] = ACTIONS(4072), + [sym_integer_literal] = ACTIONS(4070), + [sym_hex_literal] = ACTIONS(4072), + [sym_bin_literal] = ACTIONS(4072), + [anon_sym_true] = ACTIONS(4070), + [anon_sym_false] = ACTIONS(4070), + [anon_sym_SQUOTE] = ACTIONS(4072), + [sym__backtick_identifier] = ACTIONS(4072), + [sym__automatic_semicolon] = ACTIONS(4072), + [sym_safe_nav] = ACTIONS(4072), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4072), }, - [2831] = { - [sym_getter] = STATE(3533), - [sym_setter] = STATE(3533), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2801] = { + [sym_getter] = STATE(5128), + [sym_setter] = STATE(5128), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [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), @@ -343858,70 +341478,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2832] = { - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), + [2802] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_by] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_AMP] = ACTIONS(3938), + [sym__quest] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3938), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [2803] = { + [sym_getter] = STATE(5124), + [sym_setter] = STATE(5124), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), [anon_sym_get] = ACTIONS(6232), [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -343946,334 +341656,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2833] = { - [sym_type_constraints] = STATE(2922), - [sym_function_body] = STATE(3113), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4260), - [anon_sym_fun] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_this] = ACTIONS(4260), - [anon_sym_super] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [anon_sym_try] = ACTIONS(4260), - [anon_sym_throw] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_PLUS_EQ] = ACTIONS(4262), - [anon_sym_DASH_EQ] = ACTIONS(4262), - [anon_sym_STAR_EQ] = ACTIONS(4262), - [anon_sym_SLASH_EQ] = ACTIONS(4262), - [anon_sym_PERCENT_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4262), - [anon_sym_continue_AT] = ACTIONS(4262), - [anon_sym_break_AT] = ACTIONS(4262), - [anon_sym_this_AT] = ACTIONS(4262), - [anon_sym_super_AT] = ACTIONS(4262), - [sym_real_literal] = ACTIONS(4262), - [sym_integer_literal] = ACTIONS(4260), - [sym_hex_literal] = ACTIONS(4262), - [sym_bin_literal] = ACTIONS(4262), - [anon_sym_true] = ACTIONS(4260), - [anon_sym_false] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4262), - [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), + [2804] = { + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_RBRACK] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3960), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_RPAREN] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [anon_sym_DASH_GT] = ACTIONS(3952), + [sym_label] = ACTIONS(3952), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3965), + [anon_sym_DASH_EQ] = ACTIONS(3965), + [anon_sym_STAR_EQ] = ACTIONS(3965), + [anon_sym_SLASH_EQ] = ACTIONS(3965), + [anon_sym_PERCENT_EQ] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_suspend] = ACTIONS(3950), + [anon_sym_sealed] = ACTIONS(3950), + [anon_sym_annotation] = ACTIONS(3950), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [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(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4262), - }, - [2834] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_as] = ACTIONS(4315), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(4315), - [anon_sym_GT] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_object] = ACTIONS(4315), - [anon_sym_fun] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_this] = ACTIONS(4315), - [anon_sym_super] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(6458), - [sym__quest] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [sym_label] = ACTIONS(4315), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_DOT_DOT] = ACTIONS(4317), - [anon_sym_QMARK_COLON] = ACTIONS(4317), - [anon_sym_AMP_AMP] = ACTIONS(4317), - [anon_sym_PIPE_PIPE] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4315), - [anon_sym_if] = ACTIONS(4315), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_when] = ACTIONS(4315), - [anon_sym_try] = ACTIONS(4315), - [anon_sym_throw] = ACTIONS(4315), - [anon_sym_return] = ACTIONS(4315), - [anon_sym_continue] = ACTIONS(4315), - [anon_sym_break] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_PLUS_EQ] = ACTIONS(4317), - [anon_sym_DASH_EQ] = ACTIONS(4317), - [anon_sym_STAR_EQ] = ACTIONS(4317), - [anon_sym_SLASH_EQ] = ACTIONS(4317), - [anon_sym_PERCENT_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ] = ACTIONS(4315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ] = ACTIONS(4315), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4317), - [anon_sym_LT_EQ] = ACTIONS(4317), - [anon_sym_GT_EQ] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_SLASH] = ACTIONS(4315), - [anon_sym_PERCENT] = ACTIONS(4315), - [anon_sym_as_QMARK] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG] = ACTIONS(4315), - [anon_sym_BANG_BANG] = ACTIONS(4317), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4317), - [anon_sym_continue_AT] = ACTIONS(4317), - [anon_sym_break_AT] = ACTIONS(4317), - [anon_sym_this_AT] = ACTIONS(4317), - [anon_sym_super_AT] = ACTIONS(4317), - [sym_real_literal] = ACTIONS(4317), - [sym_integer_literal] = ACTIONS(4315), - [sym_hex_literal] = ACTIONS(4317), - [sym_bin_literal] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_SQUOTE] = ACTIONS(4317), - [sym__backtick_identifier] = ACTIONS(4317), - [sym__automatic_semicolon] = ACTIONS(4317), - [sym_safe_nav] = ACTIONS(4317), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4317), - }, - [2835] = { - [sym_type_constraints] = STATE(3058), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(6460), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), }, - [2836] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2805] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9444), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6232), + [anon_sym_set] = ACTIONS(6234), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -344298,246 +341834,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2837] = { - [sym_function_body] = STATE(3071), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(6464), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), - }, - [2838] = { - [sym_function_body] = STATE(3077), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(6466), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), - }, - [2839] = { - [sym_getter] = STATE(4748), - [sym_setter] = STATE(4748), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6286), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2806] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4386), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -344562,158 +341923,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2840] = { - [sym_type_constraints] = STATE(2999), - [sym_enum_class_body] = STATE(3248), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [2807] = { + [sym_annotated_lambda] = STATE(3562), + [sym_lambda_literal] = STATE(3588), + [sym_annotation] = STATE(8337), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8337), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), }, - [2841] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2808] = { + [sym_getter] = STATE(3899), + [sym_setter] = STATE(3899), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [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), @@ -344738,70 +342101,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2842] = { - [sym_getter] = STATE(3489), - [sym_setter] = STATE(3489), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4734), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2809] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9424), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6192), + [anon_sym_set] = ACTIONS(6194), + [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), @@ -344826,470 +342190,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - }, - [2843] = { - [sym_type_constraints] = STATE(2986), - [sym_enum_class_body] = STATE(3158), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(6468), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), - }, - [2844] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(4007), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(4007), - [anon_sym_interface] = ACTIONS(4007), - [anon_sym_enum] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(4007), - [anon_sym_var] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(4007), - [anon_sym_fun] = ACTIONS(4007), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(4009), - [anon_sym_set] = ACTIONS(4009), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(4009), - [anon_sym_sealed] = ACTIONS(4009), - [anon_sym_annotation] = ACTIONS(4009), - [anon_sym_data] = ACTIONS(4009), - [anon_sym_inner] = ACTIONS(4009), - [anon_sym_value] = ACTIONS(4009), - [anon_sym_override] = ACTIONS(4009), - [anon_sym_lateinit] = ACTIONS(4009), - [anon_sym_public] = ACTIONS(4009), - [anon_sym_private] = ACTIONS(4009), - [anon_sym_internal] = ACTIONS(4009), - [anon_sym_protected] = ACTIONS(4009), - [anon_sym_tailrec] = ACTIONS(4009), - [anon_sym_operator] = ACTIONS(4009), - [anon_sym_infix] = ACTIONS(4009), - [anon_sym_inline] = ACTIONS(4009), - [anon_sym_external] = ACTIONS(4009), - [sym_property_modifier] = ACTIONS(4009), - [anon_sym_abstract] = ACTIONS(4009), - [anon_sym_final] = ACTIONS(4009), - [anon_sym_open] = ACTIONS(4009), - [anon_sym_vararg] = ACTIONS(4009), - [anon_sym_noinline] = ACTIONS(4009), - [anon_sym_crossinline] = ACTIONS(4009), - [anon_sym_expect] = ACTIONS(4009), - [anon_sym_actual] = ACTIONS(4009), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2845] = { - [aux_sym_nullable_type_repeat1] = STATE(2873), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4248), - [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_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(6470), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4250), - [anon_sym_super_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), - }, - [2846] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_by] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4124), - [sym__quest] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4124), - [sym_label] = ACTIONS(4122), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_throw] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_AT] = ACTIONS(4124), - [anon_sym_this_AT] = ACTIONS(4124), - [anon_sym_super_AT] = ACTIONS(4124), - [sym_real_literal] = ACTIONS(4124), - [sym_integer_literal] = ACTIONS(4122), - [sym_hex_literal] = ACTIONS(4124), - [sym_bin_literal] = ACTIONS(4124), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), - }, - [2847] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_RBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_RPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4124), - [sym_label] = ACTIONS(4122), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_while] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_throw] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_AT] = ACTIONS(4124), - [anon_sym_this_AT] = ACTIONS(4124), - [anon_sym_super_AT] = ACTIONS(4124), - [sym_real_literal] = ACTIONS(4124), - [sym_integer_literal] = ACTIONS(4122), - [sym_hex_literal] = ACTIONS(4124), - [sym_bin_literal] = ACTIONS(4124), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym__backtick_identifier] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), - }, - [2848] = { - [sym_type_constraints] = STATE(2913), - [sym_function_body] = STATE(3104), - [sym__block] = STATE(3072), + [2810] = { + [aux_sym_nullable_type_repeat1] = STATE(2878), [sym__alpha_identifier] = ACTIONS(4264), [anon_sym_AT] = ACTIONS(4266), [anon_sym_LBRACK] = ACTIONS(4266), [anon_sym_DOT] = ACTIONS(4264), [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), + [anon_sym_EQ] = ACTIONS(4264), + [anon_sym_LBRACE] = ACTIONS(4266), [anon_sym_RBRACE] = ACTIONS(4266), [anon_sym_LPAREN] = ACTIONS(4266), [anon_sym_COMMA] = ACTIONS(4266), + [anon_sym_by] = ACTIONS(4264), [anon_sym_LT] = ACTIONS(4264), [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(3258), + [anon_sym_where] = ACTIONS(4264), [anon_sym_object] = ACTIONS(4264), [anon_sym_fun] = ACTIONS(4264), [anon_sym_SEMI] = ACTIONS(4266), @@ -345297,6 +342221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_set] = ACTIONS(4264), [anon_sym_this] = ACTIONS(4264), [anon_sym_super] = ACTIONS(4264), + [sym__quest] = ACTIONS(6396), [anon_sym_STAR] = ACTIONS(4264), [sym_label] = ACTIONS(4264), [anon_sym_in] = ACTIONS(4264), @@ -345361,63 +342286,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4266), }, - [2849] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2811] = { + [sym_catch_block] = STATE(2964), + [sym_finally_block] = STATE(3545), + [aux_sym_try_expression_repeat1] = STATE(2964), + [sym__alpha_identifier] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_RBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_COMMA] = ACTIONS(4046), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_get] = ACTIONS(4044), + [anon_sym_set] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_DASH_GT] = ACTIONS(4046), + [sym_label] = ACTIONS(4046), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4046), + [anon_sym_QMARK_COLON] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_catch] = ACTIONS(6398), + [anon_sym_finally] = ACTIONS(6400), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_PLUS_EQ] = ACTIONS(4046), + [anon_sym_DASH_EQ] = ACTIONS(4046), + [anon_sym_STAR_EQ] = ACTIONS(4046), + [anon_sym_SLASH_EQ] = ACTIONS(4046), + [anon_sym_PERCENT_EQ] = ACTIONS(4046), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4046), + [anon_sym_LT_EQ] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4046), + [anon_sym_BANGin] = ACTIONS(4046), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_BANGis] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_as_QMARK] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_BANG_BANG] = ACTIONS(4046), + [anon_sym_suspend] = ACTIONS(4044), + [anon_sym_sealed] = ACTIONS(4044), + [anon_sym_annotation] = ACTIONS(4044), + [anon_sym_data] = ACTIONS(4044), + [anon_sym_inner] = ACTIONS(4044), + [anon_sym_value] = ACTIONS(4044), + [anon_sym_override] = ACTIONS(4044), + [anon_sym_lateinit] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_internal] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_tailrec] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_infix] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym_external] = ACTIONS(4044), + [sym_property_modifier] = ACTIONS(4044), + [anon_sym_abstract] = ACTIONS(4044), + [anon_sym_final] = ACTIONS(4044), + [anon_sym_open] = ACTIONS(4044), + [anon_sym_vararg] = ACTIONS(4044), + [anon_sym_noinline] = ACTIONS(4044), + [anon_sym_crossinline] = ACTIONS(4044), + [anon_sym_expect] = ACTIONS(4044), + [anon_sym_actual] = ACTIONS(4044), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4046), + [sym_safe_nav] = ACTIONS(4046), + [sym_multiline_comment] = ACTIONS(3), + }, + [2812] = { + [sym_getter] = STATE(3393), + [sym_setter] = STATE(3393), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [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), @@ -345442,70 +342455,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2850] = { - [sym_getter] = STATE(3474), - [sym_setter] = STATE(3474), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2813] = { + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345530,70 +342543,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2851] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2814] = { + [sym_getter] = STATE(3382), + [sym_setter] = STATE(3382), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345618,70 +342631,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2852] = { - [sym_getter] = STATE(4845), - [sym_setter] = STATE(4845), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4750), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2815] = { + [sym_class_body] = STATE(3261), + [sym_type_constraints] = STATE(3012), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6402), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [2816] = { + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4704), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345706,70 +342807,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2853] = { - [sym_getter] = STATE(3466), - [sym_setter] = STATE(3466), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4712), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2817] = { + [sym_getter] = STATE(3371), + [sym_setter] = STATE(3371), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345794,70 +342895,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2854] = { - [sym_getter] = STATE(4790), - [sym_setter] = STATE(4790), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2818] = { + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3251), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), + }, + [2819] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_by] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_AMP] = ACTIONS(3943), + [sym__quest] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3943), + [sym_label] = ACTIONS(3938), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [2820] = { + [sym_type_constraints] = STATE(2883), + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3164), + [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(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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [2821] = { + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -345882,422 +343247,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2855] = { - [aux_sym_nullable_type_repeat1] = STATE(2845), - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_as] = ACTIONS(4276), - [anon_sym_EQ] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_object] = ACTIONS(4276), - [anon_sym_fun] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [anon_sym_this] = ACTIONS(4276), - [anon_sym_super] = ACTIONS(4276), - [sym__quest] = ACTIONS(6472), - [anon_sym_STAR] = ACTIONS(4276), - [sym_label] = ACTIONS(4276), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_DOT_DOT] = ACTIONS(4278), - [anon_sym_QMARK_COLON] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_null] = ACTIONS(4276), - [anon_sym_if] = ACTIONS(4276), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_when] = ACTIONS(4276), - [anon_sym_try] = ACTIONS(4276), - [anon_sym_throw] = ACTIONS(4276), - [anon_sym_return] = ACTIONS(4276), - [anon_sym_continue] = ACTIONS(4276), - [anon_sym_break] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ] = ACTIONS(4276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_as_QMARK] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_BANG_BANG] = ACTIONS(4278), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4278), - [anon_sym_continue_AT] = ACTIONS(4278), - [anon_sym_break_AT] = ACTIONS(4278), - [anon_sym_this_AT] = ACTIONS(4278), - [anon_sym_super_AT] = ACTIONS(4278), - [sym_real_literal] = ACTIONS(4278), - [sym_integer_literal] = ACTIONS(4276), - [sym_hex_literal] = ACTIONS(4278), - [sym_bin_literal] = ACTIONS(4278), - [anon_sym_true] = ACTIONS(4276), - [anon_sym_false] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4278), - [sym__backtick_identifier] = ACTIONS(4278), - [sym__automatic_semicolon] = ACTIONS(4278), - [sym_safe_nav] = ACTIONS(4278), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4278), - }, - [2856] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_by] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3995), - [sym__quest] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3995), - [sym_label] = ACTIONS(3990), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [2857] = { - [sym_type_constraints] = STATE(3230), - [sym_function_body] = STATE(3231), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(6474), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4150), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), - }, - [2858] = { - [sym_type_constraints] = STATE(3209), - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(6476), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [2859] = { - [sym_getter] = STATE(4786), - [sym_setter] = STATE(4786), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2822] = { + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(4561), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346322,70 +343335,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2860] = { - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6250), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2823] = { + [sym_type_constraints] = STATE(3028), + [sym_enum_class_body] = STATE(3188), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(6404), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), + }, + [2824] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6406), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_DASH_GT] = ACTIONS(4188), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [2825] = { + [sym_getter] = STATE(3388), + [sym_setter] = STATE(3388), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346410,70 +343599,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2861] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2826] = { + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346498,70 +343687,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2862] = { - [sym_getter] = STATE(4777), - [sym_setter] = STATE(4777), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2827] = { + [sym_function_body] = STATE(3123), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(6410), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [2828] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6412), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [2829] = { + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4573), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346586,70 +343951,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2863] = { - [sym_getter] = STATE(3455), - [sym_setter] = STATE(3455), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2830] = { + [sym_getter] = STATE(4809), + [sym_setter] = STATE(4809), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346674,246 +344039,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2864] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_as] = ACTIONS(4315), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(4315), - [anon_sym_GT] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_object] = ACTIONS(4315), - [anon_sym_fun] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_this] = ACTIONS(4315), - [anon_sym_super] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(6478), - [sym__quest] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [sym_label] = ACTIONS(4315), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_DOT_DOT] = ACTIONS(4317), - [anon_sym_QMARK_COLON] = ACTIONS(4317), - [anon_sym_AMP_AMP] = ACTIONS(4317), - [anon_sym_PIPE_PIPE] = ACTIONS(4317), - [anon_sym_null] = ACTIONS(4315), - [anon_sym_if] = ACTIONS(4315), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_when] = ACTIONS(4315), - [anon_sym_try] = ACTIONS(4315), - [anon_sym_throw] = ACTIONS(4315), - [anon_sym_return] = ACTIONS(4315), - [anon_sym_continue] = ACTIONS(4315), - [anon_sym_break] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_PLUS_EQ] = ACTIONS(4317), - [anon_sym_DASH_EQ] = ACTIONS(4317), - [anon_sym_STAR_EQ] = ACTIONS(4317), - [anon_sym_SLASH_EQ] = ACTIONS(4317), - [anon_sym_PERCENT_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ] = ACTIONS(4315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ] = ACTIONS(4315), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4317), - [anon_sym_LT_EQ] = ACTIONS(4317), - [anon_sym_GT_EQ] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_SLASH] = ACTIONS(4315), - [anon_sym_PERCENT] = ACTIONS(4315), - [anon_sym_as_QMARK] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG] = ACTIONS(4315), - [anon_sym_BANG_BANG] = ACTIONS(4317), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4317), - [anon_sym_continue_AT] = ACTIONS(4317), - [anon_sym_break_AT] = ACTIONS(4317), - [anon_sym_this_AT] = ACTIONS(4317), - [anon_sym_super_AT] = ACTIONS(4317), - [sym_real_literal] = ACTIONS(4317), - [sym_integer_literal] = ACTIONS(4315), - [sym_hex_literal] = ACTIONS(4317), - [sym_bin_literal] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_SQUOTE] = ACTIONS(4317), - [sym__backtick_identifier] = ACTIONS(4317), - [sym__automatic_semicolon] = ACTIONS(4317), - [sym_safe_nav] = ACTIONS(4317), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4317), - }, - [2865] = { - [aux_sym_nullable_type_repeat1] = STATE(2845), - [sym__alpha_identifier] = ACTIONS(4295), - [anon_sym_AT] = ACTIONS(4297), - [anon_sym_LBRACK] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4295), - [anon_sym_EQ] = ACTIONS(4295), - [anon_sym_LBRACE] = ACTIONS(4297), - [anon_sym_RBRACE] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4297), - [anon_sym_COMMA] = ACTIONS(4297), - [anon_sym_by] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4295), - [anon_sym_GT] = ACTIONS(4295), - [anon_sym_where] = ACTIONS(4295), - [anon_sym_object] = ACTIONS(4295), - [anon_sym_fun] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_get] = ACTIONS(4295), - [anon_sym_set] = ACTIONS(4295), - [anon_sym_this] = ACTIONS(4295), - [anon_sym_super] = ACTIONS(4295), - [sym__quest] = ACTIONS(6472), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4295), - [anon_sym_DOT_DOT] = ACTIONS(4297), - [anon_sym_QMARK_COLON] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [anon_sym_null] = ACTIONS(4295), - [anon_sym_if] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4295), - [anon_sym_when] = ACTIONS(4295), - [anon_sym_try] = ACTIONS(4295), - [anon_sym_throw] = ACTIONS(4295), - [anon_sym_return] = ACTIONS(4295), - [anon_sym_continue] = ACTIONS(4295), - [anon_sym_break] = ACTIONS(4295), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_PLUS_EQ] = ACTIONS(4297), - [anon_sym_DASH_EQ] = ACTIONS(4297), - [anon_sym_STAR_EQ] = ACTIONS(4297), - [anon_sym_SLASH_EQ] = ACTIONS(4297), - [anon_sym_PERCENT_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), - [anon_sym_LT_EQ] = ACTIONS(4297), - [anon_sym_GT_EQ] = ACTIONS(4297), - [anon_sym_BANGin] = ACTIONS(4297), - [anon_sym_is] = ACTIONS(4295), - [anon_sym_BANGis] = ACTIONS(4297), - [anon_sym_PLUS] = ACTIONS(4295), - [anon_sym_DASH] = ACTIONS(4295), - [anon_sym_SLASH] = ACTIONS(4295), - [anon_sym_PERCENT] = ACTIONS(4295), - [anon_sym_as_QMARK] = ACTIONS(4297), - [anon_sym_PLUS_PLUS] = ACTIONS(4297), - [anon_sym_DASH_DASH] = ACTIONS(4297), - [anon_sym_BANG] = ACTIONS(4295), - [anon_sym_BANG_BANG] = ACTIONS(4297), - [anon_sym_data] = ACTIONS(4295), - [anon_sym_inner] = ACTIONS(4295), - [anon_sym_value] = ACTIONS(4295), - [anon_sym_expect] = ACTIONS(4295), - [anon_sym_actual] = ACTIONS(4295), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4297), - [anon_sym_continue_AT] = ACTIONS(4297), - [anon_sym_break_AT] = ACTIONS(4297), - [anon_sym_this_AT] = ACTIONS(4297), - [anon_sym_super_AT] = ACTIONS(4297), - [sym_real_literal] = ACTIONS(4297), - [sym_integer_literal] = ACTIONS(4295), - [sym_hex_literal] = ACTIONS(4297), - [sym_bin_literal] = ACTIONS(4297), - [anon_sym_true] = ACTIONS(4295), - [anon_sym_false] = ACTIONS(4295), - [anon_sym_SQUOTE] = ACTIONS(4297), - [sym__backtick_identifier] = ACTIONS(4297), - [sym__automatic_semicolon] = ACTIONS(4297), - [sym_safe_nav] = ACTIONS(4297), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4297), - }, - [2866] = { - [sym_getter] = STATE(4783), - [sym_setter] = STATE(4783), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2831] = { + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(4694), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -346938,422 +344127,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2867] = { - [sym_type_constraints] = STATE(3125), - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(6480), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [2868] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), + [2832] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(6414), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6482), + [anon_sym_LPAREN] = ACTIONS(4240), [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4234), - [anon_sym_DASH_GT] = ACTIONS(4240), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), [anon_sym_DOT_DOT] = ACTIONS(4240), [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), + [anon_sym_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), [anon_sym_PLUS_EQ] = ACTIONS(4240), [anon_sym_DASH_EQ] = ACTIONS(4240), [anon_sym_STAR_EQ] = ACTIONS(4240), [anon_sym_SLASH_EQ] = ACTIONS(4240), [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4238), [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4238), [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), [anon_sym_LT_EQ] = ACTIONS(4240), [anon_sym_GT_EQ] = ACTIONS(4240), [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4238), [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), + [anon_sym_return_AT] = ACTIONS(4240), + [anon_sym_continue_AT] = ACTIONS(4240), + [anon_sym_break_AT] = ACTIONS(4240), + [anon_sym_this_AT] = ACTIONS(4240), + [anon_sym_super_AT] = ACTIONS(4240), + [sym_real_literal] = ACTIONS(4240), + [sym_integer_literal] = ACTIONS(4238), + [sym_hex_literal] = ACTIONS(4240), + [sym_bin_literal] = ACTIONS(4240), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [2869] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_RBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6486), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4220), - [anon_sym_DASH_GT] = ACTIONS(4226), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [2870] = { - [sym__alpha_identifier] = ACTIONS(4212), - [anon_sym_AT] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4214), - [anon_sym_RBRACK] = ACTIONS(4214), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4212), - [anon_sym_EQ] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4214), - [anon_sym_LPAREN] = ACTIONS(4214), - [anon_sym_COMMA] = ACTIONS(4214), - [anon_sym_RPAREN] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4212), - [anon_sym_GT] = ACTIONS(4212), - [anon_sym_where] = ACTIONS(4212), - [anon_sym_object] = ACTIONS(4212), - [anon_sym_fun] = ACTIONS(4212), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym_get] = ACTIONS(4212), - [anon_sym_set] = ACTIONS(4212), - [anon_sym_this] = ACTIONS(4212), - [anon_sym_super] = ACTIONS(4212), - [anon_sym_STAR] = ACTIONS(4212), - [anon_sym_DASH_GT] = ACTIONS(4214), - [sym_label] = ACTIONS(4212), - [anon_sym_in] = ACTIONS(4212), - [anon_sym_while] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4214), - [anon_sym_QMARK_COLON] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_null] = ACTIONS(4212), - [anon_sym_if] = ACTIONS(4212), - [anon_sym_else] = ACTIONS(4212), - [anon_sym_when] = ACTIONS(4212), - [anon_sym_try] = ACTIONS(4212), - [anon_sym_throw] = ACTIONS(4212), - [anon_sym_return] = ACTIONS(4212), - [anon_sym_continue] = ACTIONS(4212), - [anon_sym_break] = ACTIONS(4212), - [anon_sym_COLON_COLON] = ACTIONS(4214), - [anon_sym_PLUS_EQ] = ACTIONS(4214), - [anon_sym_DASH_EQ] = ACTIONS(4214), - [anon_sym_STAR_EQ] = ACTIONS(4214), - [anon_sym_SLASH_EQ] = ACTIONS(4214), - [anon_sym_PERCENT_EQ] = ACTIONS(4214), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4214), - [anon_sym_LT_EQ] = ACTIONS(4214), - [anon_sym_GT_EQ] = ACTIONS(4214), - [anon_sym_BANGin] = ACTIONS(4214), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_BANGis] = ACTIONS(4214), - [anon_sym_PLUS] = ACTIONS(4212), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4212), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_as_QMARK] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4214), - [anon_sym_DASH_DASH] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4212), - [anon_sym_BANG_BANG] = ACTIONS(4214), - [anon_sym_data] = ACTIONS(4212), - [anon_sym_inner] = ACTIONS(4212), - [anon_sym_value] = ACTIONS(4212), - [anon_sym_expect] = ACTIONS(4212), - [anon_sym_actual] = ACTIONS(4212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4214), - [anon_sym_continue_AT] = ACTIONS(4214), - [anon_sym_break_AT] = ACTIONS(4214), - [anon_sym_this_AT] = ACTIONS(4214), - [anon_sym_super_AT] = ACTIONS(4214), - [sym_real_literal] = ACTIONS(4214), - [sym_integer_literal] = ACTIONS(4212), - [sym_hex_literal] = ACTIONS(4214), - [sym_bin_literal] = ACTIONS(4214), - [anon_sym_true] = ACTIONS(4212), - [anon_sym_false] = ACTIONS(4212), - [anon_sym_SQUOTE] = ACTIONS(4214), - [sym__backtick_identifier] = ACTIONS(4214), - [sym_safe_nav] = ACTIONS(4214), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4214), + [sym__string_start] = ACTIONS(4240), }, - [2871] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4744), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2833] = { + [sym_getter] = STATE(3445), + [sym_setter] = STATE(3445), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -347378,70 +344303,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2872] = { - [sym_getter] = STATE(4707), - [sym_setter] = STATE(4707), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2834] = { + [sym_getter] = STATE(4822), + [sym_setter] = STATE(4822), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4575), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -347466,158 +344391,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2873] = { - [aux_sym_nullable_type_repeat1] = STATE(2873), - [sym__alpha_identifier] = ACTIONS(4282), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4282), - [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_by] = ACTIONS(4282), - [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_SEMI] = ACTIONS(4284), - [anon_sym_get] = ACTIONS(4282), - [anon_sym_set] = ACTIONS(4282), - [anon_sym_this] = ACTIONS(4282), - [anon_sym_super] = ACTIONS(4282), - [sym__quest] = ACTIONS(6490), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4284), - [anon_sym_super_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), + [2835] = { + [sym_class_body] = STATE(3221), + [sym_type_constraints] = STATE(2990), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, - [2874] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4746), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2836] = { + [sym_type_constraints] = STATE(2969), + [sym_enum_class_body] = STATE(3221), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [2837] = { + [sym__alpha_identifier] = ACTIONS(4158), + [anon_sym_AT] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4158), + [anon_sym_EQ] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(4160), + [anon_sym_COMMA] = ACTIONS(4160), + [anon_sym_by] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4158), + [anon_sym_GT] = ACTIONS(4158), + [anon_sym_where] = ACTIONS(4158), + [anon_sym_object] = ACTIONS(4158), + [anon_sym_fun] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym_get] = ACTIONS(4158), + [anon_sym_set] = ACTIONS(4158), + [anon_sym_this] = ACTIONS(4158), + [anon_sym_super] = ACTIONS(4158), + [sym__quest] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4158), + [anon_sym_DOT_DOT] = ACTIONS(4160), + [anon_sym_QMARK_COLON] = ACTIONS(4160), + [anon_sym_AMP_AMP] = ACTIONS(4160), + [anon_sym_PIPE_PIPE] = ACTIONS(4160), + [anon_sym_null] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4158), + [anon_sym_when] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_throw] = ACTIONS(4158), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_continue] = ACTIONS(4158), + [anon_sym_break] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(4160), + [anon_sym_PLUS_EQ] = ACTIONS(4160), + [anon_sym_DASH_EQ] = ACTIONS(4160), + [anon_sym_STAR_EQ] = ACTIONS(4160), + [anon_sym_SLASH_EQ] = ACTIONS(4160), + [anon_sym_PERCENT_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4160), + [anon_sym_LT_EQ] = ACTIONS(4160), + [anon_sym_GT_EQ] = ACTIONS(4160), + [anon_sym_BANGin] = ACTIONS(4160), + [anon_sym_is] = ACTIONS(4158), + [anon_sym_BANGis] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_SLASH] = ACTIONS(4158), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4160), + [anon_sym_PLUS_PLUS] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_BANG_BANG] = ACTIONS(4160), + [anon_sym_data] = ACTIONS(4158), + [anon_sym_inner] = ACTIONS(4158), + [anon_sym_value] = ACTIONS(4158), + [anon_sym_expect] = ACTIONS(4158), + [anon_sym_actual] = ACTIONS(4158), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4160), + [anon_sym_continue_AT] = ACTIONS(4160), + [anon_sym_break_AT] = ACTIONS(4160), + [anon_sym_this_AT] = ACTIONS(4160), + [anon_sym_super_AT] = ACTIONS(4160), + [sym_real_literal] = ACTIONS(4160), + [sym_integer_literal] = ACTIONS(4158), + [sym_hex_literal] = ACTIONS(4160), + [sym_bin_literal] = ACTIONS(4160), + [anon_sym_true] = ACTIONS(4158), + [anon_sym_false] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4160), + [sym__backtick_identifier] = ACTIONS(4160), + [sym__automatic_semicolon] = ACTIONS(4160), + [sym_safe_nav] = ACTIONS(4160), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4160), + }, + [2838] = { + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4571), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -347642,158 +344743,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2875] = { - [sym_catch_block] = STATE(2909), - [sym_finally_block] = STATE(3405), - [aux_sym_try_expression_repeat1] = STATE(2909), - [sym__alpha_identifier] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_RBRACK] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_EQ] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_RPAREN] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_get] = ACTIONS(4104), - [anon_sym_set] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [anon_sym_DASH_GT] = ACTIONS(4106), - [sym_label] = ACTIONS(4106), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_while] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_QMARK_COLON] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(4104), - [anon_sym_catch] = ACTIONS(6493), - [anon_sym_finally] = ACTIONS(6495), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_BANGin] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_BANGis] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_as_QMARK] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_BANG_BANG] = ACTIONS(4106), - [anon_sym_suspend] = ACTIONS(4104), - [anon_sym_sealed] = ACTIONS(4104), - [anon_sym_annotation] = ACTIONS(4104), - [anon_sym_data] = ACTIONS(4104), - [anon_sym_inner] = ACTIONS(4104), - [anon_sym_value] = ACTIONS(4104), - [anon_sym_override] = ACTIONS(4104), - [anon_sym_lateinit] = ACTIONS(4104), - [anon_sym_public] = ACTIONS(4104), - [anon_sym_private] = ACTIONS(4104), - [anon_sym_internal] = ACTIONS(4104), - [anon_sym_protected] = ACTIONS(4104), - [anon_sym_tailrec] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_infix] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym_external] = ACTIONS(4104), - [sym_property_modifier] = ACTIONS(4104), - [anon_sym_abstract] = ACTIONS(4104), - [anon_sym_final] = ACTIONS(4104), - [anon_sym_open] = ACTIONS(4104), - [anon_sym_vararg] = ACTIONS(4104), - [anon_sym_noinline] = ACTIONS(4104), - [anon_sym_crossinline] = ACTIONS(4104), - [anon_sym_expect] = ACTIONS(4104), - [anon_sym_actual] = ACTIONS(4104), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4106), - [sym_safe_nav] = ACTIONS(4106), - [sym_multiline_comment] = ACTIONS(3), + [2839] = { + [sym_class_body] = STATE(3059), + [sym_type_constraints] = STATE(2977), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(6416), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), }, - [2876] = { - [sym_getter] = STATE(4756), - [sym_setter] = STATE(4756), - [sym_modifiers] = STATE(9352), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6232), - [anon_sym_set] = ACTIONS(6234), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2840] = { + [sym_getter] = STATE(4790), + [sym_setter] = STATE(4790), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -347818,70 +344919,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2877] = { - [sym_getter] = STATE(3497), - [sym_setter] = STATE(3497), - [sym_modifiers] = STATE(9276), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(6252), - [anon_sym_set] = ACTIONS(6254), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2841] = { + [sym_class_body] = STATE(3178), + [sym_type_constraints] = STATE(3009), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [2842] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4696), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -347906,679 +345095,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2878] = { - [sym_type_constraints] = STATE(3193), - [sym_function_body] = STATE(3194), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4133), - [anon_sym_fun] = ACTIONS(4133), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_this] = ACTIONS(4133), - [anon_sym_super] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4133), - [sym_label] = ACTIONS(4133), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_if] = ACTIONS(4133), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_when] = ACTIONS(4133), - [anon_sym_try] = ACTIONS(4133), - [anon_sym_throw] = ACTIONS(4133), - [anon_sym_return] = ACTIONS(4133), - [anon_sym_continue] = ACTIONS(4133), - [anon_sym_break] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_PLUS_EQ] = ACTIONS(4135), - [anon_sym_DASH_EQ] = ACTIONS(4135), - [anon_sym_STAR_EQ] = ACTIONS(4135), - [anon_sym_SLASH_EQ] = ACTIONS(4135), - [anon_sym_PERCENT_EQ] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4133), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4133), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4135), - [anon_sym_continue_AT] = ACTIONS(4135), - [anon_sym_break_AT] = ACTIONS(4135), - [anon_sym_this_AT] = ACTIONS(4135), - [anon_sym_super_AT] = ACTIONS(4135), - [sym_real_literal] = ACTIONS(4135), - [sym_integer_literal] = ACTIONS(4133), - [sym_hex_literal] = ACTIONS(4135), - [sym_bin_literal] = ACTIONS(4135), - [anon_sym_true] = ACTIONS(4133), - [anon_sym_false] = ACTIONS(4133), - [anon_sym_SQUOTE] = ACTIONS(4135), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4135), - }, - [2879] = { - [sym_type_constraints] = STATE(2968), - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [2880] = { - [aux_sym_user_type_repeat1] = STATE(2889), - [sym__alpha_identifier] = ACTIONS(4143), - [anon_sym_AT] = ACTIONS(4145), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_DOT] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(4145), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_RBRACE] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(4145), - [anon_sym_COMMA] = ACTIONS(4145), - [anon_sym_by] = ACTIONS(4143), - [anon_sym_where] = ACTIONS(4143), - [anon_sym_object] = ACTIONS(4143), - [anon_sym_fun] = ACTIONS(4143), - [anon_sym_SEMI] = ACTIONS(4145), - [anon_sym_get] = ACTIONS(4143), - [anon_sym_set] = ACTIONS(4143), - [anon_sym_this] = ACTIONS(4143), - [anon_sym_super] = ACTIONS(4143), - [anon_sym_AMP] = ACTIONS(4145), - [sym__quest] = ACTIONS(4145), - [anon_sym_STAR] = ACTIONS(4145), - [sym_label] = ACTIONS(4143), - [anon_sym_in] = ACTIONS(4143), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_if] = ACTIONS(4143), - [anon_sym_else] = ACTIONS(4143), - [anon_sym_when] = ACTIONS(4143), - [anon_sym_try] = ACTIONS(4143), - [anon_sym_throw] = ACTIONS(4143), - [anon_sym_return] = ACTIONS(4143), - [anon_sym_continue] = ACTIONS(4143), - [anon_sym_break] = ACTIONS(4143), - [anon_sym_COLON_COLON] = ACTIONS(4145), - [anon_sym_BANGin] = ACTIONS(4145), - [anon_sym_is] = ACTIONS(4143), - [anon_sym_BANGis] = ACTIONS(4145), - [anon_sym_PLUS] = ACTIONS(4143), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(4145), - [anon_sym_DASH_DASH] = ACTIONS(4145), - [anon_sym_BANG] = ACTIONS(4143), - [anon_sym_suspend] = ACTIONS(4143), - [anon_sym_sealed] = ACTIONS(4143), - [anon_sym_annotation] = ACTIONS(4143), - [anon_sym_data] = ACTIONS(4143), - [anon_sym_inner] = ACTIONS(4143), - [anon_sym_value] = ACTIONS(4143), - [anon_sym_override] = ACTIONS(4143), - [anon_sym_lateinit] = ACTIONS(4143), - [anon_sym_public] = ACTIONS(4143), - [anon_sym_private] = ACTIONS(4143), - [anon_sym_internal] = ACTIONS(4143), - [anon_sym_protected] = ACTIONS(4143), - [anon_sym_tailrec] = ACTIONS(4143), - [anon_sym_operator] = ACTIONS(4143), - [anon_sym_infix] = ACTIONS(4143), - [anon_sym_inline] = ACTIONS(4143), - [anon_sym_external] = ACTIONS(4143), - [sym_property_modifier] = ACTIONS(4143), - [anon_sym_abstract] = ACTIONS(4143), - [anon_sym_final] = ACTIONS(4143), - [anon_sym_open] = ACTIONS(4143), - [anon_sym_vararg] = ACTIONS(4143), - [anon_sym_noinline] = ACTIONS(4143), - [anon_sym_crossinline] = ACTIONS(4143), - [anon_sym_expect] = ACTIONS(4143), - [anon_sym_actual] = ACTIONS(4143), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4145), - [anon_sym_continue_AT] = ACTIONS(4145), - [anon_sym_break_AT] = ACTIONS(4145), - [anon_sym_this_AT] = ACTIONS(4145), - [anon_sym_super_AT] = ACTIONS(4145), - [sym_real_literal] = ACTIONS(4145), - [sym_integer_literal] = ACTIONS(4143), - [sym_hex_literal] = ACTIONS(4145), - [sym_bin_literal] = ACTIONS(4145), - [anon_sym_true] = ACTIONS(4143), - [anon_sym_false] = ACTIONS(4143), - [anon_sym_SQUOTE] = ACTIONS(4145), - [sym__backtick_identifier] = ACTIONS(4145), - [sym__automatic_semicolon] = ACTIONS(4145), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4145), - }, - [2881] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_RBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_RPAREN] = ACTIONS(3995), - [anon_sym_by] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3990), - [sym__quest] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_DASH_GT] = ACTIONS(3995), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2882] = { - [sym_type_constraints] = STATE(3125), - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [2883] = { - [sym_class_body] = STATE(3138), - [sym_type_constraints] = STATE(2983), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [2884] = { - [sym_type_constraints] = STATE(2982), - [sym_enum_class_body] = STATE(3121), - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4415), - [anon_sym_fun] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_this] = ACTIONS(4415), - [anon_sym_super] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [sym_label] = ACTIONS(4415), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_null] = ACTIONS(4415), - [anon_sym_if] = ACTIONS(4415), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_when] = ACTIONS(4415), - [anon_sym_try] = ACTIONS(4415), - [anon_sym_throw] = ACTIONS(4415), - [anon_sym_return] = ACTIONS(4415), - [anon_sym_continue] = ACTIONS(4415), - [anon_sym_break] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(4415), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4417), - [anon_sym_continue_AT] = ACTIONS(4417), - [anon_sym_break_AT] = ACTIONS(4417), - [anon_sym_this_AT] = ACTIONS(4417), - [anon_sym_super_AT] = ACTIONS(4417), - [sym_real_literal] = ACTIONS(4417), - [sym_integer_literal] = ACTIONS(4415), - [sym_hex_literal] = ACTIONS(4417), - [sym_bin_literal] = ACTIONS(4417), - [anon_sym_true] = ACTIONS(4415), - [anon_sym_false] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4417), - [sym__backtick_identifier] = ACTIONS(4417), - [sym__automatic_semicolon] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4417), - }, - [2885] = { - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6372), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2843] = { + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -348603,156 +345183,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2886] = { - [sym_value_arguments] = STATE(3256), - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(6501), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), + [2844] = { + [sym_function_body] = STATE(3067), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(6418), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_where] = ACTIONS(4250), + [anon_sym_object] = ACTIONS(4250), + [anon_sym_fun] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_this] = ACTIONS(4250), + [anon_sym_super] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_null] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_when] = ACTIONS(4250), + [anon_sym_try] = ACTIONS(4250), + [anon_sym_throw] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_PLUS_EQ] = ACTIONS(4252), + [anon_sym_DASH_EQ] = ACTIONS(4252), + [anon_sym_STAR_EQ] = ACTIONS(4252), + [anon_sym_SLASH_EQ] = ACTIONS(4252), + [anon_sym_PERCENT_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4252), + [anon_sym_continue_AT] = ACTIONS(4252), + [anon_sym_break_AT] = ACTIONS(4252), + [anon_sym_this_AT] = ACTIONS(4252), + [anon_sym_super_AT] = ACTIONS(4252), + [sym_real_literal] = ACTIONS(4252), + [sym_integer_literal] = ACTIONS(4250), + [sym_hex_literal] = ACTIONS(4252), + [sym_bin_literal] = ACTIONS(4252), + [anon_sym_true] = ACTIONS(4250), + [anon_sym_false] = ACTIONS(4250), + [anon_sym_SQUOTE] = ACTIONS(4252), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4252), }, - [2887] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2845] = { + [sym_getter] = STATE(3400), + [sym_setter] = STATE(3400), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -348777,69 +345359,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2888] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4816), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2846] = { + [sym_getter] = STATE(3469), + [sym_setter] = STATE(3469), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -348864,156 +345447,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2889] = { - [aux_sym_user_type_repeat1] = STATE(2889), - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_object] = ACTIONS(4187), - [anon_sym_fun] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_this] = ACTIONS(4187), - [anon_sym_super] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4187), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4187), - [anon_sym_if] = ACTIONS(4187), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_try] = ACTIONS(4187), - [anon_sym_throw] = ACTIONS(4187), - [anon_sym_return] = ACTIONS(4187), - [anon_sym_continue] = ACTIONS(4187), - [anon_sym_break] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4187), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4189), - [anon_sym_continue_AT] = ACTIONS(4189), - [anon_sym_break_AT] = ACTIONS(4189), - [anon_sym_this_AT] = ACTIONS(4189), - [anon_sym_super_AT] = ACTIONS(4189), - [sym_real_literal] = ACTIONS(4189), - [sym_integer_literal] = ACTIONS(4187), - [sym_hex_literal] = ACTIONS(4189), - [sym_bin_literal] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [anon_sym_SQUOTE] = ACTIONS(4189), - [sym__backtick_identifier] = ACTIONS(4189), - [sym__automatic_semicolon] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4189), + [2847] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6420), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_DASH_GT] = ACTIONS(4220), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [2890] = { - [sym_getter] = STATE(3844), - [sym_setter] = STATE(3844), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2848] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3973), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_interface] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3973), + [anon_sym_var] = ACTIONS(3973), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3973), + [anon_sym_fun] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3975), + [anon_sym_set] = ACTIONS(3975), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3975), + [anon_sym_sealed] = ACTIONS(3975), + [anon_sym_annotation] = ACTIONS(3975), + [anon_sym_data] = ACTIONS(3975), + [anon_sym_inner] = ACTIONS(3975), + [anon_sym_value] = ACTIONS(3975), + [anon_sym_override] = ACTIONS(3975), + [anon_sym_lateinit] = ACTIONS(3975), + [anon_sym_public] = ACTIONS(3975), + [anon_sym_private] = ACTIONS(3975), + [anon_sym_internal] = ACTIONS(3975), + [anon_sym_protected] = ACTIONS(3975), + [anon_sym_tailrec] = ACTIONS(3975), + [anon_sym_operator] = ACTIONS(3975), + [anon_sym_infix] = ACTIONS(3975), + [anon_sym_inline] = ACTIONS(3975), + [anon_sym_external] = ACTIONS(3975), + [sym_property_modifier] = ACTIONS(3975), + [anon_sym_abstract] = ACTIONS(3975), + [anon_sym_final] = ACTIONS(3975), + [anon_sym_open] = ACTIONS(3975), + [anon_sym_vararg] = ACTIONS(3975), + [anon_sym_noinline] = ACTIONS(3975), + [anon_sym_crossinline] = ACTIONS(3975), + [anon_sym_expect] = ACTIONS(3975), + [anon_sym_actual] = ACTIONS(3975), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + }, + [2849] = { + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(6424), + [sym__quest] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [2850] = { + [aux_sym_nullable_type_repeat1] = STATE(2810), + [sym__alpha_identifier] = ACTIONS(4270), + [anon_sym_AT] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [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_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(6426), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4272), + [anon_sym_super_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), + }, + [2851] = { + [sym_getter] = STATE(4836), + [sym_setter] = STATE(4836), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [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), @@ -349038,156 +345887,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2891] = { - [sym_class_body] = STATE(3205), - [sym_type_constraints] = STATE(3024), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(6506), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), + [2852] = { + [sym_type_constraints] = STATE(3194), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(6428), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4123), + [anon_sym_fun] = ACTIONS(4123), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_this] = ACTIONS(4123), + [anon_sym_super] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4123), + [sym_label] = ACTIONS(4123), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_throw] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4125), + [anon_sym_continue_AT] = ACTIONS(4125), + [anon_sym_break_AT] = ACTIONS(4125), + [anon_sym_this_AT] = ACTIONS(4125), + [anon_sym_super_AT] = ACTIONS(4125), + [sym_real_literal] = ACTIONS(4125), + [sym_integer_literal] = ACTIONS(4123), + [sym_hex_literal] = ACTIONS(4125), + [sym_bin_literal] = ACTIONS(4125), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4125), }, - [2892] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2853] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_by] = ACTIONS(4093), + [anon_sym_LT] = ACTIONS(4095), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_object] = ACTIONS(4093), + [anon_sym_fun] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_this] = ACTIONS(4093), + [anon_sym_super] = ACTIONS(4093), + [anon_sym_AMP] = ACTIONS(4095), + [sym__quest] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(4095), + [sym_label] = ACTIONS(4093), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4093), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_when] = ACTIONS(4093), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG] = ACTIONS(4093), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4095), + [anon_sym_continue_AT] = ACTIONS(4095), + [anon_sym_break_AT] = ACTIONS(4095), + [anon_sym_this_AT] = ACTIONS(4095), + [anon_sym_super_AT] = ACTIONS(4095), + [sym_real_literal] = ACTIONS(4095), + [sym_integer_literal] = ACTIONS(4093), + [sym_hex_literal] = ACTIONS(4095), + [sym_bin_literal] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4093), + [anon_sym_false] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(4095), + [sym__backtick_identifier] = ACTIONS(4095), + [sym__automatic_semicolon] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4095), + }, + [2854] = { + [sym_getter] = STATE(4705), + [sym_setter] = STATE(4705), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [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), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -349212,243 +346151,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - }, - [2893] = { - [sym_type_constraints] = STATE(3022), - [sym_enum_class_body] = STATE(3214), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [2894] = { - [sym_class_body] = STATE(3172), - [sym_type_constraints] = STATE(3037), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), + [sym_multiline_comment] = ACTIONS(3), }, - [2895] = { - [sym_getter] = STATE(3896), - [sym_setter] = STATE(3896), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2855] = { + [sym_getter] = STATE(4861), + [sym_setter] = STATE(4861), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -349473,417 +346239,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2896] = { - [sym_type_constraints] = STATE(2985), - [sym_enum_class_body] = STATE(3138), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [2856] = { + [sym__alpha_identifier] = ACTIONS(4234), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_as] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_object] = ACTIONS(4234), + [anon_sym_fun] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4234), + [anon_sym_set] = ACTIONS(4234), + [anon_sym_this] = ACTIONS(4234), + [anon_sym_super] = ACTIONS(4234), + [anon_sym_AMP] = ACTIONS(4234), + [sym__quest] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4234), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4236), + [anon_sym_QMARK_COLON] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_when] = ACTIONS(4234), + [anon_sym_try] = ACTIONS(4234), + [anon_sym_throw] = ACTIONS(4234), + [anon_sym_return] = ACTIONS(4234), + [anon_sym_continue] = ACTIONS(4234), + [anon_sym_break] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), + [anon_sym_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4234), + [anon_sym_BANG_BANG] = ACTIONS(4236), + [anon_sym_data] = ACTIONS(4234), + [anon_sym_inner] = ACTIONS(4234), + [anon_sym_value] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(4234), + [anon_sym_actual] = ACTIONS(4234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4236), + [anon_sym_continue_AT] = ACTIONS(4236), + [anon_sym_break_AT] = ACTIONS(4236), + [anon_sym_this_AT] = ACTIONS(4236), + [anon_sym_super_AT] = ACTIONS(4236), + [sym_real_literal] = ACTIONS(4236), + [sym_integer_literal] = ACTIONS(4234), + [sym_hex_literal] = ACTIONS(4236), + [sym_bin_literal] = ACTIONS(4236), + [anon_sym_true] = ACTIONS(4234), + [anon_sym_false] = ACTIONS(4234), + [anon_sym_SQUOTE] = ACTIONS(4236), + [sym__backtick_identifier] = ACTIONS(4236), + [sym__automatic_semicolon] = ACTIONS(4236), + [sym_safe_nav] = ACTIONS(4236), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4236), }, - [2897] = { - [sym__alpha_identifier] = ACTIONS(4446), - [anon_sym_AT] = ACTIONS(4448), - [anon_sym_LBRACK] = ACTIONS(4448), - [anon_sym_DOT] = ACTIONS(4446), - [anon_sym_as] = ACTIONS(4446), - [anon_sym_EQ] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4448), - [anon_sym_RBRACE] = ACTIONS(4448), - [anon_sym_LPAREN] = ACTIONS(4448), - [anon_sym_COMMA] = ACTIONS(4448), - [anon_sym_LT] = ACTIONS(4446), - [anon_sym_GT] = ACTIONS(4446), - [anon_sym_where] = ACTIONS(4446), - [anon_sym_object] = ACTIONS(4446), - [anon_sym_fun] = ACTIONS(4446), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(4446), - [anon_sym_set] = ACTIONS(4446), - [anon_sym_this] = ACTIONS(4446), - [anon_sym_super] = ACTIONS(4446), - [anon_sym_STAR] = ACTIONS(4446), - [sym_label] = ACTIONS(4446), - [anon_sym_in] = ACTIONS(4446), - [anon_sym_DOT_DOT] = ACTIONS(4448), - [anon_sym_QMARK_COLON] = ACTIONS(4448), - [anon_sym_AMP_AMP] = ACTIONS(4448), - [anon_sym_PIPE_PIPE] = ACTIONS(4448), - [anon_sym_null] = ACTIONS(4446), - [anon_sym_if] = ACTIONS(4446), - [anon_sym_else] = ACTIONS(4446), - [anon_sym_when] = ACTIONS(4446), - [anon_sym_try] = ACTIONS(4446), - [anon_sym_catch] = ACTIONS(4446), - [anon_sym_finally] = ACTIONS(4446), - [anon_sym_throw] = ACTIONS(4446), - [anon_sym_return] = ACTIONS(4446), - [anon_sym_continue] = ACTIONS(4446), - [anon_sym_break] = ACTIONS(4446), - [anon_sym_COLON_COLON] = ACTIONS(4448), - [anon_sym_PLUS_EQ] = ACTIONS(4448), - [anon_sym_DASH_EQ] = ACTIONS(4448), - [anon_sym_STAR_EQ] = ACTIONS(4448), - [anon_sym_SLASH_EQ] = ACTIONS(4448), - [anon_sym_PERCENT_EQ] = ACTIONS(4448), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4448), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4448), - [anon_sym_LT_EQ] = ACTIONS(4448), - [anon_sym_GT_EQ] = ACTIONS(4448), - [anon_sym_BANGin] = ACTIONS(4448), - [anon_sym_is] = ACTIONS(4446), - [anon_sym_BANGis] = ACTIONS(4448), - [anon_sym_PLUS] = ACTIONS(4446), - [anon_sym_DASH] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4446), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_as_QMARK] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4448), - [anon_sym_DASH_DASH] = ACTIONS(4448), - [anon_sym_BANG] = ACTIONS(4446), - [anon_sym_BANG_BANG] = ACTIONS(4448), - [anon_sym_data] = ACTIONS(4446), - [anon_sym_inner] = ACTIONS(4446), - [anon_sym_value] = ACTIONS(4446), - [anon_sym_expect] = ACTIONS(4446), - [anon_sym_actual] = ACTIONS(4446), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4448), - [anon_sym_continue_AT] = ACTIONS(4448), - [anon_sym_break_AT] = ACTIONS(4448), - [anon_sym_this_AT] = ACTIONS(4448), - [anon_sym_super_AT] = ACTIONS(4448), - [sym_real_literal] = ACTIONS(4448), - [sym_integer_literal] = ACTIONS(4446), - [sym_hex_literal] = ACTIONS(4448), - [sym_bin_literal] = ACTIONS(4448), - [anon_sym_true] = ACTIONS(4446), - [anon_sym_false] = ACTIONS(4446), - [anon_sym_SQUOTE] = ACTIONS(4448), - [sym__backtick_identifier] = ACTIONS(4448), - [sym__automatic_semicolon] = ACTIONS(4448), - [sym_safe_nav] = ACTIONS(4448), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4448), + [2857] = { + [sym__alpha_identifier] = ACTIONS(4256), + [anon_sym_AT] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4258), + [anon_sym_RBRACK] = ACTIONS(4258), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_EQ] = ACTIONS(4256), + [anon_sym_LBRACE] = ACTIONS(4258), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_LPAREN] = ACTIONS(4258), + [anon_sym_COMMA] = ACTIONS(4258), + [anon_sym_RPAREN] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_object] = ACTIONS(4256), + [anon_sym_fun] = ACTIONS(4256), + [anon_sym_SEMI] = ACTIONS(4258), + [anon_sym_get] = ACTIONS(4256), + [anon_sym_set] = ACTIONS(4256), + [anon_sym_this] = ACTIONS(4256), + [anon_sym_super] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(4256), + [anon_sym_DASH_GT] = ACTIONS(4258), + [sym_label] = ACTIONS(4256), + [anon_sym_in] = ACTIONS(4256), + [anon_sym_while] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(4258), + [anon_sym_QMARK_COLON] = ACTIONS(4258), + [anon_sym_AMP_AMP] = ACTIONS(4258), + [anon_sym_PIPE_PIPE] = ACTIONS(4258), + [anon_sym_null] = ACTIONS(4256), + [anon_sym_if] = ACTIONS(4256), + [anon_sym_else] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4256), + [anon_sym_try] = ACTIONS(4256), + [anon_sym_throw] = ACTIONS(4256), + [anon_sym_return] = ACTIONS(4256), + [anon_sym_continue] = ACTIONS(4256), + [anon_sym_break] = ACTIONS(4256), + [anon_sym_COLON_COLON] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_BANG_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), + [anon_sym_EQ_EQ] = ACTIONS(4256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), + [anon_sym_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_EQ] = ACTIONS(4258), + [anon_sym_BANGin] = ACTIONS(4258), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_BANGis] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [anon_sym_SLASH] = ACTIONS(4256), + [anon_sym_PERCENT] = ACTIONS(4256), + [anon_sym_as_QMARK] = ACTIONS(4258), + [anon_sym_PLUS_PLUS] = ACTIONS(4258), + [anon_sym_DASH_DASH] = ACTIONS(4258), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_BANG_BANG] = ACTIONS(4258), + [anon_sym_data] = ACTIONS(4256), + [anon_sym_inner] = ACTIONS(4256), + [anon_sym_value] = ACTIONS(4256), + [anon_sym_expect] = ACTIONS(4256), + [anon_sym_actual] = ACTIONS(4256), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4258), + [anon_sym_continue_AT] = ACTIONS(4258), + [anon_sym_break_AT] = ACTIONS(4258), + [anon_sym_this_AT] = ACTIONS(4258), + [anon_sym_super_AT] = ACTIONS(4258), + [sym_real_literal] = ACTIONS(4258), + [sym_integer_literal] = ACTIONS(4256), + [sym_hex_literal] = ACTIONS(4258), + [sym_bin_literal] = ACTIONS(4258), + [anon_sym_true] = ACTIONS(4256), + [anon_sym_false] = ACTIONS(4256), + [anon_sym_SQUOTE] = ACTIONS(4258), + [sym__backtick_identifier] = ACTIONS(4258), + [sym_safe_nav] = ACTIONS(4258), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4258), }, - [2898] = { - [sym_type_constraints] = STATE(2986), - [sym_enum_class_body] = STATE(3158), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(6508), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), + [2858] = { + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [2899] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_RBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_RPAREN] = ACTIONS(4124), - [anon_sym_by] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4122), - [sym__quest] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4124), - [sym_label] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_while] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), + [2859] = { + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [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_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_AMP] = ACTIONS(4244), + [sym__quest] = ACTIONS(4244), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_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), }, - [2900] = { - [sym_getter] = STATE(4007), - [sym_setter] = STATE(4007), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2860] = { + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -349908,47 +346679,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2901] = { - [sym_type_constraints] = STATE(3114), - [sym_function_body] = STATE(3113), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4260), - [anon_sym_fun] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_this] = ACTIONS(4260), - [anon_sym_super] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4260), + [2861] = { + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4148), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_object] = ACTIONS(4148), + [anon_sym_fun] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [anon_sym_this] = ACTIONS(4148), + [anon_sym_super] = ACTIONS(4148), + [anon_sym_AMP] = 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(4150), + [anon_sym_QMARK_COLON] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE_PIPE] = ACTIONS(4150), + [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(4150), + [anon_sym_PLUS_EQ] = ACTIONS(4150), + [anon_sym_DASH_EQ] = ACTIONS(4150), + [anon_sym_STAR_EQ] = ACTIONS(4150), + [anon_sym_SLASH_EQ] = ACTIONS(4150), + [anon_sym_PERCENT_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4150), + [anon_sym_LT_EQ] = ACTIONS(4150), + [anon_sym_GT_EQ] = ACTIONS(4150), + [anon_sym_BANGin] = ACTIONS(4150), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_BANGis] = ACTIONS(4150), + [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(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4148), + [anon_sym_BANG_BANG] = ACTIONS(4150), + [anon_sym_data] = ACTIONS(4148), + [anon_sym_inner] = ACTIONS(4148), + [anon_sym_value] = ACTIONS(4148), + [anon_sym_expect] = ACTIONS(4148), + [anon_sym_actual] = ACTIONS(4148), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4150), + [anon_sym_continue_AT] = ACTIONS(4150), + [anon_sym_break_AT] = ACTIONS(4150), + [anon_sym_this_AT] = ACTIONS(4150), + [anon_sym_super_AT] = ACTIONS(4150), + [sym_real_literal] = ACTIONS(4150), + [sym_integer_literal] = ACTIONS(4148), + [sym_hex_literal] = ACTIONS(4150), + [sym_bin_literal] = ACTIONS(4150), + [anon_sym_true] = ACTIONS(4148), + [anon_sym_false] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4150), + [sym__automatic_semicolon] = ACTIONS(4150), + [sym_safe_nav] = ACTIONS(4150), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4150), + }, + [2862] = { + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6226), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + }, + [2863] = { + [sym_type_constraints] = STATE(2904), + [sym_function_body] = STATE(3108), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4260), + [anon_sym_fun] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_this] = ACTIONS(4260), + [anon_sym_super] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [sym_label] = ACTIONS(4260), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), + [anon_sym_else] = ACTIONS(4260), [anon_sym_when] = ACTIONS(4260), [anon_sym_try] = ACTIONS(4260), [anon_sym_throw] = ACTIONS(4260), @@ -350003,148 +346950,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, - [2902] = { - [sym_type_constraints] = STATE(2980), - [sym_enum_class_body] = STATE(3112), - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_EQ] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(3254), - [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(3258), - [anon_sym_object] = ACTIONS(4460), - [anon_sym_fun] = 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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4462), - [anon_sym_super_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), - }, - [2903] = { - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2864] = { + [sym_getter] = STATE(4714), + [sym_setter] = STATE(4714), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4531), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350169,417 +347031,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - }, - [2904] = { - [aux_sym_user_type_repeat1] = STATE(2950), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_RBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(6510), - [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_by] = ACTIONS(4162), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_GT] = ACTIONS(4162), - [anon_sym_where] = ACTIONS(4162), - [anon_sym_SEMI] = ACTIONS(4164), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4162), - [sym__quest] = 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_value] = 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__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2905] = { - [sym_type_constraints] = STATE(2986), - [sym_enum_class_body] = STATE(3158), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), - }, - [2906] = { - [sym_type_constraints] = STATE(3095), - [sym_function_body] = STATE(3104), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), + [2865] = { + [sym_type_constraints] = STATE(2906), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, - [2907] = { - [sym_class_body] = STATE(3222), - [sym_type_constraints] = STATE(2987), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [2866] = { + [sym_type_constraints] = STATE(3232), + [sym_function_body] = STATE(3233), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(6432), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), }, - [2908] = { - [sym_getter] = STATE(5118), - [sym_setter] = STATE(5118), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2867] = { + [sym_getter] = STATE(3544), + [sym_setter] = STATE(3544), + [sym_modifiers] = STATE(9232), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6248), + [anon_sym_get] = ACTIONS(6216), + [anon_sym_set] = ACTIONS(6218), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350604,243 +347295,1038 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2909] = { - [sym_catch_block] = STATE(2909), - [aux_sym_try_expression_repeat1] = STATE(2909), - [sym__alpha_identifier] = ACTIONS(4126), - [anon_sym_AT] = ACTIONS(4128), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_RBRACK] = ACTIONS(4128), - [anon_sym_DOT] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_EQ] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4128), - [anon_sym_RBRACE] = ACTIONS(4128), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_COMMA] = ACTIONS(4128), - [anon_sym_RPAREN] = ACTIONS(4128), - [anon_sym_LT] = ACTIONS(4126), - [anon_sym_GT] = ACTIONS(4126), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(4126), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_DASH_GT] = ACTIONS(4128), - [sym_label] = ACTIONS(4128), - [anon_sym_in] = ACTIONS(4126), - [anon_sym_while] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4128), - [anon_sym_QMARK_COLON] = ACTIONS(4128), - [anon_sym_AMP_AMP] = ACTIONS(4128), - [anon_sym_PIPE_PIPE] = ACTIONS(4128), - [anon_sym_else] = ACTIONS(4126), - [anon_sym_catch] = ACTIONS(6513), - [anon_sym_finally] = ACTIONS(4126), - [anon_sym_COLON_COLON] = ACTIONS(4128), - [anon_sym_PLUS_EQ] = ACTIONS(4128), - [anon_sym_DASH_EQ] = ACTIONS(4128), - [anon_sym_STAR_EQ] = ACTIONS(4128), - [anon_sym_SLASH_EQ] = ACTIONS(4128), - [anon_sym_PERCENT_EQ] = ACTIONS(4128), - [anon_sym_BANG_EQ] = ACTIONS(4126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4128), - [anon_sym_EQ_EQ] = ACTIONS(4126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4128), - [anon_sym_LT_EQ] = ACTIONS(4128), - [anon_sym_GT_EQ] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4126), - [anon_sym_PERCENT] = ACTIONS(4126), - [anon_sym_as_QMARK] = ACTIONS(4128), - [anon_sym_PLUS_PLUS] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4128), - [anon_sym_BANG_BANG] = ACTIONS(4128), - [anon_sym_suspend] = ACTIONS(4126), - [anon_sym_sealed] = ACTIONS(4126), - [anon_sym_annotation] = ACTIONS(4126), - [anon_sym_data] = ACTIONS(4126), - [anon_sym_inner] = ACTIONS(4126), - [anon_sym_value] = ACTIONS(4126), - [anon_sym_override] = ACTIONS(4126), - [anon_sym_lateinit] = ACTIONS(4126), - [anon_sym_public] = ACTIONS(4126), - [anon_sym_private] = ACTIONS(4126), - [anon_sym_internal] = ACTIONS(4126), - [anon_sym_protected] = ACTIONS(4126), - [anon_sym_tailrec] = ACTIONS(4126), - [anon_sym_operator] = ACTIONS(4126), - [anon_sym_infix] = ACTIONS(4126), - [anon_sym_inline] = ACTIONS(4126), - [anon_sym_external] = ACTIONS(4126), - [sym_property_modifier] = ACTIONS(4126), - [anon_sym_abstract] = ACTIONS(4126), - [anon_sym_final] = ACTIONS(4126), - [anon_sym_open] = ACTIONS(4126), - [anon_sym_vararg] = ACTIONS(4126), - [anon_sym_noinline] = ACTIONS(4126), - [anon_sym_crossinline] = ACTIONS(4126), - [anon_sym_expect] = ACTIONS(4126), - [anon_sym_actual] = ACTIONS(4126), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4128), - [sym_safe_nav] = ACTIONS(4128), + [2868] = { + [aux_sym_nullable_type_repeat1] = STATE(2810), + [sym__alpha_identifier] = ACTIONS(4208), + [anon_sym_AT] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4208), + [anon_sym_as] = ACTIONS(4208), + [anon_sym_EQ] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_RBRACE] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(4210), + [anon_sym_COMMA] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4208), + [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_SEMI] = ACTIONS(4210), + [anon_sym_get] = ACTIONS(4208), + [anon_sym_set] = ACTIONS(4208), + [anon_sym_this] = ACTIONS(4208), + [anon_sym_super] = ACTIONS(4208), + [sym__quest] = ACTIONS(6426), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4210), + [anon_sym_super_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), + }, + [2869] = { + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(6434), + [sym__quest] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_null] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [2870] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_RBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_as] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_RPAREN] = ACTIONS(4095), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_GT] = ACTIONS(4093), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_object] = ACTIONS(4093), + [anon_sym_fun] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_this] = ACTIONS(4093), + [anon_sym_super] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [anon_sym_DASH_GT] = ACTIONS(4095), + [sym_label] = ACTIONS(4093), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_while] = ACTIONS(4093), + [anon_sym_DOT_DOT] = ACTIONS(4095), + [anon_sym_QMARK_COLON] = ACTIONS(4095), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_PIPE_PIPE] = ACTIONS(4095), + [anon_sym_null] = ACTIONS(4093), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_when] = ACTIONS(4093), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ] = ACTIONS(4093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_SLASH] = ACTIONS(4093), + [anon_sym_PERCENT] = ACTIONS(4093), + [anon_sym_as_QMARK] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG] = ACTIONS(4093), + [anon_sym_BANG_BANG] = ACTIONS(4095), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4095), + [anon_sym_continue_AT] = ACTIONS(4095), + [anon_sym_break_AT] = ACTIONS(4095), + [anon_sym_this_AT] = ACTIONS(4095), + [anon_sym_super_AT] = ACTIONS(4095), + [sym_real_literal] = ACTIONS(4095), + [sym_integer_literal] = ACTIONS(4093), + [sym_hex_literal] = ACTIONS(4095), + [sym_bin_literal] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4093), + [anon_sym_false] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(4095), + [sym__backtick_identifier] = ACTIONS(4095), + [sym_safe_nav] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4095), + }, + [2871] = { + [sym_type_constraints] = STATE(3162), + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6436), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3164), + [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(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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [2872] = { + [sym_type_arguments] = STATE(3051), + [sym__alpha_identifier] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_DOT] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4119), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_RBRACE] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4119), + [anon_sym_COMMA] = ACTIONS(4119), + [anon_sym_by] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(6438), + [anon_sym_where] = ACTIONS(4117), + [anon_sym_object] = ACTIONS(4117), + [anon_sym_fun] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4119), + [anon_sym_get] = ACTIONS(4117), + [anon_sym_set] = ACTIONS(4117), + [anon_sym_this] = ACTIONS(4117), + [anon_sym_super] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4119), + [sym__quest] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4119), + [sym_label] = ACTIONS(4117), + [anon_sym_in] = ACTIONS(4117), + [anon_sym_null] = ACTIONS(4117), + [anon_sym_if] = ACTIONS(4117), + [anon_sym_else] = ACTIONS(4117), + [anon_sym_when] = ACTIONS(4117), + [anon_sym_try] = ACTIONS(4117), + [anon_sym_throw] = ACTIONS(4117), + [anon_sym_return] = ACTIONS(4117), + [anon_sym_continue] = ACTIONS(4117), + [anon_sym_break] = ACTIONS(4117), + [anon_sym_COLON_COLON] = ACTIONS(4119), + [anon_sym_BANGin] = ACTIONS(4119), + [anon_sym_is] = ACTIONS(4117), + [anon_sym_BANGis] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4117), + [anon_sym_suspend] = ACTIONS(4117), + [anon_sym_sealed] = ACTIONS(4117), + [anon_sym_annotation] = ACTIONS(4117), + [anon_sym_data] = ACTIONS(4117), + [anon_sym_inner] = ACTIONS(4117), + [anon_sym_value] = ACTIONS(4117), + [anon_sym_override] = ACTIONS(4117), + [anon_sym_lateinit] = ACTIONS(4117), + [anon_sym_public] = ACTIONS(4117), + [anon_sym_private] = ACTIONS(4117), + [anon_sym_internal] = ACTIONS(4117), + [anon_sym_protected] = ACTIONS(4117), + [anon_sym_tailrec] = ACTIONS(4117), + [anon_sym_operator] = ACTIONS(4117), + [anon_sym_infix] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4117), + [anon_sym_external] = ACTIONS(4117), + [sym_property_modifier] = ACTIONS(4117), + [anon_sym_abstract] = ACTIONS(4117), + [anon_sym_final] = ACTIONS(4117), + [anon_sym_open] = ACTIONS(4117), + [anon_sym_vararg] = ACTIONS(4117), + [anon_sym_noinline] = ACTIONS(4117), + [anon_sym_crossinline] = ACTIONS(4117), + [anon_sym_expect] = ACTIONS(4117), + [anon_sym_actual] = ACTIONS(4117), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4119), + [anon_sym_continue_AT] = ACTIONS(4119), + [anon_sym_break_AT] = ACTIONS(4119), + [anon_sym_this_AT] = ACTIONS(4119), + [anon_sym_super_AT] = ACTIONS(4119), + [sym_real_literal] = ACTIONS(4119), + [sym_integer_literal] = ACTIONS(4117), + [sym_hex_literal] = ACTIONS(4119), + [sym_bin_literal] = ACTIONS(4119), + [anon_sym_true] = ACTIONS(4117), + [anon_sym_false] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [sym__backtick_identifier] = ACTIONS(4119), + [sym__automatic_semicolon] = ACTIONS(4119), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4119), + }, + [2873] = { + [sym_type_constraints] = STATE(2890), + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [2874] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3940), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3945), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3945), + [anon_sym_interface] = ACTIONS(3945), + [anon_sym_enum] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3945), + [anon_sym_var] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3945), + [anon_sym_fun] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3947), + [anon_sym_set] = ACTIONS(3947), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3947), + [anon_sym_sealed] = ACTIONS(3947), + [anon_sym_annotation] = ACTIONS(3947), + [anon_sym_data] = ACTIONS(3947), + [anon_sym_inner] = ACTIONS(3947), + [anon_sym_value] = ACTIONS(3947), + [anon_sym_override] = ACTIONS(3947), + [anon_sym_lateinit] = ACTIONS(3947), + [anon_sym_public] = ACTIONS(3947), + [anon_sym_private] = ACTIONS(3947), + [anon_sym_internal] = ACTIONS(3947), + [anon_sym_protected] = ACTIONS(3947), + [anon_sym_tailrec] = ACTIONS(3947), + [anon_sym_operator] = ACTIONS(3947), + [anon_sym_infix] = ACTIONS(3947), + [anon_sym_inline] = ACTIONS(3947), + [anon_sym_external] = ACTIONS(3947), + [sym_property_modifier] = ACTIONS(3947), + [anon_sym_abstract] = ACTIONS(3947), + [anon_sym_final] = ACTIONS(3947), + [anon_sym_open] = ACTIONS(3947), + [anon_sym_vararg] = ACTIONS(3947), + [anon_sym_noinline] = ACTIONS(3947), + [anon_sym_crossinline] = ACTIONS(3947), + [anon_sym_expect] = ACTIONS(3947), + [anon_sym_actual] = ACTIONS(3947), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), }, - [2910] = { - [sym_type_constraints] = STATE(3209), - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [2875] = { + [sym_type_constraints] = STATE(2895), + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, - [2911] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4818), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2876] = { + [sym_type_constraints] = STATE(3269), + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(6440), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [2877] = { + [sym_type_constraints] = STATE(3217), + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(6442), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [2878] = { + [aux_sym_nullable_type_repeat1] = STATE(2878), + [sym__alpha_identifier] = ACTIONS(4280), + [anon_sym_AT] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_as] = ACTIONS(4280), + [anon_sym_EQ] = ACTIONS(4280), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_by] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4280), + [anon_sym_object] = ACTIONS(4280), + [anon_sym_fun] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_get] = ACTIONS(4280), + [anon_sym_set] = ACTIONS(4280), + [anon_sym_this] = ACTIONS(4280), + [anon_sym_super] = ACTIONS(4280), + [sym__quest] = ACTIONS(6444), + [anon_sym_STAR] = ACTIONS(4280), + [sym_label] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4280), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_QMARK_COLON] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_null] = ACTIONS(4280), + [anon_sym_if] = ACTIONS(4280), + [anon_sym_else] = ACTIONS(4280), + [anon_sym_when] = ACTIONS(4280), + [anon_sym_try] = ACTIONS(4280), + [anon_sym_throw] = ACTIONS(4280), + [anon_sym_return] = ACTIONS(4280), + [anon_sym_continue] = ACTIONS(4280), + [anon_sym_break] = ACTIONS(4280), + [anon_sym_COLON_COLON] = ACTIONS(4282), + [anon_sym_PLUS_EQ] = ACTIONS(4282), + [anon_sym_DASH_EQ] = ACTIONS(4282), + [anon_sym_STAR_EQ] = ACTIONS(4282), + [anon_sym_SLASH_EQ] = ACTIONS(4282), + [anon_sym_PERCENT_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4282), + [anon_sym_EQ_EQ] = ACTIONS(4280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_BANGin] = ACTIONS(4282), + [anon_sym_is] = ACTIONS(4280), + [anon_sym_BANGis] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_SLASH] = ACTIONS(4280), + [anon_sym_PERCENT] = ACTIONS(4280), + [anon_sym_as_QMARK] = ACTIONS(4282), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_BANG_BANG] = ACTIONS(4282), + [anon_sym_data] = ACTIONS(4280), + [anon_sym_inner] = ACTIONS(4280), + [anon_sym_value] = ACTIONS(4280), + [anon_sym_expect] = ACTIONS(4280), + [anon_sym_actual] = ACTIONS(4280), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4282), + [anon_sym_continue_AT] = ACTIONS(4282), + [anon_sym_break_AT] = ACTIONS(4282), + [anon_sym_this_AT] = ACTIONS(4282), + [anon_sym_super_AT] = ACTIONS(4282), + [sym_real_literal] = ACTIONS(4282), + [sym_integer_literal] = ACTIONS(4280), + [sym_hex_literal] = ACTIONS(4282), + [sym_bin_literal] = ACTIONS(4282), + [anon_sym_true] = ACTIONS(4280), + [anon_sym_false] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4282), + [sym__backtick_identifier] = ACTIONS(4282), + [sym__automatic_semicolon] = ACTIONS(4282), + [sym_safe_nav] = ACTIONS(4282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4282), + }, + [2879] = { + [sym_getter] = STATE(4776), + [sym_setter] = STATE(4776), + [sym_modifiers] = STATE(9382), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6180), + [anon_sym_set] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -350865,243 +348351,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [2912] = { - [sym_getter] = STATE(3913), - [sym_setter] = STATE(3913), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [2880] = { + [aux_sym_user_type_repeat1] = STATE(2800), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(6447), + [anon_sym_as] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_LT] = ACTIONS(4103), + [anon_sym_GT] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_object] = ACTIONS(4103), + [anon_sym_fun] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_this] = ACTIONS(4103), + [anon_sym_super] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4103), + [sym_label] = ACTIONS(4103), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_DOT_DOT] = ACTIONS(4105), + [anon_sym_QMARK_COLON] = ACTIONS(4105), + [anon_sym_AMP_AMP] = ACTIONS(4105), + [anon_sym_PIPE_PIPE] = ACTIONS(4105), + [anon_sym_null] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_when] = ACTIONS(4103), + [anon_sym_try] = ACTIONS(4103), + [anon_sym_throw] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), + [anon_sym_DASH_EQ] = ACTIONS(4105), + [anon_sym_STAR_EQ] = ACTIONS(4105), + [anon_sym_SLASH_EQ] = ACTIONS(4105), + [anon_sym_PERCENT_EQ] = ACTIONS(4105), + [anon_sym_BANG_EQ] = ACTIONS(4103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4105), + [anon_sym_EQ_EQ] = ACTIONS(4103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4105), + [anon_sym_LT_EQ] = ACTIONS(4105), + [anon_sym_GT_EQ] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_SLASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_as_QMARK] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG] = ACTIONS(4103), + [anon_sym_BANG_BANG] = ACTIONS(4105), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4105), + [anon_sym_continue_AT] = ACTIONS(4105), + [anon_sym_break_AT] = ACTIONS(4105), + [anon_sym_this_AT] = ACTIONS(4105), + [anon_sym_super_AT] = ACTIONS(4105), + [sym_real_literal] = ACTIONS(4105), + [sym_integer_literal] = ACTIONS(4103), + [sym_hex_literal] = ACTIONS(4105), + [sym_bin_literal] = ACTIONS(4105), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_SQUOTE] = ACTIONS(4105), + [sym__backtick_identifier] = ACTIONS(4105), + [sym__automatic_semicolon] = ACTIONS(4105), + [sym_safe_nav] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4105), + }, + [2881] = { + [sym_type_arguments] = STATE(6547), + [sym__alpha_identifier] = ACTIONS(4136), + [anon_sym_AT] = ACTIONS(4138), + [anon_sym_COLON] = ACTIONS(6450), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_RBRACK] = ACTIONS(4138), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym_COMMA] = ACTIONS(4138), + [anon_sym_RPAREN] = ACTIONS(4138), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4136), + [anon_sym_GT] = ACTIONS(4136), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(4136), + [anon_sym_set] = ACTIONS(4136), + [sym__quest] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4138), + [sym_label] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_while] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4138), + [anon_sym_QMARK_COLON] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_PIPE_PIPE] = ACTIONS(4138), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4138), + [anon_sym_DASH_EQ] = ACTIONS(4138), + [anon_sym_STAR_EQ] = ACTIONS(4138), + [anon_sym_SLASH_EQ] = ACTIONS(4138), + [anon_sym_PERCENT_EQ] = ACTIONS(4138), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4138), + [anon_sym_GT_EQ] = ACTIONS(4138), + [anon_sym_BANGin] = ACTIONS(4138), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_BANGis] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_SLASH] = ACTIONS(4136), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_BANG_BANG] = ACTIONS(4138), + [anon_sym_suspend] = ACTIONS(4136), + [anon_sym_sealed] = ACTIONS(4136), + [anon_sym_annotation] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4136), + [anon_sym_inner] = ACTIONS(4136), + [anon_sym_value] = ACTIONS(4136), + [anon_sym_override] = ACTIONS(4136), + [anon_sym_lateinit] = ACTIONS(4136), + [anon_sym_public] = ACTIONS(4136), + [anon_sym_private] = ACTIONS(4136), + [anon_sym_internal] = ACTIONS(4136), + [anon_sym_protected] = ACTIONS(4136), + [anon_sym_tailrec] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_infix] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym_external] = ACTIONS(4136), + [sym_property_modifier] = ACTIONS(4136), + [anon_sym_abstract] = ACTIONS(4136), + [anon_sym_final] = ACTIONS(4136), + [anon_sym_open] = ACTIONS(4136), + [anon_sym_vararg] = ACTIONS(4136), + [anon_sym_noinline] = ACTIONS(4136), + [anon_sym_crossinline] = ACTIONS(4136), + [anon_sym_expect] = ACTIONS(4136), + [anon_sym_actual] = ACTIONS(4136), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4138), + [sym_safe_nav] = ACTIONS(4138), [sym_multiline_comment] = ACTIONS(3), }, - [2913] = { - [sym_function_body] = STATE(3093), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), + [2882] = { + [sym_type_arguments] = STATE(6547), + [sym__alpha_identifier] = ACTIONS(4136), + [anon_sym_AT] = ACTIONS(4138), + [anon_sym_COLON] = ACTIONS(6452), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_DOT] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(6454), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_object] = ACTIONS(4136), + [anon_sym_fun] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(4136), + [anon_sym_set] = ACTIONS(4136), + [anon_sym_this] = ACTIONS(4136), + [anon_sym_super] = ACTIONS(4136), + [sym__quest] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(4138), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_null] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_when] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4136), + [anon_sym_throw] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_BANGin] = ACTIONS(4138), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_BANGis] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4136), + [anon_sym_sealed] = ACTIONS(4136), + [anon_sym_annotation] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4136), + [anon_sym_inner] = ACTIONS(4136), + [anon_sym_value] = ACTIONS(4136), + [anon_sym_override] = ACTIONS(4136), + [anon_sym_lateinit] = ACTIONS(4136), + [anon_sym_public] = ACTIONS(4136), + [anon_sym_private] = ACTIONS(4136), + [anon_sym_internal] = ACTIONS(4136), + [anon_sym_protected] = ACTIONS(4136), + [anon_sym_tailrec] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_infix] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym_external] = ACTIONS(4136), + [sym_property_modifier] = ACTIONS(4136), + [anon_sym_abstract] = ACTIONS(4136), + [anon_sym_final] = ACTIONS(4136), + [anon_sym_open] = ACTIONS(4136), + [anon_sym_vararg] = ACTIONS(4136), + [anon_sym_noinline] = ACTIONS(4136), + [anon_sym_crossinline] = ACTIONS(4136), + [anon_sym_expect] = ACTIONS(4136), + [anon_sym_actual] = ACTIONS(4136), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4138), + [anon_sym_continue_AT] = ACTIONS(4138), + [anon_sym_break_AT] = ACTIONS(4138), + [anon_sym_this_AT] = ACTIONS(4138), + [anon_sym_super_AT] = ACTIONS(4138), + [sym_real_literal] = ACTIONS(4138), + [sym_integer_literal] = ACTIONS(4136), + [sym_hex_literal] = ACTIONS(4138), + [sym_bin_literal] = ACTIONS(4138), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4138), + [sym__backtick_identifier] = ACTIONS(4138), + [sym__automatic_semicolon] = ACTIONS(4138), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4138), }, - [2914] = { - [sym_getter] = STATE(5238), - [sym_setter] = STATE(5238), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(6384), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2883] = { + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), + }, + [2884] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -351126,69 +348785,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2915] = { - [sym_getter] = STATE(5149), - [sym_setter] = STATE(5149), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2885] = { + [aux_sym_user_type_repeat1] = STATE(2910), + [sym__alpha_identifier] = ACTIONS(4070), + [anon_sym_AT] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(6456), + [anon_sym_as] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_RPAREN] = ACTIONS(4072), + [anon_sym_by] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_where] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_get] = ACTIONS(4070), + [anon_sym_set] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [sym__quest] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_DASH_GT] = ACTIONS(4072), + [sym_label] = ACTIONS(4072), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_QMARK_COLON] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_else] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_PLUS_EQ] = ACTIONS(4072), + [anon_sym_DASH_EQ] = ACTIONS(4072), + [anon_sym_STAR_EQ] = ACTIONS(4072), + [anon_sym_SLASH_EQ] = ACTIONS(4072), + [anon_sym_PERCENT_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_BANGin] = ACTIONS(4072), + [anon_sym_is] = ACTIONS(4070), + [anon_sym_BANGis] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4070), + [anon_sym_as_QMARK] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_BANG_BANG] = ACTIONS(4072), + [anon_sym_suspend] = ACTIONS(4070), + [anon_sym_sealed] = ACTIONS(4070), + [anon_sym_annotation] = ACTIONS(4070), + [anon_sym_data] = ACTIONS(4070), + [anon_sym_inner] = ACTIONS(4070), + [anon_sym_value] = ACTIONS(4070), + [anon_sym_override] = ACTIONS(4070), + [anon_sym_lateinit] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_internal] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_tailrec] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_infix] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym_external] = ACTIONS(4070), + [sym_property_modifier] = ACTIONS(4070), + [anon_sym_abstract] = ACTIONS(4070), + [anon_sym_final] = ACTIONS(4070), + [anon_sym_open] = ACTIONS(4070), + [anon_sym_vararg] = ACTIONS(4070), + [anon_sym_noinline] = ACTIONS(4070), + [anon_sym_crossinline] = ACTIONS(4070), + [anon_sym_expect] = ACTIONS(4070), + [anon_sym_actual] = ACTIONS(4070), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4072), + [sym_safe_nav] = ACTIONS(4072), + [sym_multiline_comment] = ACTIONS(3), + }, + [2886] = { + [sym_getter] = STATE(5124), + [sym_setter] = STATE(5124), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -351213,156 +348959,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [2916] = { - [sym_class_body] = STATE(3214), - [sym_type_constraints] = STATE(3014), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), }, - [2917] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(4806), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2887] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -351387,243 +349046,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [2918] = { - [sym_class_body] = STATE(3202), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(6516), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_EQ] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_where] = ACTIONS(4405), - [anon_sym_object] = ACTIONS(4405), - [anon_sym_fun] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_this] = ACTIONS(4405), - [anon_sym_super] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4405), - [sym_label] = ACTIONS(4405), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_when] = ACTIONS(4405), - [anon_sym_try] = ACTIONS(4405), - [anon_sym_throw] = ACTIONS(4405), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_continue] = ACTIONS(4405), - [anon_sym_break] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_PLUS_EQ] = ACTIONS(4407), - [anon_sym_DASH_EQ] = ACTIONS(4407), - [anon_sym_STAR_EQ] = ACTIONS(4407), - [anon_sym_SLASH_EQ] = ACTIONS(4407), - [anon_sym_PERCENT_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4405), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4405), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4407), - [anon_sym_continue_AT] = ACTIONS(4407), - [anon_sym_break_AT] = ACTIONS(4407), - [anon_sym_this_AT] = ACTIONS(4407), - [anon_sym_super_AT] = ACTIONS(4407), - [sym_real_literal] = ACTIONS(4407), - [sym_integer_literal] = ACTIONS(4405), - [sym_hex_literal] = ACTIONS(4407), - [sym_bin_literal] = ACTIONS(4407), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4407), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4407), - }, - [2919] = { - [sym_function_body] = STATE(3077), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [2888] = { + [aux_sym_user_type_repeat1] = STATE(2896), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(6459), + [anon_sym_EQ] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_object] = ACTIONS(4103), + [anon_sym_fun] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_this] = ACTIONS(4103), + [anon_sym_super] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(4105), + [sym__quest] = ACTIONS(4105), + [anon_sym_STAR] = ACTIONS(4105), + [sym_label] = ACTIONS(4103), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_null] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_when] = ACTIONS(4103), + [anon_sym_try] = ACTIONS(4103), + [anon_sym_throw] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG] = ACTIONS(4103), + [anon_sym_suspend] = ACTIONS(4103), + [anon_sym_sealed] = ACTIONS(4103), + [anon_sym_annotation] = ACTIONS(4103), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4103), + [anon_sym_lateinit] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_internal] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_tailrec] = ACTIONS(4103), + [anon_sym_operator] = ACTIONS(4103), + [anon_sym_infix] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_external] = ACTIONS(4103), + [sym_property_modifier] = ACTIONS(4103), + [anon_sym_abstract] = ACTIONS(4103), + [anon_sym_final] = ACTIONS(4103), + [anon_sym_open] = ACTIONS(4103), + [anon_sym_vararg] = ACTIONS(4103), + [anon_sym_noinline] = ACTIONS(4103), + [anon_sym_crossinline] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4105), + [anon_sym_continue_AT] = ACTIONS(4105), + [anon_sym_break_AT] = ACTIONS(4105), + [anon_sym_this_AT] = ACTIONS(4105), + [anon_sym_super_AT] = ACTIONS(4105), + [sym_real_literal] = ACTIONS(4105), + [sym_integer_literal] = ACTIONS(4103), + [sym_hex_literal] = ACTIONS(4105), + [sym_bin_literal] = ACTIONS(4105), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_SQUOTE] = ACTIONS(4105), + [sym__backtick_identifier] = ACTIONS(4105), + [sym__automatic_semicolon] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4105), }, - [2920] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(4820), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2889] = { + [sym_getter] = STATE(3899), + [sym_setter] = STATE(3899), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [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), @@ -351648,678 +349220,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - }, - [2921] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_catch] = ACTIONS(4442), - [anon_sym_finally] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4444), - [anon_sym_super_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), - }, - [2922] = { - [sym_function_body] = STATE(3104), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), - }, - [2923] = { - [sym_type_constraints] = STATE(3085), - [sym_function_body] = STATE(3549), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(6518), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_RBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_COMMA] = ACTIONS(4135), - [anon_sym_RPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4133), - [anon_sym_DASH_GT] = ACTIONS(4135), - [sym_label] = ACTIONS(4135), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_while] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_PLUS_EQ] = ACTIONS(4135), - [anon_sym_DASH_EQ] = ACTIONS(4135), - [anon_sym_STAR_EQ] = ACTIONS(4135), - [anon_sym_SLASH_EQ] = ACTIONS(4135), - [anon_sym_PERCENT_EQ] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4133), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - }, - [2924] = { - [sym_type_constraints] = STATE(3082), - [sym_function_body] = STATE(3527), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(6524), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_RBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [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(5512), - [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_value] = 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__backtick_identifier] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2925] = { - [sym_class_body] = STATE(3205), - [sym_type_constraints] = STATE(3024), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), - }, - [2926] = { - [sym_class_body] = STATE(3246), - [sym_type_constraints] = STATE(3009), - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4507), - [anon_sym_fun] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_this] = ACTIONS(4507), - [anon_sym_super] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [sym_label] = ACTIONS(4507), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_null] = ACTIONS(4507), - [anon_sym_if] = ACTIONS(4507), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_when] = ACTIONS(4507), - [anon_sym_try] = ACTIONS(4507), - [anon_sym_throw] = ACTIONS(4507), - [anon_sym_return] = ACTIONS(4507), - [anon_sym_continue] = ACTIONS(4507), - [anon_sym_break] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4509), - [anon_sym_continue_AT] = ACTIONS(4509), - [anon_sym_break_AT] = ACTIONS(4509), - [anon_sym_this_AT] = ACTIONS(4509), - [anon_sym_super_AT] = ACTIONS(4509), - [sym_real_literal] = ACTIONS(4509), - [sym_integer_literal] = ACTIONS(4507), - [sym_hex_literal] = ACTIONS(4509), - [sym_bin_literal] = ACTIONS(4509), - [anon_sym_true] = ACTIONS(4507), - [anon_sym_false] = ACTIONS(4507), - [anon_sym_SQUOTE] = ACTIONS(4509), - [sym__backtick_identifier] = ACTIONS(4509), - [sym__automatic_semicolon] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4509), - }, - [2927] = { - [sym_type_constraints] = STATE(3078), - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(6526), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [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(5512), - [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_value] = 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), + [2890] = { + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [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_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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, - [2928] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(4822), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), + [2891] = { + [sym_getter] = STATE(5128), + [sym_setter] = STATE(5128), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_SEMI] = ACTIONS(1766), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [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), @@ -352344,69 +349394,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [sym__backtick_identifier] = ACTIONS(1766), + [sym__automatic_semicolon] = ACTIONS(1766), + [sym_safe_nav] = ACTIONS(1766), [sym_multiline_comment] = ACTIONS(3), }, - [2929] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2892] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(5073), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -352431,330 +349481,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(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - }, - [2930] = { - [sym_type_arguments] = STATE(3021), - [sym__alpha_identifier] = ACTIONS(4169), - [anon_sym_AT] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_RBRACK] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_as] = ACTIONS(4169), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_LPAREN] = ACTIONS(4171), - [anon_sym_COMMA] = ACTIONS(4171), - [anon_sym_RPAREN] = ACTIONS(4171), - [anon_sym_by] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(6528), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_where] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4171), - [anon_sym_get] = ACTIONS(4169), - [anon_sym_set] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [sym__quest] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [anon_sym_DASH_GT] = ACTIONS(4171), - [sym_label] = ACTIONS(4171), - [anon_sym_in] = ACTIONS(4169), - [anon_sym_while] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_QMARK_COLON] = ACTIONS(4171), - [anon_sym_AMP_AMP] = ACTIONS(4171), - [anon_sym_PIPE_PIPE] = ACTIONS(4171), - [anon_sym_else] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4171), - [anon_sym_PLUS_EQ] = ACTIONS(4171), - [anon_sym_DASH_EQ] = ACTIONS(4171), - [anon_sym_STAR_EQ] = ACTIONS(4171), - [anon_sym_SLASH_EQ] = ACTIONS(4171), - [anon_sym_PERCENT_EQ] = ACTIONS(4171), - [anon_sym_BANG_EQ] = ACTIONS(4169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4171), - [anon_sym_LT_EQ] = ACTIONS(4171), - [anon_sym_GT_EQ] = ACTIONS(4171), - [anon_sym_BANGin] = ACTIONS(4171), - [anon_sym_is] = ACTIONS(4169), - [anon_sym_BANGis] = ACTIONS(4171), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_as_QMARK] = ACTIONS(4171), - [anon_sym_PLUS_PLUS] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(4171), - [anon_sym_BANG_BANG] = ACTIONS(4171), - [anon_sym_suspend] = ACTIONS(4169), - [anon_sym_sealed] = ACTIONS(4169), - [anon_sym_annotation] = ACTIONS(4169), - [anon_sym_data] = ACTIONS(4169), - [anon_sym_inner] = ACTIONS(4169), - [anon_sym_value] = ACTIONS(4169), - [anon_sym_override] = ACTIONS(4169), - [anon_sym_lateinit] = ACTIONS(4169), - [anon_sym_public] = ACTIONS(4169), - [anon_sym_private] = ACTIONS(4169), - [anon_sym_internal] = ACTIONS(4169), - [anon_sym_protected] = ACTIONS(4169), - [anon_sym_tailrec] = ACTIONS(4169), - [anon_sym_operator] = ACTIONS(4169), - [anon_sym_infix] = ACTIONS(4169), - [anon_sym_inline] = ACTIONS(4169), - [anon_sym_external] = ACTIONS(4169), - [sym_property_modifier] = ACTIONS(4169), - [anon_sym_abstract] = ACTIONS(4169), - [anon_sym_final] = ACTIONS(4169), - [anon_sym_open] = ACTIONS(4169), - [anon_sym_vararg] = ACTIONS(4169), - [anon_sym_noinline] = ACTIONS(4169), - [anon_sym_crossinline] = ACTIONS(4169), - [anon_sym_expect] = ACTIONS(4169), - [anon_sym_actual] = ACTIONS(4169), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4171), - [sym_safe_nav] = ACTIONS(4171), - [sym_multiline_comment] = ACTIONS(3), - }, - [2931] = { - [sym__alpha_identifier] = ACTIONS(4499), - [anon_sym_AT] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4499), - [anon_sym_as] = ACTIONS(4499), - [anon_sym_EQ] = ACTIONS(4499), - [anon_sym_LBRACE] = ACTIONS(4501), - [anon_sym_RBRACE] = ACTIONS(4501), - [anon_sym_LPAREN] = ACTIONS(4501), - [anon_sym_COMMA] = ACTIONS(4501), - [anon_sym_LT] = ACTIONS(4499), - [anon_sym_GT] = ACTIONS(4499), - [anon_sym_where] = ACTIONS(4499), - [anon_sym_object] = ACTIONS(4499), - [anon_sym_fun] = ACTIONS(4499), - [anon_sym_SEMI] = ACTIONS(4501), - [anon_sym_get] = ACTIONS(4499), - [anon_sym_set] = ACTIONS(4499), - [anon_sym_this] = ACTIONS(4499), - [anon_sym_super] = ACTIONS(4499), - [anon_sym_STAR] = ACTIONS(4499), - [sym_label] = ACTIONS(4499), - [anon_sym_in] = ACTIONS(4499), - [anon_sym_DOT_DOT] = ACTIONS(4501), - [anon_sym_QMARK_COLON] = ACTIONS(4501), - [anon_sym_AMP_AMP] = ACTIONS(4501), - [anon_sym_PIPE_PIPE] = ACTIONS(4501), - [anon_sym_null] = ACTIONS(4499), - [anon_sym_if] = ACTIONS(4499), - [anon_sym_else] = ACTIONS(4499), - [anon_sym_when] = ACTIONS(4499), - [anon_sym_try] = ACTIONS(4499), - [anon_sym_throw] = ACTIONS(4499), - [anon_sym_return] = ACTIONS(4499), - [anon_sym_continue] = ACTIONS(4499), - [anon_sym_break] = ACTIONS(4499), - [anon_sym_COLON_COLON] = ACTIONS(4501), - [anon_sym_PLUS_EQ] = ACTIONS(4501), - [anon_sym_DASH_EQ] = ACTIONS(4501), - [anon_sym_STAR_EQ] = ACTIONS(4501), - [anon_sym_SLASH_EQ] = ACTIONS(4501), - [anon_sym_PERCENT_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ] = ACTIONS(4499), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ] = ACTIONS(4499), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4501), - [anon_sym_LT_EQ] = ACTIONS(4501), - [anon_sym_GT_EQ] = ACTIONS(4501), - [anon_sym_BANGin] = ACTIONS(4501), - [anon_sym_is] = ACTIONS(4499), - [anon_sym_BANGis] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(4499), - [anon_sym_DASH] = ACTIONS(4499), - [anon_sym_SLASH] = ACTIONS(4499), - [anon_sym_PERCENT] = ACTIONS(4499), - [anon_sym_as_QMARK] = ACTIONS(4501), - [anon_sym_PLUS_PLUS] = ACTIONS(4501), - [anon_sym_DASH_DASH] = ACTIONS(4501), - [anon_sym_BANG] = ACTIONS(4499), - [anon_sym_BANG_BANG] = ACTIONS(4501), - [anon_sym_data] = ACTIONS(4499), - [anon_sym_inner] = ACTIONS(4499), - [anon_sym_value] = ACTIONS(4499), - [anon_sym_expect] = ACTIONS(4499), - [anon_sym_actual] = ACTIONS(4499), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4501), - [anon_sym_continue_AT] = ACTIONS(4501), - [anon_sym_break_AT] = ACTIONS(4501), - [anon_sym_this_AT] = ACTIONS(4501), - [anon_sym_super_AT] = ACTIONS(4501), - [sym_real_literal] = ACTIONS(4501), - [sym_integer_literal] = ACTIONS(4499), - [sym_hex_literal] = ACTIONS(4501), - [sym_bin_literal] = ACTIONS(4501), - [aux_sym_unsigned_literal_token1] = ACTIONS(6530), - [anon_sym_L] = ACTIONS(6532), - [anon_sym_true] = ACTIONS(4499), - [anon_sym_false] = ACTIONS(4499), - [anon_sym_SQUOTE] = ACTIONS(4501), - [sym__backtick_identifier] = ACTIONS(4501), - [sym__automatic_semicolon] = ACTIONS(4501), - [sym_safe_nav] = ACTIONS(4501), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4501), - }, - [2932] = { - [sym_type_constraints] = STATE(3069), - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(6534), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_RBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_DASH_GT] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2933] = { - [sym_getter] = STATE(5248), - [sym_setter] = STATE(5248), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), + [2893] = { + [sym_getter] = STATE(5133), + [sym_setter] = STATE(5133), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -352779,243 +349568,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [2934] = { - [sym_getter] = STATE(3987), - [sym_setter] = STATE(3987), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4872), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [2894] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_RBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_by] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_AMP] = ACTIONS(3938), + [sym__quest] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [anon_sym_DASH_GT] = ACTIONS(3943), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), }, - [2935] = { - [sym_getter] = STATE(5258), - [sym_setter] = STATE(5258), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(73), - [anon_sym_sealed] = ACTIONS(75), - [anon_sym_annotation] = ACTIONS(75), - [anon_sym_data] = ACTIONS(75), - [anon_sym_inner] = ACTIONS(75), - [anon_sym_value] = ACTIONS(75), - [anon_sym_override] = ACTIONS(79), - [anon_sym_lateinit] = ACTIONS(79), - [anon_sym_public] = ACTIONS(81), - [anon_sym_private] = ACTIONS(81), - [anon_sym_internal] = ACTIONS(81), - [anon_sym_protected] = ACTIONS(81), - [anon_sym_tailrec] = ACTIONS(73), - [anon_sym_operator] = ACTIONS(73), - [anon_sym_infix] = ACTIONS(73), - [anon_sym_inline] = ACTIONS(73), - [anon_sym_external] = ACTIONS(73), - [sym_property_modifier] = ACTIONS(83), - [anon_sym_abstract] = ACTIONS(85), - [anon_sym_final] = ACTIONS(85), - [anon_sym_open] = ACTIONS(85), - [anon_sym_vararg] = ACTIONS(87), - [anon_sym_noinline] = ACTIONS(87), - [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), + [2895] = { + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, - [2936] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(4824), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2896] = { + [aux_sym_user_type_repeat1] = STATE(2903), + [sym__alpha_identifier] = ACTIONS(4070), + [anon_sym_AT] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(6461), + [anon_sym_EQ] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_by] = ACTIONS(4070), + [anon_sym_where] = ACTIONS(4070), + [anon_sym_object] = ACTIONS(4070), + [anon_sym_fun] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_get] = ACTIONS(4070), + [anon_sym_set] = ACTIONS(4070), + [anon_sym_this] = ACTIONS(4070), + [anon_sym_super] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4072), + [sym__quest] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4072), + [sym_label] = ACTIONS(4070), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_else] = ACTIONS(4070), + [anon_sym_when] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_BANGin] = ACTIONS(4072), + [anon_sym_is] = ACTIONS(4070), + [anon_sym_BANGis] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_suspend] = ACTIONS(4070), + [anon_sym_sealed] = ACTIONS(4070), + [anon_sym_annotation] = ACTIONS(4070), + [anon_sym_data] = ACTIONS(4070), + [anon_sym_inner] = ACTIONS(4070), + [anon_sym_value] = ACTIONS(4070), + [anon_sym_override] = ACTIONS(4070), + [anon_sym_lateinit] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_internal] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_tailrec] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_infix] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym_external] = ACTIONS(4070), + [sym_property_modifier] = ACTIONS(4070), + [anon_sym_abstract] = ACTIONS(4070), + [anon_sym_final] = ACTIONS(4070), + [anon_sym_open] = ACTIONS(4070), + [anon_sym_vararg] = ACTIONS(4070), + [anon_sym_noinline] = ACTIONS(4070), + [anon_sym_crossinline] = ACTIONS(4070), + [anon_sym_expect] = ACTIONS(4070), + [anon_sym_actual] = ACTIONS(4070), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4072), + [anon_sym_continue_AT] = ACTIONS(4072), + [anon_sym_break_AT] = ACTIONS(4072), + [anon_sym_this_AT] = ACTIONS(4072), + [anon_sym_super_AT] = ACTIONS(4072), + [sym_real_literal] = ACTIONS(4072), + [sym_integer_literal] = ACTIONS(4070), + [sym_hex_literal] = ACTIONS(4072), + [sym_bin_literal] = ACTIONS(4072), + [anon_sym_true] = ACTIONS(4070), + [anon_sym_false] = ACTIONS(4070), + [anon_sym_SQUOTE] = ACTIONS(4072), + [sym__backtick_identifier] = ACTIONS(4072), + [sym__automatic_semicolon] = ACTIONS(4072), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4072), + }, + [2897] = { + [sym_getter] = STATE(3830), + [sym_setter] = STATE(3830), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353040,156 +349916,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [2937] = { - [sym_type_constraints] = STATE(3008), - [sym_enum_class_body] = STATE(3254), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [2898] = { + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, - [2938] = { - [sym_getter] = STATE(3993), - [sym_setter] = STATE(3993), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3316), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), + [2899] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(5071), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353214,243 +350090,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2939] = { - [aux_sym_user_type_repeat1] = STATE(2880), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(6536), - [anon_sym_EQ] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4164), - [anon_sym_RBRACE] = ACTIONS(4164), - [anon_sym_LPAREN] = ACTIONS(4164), - [anon_sym_COMMA] = ACTIONS(4164), - [anon_sym_by] = ACTIONS(4162), - [anon_sym_where] = ACTIONS(4162), - [anon_sym_object] = ACTIONS(4162), - [anon_sym_fun] = 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_AMP] = ACTIONS(4164), - [sym__quest] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4164), - [sym_label] = ACTIONS(4162), - [anon_sym_in] = ACTIONS(4162), - [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_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_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_BANG] = ACTIONS(4162), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4164), - [anon_sym_super_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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4164), - }, - [2940] = { - [sym_type_constraints] = STATE(3265), - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(6538), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_RBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [anon_sym_DASH_GT] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [2900] = { + [sym_type_constraints] = STATE(3099), + [sym_function_body] = STATE(3108), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4260), + [anon_sym_fun] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_this] = ACTIONS(4260), + [anon_sym_super] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [sym_label] = ACTIONS(4260), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_when] = ACTIONS(4260), + [anon_sym_try] = ACTIONS(4260), + [anon_sym_throw] = ACTIONS(4260), + [anon_sym_return] = ACTIONS(4260), + [anon_sym_continue] = ACTIONS(4260), + [anon_sym_break] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4260), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4260), + [anon_sym_false] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [2941] = { - [sym_getter] = STATE(5189), - [sym_setter] = STATE(5189), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), + [2901] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353475,156 +350264,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2942] = { - [sym_type_constraints] = STATE(3008), - [sym_enum_class_body] = STATE(3254), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6540), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), - }, - [2943] = { - [sym_getter] = STATE(4031), - [sym_setter] = STATE(4031), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1736), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), + [2902] = { + [sym_getter] = STATE(3966), + [sym_setter] = STATE(3966), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -353649,198 +350351,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [2944] = { - [aux_sym_user_type_repeat1] = STATE(2944), - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_RBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(6542), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_RPAREN] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4187), - [sym__quest] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_DASH_GT] = ACTIONS(4189), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_while] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4189), - [anon_sym_QMARK_COLON] = ACTIONS(4189), - [anon_sym_AMP_AMP] = ACTIONS(4189), - [anon_sym_PIPE_PIPE] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4189), - [anon_sym_DASH_EQ] = ACTIONS(4189), - [anon_sym_STAR_EQ] = ACTIONS(4189), - [anon_sym_SLASH_EQ] = ACTIONS(4189), - [anon_sym_PERCENT_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), - [anon_sym_LT_EQ] = ACTIONS(4189), - [anon_sym_GT_EQ] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_SLASH] = ACTIONS(4187), - [anon_sym_PERCENT] = ACTIONS(4187), - [anon_sym_as_QMARK] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4189), - [sym_safe_nav] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), + [2903] = { + [aux_sym_user_type_repeat1] = STATE(2903), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(6463), + [anon_sym_EQ] = ACTIONS(4131), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4131), + [sym__quest] = ACTIONS(4131), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [2945] = { - [sym_function_body] = STATE(3147), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [2904] = { + [sym_function_body] = STATE(3098), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), }, - [2946] = { - [sym_function_body] = STATE(3113), - [sym__block] = STATE(3072), + [2905] = { + [sym_type_constraints] = STATE(3042), + [sym_enum_class_body] = STATE(3111), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(3208), + [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(3164), + [anon_sym_object] = ACTIONS(4420), + [anon_sym_fun] = 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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4422), + [anon_sym_super_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), + }, + [2906] = { + [sym_function_body] = STATE(3108), + [sym__block] = STATE(3227), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_COMMA] = ACTIONS(4262), @@ -353918,409 +350707,1105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, - [2947] = { - [sym_type_constraints] = STATE(3058), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [2907] = { + [sym_function_body] = STATE(3233), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), }, - [2948] = { - [sym_function_body] = STATE(3084), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), + [2908] = { + [sym_getter] = STATE(5142), + [sym_setter] = STATE(5142), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1756), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), }, - [2949] = { - [sym__alpha_identifier] = ACTIONS(4401), - [anon_sym_AT] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_DOT] = ACTIONS(4401), - [anon_sym_as] = ACTIONS(4401), - [anon_sym_EQ] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_GT] = ACTIONS(4401), - [anon_sym_where] = ACTIONS(4401), - [anon_sym_object] = ACTIONS(4401), - [anon_sym_fun] = ACTIONS(4401), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_get] = ACTIONS(4401), - [anon_sym_set] = ACTIONS(4401), - [anon_sym_this] = ACTIONS(4401), - [anon_sym_super] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4401), - [sym_label] = ACTIONS(4401), - [anon_sym_in] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4403), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4403), - [anon_sym_PIPE_PIPE] = ACTIONS(4403), - [anon_sym_null] = ACTIONS(4401), - [anon_sym_if] = ACTIONS(4401), - [anon_sym_else] = ACTIONS(4401), - [anon_sym_when] = ACTIONS(4401), - [anon_sym_try] = ACTIONS(4401), - [anon_sym_catch] = ACTIONS(4401), - [anon_sym_finally] = ACTIONS(4401), - [anon_sym_throw] = ACTIONS(4401), - [anon_sym_return] = ACTIONS(4401), - [anon_sym_continue] = ACTIONS(4401), - [anon_sym_break] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(4403), - [anon_sym_PLUS_EQ] = ACTIONS(4403), - [anon_sym_DASH_EQ] = ACTIONS(4403), - [anon_sym_STAR_EQ] = ACTIONS(4403), - [anon_sym_SLASH_EQ] = ACTIONS(4403), - [anon_sym_PERCENT_EQ] = ACTIONS(4403), - [anon_sym_BANG_EQ] = ACTIONS(4401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), - [anon_sym_EQ_EQ] = ACTIONS(4401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), - [anon_sym_LT_EQ] = ACTIONS(4403), - [anon_sym_GT_EQ] = ACTIONS(4403), - [anon_sym_BANGin] = ACTIONS(4403), - [anon_sym_is] = ACTIONS(4401), - [anon_sym_BANGis] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_SLASH] = ACTIONS(4401), - [anon_sym_PERCENT] = ACTIONS(4401), - [anon_sym_as_QMARK] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4401), - [anon_sym_BANG_BANG] = ACTIONS(4403), - [anon_sym_data] = ACTIONS(4401), - [anon_sym_inner] = ACTIONS(4401), - [anon_sym_value] = ACTIONS(4401), - [anon_sym_expect] = ACTIONS(4401), - [anon_sym_actual] = ACTIONS(4401), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4403), - [anon_sym_continue_AT] = ACTIONS(4403), - [anon_sym_break_AT] = ACTIONS(4403), - [anon_sym_this_AT] = ACTIONS(4403), - [anon_sym_super_AT] = ACTIONS(4403), - [sym_real_literal] = ACTIONS(4403), - [sym_integer_literal] = ACTIONS(4401), - [sym_hex_literal] = ACTIONS(4403), - [sym_bin_literal] = ACTIONS(4403), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [anon_sym_SQUOTE] = ACTIONS(4403), - [sym__backtick_identifier] = ACTIONS(4403), - [sym__automatic_semicolon] = ACTIONS(4403), - [sym_safe_nav] = ACTIONS(4403), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4403), + [2909] = { + [sym_type_constraints] = STATE(3122), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, - [2950] = { - [aux_sym_user_type_repeat1] = STATE(2944), - [sym__alpha_identifier] = ACTIONS(4143), - [anon_sym_AT] = ACTIONS(4145), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_RBRACK] = ACTIONS(4145), - [anon_sym_DOT] = ACTIONS(6545), - [anon_sym_as] = ACTIONS(4143), - [anon_sym_EQ] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_RBRACE] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(4145), - [anon_sym_COMMA] = ACTIONS(4145), - [anon_sym_RPAREN] = ACTIONS(4145), - [anon_sym_by] = ACTIONS(4143), - [anon_sym_LT] = ACTIONS(4143), - [anon_sym_GT] = ACTIONS(4143), - [anon_sym_where] = ACTIONS(4143), - [anon_sym_SEMI] = ACTIONS(4145), - [anon_sym_get] = ACTIONS(4143), - [anon_sym_set] = ACTIONS(4143), - [anon_sym_AMP] = ACTIONS(4143), - [sym__quest] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_DASH_GT] = ACTIONS(4145), - [sym_label] = ACTIONS(4145), - [anon_sym_in] = ACTIONS(4143), - [anon_sym_while] = ACTIONS(4143), - [anon_sym_DOT_DOT] = ACTIONS(4145), - [anon_sym_QMARK_COLON] = ACTIONS(4145), - [anon_sym_AMP_AMP] = ACTIONS(4145), - [anon_sym_PIPE_PIPE] = ACTIONS(4145), - [anon_sym_else] = ACTIONS(4143), - [anon_sym_COLON_COLON] = ACTIONS(4145), - [anon_sym_PLUS_EQ] = ACTIONS(4145), - [anon_sym_DASH_EQ] = ACTIONS(4145), - [anon_sym_STAR_EQ] = ACTIONS(4145), - [anon_sym_SLASH_EQ] = ACTIONS(4145), - [anon_sym_PERCENT_EQ] = ACTIONS(4145), - [anon_sym_BANG_EQ] = ACTIONS(4143), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4145), - [anon_sym_EQ_EQ] = ACTIONS(4143), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4145), - [anon_sym_LT_EQ] = ACTIONS(4145), - [anon_sym_GT_EQ] = ACTIONS(4145), - [anon_sym_BANGin] = ACTIONS(4145), - [anon_sym_is] = ACTIONS(4143), - [anon_sym_BANGis] = ACTIONS(4145), - [anon_sym_PLUS] = ACTIONS(4143), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4143), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_as_QMARK] = ACTIONS(4145), - [anon_sym_PLUS_PLUS] = ACTIONS(4145), - [anon_sym_DASH_DASH] = ACTIONS(4145), - [anon_sym_BANG_BANG] = ACTIONS(4145), - [anon_sym_suspend] = ACTIONS(4143), - [anon_sym_sealed] = ACTIONS(4143), - [anon_sym_annotation] = ACTIONS(4143), - [anon_sym_data] = ACTIONS(4143), - [anon_sym_inner] = ACTIONS(4143), - [anon_sym_value] = ACTIONS(4143), - [anon_sym_override] = ACTIONS(4143), - [anon_sym_lateinit] = ACTIONS(4143), - [anon_sym_public] = ACTIONS(4143), - [anon_sym_private] = ACTIONS(4143), - [anon_sym_internal] = ACTIONS(4143), - [anon_sym_protected] = ACTIONS(4143), - [anon_sym_tailrec] = ACTIONS(4143), - [anon_sym_operator] = ACTIONS(4143), - [anon_sym_infix] = ACTIONS(4143), - [anon_sym_inline] = ACTIONS(4143), - [anon_sym_external] = ACTIONS(4143), - [sym_property_modifier] = ACTIONS(4143), - [anon_sym_abstract] = ACTIONS(4143), - [anon_sym_final] = ACTIONS(4143), - [anon_sym_open] = ACTIONS(4143), - [anon_sym_vararg] = ACTIONS(4143), - [anon_sym_noinline] = ACTIONS(4143), - [anon_sym_crossinline] = ACTIONS(4143), - [anon_sym_expect] = ACTIONS(4143), - [anon_sym_actual] = ACTIONS(4143), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4145), - [sym_safe_nav] = ACTIONS(4145), + [2910] = { + [aux_sym_user_type_repeat1] = STATE(2910), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(6466), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_DASH_GT] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, - [2951] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(4830), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2911] = { + [sym_type_constraints] = STATE(3040), + [sym_enum_class_body] = STATE(3141), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [2912] = { + [sym_type_arguments] = STATE(3029), + [sym__alpha_identifier] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_RBRACK] = ACTIONS(4119), + [anon_sym_DOT] = ACTIONS(4117), + [anon_sym_as] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_RBRACE] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4119), + [anon_sym_COMMA] = ACTIONS(4119), + [anon_sym_RPAREN] = ACTIONS(4119), + [anon_sym_by] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_GT] = ACTIONS(4117), + [anon_sym_where] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4119), + [anon_sym_get] = ACTIONS(4117), + [anon_sym_set] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4117), + [sym__quest] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [anon_sym_DASH_GT] = ACTIONS(4119), + [sym_label] = ACTIONS(4119), + [anon_sym_in] = ACTIONS(4117), + [anon_sym_while] = ACTIONS(4117), + [anon_sym_DOT_DOT] = ACTIONS(4119), + [anon_sym_QMARK_COLON] = ACTIONS(4119), + [anon_sym_AMP_AMP] = ACTIONS(4119), + [anon_sym_PIPE_PIPE] = ACTIONS(4119), + [anon_sym_else] = ACTIONS(4117), + [anon_sym_COLON_COLON] = ACTIONS(4119), + [anon_sym_PLUS_EQ] = ACTIONS(4119), + [anon_sym_DASH_EQ] = ACTIONS(4119), + [anon_sym_STAR_EQ] = ACTIONS(4119), + [anon_sym_SLASH_EQ] = ACTIONS(4119), + [anon_sym_PERCENT_EQ] = ACTIONS(4119), + [anon_sym_BANG_EQ] = ACTIONS(4117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4119), + [anon_sym_EQ_EQ] = ACTIONS(4117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4119), + [anon_sym_LT_EQ] = ACTIONS(4119), + [anon_sym_GT_EQ] = ACTIONS(4119), + [anon_sym_BANGin] = ACTIONS(4119), + [anon_sym_is] = ACTIONS(4117), + [anon_sym_BANGis] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_SLASH] = ACTIONS(4117), + [anon_sym_PERCENT] = ACTIONS(4117), + [anon_sym_as_QMARK] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4119), + [anon_sym_BANG_BANG] = ACTIONS(4119), + [anon_sym_suspend] = ACTIONS(4117), + [anon_sym_sealed] = ACTIONS(4117), + [anon_sym_annotation] = ACTIONS(4117), + [anon_sym_data] = ACTIONS(4117), + [anon_sym_inner] = ACTIONS(4117), + [anon_sym_value] = ACTIONS(4117), + [anon_sym_override] = ACTIONS(4117), + [anon_sym_lateinit] = ACTIONS(4117), + [anon_sym_public] = ACTIONS(4117), + [anon_sym_private] = ACTIONS(4117), + [anon_sym_internal] = ACTIONS(4117), + [anon_sym_protected] = ACTIONS(4117), + [anon_sym_tailrec] = ACTIONS(4117), + [anon_sym_operator] = ACTIONS(4117), + [anon_sym_infix] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4117), + [anon_sym_external] = ACTIONS(4117), + [sym_property_modifier] = ACTIONS(4117), + [anon_sym_abstract] = ACTIONS(4117), + [anon_sym_final] = ACTIONS(4117), + [anon_sym_open] = ACTIONS(4117), + [anon_sym_vararg] = ACTIONS(4117), + [anon_sym_noinline] = ACTIONS(4117), + [anon_sym_crossinline] = ACTIONS(4117), + [anon_sym_expect] = ACTIONS(4117), + [anon_sym_actual] = ACTIONS(4117), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4119), + [sym_safe_nav] = ACTIONS(4119), + [sym_multiline_comment] = ACTIONS(3), + }, + [2913] = { + [sym_class_body] = STATE(3171), + [sym_type_constraints] = STATE(3038), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), + }, + [2914] = { + [sym_class_body] = STATE(3178), + [sym_type_constraints] = STATE(3009), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [2915] = { + [sym_function_body] = STATE(3123), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [2916] = { + [sym_type_constraints] = STATE(3162), + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3164), + [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(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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [2917] = { + [sym_value_arguments] = STATE(3095), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(6471), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), + }, + [2918] = { + [sym_function_body] = STATE(3137), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), + }, + [2919] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(5069), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -354345,69 +351830,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2952] = { - [sym_getter] = STATE(3977), - [sym_setter] = STATE(3977), - [sym_modifiers] = STATE(9247), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(6362), - [anon_sym_set] = ACTIONS(6364), - [anon_sym_STAR] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1792), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), + [2920] = { + [sym_getter] = STATE(5159), + [sym_setter] = STATE(5159), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), [anon_sym_suspend] = ACTIONS(73), [anon_sym_sealed] = ACTIONS(75), [anon_sym_annotation] = ACTIONS(75), @@ -354432,1026 +351917,1200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [2953] = { - [sym_class_body] = STATE(3254), - [sym_type_constraints] = STATE(3001), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [2921] = { + [sym_type_constraints] = STATE(3031), + [sym_enum_class_body] = STATE(3171), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, - [2954] = { - [sym_class_body] = STATE(3254), - [sym_type_constraints] = STATE(3001), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6548), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [2922] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(4786), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), }, - [2955] = { - [sym_type_constraints] = STATE(2999), - [sym_enum_class_body] = STATE(3248), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [2923] = { + [sym_getter] = STATE(3882), + [sym_setter] = STATE(3882), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1746), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), }, - [2956] = { - [sym_type_arguments] = STATE(6571), - [sym__alpha_identifier] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4183), - [anon_sym_COLON] = ACTIONS(6550), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_EQ] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_RBRACE] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_by] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(6552), - [anon_sym_where] = ACTIONS(4181), - [anon_sym_object] = ACTIONS(4181), - [anon_sym_fun] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_get] = ACTIONS(4181), - [anon_sym_set] = ACTIONS(4181), - [anon_sym_this] = ACTIONS(4181), - [anon_sym_super] = ACTIONS(4181), - [sym__quest] = ACTIONS(4171), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4181), - [anon_sym_if] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4181), - [anon_sym_when] = ACTIONS(4181), - [anon_sym_try] = ACTIONS(4181), - [anon_sym_throw] = ACTIONS(4181), - [anon_sym_return] = ACTIONS(4181), - [anon_sym_continue] = ACTIONS(4181), - [anon_sym_break] = ACTIONS(4181), - [anon_sym_COLON_COLON] = ACTIONS(4183), - [anon_sym_BANGin] = ACTIONS(4183), - [anon_sym_is] = ACTIONS(4181), - [anon_sym_BANGis] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4183), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4181), - [anon_sym_sealed] = ACTIONS(4181), - [anon_sym_annotation] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4181), - [anon_sym_inner] = ACTIONS(4181), - [anon_sym_value] = ACTIONS(4181), - [anon_sym_override] = ACTIONS(4181), - [anon_sym_lateinit] = ACTIONS(4181), - [anon_sym_public] = ACTIONS(4181), - [anon_sym_private] = ACTIONS(4181), - [anon_sym_internal] = ACTIONS(4181), - [anon_sym_protected] = ACTIONS(4181), - [anon_sym_tailrec] = ACTIONS(4181), - [anon_sym_operator] = ACTIONS(4181), - [anon_sym_infix] = ACTIONS(4181), - [anon_sym_inline] = ACTIONS(4181), - [anon_sym_external] = ACTIONS(4181), - [sym_property_modifier] = ACTIONS(4181), - [anon_sym_abstract] = ACTIONS(4181), - [anon_sym_final] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4181), - [anon_sym_vararg] = ACTIONS(4181), - [anon_sym_noinline] = ACTIONS(4181), - [anon_sym_crossinline] = ACTIONS(4181), - [anon_sym_expect] = ACTIONS(4181), - [anon_sym_actual] = ACTIONS(4181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4183), - [anon_sym_continue_AT] = ACTIONS(4183), - [anon_sym_break_AT] = ACTIONS(4183), - [anon_sym_this_AT] = ACTIONS(4183), - [anon_sym_super_AT] = ACTIONS(4183), - [sym_real_literal] = ACTIONS(4183), - [sym_integer_literal] = ACTIONS(4181), - [sym_hex_literal] = ACTIONS(4183), - [sym_bin_literal] = ACTIONS(4183), - [anon_sym_true] = ACTIONS(4181), - [anon_sym_false] = ACTIONS(4181), - [anon_sym_SQUOTE] = ACTIONS(4183), - [sym__backtick_identifier] = ACTIONS(4183), - [sym__automatic_semicolon] = ACTIONS(4183), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4183), + [2924] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_RBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_as] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_RPAREN] = ACTIONS(4095), + [anon_sym_by] = ACTIONS(4093), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_GT] = ACTIONS(4093), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_AMP] = ACTIONS(4093), + [sym__quest] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [anon_sym_DASH_GT] = ACTIONS(4095), + [sym_label] = ACTIONS(4095), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_while] = ACTIONS(4093), + [anon_sym_DOT_DOT] = ACTIONS(4095), + [anon_sym_QMARK_COLON] = ACTIONS(4095), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_PIPE_PIPE] = ACTIONS(4095), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ] = ACTIONS(4093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_SLASH] = ACTIONS(4093), + [anon_sym_PERCENT] = ACTIONS(4093), + [anon_sym_as_QMARK] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG_BANG] = ACTIONS(4095), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4095), + [sym_safe_nav] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), }, - [2957] = { - [aux_sym_user_type_repeat1] = STATE(2804), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(6554), - [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_by] = ACTIONS(4162), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4164), - [anon_sym_super_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), + [2925] = { + [sym__alpha_identifier] = ACTIONS(4398), + [anon_sym_AT] = ACTIONS(4400), + [anon_sym_LBRACK] = ACTIONS(4400), + [anon_sym_DOT] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4398), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4400), + [anon_sym_RBRACE] = ACTIONS(4400), + [anon_sym_LPAREN] = ACTIONS(4400), + [anon_sym_COMMA] = ACTIONS(4400), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_where] = ACTIONS(4398), + [anon_sym_object] = ACTIONS(4398), + [anon_sym_fun] = ACTIONS(4398), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_get] = ACTIONS(4398), + [anon_sym_set] = ACTIONS(4398), + [anon_sym_this] = ACTIONS(4398), + [anon_sym_super] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4398), + [sym_label] = ACTIONS(4398), + [anon_sym_in] = ACTIONS(4398), + [anon_sym_DOT_DOT] = ACTIONS(4400), + [anon_sym_QMARK_COLON] = ACTIONS(4400), + [anon_sym_AMP_AMP] = ACTIONS(4400), + [anon_sym_PIPE_PIPE] = ACTIONS(4400), + [anon_sym_null] = ACTIONS(4398), + [anon_sym_if] = ACTIONS(4398), + [anon_sym_else] = ACTIONS(4398), + [anon_sym_when] = ACTIONS(4398), + [anon_sym_try] = ACTIONS(4398), + [anon_sym_catch] = ACTIONS(4398), + [anon_sym_finally] = ACTIONS(4398), + [anon_sym_throw] = ACTIONS(4398), + [anon_sym_return] = ACTIONS(4398), + [anon_sym_continue] = ACTIONS(4398), + [anon_sym_break] = ACTIONS(4398), + [anon_sym_COLON_COLON] = ACTIONS(4400), + [anon_sym_PLUS_EQ] = ACTIONS(4400), + [anon_sym_DASH_EQ] = ACTIONS(4400), + [anon_sym_STAR_EQ] = ACTIONS(4400), + [anon_sym_SLASH_EQ] = ACTIONS(4400), + [anon_sym_PERCENT_EQ] = ACTIONS(4400), + [anon_sym_BANG_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4400), + [anon_sym_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4400), + [anon_sym_LT_EQ] = ACTIONS(4400), + [anon_sym_GT_EQ] = ACTIONS(4400), + [anon_sym_BANGin] = ACTIONS(4400), + [anon_sym_is] = ACTIONS(4398), + [anon_sym_BANGis] = ACTIONS(4400), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_PERCENT] = ACTIONS(4398), + [anon_sym_as_QMARK] = ACTIONS(4400), + [anon_sym_PLUS_PLUS] = ACTIONS(4400), + [anon_sym_DASH_DASH] = ACTIONS(4400), + [anon_sym_BANG] = ACTIONS(4398), + [anon_sym_BANG_BANG] = ACTIONS(4400), + [anon_sym_data] = ACTIONS(4398), + [anon_sym_inner] = ACTIONS(4398), + [anon_sym_value] = ACTIONS(4398), + [anon_sym_expect] = ACTIONS(4398), + [anon_sym_actual] = ACTIONS(4398), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4400), + [anon_sym_continue_AT] = ACTIONS(4400), + [anon_sym_break_AT] = ACTIONS(4400), + [anon_sym_this_AT] = ACTIONS(4400), + [anon_sym_super_AT] = ACTIONS(4400), + [sym_real_literal] = ACTIONS(4400), + [sym_integer_literal] = ACTIONS(4398), + [sym_hex_literal] = ACTIONS(4400), + [sym_bin_literal] = ACTIONS(4400), + [anon_sym_true] = ACTIONS(4398), + [anon_sym_false] = ACTIONS(4398), + [anon_sym_SQUOTE] = ACTIONS(4400), + [sym__backtick_identifier] = ACTIONS(4400), + [sym__automatic_semicolon] = ACTIONS(4400), + [sym_safe_nav] = ACTIONS(4400), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4400), }, - [2958] = { - [sym_class_body] = STATE(3238), - [sym_type_constraints] = STATE(2993), - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(3262), - [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(3258), - [anon_sym_object] = ACTIONS(4468), - [anon_sym_fun] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_this] = ACTIONS(4468), - [anon_sym_super] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4468), - [anon_sym_if] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [anon_sym_try] = ACTIONS(4468), - [anon_sym_throw] = ACTIONS(4468), - [anon_sym_return] = ACTIONS(4468), - [anon_sym_continue] = ACTIONS(4468), - [anon_sym_break] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4470), - [anon_sym_continue_AT] = ACTIONS(4470), - [anon_sym_break_AT] = ACTIONS(4470), - [anon_sym_this_AT] = ACTIONS(4470), - [anon_sym_super_AT] = ACTIONS(4470), - [sym_real_literal] = ACTIONS(4470), - [sym_integer_literal] = ACTIONS(4468), - [sym_hex_literal] = ACTIONS(4470), - [sym_bin_literal] = ACTIONS(4470), - [anon_sym_true] = ACTIONS(4468), - [anon_sym_false] = ACTIONS(4468), - [anon_sym_SQUOTE] = ACTIONS(4470), - [sym__backtick_identifier] = ACTIONS(4470), - [sym__automatic_semicolon] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4470), + [2926] = { + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(6370), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, - [2959] = { - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [2927] = { + [sym_type_constraints] = STATE(3028), + [sym_enum_class_body] = STATE(3188), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, - [2960] = { - [sym_type_constraints] = STATE(2992), - [sym_enum_class_body] = STATE(3222), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [2928] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_object] = ACTIONS(4331), + [anon_sym_fun] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_this] = ACTIONS(4331), + [anon_sym_super] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_catch] = ACTIONS(4331), + [anon_sym_finally] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4333), + [anon_sym_continue_AT] = ACTIONS(4333), + [anon_sym_break_AT] = ACTIONS(4333), + [anon_sym_this_AT] = ACTIONS(4333), + [anon_sym_super_AT] = ACTIONS(4333), + [sym_real_literal] = ACTIONS(4333), + [sym_integer_literal] = ACTIONS(4331), + [sym_hex_literal] = ACTIONS(4333), + [sym_bin_literal] = ACTIONS(4333), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4333), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4333), }, - [2961] = { - [sym_type_arguments] = STATE(6571), - [sym__alpha_identifier] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4183), - [anon_sym_COLON] = ACTIONS(6557), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_RBRACK] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_RBRACE] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_COMMA] = ACTIONS(4183), - [anon_sym_RPAREN] = ACTIONS(4183), - [anon_sym_by] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_where] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_get] = ACTIONS(4181), - [anon_sym_set] = ACTIONS(4181), - [sym__quest] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_DASH_GT] = ACTIONS(4183), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_while] = ACTIONS(4181), - [anon_sym_DOT_DOT] = ACTIONS(4183), - [anon_sym_QMARK_COLON] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4181), - [anon_sym_COLON_COLON] = ACTIONS(4183), - [anon_sym_PLUS_EQ] = ACTIONS(4183), - [anon_sym_DASH_EQ] = ACTIONS(4183), - [anon_sym_STAR_EQ] = ACTIONS(4183), - [anon_sym_SLASH_EQ] = ACTIONS(4183), - [anon_sym_PERCENT_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4183), - [anon_sym_LT_EQ] = ACTIONS(4183), - [anon_sym_GT_EQ] = ACTIONS(4183), - [anon_sym_BANGin] = ACTIONS(4183), - [anon_sym_is] = ACTIONS(4181), - [anon_sym_BANGis] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4183), - [anon_sym_PLUS_PLUS] = ACTIONS(4183), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4183), - [anon_sym_suspend] = ACTIONS(4181), - [anon_sym_sealed] = ACTIONS(4181), - [anon_sym_annotation] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4181), - [anon_sym_inner] = ACTIONS(4181), - [anon_sym_value] = ACTIONS(4181), - [anon_sym_override] = ACTIONS(4181), - [anon_sym_lateinit] = ACTIONS(4181), - [anon_sym_public] = ACTIONS(4181), - [anon_sym_private] = ACTIONS(4181), - [anon_sym_internal] = ACTIONS(4181), - [anon_sym_protected] = ACTIONS(4181), - [anon_sym_tailrec] = ACTIONS(4181), - [anon_sym_operator] = ACTIONS(4181), - [anon_sym_infix] = ACTIONS(4181), - [anon_sym_inline] = ACTIONS(4181), - [anon_sym_external] = ACTIONS(4181), - [sym_property_modifier] = ACTIONS(4181), - [anon_sym_abstract] = ACTIONS(4181), - [anon_sym_final] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4181), - [anon_sym_vararg] = ACTIONS(4181), - [anon_sym_noinline] = ACTIONS(4181), - [anon_sym_crossinline] = ACTIONS(4181), - [anon_sym_expect] = ACTIONS(4181), - [anon_sym_actual] = ACTIONS(4181), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4183), - [sym_safe_nav] = ACTIONS(4183), - [sym_multiline_comment] = ACTIONS(3), + [2929] = { + [sym__alpha_identifier] = ACTIONS(4369), + [anon_sym_AT] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_as] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4369), + [anon_sym_LBRACE] = ACTIONS(4371), + [anon_sym_RBRACE] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4371), + [anon_sym_COMMA] = ACTIONS(4371), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_where] = ACTIONS(4369), + [anon_sym_object] = ACTIONS(4369), + [anon_sym_fun] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_get] = ACTIONS(4369), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_this] = ACTIONS(4369), + [anon_sym_super] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4369), + [sym_label] = ACTIONS(4369), + [anon_sym_in] = ACTIONS(4369), + [anon_sym_DOT_DOT] = ACTIONS(4371), + [anon_sym_QMARK_COLON] = ACTIONS(4371), + [anon_sym_AMP_AMP] = ACTIONS(4371), + [anon_sym_PIPE_PIPE] = ACTIONS(4371), + [anon_sym_null] = ACTIONS(4369), + [anon_sym_if] = ACTIONS(4369), + [anon_sym_else] = ACTIONS(4369), + [anon_sym_when] = ACTIONS(4369), + [anon_sym_try] = ACTIONS(4369), + [anon_sym_catch] = ACTIONS(4369), + [anon_sym_finally] = ACTIONS(4369), + [anon_sym_throw] = ACTIONS(4369), + [anon_sym_return] = ACTIONS(4369), + [anon_sym_continue] = ACTIONS(4369), + [anon_sym_break] = ACTIONS(4369), + [anon_sym_COLON_COLON] = ACTIONS(4371), + [anon_sym_PLUS_EQ] = ACTIONS(4371), + [anon_sym_DASH_EQ] = ACTIONS(4371), + [anon_sym_STAR_EQ] = ACTIONS(4371), + [anon_sym_SLASH_EQ] = ACTIONS(4371), + [anon_sym_PERCENT_EQ] = ACTIONS(4371), + [anon_sym_BANG_EQ] = ACTIONS(4369), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4371), + [anon_sym_EQ_EQ] = ACTIONS(4369), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4371), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_BANGin] = ACTIONS(4371), + [anon_sym_is] = ACTIONS(4369), + [anon_sym_BANGis] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4369), + [anon_sym_as_QMARK] = ACTIONS(4371), + [anon_sym_PLUS_PLUS] = ACTIONS(4371), + [anon_sym_DASH_DASH] = ACTIONS(4371), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_BANG_BANG] = ACTIONS(4371), + [anon_sym_data] = ACTIONS(4369), + [anon_sym_inner] = ACTIONS(4369), + [anon_sym_value] = ACTIONS(4369), + [anon_sym_expect] = ACTIONS(4369), + [anon_sym_actual] = ACTIONS(4369), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4371), + [anon_sym_continue_AT] = ACTIONS(4371), + [anon_sym_break_AT] = ACTIONS(4371), + [anon_sym_this_AT] = ACTIONS(4371), + [anon_sym_super_AT] = ACTIONS(4371), + [sym_real_literal] = ACTIONS(4371), + [sym_integer_literal] = ACTIONS(4369), + [sym_hex_literal] = ACTIONS(4371), + [sym_bin_literal] = ACTIONS(4371), + [anon_sym_true] = ACTIONS(4369), + [anon_sym_false] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4371), + [sym__backtick_identifier] = ACTIONS(4371), + [sym__automatic_semicolon] = ACTIONS(4371), + [sym_safe_nav] = ACTIONS(4371), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4371), }, - [2962] = { - [sym_class_body] = STATE(3156), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(6559), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), + [2930] = { + [sym_type_constraints] = STATE(3028), + [sym_enum_class_body] = STATE(3188), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, - [2963] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_object] = ACTIONS(4419), - [anon_sym_fun] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_this] = ACTIONS(4419), - [anon_sym_super] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4419), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_when] = ACTIONS(4419), - [anon_sym_try] = ACTIONS(4419), - [anon_sym_catch] = ACTIONS(4419), - [anon_sym_finally] = ACTIONS(4419), - [anon_sym_throw] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4421), - [anon_sym_continue_AT] = ACTIONS(4421), - [anon_sym_break_AT] = ACTIONS(4421), - [anon_sym_this_AT] = ACTIONS(4421), - [anon_sym_super_AT] = ACTIONS(4421), - [sym_real_literal] = ACTIONS(4421), - [sym_integer_literal] = ACTIONS(4419), - [sym_hex_literal] = ACTIONS(4421), - [sym_bin_literal] = ACTIONS(4421), - [anon_sym_true] = ACTIONS(4419), - [anon_sym_false] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4421), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4421), + [2931] = { + [sym_class_body] = STATE(3234), + [sym_type_constraints] = STATE(3026), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), }, - [2964] = { - [sym_getter] = STATE(5105), - [sym_setter] = STATE(5105), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3422), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), + [2932] = { + [sym_class_body] = STATE(3059), + [sym_type_constraints] = STATE(2977), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), + }, + [2933] = { + [sym_class_body] = STATE(3059), + [sym_type_constraints] = STATE(2977), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(6475), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), + }, + [2934] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [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), @@ -355476,156 +353135,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(3328), - [anon_sym_actual] = ACTIONS(3328), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2965] = { - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [2966] = { - [sym_getter] = STATE(5112), - [sym_setter] = STATE(5112), - [sym_modifiers] = STATE(9322), - [sym__modifier] = STATE(5616), - [sym_class_modifier] = STATE(5616), - [sym_member_modifier] = STATE(5616), - [sym_visibility_modifier] = STATE(5616), - [sym_function_modifier] = STATE(5616), - [sym_inheritance_modifier] = STATE(5616), - [sym_parameter_modifier] = STATE(5616), - [sym_platform_modifier] = STATE(5616), - [sym_annotation] = STATE(5616), - [sym__single_annotation] = STATE(5778), - [sym__multi_annotation] = STATE(5778), - [aux_sym_modifiers_repeat1] = STATE(5616), - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(6354), - [anon_sym_set] = ACTIONS(6356), - [anon_sym_STAR] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1824), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), + [2935] = { + [sym_getter] = STATE(4040), + [sym_setter] = STATE(4040), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(4796), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [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), @@ -355650,389 +353222,3258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_vararg] = ACTIONS(87), [anon_sym_noinline] = ACTIONS(87), [anon_sym_crossinline] = ACTIONS(87), - [anon_sym_expect] = ACTIONS(3328), - [anon_sym_actual] = ACTIONS(3328), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - }, - [2967] = { - [sym_function_body] = STATE(3231), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), - }, - [2968] = { - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6425), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [2969] = { - [sym__alpha_identifier] = ACTIONS(4601), - [anon_sym_AT] = ACTIONS(4603), - [anon_sym_COLON] = ACTIONS(4601), - [anon_sym_LBRACK] = ACTIONS(4603), - [anon_sym_DOT] = ACTIONS(4601), - [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_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_value] = ACTIONS(4601), - [anon_sym_expect] = ACTIONS(4601), - [anon_sym_actual] = ACTIONS(4601), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4603), - [anon_sym_continue_AT] = ACTIONS(4603), - [anon_sym_break_AT] = ACTIONS(4603), - [anon_sym_this_AT] = ACTIONS(4603), - [anon_sym_super_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(4603), - }, - [2970] = { - [sym_class_body] = STATE(3536), - [sym_type_constraints] = STATE(3274), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(5641), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), [anon_sym_expect] = ACTIONS(3276), [anon_sym_actual] = ACTIONS(3276), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1772), + [sym__automatic_semicolon] = ACTIONS(1772), + [sym_safe_nav] = ACTIONS(1772), [sym_multiline_comment] = ACTIONS(3), }, - [2971] = { - [sym_type_constraints] = STATE(3157), - [sym_function_body] = STATE(3464), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_DASH_GT] = ACTIONS(4262), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_while] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), + [2936] = { + [sym_type_constraints] = STATE(3217), + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [2937] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(5067), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [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_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [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), + }, + [2938] = { + [sym_getter] = STATE(5196), + [sym_setter] = STATE(5196), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_SEMI] = ACTIONS(1772), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [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_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [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), + }, + [2939] = { + [sym_type_constraints] = STATE(3021), + [sym_enum_class_body] = STATE(3234), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), + }, + [2940] = { + [sym_type_constraints] = STATE(2969), + [sym_enum_class_body] = STATE(3221), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [2941] = { + [sym_class_body] = STATE(3238), + [sym_type_constraints] = STATE(3018), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), + }, + [2942] = { + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(4404), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4404), + [anon_sym_super_AT] = ACTIONS(4404), + [sym_real_literal] = ACTIONS(4404), + [sym_integer_literal] = ACTIONS(4402), + [sym_hex_literal] = ACTIONS(4404), + [sym_bin_literal] = ACTIONS(4404), + [aux_sym_unsigned_literal_token1] = ACTIONS(6477), + [anon_sym_L] = ACTIONS(6479), + [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), + }, + [2943] = { + [aux_sym_user_type_repeat1] = STATE(2885), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_RBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(6481), + [anon_sym_as] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_RPAREN] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_LT] = ACTIONS(4103), + [anon_sym_GT] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(4103), + [sym__quest] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4103), + [anon_sym_DASH_GT] = ACTIONS(4105), + [sym_label] = ACTIONS(4105), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_while] = ACTIONS(4103), + [anon_sym_DOT_DOT] = ACTIONS(4105), + [anon_sym_QMARK_COLON] = ACTIONS(4105), + [anon_sym_AMP_AMP] = ACTIONS(4105), + [anon_sym_PIPE_PIPE] = ACTIONS(4105), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), + [anon_sym_DASH_EQ] = ACTIONS(4105), + [anon_sym_STAR_EQ] = ACTIONS(4105), + [anon_sym_SLASH_EQ] = ACTIONS(4105), + [anon_sym_PERCENT_EQ] = ACTIONS(4105), + [anon_sym_BANG_EQ] = ACTIONS(4103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4105), + [anon_sym_EQ_EQ] = ACTIONS(4103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4105), + [anon_sym_LT_EQ] = ACTIONS(4105), + [anon_sym_GT_EQ] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_SLASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_as_QMARK] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG_BANG] = ACTIONS(4105), + [anon_sym_suspend] = ACTIONS(4103), + [anon_sym_sealed] = ACTIONS(4103), + [anon_sym_annotation] = ACTIONS(4103), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4103), + [anon_sym_lateinit] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_internal] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_tailrec] = ACTIONS(4103), + [anon_sym_operator] = ACTIONS(4103), + [anon_sym_infix] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_external] = ACTIONS(4103), + [sym_property_modifier] = ACTIONS(4103), + [anon_sym_abstract] = ACTIONS(4103), + [anon_sym_final] = ACTIONS(4103), + [anon_sym_open] = ACTIONS(4103), + [anon_sym_vararg] = ACTIONS(4103), + [anon_sym_noinline] = ACTIONS(4103), + [anon_sym_crossinline] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4105), + [sym_safe_nav] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + }, + [2944] = { + [sym_getter] = STATE(4028), + [sym_setter] = STATE(4028), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(4830), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + }, + [2945] = { + [sym_type_constraints] = STATE(3193), + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6484), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5448), + [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_value] = 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), + }, + [2946] = { + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3251), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), + }, + [2947] = { + [sym_class_body] = STATE(3261), + [sym_type_constraints] = STATE(3012), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6490), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [2948] = { + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + }, + [2949] = { + [sym_class_body] = STATE(3261), + [sym_type_constraints] = STATE(3012), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [2950] = { + [sym_getter] = STATE(3939), + [sym_setter] = STATE(3939), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6310), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + }, + [2951] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + }, + [2952] = { + [sym_class_body] = STATE(3209), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(6492), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_COMMA] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_where] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_fun] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_this] = ACTIONS(4325), + [anon_sym_super] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_when] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_PLUS_EQ] = ACTIONS(4327), + [anon_sym_DASH_EQ] = ACTIONS(4327), + [anon_sym_STAR_EQ] = ACTIONS(4327), + [anon_sym_SLASH_EQ] = ACTIONS(4327), + [anon_sym_PERCENT_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4325), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4327), + [anon_sym_continue_AT] = ACTIONS(4327), + [anon_sym_break_AT] = ACTIONS(4327), + [anon_sym_this_AT] = ACTIONS(4327), + [anon_sym_super_AT] = ACTIONS(4327), + [sym_real_literal] = ACTIONS(4327), + [sym_integer_literal] = ACTIONS(4325), + [sym_hex_literal] = ACTIONS(4327), + [sym_bin_literal] = ACTIONS(4327), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4327), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4327), + }, + [2953] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(5061), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + }, + [2954] = { + [sym_getter] = STATE(5157), + [sym_setter] = STATE(5157), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(6352), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3298), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), + [sym_multiline_comment] = ACTIONS(3), + }, + [2955] = { + [sym_getter] = STATE(5096), + [sym_setter] = STATE(5096), + [sym_modifiers] = STATE(9280), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(6316), + [anon_sym_set] = ACTIONS(6318), + [anon_sym_STAR] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1740), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + }, + [2956] = { + [sym_type_constraints] = STATE(3269), + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [2957] = { + [sym_type_constraints] = STATE(3199), + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(6494), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_RBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [anon_sym_DASH_GT] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + }, + [2958] = { + [sym_class_body] = STATE(3151), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(6496), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_object] = ACTIONS(4353), + [anon_sym_fun] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_this] = ACTIONS(4353), + [anon_sym_super] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [sym_label] = ACTIONS(4353), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_null] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_try] = ACTIONS(4353), + [anon_sym_throw] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_PLUS_EQ] = ACTIONS(4355), + [anon_sym_DASH_EQ] = ACTIONS(4355), + [anon_sym_STAR_EQ] = ACTIONS(4355), + [anon_sym_SLASH_EQ] = ACTIONS(4355), + [anon_sym_PERCENT_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4355), + [anon_sym_continue_AT] = ACTIONS(4355), + [anon_sym_break_AT] = ACTIONS(4355), + [anon_sym_this_AT] = ACTIONS(4355), + [anon_sym_super_AT] = ACTIONS(4355), + [sym_real_literal] = ACTIONS(4355), + [sym_integer_literal] = ACTIONS(4353), + [sym_hex_literal] = ACTIONS(4355), + [sym_bin_literal] = ACTIONS(4355), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4355), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4355), + }, + [2959] = { + [sym_class_body] = STATE(3221), + [sym_type_constraints] = STATE(2990), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [2960] = { + [sym_class_body] = STATE(3253), + [sym_type_constraints] = STATE(3005), + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4412), + [anon_sym_fun] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_this] = ACTIONS(4412), + [anon_sym_super] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_null] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_try] = ACTIONS(4412), + [anon_sym_throw] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4414), + [anon_sym_continue_AT] = ACTIONS(4414), + [anon_sym_break_AT] = ACTIONS(4414), + [anon_sym_this_AT] = ACTIONS(4414), + [anon_sym_super_AT] = ACTIONS(4414), + [sym_real_literal] = ACTIONS(4414), + [sym_integer_literal] = ACTIONS(4412), + [sym_hex_literal] = ACTIONS(4414), + [sym_bin_literal] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4412), + [anon_sym_false] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4414), + [sym__backtick_identifier] = ACTIONS(4414), + [sym__automatic_semicolon] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4414), + }, + [2961] = { + [sym_type_constraints] = STATE(3200), + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(6498), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_RBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [anon_sym_DASH_GT] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [2962] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_object] = ACTIONS(4343), + [anon_sym_fun] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_this] = ACTIONS(4343), + [anon_sym_super] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_null] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_catch] = ACTIONS(4343), + [anon_sym_finally] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4345), + [anon_sym_continue_AT] = ACTIONS(4345), + [anon_sym_break_AT] = ACTIONS(4345), + [anon_sym_this_AT] = ACTIONS(4345), + [anon_sym_super_AT] = ACTIONS(4345), + [sym_real_literal] = ACTIONS(4345), + [sym_integer_literal] = ACTIONS(4343), + [sym_hex_literal] = ACTIONS(4345), + [sym_bin_literal] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [anon_sym_SQUOTE] = ACTIONS(4345), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4345), + }, + [2963] = { + [sym_type_constraints] = STATE(3214), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(6500), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_RBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [anon_sym_DASH_GT] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_while] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + }, + [2964] = { + [sym_catch_block] = STATE(2964), + [aux_sym_try_expression_repeat1] = STATE(2964), + [sym__alpha_identifier] = ACTIONS(4110), + [anon_sym_AT] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_RBRACK] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_LPAREN] = ACTIONS(4112), + [anon_sym_COMMA] = ACTIONS(4112), + [anon_sym_RPAREN] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4110), + [anon_sym_GT] = ACTIONS(4110), + [anon_sym_where] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_get] = ACTIONS(4110), + [anon_sym_set] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [anon_sym_DASH_GT] = ACTIONS(4112), + [sym_label] = ACTIONS(4112), + [anon_sym_in] = ACTIONS(4110), + [anon_sym_while] = ACTIONS(4110), + [anon_sym_DOT_DOT] = ACTIONS(4112), + [anon_sym_QMARK_COLON] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_PIPE_PIPE] = ACTIONS(4112), + [anon_sym_else] = ACTIONS(4110), + [anon_sym_catch] = ACTIONS(6502), + [anon_sym_finally] = ACTIONS(4110), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_PLUS_EQ] = ACTIONS(4112), + [anon_sym_DASH_EQ] = ACTIONS(4112), + [anon_sym_STAR_EQ] = ACTIONS(4112), + [anon_sym_SLASH_EQ] = ACTIONS(4112), + [anon_sym_PERCENT_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_BANGin] = ACTIONS(4112), + [anon_sym_is] = ACTIONS(4110), + [anon_sym_BANGis] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_BANG_BANG] = ACTIONS(4112), + [anon_sym_suspend] = ACTIONS(4110), + [anon_sym_sealed] = ACTIONS(4110), + [anon_sym_annotation] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4110), + [anon_sym_inner] = ACTIONS(4110), + [anon_sym_value] = ACTIONS(4110), + [anon_sym_override] = ACTIONS(4110), + [anon_sym_lateinit] = ACTIONS(4110), + [anon_sym_public] = ACTIONS(4110), + [anon_sym_private] = ACTIONS(4110), + [anon_sym_internal] = ACTIONS(4110), + [anon_sym_protected] = ACTIONS(4110), + [anon_sym_tailrec] = ACTIONS(4110), + [anon_sym_operator] = ACTIONS(4110), + [anon_sym_infix] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym_external] = ACTIONS(4110), + [sym_property_modifier] = ACTIONS(4110), + [anon_sym_abstract] = ACTIONS(4110), + [anon_sym_final] = ACTIONS(4110), + [anon_sym_open] = ACTIONS(4110), + [anon_sym_vararg] = ACTIONS(4110), + [anon_sym_noinline] = ACTIONS(4110), + [anon_sym_crossinline] = ACTIONS(4110), + [anon_sym_expect] = ACTIONS(4110), + [anon_sym_actual] = ACTIONS(4110), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4112), + [sym_safe_nav] = ACTIONS(4112), + [sym_multiline_comment] = ACTIONS(3), + }, + [2965] = { + [sym_getter] = STATE(3911), + [sym_setter] = STATE(3911), + [sym_modifiers] = STATE(9219), + [sym__modifier] = STATE(5609), + [sym_class_modifier] = STATE(5609), + [sym_member_modifier] = STATE(5609), + [sym_visibility_modifier] = STATE(5609), + [sym_function_modifier] = STATE(5609), + [sym_inheritance_modifier] = STATE(5609), + [sym_parameter_modifier] = STATE(5609), + [sym_platform_modifier] = STATE(5609), + [sym_annotation] = STATE(5609), + [sym__single_annotation] = STATE(5774), + [sym__multi_annotation] = STATE(5774), + [aux_sym_modifiers_repeat1] = STATE(5609), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(6304), + [anon_sym_set] = ACTIONS(6306), + [anon_sym_STAR] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1684), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), + [anon_sym_suspend] = ACTIONS(73), + [anon_sym_sealed] = ACTIONS(75), + [anon_sym_annotation] = ACTIONS(75), + [anon_sym_data] = ACTIONS(75), + [anon_sym_inner] = ACTIONS(75), + [anon_sym_value] = ACTIONS(75), + [anon_sym_override] = ACTIONS(79), + [anon_sym_lateinit] = ACTIONS(79), + [anon_sym_public] = ACTIONS(81), + [anon_sym_private] = ACTIONS(81), + [anon_sym_internal] = ACTIONS(81), + [anon_sym_protected] = ACTIONS(81), + [anon_sym_tailrec] = ACTIONS(73), + [anon_sym_operator] = ACTIONS(73), + [anon_sym_infix] = ACTIONS(73), + [anon_sym_inline] = ACTIONS(73), + [anon_sym_external] = ACTIONS(73), + [sym_property_modifier] = ACTIONS(83), + [anon_sym_abstract] = ACTIONS(85), + [anon_sym_final] = ACTIONS(85), + [anon_sym_open] = ACTIONS(85), + [anon_sym_vararg] = ACTIONS(87), + [anon_sym_noinline] = ACTIONS(87), + [anon_sym_crossinline] = ACTIONS(87), + [anon_sym_expect] = ACTIONS(3276), + [anon_sym_actual] = ACTIONS(3276), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + }, + [2966] = { + [sym_type_constraints] = STATE(3229), + [sym_function_body] = STATE(3599), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(6505), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_RBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4123), + [anon_sym_DASH_GT] = ACTIONS(4125), + [sym_label] = ACTIONS(4125), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_while] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + }, + [2967] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6507), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [2968] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [2969] = { + [sym_enum_class_body] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [2970] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2970), + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [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(6509), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4613), + [anon_sym_super_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), + }, + [2971] = { + [sym_class_body] = STATE(3464), + [sym_type_constraints] = STATE(3364), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6512), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + }, + [2972] = { + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_object] = ACTIONS(4567), + [anon_sym_fun] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_this] = ACTIONS(4567), + [anon_sym_super] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4567), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_null] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_when] = ACTIONS(4567), + [anon_sym_try] = ACTIONS(4567), + [anon_sym_throw] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4569), + [anon_sym_continue_AT] = ACTIONS(4569), + [anon_sym_break_AT] = ACTIONS(4569), + [anon_sym_this_AT] = ACTIONS(4569), + [anon_sym_super_AT] = ACTIONS(4569), + [sym_real_literal] = ACTIONS(4569), + [sym_integer_literal] = ACTIONS(4567), + [sym_hex_literal] = ACTIONS(4569), + [sym_bin_literal] = ACTIONS(4569), + [anon_sym_true] = ACTIONS(4567), + [anon_sym_false] = ACTIONS(4567), + [anon_sym_SQUOTE] = ACTIONS(4569), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4569), + }, + [2973] = { + [sym_type_constraints] = STATE(3061), + [sym_function_body] = STATE(3387), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [anon_sym_DASH_GT] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_while] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), [anon_sym_else] = ACTIONS(4260), @@ -356090,6288 +356531,5169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [2972] = { - [sym_type_constraints] = STATE(3265), - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_RBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [anon_sym_DASH_GT] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - }, - [2973] = { - [sym_class_body] = STATE(3562), - [sym_type_constraints] = STATE(3303), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(5645), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - }, [2974] = { - [sym_type_constraints] = STATE(3069), - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_RBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_DASH_GT] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym_type_constraints] = STATE(3330), + [sym_enum_class_body] = STATE(3464), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6514), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, [2975] = { - [sym_function_body] = STATE(3071), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(6561), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), + [sym_class_body] = STATE(3501), + [sym_type_constraints] = STATE(3339), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(5588), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), }, [2976] = { - [sym_type_constraints] = STATE(3078), - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [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(5512), - [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_value] = 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__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_object] = ACTIONS(4563), + [anon_sym_fun] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_this] = ACTIONS(4563), + [anon_sym_super] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [sym_label] = ACTIONS(4563), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_null] = ACTIONS(4563), + [anon_sym_if] = ACTIONS(4563), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_when] = ACTIONS(4563), + [anon_sym_try] = ACTIONS(4563), + [anon_sym_throw] = ACTIONS(4563), + [anon_sym_return] = ACTIONS(4563), + [anon_sym_continue] = ACTIONS(4563), + [anon_sym_break] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4563), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4565), + [anon_sym_continue_AT] = ACTIONS(4565), + [anon_sym_break_AT] = ACTIONS(4565), + [anon_sym_this_AT] = ACTIONS(4565), + [anon_sym_super_AT] = ACTIONS(4565), + [sym_real_literal] = ACTIONS(4565), + [sym_integer_literal] = ACTIONS(4563), + [sym_hex_literal] = ACTIONS(4565), + [sym_bin_literal] = ACTIONS(4565), + [anon_sym_true] = ACTIONS(4563), + [anon_sym_false] = ACTIONS(4563), + [anon_sym_SQUOTE] = ACTIONS(4565), + [sym__backtick_identifier] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4565), }, [2977] = { - [sym_annotated_lambda] = STATE(3883), - [sym_lambda_literal] = STATE(3901), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_as] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym_COMMA] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4040), - [anon_sym_GT] = ACTIONS(4040), - [anon_sym_where] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_get] = ACTIONS(4040), - [anon_sym_set] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [sym_label] = ACTIONS(4042), - [anon_sym_in] = ACTIONS(4040), - [anon_sym_DOT_DOT] = ACTIONS(4042), - [anon_sym_QMARK_COLON] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_else] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_PLUS_EQ] = ACTIONS(4042), - [anon_sym_DASH_EQ] = ACTIONS(4042), - [anon_sym_STAR_EQ] = ACTIONS(4042), - [anon_sym_SLASH_EQ] = ACTIONS(4042), - [anon_sym_PERCENT_EQ] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4042), - [anon_sym_LT_EQ] = ACTIONS(4042), - [anon_sym_GT_EQ] = ACTIONS(4042), - [anon_sym_BANGin] = ACTIONS(4042), - [anon_sym_is] = ACTIONS(4040), - [anon_sym_BANGis] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_SLASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_as_QMARK] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_BANG_BANG] = ACTIONS(4042), - [anon_sym_suspend] = ACTIONS(4040), - [anon_sym_sealed] = ACTIONS(4040), - [anon_sym_annotation] = ACTIONS(4040), - [anon_sym_data] = ACTIONS(4040), - [anon_sym_inner] = ACTIONS(4040), - [anon_sym_value] = ACTIONS(4040), - [anon_sym_override] = ACTIONS(4040), - [anon_sym_lateinit] = ACTIONS(4040), - [anon_sym_public] = ACTIONS(4040), - [anon_sym_private] = ACTIONS(4040), - [anon_sym_internal] = ACTIONS(4040), - [anon_sym_protected] = ACTIONS(4040), - [anon_sym_tailrec] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_infix] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym_external] = ACTIONS(4040), - [sym_property_modifier] = ACTIONS(4040), - [anon_sym_abstract] = ACTIONS(4040), - [anon_sym_final] = ACTIONS(4040), - [anon_sym_open] = ACTIONS(4040), - [anon_sym_vararg] = ACTIONS(4040), - [anon_sym_noinline] = ACTIONS(4040), - [anon_sym_crossinline] = ACTIONS(4040), - [anon_sym_expect] = ACTIONS(4040), - [anon_sym_actual] = ACTIONS(4040), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4042), - [sym__automatic_semicolon] = ACTIONS(4042), - [sym_safe_nav] = ACTIONS(4042), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3253), + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_object] = ACTIONS(4412), + [anon_sym_fun] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_this] = ACTIONS(4412), + [anon_sym_super] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_null] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_try] = ACTIONS(4412), + [anon_sym_throw] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4414), + [anon_sym_continue_AT] = ACTIONS(4414), + [anon_sym_break_AT] = ACTIONS(4414), + [anon_sym_this_AT] = ACTIONS(4414), + [anon_sym_super_AT] = ACTIONS(4414), + [sym_real_literal] = ACTIONS(4414), + [sym_integer_literal] = ACTIONS(4412), + [sym_hex_literal] = ACTIONS(4414), + [sym_bin_literal] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4412), + [anon_sym_false] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4414), + [sym__backtick_identifier] = ACTIONS(4414), + [sym__automatic_semicolon] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4414), }, [2978] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3040), - [sym__alpha_identifier] = ACTIONS(4621), - [anon_sym_AT] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4621), - [anon_sym_EQ] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(6563), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4621), - [anon_sym_where] = ACTIONS(4621), - [anon_sym_object] = ACTIONS(4621), - [anon_sym_fun] = ACTIONS(4621), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_get] = ACTIONS(4621), - [anon_sym_set] = ACTIONS(4621), - [anon_sym_this] = ACTIONS(4621), - [anon_sym_super] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4621), - [sym_label] = ACTIONS(4621), - [anon_sym_in] = ACTIONS(4621), - [anon_sym_DOT_DOT] = ACTIONS(4623), - [anon_sym_QMARK_COLON] = ACTIONS(4623), - [anon_sym_AMP_AMP] = ACTIONS(4623), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(4621), - [anon_sym_if] = ACTIONS(4621), - [anon_sym_else] = ACTIONS(4621), - [anon_sym_when] = ACTIONS(4621), - [anon_sym_try] = ACTIONS(4621), - [anon_sym_throw] = ACTIONS(4621), - [anon_sym_return] = ACTIONS(4621), - [anon_sym_continue] = ACTIONS(4621), - [anon_sym_break] = ACTIONS(4621), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_PLUS_EQ] = ACTIONS(4623), - [anon_sym_DASH_EQ] = ACTIONS(4623), - [anon_sym_STAR_EQ] = ACTIONS(4623), - [anon_sym_SLASH_EQ] = ACTIONS(4623), - [anon_sym_PERCENT_EQ] = ACTIONS(4623), - [anon_sym_BANG_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), - [anon_sym_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4623), - [anon_sym_is] = ACTIONS(4621), - [anon_sym_BANGis] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4621), - [anon_sym_PERCENT] = ACTIONS(4621), - [anon_sym_as_QMARK] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4621), - [anon_sym_BANG_BANG] = ACTIONS(4623), - [anon_sym_data] = ACTIONS(4621), - [anon_sym_inner] = ACTIONS(4621), - [anon_sym_value] = ACTIONS(4621), - [anon_sym_expect] = ACTIONS(4621), - [anon_sym_actual] = ACTIONS(4621), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4623), - [anon_sym_continue_AT] = ACTIONS(4623), - [anon_sym_break_AT] = ACTIONS(4623), - [anon_sym_this_AT] = ACTIONS(4623), - [anon_sym_super_AT] = ACTIONS(4623), - [sym_real_literal] = ACTIONS(4623), - [sym_integer_literal] = ACTIONS(4621), - [sym_hex_literal] = ACTIONS(4623), - [sym_bin_literal] = ACTIONS(4623), - [anon_sym_true] = ACTIONS(4621), - [anon_sym_false] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4623), - [sym__backtick_identifier] = ACTIONS(4623), - [sym__automatic_semicolon] = ACTIONS(4623), - [sym_safe_nav] = ACTIONS(4623), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4623), + [sym_type_constraints] = STATE(3363), + [sym_enum_class_body] = STATE(3430), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(5576), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), }, [2979] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [sym_label] = ACTIONS(4020), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [anon_sym_PLUS_EQ] = ACTIONS(4047), - [anon_sym_DASH_EQ] = ACTIONS(4047), - [anon_sym_STAR_EQ] = ACTIONS(4047), - [anon_sym_SLASH_EQ] = ACTIONS(4047), - [anon_sym_PERCENT_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_suspend] = ACTIONS(4018), - [anon_sym_sealed] = ACTIONS(4018), - [anon_sym_annotation] = ACTIONS(4018), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_override] = ACTIONS(4018), - [anon_sym_lateinit] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_internal] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_tailrec] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_infix] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym_external] = ACTIONS(4018), - [sym_property_modifier] = ACTIONS(4018), - [anon_sym_abstract] = ACTIONS(4018), - [anon_sym_final] = ACTIONS(4018), - [anon_sym_open] = ACTIONS(4018), - [anon_sym_vararg] = ACTIONS(4018), - [anon_sym_noinline] = ACTIONS(4018), - [anon_sym_crossinline] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4020), - [sym__automatic_semicolon] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3221), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [2980] = { - [sym_enum_class_body] = STATE(3102), - [sym__alpha_identifier] = ACTIONS(4716), - [anon_sym_AT] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4716), - [anon_sym_EQ] = ACTIONS(4716), - [anon_sym_LBRACE] = ACTIONS(3254), - [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_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_value] = ACTIONS(4716), - [anon_sym_expect] = ACTIONS(4716), - [anon_sym_actual] = ACTIONS(4716), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4718), - [anon_sym_continue_AT] = ACTIONS(4718), - [anon_sym_break_AT] = ACTIONS(4718), - [anon_sym_this_AT] = ACTIONS(4718), - [anon_sym_super_AT] = ACTIONS(4718), - [sym_real_literal] = ACTIONS(4718), - [sym_integer_literal] = ACTIONS(4716), - [sym_hex_literal] = ACTIONS(4718), - [sym_bin_literal] = ACTIONS(4718), - [anon_sym_true] = ACTIONS(4716), - [anon_sym_false] = ACTIONS(4716), - [anon_sym_SQUOTE] = ACTIONS(4718), - [sym__backtick_identifier] = ACTIONS(4718), - [sym__automatic_semicolon] = ACTIONS(4718), - [sym_safe_nav] = ACTIONS(4718), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4718), + [sym_type_constraints] = STATE(3200), + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_RBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [anon_sym_DASH_GT] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), }, [2981] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [sym_label] = ACTIONS(4020), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [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(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_suspend] = ACTIONS(4018), - [anon_sym_sealed] = ACTIONS(4018), - [anon_sym_annotation] = ACTIONS(4018), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_override] = ACTIONS(4018), - [anon_sym_lateinit] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_internal] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_tailrec] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_infix] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym_external] = ACTIONS(4018), - [sym_property_modifier] = ACTIONS(4018), - [anon_sym_abstract] = ACTIONS(4018), - [anon_sym_final] = ACTIONS(4018), - [anon_sym_open] = ACTIONS(4018), - [anon_sym_vararg] = ACTIONS(4018), - [anon_sym_noinline] = ACTIONS(4018), - [anon_sym_crossinline] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4020), - [sym__automatic_semicolon] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(5599), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [2982] = { - [sym_enum_class_body] = STATE(3112), - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_EQ] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(3254), - [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_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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4462), - [anon_sym_super_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), + [sym_type_constraints] = STATE(3353), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(6516), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4154), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), }, [2983] = { - [sym_class_body] = STATE(3118), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(3262), - [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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_this] = ACTIONS(4754), - [anon_sym_super] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(4754), - [anon_sym_if] = ACTIONS(4754), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_when] = ACTIONS(4754), - [anon_sym_try] = ACTIONS(4754), - [anon_sym_throw] = ACTIONS(4754), - [anon_sym_return] = ACTIONS(4754), - [anon_sym_continue] = ACTIONS(4754), - [anon_sym_break] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4756), - [anon_sym_continue_AT] = ACTIONS(4756), - [anon_sym_break_AT] = ACTIONS(4756), - [anon_sym_this_AT] = ACTIONS(4756), - [anon_sym_super_AT] = ACTIONS(4756), - [sym_real_literal] = ACTIONS(4756), - [sym_integer_literal] = ACTIONS(4754), - [sym_hex_literal] = ACTIONS(4756), - [sym_bin_literal] = ACTIONS(4756), - [anon_sym_true] = ACTIONS(4754), - [anon_sym_false] = ACTIONS(4754), - [anon_sym_SQUOTE] = ACTIONS(4756), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4756), + [sym_function_body] = STATE(3598), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(6518), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_RBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_RPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_where] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [anon_sym_DASH_GT] = ACTIONS(4252), + [sym_label] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_while] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_PLUS_EQ] = ACTIONS(4252), + [anon_sym_DASH_EQ] = ACTIONS(4252), + [anon_sym_STAR_EQ] = ACTIONS(4252), + [anon_sym_SLASH_EQ] = ACTIONS(4252), + [anon_sym_PERCENT_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), }, [2984] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3016), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_object] = ACTIONS(4539), - [anon_sym_fun] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_this] = ACTIONS(4539), - [anon_sym_super] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4539), - [sym_label] = ACTIONS(4539), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_null] = ACTIONS(4539), - [anon_sym_if] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_when] = ACTIONS(4539), - [anon_sym_try] = ACTIONS(4539), - [anon_sym_throw] = ACTIONS(4539), - [anon_sym_return] = ACTIONS(4539), - [anon_sym_continue] = ACTIONS(4539), - [anon_sym_break] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_PLUS_EQ] = ACTIONS(4541), - [anon_sym_DASH_EQ] = ACTIONS(4541), - [anon_sym_STAR_EQ] = ACTIONS(4541), - [anon_sym_SLASH_EQ] = ACTIONS(4541), - [anon_sym_PERCENT_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4541), - [anon_sym_continue_AT] = ACTIONS(4541), - [anon_sym_break_AT] = ACTIONS(4541), - [anon_sym_this_AT] = ACTIONS(4541), - [anon_sym_super_AT] = ACTIONS(4541), - [sym_real_literal] = ACTIONS(4541), - [sym_integer_literal] = ACTIONS(4539), - [sym_hex_literal] = ACTIONS(4541), - [sym_bin_literal] = ACTIONS(4541), - [anon_sym_true] = ACTIONS(4539), - [anon_sym_false] = ACTIONS(4539), - [anon_sym_SQUOTE] = ACTIONS(4541), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4541), + [sym_class_body] = STATE(3503), + [sym_type_constraints] = STATE(3302), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(6520), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_DASH_GT] = ACTIONS(4276), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), }, [2985] = { - [sym_enum_class_body] = STATE(3118), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(3254), - [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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_this] = ACTIONS(4754), - [anon_sym_super] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(4754), - [anon_sym_if] = ACTIONS(4754), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_when] = ACTIONS(4754), - [anon_sym_try] = ACTIONS(4754), - [anon_sym_throw] = ACTIONS(4754), - [anon_sym_return] = ACTIONS(4754), - [anon_sym_continue] = ACTIONS(4754), - [anon_sym_break] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4756), - [anon_sym_continue_AT] = ACTIONS(4756), - [anon_sym_break_AT] = ACTIONS(4756), - [anon_sym_this_AT] = ACTIONS(4756), - [anon_sym_super_AT] = ACTIONS(4756), - [sym_real_literal] = ACTIONS(4756), - [sym_integer_literal] = ACTIONS(4754), - [sym_hex_literal] = ACTIONS(4756), - [sym_bin_literal] = ACTIONS(4756), - [anon_sym_true] = ACTIONS(4754), - [anon_sym_false] = ACTIONS(4754), - [anon_sym_SQUOTE] = ACTIONS(4756), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4756), + [sym_class_body] = STATE(3549), + [sym_type_constraints] = STATE(3273), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(5601), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_DASH_GT] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), }, [2986] = { - [sym_enum_class_body] = STATE(3121), - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(4415), - [anon_sym_object] = ACTIONS(4415), - [anon_sym_fun] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_this] = ACTIONS(4415), - [anon_sym_super] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [sym_label] = ACTIONS(4415), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_null] = ACTIONS(4415), - [anon_sym_if] = ACTIONS(4415), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_when] = ACTIONS(4415), - [anon_sym_try] = ACTIONS(4415), - [anon_sym_throw] = ACTIONS(4415), - [anon_sym_return] = ACTIONS(4415), - [anon_sym_continue] = ACTIONS(4415), - [anon_sym_break] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(4415), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4417), - [anon_sym_continue_AT] = ACTIONS(4417), - [anon_sym_break_AT] = ACTIONS(4417), - [anon_sym_this_AT] = ACTIONS(4417), - [anon_sym_super_AT] = ACTIONS(4417), - [sym_real_literal] = ACTIONS(4417), - [sym_integer_literal] = ACTIONS(4415), - [sym_hex_literal] = ACTIONS(4417), - [sym_bin_literal] = ACTIONS(4417), - [anon_sym_true] = ACTIONS(4415), - [anon_sym_false] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4417), - [sym__backtick_identifier] = ACTIONS(4417), - [sym__automatic_semicolon] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4417), + [sym__alpha_identifier] = ACTIONS(4270), + [anon_sym_AT] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [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_SEMI] = ACTIONS(4272), + [anon_sym_get] = ACTIONS(4270), + [anon_sym_set] = ACTIONS(4270), + [anon_sym_this] = ACTIONS(4270), + [anon_sym_super] = 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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4272), + [anon_sym_super_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), }, [2987] = { - [sym_class_body] = STATE(3138), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [aux_sym_type_constraints_repeat1] = STATE(2987), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(6522), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_null] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), }, [2988] = { - [sym_function_body] = STATE(3396), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(6565), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_RBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [anon_sym_DASH_GT] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [sym__alpha_identifier] = ACTIONS(4521), + [anon_sym_AT] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4521), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_DOT] = ACTIONS(4521), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4523), + [anon_sym_super_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), }, [2989] = { - [sym__alpha_identifier] = ACTIONS(4629), - [anon_sym_AT] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_as] = ACTIONS(4629), - [anon_sym_EQ] = ACTIONS(4629), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_RBRACE] = ACTIONS(4631), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_by] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_where] = ACTIONS(4629), - [anon_sym_object] = ACTIONS(4629), - [anon_sym_fun] = ACTIONS(4629), - [anon_sym_SEMI] = ACTIONS(4631), - [anon_sym_get] = ACTIONS(4629), - [anon_sym_set] = ACTIONS(4629), - [anon_sym_this] = ACTIONS(4629), - [anon_sym_super] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [sym_label] = ACTIONS(4629), - [anon_sym_in] = ACTIONS(4629), - [anon_sym_DOT_DOT] = ACTIONS(4631), - [anon_sym_QMARK_COLON] = ACTIONS(4631), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4631), - [anon_sym_null] = ACTIONS(4629), - [anon_sym_if] = ACTIONS(4629), - [anon_sym_else] = ACTIONS(4629), - [anon_sym_when] = ACTIONS(4629), - [anon_sym_try] = ACTIONS(4629), - [anon_sym_throw] = ACTIONS(4629), - [anon_sym_return] = ACTIONS(4629), - [anon_sym_continue] = ACTIONS(4629), - [anon_sym_break] = ACTIONS(4629), - [anon_sym_COLON_COLON] = ACTIONS(4631), - [anon_sym_PLUS_EQ] = ACTIONS(4631), - [anon_sym_DASH_EQ] = ACTIONS(4631), - [anon_sym_STAR_EQ] = ACTIONS(4631), - [anon_sym_SLASH_EQ] = ACTIONS(4631), - [anon_sym_PERCENT_EQ] = ACTIONS(4631), - [anon_sym_BANG_EQ] = ACTIONS(4629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4631), - [anon_sym_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4631), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4631), - [anon_sym_is] = ACTIONS(4629), - [anon_sym_BANGis] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4629), - [anon_sym_as_QMARK] = ACTIONS(4631), - [anon_sym_PLUS_PLUS] = ACTIONS(4631), - [anon_sym_DASH_DASH] = ACTIONS(4631), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_BANG_BANG] = ACTIONS(4631), - [anon_sym_data] = ACTIONS(4629), - [anon_sym_inner] = ACTIONS(4629), - [anon_sym_value] = ACTIONS(4629), - [anon_sym_expect] = ACTIONS(4629), - [anon_sym_actual] = ACTIONS(4629), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4631), - [anon_sym_continue_AT] = ACTIONS(4631), - [anon_sym_break_AT] = ACTIONS(4631), - [anon_sym_this_AT] = ACTIONS(4631), - [anon_sym_super_AT] = ACTIONS(4631), - [sym_real_literal] = ACTIONS(4631), - [sym_integer_literal] = ACTIONS(4629), - [sym_hex_literal] = ACTIONS(4631), - [sym_bin_literal] = ACTIONS(4631), - [anon_sym_true] = ACTIONS(4629), - [anon_sym_false] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4631), - [sym__backtick_identifier] = ACTIONS(4631), - [sym__automatic_semicolon] = ACTIONS(4631), - [sym_safe_nav] = ACTIONS(4631), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4631), + [sym_type_constraints] = STATE(3199), + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_RBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [anon_sym_DASH_GT] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), }, [2990] = { - [sym__alpha_identifier] = ACTIONS(4609), - [anon_sym_AT] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_as] = ACTIONS(4609), - [anon_sym_EQ] = ACTIONS(4609), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_RBRACE] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_by] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_where] = ACTIONS(4609), - [anon_sym_object] = ACTIONS(4609), - [anon_sym_fun] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_get] = ACTIONS(4609), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_this] = ACTIONS(4609), - [anon_sym_super] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [sym_label] = ACTIONS(4609), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4611), - [anon_sym_AMP_AMP] = ACTIONS(4611), - [anon_sym_PIPE_PIPE] = ACTIONS(4611), - [anon_sym_null] = ACTIONS(4609), - [anon_sym_if] = ACTIONS(4609), - [anon_sym_else] = ACTIONS(4609), - [anon_sym_when] = ACTIONS(4609), - [anon_sym_try] = ACTIONS(4609), - [anon_sym_throw] = ACTIONS(4609), - [anon_sym_return] = ACTIONS(4609), - [anon_sym_continue] = ACTIONS(4609), - [anon_sym_break] = ACTIONS(4609), - [anon_sym_COLON_COLON] = ACTIONS(4611), - [anon_sym_PLUS_EQ] = ACTIONS(4611), - [anon_sym_DASH_EQ] = ACTIONS(4611), - [anon_sym_STAR_EQ] = ACTIONS(4611), - [anon_sym_SLASH_EQ] = ACTIONS(4611), - [anon_sym_PERCENT_EQ] = ACTIONS(4611), - [anon_sym_BANG_EQ] = ACTIONS(4609), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4611), - [anon_sym_EQ_EQ] = ACTIONS(4609), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4611), - [anon_sym_LT_EQ] = ACTIONS(4611), - [anon_sym_GT_EQ] = ACTIONS(4611), - [anon_sym_BANGin] = ACTIONS(4611), - [anon_sym_is] = ACTIONS(4609), - [anon_sym_BANGis] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_PERCENT] = ACTIONS(4609), - [anon_sym_as_QMARK] = ACTIONS(4611), - [anon_sym_PLUS_PLUS] = ACTIONS(4611), - [anon_sym_DASH_DASH] = ACTIONS(4611), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_BANG_BANG] = ACTIONS(4611), - [anon_sym_data] = ACTIONS(4609), - [anon_sym_inner] = ACTIONS(4609), - [anon_sym_value] = ACTIONS(4609), - [anon_sym_expect] = ACTIONS(4609), - [anon_sym_actual] = ACTIONS(4609), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4611), - [anon_sym_continue_AT] = ACTIONS(4611), - [anon_sym_break_AT] = ACTIONS(4611), - [anon_sym_this_AT] = ACTIONS(4611), - [anon_sym_super_AT] = ACTIONS(4611), - [sym_real_literal] = ACTIONS(4611), - [sym_integer_literal] = ACTIONS(4609), - [sym_hex_literal] = ACTIONS(4611), - [sym_bin_literal] = ACTIONS(4611), - [anon_sym_true] = ACTIONS(4609), - [anon_sym_false] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4611), - [sym__backtick_identifier] = ACTIONS(4611), - [sym__automatic_semicolon] = ACTIONS(4611), - [sym_safe_nav] = ACTIONS(4611), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4611), + [sym_class_body] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, [2991] = { - [sym__alpha_identifier] = ACTIONS(4605), - [anon_sym_AT] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_DOT] = ACTIONS(4605), - [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_by] = ACTIONS(4605), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4607), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4634), + [anon_sym_AT] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4634), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4636), + [anon_sym_super_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), }, [2992] = { - [sym_enum_class_body] = STATE(3138), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), + [sym_type_constraints] = STATE(3193), + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5448), + [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_value] = 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), }, [2993] = { - [sym_class_body] = STATE(3140), - [sym__alpha_identifier] = ACTIONS(4672), - [anon_sym_AT] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(4674), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_COMMA] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4672), - [anon_sym_GT] = ACTIONS(4672), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_object] = ACTIONS(4672), - [anon_sym_fun] = ACTIONS(4672), - [anon_sym_SEMI] = ACTIONS(4674), - [anon_sym_get] = ACTIONS(4672), - [anon_sym_set] = ACTIONS(4672), - [anon_sym_this] = ACTIONS(4672), - [anon_sym_super] = ACTIONS(4672), - [anon_sym_STAR] = ACTIONS(4672), - [sym_label] = ACTIONS(4672), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(4674), - [anon_sym_QMARK_COLON] = ACTIONS(4674), - [anon_sym_AMP_AMP] = ACTIONS(4674), - [anon_sym_PIPE_PIPE] = ACTIONS(4674), - [anon_sym_null] = ACTIONS(4672), - [anon_sym_if] = ACTIONS(4672), - [anon_sym_else] = ACTIONS(4672), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_try] = ACTIONS(4672), - [anon_sym_throw] = ACTIONS(4672), - [anon_sym_return] = ACTIONS(4672), - [anon_sym_continue] = ACTIONS(4672), - [anon_sym_break] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_PLUS_EQ] = ACTIONS(4674), - [anon_sym_DASH_EQ] = ACTIONS(4674), - [anon_sym_STAR_EQ] = ACTIONS(4674), - [anon_sym_SLASH_EQ] = ACTIONS(4674), - [anon_sym_PERCENT_EQ] = ACTIONS(4674), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), - [anon_sym_LT_EQ] = ACTIONS(4674), - [anon_sym_GT_EQ] = ACTIONS(4674), - [anon_sym_BANGin] = ACTIONS(4674), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_BANGis] = ACTIONS(4674), - [anon_sym_PLUS] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_as_QMARK] = ACTIONS(4674), - [anon_sym_PLUS_PLUS] = ACTIONS(4674), - [anon_sym_DASH_DASH] = ACTIONS(4674), - [anon_sym_BANG] = ACTIONS(4672), - [anon_sym_BANG_BANG] = ACTIONS(4674), - [anon_sym_data] = ACTIONS(4672), - [anon_sym_inner] = ACTIONS(4672), - [anon_sym_value] = ACTIONS(4672), - [anon_sym_expect] = ACTIONS(4672), - [anon_sym_actual] = ACTIONS(4672), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4674), - [anon_sym_continue_AT] = ACTIONS(4674), - [anon_sym_break_AT] = ACTIONS(4674), - [anon_sym_this_AT] = ACTIONS(4674), - [anon_sym_super_AT] = ACTIONS(4674), - [sym_real_literal] = ACTIONS(4674), - [sym_integer_literal] = ACTIONS(4672), - [sym_hex_literal] = ACTIONS(4674), - [sym_bin_literal] = ACTIONS(4674), - [anon_sym_true] = ACTIONS(4672), - [anon_sym_false] = ACTIONS(4672), - [anon_sym_SQUOTE] = ACTIONS(4674), - [sym__backtick_identifier] = ACTIONS(4674), - [sym__automatic_semicolon] = ACTIONS(4674), - [sym_safe_nav] = ACTIONS(4674), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4674), + [sym_enum_class_body] = STATE(3251), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, [2994] = { - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(6567), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_object] = ACTIONS(4289), - [anon_sym_fun] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_this] = ACTIONS(4289), - [anon_sym_super] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4289), - [anon_sym_if] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_when] = ACTIONS(4289), - [anon_sym_try] = ACTIONS(4289), - [anon_sym_throw] = ACTIONS(4289), - [anon_sym_return] = ACTIONS(4289), - [anon_sym_continue] = ACTIONS(4289), - [anon_sym_break] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_PLUS_EQ] = ACTIONS(4291), - [anon_sym_DASH_EQ] = ACTIONS(4291), - [anon_sym_STAR_EQ] = ACTIONS(4291), - [anon_sym_SLASH_EQ] = ACTIONS(4291), - [anon_sym_PERCENT_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4291), - [anon_sym_continue_AT] = ACTIONS(4291), - [anon_sym_break_AT] = ACTIONS(4291), - [anon_sym_this_AT] = ACTIONS(4291), - [anon_sym_super_AT] = ACTIONS(4291), - [sym_real_literal] = ACTIONS(4291), - [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4291), - [sym_bin_literal] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4289), - [anon_sym_false] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4291), + [sym__alpha_identifier] = ACTIONS(4638), + [anon_sym_AT] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4638), + [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_by] = ACTIONS(4638), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4640), + [anon_sym_super_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_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), }, [2995] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4758), - [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_SEMI] = ACTIONS(4760), - [anon_sym_get] = ACTIONS(4758), - [anon_sym_set] = ACTIONS(4758), - [anon_sym_this] = ACTIONS(4758), - [anon_sym_super] = ACTIONS(4758), - [anon_sym_STAR] = ACTIONS(4758), - [sym_label] = ACTIONS(4758), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_QMARK_COLON] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [anon_sym_null] = ACTIONS(4758), - [anon_sym_if] = ACTIONS(4758), - [anon_sym_else] = ACTIONS(4758), - [anon_sym_when] = ACTIONS(4758), - [anon_sym_try] = ACTIONS(4758), - [anon_sym_throw] = ACTIONS(4758), - [anon_sym_return] = ACTIONS(4758), - [anon_sym_continue] = ACTIONS(4758), - [anon_sym_break] = ACTIONS(4758), - [anon_sym_COLON_COLON] = ACTIONS(4760), - [anon_sym_PLUS_EQ] = ACTIONS(4760), - [anon_sym_DASH_EQ] = ACTIONS(4760), - [anon_sym_STAR_EQ] = ACTIONS(4760), - [anon_sym_SLASH_EQ] = ACTIONS(4760), - [anon_sym_PERCENT_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_BANGin] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4758), - [anon_sym_BANGis] = ACTIONS(4760), - [anon_sym_PLUS] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_SLASH] = ACTIONS(4758), - [anon_sym_PERCENT] = ACTIONS(4758), - [anon_sym_as_QMARK] = ACTIONS(4760), - [anon_sym_PLUS_PLUS] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4760), - [anon_sym_BANG] = ACTIONS(4758), - [anon_sym_BANG_BANG] = ACTIONS(4760), - [anon_sym_data] = ACTIONS(4758), - [anon_sym_inner] = ACTIONS(4758), - [anon_sym_value] = ACTIONS(4758), - [anon_sym_expect] = ACTIONS(4758), - [anon_sym_actual] = ACTIONS(4758), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4760), - [anon_sym_continue_AT] = ACTIONS(4760), - [anon_sym_break_AT] = ACTIONS(4760), - [anon_sym_this_AT] = ACTIONS(4760), - [anon_sym_super_AT] = ACTIONS(4760), - [sym_real_literal] = ACTIONS(4760), - [sym_integer_literal] = ACTIONS(4758), - [sym_hex_literal] = ACTIONS(4760), - [sym_bin_literal] = ACTIONS(4760), - [anon_sym_true] = ACTIONS(4758), - [anon_sym_false] = ACTIONS(4758), - [anon_sym_SQUOTE] = ACTIONS(4760), - [sym__backtick_identifier] = ACTIONS(4760), - [sym__automatic_semicolon] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4760), + [sym__alpha_identifier] = ACTIONS(4583), + [anon_sym_AT] = ACTIONS(4585), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_RBRACE] = ACTIONS(4585), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_where] = ACTIONS(4583), + [anon_sym_object] = ACTIONS(4583), + [anon_sym_fun] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4585), + [anon_sym_get] = ACTIONS(4583), + [anon_sym_set] = ACTIONS(4583), + [anon_sym_this] = ACTIONS(4583), + [anon_sym_super] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [sym_label] = ACTIONS(4583), + [anon_sym_in] = ACTIONS(4583), + [anon_sym_DOT_DOT] = ACTIONS(4585), + [anon_sym_QMARK_COLON] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_null] = ACTIONS(4583), + [anon_sym_if] = ACTIONS(4583), + [anon_sym_else] = ACTIONS(4583), + [anon_sym_when] = ACTIONS(4583), + [anon_sym_try] = ACTIONS(4583), + [anon_sym_throw] = ACTIONS(4583), + [anon_sym_return] = ACTIONS(4583), + [anon_sym_continue] = ACTIONS(4583), + [anon_sym_break] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_BANGin] = ACTIONS(4585), + [anon_sym_is] = ACTIONS(4583), + [anon_sym_BANGis] = ACTIONS(4585), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_as_QMARK] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_BANG_BANG] = ACTIONS(4585), + [anon_sym_data] = ACTIONS(4583), + [anon_sym_inner] = ACTIONS(4583), + [anon_sym_value] = ACTIONS(4583), + [anon_sym_expect] = ACTIONS(4583), + [anon_sym_actual] = ACTIONS(4583), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4585), + [anon_sym_continue_AT] = ACTIONS(4585), + [anon_sym_break_AT] = ACTIONS(4585), + [anon_sym_this_AT] = ACTIONS(4585), + [anon_sym_super_AT] = ACTIONS(4585), + [sym_real_literal] = ACTIONS(4585), + [sym_integer_literal] = ACTIONS(4583), + [sym_hex_literal] = ACTIONS(4585), + [sym_bin_literal] = ACTIONS(4585), + [anon_sym_true] = ACTIONS(4583), + [anon_sym_false] = ACTIONS(4583), + [anon_sym_SQUOTE] = ACTIONS(4585), + [sym__backtick_identifier] = ACTIONS(4585), + [sym__automatic_semicolon] = ACTIONS(4585), + [sym_safe_nav] = ACTIONS(4585), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4585), }, [2996] = { - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4662), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_DOT] = ACTIONS(4662), - [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_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_value] = ACTIONS(4662), - [anon_sym_expect] = ACTIONS(4662), - [anon_sym_actual] = ACTIONS(4662), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4664), - [anon_sym_continue_AT] = ACTIONS(4664), - [anon_sym_break_AT] = ACTIONS(4664), - [anon_sym_this_AT] = ACTIONS(4664), - [anon_sym_super_AT] = ACTIONS(4664), - [anon_sym_AT2] = ACTIONS(6569), - [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), + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4642), + [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_by] = ACTIONS(4642), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4644), + [anon_sym_super_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), }, [2997] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_by] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_AMP] = ACTIONS(4258), - [sym__quest] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), + [aux_sym_nullable_type_repeat1] = STATE(2997), + [sym__alpha_identifier] = ACTIONS(4280), + [anon_sym_AT] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_RBRACK] = ACTIONS(4282), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_as] = ACTIONS(4280), + [anon_sym_EQ] = ACTIONS(4280), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_RPAREN] = ACTIONS(4282), + [anon_sym_by] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_get] = ACTIONS(4280), + [anon_sym_set] = ACTIONS(4280), + [sym__quest] = ACTIONS(6525), + [anon_sym_STAR] = ACTIONS(4280), + [anon_sym_DASH_GT] = ACTIONS(4282), + [sym_label] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(4280), + [anon_sym_while] = ACTIONS(4280), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_QMARK_COLON] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_else] = ACTIONS(4280), + [anon_sym_COLON_COLON] = ACTIONS(4282), + [anon_sym_PLUS_EQ] = ACTIONS(4282), + [anon_sym_DASH_EQ] = ACTIONS(4282), + [anon_sym_STAR_EQ] = ACTIONS(4282), + [anon_sym_SLASH_EQ] = ACTIONS(4282), + [anon_sym_PERCENT_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4282), + [anon_sym_EQ_EQ] = ACTIONS(4280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_BANGin] = ACTIONS(4282), + [anon_sym_is] = ACTIONS(4280), + [anon_sym_BANGis] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_SLASH] = ACTIONS(4280), + [anon_sym_PERCENT] = ACTIONS(4280), + [anon_sym_as_QMARK] = ACTIONS(4282), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_BANG_BANG] = ACTIONS(4282), + [anon_sym_suspend] = ACTIONS(4280), + [anon_sym_sealed] = ACTIONS(4280), + [anon_sym_annotation] = ACTIONS(4280), + [anon_sym_data] = ACTIONS(4280), + [anon_sym_inner] = ACTIONS(4280), + [anon_sym_value] = ACTIONS(4280), + [anon_sym_override] = ACTIONS(4280), + [anon_sym_lateinit] = ACTIONS(4280), + [anon_sym_public] = ACTIONS(4280), + [anon_sym_private] = ACTIONS(4280), + [anon_sym_internal] = ACTIONS(4280), + [anon_sym_protected] = ACTIONS(4280), + [anon_sym_tailrec] = ACTIONS(4280), + [anon_sym_operator] = ACTIONS(4280), + [anon_sym_infix] = ACTIONS(4280), + [anon_sym_inline] = ACTIONS(4280), + [anon_sym_external] = ACTIONS(4280), + [sym_property_modifier] = ACTIONS(4280), + [anon_sym_abstract] = ACTIONS(4280), + [anon_sym_final] = ACTIONS(4280), + [anon_sym_open] = ACTIONS(4280), + [anon_sym_vararg] = ACTIONS(4280), + [anon_sym_noinline] = ACTIONS(4280), + [anon_sym_crossinline] = ACTIONS(4280), + [anon_sym_expect] = ACTIONS(4280), + [anon_sym_actual] = ACTIONS(4280), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4282), + [sym_safe_nav] = ACTIONS(4282), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), }, [2998] = { - [sym__alpha_identifier] = ACTIONS(4633), - [anon_sym_AT] = ACTIONS(4635), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_LBRACK] = ACTIONS(4635), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_as] = ACTIONS(4633), - [anon_sym_EQ] = ACTIONS(4633), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_RBRACE] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_COMMA] = ACTIONS(4635), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4633), - [anon_sym_where] = ACTIONS(4633), - [anon_sym_object] = ACTIONS(4633), - [anon_sym_fun] = ACTIONS(4633), - [anon_sym_SEMI] = ACTIONS(4635), - [anon_sym_get] = ACTIONS(4633), - [anon_sym_set] = ACTIONS(4633), - [anon_sym_this] = ACTIONS(4633), - [anon_sym_super] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [sym_label] = ACTIONS(4633), - [anon_sym_in] = ACTIONS(4633), - [anon_sym_DOT_DOT] = ACTIONS(4635), - [anon_sym_QMARK_COLON] = ACTIONS(4635), - [anon_sym_AMP_AMP] = ACTIONS(4635), - [anon_sym_PIPE_PIPE] = ACTIONS(4635), - [anon_sym_null] = ACTIONS(4633), - [anon_sym_if] = ACTIONS(4633), - [anon_sym_else] = ACTIONS(4633), - [anon_sym_when] = ACTIONS(4633), - [anon_sym_try] = ACTIONS(4633), - [anon_sym_throw] = ACTIONS(4633), - [anon_sym_return] = ACTIONS(4633), - [anon_sym_continue] = ACTIONS(4633), - [anon_sym_break] = ACTIONS(4633), - [anon_sym_COLON_COLON] = ACTIONS(4635), - [anon_sym_PLUS_EQ] = ACTIONS(4635), - [anon_sym_DASH_EQ] = ACTIONS(4635), - [anon_sym_STAR_EQ] = ACTIONS(4635), - [anon_sym_SLASH_EQ] = ACTIONS(4635), - [anon_sym_PERCENT_EQ] = ACTIONS(4635), - [anon_sym_BANG_EQ] = ACTIONS(4633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), - [anon_sym_EQ_EQ] = ACTIONS(4633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), - [anon_sym_LT_EQ] = ACTIONS(4635), - [anon_sym_GT_EQ] = ACTIONS(4635), - [anon_sym_BANGin] = ACTIONS(4635), - [anon_sym_is] = ACTIONS(4633), - [anon_sym_BANGis] = ACTIONS(4635), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_PERCENT] = ACTIONS(4633), - [anon_sym_as_QMARK] = ACTIONS(4635), - [anon_sym_PLUS_PLUS] = ACTIONS(4635), - [anon_sym_DASH_DASH] = ACTIONS(4635), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_BANG_BANG] = ACTIONS(4635), - [anon_sym_data] = ACTIONS(4633), - [anon_sym_inner] = ACTIONS(4633), - [anon_sym_value] = ACTIONS(4633), - [anon_sym_expect] = ACTIONS(4633), - [anon_sym_actual] = ACTIONS(4633), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4635), - [anon_sym_continue_AT] = ACTIONS(4635), - [anon_sym_break_AT] = ACTIONS(4635), - [anon_sym_this_AT] = ACTIONS(4635), - [anon_sym_super_AT] = ACTIONS(4635), - [sym_real_literal] = ACTIONS(4635), - [sym_integer_literal] = ACTIONS(4633), - [sym_hex_literal] = ACTIONS(4635), - [sym_bin_literal] = ACTIONS(4635), - [anon_sym_true] = ACTIONS(4633), - [anon_sym_false] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4635), - [sym__backtick_identifier] = ACTIONS(4635), - [sym__automatic_semicolon] = ACTIONS(4635), - [sym_safe_nav] = ACTIONS(4635), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4635), + [sym_type_constraints] = STATE(3189), + [sym_function_body] = STATE(3378), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_while] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), }, [2999] = { - [sym_enum_class_body] = STATE(3158), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(6528), + [sym__quest] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), }, [3000] = { - [sym_function_body] = STATE(3077), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(6571), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [aux_sym_nullable_type_repeat1] = STATE(3020), + [sym__alpha_identifier] = ACTIONS(4208), + [anon_sym_AT] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4210), + [anon_sym_RBRACK] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4208), + [anon_sym_as] = ACTIONS(4208), + [anon_sym_EQ] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_RBRACE] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(4210), + [anon_sym_COMMA] = ACTIONS(4210), + [anon_sym_RPAREN] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4208), + [anon_sym_LT] = ACTIONS(4208), + [anon_sym_GT] = ACTIONS(4208), + [anon_sym_where] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(4210), + [anon_sym_get] = ACTIONS(4208), + [anon_sym_set] = ACTIONS(4208), + [sym__quest] = ACTIONS(6530), + [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_value] = 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), }, [3001] = { - [sym_class_body] = STATE(3222), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [aux_sym_nullable_type_repeat1] = STATE(3020), + [sym__alpha_identifier] = ACTIONS(4270), + [anon_sym_AT] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_RBRACK] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [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_SEMI] = ACTIONS(4272), + [anon_sym_get] = ACTIONS(4270), + [anon_sym_set] = ACTIONS(4270), + [sym__quest] = ACTIONS(6530), + [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_value] = 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), }, [3002] = { - [sym_annotated_lambda] = STATE(3875), - [sym_lambda_literal] = STATE(3901), - [sym_annotation] = STATE(8345), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8345), - [sym__alpha_identifier] = ACTIONS(3986), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(3986), - [anon_sym_set] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3988), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3988), - [anon_sym_QMARK_COLON] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_PIPE_PIPE] = ACTIONS(3988), - [anon_sym_else] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_PLUS_EQ] = ACTIONS(3988), - [anon_sym_DASH_EQ] = ACTIONS(3988), - [anon_sym_STAR_EQ] = ACTIONS(3988), - [anon_sym_SLASH_EQ] = ACTIONS(3988), - [anon_sym_PERCENT_EQ] = ACTIONS(3988), - [anon_sym_BANG_EQ] = ACTIONS(3986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3988), - [anon_sym_EQ_EQ] = ACTIONS(3986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3988), - [anon_sym_LT_EQ] = ACTIONS(3988), - [anon_sym_GT_EQ] = ACTIONS(3988), - [anon_sym_BANGin] = ACTIONS(3988), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_BANGis] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3986), - [anon_sym_sealed] = ACTIONS(3986), - [anon_sym_annotation] = ACTIONS(3986), - [anon_sym_data] = ACTIONS(3986), - [anon_sym_inner] = ACTIONS(3986), - [anon_sym_value] = ACTIONS(3986), - [anon_sym_override] = ACTIONS(3986), - [anon_sym_lateinit] = ACTIONS(3986), - [anon_sym_public] = ACTIONS(3986), - [anon_sym_private] = ACTIONS(3986), - [anon_sym_internal] = ACTIONS(3986), - [anon_sym_protected] = ACTIONS(3986), - [anon_sym_tailrec] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_infix] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym_external] = ACTIONS(3986), - [sym_property_modifier] = ACTIONS(3986), - [anon_sym_abstract] = ACTIONS(3986), - [anon_sym_final] = ACTIONS(3986), - [anon_sym_open] = ACTIONS(3986), - [anon_sym_vararg] = ACTIONS(3986), - [anon_sym_noinline] = ACTIONS(3986), - [anon_sym_crossinline] = ACTIONS(3986), - [anon_sym_expect] = ACTIONS(3986), - [anon_sym_actual] = ACTIONS(3986), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3988), - [sym__automatic_semicolon] = ACTIONS(3988), - [sym_safe_nav] = ACTIONS(3988), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3246), + [sym__alpha_identifier] = ACTIONS(4591), + [anon_sym_AT] = ACTIONS(4593), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_where] = ACTIONS(4591), + [anon_sym_object] = ACTIONS(4591), + [anon_sym_fun] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4593), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4591), + [anon_sym_this] = ACTIONS(4591), + [anon_sym_super] = ACTIONS(4591), + [anon_sym_STAR] = ACTIONS(4591), + [sym_label] = ACTIONS(4591), + [anon_sym_in] = ACTIONS(4591), + [anon_sym_DOT_DOT] = ACTIONS(4593), + [anon_sym_QMARK_COLON] = ACTIONS(4593), + [anon_sym_AMP_AMP] = ACTIONS(4593), + [anon_sym_PIPE_PIPE] = ACTIONS(4593), + [anon_sym_null] = ACTIONS(4591), + [anon_sym_if] = ACTIONS(4591), + [anon_sym_else] = ACTIONS(4591), + [anon_sym_when] = ACTIONS(4591), + [anon_sym_try] = ACTIONS(4591), + [anon_sym_throw] = ACTIONS(4591), + [anon_sym_return] = ACTIONS(4591), + [anon_sym_continue] = ACTIONS(4591), + [anon_sym_break] = ACTIONS(4591), + [anon_sym_COLON_COLON] = ACTIONS(4593), + [anon_sym_PLUS_EQ] = ACTIONS(4593), + [anon_sym_DASH_EQ] = ACTIONS(4593), + [anon_sym_STAR_EQ] = ACTIONS(4593), + [anon_sym_SLASH_EQ] = ACTIONS(4593), + [anon_sym_PERCENT_EQ] = ACTIONS(4593), + [anon_sym_BANG_EQ] = ACTIONS(4591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), + [anon_sym_EQ_EQ] = ACTIONS(4591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4593), + [anon_sym_BANGin] = ACTIONS(4593), + [anon_sym_is] = ACTIONS(4591), + [anon_sym_BANGis] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_as_QMARK] = ACTIONS(4593), + [anon_sym_PLUS_PLUS] = ACTIONS(4593), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_BANG] = ACTIONS(4591), + [anon_sym_BANG_BANG] = ACTIONS(4593), + [anon_sym_data] = ACTIONS(4591), + [anon_sym_inner] = ACTIONS(4591), + [anon_sym_value] = ACTIONS(4591), + [anon_sym_expect] = ACTIONS(4591), + [anon_sym_actual] = ACTIONS(4591), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4593), + [anon_sym_continue_AT] = ACTIONS(4593), + [anon_sym_break_AT] = ACTIONS(4593), + [anon_sym_this_AT] = ACTIONS(4593), + [anon_sym_super_AT] = ACTIONS(4593), + [sym_real_literal] = ACTIONS(4593), + [sym_integer_literal] = ACTIONS(4591), + [sym_hex_literal] = ACTIONS(4593), + [sym_bin_literal] = ACTIONS(4593), + [anon_sym_true] = ACTIONS(4591), + [anon_sym_false] = ACTIONS(4591), + [anon_sym_SQUOTE] = ACTIONS(4593), + [sym__backtick_identifier] = ACTIONS(4593), + [sym__automatic_semicolon] = ACTIONS(4593), + [sym_safe_nav] = ACTIONS(4593), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4593), }, [3003] = { - [sym__alpha_identifier] = ACTIONS(4309), - [anon_sym_AT] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_EQ] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_RBRACE] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_COMMA] = ACTIONS(4311), - [anon_sym_by] = ACTIONS(4309), - [anon_sym_where] = ACTIONS(4309), - [anon_sym_object] = ACTIONS(4309), - [anon_sym_fun] = ACTIONS(4309), - [anon_sym_SEMI] = ACTIONS(4311), - [anon_sym_get] = ACTIONS(4309), - [anon_sym_set] = ACTIONS(4309), - [anon_sym_this] = ACTIONS(4309), - [anon_sym_super] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4311), - [sym__quest] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [sym_label] = ACTIONS(4309), - [anon_sym_in] = ACTIONS(4309), - [anon_sym_null] = ACTIONS(4309), - [anon_sym_if] = ACTIONS(4309), - [anon_sym_else] = ACTIONS(4309), - [anon_sym_when] = ACTIONS(4309), - [anon_sym_try] = ACTIONS(4309), - [anon_sym_throw] = ACTIONS(4309), - [anon_sym_return] = ACTIONS(4309), - [anon_sym_continue] = ACTIONS(4309), - [anon_sym_break] = ACTIONS(4309), - [anon_sym_COLON_COLON] = ACTIONS(4311), - [anon_sym_BANGin] = ACTIONS(4311), - [anon_sym_is] = ACTIONS(4309), - [anon_sym_BANGis] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4309), - [anon_sym_DASH] = ACTIONS(4309), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_suspend] = ACTIONS(4309), - [anon_sym_sealed] = ACTIONS(4309), - [anon_sym_annotation] = ACTIONS(4309), - [anon_sym_data] = ACTIONS(4309), - [anon_sym_inner] = ACTIONS(4309), - [anon_sym_value] = ACTIONS(4309), - [anon_sym_override] = ACTIONS(4309), - [anon_sym_lateinit] = ACTIONS(4309), - [anon_sym_public] = ACTIONS(4309), - [anon_sym_private] = ACTIONS(4309), - [anon_sym_internal] = ACTIONS(4309), - [anon_sym_protected] = ACTIONS(4309), - [anon_sym_tailrec] = ACTIONS(4309), - [anon_sym_operator] = ACTIONS(4309), - [anon_sym_infix] = ACTIONS(4309), - [anon_sym_inline] = ACTIONS(4309), - [anon_sym_external] = ACTIONS(4309), - [sym_property_modifier] = ACTIONS(4309), - [anon_sym_abstract] = ACTIONS(4309), - [anon_sym_final] = ACTIONS(4309), - [anon_sym_open] = ACTIONS(4309), - [anon_sym_vararg] = ACTIONS(4309), - [anon_sym_noinline] = ACTIONS(4309), - [anon_sym_crossinline] = ACTIONS(4309), - [anon_sym_expect] = ACTIONS(4309), - [anon_sym_actual] = ACTIONS(4309), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4311), - [anon_sym_continue_AT] = ACTIONS(4311), - [anon_sym_break_AT] = ACTIONS(4311), - [anon_sym_this_AT] = ACTIONS(4311), - [anon_sym_super_AT] = ACTIONS(4311), - [sym_real_literal] = ACTIONS(4311), - [sym_integer_literal] = ACTIONS(4309), - [sym_hex_literal] = ACTIONS(4311), - [sym_bin_literal] = ACTIONS(4311), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [anon_sym_SQUOTE] = ACTIONS(4311), - [sym__backtick_identifier] = ACTIONS(4311), - [sym__automatic_semicolon] = ACTIONS(4311), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4311), + [sym_class_body] = STATE(3226), + [sym__alpha_identifier] = ACTIONS(4517), + [anon_sym_AT] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_as] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(3158), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4519), + [anon_sym_super_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), }, [3004] = { - [sym_class_body] = STATE(3539), - [sym_type_constraints] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(6573), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_RBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_while] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4595), + [anon_sym_AT] = ACTIONS(4597), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_as] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(4595), + [anon_sym_object] = ACTIONS(4595), + [anon_sym_fun] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4597), + [anon_sym_get] = ACTIONS(4595), + [anon_sym_set] = ACTIONS(4595), + [anon_sym_this] = ACTIONS(4595), + [anon_sym_super] = ACTIONS(4595), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(4595), + [anon_sym_in] = ACTIONS(4595), + [anon_sym_DOT_DOT] = ACTIONS(4597), + [anon_sym_QMARK_COLON] = ACTIONS(4597), + [anon_sym_AMP_AMP] = ACTIONS(4597), + [anon_sym_PIPE_PIPE] = ACTIONS(4597), + [anon_sym_null] = ACTIONS(4595), + [anon_sym_if] = ACTIONS(4595), + [anon_sym_else] = ACTIONS(4595), + [anon_sym_when] = ACTIONS(4595), + [anon_sym_try] = ACTIONS(4595), + [anon_sym_throw] = ACTIONS(4595), + [anon_sym_return] = ACTIONS(4595), + [anon_sym_continue] = ACTIONS(4595), + [anon_sym_break] = ACTIONS(4595), + [anon_sym_COLON_COLON] = ACTIONS(4597), + [anon_sym_PLUS_EQ] = ACTIONS(4597), + [anon_sym_DASH_EQ] = ACTIONS(4597), + [anon_sym_STAR_EQ] = ACTIONS(4597), + [anon_sym_SLASH_EQ] = ACTIONS(4597), + [anon_sym_PERCENT_EQ] = ACTIONS(4597), + [anon_sym_BANG_EQ] = ACTIONS(4595), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), + [anon_sym_EQ_EQ] = ACTIONS(4595), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4597), + [anon_sym_BANGin] = ACTIONS(4597), + [anon_sym_is] = ACTIONS(4595), + [anon_sym_BANGis] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_as_QMARK] = ACTIONS(4597), + [anon_sym_PLUS_PLUS] = ACTIONS(4597), + [anon_sym_DASH_DASH] = ACTIONS(4597), + [anon_sym_BANG] = ACTIONS(4595), + [anon_sym_BANG_BANG] = ACTIONS(4597), + [anon_sym_data] = ACTIONS(4595), + [anon_sym_inner] = ACTIONS(4595), + [anon_sym_value] = ACTIONS(4595), + [anon_sym_expect] = ACTIONS(4595), + [anon_sym_actual] = ACTIONS(4595), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4597), + [anon_sym_continue_AT] = ACTIONS(4597), + [anon_sym_break_AT] = ACTIONS(4597), + [anon_sym_this_AT] = ACTIONS(4597), + [anon_sym_super_AT] = ACTIONS(4597), + [sym_real_literal] = ACTIONS(4597), + [sym_integer_literal] = ACTIONS(4595), + [sym_hex_literal] = ACTIONS(4597), + [sym_bin_literal] = ACTIONS(4597), + [anon_sym_true] = ACTIONS(4595), + [anon_sym_false] = ACTIONS(4595), + [anon_sym_SQUOTE] = ACTIONS(4597), + [sym__backtick_identifier] = ACTIONS(4597), + [sym__automatic_semicolon] = ACTIONS(4597), + [sym_safe_nav] = ACTIONS(4597), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4597), }, [3005] = { - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_object] = ACTIONS(4187), - [anon_sym_fun] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_this] = ACTIONS(4187), - [anon_sym_super] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4189), - [sym__quest] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4187), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4187), - [anon_sym_if] = ACTIONS(4187), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_try] = ACTIONS(4187), - [anon_sym_throw] = ACTIONS(4187), - [anon_sym_return] = ACTIONS(4187), - [anon_sym_continue] = ACTIONS(4187), - [anon_sym_break] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4187), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4189), - [anon_sym_continue_AT] = ACTIONS(4189), - [anon_sym_break_AT] = ACTIONS(4189), - [anon_sym_this_AT] = ACTIONS(4189), - [anon_sym_super_AT] = ACTIONS(4189), - [sym_real_literal] = ACTIONS(4189), - [sym_integer_literal] = ACTIONS(4187), - [sym_hex_literal] = ACTIONS(4189), - [sym_bin_literal] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [anon_sym_SQUOTE] = ACTIONS(4189), - [sym__backtick_identifier] = ACTIONS(4189), - [sym__automatic_semicolon] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4189), + [sym_class_body] = STATE(3238), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), }, [3006] = { - [sym__alpha_identifier] = ACTIONS(4535), - [anon_sym_AT] = ACTIONS(4537), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4535), - [anon_sym_as] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(4535), - [anon_sym_LBRACE] = ACTIONS(4537), - [anon_sym_RBRACE] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(4537), - [anon_sym_COMMA] = ACTIONS(4537), - [anon_sym_LT] = ACTIONS(4535), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_where] = ACTIONS(4535), - [anon_sym_object] = ACTIONS(4535), - [anon_sym_fun] = ACTIONS(4535), - [anon_sym_SEMI] = ACTIONS(4537), - [anon_sym_get] = ACTIONS(4535), - [anon_sym_set] = ACTIONS(4535), - [anon_sym_this] = ACTIONS(4535), - [anon_sym_super] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [sym_label] = ACTIONS(4535), - [anon_sym_in] = ACTIONS(4535), - [anon_sym_DOT_DOT] = ACTIONS(4537), - [anon_sym_QMARK_COLON] = ACTIONS(4537), - [anon_sym_AMP_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4537), - [anon_sym_null] = ACTIONS(4535), - [anon_sym_if] = ACTIONS(4535), - [anon_sym_else] = ACTIONS(4535), - [anon_sym_when] = ACTIONS(4535), - [anon_sym_try] = ACTIONS(4535), - [anon_sym_throw] = ACTIONS(4535), - [anon_sym_return] = ACTIONS(4535), - [anon_sym_continue] = ACTIONS(4535), - [anon_sym_break] = ACTIONS(4535), - [anon_sym_COLON_COLON] = ACTIONS(4537), - [anon_sym_PLUS_EQ] = ACTIONS(4537), - [anon_sym_DASH_EQ] = ACTIONS(4537), - [anon_sym_STAR_EQ] = ACTIONS(4537), - [anon_sym_SLASH_EQ] = ACTIONS(4537), - [anon_sym_PERCENT_EQ] = ACTIONS(4537), - [anon_sym_BANG_EQ] = ACTIONS(4535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4537), - [anon_sym_EQ_EQ] = ACTIONS(4535), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4537), - [anon_sym_LT_EQ] = ACTIONS(4537), - [anon_sym_GT_EQ] = ACTIONS(4537), - [anon_sym_BANGin] = ACTIONS(4537), - [anon_sym_is] = ACTIONS(4535), - [anon_sym_BANGis] = ACTIONS(4537), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_PERCENT] = ACTIONS(4535), - [anon_sym_as_QMARK] = ACTIONS(4537), - [anon_sym_PLUS_PLUS] = ACTIONS(4537), - [anon_sym_DASH_DASH] = ACTIONS(4537), - [anon_sym_BANG] = ACTIONS(4535), - [anon_sym_BANG_BANG] = ACTIONS(4537), - [anon_sym_data] = ACTIONS(4535), - [anon_sym_inner] = ACTIONS(4535), - [anon_sym_value] = ACTIONS(4535), - [anon_sym_expect] = ACTIONS(4535), - [anon_sym_actual] = ACTIONS(4535), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4537), - [anon_sym_continue_AT] = ACTIONS(4537), - [anon_sym_break_AT] = ACTIONS(4537), - [anon_sym_this_AT] = ACTIONS(4537), - [anon_sym_super_AT] = ACTIONS(4537), - [sym_real_literal] = ACTIONS(4537), - [sym_integer_literal] = ACTIONS(4535), - [sym_hex_literal] = ACTIONS(4537), - [sym_bin_literal] = ACTIONS(4537), - [anon_sym_true] = ACTIONS(4535), - [anon_sym_false] = ACTIONS(4535), - [anon_sym_SQUOTE] = ACTIONS(4537), - [sym__backtick_identifier] = ACTIONS(4537), - [sym__automatic_semicolon] = ACTIONS(4537), - [sym_safe_nav] = ACTIONS(4537), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4537), + [sym_enum_class_body] = STATE(3221), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [3007] = { - [sym__alpha_identifier] = ACTIONS(4305), - [anon_sym_AT] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_EQ] = ACTIONS(4307), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_by] = ACTIONS(4305), - [anon_sym_where] = ACTIONS(4305), - [anon_sym_object] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_get] = ACTIONS(4305), - [anon_sym_set] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_super] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(4307), - [sym__quest] = ACTIONS(4307), - [anon_sym_STAR] = ACTIONS(4307), - [sym_label] = ACTIONS(4305), - [anon_sym_in] = ACTIONS(4305), - [anon_sym_null] = ACTIONS(4305), - [anon_sym_if] = ACTIONS(4305), - [anon_sym_else] = ACTIONS(4305), - [anon_sym_when] = ACTIONS(4305), - [anon_sym_try] = ACTIONS(4305), - [anon_sym_throw] = ACTIONS(4305), - [anon_sym_return] = ACTIONS(4305), - [anon_sym_continue] = ACTIONS(4305), - [anon_sym_break] = ACTIONS(4305), - [anon_sym_COLON_COLON] = ACTIONS(4307), - [anon_sym_BANGin] = ACTIONS(4307), - [anon_sym_is] = ACTIONS(4305), - [anon_sym_BANGis] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_PLUS_PLUS] = ACTIONS(4307), - [anon_sym_DASH_DASH] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_suspend] = ACTIONS(4305), - [anon_sym_sealed] = ACTIONS(4305), - [anon_sym_annotation] = ACTIONS(4305), - [anon_sym_data] = ACTIONS(4305), - [anon_sym_inner] = ACTIONS(4305), - [anon_sym_value] = ACTIONS(4305), - [anon_sym_override] = ACTIONS(4305), - [anon_sym_lateinit] = ACTIONS(4305), - [anon_sym_public] = ACTIONS(4305), - [anon_sym_private] = ACTIONS(4305), - [anon_sym_internal] = ACTIONS(4305), - [anon_sym_protected] = ACTIONS(4305), - [anon_sym_tailrec] = ACTIONS(4305), - [anon_sym_operator] = ACTIONS(4305), - [anon_sym_infix] = ACTIONS(4305), - [anon_sym_inline] = ACTIONS(4305), - [anon_sym_external] = ACTIONS(4305), - [sym_property_modifier] = ACTIONS(4305), - [anon_sym_abstract] = ACTIONS(4305), - [anon_sym_final] = ACTIONS(4305), - [anon_sym_open] = ACTIONS(4305), - [anon_sym_vararg] = ACTIONS(4305), - [anon_sym_noinline] = ACTIONS(4305), - [anon_sym_crossinline] = ACTIONS(4305), - [anon_sym_expect] = ACTIONS(4305), - [anon_sym_actual] = ACTIONS(4305), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4307), - [anon_sym_continue_AT] = ACTIONS(4307), - [anon_sym_break_AT] = ACTIONS(4307), - [anon_sym_this_AT] = ACTIONS(4307), - [anon_sym_super_AT] = ACTIONS(4307), - [sym_real_literal] = ACTIONS(4307), - [sym_integer_literal] = ACTIONS(4305), - [sym_hex_literal] = ACTIONS(4307), - [sym_bin_literal] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4305), - [anon_sym_false] = ACTIONS(4305), - [anon_sym_SQUOTE] = ACTIONS(4307), - [sym__backtick_identifier] = ACTIONS(4307), - [sym__automatic_semicolon] = ACTIONS(4307), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4307), + [sym_enum_class_body] = STATE(3234), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), }, [3008] = { - [sym_enum_class_body] = STATE(3222), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [aux_sym_type_constraints_repeat1] = STATE(2987), + [sym__alpha_identifier] = ACTIONS(4388), + [anon_sym_AT] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_as] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(6532), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_where] = ACTIONS(4388), + [anon_sym_object] = ACTIONS(4388), + [anon_sym_fun] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_get] = ACTIONS(4388), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_this] = ACTIONS(4388), + [anon_sym_super] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4388), + [sym_label] = ACTIONS(4388), + [anon_sym_in] = ACTIONS(4388), + [anon_sym_DOT_DOT] = ACTIONS(4390), + [anon_sym_QMARK_COLON] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_null] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4388), + [anon_sym_when] = ACTIONS(4388), + [anon_sym_try] = ACTIONS(4388), + [anon_sym_throw] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4388), + [anon_sym_continue] = ACTIONS(4388), + [anon_sym_break] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_PLUS_EQ] = ACTIONS(4390), + [anon_sym_DASH_EQ] = ACTIONS(4390), + [anon_sym_STAR_EQ] = ACTIONS(4390), + [anon_sym_SLASH_EQ] = ACTIONS(4390), + [anon_sym_PERCENT_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4390), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_BANGin] = ACTIONS(4390), + [anon_sym_is] = ACTIONS(4388), + [anon_sym_BANGis] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4388), + [anon_sym_SLASH] = ACTIONS(4388), + [anon_sym_PERCENT] = ACTIONS(4388), + [anon_sym_as_QMARK] = ACTIONS(4390), + [anon_sym_PLUS_PLUS] = ACTIONS(4390), + [anon_sym_DASH_DASH] = ACTIONS(4390), + [anon_sym_BANG] = ACTIONS(4388), + [anon_sym_BANG_BANG] = ACTIONS(4390), + [anon_sym_data] = ACTIONS(4388), + [anon_sym_inner] = ACTIONS(4388), + [anon_sym_value] = ACTIONS(4388), + [anon_sym_expect] = ACTIONS(4388), + [anon_sym_actual] = ACTIONS(4388), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4390), + [anon_sym_continue_AT] = ACTIONS(4390), + [anon_sym_break_AT] = ACTIONS(4390), + [anon_sym_this_AT] = ACTIONS(4390), + [anon_sym_super_AT] = ACTIONS(4390), + [sym_real_literal] = ACTIONS(4390), + [sym_integer_literal] = ACTIONS(4388), + [sym_hex_literal] = ACTIONS(4390), + [sym_bin_literal] = ACTIONS(4390), + [anon_sym_true] = ACTIONS(4388), + [anon_sym_false] = ACTIONS(4388), + [anon_sym_SQUOTE] = ACTIONS(4390), + [sym__backtick_identifier] = ACTIONS(4390), + [sym__automatic_semicolon] = ACTIONS(4390), + [sym_safe_nav] = ACTIONS(4390), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4390), }, [3009] = { - [sym_class_body] = STATE(3238), - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_object] = ACTIONS(4468), - [anon_sym_fun] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_this] = ACTIONS(4468), - [anon_sym_super] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4468), - [anon_sym_if] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [anon_sym_try] = ACTIONS(4468), - [anon_sym_throw] = ACTIONS(4468), - [anon_sym_return] = ACTIONS(4468), - [anon_sym_continue] = ACTIONS(4468), - [anon_sym_break] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4470), - [anon_sym_continue_AT] = ACTIONS(4470), - [anon_sym_break_AT] = ACTIONS(4470), - [anon_sym_this_AT] = ACTIONS(4470), - [anon_sym_super_AT] = ACTIONS(4470), - [sym_real_literal] = ACTIONS(4470), - [sym_integer_literal] = ACTIONS(4468), - [sym_hex_literal] = ACTIONS(4470), - [sym_bin_literal] = ACTIONS(4470), - [anon_sym_true] = ACTIONS(4468), - [anon_sym_false] = ACTIONS(4468), - [anon_sym_SQUOTE] = ACTIONS(4470), - [sym__backtick_identifier] = ACTIONS(4470), - [sym__automatic_semicolon] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4470), + [sym_class_body] = STATE(3059), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), }, [3010] = { - [sym_type_constraints] = STATE(3355), - [sym_enum_class_body] = STATE(3402), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(6575), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_RBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [anon_sym_DASH_GT] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), + [sym__alpha_identifier] = ACTIONS(4499), + [anon_sym_AT] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4501), + [anon_sym_RBRACE] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4501), + [anon_sym_COMMA] = ACTIONS(4501), + [anon_sym_LT] = ACTIONS(4499), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_where] = ACTIONS(4499), + [anon_sym_object] = ACTIONS(4499), + [anon_sym_fun] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_get] = ACTIONS(4499), + [anon_sym_set] = ACTIONS(4499), + [anon_sym_this] = ACTIONS(4499), + [anon_sym_super] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4499), + [sym_label] = ACTIONS(4499), + [anon_sym_in] = ACTIONS(4499), + [anon_sym_DOT_DOT] = ACTIONS(4501), + [anon_sym_QMARK_COLON] = ACTIONS(4501), + [anon_sym_AMP_AMP] = ACTIONS(4501), + [anon_sym_PIPE_PIPE] = ACTIONS(4501), + [anon_sym_null] = ACTIONS(4499), + [anon_sym_if] = ACTIONS(4499), + [anon_sym_else] = ACTIONS(4499), + [anon_sym_when] = ACTIONS(4499), + [anon_sym_try] = ACTIONS(4499), + [anon_sym_throw] = ACTIONS(4499), + [anon_sym_return] = ACTIONS(4499), + [anon_sym_continue] = ACTIONS(4499), + [anon_sym_break] = ACTIONS(4499), + [anon_sym_COLON_COLON] = ACTIONS(4501), + [anon_sym_PLUS_EQ] = ACTIONS(4501), + [anon_sym_DASH_EQ] = ACTIONS(4501), + [anon_sym_STAR_EQ] = ACTIONS(4501), + [anon_sym_SLASH_EQ] = ACTIONS(4501), + [anon_sym_PERCENT_EQ] = ACTIONS(4501), + [anon_sym_BANG_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4501), + [anon_sym_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4501), + [anon_sym_LT_EQ] = ACTIONS(4501), + [anon_sym_GT_EQ] = ACTIONS(4501), + [anon_sym_BANGin] = ACTIONS(4501), + [anon_sym_is] = ACTIONS(4499), + [anon_sym_BANGis] = ACTIONS(4501), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4499), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG] = ACTIONS(4499), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_data] = ACTIONS(4499), + [anon_sym_inner] = ACTIONS(4499), + [anon_sym_value] = ACTIONS(4499), + [anon_sym_expect] = ACTIONS(4499), + [anon_sym_actual] = ACTIONS(4499), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4501), + [anon_sym_continue_AT] = ACTIONS(4501), + [anon_sym_break_AT] = ACTIONS(4501), + [anon_sym_this_AT] = ACTIONS(4501), + [anon_sym_super_AT] = ACTIONS(4501), + [sym_real_literal] = ACTIONS(4501), + [sym_integer_literal] = ACTIONS(4499), + [sym_hex_literal] = ACTIONS(4501), + [sym_bin_literal] = ACTIONS(4501), + [anon_sym_true] = ACTIONS(4499), + [anon_sym_false] = ACTIONS(4499), + [anon_sym_SQUOTE] = ACTIONS(4501), + [sym__backtick_identifier] = ACTIONS(4501), + [sym__automatic_semicolon] = ACTIONS(4501), + [sym_safe_nav] = ACTIONS(4501), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4501), }, [3011] = { - [sym__alpha_identifier] = ACTIONS(4648), - [anon_sym_AT] = ACTIONS(4650), - [anon_sym_COLON] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(4650), - [anon_sym_DOT] = ACTIONS(4648), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4650), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4503), + [anon_sym_AT] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4503), + [anon_sym_as] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_COMMA] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(4503), + [anon_sym_object] = ACTIONS(4503), + [anon_sym_fun] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_get] = ACTIONS(4503), + [anon_sym_set] = ACTIONS(4503), + [anon_sym_this] = ACTIONS(4503), + [anon_sym_super] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4503), + [sym_label] = ACTIONS(4503), + [anon_sym_in] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_QMARK_COLON] = ACTIONS(4505), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4505), + [anon_sym_null] = ACTIONS(4503), + [anon_sym_if] = ACTIONS(4503), + [anon_sym_else] = ACTIONS(4503), + [anon_sym_when] = ACTIONS(4503), + [anon_sym_try] = ACTIONS(4503), + [anon_sym_throw] = ACTIONS(4503), + [anon_sym_return] = ACTIONS(4503), + [anon_sym_continue] = ACTIONS(4503), + [anon_sym_break] = ACTIONS(4503), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_PLUS_EQ] = ACTIONS(4505), + [anon_sym_DASH_EQ] = ACTIONS(4505), + [anon_sym_STAR_EQ] = ACTIONS(4505), + [anon_sym_SLASH_EQ] = ACTIONS(4505), + [anon_sym_PERCENT_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ] = ACTIONS(4503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4505), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4505), + [anon_sym_BANGin] = ACTIONS(4505), + [anon_sym_is] = ACTIONS(4503), + [anon_sym_BANGis] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4503), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_as_QMARK] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4503), + [anon_sym_BANG_BANG] = ACTIONS(4505), + [anon_sym_data] = ACTIONS(4503), + [anon_sym_inner] = ACTIONS(4503), + [anon_sym_value] = ACTIONS(4503), + [anon_sym_expect] = ACTIONS(4503), + [anon_sym_actual] = ACTIONS(4503), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4505), + [anon_sym_continue_AT] = ACTIONS(4505), + [anon_sym_break_AT] = ACTIONS(4505), + [anon_sym_this_AT] = ACTIONS(4505), + [anon_sym_super_AT] = ACTIONS(4505), + [sym_real_literal] = ACTIONS(4505), + [sym_integer_literal] = ACTIONS(4503), + [sym_hex_literal] = ACTIONS(4505), + [sym_bin_literal] = ACTIONS(4505), + [anon_sym_true] = ACTIONS(4503), + [anon_sym_false] = ACTIONS(4503), + [anon_sym_SQUOTE] = ACTIONS(4505), + [sym__backtick_identifier] = ACTIONS(4505), + [sym__automatic_semicolon] = ACTIONS(4505), + [sym_safe_nav] = ACTIONS(4505), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4505), }, [3012] = { - [sym_class_body] = STATE(3244), - [sym__alpha_identifier] = ACTIONS(4644), - [anon_sym_AT] = ACTIONS(4646), - [anon_sym_LBRACK] = ACTIONS(4646), - [anon_sym_DOT] = ACTIONS(4644), - [anon_sym_as] = ACTIONS(4644), - [anon_sym_EQ] = ACTIONS(4644), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4646), - [anon_sym_LPAREN] = ACTIONS(4646), - [anon_sym_COMMA] = ACTIONS(4646), - [anon_sym_LT] = ACTIONS(4644), - [anon_sym_GT] = ACTIONS(4644), - [anon_sym_where] = ACTIONS(4644), - [anon_sym_object] = ACTIONS(4644), - [anon_sym_fun] = ACTIONS(4644), - [anon_sym_SEMI] = ACTIONS(4646), - [anon_sym_get] = ACTIONS(4644), - [anon_sym_set] = ACTIONS(4644), - [anon_sym_this] = ACTIONS(4644), - [anon_sym_super] = ACTIONS(4644), - [anon_sym_STAR] = ACTIONS(4644), - [sym_label] = ACTIONS(4644), - [anon_sym_in] = ACTIONS(4644), - [anon_sym_DOT_DOT] = ACTIONS(4646), - [anon_sym_QMARK_COLON] = ACTIONS(4646), - [anon_sym_AMP_AMP] = ACTIONS(4646), - [anon_sym_PIPE_PIPE] = ACTIONS(4646), - [anon_sym_null] = ACTIONS(4644), - [anon_sym_if] = ACTIONS(4644), - [anon_sym_else] = ACTIONS(4644), - [anon_sym_when] = ACTIONS(4644), - [anon_sym_try] = ACTIONS(4644), - [anon_sym_throw] = ACTIONS(4644), - [anon_sym_return] = ACTIONS(4644), - [anon_sym_continue] = ACTIONS(4644), - [anon_sym_break] = ACTIONS(4644), - [anon_sym_COLON_COLON] = ACTIONS(4646), - [anon_sym_PLUS_EQ] = ACTIONS(4646), - [anon_sym_DASH_EQ] = ACTIONS(4646), - [anon_sym_STAR_EQ] = ACTIONS(4646), - [anon_sym_SLASH_EQ] = ACTIONS(4646), - [anon_sym_PERCENT_EQ] = ACTIONS(4646), - [anon_sym_BANG_EQ] = ACTIONS(4644), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), - [anon_sym_EQ_EQ] = ACTIONS(4644), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), - [anon_sym_LT_EQ] = ACTIONS(4646), - [anon_sym_GT_EQ] = ACTIONS(4646), - [anon_sym_BANGin] = ACTIONS(4646), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_BANGis] = ACTIONS(4646), - [anon_sym_PLUS] = ACTIONS(4644), - [anon_sym_DASH] = ACTIONS(4644), - [anon_sym_SLASH] = ACTIONS(4644), - [anon_sym_PERCENT] = ACTIONS(4644), - [anon_sym_as_QMARK] = ACTIONS(4646), - [anon_sym_PLUS_PLUS] = ACTIONS(4646), - [anon_sym_DASH_DASH] = ACTIONS(4646), - [anon_sym_BANG] = ACTIONS(4644), - [anon_sym_BANG_BANG] = ACTIONS(4646), - [anon_sym_data] = ACTIONS(4644), - [anon_sym_inner] = ACTIONS(4644), - [anon_sym_value] = ACTIONS(4644), - [anon_sym_expect] = ACTIONS(4644), - [anon_sym_actual] = ACTIONS(4644), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4646), - [anon_sym_continue_AT] = ACTIONS(4646), - [anon_sym_break_AT] = ACTIONS(4646), - [anon_sym_this_AT] = ACTIONS(4646), - [anon_sym_super_AT] = ACTIONS(4646), - [sym_real_literal] = ACTIONS(4646), - [sym_integer_literal] = ACTIONS(4644), - [sym_hex_literal] = ACTIONS(4646), - [sym_bin_literal] = ACTIONS(4646), - [anon_sym_true] = ACTIONS(4644), - [anon_sym_false] = ACTIONS(4644), - [anon_sym_SQUOTE] = ACTIONS(4646), - [sym__backtick_identifier] = ACTIONS(4646), - [sym__automatic_semicolon] = ACTIONS(4646), - [sym_safe_nav] = ACTIONS(4646), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4646), + [sym_class_body] = STATE(3234), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), }, [3013] = { - [sym_enum_class_body] = STATE(3248), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3294), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_object] = ACTIONS(4676), + [anon_sym_fun] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_this] = ACTIONS(4676), + [anon_sym_super] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_QMARK_COLON] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_null] = ACTIONS(4676), + [anon_sym_if] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_when] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4676), + [anon_sym_throw] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4676), + [anon_sym_continue] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4678), + [anon_sym_DASH_EQ] = ACTIONS(4678), + [anon_sym_STAR_EQ] = ACTIONS(4678), + [anon_sym_SLASH_EQ] = ACTIONS(4678), + [anon_sym_PERCENT_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_as_QMARK] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4676), + [anon_sym_BANG_BANG] = ACTIONS(4678), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4678), + [anon_sym_continue_AT] = ACTIONS(4678), + [anon_sym_break_AT] = ACTIONS(4678), + [anon_sym_this_AT] = ACTIONS(4678), + [anon_sym_super_AT] = ACTIONS(4678), + [sym_real_literal] = ACTIONS(4678), + [sym_integer_literal] = ACTIONS(4676), + [sym_hex_literal] = ACTIONS(4678), + [sym_bin_literal] = ACTIONS(4678), + [anon_sym_true] = ACTIONS(4676), + [anon_sym_false] = ACTIONS(4676), + [anon_sym_SQUOTE] = ACTIONS(4678), + [sym__backtick_identifier] = ACTIONS(4678), + [sym__automatic_semicolon] = ACTIONS(4678), + [sym_safe_nav] = ACTIONS(4678), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4678), }, [3014] = { - [sym_class_body] = STATE(3254), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3960), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [sym_label] = ACTIONS(3952), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3965), + [anon_sym_DASH_EQ] = ACTIONS(3965), + [anon_sym_STAR_EQ] = ACTIONS(3965), + [anon_sym_SLASH_EQ] = ACTIONS(3965), + [anon_sym_PERCENT_EQ] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_suspend] = ACTIONS(3950), + [anon_sym_sealed] = ACTIONS(3950), + [anon_sym_annotation] = ACTIONS(3950), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [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(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3952), + [sym__automatic_semicolon] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), + [sym_multiline_comment] = ACTIONS(3), }, [3015] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_RBRACK] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_RPAREN] = ACTIONS(4258), - [anon_sym_by] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_AMP] = ACTIONS(4256), - [sym__quest] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_DASH_GT] = ACTIONS(4258), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3067), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(6534), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_object] = ACTIONS(4250), + [anon_sym_fun] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_this] = ACTIONS(4250), + [anon_sym_super] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_null] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_when] = ACTIONS(4250), + [anon_sym_try] = ACTIONS(4250), + [anon_sym_throw] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_PLUS_EQ] = ACTIONS(4252), + [anon_sym_DASH_EQ] = ACTIONS(4252), + [anon_sym_STAR_EQ] = ACTIONS(4252), + [anon_sym_SLASH_EQ] = ACTIONS(4252), + [anon_sym_PERCENT_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4252), + [anon_sym_continue_AT] = ACTIONS(4252), + [anon_sym_break_AT] = ACTIONS(4252), + [anon_sym_this_AT] = ACTIONS(4252), + [anon_sym_super_AT] = ACTIONS(4252), + [sym_real_literal] = ACTIONS(4252), + [sym_integer_literal] = ACTIONS(4250), + [sym_hex_literal] = ACTIONS(4252), + [sym_bin_literal] = ACTIONS(4252), + [anon_sym_true] = ACTIONS(4250), + [anon_sym_false] = ACTIONS(4250), + [anon_sym_SQUOTE] = ACTIONS(4252), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4252), }, [3016] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3016), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(6577), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), + [sym_enum_class_body] = STATE(3188), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, [3017] = { - [sym__alpha_identifier] = ACTIONS(4309), - [anon_sym_AT] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_RBRACK] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_as] = ACTIONS(4309), - [anon_sym_EQ] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_RBRACE] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_COMMA] = ACTIONS(4311), - [anon_sym_RPAREN] = ACTIONS(4311), - [anon_sym_by] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_where] = ACTIONS(4309), - [anon_sym_SEMI] = ACTIONS(4311), - [anon_sym_get] = ACTIONS(4309), - [anon_sym_set] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4309), - [sym__quest] = ACTIONS(4309), - [anon_sym_STAR] = ACTIONS(4309), - [anon_sym_DASH_GT] = ACTIONS(4311), - [sym_label] = ACTIONS(4311), - [anon_sym_in] = ACTIONS(4309), - [anon_sym_while] = ACTIONS(4309), - [anon_sym_DOT_DOT] = ACTIONS(4311), - [anon_sym_QMARK_COLON] = ACTIONS(4311), - [anon_sym_AMP_AMP] = ACTIONS(4311), - [anon_sym_PIPE_PIPE] = ACTIONS(4311), - [anon_sym_else] = ACTIONS(4309), - [anon_sym_COLON_COLON] = ACTIONS(4311), - [anon_sym_PLUS_EQ] = ACTIONS(4311), - [anon_sym_DASH_EQ] = ACTIONS(4311), - [anon_sym_STAR_EQ] = ACTIONS(4311), - [anon_sym_SLASH_EQ] = ACTIONS(4311), - [anon_sym_PERCENT_EQ] = ACTIONS(4311), - [anon_sym_BANG_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), - [anon_sym_LT_EQ] = ACTIONS(4311), - [anon_sym_GT_EQ] = ACTIONS(4311), - [anon_sym_BANGin] = ACTIONS(4311), - [anon_sym_is] = ACTIONS(4309), - [anon_sym_BANGis] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4309), - [anon_sym_DASH] = ACTIONS(4309), - [anon_sym_SLASH] = ACTIONS(4309), - [anon_sym_PERCENT] = ACTIONS(4309), - [anon_sym_as_QMARK] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_BANG_BANG] = ACTIONS(4311), - [anon_sym_suspend] = ACTIONS(4309), - [anon_sym_sealed] = ACTIONS(4309), - [anon_sym_annotation] = ACTIONS(4309), - [anon_sym_data] = ACTIONS(4309), - [anon_sym_inner] = ACTIONS(4309), - [anon_sym_value] = ACTIONS(4309), - [anon_sym_override] = ACTIONS(4309), - [anon_sym_lateinit] = ACTIONS(4309), - [anon_sym_public] = ACTIONS(4309), - [anon_sym_private] = ACTIONS(4309), - [anon_sym_internal] = ACTIONS(4309), - [anon_sym_protected] = ACTIONS(4309), - [anon_sym_tailrec] = ACTIONS(4309), - [anon_sym_operator] = ACTIONS(4309), - [anon_sym_infix] = ACTIONS(4309), - [anon_sym_inline] = ACTIONS(4309), - [anon_sym_external] = ACTIONS(4309), - [sym_property_modifier] = ACTIONS(4309), - [anon_sym_abstract] = ACTIONS(4309), - [anon_sym_final] = ACTIONS(4309), - [anon_sym_open] = ACTIONS(4309), - [anon_sym_vararg] = ACTIONS(4309), - [anon_sym_noinline] = ACTIONS(4309), - [anon_sym_crossinline] = ACTIONS(4309), - [anon_sym_expect] = ACTIONS(4309), - [anon_sym_actual] = ACTIONS(4309), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4311), - [sym_safe_nav] = ACTIONS(4311), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4603), + [anon_sym_AT] = ACTIONS(4605), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4603), + [anon_sym_as] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4605), + [anon_sym_RBRACE] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4603), + [anon_sym_where] = ACTIONS(4603), + [anon_sym_object] = ACTIONS(4603), + [anon_sym_fun] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4605), + [anon_sym_get] = ACTIONS(4603), + [anon_sym_set] = ACTIONS(4603), + [anon_sym_this] = ACTIONS(4603), + [anon_sym_super] = ACTIONS(4603), + [anon_sym_STAR] = ACTIONS(4603), + [sym_label] = ACTIONS(4603), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4605), + [anon_sym_AMP_AMP] = ACTIONS(4605), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_null] = ACTIONS(4603), + [anon_sym_if] = ACTIONS(4603), + [anon_sym_else] = ACTIONS(4603), + [anon_sym_when] = ACTIONS(4603), + [anon_sym_try] = ACTIONS(4603), + [anon_sym_throw] = ACTIONS(4603), + [anon_sym_return] = ACTIONS(4603), + [anon_sym_continue] = ACTIONS(4603), + [anon_sym_break] = ACTIONS(4603), + [anon_sym_COLON_COLON] = ACTIONS(4605), + [anon_sym_PLUS_EQ] = ACTIONS(4605), + [anon_sym_DASH_EQ] = ACTIONS(4605), + [anon_sym_STAR_EQ] = ACTIONS(4605), + [anon_sym_SLASH_EQ] = ACTIONS(4605), + [anon_sym_PERCENT_EQ] = ACTIONS(4605), + [anon_sym_BANG_EQ] = ACTIONS(4603), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4605), + [anon_sym_EQ_EQ] = ACTIONS(4603), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4605), + [anon_sym_BANGin] = ACTIONS(4605), + [anon_sym_is] = ACTIONS(4603), + [anon_sym_BANGis] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_as_QMARK] = ACTIONS(4605), + [anon_sym_PLUS_PLUS] = ACTIONS(4605), + [anon_sym_DASH_DASH] = ACTIONS(4605), + [anon_sym_BANG] = ACTIONS(4603), + [anon_sym_BANG_BANG] = ACTIONS(4605), + [anon_sym_data] = ACTIONS(4603), + [anon_sym_inner] = ACTIONS(4603), + [anon_sym_value] = ACTIONS(4603), + [anon_sym_expect] = ACTIONS(4603), + [anon_sym_actual] = ACTIONS(4603), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4605), + [anon_sym_continue_AT] = ACTIONS(4605), + [anon_sym_break_AT] = ACTIONS(4605), + [anon_sym_this_AT] = ACTIONS(4605), + [anon_sym_super_AT] = ACTIONS(4605), + [sym_real_literal] = ACTIONS(4605), + [sym_integer_literal] = ACTIONS(4603), + [sym_hex_literal] = ACTIONS(4605), + [sym_bin_literal] = ACTIONS(4605), + [anon_sym_true] = ACTIONS(4603), + [anon_sym_false] = ACTIONS(4603), + [anon_sym_SQUOTE] = ACTIONS(4605), + [sym__backtick_identifier] = ACTIONS(4605), + [sym__automatic_semicolon] = ACTIONS(4605), + [sym_safe_nav] = ACTIONS(4605), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4605), }, [3018] = { - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_RBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_RPAREN] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4187), - [sym__quest] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_DASH_GT] = ACTIONS(4189), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_while] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4189), - [anon_sym_QMARK_COLON] = ACTIONS(4189), - [anon_sym_AMP_AMP] = ACTIONS(4189), - [anon_sym_PIPE_PIPE] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4189), - [anon_sym_DASH_EQ] = ACTIONS(4189), - [anon_sym_STAR_EQ] = ACTIONS(4189), - [anon_sym_SLASH_EQ] = ACTIONS(4189), - [anon_sym_PERCENT_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), - [anon_sym_LT_EQ] = ACTIONS(4189), - [anon_sym_GT_EQ] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_SLASH] = ACTIONS(4187), - [anon_sym_PERCENT] = ACTIONS(4187), - [anon_sym_as_QMARK] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4189), - [sym_safe_nav] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3174), + [sym__alpha_identifier] = ACTIONS(4607), + [anon_sym_AT] = ACTIONS(4609), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_where] = ACTIONS(4607), + [anon_sym_object] = ACTIONS(4607), + [anon_sym_fun] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4609), + [anon_sym_get] = ACTIONS(4607), + [anon_sym_set] = ACTIONS(4607), + [anon_sym_this] = ACTIONS(4607), + [anon_sym_super] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [sym_label] = ACTIONS(4607), + [anon_sym_in] = ACTIONS(4607), + [anon_sym_DOT_DOT] = ACTIONS(4609), + [anon_sym_QMARK_COLON] = ACTIONS(4609), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4609), + [anon_sym_null] = ACTIONS(4607), + [anon_sym_if] = ACTIONS(4607), + [anon_sym_else] = ACTIONS(4607), + [anon_sym_when] = ACTIONS(4607), + [anon_sym_try] = ACTIONS(4607), + [anon_sym_throw] = ACTIONS(4607), + [anon_sym_return] = ACTIONS(4607), + [anon_sym_continue] = ACTIONS(4607), + [anon_sym_break] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4609), + [anon_sym_PLUS_EQ] = ACTIONS(4609), + [anon_sym_DASH_EQ] = ACTIONS(4609), + [anon_sym_STAR_EQ] = ACTIONS(4609), + [anon_sym_SLASH_EQ] = ACTIONS(4609), + [anon_sym_PERCENT_EQ] = ACTIONS(4609), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4609), + [anon_sym_BANGin] = ACTIONS(4609), + [anon_sym_is] = ACTIONS(4607), + [anon_sym_BANGis] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_as_QMARK] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4609), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_BANG_BANG] = ACTIONS(4609), + [anon_sym_data] = ACTIONS(4607), + [anon_sym_inner] = ACTIONS(4607), + [anon_sym_value] = ACTIONS(4607), + [anon_sym_expect] = ACTIONS(4607), + [anon_sym_actual] = ACTIONS(4607), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4609), + [anon_sym_continue_AT] = ACTIONS(4609), + [anon_sym_break_AT] = ACTIONS(4609), + [anon_sym_this_AT] = ACTIONS(4609), + [anon_sym_super_AT] = ACTIONS(4609), + [sym_real_literal] = ACTIONS(4609), + [sym_integer_literal] = ACTIONS(4607), + [sym_hex_literal] = ACTIONS(4609), + [sym_bin_literal] = ACTIONS(4609), + [anon_sym_true] = ACTIONS(4607), + [anon_sym_false] = ACTIONS(4607), + [anon_sym_SQUOTE] = ACTIONS(4609), + [sym__backtick_identifier] = ACTIONS(4609), + [sym__automatic_semicolon] = ACTIONS(4609), + [sym_safe_nav] = ACTIONS(4609), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4609), }, [3019] = { - [aux_sym_type_constraints_repeat1] = STATE(3043), - [sym__alpha_identifier] = ACTIONS(4371), - [anon_sym_AT] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4371), - [anon_sym_as] = ACTIONS(4371), - [anon_sym_EQ] = ACTIONS(4371), - [anon_sym_LBRACE] = ACTIONS(4373), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_LPAREN] = ACTIONS(4373), - [anon_sym_COMMA] = ACTIONS(6580), - [anon_sym_LT] = ACTIONS(4371), - [anon_sym_GT] = ACTIONS(4371), - [anon_sym_where] = ACTIONS(4371), - [anon_sym_object] = ACTIONS(4371), - [anon_sym_fun] = ACTIONS(4371), - [anon_sym_SEMI] = ACTIONS(4373), - [anon_sym_get] = ACTIONS(4371), - [anon_sym_set] = ACTIONS(4371), - [anon_sym_this] = ACTIONS(4371), - [anon_sym_super] = ACTIONS(4371), - [anon_sym_STAR] = ACTIONS(4371), - [sym_label] = ACTIONS(4371), - [anon_sym_in] = ACTIONS(4371), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_QMARK_COLON] = ACTIONS(4373), - [anon_sym_AMP_AMP] = ACTIONS(4373), - [anon_sym_PIPE_PIPE] = ACTIONS(4373), - [anon_sym_null] = ACTIONS(4371), - [anon_sym_if] = ACTIONS(4371), - [anon_sym_else] = ACTIONS(4371), - [anon_sym_when] = ACTIONS(4371), - [anon_sym_try] = ACTIONS(4371), - [anon_sym_throw] = ACTIONS(4371), - [anon_sym_return] = ACTIONS(4371), - [anon_sym_continue] = ACTIONS(4371), - [anon_sym_break] = ACTIONS(4371), - [anon_sym_COLON_COLON] = ACTIONS(4373), - [anon_sym_PLUS_EQ] = ACTIONS(4373), - [anon_sym_DASH_EQ] = ACTIONS(4373), - [anon_sym_STAR_EQ] = ACTIONS(4373), - [anon_sym_SLASH_EQ] = ACTIONS(4373), - [anon_sym_PERCENT_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4373), - [anon_sym_EQ_EQ] = ACTIONS(4371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4373), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4373), - [anon_sym_BANGin] = ACTIONS(4373), - [anon_sym_is] = ACTIONS(4371), - [anon_sym_BANGis] = ACTIONS(4373), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_SLASH] = ACTIONS(4371), - [anon_sym_PERCENT] = ACTIONS(4371), - [anon_sym_as_QMARK] = ACTIONS(4373), - [anon_sym_PLUS_PLUS] = ACTIONS(4373), - [anon_sym_DASH_DASH] = ACTIONS(4373), - [anon_sym_BANG] = ACTIONS(4371), - [anon_sym_BANG_BANG] = ACTIONS(4373), - [anon_sym_data] = ACTIONS(4371), - [anon_sym_inner] = ACTIONS(4371), - [anon_sym_value] = ACTIONS(4371), - [anon_sym_expect] = ACTIONS(4371), - [anon_sym_actual] = ACTIONS(4371), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4373), - [anon_sym_continue_AT] = ACTIONS(4373), - [anon_sym_break_AT] = ACTIONS(4373), - [anon_sym_this_AT] = ACTIONS(4373), - [anon_sym_super_AT] = ACTIONS(4373), - [sym_real_literal] = ACTIONS(4373), - [sym_integer_literal] = ACTIONS(4371), - [sym_hex_literal] = ACTIONS(4373), - [sym_bin_literal] = ACTIONS(4373), - [anon_sym_true] = ACTIONS(4371), - [anon_sym_false] = ACTIONS(4371), - [anon_sym_SQUOTE] = ACTIONS(4373), - [sym__backtick_identifier] = ACTIONS(4373), - [sym__automatic_semicolon] = ACTIONS(4373), - [sym_safe_nav] = ACTIONS(4373), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4373), + [sym__alpha_identifier] = ACTIONS(4509), + [anon_sym_AT] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(4509), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4511), + [anon_sym_super_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), }, [3020] = { - [sym_function_body] = STATE(3460), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(6582), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_RBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_where] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [anon_sym_DASH_GT] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_while] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_PLUS_EQ] = ACTIONS(4291), - [anon_sym_DASH_EQ] = ACTIONS(4291), - [anon_sym_STAR_EQ] = ACTIONS(4291), - [anon_sym_SLASH_EQ] = ACTIONS(4291), - [anon_sym_PERCENT_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), + [aux_sym_nullable_type_repeat1] = STATE(2997), + [sym__alpha_identifier] = ACTIONS(4264), + [anon_sym_AT] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_RBRACK] = ACTIONS(4266), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_as] = ACTIONS(4264), + [anon_sym_EQ] = ACTIONS(4264), + [anon_sym_LBRACE] = ACTIONS(4266), + [anon_sym_RBRACE] = ACTIONS(4266), + [anon_sym_LPAREN] = ACTIONS(4266), + [anon_sym_COMMA] = ACTIONS(4266), + [anon_sym_RPAREN] = ACTIONS(4266), + [anon_sym_by] = ACTIONS(4264), + [anon_sym_LT] = ACTIONS(4264), + [anon_sym_GT] = ACTIONS(4264), + [anon_sym_where] = ACTIONS(4264), + [anon_sym_SEMI] = ACTIONS(4266), + [anon_sym_get] = ACTIONS(4264), + [anon_sym_set] = ACTIONS(4264), + [sym__quest] = ACTIONS(6536), + [anon_sym_STAR] = ACTIONS(4264), + [anon_sym_DASH_GT] = ACTIONS(4266), + [sym_label] = ACTIONS(4266), + [anon_sym_in] = ACTIONS(4264), + [anon_sym_while] = ACTIONS(4264), + [anon_sym_DOT_DOT] = ACTIONS(4266), + [anon_sym_QMARK_COLON] = ACTIONS(4266), + [anon_sym_AMP_AMP] = ACTIONS(4266), + [anon_sym_PIPE_PIPE] = ACTIONS(4266), + [anon_sym_else] = ACTIONS(4264), + [anon_sym_COLON_COLON] = ACTIONS(4266), + [anon_sym_PLUS_EQ] = ACTIONS(4266), + [anon_sym_DASH_EQ] = ACTIONS(4266), + [anon_sym_STAR_EQ] = ACTIONS(4266), + [anon_sym_SLASH_EQ] = ACTIONS(4266), + [anon_sym_PERCENT_EQ] = ACTIONS(4266), + [anon_sym_BANG_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), + [anon_sym_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), + [anon_sym_LT_EQ] = ACTIONS(4266), + [anon_sym_GT_EQ] = ACTIONS(4266), + [anon_sym_BANGin] = ACTIONS(4266), + [anon_sym_is] = ACTIONS(4264), + [anon_sym_BANGis] = ACTIONS(4266), + [anon_sym_PLUS] = ACTIONS(4264), + [anon_sym_DASH] = ACTIONS(4264), + [anon_sym_SLASH] = ACTIONS(4264), + [anon_sym_PERCENT] = ACTIONS(4264), + [anon_sym_as_QMARK] = ACTIONS(4266), + [anon_sym_PLUS_PLUS] = ACTIONS(4266), + [anon_sym_DASH_DASH] = ACTIONS(4266), + [anon_sym_BANG_BANG] = ACTIONS(4266), + [anon_sym_suspend] = ACTIONS(4264), + [anon_sym_sealed] = ACTIONS(4264), + [anon_sym_annotation] = ACTIONS(4264), + [anon_sym_data] = ACTIONS(4264), + [anon_sym_inner] = ACTIONS(4264), + [anon_sym_value] = ACTIONS(4264), + [anon_sym_override] = ACTIONS(4264), + [anon_sym_lateinit] = ACTIONS(4264), + [anon_sym_public] = ACTIONS(4264), + [anon_sym_private] = ACTIONS(4264), + [anon_sym_internal] = ACTIONS(4264), + [anon_sym_protected] = ACTIONS(4264), + [anon_sym_tailrec] = ACTIONS(4264), + [anon_sym_operator] = ACTIONS(4264), + [anon_sym_infix] = ACTIONS(4264), + [anon_sym_inline] = ACTIONS(4264), + [anon_sym_external] = ACTIONS(4264), + [sym_property_modifier] = ACTIONS(4264), + [anon_sym_abstract] = ACTIONS(4264), + [anon_sym_final] = ACTIONS(4264), + [anon_sym_open] = ACTIONS(4264), + [anon_sym_vararg] = ACTIONS(4264), + [anon_sym_noinline] = ACTIONS(4264), + [anon_sym_crossinline] = ACTIONS(4264), + [anon_sym_expect] = ACTIONS(4264), + [anon_sym_actual] = ACTIONS(4264), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4266), + [sym_safe_nav] = ACTIONS(4266), [sym_multiline_comment] = ACTIONS(3), }, [3021] = { - [sym__alpha_identifier] = ACTIONS(4305), - [anon_sym_AT] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_RBRACK] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_as] = ACTIONS(4305), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_RPAREN] = ACTIONS(4307), - [anon_sym_by] = ACTIONS(4305), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_where] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_get] = ACTIONS(4305), - [anon_sym_set] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(4305), - [sym__quest] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4305), - [anon_sym_DASH_GT] = ACTIONS(4307), - [sym_label] = ACTIONS(4307), - [anon_sym_in] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [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(4305), - [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(4305), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [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(4305), - [anon_sym_BANGis] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_SLASH] = ACTIONS(4305), - [anon_sym_PERCENT] = ACTIONS(4305), - [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(4305), - [anon_sym_sealed] = ACTIONS(4305), - [anon_sym_annotation] = ACTIONS(4305), - [anon_sym_data] = ACTIONS(4305), - [anon_sym_inner] = ACTIONS(4305), - [anon_sym_value] = ACTIONS(4305), - [anon_sym_override] = ACTIONS(4305), - [anon_sym_lateinit] = ACTIONS(4305), - [anon_sym_public] = ACTIONS(4305), - [anon_sym_private] = ACTIONS(4305), - [anon_sym_internal] = ACTIONS(4305), - [anon_sym_protected] = ACTIONS(4305), - [anon_sym_tailrec] = ACTIONS(4305), - [anon_sym_operator] = ACTIONS(4305), - [anon_sym_infix] = ACTIONS(4305), - [anon_sym_inline] = ACTIONS(4305), - [anon_sym_external] = ACTIONS(4305), - [sym_property_modifier] = ACTIONS(4305), - [anon_sym_abstract] = ACTIONS(4305), - [anon_sym_final] = ACTIONS(4305), - [anon_sym_open] = ACTIONS(4305), - [anon_sym_vararg] = ACTIONS(4305), - [anon_sym_noinline] = ACTIONS(4305), - [anon_sym_crossinline] = ACTIONS(4305), - [anon_sym_expect] = ACTIONS(4305), - [anon_sym_actual] = ACTIONS(4305), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4307), - [sym_safe_nav] = ACTIONS(4307), - [sym_multiline_comment] = ACTIONS(3), + [sym_enum_class_body] = STATE(3171), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [3022] = { - [sym_enum_class_body] = STATE(3254), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(6471), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), }, [3023] = { - [sym__alpha_identifier] = ACTIONS(4613), - [anon_sym_AT] = ACTIONS(4615), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_LBRACK] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_as] = ACTIONS(4613), - [anon_sym_EQ] = ACTIONS(4613), - [anon_sym_LBRACE] = ACTIONS(4615), - [anon_sym_RBRACE] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_COMMA] = ACTIONS(4615), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_where] = ACTIONS(4613), - [anon_sym_object] = ACTIONS(4613), - [anon_sym_fun] = ACTIONS(4613), - [anon_sym_SEMI] = ACTIONS(4615), - [anon_sym_get] = ACTIONS(4613), - [anon_sym_set] = ACTIONS(4613), - [anon_sym_this] = ACTIONS(4613), - [anon_sym_super] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [sym_label] = ACTIONS(4613), - [anon_sym_in] = ACTIONS(4613), - [anon_sym_DOT_DOT] = ACTIONS(4615), - [anon_sym_QMARK_COLON] = ACTIONS(4615), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4615), - [anon_sym_null] = ACTIONS(4613), - [anon_sym_if] = ACTIONS(4613), - [anon_sym_else] = ACTIONS(4613), - [anon_sym_when] = ACTIONS(4613), - [anon_sym_try] = ACTIONS(4613), - [anon_sym_throw] = ACTIONS(4613), - [anon_sym_return] = ACTIONS(4613), - [anon_sym_continue] = ACTIONS(4613), - [anon_sym_break] = ACTIONS(4613), - [anon_sym_COLON_COLON] = ACTIONS(4615), - [anon_sym_PLUS_EQ] = ACTIONS(4615), - [anon_sym_DASH_EQ] = ACTIONS(4615), - [anon_sym_STAR_EQ] = ACTIONS(4615), - [anon_sym_SLASH_EQ] = ACTIONS(4615), - [anon_sym_PERCENT_EQ] = ACTIONS(4615), - [anon_sym_BANG_EQ] = ACTIONS(4613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4615), - [anon_sym_EQ_EQ] = ACTIONS(4613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4615), - [anon_sym_LT_EQ] = ACTIONS(4615), - [anon_sym_GT_EQ] = ACTIONS(4615), - [anon_sym_BANGin] = ACTIONS(4615), - [anon_sym_is] = ACTIONS(4613), - [anon_sym_BANGis] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_PERCENT] = ACTIONS(4613), - [anon_sym_as_QMARK] = ACTIONS(4615), - [anon_sym_PLUS_PLUS] = ACTIONS(4615), - [anon_sym_DASH_DASH] = ACTIONS(4615), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_BANG_BANG] = ACTIONS(4615), - [anon_sym_data] = ACTIONS(4613), - [anon_sym_inner] = ACTIONS(4613), - [anon_sym_value] = ACTIONS(4613), - [anon_sym_expect] = ACTIONS(4613), - [anon_sym_actual] = ACTIONS(4613), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4615), - [anon_sym_continue_AT] = ACTIONS(4615), - [anon_sym_break_AT] = ACTIONS(4615), - [anon_sym_this_AT] = ACTIONS(4615), - [anon_sym_super_AT] = ACTIONS(4615), - [sym_real_literal] = ACTIONS(4615), - [sym_integer_literal] = ACTIONS(4613), - [sym_hex_literal] = ACTIONS(4615), - [sym_bin_literal] = ACTIONS(4615), - [anon_sym_true] = ACTIONS(4613), - [anon_sym_false] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4615), - [sym__backtick_identifier] = ACTIONS(4615), - [sym__automatic_semicolon] = ACTIONS(4615), - [sym_safe_nav] = ACTIONS(4615), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4615), + [sym_import_list] = STATE(3023), + [sym_import_header] = STATE(8705), + [aux_sym_source_file_repeat2] = STATE(3023), + [aux_sym_import_list_repeat1] = STATE(8705), + [ts_builtin_sym_end] = ACTIONS(6538), + [sym__alpha_identifier] = ACTIONS(6540), + [anon_sym_AT] = ACTIONS(6538), + [anon_sym_LBRACK] = ACTIONS(6538), + [anon_sym_import] = ACTIONS(6542), + [anon_sym_typealias] = ACTIONS(6540), + [anon_sym_class] = ACTIONS(6540), + [anon_sym_interface] = ACTIONS(6540), + [anon_sym_enum] = ACTIONS(6540), + [anon_sym_LBRACE] = ACTIONS(6538), + [anon_sym_LPAREN] = ACTIONS(6538), + [anon_sym_val] = ACTIONS(6540), + [anon_sym_var] = ACTIONS(6540), + [anon_sym_object] = ACTIONS(6540), + [anon_sym_fun] = ACTIONS(6540), + [anon_sym_get] = ACTIONS(6540), + [anon_sym_set] = ACTIONS(6540), + [anon_sym_this] = ACTIONS(6540), + [anon_sym_super] = ACTIONS(6540), + [anon_sym_STAR] = ACTIONS(6538), + [sym_label] = ACTIONS(6540), + [anon_sym_for] = ACTIONS(6540), + [anon_sym_while] = ACTIONS(6540), + [anon_sym_do] = ACTIONS(6540), + [anon_sym_null] = ACTIONS(6540), + [anon_sym_if] = ACTIONS(6540), + [anon_sym_when] = ACTIONS(6540), + [anon_sym_try] = ACTIONS(6540), + [anon_sym_throw] = ACTIONS(6540), + [anon_sym_return] = ACTIONS(6540), + [anon_sym_continue] = ACTIONS(6540), + [anon_sym_break] = ACTIONS(6540), + [anon_sym_COLON_COLON] = ACTIONS(6538), + [anon_sym_PLUS] = ACTIONS(6540), + [anon_sym_DASH] = ACTIONS(6540), + [anon_sym_PLUS_PLUS] = ACTIONS(6538), + [anon_sym_DASH_DASH] = ACTIONS(6538), + [anon_sym_BANG] = ACTIONS(6538), + [anon_sym_suspend] = ACTIONS(6540), + [anon_sym_sealed] = ACTIONS(6540), + [anon_sym_annotation] = ACTIONS(6540), + [anon_sym_data] = ACTIONS(6540), + [anon_sym_inner] = ACTIONS(6540), + [anon_sym_value] = ACTIONS(6540), + [anon_sym_override] = ACTIONS(6540), + [anon_sym_lateinit] = ACTIONS(6540), + [anon_sym_public] = ACTIONS(6540), + [anon_sym_private] = ACTIONS(6540), + [anon_sym_internal] = ACTIONS(6540), + [anon_sym_protected] = ACTIONS(6540), + [anon_sym_tailrec] = ACTIONS(6540), + [anon_sym_operator] = ACTIONS(6540), + [anon_sym_infix] = ACTIONS(6540), + [anon_sym_inline] = ACTIONS(6540), + [anon_sym_external] = ACTIONS(6540), + [sym_property_modifier] = ACTIONS(6540), + [anon_sym_abstract] = ACTIONS(6540), + [anon_sym_final] = ACTIONS(6540), + [anon_sym_open] = ACTIONS(6540), + [anon_sym_vararg] = ACTIONS(6540), + [anon_sym_noinline] = ACTIONS(6540), + [anon_sym_crossinline] = ACTIONS(6540), + [anon_sym_expect] = ACTIONS(6540), + [anon_sym_actual] = ACTIONS(6540), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6538), + [anon_sym_continue_AT] = ACTIONS(6538), + [anon_sym_break_AT] = ACTIONS(6538), + [anon_sym_this_AT] = ACTIONS(6538), + [anon_sym_super_AT] = ACTIONS(6538), + [sym_real_literal] = ACTIONS(6538), + [sym_integer_literal] = ACTIONS(6540), + [sym_hex_literal] = ACTIONS(6538), + [sym_bin_literal] = ACTIONS(6538), + [anon_sym_true] = ACTIONS(6540), + [anon_sym_false] = ACTIONS(6540), + [anon_sym_SQUOTE] = ACTIONS(6538), + [sym__backtick_identifier] = ACTIONS(6538), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6538), }, [3024] = { - [sym_class_body] = STATE(3246), - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_object] = ACTIONS(4507), - [anon_sym_fun] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_this] = ACTIONS(4507), - [anon_sym_super] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [sym_label] = ACTIONS(4507), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_null] = ACTIONS(4507), - [anon_sym_if] = ACTIONS(4507), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_when] = ACTIONS(4507), - [anon_sym_try] = ACTIONS(4507), - [anon_sym_throw] = ACTIONS(4507), - [anon_sym_return] = ACTIONS(4507), - [anon_sym_continue] = ACTIONS(4507), - [anon_sym_break] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4509), - [anon_sym_continue_AT] = ACTIONS(4509), - [anon_sym_break_AT] = ACTIONS(4509), - [anon_sym_this_AT] = ACTIONS(4509), - [anon_sym_super_AT] = ACTIONS(4509), - [sym_real_literal] = ACTIONS(4509), - [sym_integer_literal] = ACTIONS(4507), - [sym_hex_literal] = ACTIONS(4509), - [sym_bin_literal] = ACTIONS(4509), - [anon_sym_true] = ACTIONS(4507), - [anon_sym_false] = ACTIONS(4507), - [anon_sym_SQUOTE] = ACTIONS(4509), - [sym__backtick_identifier] = ACTIONS(4509), - [sym__automatic_semicolon] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4509), + [sym_class_body] = STATE(3178), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, [3025] = { - [sym_class_body] = STATE(3214), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [sym__alpha_identifier] = ACTIONS(4495), + [anon_sym_AT] = ACTIONS(4497), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4497), + [anon_sym_RBRACE] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4497), + [anon_sym_COMMA] = ACTIONS(4497), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_where] = ACTIONS(4495), + [anon_sym_object] = ACTIONS(4495), + [anon_sym_fun] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4497), + [anon_sym_get] = ACTIONS(4495), + [anon_sym_set] = ACTIONS(4495), + [anon_sym_this] = ACTIONS(4495), + [anon_sym_super] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [sym_label] = ACTIONS(4495), + [anon_sym_in] = ACTIONS(4495), + [anon_sym_DOT_DOT] = ACTIONS(4497), + [anon_sym_QMARK_COLON] = ACTIONS(4497), + [anon_sym_AMP_AMP] = ACTIONS(4497), + [anon_sym_PIPE_PIPE] = ACTIONS(4497), + [anon_sym_null] = ACTIONS(4495), + [anon_sym_if] = ACTIONS(4495), + [anon_sym_else] = ACTIONS(4495), + [anon_sym_when] = ACTIONS(4495), + [anon_sym_try] = ACTIONS(4495), + [anon_sym_throw] = ACTIONS(4495), + [anon_sym_return] = ACTIONS(4495), + [anon_sym_continue] = ACTIONS(4495), + [anon_sym_break] = ACTIONS(4495), + [anon_sym_COLON_COLON] = ACTIONS(4497), + [anon_sym_PLUS_EQ] = ACTIONS(4497), + [anon_sym_DASH_EQ] = ACTIONS(4497), + [anon_sym_STAR_EQ] = ACTIONS(4497), + [anon_sym_SLASH_EQ] = ACTIONS(4497), + [anon_sym_PERCENT_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), + [anon_sym_LT_EQ] = ACTIONS(4497), + [anon_sym_GT_EQ] = ACTIONS(4497), + [anon_sym_BANGin] = ACTIONS(4497), + [anon_sym_is] = ACTIONS(4495), + [anon_sym_BANGis] = ACTIONS(4497), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_as_QMARK] = ACTIONS(4497), + [anon_sym_PLUS_PLUS] = ACTIONS(4497), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_BANG_BANG] = ACTIONS(4497), + [anon_sym_data] = ACTIONS(4495), + [anon_sym_inner] = ACTIONS(4495), + [anon_sym_value] = ACTIONS(4495), + [anon_sym_expect] = ACTIONS(4495), + [anon_sym_actual] = ACTIONS(4495), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4497), + [anon_sym_continue_AT] = ACTIONS(4497), + [anon_sym_break_AT] = ACTIONS(4497), + [anon_sym_this_AT] = ACTIONS(4497), + [anon_sym_super_AT] = ACTIONS(4497), + [sym_real_literal] = ACTIONS(4497), + [sym_integer_literal] = ACTIONS(4495), + [sym_hex_literal] = ACTIONS(4497), + [sym_bin_literal] = ACTIONS(4497), + [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), }, [3026] = { - [aux_sym_nullable_type_repeat1] = STATE(3042), - [sym__alpha_identifier] = ACTIONS(4295), - [anon_sym_AT] = ACTIONS(4297), - [anon_sym_LBRACK] = ACTIONS(4297), - [anon_sym_RBRACK] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4295), - [anon_sym_EQ] = ACTIONS(4295), - [anon_sym_LBRACE] = ACTIONS(4297), - [anon_sym_RBRACE] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4297), - [anon_sym_COMMA] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_by] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4295), - [anon_sym_GT] = ACTIONS(4295), - [anon_sym_where] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_get] = ACTIONS(4295), - [anon_sym_set] = ACTIONS(4295), - [sym__quest] = ACTIONS(6584), - [anon_sym_STAR] = ACTIONS(4295), - [anon_sym_DASH_GT] = ACTIONS(4297), - [sym_label] = ACTIONS(4297), - [anon_sym_in] = ACTIONS(4295), - [anon_sym_while] = ACTIONS(4295), - [anon_sym_DOT_DOT] = ACTIONS(4297), - [anon_sym_QMARK_COLON] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [anon_sym_else] = ACTIONS(4295), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_PLUS_EQ] = ACTIONS(4297), - [anon_sym_DASH_EQ] = ACTIONS(4297), - [anon_sym_STAR_EQ] = ACTIONS(4297), - [anon_sym_SLASH_EQ] = ACTIONS(4297), - [anon_sym_PERCENT_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), - [anon_sym_LT_EQ] = ACTIONS(4297), - [anon_sym_GT_EQ] = ACTIONS(4297), - [anon_sym_BANGin] = ACTIONS(4297), - [anon_sym_is] = ACTIONS(4295), - [anon_sym_BANGis] = ACTIONS(4297), - [anon_sym_PLUS] = ACTIONS(4295), - [anon_sym_DASH] = ACTIONS(4295), - [anon_sym_SLASH] = ACTIONS(4295), - [anon_sym_PERCENT] = ACTIONS(4295), - [anon_sym_as_QMARK] = ACTIONS(4297), - [anon_sym_PLUS_PLUS] = ACTIONS(4297), - [anon_sym_DASH_DASH] = ACTIONS(4297), - [anon_sym_BANG_BANG] = ACTIONS(4297), - [anon_sym_suspend] = ACTIONS(4295), - [anon_sym_sealed] = ACTIONS(4295), - [anon_sym_annotation] = ACTIONS(4295), - [anon_sym_data] = ACTIONS(4295), - [anon_sym_inner] = ACTIONS(4295), - [anon_sym_value] = ACTIONS(4295), - [anon_sym_override] = ACTIONS(4295), - [anon_sym_lateinit] = ACTIONS(4295), - [anon_sym_public] = ACTIONS(4295), - [anon_sym_private] = ACTIONS(4295), - [anon_sym_internal] = ACTIONS(4295), - [anon_sym_protected] = ACTIONS(4295), - [anon_sym_tailrec] = ACTIONS(4295), - [anon_sym_operator] = ACTIONS(4295), - [anon_sym_infix] = ACTIONS(4295), - [anon_sym_inline] = ACTIONS(4295), - [anon_sym_external] = ACTIONS(4295), - [sym_property_modifier] = ACTIONS(4295), - [anon_sym_abstract] = ACTIONS(4295), - [anon_sym_final] = ACTIONS(4295), - [anon_sym_open] = ACTIONS(4295), - [anon_sym_vararg] = ACTIONS(4295), - [anon_sym_noinline] = ACTIONS(4295), - [anon_sym_crossinline] = ACTIONS(4295), - [anon_sym_expect] = ACTIONS(4295), - [anon_sym_actual] = ACTIONS(4295), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4297), - [sym_safe_nav] = ACTIONS(4297), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3171), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, [3027] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_RBRACK] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_as] = ACTIONS(4315), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_RPAREN] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(4315), - [anon_sym_GT] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(6586), - [sym__quest] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [anon_sym_DASH_GT] = ACTIONS(4317), - [sym_label] = ACTIONS(4317), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_while] = ACTIONS(4315), - [anon_sym_DOT_DOT] = ACTIONS(4317), - [anon_sym_QMARK_COLON] = ACTIONS(4317), - [anon_sym_AMP_AMP] = ACTIONS(4317), - [anon_sym_PIPE_PIPE] = ACTIONS(4317), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_PLUS_EQ] = ACTIONS(4317), - [anon_sym_DASH_EQ] = ACTIONS(4317), - [anon_sym_STAR_EQ] = ACTIONS(4317), - [anon_sym_SLASH_EQ] = ACTIONS(4317), - [anon_sym_PERCENT_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ] = ACTIONS(4315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ] = ACTIONS(4315), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4317), - [anon_sym_LT_EQ] = ACTIONS(4317), - [anon_sym_GT_EQ] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_SLASH] = ACTIONS(4315), - [anon_sym_PERCENT] = ACTIONS(4315), - [anon_sym_as_QMARK] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG_BANG] = ACTIONS(4317), - [anon_sym_suspend] = ACTIONS(4315), - [anon_sym_sealed] = ACTIONS(4315), - [anon_sym_annotation] = ACTIONS(4315), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_override] = ACTIONS(4315), - [anon_sym_lateinit] = ACTIONS(4315), - [anon_sym_public] = ACTIONS(4315), - [anon_sym_private] = ACTIONS(4315), - [anon_sym_internal] = ACTIONS(4315), - [anon_sym_protected] = ACTIONS(4315), - [anon_sym_tailrec] = ACTIONS(4315), - [anon_sym_operator] = ACTIONS(4315), - [anon_sym_infix] = ACTIONS(4315), - [anon_sym_inline] = ACTIONS(4315), - [anon_sym_external] = ACTIONS(4315), - [sym_property_modifier] = ACTIONS(4315), - [anon_sym_abstract] = ACTIONS(4315), - [anon_sym_final] = ACTIONS(4315), - [anon_sym_open] = ACTIONS(4315), - [anon_sym_vararg] = ACTIONS(4315), - [anon_sym_noinline] = ACTIONS(4315), - [anon_sym_crossinline] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4317), - [sym_safe_nav] = ACTIONS(4317), + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(6545), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_PLUS_EQ] = ACTIONS(4240), + [anon_sym_DASH_EQ] = ACTIONS(4240), + [anon_sym_STAR_EQ] = ACTIONS(4240), + [anon_sym_SLASH_EQ] = ACTIONS(4240), + [anon_sym_PERCENT_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4240), + [anon_sym_continue_AT] = ACTIONS(4240), + [anon_sym_break_AT] = ACTIONS(4240), + [anon_sym_this_AT] = ACTIONS(4240), + [anon_sym_super_AT] = ACTIONS(4240), + [sym_real_literal] = ACTIONS(4240), + [sym_integer_literal] = ACTIONS(4238), + [sym_hex_literal] = ACTIONS(4240), + [sym_bin_literal] = ACTIONS(4240), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4240), }, [3028] = { - [sym__alpha_identifier] = ACTIONS(4559), - [anon_sym_AT] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_as] = ACTIONS(4559), - [anon_sym_EQ] = ACTIONS(4559), - [anon_sym_LBRACE] = ACTIONS(4561), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym_COMMA] = ACTIONS(4561), - [anon_sym_by] = ACTIONS(4559), - [anon_sym_LT] = ACTIONS(4559), - [anon_sym_GT] = ACTIONS(4559), - [anon_sym_where] = ACTIONS(4559), - [anon_sym_object] = ACTIONS(4559), - [anon_sym_fun] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_this] = ACTIONS(4559), - [anon_sym_super] = ACTIONS(4559), - [anon_sym_STAR] = ACTIONS(4559), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4559), - [anon_sym_DOT_DOT] = ACTIONS(4561), - [anon_sym_QMARK_COLON] = ACTIONS(4561), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4561), - [anon_sym_null] = ACTIONS(4559), - [anon_sym_if] = ACTIONS(4559), - [anon_sym_else] = ACTIONS(4559), - [anon_sym_when] = ACTIONS(4559), - [anon_sym_try] = ACTIONS(4559), - [anon_sym_throw] = ACTIONS(4559), - [anon_sym_return] = ACTIONS(4559), - [anon_sym_continue] = ACTIONS(4559), - [anon_sym_break] = ACTIONS(4559), - [anon_sym_COLON_COLON] = ACTIONS(4561), - [anon_sym_PLUS_EQ] = ACTIONS(4561), - [anon_sym_DASH_EQ] = ACTIONS(4561), - [anon_sym_STAR_EQ] = ACTIONS(4561), - [anon_sym_SLASH_EQ] = ACTIONS(4561), - [anon_sym_PERCENT_EQ] = ACTIONS(4561), - [anon_sym_BANG_EQ] = ACTIONS(4559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), - [anon_sym_EQ_EQ] = ACTIONS(4559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), - [anon_sym_LT_EQ] = ACTIONS(4561), - [anon_sym_GT_EQ] = ACTIONS(4561), - [anon_sym_BANGin] = ACTIONS(4561), - [anon_sym_is] = ACTIONS(4559), - [anon_sym_BANGis] = ACTIONS(4561), - [anon_sym_PLUS] = ACTIONS(4559), - [anon_sym_DASH] = ACTIONS(4559), - [anon_sym_SLASH] = ACTIONS(4559), - [anon_sym_PERCENT] = ACTIONS(4559), - [anon_sym_as_QMARK] = ACTIONS(4561), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_BANG_BANG] = ACTIONS(4561), - [anon_sym_data] = ACTIONS(4559), - [anon_sym_inner] = ACTIONS(4559), - [anon_sym_value] = ACTIONS(4559), - [anon_sym_expect] = ACTIONS(4559), - [anon_sym_actual] = ACTIONS(4559), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4561), - [anon_sym_continue_AT] = ACTIONS(4561), - [anon_sym_break_AT] = ACTIONS(4561), - [anon_sym_this_AT] = ACTIONS(4561), - [anon_sym_super_AT] = ACTIONS(4561), - [sym_real_literal] = ACTIONS(4561), - [sym_integer_literal] = ACTIONS(4559), - [sym_hex_literal] = ACTIONS(4561), - [sym_bin_literal] = ACTIONS(4561), - [anon_sym_true] = ACTIONS(4559), - [anon_sym_false] = ACTIONS(4559), - [anon_sym_SQUOTE] = ACTIONS(4561), - [sym__backtick_identifier] = ACTIONS(4561), - [sym__automatic_semicolon] = ACTIONS(4561), - [sym_safe_nav] = ACTIONS(4561), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4561), + [sym_enum_class_body] = STATE(3141), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), }, [3029] = { - [sym_type_constraints] = STATE(3313), - [sym_enum_class_body] = STATE(3536), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(5643), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [sym__alpha_identifier] = ACTIONS(4234), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_RBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_as] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_RPAREN] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4234), + [anon_sym_set] = ACTIONS(4234), + [anon_sym_AMP] = ACTIONS(4234), + [sym__quest] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_DASH_GT] = ACTIONS(4236), + [sym_label] = ACTIONS(4236), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_while] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4236), + [anon_sym_QMARK_COLON] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), + [anon_sym_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG_BANG] = ACTIONS(4236), + [anon_sym_suspend] = ACTIONS(4234), + [anon_sym_sealed] = ACTIONS(4234), + [anon_sym_annotation] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4234), + [anon_sym_inner] = ACTIONS(4234), + [anon_sym_value] = ACTIONS(4234), + [anon_sym_override] = ACTIONS(4234), + [anon_sym_lateinit] = ACTIONS(4234), + [anon_sym_public] = ACTIONS(4234), + [anon_sym_private] = ACTIONS(4234), + [anon_sym_internal] = ACTIONS(4234), + [anon_sym_protected] = ACTIONS(4234), + [anon_sym_tailrec] = ACTIONS(4234), + [anon_sym_operator] = ACTIONS(4234), + [anon_sym_infix] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym_external] = ACTIONS(4234), + [sym_property_modifier] = ACTIONS(4234), + [anon_sym_abstract] = ACTIONS(4234), + [anon_sym_final] = ACTIONS(4234), + [anon_sym_open] = ACTIONS(4234), + [anon_sym_vararg] = ACTIONS(4234), + [anon_sym_noinline] = ACTIONS(4234), + [anon_sym_crossinline] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(4234), + [anon_sym_actual] = ACTIONS(4234), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(4236), + [sym_safe_nav] = ACTIONS(4236), [sym_multiline_comment] = ACTIONS(3), }, [3030] = { - [sym__alpha_identifier] = ACTIONS(4553), - [anon_sym_AT] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_as] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4553), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(4553), - [anon_sym_object] = ACTIONS(4553), - [anon_sym_fun] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4553), - [anon_sym_set] = ACTIONS(4553), - [anon_sym_this] = ACTIONS(4553), - [anon_sym_super] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4553), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4553), - [anon_sym_DOT_DOT] = ACTIONS(4556), - [anon_sym_QMARK_COLON] = ACTIONS(4556), - [anon_sym_AMP_AMP] = ACTIONS(4556), - [anon_sym_PIPE_PIPE] = ACTIONS(4556), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_if] = ACTIONS(4553), - [anon_sym_else] = ACTIONS(4553), - [anon_sym_when] = ACTIONS(4553), - [anon_sym_try] = ACTIONS(4553), - [anon_sym_throw] = ACTIONS(4553), - [anon_sym_return] = ACTIONS(4553), - [anon_sym_continue] = ACTIONS(4553), - [anon_sym_break] = ACTIONS(4553), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_PLUS_EQ] = ACTIONS(4556), - [anon_sym_DASH_EQ] = ACTIONS(4556), - [anon_sym_STAR_EQ] = ACTIONS(4556), - [anon_sym_SLASH_EQ] = ACTIONS(4556), - [anon_sym_PERCENT_EQ] = ACTIONS(4556), - [anon_sym_BANG_EQ] = ACTIONS(4553), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4556), - [anon_sym_LT_EQ] = ACTIONS(4556), - [anon_sym_GT_EQ] = ACTIONS(4556), - [anon_sym_BANGin] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4553), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4553), - [anon_sym_PERCENT] = ACTIONS(4553), - [anon_sym_as_QMARK] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4553), - [anon_sym_BANG_BANG] = ACTIONS(4556), - [anon_sym_data] = ACTIONS(4553), - [anon_sym_inner] = ACTIONS(4553), - [anon_sym_value] = ACTIONS(4553), - [anon_sym_expect] = ACTIONS(4553), - [anon_sym_actual] = ACTIONS(4553), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4556), - [anon_sym_continue_AT] = ACTIONS(4556), - [anon_sym_break_AT] = ACTIONS(4556), - [anon_sym_this_AT] = ACTIONS(4556), - [anon_sym_super_AT] = ACTIONS(4556), - [sym_real_literal] = ACTIONS(4556), - [sym_integer_literal] = ACTIONS(4553), - [sym_hex_literal] = ACTIONS(4556), - [sym_bin_literal] = ACTIONS(4556), - [anon_sym_true] = ACTIONS(4553), - [anon_sym_false] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4556), - [sym__backtick_identifier] = ACTIONS(4556), - [sym__automatic_semicolon] = ACTIONS(4556), - [sym_safe_nav] = ACTIONS(4556), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4556), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_RPAREN] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [anon_sym_DASH_GT] = ACTIONS(4131), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), }, [3031] = { - [sym_class_body] = STATE(3227), - [sym__alpha_identifier] = ACTIONS(4668), - [anon_sym_AT] = ACTIONS(4670), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_DOT] = ACTIONS(4668), - [anon_sym_as] = ACTIONS(4668), - [anon_sym_EQ] = ACTIONS(4668), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4670), - [anon_sym_LPAREN] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4670), - [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_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_data] = ACTIONS(4668), - [anon_sym_inner] = ACTIONS(4668), - [anon_sym_value] = 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), - [anon_sym_this_AT] = ACTIONS(4670), - [anon_sym_super_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), + [sym_enum_class_body] = STATE(3124), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_object] = ACTIONS(4618), + [anon_sym_fun] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_this] = ACTIONS(4618), + [anon_sym_super] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [sym_label] = ACTIONS(4618), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_when] = ACTIONS(4618), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_throw] = ACTIONS(4618), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4620), + [anon_sym_continue_AT] = ACTIONS(4620), + [anon_sym_break_AT] = ACTIONS(4620), + [anon_sym_this_AT] = ACTIONS(4620), + [anon_sym_super_AT] = ACTIONS(4620), + [sym_real_literal] = ACTIONS(4620), + [sym_integer_literal] = ACTIONS(4618), + [sym_hex_literal] = ACTIONS(4620), + [sym_bin_literal] = ACTIONS(4620), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4620), + [sym__backtick_identifier] = ACTIONS(4620), + [sym__automatic_semicolon] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4620), }, [3032] = { - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_as] = ACTIONS(4276), - [anon_sym_EQ] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_object] = ACTIONS(4276), - [anon_sym_fun] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [anon_sym_this] = ACTIONS(4276), - [anon_sym_super] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [sym_label] = ACTIONS(4276), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_DOT_DOT] = ACTIONS(4278), - [anon_sym_QMARK_COLON] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_null] = ACTIONS(4276), - [anon_sym_if] = ACTIONS(4276), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_when] = ACTIONS(4276), - [anon_sym_try] = ACTIONS(4276), - [anon_sym_throw] = ACTIONS(4276), - [anon_sym_return] = ACTIONS(4276), - [anon_sym_continue] = ACTIONS(4276), - [anon_sym_break] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ] = ACTIONS(4276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_as_QMARK] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_BANG_BANG] = ACTIONS(4278), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4278), - [anon_sym_continue_AT] = ACTIONS(4278), - [anon_sym_break_AT] = ACTIONS(4278), - [anon_sym_this_AT] = ACTIONS(4278), - [anon_sym_super_AT] = ACTIONS(4278), - [sym_real_literal] = ACTIONS(4278), - [sym_integer_literal] = ACTIONS(4276), - [sym_hex_literal] = ACTIONS(4278), - [sym_bin_literal] = ACTIONS(4278), - [anon_sym_true] = ACTIONS(4276), - [anon_sym_false] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4278), - [sym__backtick_identifier] = ACTIONS(4278), - [sym__automatic_semicolon] = ACTIONS(4278), - [sym_safe_nav] = ACTIONS(4278), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4278), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_RBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [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_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_AMP] = ACTIONS(4244), + [sym__quest] = ACTIONS(4244), + [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_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), + [sym_multiline_comment] = ACTIONS(3), }, [3033] = { - [aux_sym_nullable_type_repeat1] = STATE(3033), - [sym__alpha_identifier] = ACTIONS(4282), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), - [anon_sym_RBRACK] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4282), - [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_by] = ACTIONS(4282), - [anon_sym_LT] = ACTIONS(4282), - [anon_sym_GT] = ACTIONS(4282), - [anon_sym_where] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym_get] = ACTIONS(4282), - [anon_sym_set] = ACTIONS(4282), - [sym__quest] = ACTIONS(6588), - [anon_sym_STAR] = ACTIONS(4282), - [anon_sym_DASH_GT] = ACTIONS(4284), - [sym_label] = ACTIONS(4284), - [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_else] = 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_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_value] = 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), - [sym__backtick_identifier] = ACTIONS(4284), - [sym_safe_nav] = ACTIONS(4284), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_object] = ACTIONS(4525), + [anon_sym_fun] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_this] = ACTIONS(4525), + [anon_sym_super] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [sym_label] = ACTIONS(4525), + [anon_sym_in] = ACTIONS(4525), + [anon_sym_DOT_DOT] = ACTIONS(4527), + [anon_sym_QMARK_COLON] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4527), + [anon_sym_null] = ACTIONS(4525), + [anon_sym_if] = ACTIONS(4525), + [anon_sym_else] = ACTIONS(4525), + [anon_sym_when] = ACTIONS(4525), + [anon_sym_try] = ACTIONS(4525), + [anon_sym_throw] = ACTIONS(4525), + [anon_sym_return] = ACTIONS(4525), + [anon_sym_continue] = ACTIONS(4525), + [anon_sym_break] = ACTIONS(4525), + [anon_sym_COLON_COLON] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_BANGin] = ACTIONS(4527), + [anon_sym_is] = ACTIONS(4525), + [anon_sym_BANGis] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_as_QMARK] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_data] = ACTIONS(4525), + [anon_sym_inner] = ACTIONS(4525), + [anon_sym_value] = ACTIONS(4525), + [anon_sym_expect] = ACTIONS(4525), + [anon_sym_actual] = ACTIONS(4525), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4527), + [anon_sym_continue_AT] = ACTIONS(4527), + [anon_sym_break_AT] = ACTIONS(4527), + [anon_sym_this_AT] = ACTIONS(4527), + [anon_sym_super_AT] = ACTIONS(4527), + [sym_real_literal] = ACTIONS(4527), + [sym_integer_literal] = ACTIONS(4525), + [sym_hex_literal] = ACTIONS(4527), + [sym_bin_literal] = ACTIONS(4527), + [anon_sym_true] = ACTIONS(4525), + [anon_sym_false] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4527), + [sym__backtick_identifier] = ACTIONS(4527), + [sym__automatic_semicolon] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4527), }, [3034] = { - [aux_sym_nullable_type_repeat1] = STATE(3042), - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_as] = ACTIONS(4276), - [anon_sym_EQ] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [sym__quest] = ACTIONS(6584), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_DASH_GT] = ACTIONS(4278), - [sym_label] = ACTIONS(4278), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_while] = ACTIONS(4276), - [anon_sym_DOT_DOT] = ACTIONS(4278), - [anon_sym_QMARK_COLON] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ] = ACTIONS(4276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_as_QMARK] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG_BANG] = ACTIONS(4278), - [anon_sym_suspend] = ACTIONS(4276), - [anon_sym_sealed] = ACTIONS(4276), - [anon_sym_annotation] = ACTIONS(4276), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_override] = ACTIONS(4276), - [anon_sym_lateinit] = ACTIONS(4276), - [anon_sym_public] = ACTIONS(4276), - [anon_sym_private] = ACTIONS(4276), - [anon_sym_internal] = ACTIONS(4276), - [anon_sym_protected] = ACTIONS(4276), - [anon_sym_tailrec] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [anon_sym_infix] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym_external] = ACTIONS(4276), - [sym_property_modifier] = ACTIONS(4276), - [anon_sym_abstract] = ACTIONS(4276), - [anon_sym_final] = ACTIONS(4276), - [anon_sym_open] = ACTIONS(4276), - [anon_sym_vararg] = ACTIONS(4276), - [anon_sym_noinline] = ACTIONS(4276), - [anon_sym_crossinline] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4278), - [sym_safe_nav] = ACTIONS(4278), - [sym_multiline_comment] = ACTIONS(3), - }, - [3035] = { - [sym__alpha_identifier] = ACTIONS(4658), - [anon_sym_AT] = ACTIONS(4660), - [anon_sym_COLON] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4660), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_as] = ACTIONS(4658), - [anon_sym_EQ] = ACTIONS(4658), - [anon_sym_LBRACE] = ACTIONS(4660), - [anon_sym_RBRACE] = ACTIONS(4660), - [anon_sym_LPAREN] = ACTIONS(4660), - [anon_sym_COMMA] = ACTIONS(4660), - [anon_sym_LT] = ACTIONS(4658), - [anon_sym_GT] = ACTIONS(4658), - [anon_sym_where] = ACTIONS(4658), - [anon_sym_object] = ACTIONS(4658), - [anon_sym_fun] = ACTIONS(4658), - [anon_sym_SEMI] = ACTIONS(4660), - [anon_sym_get] = ACTIONS(4658), - [anon_sym_set] = ACTIONS(4658), - [anon_sym_this] = ACTIONS(4658), - [anon_sym_super] = ACTIONS(4658), - [anon_sym_STAR] = ACTIONS(4658), - [sym_label] = ACTIONS(4658), - [anon_sym_in] = ACTIONS(4658), - [anon_sym_DOT_DOT] = ACTIONS(4660), - [anon_sym_QMARK_COLON] = ACTIONS(4660), - [anon_sym_AMP_AMP] = ACTIONS(4660), - [anon_sym_PIPE_PIPE] = ACTIONS(4660), - [anon_sym_null] = ACTIONS(4658), - [anon_sym_if] = ACTIONS(4658), - [anon_sym_else] = ACTIONS(4658), - [anon_sym_when] = ACTIONS(4658), - [anon_sym_try] = ACTIONS(4658), - [anon_sym_throw] = ACTIONS(4658), - [anon_sym_return] = ACTIONS(4658), - [anon_sym_continue] = ACTIONS(4658), - [anon_sym_break] = ACTIONS(4658), - [anon_sym_COLON_COLON] = ACTIONS(4660), - [anon_sym_PLUS_EQ] = ACTIONS(4660), - [anon_sym_DASH_EQ] = ACTIONS(4660), - [anon_sym_STAR_EQ] = ACTIONS(4660), - [anon_sym_SLASH_EQ] = ACTIONS(4660), - [anon_sym_PERCENT_EQ] = ACTIONS(4660), - [anon_sym_BANG_EQ] = ACTIONS(4658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4660), - [anon_sym_EQ_EQ] = ACTIONS(4658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4660), - [anon_sym_LT_EQ] = ACTIONS(4660), - [anon_sym_GT_EQ] = ACTIONS(4660), - [anon_sym_BANGin] = ACTIONS(4660), - [anon_sym_is] = ACTIONS(4658), - [anon_sym_BANGis] = ACTIONS(4660), - [anon_sym_PLUS] = ACTIONS(4658), - [anon_sym_DASH] = ACTIONS(4658), - [anon_sym_SLASH] = ACTIONS(4658), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_as_QMARK] = ACTIONS(4660), - [anon_sym_PLUS_PLUS] = ACTIONS(4660), - [anon_sym_DASH_DASH] = ACTIONS(4660), - [anon_sym_BANG] = ACTIONS(4658), - [anon_sym_BANG_BANG] = ACTIONS(4660), - [anon_sym_data] = ACTIONS(4658), - [anon_sym_inner] = ACTIONS(4658), - [anon_sym_value] = ACTIONS(4658), - [anon_sym_expect] = ACTIONS(4658), - [anon_sym_actual] = ACTIONS(4658), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4660), - [anon_sym_continue_AT] = ACTIONS(4660), - [anon_sym_break_AT] = ACTIONS(4660), - [anon_sym_this_AT] = ACTIONS(4660), - [anon_sym_super_AT] = ACTIONS(4660), - [sym_real_literal] = ACTIONS(4660), - [sym_integer_literal] = ACTIONS(4658), - [sym_hex_literal] = ACTIONS(4660), - [sym_bin_literal] = ACTIONS(4660), - [anon_sym_true] = ACTIONS(4658), - [anon_sym_false] = ACTIONS(4658), - [anon_sym_SQUOTE] = ACTIONS(4660), - [sym__backtick_identifier] = ACTIONS(4660), - [sym__automatic_semicolon] = ACTIONS(4660), - [sym_safe_nav] = ACTIONS(4660), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4660), - }, - [3036] = { - [sym_enum_class_body] = STATE(3214), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [3037] = { - [sym_class_body] = STATE(3205), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(4299), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), - }, - [3038] = { - [sym__alpha_identifier] = ACTIONS(4720), - [anon_sym_AT] = ACTIONS(4722), - [anon_sym_COLON] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4722), - [anon_sym_DOT] = ACTIONS(4720), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4722), - [anon_sym_super_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), - }, - [3039] = { - [sym__alpha_identifier] = ACTIONS(4724), - [anon_sym_AT] = ACTIONS(4726), - [anon_sym_COLON] = ACTIONS(4724), - [anon_sym_LBRACK] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4724), - [anon_sym_as] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4724), - [anon_sym_LBRACE] = ACTIONS(4726), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_COMMA] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4724), - [anon_sym_GT] = ACTIONS(4724), - [anon_sym_where] = ACTIONS(4724), - [anon_sym_object] = ACTIONS(4724), - [anon_sym_fun] = ACTIONS(4724), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_get] = ACTIONS(4724), - [anon_sym_set] = ACTIONS(4724), - [anon_sym_this] = ACTIONS(4724), - [anon_sym_super] = ACTIONS(4724), - [anon_sym_STAR] = ACTIONS(4724), - [sym_label] = ACTIONS(4724), - [anon_sym_in] = ACTIONS(4724), - [anon_sym_DOT_DOT] = ACTIONS(4726), - [anon_sym_QMARK_COLON] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [anon_sym_null] = ACTIONS(4724), - [anon_sym_if] = ACTIONS(4724), - [anon_sym_else] = ACTIONS(4724), - [anon_sym_when] = ACTIONS(4724), - [anon_sym_try] = ACTIONS(4724), - [anon_sym_throw] = ACTIONS(4724), - [anon_sym_return] = ACTIONS(4724), - [anon_sym_continue] = ACTIONS(4724), - [anon_sym_break] = ACTIONS(4724), - [anon_sym_COLON_COLON] = ACTIONS(4726), - [anon_sym_PLUS_EQ] = ACTIONS(4726), - [anon_sym_DASH_EQ] = ACTIONS(4726), - [anon_sym_STAR_EQ] = ACTIONS(4726), - [anon_sym_SLASH_EQ] = ACTIONS(4726), - [anon_sym_PERCENT_EQ] = ACTIONS(4726), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4726), - [anon_sym_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_BANGin] = ACTIONS(4726), - [anon_sym_is] = ACTIONS(4724), - [anon_sym_BANGis] = ACTIONS(4726), - [anon_sym_PLUS] = ACTIONS(4724), - [anon_sym_DASH] = ACTIONS(4724), - [anon_sym_SLASH] = ACTIONS(4724), - [anon_sym_PERCENT] = ACTIONS(4724), - [anon_sym_as_QMARK] = ACTIONS(4726), - [anon_sym_PLUS_PLUS] = ACTIONS(4726), - [anon_sym_DASH_DASH] = ACTIONS(4726), - [anon_sym_BANG] = ACTIONS(4724), - [anon_sym_BANG_BANG] = ACTIONS(4726), - [anon_sym_data] = ACTIONS(4724), - [anon_sym_inner] = ACTIONS(4724), - [anon_sym_value] = ACTIONS(4724), - [anon_sym_expect] = ACTIONS(4724), - [anon_sym_actual] = ACTIONS(4724), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4726), - [anon_sym_continue_AT] = ACTIONS(4726), - [anon_sym_break_AT] = ACTIONS(4726), - [anon_sym_this_AT] = ACTIONS(4726), - [anon_sym_super_AT] = ACTIONS(4726), - [sym_real_literal] = ACTIONS(4726), - [sym_integer_literal] = ACTIONS(4724), - [sym_hex_literal] = ACTIONS(4726), - [sym_bin_literal] = ACTIONS(4726), - [anon_sym_true] = ACTIONS(4724), - [anon_sym_false] = ACTIONS(4724), - [anon_sym_SQUOTE] = ACTIONS(4726), - [sym__backtick_identifier] = ACTIONS(4726), - [sym__automatic_semicolon] = ACTIONS(4726), - [sym_safe_nav] = ACTIONS(4726), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4726), - }, - [3040] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3016), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(6563), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_object] = ACTIONS(4539), - [anon_sym_fun] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_this] = ACTIONS(4539), - [anon_sym_super] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4539), - [sym_label] = ACTIONS(4539), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_null] = ACTIONS(4539), - [anon_sym_if] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_when] = ACTIONS(4539), - [anon_sym_try] = ACTIONS(4539), - [anon_sym_throw] = ACTIONS(4539), - [anon_sym_return] = ACTIONS(4539), - [anon_sym_continue] = ACTIONS(4539), - [anon_sym_break] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_PLUS_EQ] = ACTIONS(4541), - [anon_sym_DASH_EQ] = ACTIONS(4541), - [anon_sym_STAR_EQ] = ACTIONS(4541), - [anon_sym_SLASH_EQ] = ACTIONS(4541), - [anon_sym_PERCENT_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4541), - [anon_sym_continue_AT] = ACTIONS(4541), - [anon_sym_break_AT] = ACTIONS(4541), - [anon_sym_this_AT] = ACTIONS(4541), - [anon_sym_super_AT] = ACTIONS(4541), - [sym_real_literal] = ACTIONS(4541), - [sym_integer_literal] = ACTIONS(4539), - [sym_hex_literal] = ACTIONS(4541), - [sym_bin_literal] = ACTIONS(4541), - [anon_sym_true] = ACTIONS(4539), - [anon_sym_false] = ACTIONS(4539), - [anon_sym_SQUOTE] = ACTIONS(4541), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4541), - }, - [3041] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(6501), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), - }, - [3042] = { - [aux_sym_nullable_type_repeat1] = STATE(3033), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_RBRACK] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4248), - [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_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [sym__quest] = ACTIONS(6591), - [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_value] = 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), - }, - [3043] = { - [aux_sym_type_constraints_repeat1] = STATE(3052), - [sym__alpha_identifier] = ACTIONS(4389), - [anon_sym_AT] = ACTIONS(4391), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_DOT] = ACTIONS(4389), - [anon_sym_as] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4391), - [anon_sym_RBRACE] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(6580), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(4389), - [anon_sym_object] = ACTIONS(4389), - [anon_sym_fun] = ACTIONS(4389), - [anon_sym_SEMI] = ACTIONS(4391), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), - [anon_sym_this] = ACTIONS(4389), - [anon_sym_super] = ACTIONS(4389), - [anon_sym_STAR] = ACTIONS(4389), - [sym_label] = ACTIONS(4389), - [anon_sym_in] = ACTIONS(4389), - [anon_sym_DOT_DOT] = ACTIONS(4391), - [anon_sym_QMARK_COLON] = ACTIONS(4391), - [anon_sym_AMP_AMP] = ACTIONS(4391), - [anon_sym_PIPE_PIPE] = ACTIONS(4391), - [anon_sym_null] = ACTIONS(4389), - [anon_sym_if] = ACTIONS(4389), - [anon_sym_else] = ACTIONS(4389), - [anon_sym_when] = ACTIONS(4389), - [anon_sym_try] = ACTIONS(4389), - [anon_sym_throw] = ACTIONS(4389), - [anon_sym_return] = ACTIONS(4389), - [anon_sym_continue] = ACTIONS(4389), - [anon_sym_break] = ACTIONS(4389), - [anon_sym_COLON_COLON] = ACTIONS(4391), - [anon_sym_PLUS_EQ] = ACTIONS(4391), - [anon_sym_DASH_EQ] = ACTIONS(4391), - [anon_sym_STAR_EQ] = ACTIONS(4391), - [anon_sym_SLASH_EQ] = ACTIONS(4391), - [anon_sym_PERCENT_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ] = ACTIONS(4389), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), - [anon_sym_EQ_EQ] = ACTIONS(4389), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), - [anon_sym_LT_EQ] = ACTIONS(4391), - [anon_sym_GT_EQ] = ACTIONS(4391), - [anon_sym_BANGin] = ACTIONS(4391), - [anon_sym_is] = ACTIONS(4389), - [anon_sym_BANGis] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4389), - [anon_sym_DASH] = ACTIONS(4389), - [anon_sym_SLASH] = ACTIONS(4389), - [anon_sym_PERCENT] = ACTIONS(4389), - [anon_sym_as_QMARK] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4389), - [anon_sym_BANG_BANG] = ACTIONS(4391), - [anon_sym_data] = ACTIONS(4389), - [anon_sym_inner] = ACTIONS(4389), - [anon_sym_value] = ACTIONS(4389), - [anon_sym_expect] = ACTIONS(4389), - [anon_sym_actual] = ACTIONS(4389), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4391), - [anon_sym_continue_AT] = ACTIONS(4391), - [anon_sym_break_AT] = ACTIONS(4391), - [anon_sym_this_AT] = ACTIONS(4391), - [anon_sym_super_AT] = ACTIONS(4391), - [sym_real_literal] = ACTIONS(4391), - [sym_integer_literal] = ACTIONS(4389), - [sym_hex_literal] = ACTIONS(4391), - [sym_bin_literal] = ACTIONS(4391), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [anon_sym_SQUOTE] = ACTIONS(4391), - [sym__backtick_identifier] = ACTIONS(4391), - [sym__automatic_semicolon] = ACTIONS(4391), - [sym_safe_nav] = ACTIONS(4391), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4391), - }, - [3044] = { - [sym_class_body] = STATE(3172), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, - [3045] = { [sym__alpha_identifier] = ACTIONS(4652), [anon_sym_AT] = ACTIONS(4654), - [anon_sym_COLON] = ACTIONS(4652), [anon_sym_LBRACK] = ACTIONS(4654), [anon_sym_DOT] = ACTIONS(4652), [anon_sym_as] = ACTIONS(4652), @@ -362380,6 +361702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(4654), [anon_sym_LPAREN] = ACTIONS(4654), [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_by] = ACTIONS(4652), [anon_sym_LT] = ACTIONS(4652), [anon_sym_GT] = ACTIONS(4652), [anon_sym_where] = ACTIONS(4652), @@ -362454,2399 +361777,1985 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4654), }, - [3046] = { - [sym_import_list] = STATE(3046), - [sym_import_header] = STATE(8689), - [aux_sym_source_file_repeat2] = STATE(3046), - [aux_sym_import_list_repeat1] = STATE(8689), - [ts_builtin_sym_end] = ACTIONS(6593), - [sym__alpha_identifier] = ACTIONS(6595), - [anon_sym_AT] = ACTIONS(6593), - [anon_sym_LBRACK] = ACTIONS(6593), - [anon_sym_import] = ACTIONS(6597), - [anon_sym_typealias] = ACTIONS(6595), - [anon_sym_class] = ACTIONS(6595), - [anon_sym_interface] = ACTIONS(6595), - [anon_sym_enum] = ACTIONS(6595), - [anon_sym_LBRACE] = ACTIONS(6593), - [anon_sym_LPAREN] = ACTIONS(6593), - [anon_sym_val] = ACTIONS(6595), - [anon_sym_var] = ACTIONS(6595), - [anon_sym_object] = ACTIONS(6595), - [anon_sym_fun] = ACTIONS(6595), - [anon_sym_get] = ACTIONS(6595), - [anon_sym_set] = ACTIONS(6595), - [anon_sym_this] = ACTIONS(6595), - [anon_sym_super] = ACTIONS(6595), - [anon_sym_STAR] = ACTIONS(6593), - [sym_label] = ACTIONS(6595), - [anon_sym_for] = ACTIONS(6595), - [anon_sym_while] = ACTIONS(6595), - [anon_sym_do] = ACTIONS(6595), - [anon_sym_null] = ACTIONS(6595), - [anon_sym_if] = ACTIONS(6595), - [anon_sym_when] = ACTIONS(6595), - [anon_sym_try] = ACTIONS(6595), - [anon_sym_throw] = ACTIONS(6595), - [anon_sym_return] = ACTIONS(6595), - [anon_sym_continue] = ACTIONS(6595), - [anon_sym_break] = ACTIONS(6595), - [anon_sym_COLON_COLON] = ACTIONS(6593), - [anon_sym_PLUS] = ACTIONS(6595), - [anon_sym_DASH] = ACTIONS(6595), - [anon_sym_PLUS_PLUS] = ACTIONS(6593), - [anon_sym_DASH_DASH] = ACTIONS(6593), - [anon_sym_BANG] = ACTIONS(6593), - [anon_sym_suspend] = ACTIONS(6595), - [anon_sym_sealed] = ACTIONS(6595), - [anon_sym_annotation] = ACTIONS(6595), - [anon_sym_data] = ACTIONS(6595), - [anon_sym_inner] = ACTIONS(6595), - [anon_sym_value] = ACTIONS(6595), - [anon_sym_override] = ACTIONS(6595), - [anon_sym_lateinit] = ACTIONS(6595), - [anon_sym_public] = ACTIONS(6595), - [anon_sym_private] = ACTIONS(6595), - [anon_sym_internal] = ACTIONS(6595), - [anon_sym_protected] = ACTIONS(6595), - [anon_sym_tailrec] = ACTIONS(6595), - [anon_sym_operator] = ACTIONS(6595), - [anon_sym_infix] = ACTIONS(6595), - [anon_sym_inline] = ACTIONS(6595), - [anon_sym_external] = ACTIONS(6595), - [sym_property_modifier] = ACTIONS(6595), - [anon_sym_abstract] = ACTIONS(6595), - [anon_sym_final] = ACTIONS(6595), - [anon_sym_open] = ACTIONS(6595), - [anon_sym_vararg] = ACTIONS(6595), - [anon_sym_noinline] = ACTIONS(6595), - [anon_sym_crossinline] = ACTIONS(6595), - [anon_sym_expect] = ACTIONS(6595), - [anon_sym_actual] = ACTIONS(6595), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6593), - [anon_sym_continue_AT] = ACTIONS(6593), - [anon_sym_break_AT] = ACTIONS(6593), - [anon_sym_this_AT] = ACTIONS(6593), - [anon_sym_super_AT] = ACTIONS(6593), - [sym_real_literal] = ACTIONS(6593), - [sym_integer_literal] = ACTIONS(6595), - [sym_hex_literal] = ACTIONS(6593), - [sym_bin_literal] = ACTIONS(6593), - [anon_sym_true] = ACTIONS(6595), - [anon_sym_false] = ACTIONS(6595), - [anon_sym_SQUOTE] = ACTIONS(6593), - [sym__backtick_identifier] = ACTIONS(6593), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6593), - }, - [3047] = { - [sym_type_constraints] = STATE(3335), - [sym_enum_class_body] = STATE(3480), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(5637), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_RBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_DASH_GT] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), + [3035] = { + [sym__alpha_identifier] = ACTIONS(4656), + [anon_sym_AT] = ACTIONS(4659), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_as] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_by] = ACTIONS(4656), + [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_SEMI] = ACTIONS(4659), + [anon_sym_get] = ACTIONS(4656), + [anon_sym_set] = ACTIONS(4656), + [anon_sym_this] = ACTIONS(4656), + [anon_sym_super] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4656), + [sym_label] = ACTIONS(4656), + [anon_sym_in] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4659), + [anon_sym_QMARK_COLON] = ACTIONS(4659), + [anon_sym_AMP_AMP] = ACTIONS(4659), + [anon_sym_PIPE_PIPE] = ACTIONS(4659), + [anon_sym_null] = ACTIONS(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(4659), + [anon_sym_PLUS_EQ] = ACTIONS(4659), + [anon_sym_DASH_EQ] = ACTIONS(4659), + [anon_sym_STAR_EQ] = ACTIONS(4659), + [anon_sym_SLASH_EQ] = ACTIONS(4659), + [anon_sym_PERCENT_EQ] = ACTIONS(4659), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), + [anon_sym_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), + [anon_sym_LT_EQ] = ACTIONS(4659), + [anon_sym_GT_EQ] = ACTIONS(4659), + [anon_sym_BANGin] = ACTIONS(4659), + [anon_sym_is] = ACTIONS(4656), + [anon_sym_BANGis] = ACTIONS(4659), + [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(4659), + [anon_sym_PLUS_PLUS] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4659), + [anon_sym_BANG] = ACTIONS(4656), + [anon_sym_BANG_BANG] = ACTIONS(4659), + [anon_sym_data] = ACTIONS(4656), + [anon_sym_inner] = ACTIONS(4656), + [anon_sym_value] = ACTIONS(4656), + [anon_sym_expect] = ACTIONS(4656), + [anon_sym_actual] = ACTIONS(4656), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4659), + [anon_sym_continue_AT] = ACTIONS(4659), + [anon_sym_break_AT] = ACTIONS(4659), + [anon_sym_this_AT] = ACTIONS(4659), + [anon_sym_super_AT] = ACTIONS(4659), + [sym_real_literal] = ACTIONS(4659), + [sym_integer_literal] = ACTIONS(4656), + [sym_hex_literal] = ACTIONS(4659), + [sym_bin_literal] = ACTIONS(4659), + [anon_sym_true] = ACTIONS(4656), + [anon_sym_false] = ACTIONS(4656), + [anon_sym_SQUOTE] = ACTIONS(4659), + [sym__backtick_identifier] = ACTIONS(4659), + [sym__automatic_semicolon] = ACTIONS(4659), + [sym_safe_nav] = ACTIONS(4659), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4659), }, - [3048] = { - [sym_class_body] = STATE(3510), - [sym_type_constraints] = STATE(3312), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6600), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_RBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_DASH_GT] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [3036] = { + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_RBRACK] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_RPAREN] = ACTIONS(4150), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4148), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4148), + [sym__quest] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(4150), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4148), + [anon_sym_while] = ACTIONS(4148), + [anon_sym_DOT_DOT] = ACTIONS(4150), + [anon_sym_QMARK_COLON] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE_PIPE] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4150), + [anon_sym_PLUS_EQ] = ACTIONS(4150), + [anon_sym_DASH_EQ] = ACTIONS(4150), + [anon_sym_STAR_EQ] = ACTIONS(4150), + [anon_sym_SLASH_EQ] = ACTIONS(4150), + [anon_sym_PERCENT_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4150), + [anon_sym_LT_EQ] = ACTIONS(4150), + [anon_sym_GT_EQ] = ACTIONS(4150), + [anon_sym_BANGin] = ACTIONS(4150), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_BANGis] = ACTIONS(4150), + [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(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4150), + [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_value] = 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(4150), + [sym_safe_nav] = ACTIONS(4150), [sym_multiline_comment] = ACTIONS(3), }, - [3049] = { - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4593), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4595), - [anon_sym_super_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), - }, - [3050] = { - [sym_type_constraints] = STATE(3295), - [sym_enum_class_body] = STATE(3510), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6602), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_RBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_DASH_GT] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), + [3037] = { + [sym_function_body] = STATE(3123), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(6547), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), }, - [3051] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_RBRACK] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_as] = ACTIONS(4315), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_RPAREN] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(4315), - [anon_sym_GT] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(6604), - [sym__quest] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [anon_sym_DASH_GT] = ACTIONS(4317), - [sym_label] = ACTIONS(4317), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_while] = ACTIONS(4315), - [anon_sym_DOT_DOT] = ACTIONS(4317), - [anon_sym_QMARK_COLON] = ACTIONS(4317), - [anon_sym_AMP_AMP] = ACTIONS(4317), - [anon_sym_PIPE_PIPE] = ACTIONS(4317), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_PLUS_EQ] = ACTIONS(4317), - [anon_sym_DASH_EQ] = ACTIONS(4317), - [anon_sym_STAR_EQ] = ACTIONS(4317), - [anon_sym_SLASH_EQ] = ACTIONS(4317), - [anon_sym_PERCENT_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ] = ACTIONS(4315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ] = ACTIONS(4315), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4317), - [anon_sym_LT_EQ] = ACTIONS(4317), - [anon_sym_GT_EQ] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_SLASH] = ACTIONS(4315), - [anon_sym_PERCENT] = ACTIONS(4315), - [anon_sym_as_QMARK] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG_BANG] = ACTIONS(4317), - [anon_sym_suspend] = ACTIONS(4315), - [anon_sym_sealed] = ACTIONS(4315), - [anon_sym_annotation] = ACTIONS(4315), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_override] = ACTIONS(4315), - [anon_sym_lateinit] = ACTIONS(4315), - [anon_sym_public] = ACTIONS(4315), - [anon_sym_private] = ACTIONS(4315), - [anon_sym_internal] = ACTIONS(4315), - [anon_sym_protected] = ACTIONS(4315), - [anon_sym_tailrec] = ACTIONS(4315), - [anon_sym_operator] = ACTIONS(4315), - [anon_sym_infix] = ACTIONS(4315), - [anon_sym_inline] = ACTIONS(4315), - [anon_sym_external] = ACTIONS(4315), - [sym_property_modifier] = ACTIONS(4315), - [anon_sym_abstract] = ACTIONS(4315), - [anon_sym_final] = ACTIONS(4315), - [anon_sym_open] = ACTIONS(4315), - [anon_sym_vararg] = ACTIONS(4315), - [anon_sym_noinline] = ACTIONS(4315), - [anon_sym_crossinline] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4317), - [sym_safe_nav] = ACTIONS(4317), - [sym_multiline_comment] = ACTIONS(3), + [3038] = { + [sym_class_body] = STATE(3124), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_object] = ACTIONS(4618), + [anon_sym_fun] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_this] = ACTIONS(4618), + [anon_sym_super] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [sym_label] = ACTIONS(4618), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_when] = ACTIONS(4618), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_throw] = ACTIONS(4618), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4620), + [anon_sym_continue_AT] = ACTIONS(4620), + [anon_sym_break_AT] = ACTIONS(4620), + [anon_sym_this_AT] = ACTIONS(4620), + [anon_sym_super_AT] = ACTIONS(4620), + [sym_real_literal] = ACTIONS(4620), + [sym_integer_literal] = ACTIONS(4618), + [sym_hex_literal] = ACTIONS(4620), + [sym_bin_literal] = ACTIONS(4620), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4620), + [sym__backtick_identifier] = ACTIONS(4620), + [sym__automatic_semicolon] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4620), }, - [3052] = { - [aux_sym_type_constraints_repeat1] = STATE(3052), - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(6606), - [anon_sym_LT] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4431), - [anon_sym_where] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_fun] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_this] = ACTIONS(4431), - [anon_sym_super] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_QMARK_COLON] = ACTIONS(4433), - [anon_sym_AMP_AMP] = ACTIONS(4433), - [anon_sym_PIPE_PIPE] = ACTIONS(4433), - [anon_sym_null] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_try] = ACTIONS(4431), - [anon_sym_throw] = ACTIONS(4431), - [anon_sym_return] = ACTIONS(4431), - [anon_sym_continue] = ACTIONS(4431), - [anon_sym_break] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_PLUS_EQ] = ACTIONS(4433), - [anon_sym_DASH_EQ] = ACTIONS(4433), - [anon_sym_STAR_EQ] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4433), - [anon_sym_PERCENT_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_as_QMARK] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4433), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4433), - [anon_sym_continue_AT] = ACTIONS(4433), - [anon_sym_break_AT] = ACTIONS(4433), - [anon_sym_this_AT] = ACTIONS(4433), - [anon_sym_super_AT] = ACTIONS(4433), - [sym_real_literal] = ACTIONS(4433), - [sym_integer_literal] = ACTIONS(4431), - [sym_hex_literal] = ACTIONS(4433), - [sym_bin_literal] = ACTIONS(4433), - [anon_sym_true] = ACTIONS(4431), - [anon_sym_false] = ACTIONS(4431), - [anon_sym_SQUOTE] = ACTIONS(4433), - [sym__backtick_identifier] = ACTIONS(4433), - [sym__automatic_semicolon] = ACTIONS(4433), - [sym_safe_nav] = ACTIONS(4433), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4433), + [3039] = { + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [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), + [anon_sym_AMP] = ACTIONS(4246), + [sym__quest] = ACTIONS(4246), + [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_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_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), }, - [3053] = { - [sym__alpha_identifier] = ACTIONS(4545), - [anon_sym_AT] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_DOT] = ACTIONS(4545), - [anon_sym_as] = ACTIONS(4545), - [anon_sym_EQ] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4547), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym_COMMA] = ACTIONS(4547), - [anon_sym_by] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4545), - [anon_sym_where] = ACTIONS(4545), - [anon_sym_object] = ACTIONS(4545), - [anon_sym_fun] = ACTIONS(4545), - [anon_sym_SEMI] = ACTIONS(4547), - [anon_sym_get] = ACTIONS(4545), - [anon_sym_set] = ACTIONS(4545), - [anon_sym_this] = ACTIONS(4545), - [anon_sym_super] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4545), - [sym_label] = ACTIONS(4545), - [anon_sym_in] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(4547), - [anon_sym_QMARK_COLON] = ACTIONS(4547), - [anon_sym_AMP_AMP] = ACTIONS(4547), - [anon_sym_PIPE_PIPE] = ACTIONS(4547), - [anon_sym_null] = ACTIONS(4545), - [anon_sym_if] = ACTIONS(4545), - [anon_sym_else] = ACTIONS(4545), - [anon_sym_when] = ACTIONS(4545), - [anon_sym_try] = ACTIONS(4545), - [anon_sym_throw] = ACTIONS(4545), - [anon_sym_return] = ACTIONS(4545), - [anon_sym_continue] = ACTIONS(4545), - [anon_sym_break] = ACTIONS(4545), - [anon_sym_COLON_COLON] = ACTIONS(4547), - [anon_sym_PLUS_EQ] = ACTIONS(4547), - [anon_sym_DASH_EQ] = ACTIONS(4547), - [anon_sym_STAR_EQ] = ACTIONS(4547), - [anon_sym_SLASH_EQ] = ACTIONS(4547), - [anon_sym_PERCENT_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4547), - [anon_sym_EQ_EQ] = ACTIONS(4545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4547), - [anon_sym_LT_EQ] = ACTIONS(4547), - [anon_sym_GT_EQ] = ACTIONS(4547), - [anon_sym_BANGin] = ACTIONS(4547), - [anon_sym_is] = ACTIONS(4545), - [anon_sym_BANGis] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4545), - [anon_sym_PERCENT] = ACTIONS(4545), - [anon_sym_as_QMARK] = ACTIONS(4547), - [anon_sym_PLUS_PLUS] = ACTIONS(4547), - [anon_sym_DASH_DASH] = ACTIONS(4547), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_BANG_BANG] = ACTIONS(4547), - [anon_sym_data] = ACTIONS(4545), - [anon_sym_inner] = ACTIONS(4545), - [anon_sym_value] = ACTIONS(4545), - [anon_sym_expect] = ACTIONS(4545), - [anon_sym_actual] = ACTIONS(4545), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4547), - [anon_sym_continue_AT] = ACTIONS(4547), - [anon_sym_break_AT] = ACTIONS(4547), - [anon_sym_this_AT] = ACTIONS(4547), - [anon_sym_super_AT] = ACTIONS(4547), - [sym_real_literal] = ACTIONS(4547), - [sym_integer_literal] = ACTIONS(4545), - [sym_hex_literal] = ACTIONS(4547), - [sym_bin_literal] = ACTIONS(4547), - [anon_sym_true] = ACTIONS(4545), - [anon_sym_false] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4547), - [sym__backtick_identifier] = ACTIONS(4547), - [sym__automatic_semicolon] = ACTIONS(4547), - [sym_safe_nav] = ACTIONS(4547), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4547), + [3040] = { + [sym_enum_class_body] = STATE(3111), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(3208), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4422), + [anon_sym_super_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), }, - [3054] = { - [sym__alpha_identifier] = ACTIONS(4529), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_as] = ACTIONS(4529), - [anon_sym_EQ] = ACTIONS(4529), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_by] = ACTIONS(4529), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4529), - [anon_sym_where] = ACTIONS(4529), - [anon_sym_object] = ACTIONS(4529), - [anon_sym_fun] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4532), - [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(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [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(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4529), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4529), - [anon_sym_BANGis] = ACTIONS(4532), - [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(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4529), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_data] = ACTIONS(4529), - [anon_sym_inner] = ACTIONS(4529), - [anon_sym_value] = ACTIONS(4529), - [anon_sym_expect] = ACTIONS(4529), - [anon_sym_actual] = ACTIONS(4529), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4529), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4529), - [anon_sym_false] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), + [3041] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2970), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [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(6549), + [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_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = ACTIONS(4513), + [anon_sym_this] = ACTIONS(4513), + [anon_sym_super] = 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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4515), + [anon_sym_super_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), }, - [3055] = { - [sym_function_body] = STATE(3392), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(6609), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_RBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_DASH_GT] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_while] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), + [3042] = { + [sym_enum_class_body] = STATE(3105), + [sym__alpha_identifier] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4630), + [anon_sym_as] = ACTIONS(4630), + [anon_sym_EQ] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_where] = ACTIONS(4630), + [anon_sym_object] = ACTIONS(4630), + [anon_sym_fun] = ACTIONS(4630), + [anon_sym_SEMI] = ACTIONS(4632), + [anon_sym_get] = ACTIONS(4630), + [anon_sym_set] = ACTIONS(4630), + [anon_sym_this] = ACTIONS(4630), + [anon_sym_super] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [sym_label] = ACTIONS(4630), + [anon_sym_in] = ACTIONS(4630), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_QMARK_COLON] = ACTIONS(4632), + [anon_sym_AMP_AMP] = ACTIONS(4632), + [anon_sym_PIPE_PIPE] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4630), + [anon_sym_if] = ACTIONS(4630), + [anon_sym_else] = ACTIONS(4630), + [anon_sym_when] = ACTIONS(4630), + [anon_sym_try] = ACTIONS(4630), + [anon_sym_throw] = ACTIONS(4630), + [anon_sym_return] = ACTIONS(4630), + [anon_sym_continue] = ACTIONS(4630), + [anon_sym_break] = ACTIONS(4630), + [anon_sym_COLON_COLON] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4632), + [anon_sym_DASH_EQ] = ACTIONS(4632), + [anon_sym_STAR_EQ] = ACTIONS(4632), + [anon_sym_SLASH_EQ] = ACTIONS(4632), + [anon_sym_PERCENT_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4632), + [anon_sym_BANGin] = ACTIONS(4632), + [anon_sym_is] = ACTIONS(4630), + [anon_sym_BANGis] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_as_QMARK] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_BANG] = ACTIONS(4630), + [anon_sym_BANG_BANG] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4630), + [anon_sym_inner] = ACTIONS(4630), + [anon_sym_value] = ACTIONS(4630), + [anon_sym_expect] = ACTIONS(4630), + [anon_sym_actual] = ACTIONS(4630), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4632), + [anon_sym_continue_AT] = ACTIONS(4632), + [anon_sym_break_AT] = ACTIONS(4632), + [anon_sym_this_AT] = ACTIONS(4632), + [anon_sym_super_AT] = ACTIONS(4632), + [sym_real_literal] = ACTIONS(4632), + [sym_integer_literal] = ACTIONS(4630), + [sym_hex_literal] = ACTIONS(4632), + [sym_bin_literal] = ACTIONS(4632), + [anon_sym_true] = ACTIONS(4630), + [anon_sym_false] = ACTIONS(4630), + [anon_sym_SQUOTE] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4632), + [sym__automatic_semicolon] = ACTIONS(4632), + [sym_safe_nav] = ACTIONS(4632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4632), }, - [3056] = { - [sym_type_constraints] = STATE(3190), - [sym_function_body] = STATE(3458), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_RBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [3043] = { + [sym_function_body] = STATE(3518), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(6551), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_RBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_RPAREN] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [anon_sym_DASH_GT] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_while] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_PLUS_EQ] = ACTIONS(4240), + [anon_sym_DASH_EQ] = ACTIONS(4240), + [anon_sym_STAR_EQ] = ACTIONS(4240), + [anon_sym_SLASH_EQ] = ACTIONS(4240), + [anon_sym_PERCENT_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__backtick_identifier] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), }, - [3057] = { - [sym__alpha_identifier] = ACTIONS(4597), - [anon_sym_AT] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(4597), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4599), - [anon_sym_super_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(4599), - }, - [3058] = { - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [3059] = { - [sym__alpha_identifier] = ACTIONS(4904), - [anon_sym_AT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4904), - [anon_sym_as] = ACTIONS(4904), - [anon_sym_EQ] = ACTIONS(4904), - [anon_sym_LBRACE] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_where] = ACTIONS(4904), - [anon_sym_object] = ACTIONS(4904), - [anon_sym_fun] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_get] = ACTIONS(4904), - [anon_sym_set] = ACTIONS(4904), - [anon_sym_this] = ACTIONS(4904), - [anon_sym_super] = ACTIONS(4904), - [anon_sym_STAR] = ACTIONS(4904), - [sym_label] = ACTIONS(4904), - [anon_sym_in] = ACTIONS(4904), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_QMARK_COLON] = ACTIONS(4906), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_null] = ACTIONS(4904), - [anon_sym_if] = ACTIONS(4904), - [anon_sym_else] = ACTIONS(4904), - [anon_sym_when] = ACTIONS(4904), - [anon_sym_try] = ACTIONS(4904), - [anon_sym_throw] = ACTIONS(4904), - [anon_sym_return] = ACTIONS(4904), - [anon_sym_continue] = ACTIONS(4904), - [anon_sym_break] = ACTIONS(4904), - [anon_sym_COLON_COLON] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(4906), - [anon_sym_DASH_EQ] = ACTIONS(4906), - [anon_sym_STAR_EQ] = ACTIONS(4906), - [anon_sym_SLASH_EQ] = ACTIONS(4906), - [anon_sym_PERCENT_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_BANGin] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4904), - [anon_sym_BANGis] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_SLASH] = ACTIONS(4904), - [anon_sym_PERCENT] = ACTIONS(4904), - [anon_sym_as_QMARK] = ACTIONS(4906), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_BANG] = ACTIONS(4904), - [anon_sym_BANG_BANG] = ACTIONS(4906), - [anon_sym_data] = ACTIONS(4904), - [anon_sym_inner] = ACTIONS(4904), - [anon_sym_value] = ACTIONS(4904), - [anon_sym_expect] = ACTIONS(4904), - [anon_sym_actual] = ACTIONS(4904), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4906), - [anon_sym_continue_AT] = ACTIONS(4906), - [anon_sym_break_AT] = ACTIONS(4906), - [anon_sym_this_AT] = ACTIONS(4906), - [anon_sym_super_AT] = ACTIONS(4906), - [sym_real_literal] = ACTIONS(4906), - [sym_integer_literal] = ACTIONS(4904), - [sym_hex_literal] = ACTIONS(4906), - [sym_bin_literal] = ACTIONS(4906), - [anon_sym_true] = ACTIONS(4904), - [anon_sym_false] = ACTIONS(4904), - [anon_sym_SQUOTE] = ACTIONS(4906), - [sym__backtick_identifier] = ACTIONS(4906), - [sym__automatic_semicolon] = ACTIONS(4906), - [sym_safe_nav] = ACTIONS(4906), + [3044] = { + [sym_function_body] = STATE(3539), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(6553), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_RBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH_GT] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4906), }, - [3060] = { - [sym__alpha_identifier] = ACTIONS(4456), - [anon_sym_AT] = ACTIONS(4458), - [anon_sym_COLON] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_RBRACK] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4456), - [anon_sym_as] = ACTIONS(4456), - [anon_sym_EQ] = ACTIONS(4456), - [anon_sym_constructor] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4458), - [anon_sym_RBRACE] = ACTIONS(4458), - [anon_sym_LPAREN] = ACTIONS(4458), - [anon_sym_COMMA] = ACTIONS(4458), - [anon_sym_RPAREN] = ACTIONS(4458), - [anon_sym_LT] = ACTIONS(4456), - [anon_sym_GT] = ACTIONS(4456), - [anon_sym_where] = ACTIONS(4456), - [anon_sym_SEMI] = ACTIONS(4458), - [anon_sym_get] = ACTIONS(4456), - [anon_sym_set] = ACTIONS(4456), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_DASH_GT] = ACTIONS(4458), - [sym_label] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4456), - [anon_sym_while] = ACTIONS(4456), - [anon_sym_DOT_DOT] = ACTIONS(4458), - [anon_sym_QMARK_COLON] = ACTIONS(4458), - [anon_sym_AMP_AMP] = ACTIONS(4458), - [anon_sym_PIPE_PIPE] = ACTIONS(4458), - [anon_sym_else] = ACTIONS(4456), - [anon_sym_COLON_COLON] = ACTIONS(4458), - [anon_sym_PLUS_EQ] = ACTIONS(4458), - [anon_sym_DASH_EQ] = ACTIONS(4458), - [anon_sym_STAR_EQ] = ACTIONS(4458), - [anon_sym_SLASH_EQ] = ACTIONS(4458), - [anon_sym_PERCENT_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ] = ACTIONS(4456), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4458), - [anon_sym_LT_EQ] = ACTIONS(4458), - [anon_sym_GT_EQ] = ACTIONS(4458), - [anon_sym_BANGin] = ACTIONS(4458), - [anon_sym_is] = ACTIONS(4456), - [anon_sym_BANGis] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4456), - [anon_sym_DASH] = ACTIONS(4456), - [anon_sym_SLASH] = ACTIONS(4456), - [anon_sym_PERCENT] = ACTIONS(4456), - [anon_sym_as_QMARK] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4458), - [anon_sym_DASH_DASH] = ACTIONS(4458), - [anon_sym_BANG_BANG] = ACTIONS(4458), - [anon_sym_suspend] = ACTIONS(4456), - [anon_sym_sealed] = ACTIONS(4456), - [anon_sym_annotation] = ACTIONS(4456), - [anon_sym_data] = ACTIONS(4456), - [anon_sym_inner] = ACTIONS(4456), - [anon_sym_value] = ACTIONS(4456), - [anon_sym_override] = ACTIONS(4456), - [anon_sym_lateinit] = ACTIONS(4456), - [anon_sym_public] = ACTIONS(4456), - [anon_sym_private] = ACTIONS(4456), - [anon_sym_internal] = ACTIONS(4456), - [anon_sym_protected] = ACTIONS(4456), - [anon_sym_tailrec] = ACTIONS(4456), - [anon_sym_operator] = ACTIONS(4456), - [anon_sym_infix] = ACTIONS(4456), - [anon_sym_inline] = ACTIONS(4456), - [anon_sym_external] = ACTIONS(4456), - [sym_property_modifier] = ACTIONS(4456), - [anon_sym_abstract] = ACTIONS(4456), - [anon_sym_final] = ACTIONS(4456), - [anon_sym_open] = ACTIONS(4456), - [anon_sym_vararg] = ACTIONS(4456), - [anon_sym_noinline] = ACTIONS(4456), - [anon_sym_crossinline] = ACTIONS(4456), - [anon_sym_expect] = ACTIONS(4456), - [anon_sym_actual] = ACTIONS(4456), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4458), - [sym_safe_nav] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(3), + [3045] = { + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4131), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4131), + [sym__quest] = ACTIONS(4131), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4129), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), }, - [3061] = { - [sym_class_body] = STATE(3539), - [sym_type_constraints] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_RBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_while] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), + [3046] = { + [sym__alpha_identifier] = ACTIONS(4599), + [anon_sym_AT] = ACTIONS(4601), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4599), + [anon_sym_as] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4601), + [anon_sym_RBRACE] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4601), + [anon_sym_by] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4599), + [anon_sym_where] = ACTIONS(4599), + [anon_sym_object] = ACTIONS(4599), + [anon_sym_fun] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4601), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), + [anon_sym_this] = ACTIONS(4599), + [anon_sym_super] = ACTIONS(4599), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4599), + [anon_sym_in] = ACTIONS(4599), + [anon_sym_DOT_DOT] = ACTIONS(4601), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4601), + [anon_sym_PIPE_PIPE] = ACTIONS(4601), + [anon_sym_null] = ACTIONS(4599), + [anon_sym_if] = ACTIONS(4599), + [anon_sym_else] = ACTIONS(4599), + [anon_sym_when] = ACTIONS(4599), + [anon_sym_try] = ACTIONS(4599), + [anon_sym_throw] = ACTIONS(4599), + [anon_sym_return] = ACTIONS(4599), + [anon_sym_continue] = ACTIONS(4599), + [anon_sym_break] = ACTIONS(4599), + [anon_sym_COLON_COLON] = ACTIONS(4601), + [anon_sym_PLUS_EQ] = ACTIONS(4601), + [anon_sym_DASH_EQ] = ACTIONS(4601), + [anon_sym_STAR_EQ] = ACTIONS(4601), + [anon_sym_SLASH_EQ] = ACTIONS(4601), + [anon_sym_PERCENT_EQ] = ACTIONS(4601), + [anon_sym_BANG_EQ] = ACTIONS(4599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4601), + [anon_sym_EQ_EQ] = ACTIONS(4599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4601), + [anon_sym_BANGin] = ACTIONS(4601), + [anon_sym_is] = ACTIONS(4599), + [anon_sym_BANGis] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4601), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_BANG_BANG] = ACTIONS(4601), + [anon_sym_data] = ACTIONS(4599), + [anon_sym_inner] = ACTIONS(4599), + [anon_sym_value] = ACTIONS(4599), + [anon_sym_expect] = ACTIONS(4599), + [anon_sym_actual] = ACTIONS(4599), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4601), + [anon_sym_continue_AT] = ACTIONS(4601), + [anon_sym_break_AT] = ACTIONS(4601), + [anon_sym_this_AT] = ACTIONS(4601), + [anon_sym_super_AT] = ACTIONS(4601), + [sym_real_literal] = ACTIONS(4601), + [sym_integer_literal] = ACTIONS(4599), + [sym_hex_literal] = ACTIONS(4601), + [sym_bin_literal] = ACTIONS(4601), + [anon_sym_true] = ACTIONS(4599), + [anon_sym_false] = ACTIONS(4599), + [anon_sym_SQUOTE] = ACTIONS(4601), + [sym__backtick_identifier] = ACTIONS(4601), + [sym__automatic_semicolon] = ACTIONS(4601), + [sym_safe_nav] = ACTIONS(4601), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4601), }, - [3062] = { - [sym__alpha_identifier] = ACTIONS(5047), - [anon_sym_AT] = ACTIONS(5049), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_RBRACE] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5047), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_where] = ACTIONS(5047), - [anon_sym_object] = ACTIONS(5047), - [anon_sym_fun] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5049), - [anon_sym_get] = ACTIONS(5047), - [anon_sym_set] = ACTIONS(5047), - [anon_sym_this] = ACTIONS(5047), - [anon_sym_super] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [sym_label] = ACTIONS(5047), - [anon_sym_in] = ACTIONS(5047), - [anon_sym_DOT_DOT] = ACTIONS(5049), - [anon_sym_QMARK_COLON] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_null] = ACTIONS(5047), - [anon_sym_if] = ACTIONS(5047), - [anon_sym_else] = ACTIONS(5047), - [anon_sym_when] = ACTIONS(5047), - [anon_sym_try] = ACTIONS(5047), - [anon_sym_throw] = ACTIONS(5047), - [anon_sym_return] = ACTIONS(5047), - [anon_sym_continue] = ACTIONS(5047), - [anon_sym_break] = ACTIONS(5047), - [anon_sym_COLON_COLON] = ACTIONS(5049), - [anon_sym_PLUS_EQ] = ACTIONS(5049), - [anon_sym_DASH_EQ] = ACTIONS(5049), - [anon_sym_STAR_EQ] = ACTIONS(5049), - [anon_sym_SLASH_EQ] = ACTIONS(5049), - [anon_sym_PERCENT_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), - [anon_sym_LT_EQ] = ACTIONS(5049), - [anon_sym_GT_EQ] = ACTIONS(5049), - [anon_sym_BANGin] = ACTIONS(5049), - [anon_sym_is] = ACTIONS(5047), - [anon_sym_BANGis] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_as_QMARK] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5047), - [anon_sym_BANG_BANG] = ACTIONS(5049), - [anon_sym_data] = ACTIONS(5047), - [anon_sym_inner] = ACTIONS(5047), - [anon_sym_value] = ACTIONS(5047), - [anon_sym_expect] = ACTIONS(5047), - [anon_sym_actual] = ACTIONS(5047), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5049), - [anon_sym_continue_AT] = ACTIONS(5049), - [anon_sym_break_AT] = ACTIONS(5049), - [anon_sym_this_AT] = ACTIONS(5049), - [anon_sym_super_AT] = ACTIONS(5049), - [sym_real_literal] = ACTIONS(5049), - [sym_integer_literal] = ACTIONS(5047), - [sym_hex_literal] = ACTIONS(5049), - [sym_bin_literal] = ACTIONS(5049), - [anon_sym_true] = ACTIONS(5047), - [anon_sym_false] = ACTIONS(5047), - [anon_sym_SQUOTE] = ACTIONS(5049), - [sym__backtick_identifier] = ACTIONS(5049), - [sym__automatic_semicolon] = ACTIONS(5049), - [sym_safe_nav] = ACTIONS(5049), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5049), + [3047] = { + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4673), + [anon_sym_LBRACK] = ACTIONS(4673), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4673), + [anon_sym_RBRACE] = ACTIONS(4673), + [anon_sym_LPAREN] = ACTIONS(4673), + [anon_sym_COMMA] = ACTIONS(4673), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_object] = ACTIONS(4670), + [anon_sym_fun] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4673), + [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(4673), + [anon_sym_QMARK_COLON] = ACTIONS(4673), + [anon_sym_AMP_AMP] = ACTIONS(4673), + [anon_sym_PIPE_PIPE] = ACTIONS(4673), + [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(4673), + [anon_sym_PLUS_EQ] = ACTIONS(4673), + [anon_sym_DASH_EQ] = ACTIONS(4673), + [anon_sym_STAR_EQ] = ACTIONS(4673), + [anon_sym_SLASH_EQ] = ACTIONS(4673), + [anon_sym_PERCENT_EQ] = ACTIONS(4673), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), + [anon_sym_LT_EQ] = ACTIONS(4673), + [anon_sym_GT_EQ] = ACTIONS(4673), + [anon_sym_BANGin] = ACTIONS(4673), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4673), + [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(4673), + [anon_sym_PLUS_PLUS] = ACTIONS(4673), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_BANG_BANG] = ACTIONS(4673), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4673), + [anon_sym_continue_AT] = ACTIONS(4673), + [anon_sym_break_AT] = ACTIONS(4673), + [anon_sym_this_AT] = ACTIONS(4673), + [anon_sym_super_AT] = ACTIONS(4673), + [sym_real_literal] = ACTIONS(4673), + [sym_integer_literal] = ACTIONS(4670), + [sym_hex_literal] = ACTIONS(4673), + [sym_bin_literal] = ACTIONS(4673), + [anon_sym_true] = ACTIONS(4670), + [anon_sym_false] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4673), + [sym__backtick_identifier] = ACTIONS(4673), + [sym__automatic_semicolon] = ACTIONS(4673), + [sym_safe_nav] = ACTIONS(4673), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4673), }, - [3063] = { - [sym__alpha_identifier] = ACTIONS(4971), - [anon_sym_AT] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4971), - [anon_sym_as] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_where] = ACTIONS(4971), - [anon_sym_object] = ACTIONS(4971), - [anon_sym_fun] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4973), - [anon_sym_get] = ACTIONS(4971), - [anon_sym_set] = ACTIONS(4971), - [anon_sym_this] = ACTIONS(4971), - [anon_sym_super] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [sym_label] = ACTIONS(4971), - [anon_sym_in] = ACTIONS(4971), - [anon_sym_DOT_DOT] = ACTIONS(4973), - [anon_sym_QMARK_COLON] = ACTIONS(4973), - [anon_sym_AMP_AMP] = ACTIONS(4973), - [anon_sym_PIPE_PIPE] = ACTIONS(4973), - [anon_sym_null] = ACTIONS(4971), - [anon_sym_if] = ACTIONS(4971), - [anon_sym_else] = ACTIONS(4971), - [anon_sym_when] = ACTIONS(4971), - [anon_sym_try] = ACTIONS(4971), - [anon_sym_throw] = ACTIONS(4971), - [anon_sym_return] = ACTIONS(4971), - [anon_sym_continue] = ACTIONS(4971), - [anon_sym_break] = ACTIONS(4971), - [anon_sym_COLON_COLON] = ACTIONS(4973), - [anon_sym_PLUS_EQ] = ACTIONS(4973), - [anon_sym_DASH_EQ] = ACTIONS(4973), - [anon_sym_STAR_EQ] = ACTIONS(4973), - [anon_sym_SLASH_EQ] = ACTIONS(4973), - [anon_sym_PERCENT_EQ] = ACTIONS(4973), - [anon_sym_BANG_EQ] = ACTIONS(4971), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4973), - [anon_sym_EQ_EQ] = ACTIONS(4971), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4973), - [anon_sym_LT_EQ] = ACTIONS(4973), - [anon_sym_GT_EQ] = ACTIONS(4973), - [anon_sym_BANGin] = ACTIONS(4973), - [anon_sym_is] = ACTIONS(4971), - [anon_sym_BANGis] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_as_QMARK] = ACTIONS(4973), - [anon_sym_PLUS_PLUS] = ACTIONS(4973), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_BANG_BANG] = ACTIONS(4973), - [anon_sym_data] = ACTIONS(4971), - [anon_sym_inner] = ACTIONS(4971), - [anon_sym_value] = ACTIONS(4971), - [anon_sym_expect] = ACTIONS(4971), - [anon_sym_actual] = ACTIONS(4971), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4973), - [anon_sym_continue_AT] = ACTIONS(4973), - [anon_sym_break_AT] = ACTIONS(4973), - [anon_sym_this_AT] = ACTIONS(4973), - [anon_sym_super_AT] = ACTIONS(4973), - [sym_real_literal] = ACTIONS(4973), - [sym_integer_literal] = ACTIONS(4971), - [sym_hex_literal] = ACTIONS(4973), - [sym_bin_literal] = ACTIONS(4973), - [anon_sym_true] = ACTIONS(4971), - [anon_sym_false] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4973), - [sym__backtick_identifier] = ACTIONS(4973), - [sym__automatic_semicolon] = ACTIONS(4973), - [sym_safe_nav] = ACTIONS(4973), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4973), + [3048] = { + [aux_sym_type_constraints_repeat1] = STATE(3008), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(6532), + [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_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_data] = ACTIONS(4394), + [anon_sym_inner] = ACTIONS(4394), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_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), }, - [3064] = { - [sym__alpha_identifier] = ACTIONS(4446), - [anon_sym_AT] = ACTIONS(4448), - [anon_sym_LBRACK] = ACTIONS(4448), - [anon_sym_RBRACK] = ACTIONS(4448), - [anon_sym_DOT] = ACTIONS(4446), - [anon_sym_as] = ACTIONS(4446), - [anon_sym_EQ] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4448), - [anon_sym_RBRACE] = ACTIONS(4448), - [anon_sym_LPAREN] = ACTIONS(4448), - [anon_sym_COMMA] = ACTIONS(4448), - [anon_sym_RPAREN] = ACTIONS(4448), - [anon_sym_LT] = ACTIONS(4446), - [anon_sym_GT] = ACTIONS(4446), - [anon_sym_where] = ACTIONS(4446), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(4446), - [anon_sym_set] = ACTIONS(4446), - [anon_sym_STAR] = ACTIONS(4446), - [anon_sym_DASH_GT] = ACTIONS(4448), - [sym_label] = ACTIONS(4448), - [anon_sym_in] = ACTIONS(4446), - [anon_sym_while] = ACTIONS(4446), - [anon_sym_DOT_DOT] = ACTIONS(4448), - [anon_sym_QMARK_COLON] = ACTIONS(4448), - [anon_sym_AMP_AMP] = ACTIONS(4448), - [anon_sym_PIPE_PIPE] = ACTIONS(4448), - [anon_sym_else] = ACTIONS(4446), - [anon_sym_catch] = ACTIONS(4446), - [anon_sym_finally] = ACTIONS(4446), - [anon_sym_COLON_COLON] = ACTIONS(4448), - [anon_sym_PLUS_EQ] = ACTIONS(4448), - [anon_sym_DASH_EQ] = ACTIONS(4448), - [anon_sym_STAR_EQ] = ACTIONS(4448), - [anon_sym_SLASH_EQ] = ACTIONS(4448), - [anon_sym_PERCENT_EQ] = ACTIONS(4448), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4448), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4448), - [anon_sym_LT_EQ] = ACTIONS(4448), - [anon_sym_GT_EQ] = ACTIONS(4448), - [anon_sym_BANGin] = ACTIONS(4448), - [anon_sym_is] = ACTIONS(4446), - [anon_sym_BANGis] = ACTIONS(4448), - [anon_sym_PLUS] = ACTIONS(4446), - [anon_sym_DASH] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4446), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_as_QMARK] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4448), - [anon_sym_DASH_DASH] = ACTIONS(4448), - [anon_sym_BANG_BANG] = ACTIONS(4448), - [anon_sym_suspend] = ACTIONS(4446), - [anon_sym_sealed] = ACTIONS(4446), - [anon_sym_annotation] = ACTIONS(4446), - [anon_sym_data] = ACTIONS(4446), - [anon_sym_inner] = ACTIONS(4446), - [anon_sym_value] = ACTIONS(4446), - [anon_sym_override] = ACTIONS(4446), - [anon_sym_lateinit] = ACTIONS(4446), - [anon_sym_public] = ACTIONS(4446), - [anon_sym_private] = ACTIONS(4446), - [anon_sym_internal] = ACTIONS(4446), - [anon_sym_protected] = ACTIONS(4446), - [anon_sym_tailrec] = ACTIONS(4446), - [anon_sym_operator] = ACTIONS(4446), - [anon_sym_infix] = ACTIONS(4446), - [anon_sym_inline] = ACTIONS(4446), - [anon_sym_external] = ACTIONS(4446), - [sym_property_modifier] = ACTIONS(4446), - [anon_sym_abstract] = ACTIONS(4446), - [anon_sym_final] = ACTIONS(4446), - [anon_sym_open] = ACTIONS(4446), - [anon_sym_vararg] = ACTIONS(4446), - [anon_sym_noinline] = ACTIONS(4446), - [anon_sym_crossinline] = ACTIONS(4446), - [anon_sym_expect] = ACTIONS(4446), - [anon_sym_actual] = ACTIONS(4446), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4448), - [sym_safe_nav] = ACTIONS(4448), + [3049] = { + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(6555), + [sym__quest] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4166), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_while] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), [sym_multiline_comment] = ACTIONS(3), }, - [3065] = { - [sym_class_body] = STATE(3543), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(6611), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_RBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_EQ] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_where] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4405), - [anon_sym_DASH_GT] = ACTIONS(4407), - [sym_label] = ACTIONS(4407), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_PLUS_EQ] = ACTIONS(4407), - [anon_sym_DASH_EQ] = ACTIONS(4407), - [anon_sym_STAR_EQ] = ACTIONS(4407), - [anon_sym_SLASH_EQ] = ACTIONS(4407), - [anon_sym_PERCENT_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4405), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), + [3050] = { + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [sym_label] = ACTIONS(3952), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3981), + [anon_sym_DASH_EQ] = ACTIONS(3981), + [anon_sym_STAR_EQ] = ACTIONS(3981), + [anon_sym_SLASH_EQ] = ACTIONS(3981), + [anon_sym_PERCENT_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_suspend] = ACTIONS(3950), + [anon_sym_sealed] = ACTIONS(3950), + [anon_sym_annotation] = ACTIONS(3950), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [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(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3952), + [sym__automatic_semicolon] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), [sym_multiline_comment] = ACTIONS(3), }, - [3066] = { - [sym__alpha_identifier] = ACTIONS(5011), - [anon_sym_AT] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_where] = ACTIONS(5011), - [anon_sym_object] = ACTIONS(5011), - [anon_sym_fun] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5013), - [anon_sym_get] = ACTIONS(5011), - [anon_sym_set] = ACTIONS(5011), - [anon_sym_this] = ACTIONS(5011), - [anon_sym_super] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [sym_label] = ACTIONS(5011), - [anon_sym_in] = ACTIONS(5011), - [anon_sym_DOT_DOT] = ACTIONS(5013), - [anon_sym_QMARK_COLON] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_PIPE_PIPE] = ACTIONS(5013), - [anon_sym_null] = ACTIONS(5011), - [anon_sym_if] = ACTIONS(5011), - [anon_sym_else] = ACTIONS(5011), - [anon_sym_when] = ACTIONS(5011), - [anon_sym_try] = ACTIONS(5011), - [anon_sym_throw] = ACTIONS(5011), - [anon_sym_return] = ACTIONS(5011), - [anon_sym_continue] = ACTIONS(5011), - [anon_sym_break] = ACTIONS(5011), - [anon_sym_COLON_COLON] = ACTIONS(5013), - [anon_sym_PLUS_EQ] = ACTIONS(5013), - [anon_sym_DASH_EQ] = ACTIONS(5013), - [anon_sym_STAR_EQ] = ACTIONS(5013), - [anon_sym_SLASH_EQ] = ACTIONS(5013), - [anon_sym_PERCENT_EQ] = ACTIONS(5013), - [anon_sym_BANG_EQ] = ACTIONS(5011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5013), - [anon_sym_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5013), - [anon_sym_LT_EQ] = ACTIONS(5013), - [anon_sym_GT_EQ] = ACTIONS(5013), - [anon_sym_BANGin] = ACTIONS(5013), - [anon_sym_is] = ACTIONS(5011), - [anon_sym_BANGis] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_as_QMARK] = ACTIONS(5013), - [anon_sym_PLUS_PLUS] = ACTIONS(5013), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_BANG_BANG] = ACTIONS(5013), - [anon_sym_data] = ACTIONS(5011), - [anon_sym_inner] = ACTIONS(5011), - [anon_sym_value] = ACTIONS(5011), - [anon_sym_expect] = ACTIONS(5011), - [anon_sym_actual] = ACTIONS(5011), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5013), - [anon_sym_continue_AT] = ACTIONS(5013), - [anon_sym_break_AT] = ACTIONS(5013), - [anon_sym_this_AT] = ACTIONS(5013), - [anon_sym_super_AT] = ACTIONS(5013), - [sym_real_literal] = ACTIONS(5013), - [sym_integer_literal] = ACTIONS(5011), - [sym_hex_literal] = ACTIONS(5013), - [sym_bin_literal] = ACTIONS(5013), - [anon_sym_true] = ACTIONS(5011), - [anon_sym_false] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5013), - [sym__backtick_identifier] = ACTIONS(5013), - [sym__automatic_semicolon] = ACTIONS(5013), - [sym_safe_nav] = ACTIONS(5013), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5013), - }, - [3067] = { - [sym__alpha_identifier] = ACTIONS(4401), - [anon_sym_AT] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_RBRACK] = ACTIONS(4403), - [anon_sym_DOT] = ACTIONS(4401), - [anon_sym_as] = ACTIONS(4401), - [anon_sym_EQ] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_RPAREN] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_GT] = ACTIONS(4401), - [anon_sym_where] = ACTIONS(4401), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_get] = ACTIONS(4401), - [anon_sym_set] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4401), - [anon_sym_DASH_GT] = ACTIONS(4403), - [sym_label] = ACTIONS(4403), - [anon_sym_in] = ACTIONS(4401), - [anon_sym_while] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4403), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4403), - [anon_sym_PIPE_PIPE] = ACTIONS(4403), - [anon_sym_else] = ACTIONS(4401), - [anon_sym_catch] = ACTIONS(4401), - [anon_sym_finally] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(4403), - [anon_sym_PLUS_EQ] = ACTIONS(4403), - [anon_sym_DASH_EQ] = ACTIONS(4403), - [anon_sym_STAR_EQ] = ACTIONS(4403), - [anon_sym_SLASH_EQ] = ACTIONS(4403), - [anon_sym_PERCENT_EQ] = ACTIONS(4403), - [anon_sym_BANG_EQ] = ACTIONS(4401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), - [anon_sym_EQ_EQ] = ACTIONS(4401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), - [anon_sym_LT_EQ] = ACTIONS(4403), - [anon_sym_GT_EQ] = ACTIONS(4403), - [anon_sym_BANGin] = ACTIONS(4403), - [anon_sym_is] = ACTIONS(4401), - [anon_sym_BANGis] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_SLASH] = ACTIONS(4401), - [anon_sym_PERCENT] = ACTIONS(4401), - [anon_sym_as_QMARK] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4403), - [anon_sym_BANG_BANG] = ACTIONS(4403), - [anon_sym_suspend] = ACTIONS(4401), - [anon_sym_sealed] = ACTIONS(4401), - [anon_sym_annotation] = ACTIONS(4401), - [anon_sym_data] = ACTIONS(4401), - [anon_sym_inner] = ACTIONS(4401), - [anon_sym_value] = ACTIONS(4401), - [anon_sym_override] = ACTIONS(4401), - [anon_sym_lateinit] = ACTIONS(4401), - [anon_sym_public] = ACTIONS(4401), - [anon_sym_private] = ACTIONS(4401), - [anon_sym_internal] = ACTIONS(4401), - [anon_sym_protected] = ACTIONS(4401), - [anon_sym_tailrec] = ACTIONS(4401), - [anon_sym_operator] = ACTIONS(4401), - [anon_sym_infix] = ACTIONS(4401), - [anon_sym_inline] = ACTIONS(4401), - [anon_sym_external] = ACTIONS(4401), - [sym_property_modifier] = ACTIONS(4401), - [anon_sym_abstract] = ACTIONS(4401), - [anon_sym_final] = ACTIONS(4401), - [anon_sym_open] = ACTIONS(4401), - [anon_sym_vararg] = ACTIONS(4401), - [anon_sym_noinline] = ACTIONS(4401), - [anon_sym_crossinline] = ACTIONS(4401), - [anon_sym_expect] = ACTIONS(4401), - [anon_sym_actual] = ACTIONS(4401), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4403), - [sym_safe_nav] = ACTIONS(4403), + [3051] = { + [sym__alpha_identifier] = ACTIONS(4234), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4236), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_object] = ACTIONS(4234), + [anon_sym_fun] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), + [anon_sym_get] = ACTIONS(4234), + [anon_sym_set] = ACTIONS(4234), + [anon_sym_this] = ACTIONS(4234), + [anon_sym_super] = ACTIONS(4234), + [anon_sym_AMP] = ACTIONS(4236), + [sym__quest] = ACTIONS(4236), + [anon_sym_STAR] = ACTIONS(4236), + [sym_label] = ACTIONS(4234), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_null] = ACTIONS(4234), + [anon_sym_if] = ACTIONS(4234), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_when] = ACTIONS(4234), + [anon_sym_try] = ACTIONS(4234), + [anon_sym_throw] = ACTIONS(4234), + [anon_sym_return] = ACTIONS(4234), + [anon_sym_continue] = ACTIONS(4234), + [anon_sym_break] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), + [anon_sym_PLUS] = ACTIONS(4234), + [anon_sym_DASH] = ACTIONS(4234), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4234), + [anon_sym_suspend] = ACTIONS(4234), + [anon_sym_sealed] = ACTIONS(4234), + [anon_sym_annotation] = ACTIONS(4234), + [anon_sym_data] = ACTIONS(4234), + [anon_sym_inner] = ACTIONS(4234), + [anon_sym_value] = ACTIONS(4234), + [anon_sym_override] = ACTIONS(4234), + [anon_sym_lateinit] = ACTIONS(4234), + [anon_sym_public] = ACTIONS(4234), + [anon_sym_private] = ACTIONS(4234), + [anon_sym_internal] = ACTIONS(4234), + [anon_sym_protected] = ACTIONS(4234), + [anon_sym_tailrec] = ACTIONS(4234), + [anon_sym_operator] = ACTIONS(4234), + [anon_sym_infix] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym_external] = ACTIONS(4234), + [sym_property_modifier] = ACTIONS(4234), + [anon_sym_abstract] = ACTIONS(4234), + [anon_sym_final] = ACTIONS(4234), + [anon_sym_open] = ACTIONS(4234), + [anon_sym_vararg] = ACTIONS(4234), + [anon_sym_noinline] = ACTIONS(4234), + [anon_sym_crossinline] = ACTIONS(4234), + [anon_sym_expect] = ACTIONS(4234), + [anon_sym_actual] = ACTIONS(4234), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4236), + [anon_sym_continue_AT] = ACTIONS(4236), + [anon_sym_break_AT] = ACTIONS(4236), + [anon_sym_this_AT] = ACTIONS(4236), + [anon_sym_super_AT] = ACTIONS(4236), + [sym_real_literal] = ACTIONS(4236), + [sym_integer_literal] = ACTIONS(4234), + [sym_hex_literal] = ACTIONS(4236), + [sym_bin_literal] = ACTIONS(4236), + [anon_sym_true] = ACTIONS(4234), + [anon_sym_false] = ACTIONS(4234), + [anon_sym_SQUOTE] = ACTIONS(4236), + [sym__backtick_identifier] = ACTIONS(4236), + [sym__automatic_semicolon] = ACTIONS(4236), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4236), }, - [3068] = { - [sym_function_body] = STATE(3147), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), - }, - [3069] = { - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_RBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [anon_sym_DASH_GT] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [3052] = { + [sym_annotated_lambda] = STATE(3852), + [sym_lambda_literal] = STATE(3853), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(3932), + [anon_sym_AT] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_DOT] = ACTIONS(3932), + [anon_sym_as] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_where] = ACTIONS(3932), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3932), + [anon_sym_set] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [sym_label] = ACTIONS(3934), + [anon_sym_in] = ACTIONS(3932), + [anon_sym_DOT_DOT] = ACTIONS(3934), + [anon_sym_QMARK_COLON] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3934), + [anon_sym_SLASH_EQ] = ACTIONS(3934), + [anon_sym_PERCENT_EQ] = ACTIONS(3934), + [anon_sym_BANG_EQ] = ACTIONS(3932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_BANGin] = ACTIONS(3934), + [anon_sym_is] = ACTIONS(3932), + [anon_sym_BANGis] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_as_QMARK] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [anon_sym_BANG_BANG] = ACTIONS(3934), + [anon_sym_suspend] = ACTIONS(3932), + [anon_sym_sealed] = ACTIONS(3932), + [anon_sym_annotation] = ACTIONS(3932), + [anon_sym_data] = ACTIONS(3932), + [anon_sym_inner] = ACTIONS(3932), + [anon_sym_value] = ACTIONS(3932), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_lateinit] = ACTIONS(3932), + [anon_sym_public] = ACTIONS(3932), + [anon_sym_private] = ACTIONS(3932), + [anon_sym_internal] = ACTIONS(3932), + [anon_sym_protected] = ACTIONS(3932), + [anon_sym_tailrec] = ACTIONS(3932), + [anon_sym_operator] = ACTIONS(3932), + [anon_sym_infix] = ACTIONS(3932), + [anon_sym_inline] = ACTIONS(3932), + [anon_sym_external] = ACTIONS(3932), + [sym_property_modifier] = ACTIONS(3932), + [anon_sym_abstract] = ACTIONS(3932), + [anon_sym_final] = ACTIONS(3932), + [anon_sym_open] = ACTIONS(3932), + [anon_sym_vararg] = ACTIONS(3932), + [anon_sym_noinline] = ACTIONS(3932), + [anon_sym_crossinline] = ACTIONS(3932), + [anon_sym_expect] = ACTIONS(3932), + [anon_sym_actual] = ACTIONS(3932), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3934), + [sym__automatic_semicolon] = ACTIONS(3934), + [sym_safe_nav] = ACTIONS(3934), [sym_multiline_comment] = ACTIONS(3), }, - [3070] = { - [sym_type_constraints] = STATE(3350), - [sym_enum_class_body] = STATE(3475), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), + [3053] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3041), + [sym__alpha_identifier] = ACTIONS(4587), + [anon_sym_AT] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4589), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(6549), + [anon_sym_LT] = ACTIONS(4587), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_where] = ACTIONS(4587), + [anon_sym_object] = ACTIONS(4587), + [anon_sym_fun] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), + [anon_sym_this] = ACTIONS(4587), + [anon_sym_super] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4587), + [sym_label] = ACTIONS(4587), + [anon_sym_in] = ACTIONS(4587), + [anon_sym_DOT_DOT] = ACTIONS(4589), + [anon_sym_QMARK_COLON] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_null] = ACTIONS(4587), + [anon_sym_if] = ACTIONS(4587), + [anon_sym_else] = ACTIONS(4587), + [anon_sym_when] = ACTIONS(4587), + [anon_sym_try] = ACTIONS(4587), + [anon_sym_throw] = ACTIONS(4587), + [anon_sym_return] = ACTIONS(4587), + [anon_sym_continue] = ACTIONS(4587), + [anon_sym_break] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_BANGin] = ACTIONS(4589), + [anon_sym_is] = ACTIONS(4587), + [anon_sym_BANGis] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_as_QMARK] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_BANG_BANG] = ACTIONS(4589), + [anon_sym_data] = ACTIONS(4587), + [anon_sym_inner] = ACTIONS(4587), + [anon_sym_value] = ACTIONS(4587), + [anon_sym_expect] = ACTIONS(4587), + [anon_sym_actual] = ACTIONS(4587), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4589), + [anon_sym_continue_AT] = ACTIONS(4589), + [anon_sym_break_AT] = ACTIONS(4589), + [anon_sym_this_AT] = ACTIONS(4589), + [anon_sym_super_AT] = ACTIONS(4589), + [sym_real_literal] = ACTIONS(4589), + [sym_integer_literal] = ACTIONS(4587), + [sym_hex_literal] = ACTIONS(4589), + [sym_bin_literal] = ACTIONS(4589), + [anon_sym_true] = ACTIONS(4587), + [anon_sym_false] = ACTIONS(4587), + [anon_sym_SQUOTE] = ACTIONS(4589), + [sym__backtick_identifier] = ACTIONS(4589), + [sym__automatic_semicolon] = ACTIONS(4589), + [sym_safe_nav] = ACTIONS(4589), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4589), }, - [3071] = { - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [3054] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(2970), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [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_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_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = ACTIONS(4513), + [anon_sym_this] = ACTIONS(4513), + [anon_sym_super] = 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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4515), + [anon_sym_super_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), }, - [3072] = { - [sym__alpha_identifier] = ACTIONS(4987), - [anon_sym_AT] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_where] = ACTIONS(4987), - [anon_sym_object] = ACTIONS(4987), - [anon_sym_fun] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_get] = ACTIONS(4987), - [anon_sym_set] = ACTIONS(4987), - [anon_sym_this] = ACTIONS(4987), - [anon_sym_super] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [sym_label] = ACTIONS(4987), - [anon_sym_in] = ACTIONS(4987), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_QMARK_COLON] = ACTIONS(4989), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_null] = ACTIONS(4987), - [anon_sym_if] = ACTIONS(4987), - [anon_sym_else] = ACTIONS(4987), - [anon_sym_when] = ACTIONS(4987), - [anon_sym_try] = ACTIONS(4987), - [anon_sym_throw] = ACTIONS(4987), - [anon_sym_return] = ACTIONS(4987), - [anon_sym_continue] = ACTIONS(4987), - [anon_sym_break] = ACTIONS(4987), - [anon_sym_COLON_COLON] = ACTIONS(4989), - [anon_sym_PLUS_EQ] = ACTIONS(4989), - [anon_sym_DASH_EQ] = ACTIONS(4989), - [anon_sym_STAR_EQ] = ACTIONS(4989), - [anon_sym_SLASH_EQ] = ACTIONS(4989), - [anon_sym_PERCENT_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4989), - [anon_sym_EQ_EQ] = ACTIONS(4987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4989), - [anon_sym_GT_EQ] = ACTIONS(4989), - [anon_sym_BANGin] = ACTIONS(4989), - [anon_sym_is] = ACTIONS(4987), - [anon_sym_BANGis] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_as_QMARK] = ACTIONS(4989), - [anon_sym_PLUS_PLUS] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_BANG_BANG] = ACTIONS(4989), - [anon_sym_data] = ACTIONS(4987), - [anon_sym_inner] = ACTIONS(4987), - [anon_sym_value] = ACTIONS(4987), - [anon_sym_expect] = ACTIONS(4987), - [anon_sym_actual] = ACTIONS(4987), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4989), - [anon_sym_continue_AT] = ACTIONS(4989), - [anon_sym_break_AT] = ACTIONS(4989), - [anon_sym_this_AT] = ACTIONS(4989), - [anon_sym_super_AT] = ACTIONS(4989), - [sym_real_literal] = ACTIONS(4989), - [sym_integer_literal] = ACTIONS(4987), - [sym_hex_literal] = ACTIONS(4989), - [sym_bin_literal] = ACTIONS(4989), - [anon_sym_true] = ACTIONS(4987), - [anon_sym_false] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4989), - [sym__backtick_identifier] = ACTIONS(4989), - [sym__automatic_semicolon] = ACTIONS(4989), - [sym_safe_nav] = ACTIONS(4989), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4989), + [3055] = { + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_object] = ACTIONS(4148), + [anon_sym_fun] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [anon_sym_this] = ACTIONS(4148), + [anon_sym_super] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4150), + [sym__quest] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4150), + [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(4150), + [anon_sym_BANGin] = ACTIONS(4150), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_BANGis] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [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_value] = 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(4150), + [anon_sym_continue_AT] = ACTIONS(4150), + [anon_sym_break_AT] = ACTIONS(4150), + [anon_sym_this_AT] = ACTIONS(4150), + [anon_sym_super_AT] = ACTIONS(4150), + [sym_real_literal] = ACTIONS(4150), + [sym_integer_literal] = ACTIONS(4148), + [sym_hex_literal] = ACTIONS(4150), + [sym_bin_literal] = ACTIONS(4150), + [anon_sym_true] = ACTIONS(4148), + [anon_sym_false] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4150), + [sym__automatic_semicolon] = ACTIONS(4150), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4150), }, - [3073] = { - [sym__alpha_identifier] = ACTIONS(5161), - [anon_sym_AT] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_as] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_where] = ACTIONS(5161), - [anon_sym_object] = ACTIONS(5161), - [anon_sym_fun] = ACTIONS(5161), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_get] = ACTIONS(5161), - [anon_sym_set] = ACTIONS(5161), - [anon_sym_this] = ACTIONS(5161), - [anon_sym_super] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [sym_label] = ACTIONS(5161), - [anon_sym_in] = ACTIONS(5161), - [anon_sym_DOT_DOT] = ACTIONS(5163), - [anon_sym_QMARK_COLON] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_null] = ACTIONS(5161), - [anon_sym_if] = ACTIONS(5161), - [anon_sym_else] = ACTIONS(5161), - [anon_sym_when] = ACTIONS(5161), - [anon_sym_try] = ACTIONS(5161), - [anon_sym_throw] = ACTIONS(5161), - [anon_sym_return] = ACTIONS(5161), - [anon_sym_continue] = ACTIONS(5161), - [anon_sym_break] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_PLUS_EQ] = ACTIONS(5163), - [anon_sym_DASH_EQ] = ACTIONS(5163), - [anon_sym_STAR_EQ] = ACTIONS(5163), - [anon_sym_SLASH_EQ] = ACTIONS(5163), - [anon_sym_PERCENT_EQ] = ACTIONS(5163), - [anon_sym_BANG_EQ] = ACTIONS(5161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), - [anon_sym_EQ_EQ] = ACTIONS(5161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), - [anon_sym_LT_EQ] = ACTIONS(5163), - [anon_sym_GT_EQ] = ACTIONS(5163), - [anon_sym_BANGin] = ACTIONS(5163), - [anon_sym_is] = ACTIONS(5161), - [anon_sym_BANGis] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_PERCENT] = ACTIONS(5161), - [anon_sym_as_QMARK] = ACTIONS(5163), - [anon_sym_PLUS_PLUS] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5161), - [anon_sym_BANG_BANG] = ACTIONS(5163), - [anon_sym_data] = ACTIONS(5161), - [anon_sym_inner] = ACTIONS(5161), - [anon_sym_value] = ACTIONS(5161), - [anon_sym_expect] = ACTIONS(5161), - [anon_sym_actual] = ACTIONS(5161), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5163), - [anon_sym_continue_AT] = ACTIONS(5163), - [anon_sym_break_AT] = ACTIONS(5163), - [anon_sym_this_AT] = ACTIONS(5163), - [anon_sym_super_AT] = ACTIONS(5163), - [sym_real_literal] = ACTIONS(5163), - [sym_integer_literal] = ACTIONS(5161), - [sym_hex_literal] = ACTIONS(5163), - [sym_bin_literal] = ACTIONS(5163), - [anon_sym_true] = ACTIONS(5161), - [anon_sym_false] = ACTIONS(5161), - [anon_sym_SQUOTE] = ACTIONS(5163), - [sym__backtick_identifier] = ACTIONS(5163), - [sym__automatic_semicolon] = ACTIONS(5163), - [sym_safe_nav] = ACTIONS(5163), + [3056] = { + [sym_annotated_lambda] = STATE(3977), + [sym_lambda_literal] = STATE(3853), + [sym_annotation] = STATE(8352), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8352), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5163), }, - [3074] = { + [3057] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4700), + [anon_sym_super_AT] = ACTIONS(4700), + [anon_sym_AT2] = ACTIONS(6557), + [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), + }, + [3058] = { [sym__alpha_identifier] = ACTIONS(5007), [anon_sym_AT] = ACTIONS(5009), [anon_sym_LBRACK] = ACTIONS(5009), @@ -364857,7 +363766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(5009), [anon_sym_LPAREN] = ACTIONS(5009), [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_LT] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(6559), [anon_sym_GT] = ACTIONS(5007), [anon_sym_where] = ACTIONS(5007), [anon_sym_object] = ACTIONS(5007), @@ -364931,3662 +363840,1282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5009), }, - [3075] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_EQ] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_object] = ACTIONS(4315), - [anon_sym_fun] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_this] = ACTIONS(4315), - [anon_sym_super] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(6613), - [sym__quest] = ACTIONS(4317), - [anon_sym_STAR] = ACTIONS(4317), - [sym_label] = ACTIONS(4315), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4315), - [anon_sym_if] = ACTIONS(4315), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_when] = ACTIONS(4315), - [anon_sym_try] = ACTIONS(4315), - [anon_sym_throw] = ACTIONS(4315), - [anon_sym_return] = ACTIONS(4315), - [anon_sym_continue] = ACTIONS(4315), - [anon_sym_break] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG] = ACTIONS(4315), - [anon_sym_suspend] = ACTIONS(4315), - [anon_sym_sealed] = ACTIONS(4315), - [anon_sym_annotation] = ACTIONS(4315), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_override] = ACTIONS(4315), - [anon_sym_lateinit] = ACTIONS(4315), - [anon_sym_public] = ACTIONS(4315), - [anon_sym_private] = ACTIONS(4315), - [anon_sym_internal] = ACTIONS(4315), - [anon_sym_protected] = ACTIONS(4315), - [anon_sym_tailrec] = ACTIONS(4315), - [anon_sym_operator] = ACTIONS(4315), - [anon_sym_infix] = ACTIONS(4315), - [anon_sym_inline] = ACTIONS(4315), - [anon_sym_external] = ACTIONS(4315), - [sym_property_modifier] = ACTIONS(4315), - [anon_sym_abstract] = ACTIONS(4315), - [anon_sym_final] = ACTIONS(4315), - [anon_sym_open] = ACTIONS(4315), - [anon_sym_vararg] = ACTIONS(4315), - [anon_sym_noinline] = ACTIONS(4315), - [anon_sym_crossinline] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4317), - [anon_sym_continue_AT] = ACTIONS(4317), - [anon_sym_break_AT] = ACTIONS(4317), - [anon_sym_this_AT] = ACTIONS(4317), - [anon_sym_super_AT] = ACTIONS(4317), - [sym_real_literal] = ACTIONS(4317), - [sym_integer_literal] = ACTIONS(4315), - [sym_hex_literal] = ACTIONS(4317), - [sym_bin_literal] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_SQUOTE] = ACTIONS(4317), - [sym__backtick_identifier] = ACTIONS(4317), - [sym__automatic_semicolon] = ACTIONS(4317), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4317), - }, - [3076] = { - [sym_class_body] = STATE(3584), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(6615), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_RBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_RPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [anon_sym_DASH_GT] = ACTIONS(4379), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_while] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - }, - [3077] = { - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACE] = ACTIONS(4208), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), - }, - [3078] = { - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_RBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_DASH_GT] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), + [3059] = { + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_object] = ACTIONS(4412), + [anon_sym_fun] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_this] = ACTIONS(4412), + [anon_sym_super] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [sym_label] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_null] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_try] = ACTIONS(4412), + [anon_sym_throw] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG] = ACTIONS(4412), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4414), + [anon_sym_continue_AT] = ACTIONS(4414), + [anon_sym_break_AT] = ACTIONS(4414), + [anon_sym_this_AT] = ACTIONS(4414), + [anon_sym_super_AT] = ACTIONS(4414), + [sym_real_literal] = ACTIONS(4414), + [sym_integer_literal] = ACTIONS(4412), + [sym_hex_literal] = ACTIONS(4414), + [sym_bin_literal] = ACTIONS(4414), + [anon_sym_true] = ACTIONS(4412), + [anon_sym_false] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4414), + [sym__backtick_identifier] = ACTIONS(4414), + [sym__automatic_semicolon] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4414), }, - [3079] = { - [sym_catch_block] = STATE(3273), - [sym_finally_block] = STATE(3860), - [aux_sym_try_expression_repeat1] = STATE(3273), - [sym__alpha_identifier] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_EQ] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_get] = ACTIONS(4104), - [anon_sym_set] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [sym_label] = ACTIONS(4106), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_QMARK_COLON] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(4104), - [anon_sym_catch] = ACTIONS(6617), - [anon_sym_finally] = ACTIONS(6619), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_BANGin] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_BANGis] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_as_QMARK] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_BANG_BANG] = ACTIONS(4106), - [anon_sym_suspend] = ACTIONS(4104), - [anon_sym_sealed] = ACTIONS(4104), - [anon_sym_annotation] = ACTIONS(4104), - [anon_sym_data] = ACTIONS(4104), - [anon_sym_inner] = ACTIONS(4104), - [anon_sym_value] = ACTIONS(4104), - [anon_sym_override] = ACTIONS(4104), - [anon_sym_lateinit] = ACTIONS(4104), - [anon_sym_public] = ACTIONS(4104), - [anon_sym_private] = ACTIONS(4104), - [anon_sym_internal] = ACTIONS(4104), - [anon_sym_protected] = ACTIONS(4104), - [anon_sym_tailrec] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_infix] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym_external] = ACTIONS(4104), - [sym_property_modifier] = ACTIONS(4104), - [anon_sym_abstract] = ACTIONS(4104), - [anon_sym_final] = ACTIONS(4104), - [anon_sym_open] = ACTIONS(4104), - [anon_sym_vararg] = ACTIONS(4104), - [anon_sym_noinline] = ACTIONS(4104), - [anon_sym_crossinline] = ACTIONS(4104), - [anon_sym_expect] = ACTIONS(4104), - [anon_sym_actual] = ACTIONS(4104), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4106), - [sym__automatic_semicolon] = ACTIONS(4106), - [sym_safe_nav] = ACTIONS(4106), - [sym_multiline_comment] = ACTIONS(3), + [3060] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_object] = ACTIONS(4936), + [anon_sym_fun] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_this] = ACTIONS(4936), + [anon_sym_super] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [sym_label] = ACTIONS(4936), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_null] = ACTIONS(4936), + [anon_sym_if] = ACTIONS(4936), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_when] = ACTIONS(4936), + [anon_sym_try] = ACTIONS(4936), + [anon_sym_throw] = ACTIONS(4936), + [anon_sym_return] = ACTIONS(4936), + [anon_sym_continue] = ACTIONS(4936), + [anon_sym_break] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4938), + [anon_sym_continue_AT] = ACTIONS(4938), + [anon_sym_break_AT] = ACTIONS(4938), + [anon_sym_this_AT] = ACTIONS(4938), + [anon_sym_super_AT] = ACTIONS(4938), + [sym_real_literal] = ACTIONS(4938), + [sym_integer_literal] = ACTIONS(4936), + [sym_hex_literal] = ACTIONS(4938), + [sym_bin_literal] = ACTIONS(4938), + [anon_sym_true] = ACTIONS(4936), + [anon_sym_false] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4938), + [sym__backtick_identifier] = ACTIONS(4938), + [sym__automatic_semicolon] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4938), }, - [3080] = { - [sym_class_body] = STATE(3475), - [sym_type_constraints] = STATE(3341), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [3061] = { + [sym_function_body] = STATE(3396), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [anon_sym_DASH_GT] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [3081] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5003), - [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_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_value] = ACTIONS(5003), - [anon_sym_expect] = ACTIONS(5003), - [anon_sym_actual] = ACTIONS(5003), + [3062] = { + [sym__alpha_identifier] = ACTIONS(4932), + [anon_sym_AT] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4934), + [anon_sym_DOT] = ACTIONS(4932), + [anon_sym_as] = ACTIONS(4932), + [anon_sym_EQ] = ACTIONS(4932), + [anon_sym_LBRACE] = ACTIONS(4934), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_LPAREN] = ACTIONS(4934), + [anon_sym_COMMA] = ACTIONS(4934), + [anon_sym_LT] = ACTIONS(4932), + [anon_sym_GT] = ACTIONS(4932), + [anon_sym_where] = ACTIONS(4932), + [anon_sym_object] = ACTIONS(4932), + [anon_sym_fun] = ACTIONS(4932), + [anon_sym_SEMI] = ACTIONS(4934), + [anon_sym_get] = ACTIONS(4932), + [anon_sym_set] = ACTIONS(4932), + [anon_sym_this] = ACTIONS(4932), + [anon_sym_super] = ACTIONS(4932), + [anon_sym_STAR] = ACTIONS(4932), + [sym_label] = ACTIONS(4932), + [anon_sym_in] = ACTIONS(4932), + [anon_sym_DOT_DOT] = ACTIONS(4934), + [anon_sym_QMARK_COLON] = ACTIONS(4934), + [anon_sym_AMP_AMP] = ACTIONS(4934), + [anon_sym_PIPE_PIPE] = ACTIONS(4934), + [anon_sym_null] = ACTIONS(4932), + [anon_sym_if] = ACTIONS(4932), + [anon_sym_else] = ACTIONS(4932), + [anon_sym_when] = ACTIONS(4932), + [anon_sym_try] = ACTIONS(4932), + [anon_sym_throw] = ACTIONS(4932), + [anon_sym_return] = ACTIONS(4932), + [anon_sym_continue] = ACTIONS(4932), + [anon_sym_break] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4934), + [anon_sym_PLUS_EQ] = ACTIONS(4934), + [anon_sym_DASH_EQ] = ACTIONS(4934), + [anon_sym_STAR_EQ] = ACTIONS(4934), + [anon_sym_SLASH_EQ] = ACTIONS(4934), + [anon_sym_PERCENT_EQ] = ACTIONS(4934), + [anon_sym_BANG_EQ] = ACTIONS(4932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4934), + [anon_sym_EQ_EQ] = ACTIONS(4932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4934), + [anon_sym_LT_EQ] = ACTIONS(4934), + [anon_sym_GT_EQ] = ACTIONS(4934), + [anon_sym_BANGin] = ACTIONS(4934), + [anon_sym_is] = ACTIONS(4932), + [anon_sym_BANGis] = ACTIONS(4934), + [anon_sym_PLUS] = ACTIONS(4932), + [anon_sym_DASH] = ACTIONS(4932), + [anon_sym_SLASH] = ACTIONS(4932), + [anon_sym_PERCENT] = ACTIONS(4932), + [anon_sym_as_QMARK] = ACTIONS(4934), + [anon_sym_PLUS_PLUS] = ACTIONS(4934), + [anon_sym_DASH_DASH] = ACTIONS(4934), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_BANG_BANG] = ACTIONS(4934), + [anon_sym_data] = ACTIONS(4932), + [anon_sym_inner] = ACTIONS(4932), + [anon_sym_value] = ACTIONS(4932), + [anon_sym_expect] = ACTIONS(4932), + [anon_sym_actual] = ACTIONS(4932), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5005), - [anon_sym_continue_AT] = ACTIONS(5005), - [anon_sym_break_AT] = ACTIONS(5005), - [anon_sym_this_AT] = ACTIONS(5005), - [anon_sym_super_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), - }, - [3082] = { - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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), + [anon_sym_return_AT] = ACTIONS(4934), + [anon_sym_continue_AT] = ACTIONS(4934), + [anon_sym_break_AT] = ACTIONS(4934), + [anon_sym_this_AT] = ACTIONS(4934), + [anon_sym_super_AT] = ACTIONS(4934), + [sym_real_literal] = ACTIONS(4934), + [sym_integer_literal] = ACTIONS(4932), + [sym_hex_literal] = ACTIONS(4934), + [sym_bin_literal] = ACTIONS(4934), + [anon_sym_true] = ACTIONS(4932), + [anon_sym_false] = ACTIONS(4932), + [anon_sym_SQUOTE] = ACTIONS(4934), + [sym__backtick_identifier] = ACTIONS(4934), + [sym__automatic_semicolon] = ACTIONS(4934), + [sym_safe_nav] = ACTIONS(4934), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4934), }, - [3083] = { - [sym_type_constraints] = STATE(3339), - [sym_enum_class_body] = STATE(3469), - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [anon_sym_DASH_GT] = ACTIONS(4417), - [sym_label] = ACTIONS(4417), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_while] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_suspend] = ACTIONS(4415), - [anon_sym_sealed] = ACTIONS(4415), - [anon_sym_annotation] = ACTIONS(4415), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_override] = ACTIONS(4415), - [anon_sym_lateinit] = ACTIONS(4415), - [anon_sym_public] = ACTIONS(4415), - [anon_sym_private] = ACTIONS(4415), - [anon_sym_internal] = ACTIONS(4415), - [anon_sym_protected] = ACTIONS(4415), - [anon_sym_tailrec] = ACTIONS(4415), - [anon_sym_operator] = ACTIONS(4415), - [anon_sym_infix] = ACTIONS(4415), - [anon_sym_inline] = ACTIONS(4415), - [anon_sym_external] = ACTIONS(4415), - [sym_property_modifier] = ACTIONS(4415), - [anon_sym_abstract] = ACTIONS(4415), - [anon_sym_final] = ACTIONS(4415), - [anon_sym_open] = ACTIONS(4415), - [anon_sym_vararg] = ACTIONS(4415), - [anon_sym_noinline] = ACTIONS(4415), - [anon_sym_crossinline] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), + [3063] = { + [sym__alpha_identifier] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4930), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_where] = ACTIONS(4928), + [anon_sym_object] = ACTIONS(4928), + [anon_sym_fun] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4930), + [anon_sym_get] = ACTIONS(4928), + [anon_sym_set] = ACTIONS(4928), + [anon_sym_this] = ACTIONS(4928), + [anon_sym_super] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [sym_label] = ACTIONS(4928), + [anon_sym_in] = ACTIONS(4928), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_QMARK_COLON] = ACTIONS(4930), + [anon_sym_AMP_AMP] = ACTIONS(4930), + [anon_sym_PIPE_PIPE] = ACTIONS(4930), + [anon_sym_null] = ACTIONS(4928), + [anon_sym_if] = ACTIONS(4928), + [anon_sym_else] = ACTIONS(4928), + [anon_sym_when] = ACTIONS(4928), + [anon_sym_try] = ACTIONS(4928), + [anon_sym_throw] = ACTIONS(4928), + [anon_sym_return] = ACTIONS(4928), + [anon_sym_continue] = ACTIONS(4928), + [anon_sym_break] = ACTIONS(4928), + [anon_sym_COLON_COLON] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4930), + [anon_sym_DASH_EQ] = ACTIONS(4930), + [anon_sym_STAR_EQ] = ACTIONS(4930), + [anon_sym_SLASH_EQ] = ACTIONS(4930), + [anon_sym_PERCENT_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4930), + [anon_sym_BANGin] = ACTIONS(4930), + [anon_sym_is] = ACTIONS(4928), + [anon_sym_BANGis] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_as_QMARK] = ACTIONS(4930), + [anon_sym_PLUS_PLUS] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_BANG_BANG] = ACTIONS(4930), + [anon_sym_data] = ACTIONS(4928), + [anon_sym_inner] = ACTIONS(4928), + [anon_sym_value] = ACTIONS(4928), + [anon_sym_expect] = ACTIONS(4928), + [anon_sym_actual] = ACTIONS(4928), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4930), + [anon_sym_continue_AT] = ACTIONS(4930), + [anon_sym_break_AT] = ACTIONS(4930), + [anon_sym_this_AT] = ACTIONS(4930), + [anon_sym_super_AT] = ACTIONS(4930), + [sym_real_literal] = ACTIONS(4930), + [sym_integer_literal] = ACTIONS(4928), + [sym_hex_literal] = ACTIONS(4930), + [sym_bin_literal] = ACTIONS(4930), + [anon_sym_true] = ACTIONS(4928), + [anon_sym_false] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4930), + [sym__backtick_identifier] = ACTIONS(4930), + [sym__automatic_semicolon] = ACTIONS(4930), + [sym_safe_nav] = ACTIONS(4930), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4930), }, - [3084] = { - [sym__alpha_identifier] = ACTIONS(5067), - [anon_sym_AT] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5067), - [anon_sym_as] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5067), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_where] = ACTIONS(5067), - [anon_sym_object] = ACTIONS(5067), - [anon_sym_fun] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5069), - [anon_sym_get] = ACTIONS(5067), - [anon_sym_set] = ACTIONS(5067), - [anon_sym_this] = ACTIONS(5067), - [anon_sym_super] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [sym_label] = ACTIONS(5067), - [anon_sym_in] = ACTIONS(5067), - [anon_sym_DOT_DOT] = ACTIONS(5069), - [anon_sym_QMARK_COLON] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_null] = ACTIONS(5067), - [anon_sym_if] = ACTIONS(5067), - [anon_sym_else] = ACTIONS(5067), - [anon_sym_when] = ACTIONS(5067), - [anon_sym_try] = ACTIONS(5067), - [anon_sym_throw] = ACTIONS(5067), - [anon_sym_return] = ACTIONS(5067), - [anon_sym_continue] = ACTIONS(5067), - [anon_sym_break] = ACTIONS(5067), - [anon_sym_COLON_COLON] = ACTIONS(5069), - [anon_sym_PLUS_EQ] = ACTIONS(5069), - [anon_sym_DASH_EQ] = ACTIONS(5069), - [anon_sym_STAR_EQ] = ACTIONS(5069), - [anon_sym_SLASH_EQ] = ACTIONS(5069), - [anon_sym_PERCENT_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_BANGin] = ACTIONS(5069), - [anon_sym_is] = ACTIONS(5067), - [anon_sym_BANGis] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_as_QMARK] = ACTIONS(5069), - [anon_sym_PLUS_PLUS] = ACTIONS(5069), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5067), - [anon_sym_BANG_BANG] = ACTIONS(5069), - [anon_sym_data] = ACTIONS(5067), - [anon_sym_inner] = ACTIONS(5067), - [anon_sym_value] = ACTIONS(5067), - [anon_sym_expect] = ACTIONS(5067), - [anon_sym_actual] = ACTIONS(5067), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5069), - [anon_sym_continue_AT] = ACTIONS(5069), - [anon_sym_break_AT] = ACTIONS(5069), - [anon_sym_this_AT] = ACTIONS(5069), - [anon_sym_super_AT] = ACTIONS(5069), - [sym_real_literal] = ACTIONS(5069), - [sym_integer_literal] = ACTIONS(5067), - [sym_hex_literal] = ACTIONS(5069), - [sym_bin_literal] = ACTIONS(5069), - [anon_sym_true] = ACTIONS(5067), - [anon_sym_false] = ACTIONS(5067), - [anon_sym_SQUOTE] = ACTIONS(5069), - [sym__backtick_identifier] = ACTIONS(5069), - [sym__automatic_semicolon] = ACTIONS(5069), - [sym_safe_nav] = ACTIONS(5069), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5069), + [3064] = { + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_object] = ACTIONS(4884), + [anon_sym_fun] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_this] = ACTIONS(4884), + [anon_sym_super] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [sym_label] = ACTIONS(4884), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4884), + [anon_sym_if] = ACTIONS(4884), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_when] = ACTIONS(4884), + [anon_sym_try] = ACTIONS(4884), + [anon_sym_throw] = ACTIONS(4884), + [anon_sym_return] = ACTIONS(4884), + [anon_sym_continue] = ACTIONS(4884), + [anon_sym_break] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG] = ACTIONS(4884), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4886), + [anon_sym_continue_AT] = ACTIONS(4886), + [anon_sym_break_AT] = ACTIONS(4886), + [anon_sym_this_AT] = ACTIONS(4886), + [anon_sym_super_AT] = ACTIONS(4886), + [sym_real_literal] = ACTIONS(4886), + [sym_integer_literal] = ACTIONS(4884), + [sym_hex_literal] = ACTIONS(4886), + [sym_bin_literal] = ACTIONS(4886), + [anon_sym_true] = ACTIONS(4884), + [anon_sym_false] = ACTIONS(4884), + [anon_sym_SQUOTE] = ACTIONS(4886), + [sym__backtick_identifier] = ACTIONS(4886), + [sym__automatic_semicolon] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4886), }, - [3085] = { - [sym_function_body] = STATE(3527), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_RBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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), + [3065] = { + [sym__alpha_identifier] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_object] = ACTIONS(4920), + [anon_sym_fun] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym_get] = ACTIONS(4920), + [anon_sym_set] = ACTIONS(4920), + [anon_sym_this] = ACTIONS(4920), + [anon_sym_super] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [sym_label] = ACTIONS(4920), + [anon_sym_in] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_QMARK_COLON] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_null] = ACTIONS(4920), + [anon_sym_if] = ACTIONS(4920), + [anon_sym_else] = ACTIONS(4920), + [anon_sym_when] = ACTIONS(4920), + [anon_sym_try] = ACTIONS(4920), + [anon_sym_throw] = ACTIONS(4920), + [anon_sym_return] = ACTIONS(4920), + [anon_sym_continue] = ACTIONS(4920), + [anon_sym_break] = ACTIONS(4920), + [anon_sym_COLON_COLON] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4922), + [anon_sym_DASH_EQ] = ACTIONS(4922), + [anon_sym_STAR_EQ] = ACTIONS(4922), + [anon_sym_SLASH_EQ] = ACTIONS(4922), + [anon_sym_PERCENT_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4922), + [anon_sym_BANGin] = ACTIONS(4922), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_BANGis] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_as_QMARK] = ACTIONS(4922), + [anon_sym_PLUS_PLUS] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_BANG_BANG] = ACTIONS(4922), + [anon_sym_data] = ACTIONS(4920), + [anon_sym_inner] = ACTIONS(4920), + [anon_sym_value] = ACTIONS(4920), + [anon_sym_expect] = ACTIONS(4920), + [anon_sym_actual] = ACTIONS(4920), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4922), + [anon_sym_continue_AT] = ACTIONS(4922), + [anon_sym_break_AT] = ACTIONS(4922), + [anon_sym_this_AT] = ACTIONS(4922), + [anon_sym_super_AT] = ACTIONS(4922), + [sym_real_literal] = ACTIONS(4922), + [sym_integer_literal] = ACTIONS(4920), + [sym_hex_literal] = ACTIONS(4922), + [sym_bin_literal] = ACTIONS(4922), + [anon_sym_true] = ACTIONS(4920), + [anon_sym_false] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4922), + [sym__backtick_identifier] = ACTIONS(4922), + [sym__automatic_semicolon] = ACTIONS(4922), + [sym_safe_nav] = ACTIONS(4922), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4922), }, - [3086] = { - [sym__alpha_identifier] = ACTIONS(4589), - [anon_sym_AT] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4589), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4591), - [anon_sym_super_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), - }, - [3087] = { - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4431), - [anon_sym_where] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_fun] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_this] = ACTIONS(4431), - [anon_sym_super] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_QMARK_COLON] = ACTIONS(4433), - [anon_sym_AMP_AMP] = ACTIONS(4433), - [anon_sym_PIPE_PIPE] = ACTIONS(4433), - [anon_sym_null] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_try] = ACTIONS(4431), - [anon_sym_throw] = ACTIONS(4431), - [anon_sym_return] = ACTIONS(4431), - [anon_sym_continue] = ACTIONS(4431), - [anon_sym_break] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_PLUS_EQ] = ACTIONS(4433), - [anon_sym_DASH_EQ] = ACTIONS(4433), - [anon_sym_STAR_EQ] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4433), - [anon_sym_PERCENT_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_as_QMARK] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_BANG_BANG] = ACTIONS(4433), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4433), - [anon_sym_continue_AT] = ACTIONS(4433), - [anon_sym_break_AT] = ACTIONS(4433), - [anon_sym_this_AT] = ACTIONS(4433), - [anon_sym_super_AT] = ACTIONS(4433), - [sym_real_literal] = ACTIONS(4433), - [sym_integer_literal] = ACTIONS(4431), - [sym_hex_literal] = ACTIONS(4433), - [sym_bin_literal] = ACTIONS(4433), - [anon_sym_true] = ACTIONS(4431), - [anon_sym_false] = ACTIONS(4431), - [anon_sym_SQUOTE] = ACTIONS(4433), - [sym__backtick_identifier] = ACTIONS(4433), - [sym__automatic_semicolon] = ACTIONS(4433), - [sym_safe_nav] = ACTIONS(4433), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4433), - }, - [3088] = { - [sym__alpha_identifier] = ACTIONS(5097), - [anon_sym_AT] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_as] = ACTIONS(5097), - [anon_sym_EQ] = ACTIONS(5097), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_where] = ACTIONS(5097), - [anon_sym_object] = ACTIONS(5097), - [anon_sym_fun] = ACTIONS(5097), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_get] = ACTIONS(5097), - [anon_sym_set] = ACTIONS(5097), - [anon_sym_this] = ACTIONS(5097), - [anon_sym_super] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [sym_label] = ACTIONS(5097), - [anon_sym_in] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_QMARK_COLON] = ACTIONS(5099), - [anon_sym_AMP_AMP] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5099), - [anon_sym_null] = ACTIONS(5097), - [anon_sym_if] = ACTIONS(5097), - [anon_sym_else] = ACTIONS(5097), - [anon_sym_when] = ACTIONS(5097), - [anon_sym_try] = ACTIONS(5097), - [anon_sym_throw] = ACTIONS(5097), - [anon_sym_return] = ACTIONS(5097), - [anon_sym_continue] = ACTIONS(5097), - [anon_sym_break] = ACTIONS(5097), - [anon_sym_COLON_COLON] = ACTIONS(5099), - [anon_sym_PLUS_EQ] = ACTIONS(5099), - [anon_sym_DASH_EQ] = ACTIONS(5099), - [anon_sym_STAR_EQ] = ACTIONS(5099), - [anon_sym_SLASH_EQ] = ACTIONS(5099), - [anon_sym_PERCENT_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ] = ACTIONS(5097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_BANGin] = ACTIONS(5099), - [anon_sym_is] = ACTIONS(5097), - [anon_sym_BANGis] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_PERCENT] = ACTIONS(5097), - [anon_sym_as_QMARK] = ACTIONS(5099), - [anon_sym_PLUS_PLUS] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5099), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_BANG_BANG] = ACTIONS(5099), - [anon_sym_data] = ACTIONS(5097), - [anon_sym_inner] = ACTIONS(5097), - [anon_sym_value] = ACTIONS(5097), - [anon_sym_expect] = ACTIONS(5097), - [anon_sym_actual] = ACTIONS(5097), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5099), - [anon_sym_continue_AT] = ACTIONS(5099), - [anon_sym_break_AT] = ACTIONS(5099), - [anon_sym_this_AT] = ACTIONS(5099), - [anon_sym_super_AT] = ACTIONS(5099), - [sym_real_literal] = ACTIONS(5099), - [sym_integer_literal] = ACTIONS(5097), - [sym_hex_literal] = ACTIONS(5099), - [sym_bin_literal] = ACTIONS(5099), - [anon_sym_true] = ACTIONS(5097), - [anon_sym_false] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5099), - [sym__backtick_identifier] = ACTIONS(5099), - [sym__automatic_semicolon] = ACTIONS(5099), - [sym_safe_nav] = ACTIONS(5099), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5099), - }, - [3089] = { - [sym__alpha_identifier] = ACTIONS(4874), - [anon_sym_AT] = ACTIONS(4876), - [anon_sym_LBRACK] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_as] = ACTIONS(4874), - [anon_sym_EQ] = ACTIONS(4874), - [anon_sym_LBRACE] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(4876), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(4874), - [anon_sym_where] = ACTIONS(4874), - [anon_sym_object] = ACTIONS(4874), - [anon_sym_fun] = ACTIONS(4874), - [anon_sym_SEMI] = ACTIONS(4876), - [anon_sym_get] = ACTIONS(4874), - [anon_sym_set] = ACTIONS(4874), - [anon_sym_this] = ACTIONS(4874), - [anon_sym_super] = ACTIONS(4874), - [anon_sym_STAR] = ACTIONS(4874), - [sym_label] = ACTIONS(4874), - [anon_sym_in] = ACTIONS(4874), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_QMARK_COLON] = ACTIONS(4876), - [anon_sym_AMP_AMP] = ACTIONS(4876), - [anon_sym_PIPE_PIPE] = ACTIONS(4876), - [anon_sym_null] = ACTIONS(4874), - [anon_sym_if] = ACTIONS(4874), - [anon_sym_else] = ACTIONS(4874), - [anon_sym_when] = ACTIONS(4874), - [anon_sym_try] = ACTIONS(4874), - [anon_sym_throw] = ACTIONS(4874), - [anon_sym_return] = ACTIONS(4874), - [anon_sym_continue] = ACTIONS(4874), - [anon_sym_break] = ACTIONS(4874), - [anon_sym_COLON_COLON] = ACTIONS(4876), - [anon_sym_PLUS_EQ] = ACTIONS(4876), - [anon_sym_DASH_EQ] = ACTIONS(4876), - [anon_sym_STAR_EQ] = ACTIONS(4876), - [anon_sym_SLASH_EQ] = ACTIONS(4876), - [anon_sym_PERCENT_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), - [anon_sym_EQ_EQ] = ACTIONS(4874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), - [anon_sym_LT_EQ] = ACTIONS(4876), - [anon_sym_GT_EQ] = ACTIONS(4876), - [anon_sym_BANGin] = ACTIONS(4876), - [anon_sym_is] = ACTIONS(4874), - [anon_sym_BANGis] = ACTIONS(4876), - [anon_sym_PLUS] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_SLASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4874), - [anon_sym_as_QMARK] = ACTIONS(4876), - [anon_sym_PLUS_PLUS] = ACTIONS(4876), - [anon_sym_DASH_DASH] = ACTIONS(4876), - [anon_sym_BANG] = ACTIONS(4874), - [anon_sym_BANG_BANG] = ACTIONS(4876), - [anon_sym_data] = ACTIONS(4874), - [anon_sym_inner] = ACTIONS(4874), - [anon_sym_value] = ACTIONS(4874), - [anon_sym_expect] = ACTIONS(4874), - [anon_sym_actual] = ACTIONS(4874), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4876), - [anon_sym_continue_AT] = ACTIONS(4876), - [anon_sym_break_AT] = ACTIONS(4876), - [anon_sym_this_AT] = ACTIONS(4876), - [anon_sym_super_AT] = ACTIONS(4876), - [sym_real_literal] = ACTIONS(4876), - [sym_integer_literal] = ACTIONS(4874), - [sym_hex_literal] = ACTIONS(4876), - [sym_bin_literal] = ACTIONS(4876), - [anon_sym_true] = ACTIONS(4874), - [anon_sym_false] = ACTIONS(4874), - [anon_sym_SQUOTE] = ACTIONS(4876), - [sym__backtick_identifier] = ACTIONS(4876), - [sym__automatic_semicolon] = ACTIONS(4876), - [sym_safe_nav] = ACTIONS(4876), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4876), - }, - [3090] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4995), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4997), - [anon_sym_super_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), - }, - [3091] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4961), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4961), - [anon_sym_super_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), + [3066] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6561), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [3092] = { - [sym__alpha_identifier] = ACTIONS(5153), - [anon_sym_AT] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_as] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_RBRACE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_where] = ACTIONS(5153), - [anon_sym_object] = ACTIONS(5153), - [anon_sym_fun] = ACTIONS(5153), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_get] = ACTIONS(5153), - [anon_sym_set] = ACTIONS(5153), - [anon_sym_this] = ACTIONS(5153), - [anon_sym_super] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [sym_label] = ACTIONS(5153), - [anon_sym_in] = ACTIONS(5153), - [anon_sym_DOT_DOT] = ACTIONS(5155), - [anon_sym_QMARK_COLON] = ACTIONS(5155), - [anon_sym_AMP_AMP] = ACTIONS(5155), - [anon_sym_PIPE_PIPE] = ACTIONS(5155), - [anon_sym_null] = ACTIONS(5153), - [anon_sym_if] = ACTIONS(5153), - [anon_sym_else] = ACTIONS(5153), - [anon_sym_when] = ACTIONS(5153), - [anon_sym_try] = ACTIONS(5153), - [anon_sym_throw] = ACTIONS(5153), - [anon_sym_return] = ACTIONS(5153), - [anon_sym_continue] = ACTIONS(5153), - [anon_sym_break] = ACTIONS(5153), - [anon_sym_COLON_COLON] = ACTIONS(5155), - [anon_sym_PLUS_EQ] = ACTIONS(5155), - [anon_sym_DASH_EQ] = ACTIONS(5155), - [anon_sym_STAR_EQ] = ACTIONS(5155), - [anon_sym_SLASH_EQ] = ACTIONS(5155), - [anon_sym_PERCENT_EQ] = ACTIONS(5155), - [anon_sym_BANG_EQ] = ACTIONS(5153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), - [anon_sym_EQ_EQ] = ACTIONS(5153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), - [anon_sym_LT_EQ] = ACTIONS(5155), - [anon_sym_GT_EQ] = ACTIONS(5155), - [anon_sym_BANGin] = ACTIONS(5155), - [anon_sym_is] = ACTIONS(5153), - [anon_sym_BANGis] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_PERCENT] = ACTIONS(5153), - [anon_sym_as_QMARK] = ACTIONS(5155), - [anon_sym_PLUS_PLUS] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5153), - [anon_sym_BANG_BANG] = ACTIONS(5155), - [anon_sym_data] = ACTIONS(5153), - [anon_sym_inner] = ACTIONS(5153), - [anon_sym_value] = ACTIONS(5153), - [anon_sym_expect] = ACTIONS(5153), - [anon_sym_actual] = ACTIONS(5153), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5155), - [anon_sym_continue_AT] = ACTIONS(5155), - [anon_sym_break_AT] = ACTIONS(5155), - [anon_sym_this_AT] = ACTIONS(5155), - [anon_sym_super_AT] = ACTIONS(5155), - [sym_real_literal] = ACTIONS(5155), - [sym_integer_literal] = ACTIONS(5153), - [sym_hex_literal] = ACTIONS(5155), - [sym_bin_literal] = ACTIONS(5155), - [anon_sym_true] = ACTIONS(5153), - [anon_sym_false] = ACTIONS(5153), - [anon_sym_SQUOTE] = ACTIONS(5155), - [sym__backtick_identifier] = ACTIONS(5155), - [sym__automatic_semicolon] = ACTIONS(5155), - [sym_safe_nav] = ACTIONS(5155), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5155), - }, - [3093] = { - [sym__alpha_identifier] = ACTIONS(5141), - [anon_sym_AT] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_as] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5141), - [anon_sym_where] = ACTIONS(5141), - [anon_sym_object] = ACTIONS(5141), - [anon_sym_fun] = ACTIONS(5141), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_get] = ACTIONS(5141), - [anon_sym_set] = ACTIONS(5141), - [anon_sym_this] = ACTIONS(5141), - [anon_sym_super] = ACTIONS(5141), - [anon_sym_STAR] = ACTIONS(5141), - [sym_label] = ACTIONS(5141), - [anon_sym_in] = ACTIONS(5141), - [anon_sym_DOT_DOT] = ACTIONS(5143), - [anon_sym_QMARK_COLON] = ACTIONS(5143), - [anon_sym_AMP_AMP] = ACTIONS(5143), - [anon_sym_PIPE_PIPE] = ACTIONS(5143), - [anon_sym_null] = ACTIONS(5141), - [anon_sym_if] = ACTIONS(5141), - [anon_sym_else] = ACTIONS(5141), - [anon_sym_when] = ACTIONS(5141), - [anon_sym_try] = ACTIONS(5141), - [anon_sym_throw] = ACTIONS(5141), - [anon_sym_return] = ACTIONS(5141), - [anon_sym_continue] = ACTIONS(5141), - [anon_sym_break] = ACTIONS(5141), - [anon_sym_COLON_COLON] = ACTIONS(5143), - [anon_sym_PLUS_EQ] = ACTIONS(5143), - [anon_sym_DASH_EQ] = ACTIONS(5143), - [anon_sym_STAR_EQ] = ACTIONS(5143), - [anon_sym_SLASH_EQ] = ACTIONS(5143), - [anon_sym_PERCENT_EQ] = ACTIONS(5143), - [anon_sym_BANG_EQ] = ACTIONS(5141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), - [anon_sym_EQ_EQ] = ACTIONS(5141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), - [anon_sym_LT_EQ] = ACTIONS(5143), - [anon_sym_GT_EQ] = ACTIONS(5143), - [anon_sym_BANGin] = ACTIONS(5143), - [anon_sym_is] = ACTIONS(5141), - [anon_sym_BANGis] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5141), - [anon_sym_PERCENT] = ACTIONS(5141), - [anon_sym_as_QMARK] = ACTIONS(5143), - [anon_sym_PLUS_PLUS] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5141), - [anon_sym_BANG_BANG] = ACTIONS(5143), - [anon_sym_data] = ACTIONS(5141), - [anon_sym_inner] = ACTIONS(5141), - [anon_sym_value] = ACTIONS(5141), - [anon_sym_expect] = ACTIONS(5141), - [anon_sym_actual] = ACTIONS(5141), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5143), - [anon_sym_continue_AT] = ACTIONS(5143), - [anon_sym_break_AT] = ACTIONS(5143), - [anon_sym_this_AT] = ACTIONS(5143), - [anon_sym_super_AT] = ACTIONS(5143), - [sym_real_literal] = ACTIONS(5143), - [sym_integer_literal] = ACTIONS(5141), - [sym_hex_literal] = ACTIONS(5143), - [sym_bin_literal] = ACTIONS(5143), - [anon_sym_true] = ACTIONS(5141), - [anon_sym_false] = ACTIONS(5141), - [anon_sym_SQUOTE] = ACTIONS(5143), - [sym__backtick_identifier] = ACTIONS(5143), - [sym__automatic_semicolon] = ACTIONS(5143), - [sym_safe_nav] = ACTIONS(5143), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5143), - }, - [3094] = { - [sym__alpha_identifier] = ACTIONS(5129), - [anon_sym_AT] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_as] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(5129), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_where] = ACTIONS(5129), - [anon_sym_object] = ACTIONS(5129), - [anon_sym_fun] = ACTIONS(5129), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_get] = ACTIONS(5129), - [anon_sym_set] = ACTIONS(5129), - [anon_sym_this] = ACTIONS(5129), - [anon_sym_super] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [sym_label] = ACTIONS(5129), - [anon_sym_in] = ACTIONS(5129), - [anon_sym_DOT_DOT] = ACTIONS(5131), - [anon_sym_QMARK_COLON] = ACTIONS(5131), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5131), - [anon_sym_null] = ACTIONS(5129), - [anon_sym_if] = ACTIONS(5129), - [anon_sym_else] = ACTIONS(5129), - [anon_sym_when] = ACTIONS(5129), - [anon_sym_try] = ACTIONS(5129), - [anon_sym_throw] = ACTIONS(5129), - [anon_sym_return] = ACTIONS(5129), - [anon_sym_continue] = ACTIONS(5129), - [anon_sym_break] = ACTIONS(5129), - [anon_sym_COLON_COLON] = ACTIONS(5131), - [anon_sym_PLUS_EQ] = ACTIONS(5131), - [anon_sym_DASH_EQ] = ACTIONS(5131), - [anon_sym_STAR_EQ] = ACTIONS(5131), - [anon_sym_SLASH_EQ] = ACTIONS(5131), - [anon_sym_PERCENT_EQ] = ACTIONS(5131), - [anon_sym_BANG_EQ] = ACTIONS(5129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), - [anon_sym_EQ_EQ] = ACTIONS(5129), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), - [anon_sym_LT_EQ] = ACTIONS(5131), - [anon_sym_GT_EQ] = ACTIONS(5131), - [anon_sym_BANGin] = ACTIONS(5131), - [anon_sym_is] = ACTIONS(5129), - [anon_sym_BANGis] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_PERCENT] = ACTIONS(5129), - [anon_sym_as_QMARK] = ACTIONS(5131), - [anon_sym_PLUS_PLUS] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5131), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_BANG_BANG] = ACTIONS(5131), - [anon_sym_data] = ACTIONS(5129), - [anon_sym_inner] = ACTIONS(5129), - [anon_sym_value] = ACTIONS(5129), - [anon_sym_expect] = ACTIONS(5129), - [anon_sym_actual] = ACTIONS(5129), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5131), - [anon_sym_continue_AT] = ACTIONS(5131), - [anon_sym_break_AT] = ACTIONS(5131), - [anon_sym_this_AT] = ACTIONS(5131), - [anon_sym_super_AT] = ACTIONS(5131), - [sym_real_literal] = ACTIONS(5131), - [sym_integer_literal] = ACTIONS(5129), - [sym_hex_literal] = ACTIONS(5131), - [sym_bin_literal] = ACTIONS(5131), - [anon_sym_true] = ACTIONS(5129), - [anon_sym_false] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5131), - [sym__backtick_identifier] = ACTIONS(5131), - [sym__automatic_semicolon] = ACTIONS(5131), - [sym_safe_nav] = ACTIONS(5131), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5131), - }, - [3095] = { - [sym_function_body] = STATE(3093), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), - }, - [3096] = { - [sym_type_constraints] = STATE(3336), - [sym_enum_class_body] = STATE(3463), - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_RBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_EQ] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(5508), - [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(5512), - [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_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_value] = 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), - }, - [3097] = { - [sym_value_arguments] = STATE(3442), - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_RBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_RPAREN] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(6621), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [anon_sym_DASH_GT] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_while] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - }, - [3098] = { - [sym__alpha_identifier] = ACTIONS(4860), - [anon_sym_AT] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_LT] = ACTIONS(4860), - [anon_sym_GT] = ACTIONS(4860), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_object] = ACTIONS(4860), - [anon_sym_fun] = ACTIONS(4860), - [anon_sym_SEMI] = ACTIONS(4862), - [anon_sym_get] = ACTIONS(4860), - [anon_sym_set] = ACTIONS(4860), - [anon_sym_this] = ACTIONS(4860), - [anon_sym_super] = ACTIONS(4860), - [anon_sym_STAR] = ACTIONS(4860), - [sym_label] = ACTIONS(4860), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_QMARK_COLON] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_null] = ACTIONS(4860), - [anon_sym_if] = ACTIONS(4860), - [anon_sym_else] = ACTIONS(4860), - [anon_sym_when] = ACTIONS(4860), - [anon_sym_try] = ACTIONS(4860), - [anon_sym_throw] = ACTIONS(4860), - [anon_sym_return] = ACTIONS(4860), - [anon_sym_continue] = ACTIONS(4860), - [anon_sym_break] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4862), - [anon_sym_DASH_EQ] = ACTIONS(4862), - [anon_sym_STAR_EQ] = ACTIONS(4862), - [anon_sym_SLASH_EQ] = ACTIONS(4862), - [anon_sym_PERCENT_EQ] = ACTIONS(4862), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4862), - [anon_sym_LT_EQ] = ACTIONS(4862), - [anon_sym_GT_EQ] = ACTIONS(4862), - [anon_sym_BANGin] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_BANGis] = ACTIONS(4862), - [anon_sym_PLUS] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_as_QMARK] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4862), - [anon_sym_BANG] = ACTIONS(4860), - [anon_sym_BANG_BANG] = ACTIONS(4862), - [anon_sym_data] = ACTIONS(4860), - [anon_sym_inner] = ACTIONS(4860), - [anon_sym_value] = ACTIONS(4860), - [anon_sym_expect] = ACTIONS(4860), - [anon_sym_actual] = ACTIONS(4860), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4862), - [anon_sym_continue_AT] = ACTIONS(4862), - [anon_sym_break_AT] = ACTIONS(4862), - [anon_sym_this_AT] = ACTIONS(4862), - [anon_sym_super_AT] = ACTIONS(4862), - [sym_real_literal] = ACTIONS(4862), - [sym_integer_literal] = ACTIONS(4860), - [sym_hex_literal] = ACTIONS(4862), - [sym_bin_literal] = ACTIONS(4862), - [anon_sym_true] = ACTIONS(4860), - [anon_sym_false] = ACTIONS(4860), - [anon_sym_SQUOTE] = ACTIONS(4862), - [sym__backtick_identifier] = ACTIONS(4862), - [sym__automatic_semicolon] = ACTIONS(4862), - [sym_safe_nav] = ACTIONS(4862), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4862), - }, - [3099] = { - [sym__alpha_identifier] = ACTIONS(5165), - [anon_sym_AT] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_as] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_where] = ACTIONS(5165), - [anon_sym_object] = ACTIONS(5165), - [anon_sym_fun] = ACTIONS(5165), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_get] = ACTIONS(5165), - [anon_sym_set] = ACTIONS(5165), - [anon_sym_this] = ACTIONS(5165), - [anon_sym_super] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [sym_label] = ACTIONS(5165), - [anon_sym_in] = ACTIONS(5165), - [anon_sym_DOT_DOT] = ACTIONS(5167), - [anon_sym_QMARK_COLON] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_PIPE_PIPE] = ACTIONS(5167), - [anon_sym_null] = ACTIONS(5165), - [anon_sym_if] = ACTIONS(5165), - [anon_sym_else] = ACTIONS(5165), - [anon_sym_when] = ACTIONS(5165), - [anon_sym_try] = ACTIONS(5165), - [anon_sym_throw] = ACTIONS(5165), - [anon_sym_return] = ACTIONS(5165), - [anon_sym_continue] = ACTIONS(5165), - [anon_sym_break] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_PLUS_EQ] = ACTIONS(5167), - [anon_sym_DASH_EQ] = ACTIONS(5167), - [anon_sym_STAR_EQ] = ACTIONS(5167), - [anon_sym_SLASH_EQ] = ACTIONS(5167), - [anon_sym_PERCENT_EQ] = ACTIONS(5167), - [anon_sym_BANG_EQ] = ACTIONS(5165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), - [anon_sym_EQ_EQ] = ACTIONS(5165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), - [anon_sym_LT_EQ] = ACTIONS(5167), - [anon_sym_GT_EQ] = ACTIONS(5167), - [anon_sym_BANGin] = ACTIONS(5167), - [anon_sym_is] = ACTIONS(5165), - [anon_sym_BANGis] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_as_QMARK] = ACTIONS(5167), - [anon_sym_PLUS_PLUS] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5165), - [anon_sym_BANG_BANG] = ACTIONS(5167), - [anon_sym_data] = ACTIONS(5165), - [anon_sym_inner] = ACTIONS(5165), - [anon_sym_value] = ACTIONS(5165), - [anon_sym_expect] = ACTIONS(5165), - [anon_sym_actual] = ACTIONS(5165), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5167), - [anon_sym_continue_AT] = ACTIONS(5167), - [anon_sym_break_AT] = ACTIONS(5167), - [anon_sym_this_AT] = ACTIONS(5167), - [anon_sym_super_AT] = ACTIONS(5167), - [sym_real_literal] = ACTIONS(5167), - [sym_integer_literal] = ACTIONS(5165), - [sym_hex_literal] = ACTIONS(5167), - [sym_bin_literal] = ACTIONS(5167), - [anon_sym_true] = ACTIONS(5165), - [anon_sym_false] = ACTIONS(5165), - [anon_sym_SQUOTE] = ACTIONS(5167), - [sym__backtick_identifier] = ACTIONS(5167), - [sym__automatic_semicolon] = ACTIONS(5167), - [sym_safe_nav] = ACTIONS(5167), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5167), - }, - [3100] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4444), - [anon_sym_super_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), - }, - [3101] = { - [sym_type_constraints] = STATE(3355), - [sym_enum_class_body] = STATE(3402), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_RBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [anon_sym_DASH_GT] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - }, - [3102] = { - [sym__alpha_identifier] = ACTIONS(5101), - [anon_sym_AT] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_as] = ACTIONS(5101), - [anon_sym_EQ] = ACTIONS(5101), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_where] = ACTIONS(5101), - [anon_sym_object] = ACTIONS(5101), - [anon_sym_fun] = ACTIONS(5101), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_get] = ACTIONS(5101), - [anon_sym_set] = ACTIONS(5101), - [anon_sym_this] = ACTIONS(5101), - [anon_sym_super] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [sym_label] = ACTIONS(5101), - [anon_sym_in] = ACTIONS(5101), - [anon_sym_DOT_DOT] = ACTIONS(5103), - [anon_sym_QMARK_COLON] = ACTIONS(5103), - [anon_sym_AMP_AMP] = ACTIONS(5103), - [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_null] = ACTIONS(5101), - [anon_sym_if] = ACTIONS(5101), - [anon_sym_else] = ACTIONS(5101), - [anon_sym_when] = ACTIONS(5101), - [anon_sym_try] = ACTIONS(5101), - [anon_sym_throw] = ACTIONS(5101), - [anon_sym_return] = ACTIONS(5101), - [anon_sym_continue] = ACTIONS(5101), - [anon_sym_break] = ACTIONS(5101), - [anon_sym_COLON_COLON] = ACTIONS(5103), - [anon_sym_PLUS_EQ] = ACTIONS(5103), - [anon_sym_DASH_EQ] = ACTIONS(5103), - [anon_sym_STAR_EQ] = ACTIONS(5103), - [anon_sym_SLASH_EQ] = ACTIONS(5103), - [anon_sym_PERCENT_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), - [anon_sym_LT_EQ] = ACTIONS(5103), - [anon_sym_GT_EQ] = ACTIONS(5103), - [anon_sym_BANGin] = ACTIONS(5103), - [anon_sym_is] = ACTIONS(5101), - [anon_sym_BANGis] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_PERCENT] = ACTIONS(5101), - [anon_sym_as_QMARK] = ACTIONS(5103), - [anon_sym_PLUS_PLUS] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5103), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_BANG_BANG] = ACTIONS(5103), - [anon_sym_data] = ACTIONS(5101), - [anon_sym_inner] = ACTIONS(5101), - [anon_sym_value] = ACTIONS(5101), - [anon_sym_expect] = ACTIONS(5101), - [anon_sym_actual] = ACTIONS(5101), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5103), - [anon_sym_continue_AT] = ACTIONS(5103), - [anon_sym_break_AT] = ACTIONS(5103), - [anon_sym_this_AT] = ACTIONS(5103), - [anon_sym_super_AT] = ACTIONS(5103), - [sym_real_literal] = ACTIONS(5103), - [sym_integer_literal] = ACTIONS(5101), - [sym_hex_literal] = ACTIONS(5103), - [sym_bin_literal] = ACTIONS(5103), - [anon_sym_true] = ACTIONS(5101), - [anon_sym_false] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5103), - [sym__backtick_identifier] = ACTIONS(5103), - [sym__automatic_semicolon] = ACTIONS(5103), - [sym_safe_nav] = ACTIONS(5103), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5103), - }, - [3103] = { - [sym__alpha_identifier] = ACTIONS(5181), - [anon_sym_AT] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_as] = ACTIONS(5181), - [anon_sym_EQ] = ACTIONS(5181), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_where] = ACTIONS(5181), - [anon_sym_object] = ACTIONS(5181), - [anon_sym_fun] = ACTIONS(5181), - [anon_sym_SEMI] = ACTIONS(5183), - [anon_sym_get] = ACTIONS(5181), - [anon_sym_set] = ACTIONS(5181), - [anon_sym_this] = ACTIONS(5181), - [anon_sym_super] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [sym_label] = ACTIONS(5181), - [anon_sym_in] = ACTIONS(5181), - [anon_sym_DOT_DOT] = ACTIONS(5183), - [anon_sym_QMARK_COLON] = ACTIONS(5183), - [anon_sym_AMP_AMP] = ACTIONS(5183), - [anon_sym_PIPE_PIPE] = ACTIONS(5183), - [anon_sym_null] = ACTIONS(5181), - [anon_sym_if] = ACTIONS(5181), - [anon_sym_else] = ACTIONS(5181), - [anon_sym_when] = ACTIONS(5181), - [anon_sym_try] = ACTIONS(5181), - [anon_sym_throw] = ACTIONS(5181), - [anon_sym_return] = ACTIONS(5181), - [anon_sym_continue] = ACTIONS(5181), - [anon_sym_break] = ACTIONS(5181), - [anon_sym_COLON_COLON] = ACTIONS(5183), - [anon_sym_PLUS_EQ] = ACTIONS(5183), - [anon_sym_DASH_EQ] = ACTIONS(5183), - [anon_sym_STAR_EQ] = ACTIONS(5183), - [anon_sym_SLASH_EQ] = ACTIONS(5183), - [anon_sym_PERCENT_EQ] = ACTIONS(5183), - [anon_sym_BANG_EQ] = ACTIONS(5181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5183), - [anon_sym_EQ_EQ] = ACTIONS(5181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5183), - [anon_sym_LT_EQ] = ACTIONS(5183), - [anon_sym_GT_EQ] = ACTIONS(5183), - [anon_sym_BANGin] = ACTIONS(5183), - [anon_sym_is] = ACTIONS(5181), - [anon_sym_BANGis] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_PERCENT] = ACTIONS(5181), - [anon_sym_as_QMARK] = ACTIONS(5183), - [anon_sym_PLUS_PLUS] = ACTIONS(5183), - [anon_sym_DASH_DASH] = ACTIONS(5183), - [anon_sym_BANG] = ACTIONS(5181), - [anon_sym_BANG_BANG] = ACTIONS(5183), - [anon_sym_data] = ACTIONS(5181), - [anon_sym_inner] = ACTIONS(5181), - [anon_sym_value] = ACTIONS(5181), - [anon_sym_expect] = ACTIONS(5181), - [anon_sym_actual] = ACTIONS(5181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5183), - [anon_sym_continue_AT] = ACTIONS(5183), - [anon_sym_break_AT] = ACTIONS(5183), - [anon_sym_this_AT] = ACTIONS(5183), - [anon_sym_super_AT] = ACTIONS(5183), - [sym_real_literal] = ACTIONS(5183), - [sym_integer_literal] = ACTIONS(5181), - [sym_hex_literal] = ACTIONS(5183), - [sym_bin_literal] = ACTIONS(5183), - [anon_sym_true] = ACTIONS(5181), - [anon_sym_false] = ACTIONS(5181), - [anon_sym_SQUOTE] = ACTIONS(5183), - [sym__backtick_identifier] = ACTIONS(5183), - [sym__automatic_semicolon] = ACTIONS(5183), - [sym_safe_nav] = ACTIONS(5183), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5183), - }, - [3104] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), - }, - [3105] = { - [sym__alpha_identifier] = ACTIONS(4975), - [anon_sym_AT] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4977), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_where] = ACTIONS(4975), - [anon_sym_object] = ACTIONS(4975), - [anon_sym_fun] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4977), - [anon_sym_get] = ACTIONS(4975), - [anon_sym_set] = ACTIONS(4975), - [anon_sym_this] = ACTIONS(4975), - [anon_sym_super] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [sym_label] = ACTIONS(4975), - [anon_sym_in] = ACTIONS(4975), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_QMARK_COLON] = ACTIONS(4977), - [anon_sym_AMP_AMP] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4977), - [anon_sym_null] = ACTIONS(4975), - [anon_sym_if] = ACTIONS(4975), - [anon_sym_else] = ACTIONS(4975), - [anon_sym_when] = ACTIONS(4975), - [anon_sym_try] = ACTIONS(4975), - [anon_sym_throw] = ACTIONS(4975), - [anon_sym_return] = ACTIONS(4975), - [anon_sym_continue] = ACTIONS(4975), - [anon_sym_break] = ACTIONS(4975), - [anon_sym_COLON_COLON] = ACTIONS(4977), - [anon_sym_PLUS_EQ] = ACTIONS(4977), - [anon_sym_DASH_EQ] = ACTIONS(4977), - [anon_sym_STAR_EQ] = ACTIONS(4977), - [anon_sym_SLASH_EQ] = ACTIONS(4977), - [anon_sym_PERCENT_EQ] = ACTIONS(4977), - [anon_sym_BANG_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4977), - [anon_sym_EQ_EQ] = ACTIONS(4975), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4977), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4977), - [anon_sym_BANGin] = ACTIONS(4977), - [anon_sym_is] = ACTIONS(4975), - [anon_sym_BANGis] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_as_QMARK] = ACTIONS(4977), - [anon_sym_PLUS_PLUS] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_BANG_BANG] = ACTIONS(4977), - [anon_sym_data] = ACTIONS(4975), - [anon_sym_inner] = ACTIONS(4975), - [anon_sym_value] = ACTIONS(4975), - [anon_sym_expect] = ACTIONS(4975), - [anon_sym_actual] = ACTIONS(4975), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4977), - [anon_sym_continue_AT] = ACTIONS(4977), - [anon_sym_break_AT] = ACTIONS(4977), - [anon_sym_this_AT] = ACTIONS(4977), - [anon_sym_super_AT] = ACTIONS(4977), - [sym_real_literal] = ACTIONS(4977), - [sym_integer_literal] = ACTIONS(4975), - [sym_hex_literal] = ACTIONS(4977), - [sym_bin_literal] = ACTIONS(4977), - [anon_sym_true] = ACTIONS(4975), - [anon_sym_false] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4977), - [sym__backtick_identifier] = ACTIONS(4977), - [sym__automatic_semicolon] = ACTIONS(4977), - [sym_safe_nav] = ACTIONS(4977), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4977), - }, - [3106] = { - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_object] = ACTIONS(3420), - [anon_sym_fun] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3420), - [anon_sym_set] = ACTIONS(3420), - [anon_sym_this] = ACTIONS(3420), - [anon_sym_super] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3420), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_null] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_when] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3420), - [anon_sym_BANG_BANG] = ACTIONS(3422), - [anon_sym_data] = ACTIONS(3420), - [anon_sym_inner] = ACTIONS(3420), - [anon_sym_value] = ACTIONS(3420), - [anon_sym_expect] = ACTIONS(3420), - [anon_sym_actual] = ACTIONS(3420), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3422), - [anon_sym_continue_AT] = ACTIONS(3422), - [anon_sym_break_AT] = ACTIONS(3422), - [anon_sym_this_AT] = ACTIONS(3422), - [anon_sym_super_AT] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3422), - [sym_integer_literal] = ACTIONS(3420), - [sym_hex_literal] = ACTIONS(3422), - [sym_bin_literal] = ACTIONS(3422), - [anon_sym_true] = ACTIONS(3420), - [anon_sym_false] = ACTIONS(3420), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3422), - }, - [3107] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_object] = ACTIONS(4419), - [anon_sym_fun] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_this] = ACTIONS(4419), - [anon_sym_super] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4419), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_when] = ACTIONS(4419), - [anon_sym_try] = ACTIONS(4419), - [anon_sym_throw] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4421), - [anon_sym_continue_AT] = ACTIONS(4421), - [anon_sym_break_AT] = ACTIONS(4421), - [anon_sym_this_AT] = ACTIONS(4421), - [anon_sym_super_AT] = ACTIONS(4421), - [sym_real_literal] = ACTIONS(4421), - [sym_integer_literal] = ACTIONS(4419), - [sym_hex_literal] = ACTIONS(4421), - [sym_bin_literal] = ACTIONS(4421), - [anon_sym_true] = ACTIONS(4419), - [anon_sym_false] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4421), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4421), - }, - [3108] = { - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_RBRACK] = ACTIONS(4323), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_RPAREN] = ACTIONS(4323), - [anon_sym_by] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [sym__quest] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [anon_sym_DASH_GT] = ACTIONS(4325), - [sym_label] = ACTIONS(4323), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_while] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), + [3067] = { + [sym__alpha_identifier] = ACTIONS(4912), + [anon_sym_AT] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_where] = ACTIONS(4912), + [anon_sym_object] = ACTIONS(4912), + [anon_sym_fun] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_get] = ACTIONS(4912), + [anon_sym_set] = ACTIONS(4912), + [anon_sym_this] = ACTIONS(4912), + [anon_sym_super] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [sym_label] = ACTIONS(4912), + [anon_sym_in] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(4914), + [anon_sym_QMARK_COLON] = ACTIONS(4914), + [anon_sym_AMP_AMP] = ACTIONS(4914), + [anon_sym_PIPE_PIPE] = ACTIONS(4914), + [anon_sym_null] = ACTIONS(4912), + [anon_sym_if] = ACTIONS(4912), + [anon_sym_else] = ACTIONS(4912), + [anon_sym_when] = ACTIONS(4912), + [anon_sym_try] = ACTIONS(4912), + [anon_sym_throw] = ACTIONS(4912), + [anon_sym_return] = ACTIONS(4912), + [anon_sym_continue] = ACTIONS(4912), + [anon_sym_break] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4914), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_PERCENT_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_BANGin] = ACTIONS(4914), + [anon_sym_is] = ACTIONS(4912), + [anon_sym_BANGis] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_as_QMARK] = ACTIONS(4914), + [anon_sym_PLUS_PLUS] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_BANG_BANG] = ACTIONS(4914), + [anon_sym_data] = ACTIONS(4912), + [anon_sym_inner] = ACTIONS(4912), + [anon_sym_value] = ACTIONS(4912), + [anon_sym_expect] = ACTIONS(4912), + [anon_sym_actual] = ACTIONS(4912), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), - [sym_multiline_comment] = ACTIONS(3), - }, - [3109] = { - [sym_function_body] = STATE(3389), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_RBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_DASH_GT] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), + [anon_sym_return_AT] = ACTIONS(4914), + [anon_sym_continue_AT] = ACTIONS(4914), + [anon_sym_break_AT] = ACTIONS(4914), + [anon_sym_this_AT] = ACTIONS(4914), + [anon_sym_super_AT] = ACTIONS(4914), + [sym_real_literal] = ACTIONS(4914), + [sym_integer_literal] = ACTIONS(4912), + [sym_hex_literal] = ACTIONS(4914), + [sym_bin_literal] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4912), + [anon_sym_false] = ACTIONS(4912), + [anon_sym_SQUOTE] = ACTIONS(4914), + [sym__backtick_identifier] = ACTIONS(4914), + [sym__automatic_semicolon] = ACTIONS(4914), + [sym_safe_nav] = ACTIONS(4914), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4914), }, - [3110] = { - [sym__alpha_identifier] = ACTIONS(5149), - [anon_sym_AT] = ACTIONS(5151), - [anon_sym_LBRACK] = ACTIONS(5151), - [anon_sym_DOT] = ACTIONS(5149), - [anon_sym_as] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5151), - [anon_sym_RBRACE] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5151), - [anon_sym_COMMA] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5149), - [anon_sym_GT] = ACTIONS(5149), - [anon_sym_where] = ACTIONS(5149), - [anon_sym_object] = ACTIONS(5149), - [anon_sym_fun] = ACTIONS(5149), - [anon_sym_SEMI] = ACTIONS(5151), - [anon_sym_get] = ACTIONS(5149), - [anon_sym_set] = ACTIONS(5149), - [anon_sym_this] = ACTIONS(5149), - [anon_sym_super] = ACTIONS(5149), - [anon_sym_STAR] = ACTIONS(5149), - [sym_label] = ACTIONS(5149), - [anon_sym_in] = ACTIONS(5149), - [anon_sym_DOT_DOT] = ACTIONS(5151), - [anon_sym_QMARK_COLON] = ACTIONS(5151), - [anon_sym_AMP_AMP] = ACTIONS(5151), - [anon_sym_PIPE_PIPE] = ACTIONS(5151), - [anon_sym_null] = ACTIONS(5149), - [anon_sym_if] = ACTIONS(5149), - [anon_sym_else] = ACTIONS(5149), - [anon_sym_when] = ACTIONS(5149), - [anon_sym_try] = ACTIONS(5149), - [anon_sym_throw] = ACTIONS(5149), - [anon_sym_return] = ACTIONS(5149), - [anon_sym_continue] = ACTIONS(5149), - [anon_sym_break] = ACTIONS(5149), - [anon_sym_COLON_COLON] = ACTIONS(5151), - [anon_sym_PLUS_EQ] = ACTIONS(5151), - [anon_sym_DASH_EQ] = ACTIONS(5151), - [anon_sym_STAR_EQ] = ACTIONS(5151), - [anon_sym_SLASH_EQ] = ACTIONS(5151), - [anon_sym_PERCENT_EQ] = ACTIONS(5151), - [anon_sym_BANG_EQ] = ACTIONS(5149), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), - [anon_sym_EQ_EQ] = ACTIONS(5149), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), - [anon_sym_LT_EQ] = ACTIONS(5151), - [anon_sym_GT_EQ] = ACTIONS(5151), - [anon_sym_BANGin] = ACTIONS(5151), - [anon_sym_is] = ACTIONS(5149), - [anon_sym_BANGis] = ACTIONS(5151), - [anon_sym_PLUS] = ACTIONS(5149), - [anon_sym_DASH] = ACTIONS(5149), - [anon_sym_SLASH] = ACTIONS(5149), - [anon_sym_PERCENT] = ACTIONS(5149), - [anon_sym_as_QMARK] = ACTIONS(5151), - [anon_sym_PLUS_PLUS] = ACTIONS(5151), - [anon_sym_DASH_DASH] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5149), - [anon_sym_BANG_BANG] = ACTIONS(5151), - [anon_sym_data] = ACTIONS(5149), - [anon_sym_inner] = ACTIONS(5149), - [anon_sym_value] = ACTIONS(5149), - [anon_sym_expect] = ACTIONS(5149), - [anon_sym_actual] = ACTIONS(5149), + [3068] = { + [sym__alpha_identifier] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_object] = ACTIONS(4908), + [anon_sym_fun] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4910), + [anon_sym_get] = ACTIONS(4908), + [anon_sym_set] = ACTIONS(4908), + [anon_sym_this] = ACTIONS(4908), + [anon_sym_super] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [sym_label] = ACTIONS(4908), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_QMARK_COLON] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4910), + [anon_sym_PIPE_PIPE] = ACTIONS(4910), + [anon_sym_null] = ACTIONS(4908), + [anon_sym_if] = ACTIONS(4908), + [anon_sym_else] = ACTIONS(4908), + [anon_sym_when] = ACTIONS(4908), + [anon_sym_try] = ACTIONS(4908), + [anon_sym_throw] = ACTIONS(4908), + [anon_sym_return] = ACTIONS(4908), + [anon_sym_continue] = ACTIONS(4908), + [anon_sym_break] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4910), + [anon_sym_DASH_EQ] = ACTIONS(4910), + [anon_sym_STAR_EQ] = ACTIONS(4910), + [anon_sym_SLASH_EQ] = ACTIONS(4910), + [anon_sym_PERCENT_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4910), + [anon_sym_BANGin] = ACTIONS(4910), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_BANGis] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_as_QMARK] = ACTIONS(4910), + [anon_sym_PLUS_PLUS] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_BANG_BANG] = ACTIONS(4910), + [anon_sym_data] = ACTIONS(4908), + [anon_sym_inner] = ACTIONS(4908), + [anon_sym_value] = ACTIONS(4908), + [anon_sym_expect] = ACTIONS(4908), + [anon_sym_actual] = ACTIONS(4908), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5151), - [anon_sym_continue_AT] = ACTIONS(5151), - [anon_sym_break_AT] = ACTIONS(5151), - [anon_sym_this_AT] = ACTIONS(5151), - [anon_sym_super_AT] = ACTIONS(5151), - [sym_real_literal] = ACTIONS(5151), - [sym_integer_literal] = ACTIONS(5149), - [sym_hex_literal] = ACTIONS(5151), - [sym_bin_literal] = ACTIONS(5151), - [anon_sym_true] = ACTIONS(5149), - [anon_sym_false] = ACTIONS(5149), - [anon_sym_SQUOTE] = ACTIONS(5151), - [sym__backtick_identifier] = ACTIONS(5151), - [sym__automatic_semicolon] = ACTIONS(5151), - [sym_safe_nav] = ACTIONS(5151), + [anon_sym_return_AT] = ACTIONS(4910), + [anon_sym_continue_AT] = ACTIONS(4910), + [anon_sym_break_AT] = ACTIONS(4910), + [anon_sym_this_AT] = ACTIONS(4910), + [anon_sym_super_AT] = ACTIONS(4910), + [sym_real_literal] = ACTIONS(4910), + [sym_integer_literal] = ACTIONS(4908), + [sym_hex_literal] = ACTIONS(4910), + [sym_bin_literal] = ACTIONS(4910), + [anon_sym_true] = ACTIONS(4908), + [anon_sym_false] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4910), + [sym__backtick_identifier] = ACTIONS(4910), + [sym__automatic_semicolon] = ACTIONS(4910), + [sym_safe_nav] = ACTIONS(4910), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5151), - }, - [3111] = { - [aux_sym_nullable_type_repeat1] = STATE(3164), - [sym__alpha_identifier] = ACTIONS(4295), - [anon_sym_AT] = ACTIONS(4297), - [anon_sym_LBRACK] = ACTIONS(4297), - [anon_sym_EQ] = ACTIONS(4297), - [anon_sym_LBRACE] = ACTIONS(4297), - [anon_sym_RBRACE] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4297), - [anon_sym_COMMA] = ACTIONS(4297), - [anon_sym_by] = ACTIONS(4295), - [anon_sym_where] = ACTIONS(4295), - [anon_sym_object] = ACTIONS(4295), - [anon_sym_fun] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_get] = ACTIONS(4295), - [anon_sym_set] = ACTIONS(4295), - [anon_sym_this] = ACTIONS(4295), - [anon_sym_super] = ACTIONS(4295), - [sym__quest] = ACTIONS(6623), - [anon_sym_STAR] = ACTIONS(4297), - [sym_label] = ACTIONS(4295), - [anon_sym_in] = ACTIONS(4295), - [anon_sym_null] = ACTIONS(4295), - [anon_sym_if] = ACTIONS(4295), - [anon_sym_else] = ACTIONS(4295), - [anon_sym_when] = ACTIONS(4295), - [anon_sym_try] = ACTIONS(4295), - [anon_sym_throw] = ACTIONS(4295), - [anon_sym_return] = ACTIONS(4295), - [anon_sym_continue] = ACTIONS(4295), - [anon_sym_break] = ACTIONS(4295), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_BANGin] = ACTIONS(4297), - [anon_sym_is] = ACTIONS(4295), - [anon_sym_BANGis] = ACTIONS(4297), - [anon_sym_PLUS] = ACTIONS(4295), - [anon_sym_DASH] = ACTIONS(4295), - [anon_sym_PLUS_PLUS] = ACTIONS(4297), - [anon_sym_DASH_DASH] = ACTIONS(4297), - [anon_sym_BANG] = ACTIONS(4295), - [anon_sym_suspend] = ACTIONS(4295), - [anon_sym_sealed] = ACTIONS(4295), - [anon_sym_annotation] = ACTIONS(4295), - [anon_sym_data] = ACTIONS(4295), - [anon_sym_inner] = ACTIONS(4295), - [anon_sym_value] = ACTIONS(4295), - [anon_sym_override] = ACTIONS(4295), - [anon_sym_lateinit] = ACTIONS(4295), - [anon_sym_public] = ACTIONS(4295), - [anon_sym_private] = ACTIONS(4295), - [anon_sym_internal] = ACTIONS(4295), - [anon_sym_protected] = ACTIONS(4295), - [anon_sym_tailrec] = ACTIONS(4295), - [anon_sym_operator] = ACTIONS(4295), - [anon_sym_infix] = ACTIONS(4295), - [anon_sym_inline] = ACTIONS(4295), - [anon_sym_external] = ACTIONS(4295), - [sym_property_modifier] = ACTIONS(4295), - [anon_sym_abstract] = ACTIONS(4295), - [anon_sym_final] = ACTIONS(4295), - [anon_sym_open] = ACTIONS(4295), - [anon_sym_vararg] = ACTIONS(4295), - [anon_sym_noinline] = ACTIONS(4295), - [anon_sym_crossinline] = ACTIONS(4295), - [anon_sym_expect] = ACTIONS(4295), - [anon_sym_actual] = ACTIONS(4295), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4297), - [anon_sym_continue_AT] = ACTIONS(4297), - [anon_sym_break_AT] = ACTIONS(4297), - [anon_sym_this_AT] = ACTIONS(4297), - [anon_sym_super_AT] = ACTIONS(4297), - [sym_real_literal] = ACTIONS(4297), - [sym_integer_literal] = ACTIONS(4295), - [sym_hex_literal] = ACTIONS(4297), - [sym_bin_literal] = ACTIONS(4297), - [anon_sym_true] = ACTIONS(4295), - [anon_sym_false] = ACTIONS(4295), - [anon_sym_SQUOTE] = ACTIONS(4297), - [sym__backtick_identifier] = ACTIONS(4297), - [sym__automatic_semicolon] = ACTIONS(4297), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4297), + [sym__string_start] = ACTIONS(4910), }, - [3112] = { - [sym__alpha_identifier] = ACTIONS(4716), - [anon_sym_AT] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4716), - [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_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_value] = ACTIONS(4716), - [anon_sym_expect] = ACTIONS(4716), - [anon_sym_actual] = ACTIONS(4716), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4718), - [anon_sym_continue_AT] = ACTIONS(4718), - [anon_sym_break_AT] = ACTIONS(4718), - [anon_sym_this_AT] = ACTIONS(4718), - [anon_sym_super_AT] = ACTIONS(4718), - [sym_real_literal] = ACTIONS(4718), - [sym_integer_literal] = ACTIONS(4716), - [sym_hex_literal] = ACTIONS(4718), - [sym_bin_literal] = ACTIONS(4718), - [anon_sym_true] = ACTIONS(4716), - [anon_sym_false] = ACTIONS(4716), - [anon_sym_SQUOTE] = ACTIONS(4718), - [sym__backtick_identifier] = ACTIONS(4718), - [sym__automatic_semicolon] = ACTIONS(4718), - [sym_safe_nav] = ACTIONS(4718), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4718), + [3069] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6565), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [3113] = { - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4264), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [3070] = { + [sym_class_body] = STATE(3406), + [sym_type_constraints] = STATE(3356), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_DASH_GT] = ACTIONS(4337), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), }, - [3114] = { - [sym_function_body] = STATE(3104), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [3071] = { + [sym_type_constraints] = STATE(3353), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4154), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), }, - [3115] = { - [sym_class_body] = STATE(3514), - [sym_type_constraints] = STATE(3292), - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_RBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_RPAREN] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_DASH_GT] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_while] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_suspend] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_annotation] = ACTIONS(4507), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_lateinit] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_tailrec] = ACTIONS(4507), - [anon_sym_operator] = ACTIONS(4507), - [anon_sym_infix] = ACTIONS(4507), - [anon_sym_inline] = ACTIONS(4507), - [anon_sym_external] = ACTIONS(4507), - [sym_property_modifier] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_final] = ACTIONS(4507), - [anon_sym_open] = ACTIONS(4507), - [anon_sym_vararg] = ACTIONS(4507), - [anon_sym_noinline] = ACTIONS(4507), - [anon_sym_crossinline] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), + [3072] = { + [sym_catch_block] = STATE(3349), + [sym_finally_block] = STATE(3844), + [aux_sym_try_expression_repeat1] = STATE(3349), + [sym__alpha_identifier] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_COMMA] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_get] = ACTIONS(4044), + [anon_sym_set] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [sym_label] = ACTIONS(4046), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4046), + [anon_sym_QMARK_COLON] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_catch] = ACTIONS(6569), + [anon_sym_finally] = ACTIONS(6571), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_PLUS_EQ] = ACTIONS(4046), + [anon_sym_DASH_EQ] = ACTIONS(4046), + [anon_sym_STAR_EQ] = ACTIONS(4046), + [anon_sym_SLASH_EQ] = ACTIONS(4046), + [anon_sym_PERCENT_EQ] = ACTIONS(4046), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4046), + [anon_sym_LT_EQ] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4046), + [anon_sym_BANGin] = ACTIONS(4046), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_BANGis] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_as_QMARK] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_BANG_BANG] = ACTIONS(4046), + [anon_sym_suspend] = ACTIONS(4044), + [anon_sym_sealed] = ACTIONS(4044), + [anon_sym_annotation] = ACTIONS(4044), + [anon_sym_data] = ACTIONS(4044), + [anon_sym_inner] = ACTIONS(4044), + [anon_sym_value] = ACTIONS(4044), + [anon_sym_override] = ACTIONS(4044), + [anon_sym_lateinit] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_internal] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_tailrec] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_infix] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym_external] = ACTIONS(4044), + [sym_property_modifier] = ACTIONS(4044), + [anon_sym_abstract] = ACTIONS(4044), + [anon_sym_final] = ACTIONS(4044), + [anon_sym_open] = ACTIONS(4044), + [anon_sym_vararg] = ACTIONS(4044), + [anon_sym_noinline] = ACTIONS(4044), + [anon_sym_crossinline] = ACTIONS(4044), + [anon_sym_expect] = ACTIONS(4044), + [anon_sym_actual] = ACTIONS(4044), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4046), + [sym__automatic_semicolon] = ACTIONS(4046), + [sym_safe_nav] = ACTIONS(4046), [sym_multiline_comment] = ACTIONS(3), }, - [3116] = { - [sym_file_annotation] = STATE(3116), - [aux_sym_source_file_repeat1] = STATE(3116), - [ts_builtin_sym_end] = ACTIONS(6625), - [sym__alpha_identifier] = ACTIONS(6627), - [anon_sym_AT] = ACTIONS(6629), - [anon_sym_LBRACK] = ACTIONS(6625), - [anon_sym_package] = ACTIONS(6627), - [anon_sym_import] = ACTIONS(6627), - [anon_sym_typealias] = ACTIONS(6627), - [anon_sym_class] = ACTIONS(6627), - [anon_sym_interface] = ACTIONS(6627), - [anon_sym_enum] = ACTIONS(6627), - [anon_sym_LBRACE] = ACTIONS(6625), - [anon_sym_LPAREN] = ACTIONS(6625), - [anon_sym_val] = ACTIONS(6627), - [anon_sym_var] = ACTIONS(6627), - [anon_sym_object] = ACTIONS(6627), - [anon_sym_fun] = ACTIONS(6627), - [anon_sym_get] = ACTIONS(6627), - [anon_sym_set] = ACTIONS(6627), - [anon_sym_this] = ACTIONS(6627), - [anon_sym_super] = ACTIONS(6627), - [anon_sym_STAR] = ACTIONS(6625), - [sym_label] = ACTIONS(6627), - [anon_sym_for] = ACTIONS(6627), - [anon_sym_while] = ACTIONS(6627), - [anon_sym_do] = ACTIONS(6627), - [anon_sym_null] = ACTIONS(6627), - [anon_sym_if] = ACTIONS(6627), - [anon_sym_when] = ACTIONS(6627), - [anon_sym_try] = ACTIONS(6627), - [anon_sym_throw] = ACTIONS(6627), - [anon_sym_return] = ACTIONS(6627), - [anon_sym_continue] = ACTIONS(6627), - [anon_sym_break] = ACTIONS(6627), - [anon_sym_COLON_COLON] = ACTIONS(6625), - [anon_sym_PLUS] = ACTIONS(6627), - [anon_sym_DASH] = ACTIONS(6627), - [anon_sym_PLUS_PLUS] = ACTIONS(6625), - [anon_sym_DASH_DASH] = ACTIONS(6625), - [anon_sym_BANG] = ACTIONS(6625), - [anon_sym_suspend] = ACTIONS(6627), - [anon_sym_sealed] = ACTIONS(6627), - [anon_sym_annotation] = ACTIONS(6627), - [anon_sym_data] = ACTIONS(6627), - [anon_sym_inner] = ACTIONS(6627), - [anon_sym_value] = ACTIONS(6627), - [anon_sym_override] = ACTIONS(6627), - [anon_sym_lateinit] = ACTIONS(6627), - [anon_sym_public] = ACTIONS(6627), - [anon_sym_private] = ACTIONS(6627), - [anon_sym_internal] = ACTIONS(6627), - [anon_sym_protected] = ACTIONS(6627), - [anon_sym_tailrec] = ACTIONS(6627), - [anon_sym_operator] = ACTIONS(6627), - [anon_sym_infix] = ACTIONS(6627), - [anon_sym_inline] = ACTIONS(6627), - [anon_sym_external] = ACTIONS(6627), - [sym_property_modifier] = ACTIONS(6627), - [anon_sym_abstract] = ACTIONS(6627), - [anon_sym_final] = ACTIONS(6627), - [anon_sym_open] = ACTIONS(6627), - [anon_sym_vararg] = ACTIONS(6627), - [anon_sym_noinline] = ACTIONS(6627), - [anon_sym_crossinline] = ACTIONS(6627), - [anon_sym_expect] = ACTIONS(6627), - [anon_sym_actual] = ACTIONS(6627), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6625), - [anon_sym_continue_AT] = ACTIONS(6625), - [anon_sym_break_AT] = ACTIONS(6625), - [anon_sym_this_AT] = ACTIONS(6625), - [anon_sym_super_AT] = ACTIONS(6625), - [sym_real_literal] = ACTIONS(6625), - [sym_integer_literal] = ACTIONS(6627), - [sym_hex_literal] = ACTIONS(6625), - [sym_bin_literal] = ACTIONS(6625), - [anon_sym_true] = ACTIONS(6627), - [anon_sym_false] = ACTIONS(6627), - [anon_sym_SQUOTE] = ACTIONS(6625), - [sym__backtick_identifier] = ACTIONS(6625), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6625), - }, - [3117] = { - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_object] = ACTIONS(1822), - [anon_sym_fun] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(1822), - [anon_sym_set] = ACTIONS(1822), - [anon_sym_this] = ACTIONS(1822), - [anon_sym_super] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_null] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_when] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_throw] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_BANG_BANG] = ACTIONS(1824), - [anon_sym_data] = ACTIONS(1822), - [anon_sym_inner] = ACTIONS(1822), - [anon_sym_value] = ACTIONS(1822), - [anon_sym_expect] = ACTIONS(1822), - [anon_sym_actual] = ACTIONS(1822), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1824), - [anon_sym_continue_AT] = ACTIONS(1824), - [anon_sym_break_AT] = ACTIONS(1824), - [anon_sym_this_AT] = ACTIONS(1824), - [anon_sym_super_AT] = ACTIONS(1824), - [sym_real_literal] = ACTIONS(1824), - [sym_integer_literal] = ACTIONS(1822), - [sym_hex_literal] = ACTIONS(1824), - [sym_bin_literal] = ACTIONS(1824), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1824), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1824), + [3073] = { + [sym__alpha_identifier] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_COMMA] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_object] = ACTIONS(4044), + [anon_sym_fun] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_get] = ACTIONS(4044), + [anon_sym_set] = ACTIONS(4044), + [anon_sym_this] = ACTIONS(4044), + [anon_sym_super] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [sym_label] = ACTIONS(4044), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4046), + [anon_sym_QMARK_COLON] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_null] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_when] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_PLUS_EQ] = ACTIONS(4046), + [anon_sym_DASH_EQ] = ACTIONS(4046), + [anon_sym_STAR_EQ] = ACTIONS(4046), + [anon_sym_SLASH_EQ] = ACTIONS(4046), + [anon_sym_PERCENT_EQ] = ACTIONS(4046), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4046), + [anon_sym_LT_EQ] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4046), + [anon_sym_BANGin] = ACTIONS(4046), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_BANGis] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_as_QMARK] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4044), + [anon_sym_BANG_BANG] = ACTIONS(4046), + [anon_sym_data] = ACTIONS(4044), + [anon_sym_inner] = ACTIONS(4044), + [anon_sym_value] = ACTIONS(4044), + [anon_sym_expect] = ACTIONS(4044), + [anon_sym_actual] = ACTIONS(4044), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4046), + [anon_sym_continue_AT] = ACTIONS(4046), + [anon_sym_break_AT] = ACTIONS(4046), + [anon_sym_this_AT] = ACTIONS(4046), + [anon_sym_super_AT] = ACTIONS(4046), + [sym_real_literal] = ACTIONS(4046), + [sym_integer_literal] = ACTIONS(4044), + [sym_hex_literal] = ACTIONS(4046), + [sym_bin_literal] = ACTIONS(4046), + [anon_sym_true] = ACTIONS(4044), + [anon_sym_false] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [sym__backtick_identifier] = ACTIONS(4046), + [sym__automatic_semicolon] = ACTIONS(4046), + [sym_safe_nav] = ACTIONS(4046), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4046), }, - [3118] = { + [3074] = { [sym__alpha_identifier] = ACTIONS(4900), [anon_sym_AT] = ACTIONS(4902), [anon_sym_LBRACK] = ACTIONS(4902), @@ -368671,530 +365200,3845 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4902), }, - [3119] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4766), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4768), - [anon_sym_super_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), + [3075] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_object] = ACTIONS(4892), + [anon_sym_fun] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_this] = ACTIONS(4892), + [anon_sym_super] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4892), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_null] = ACTIONS(4892), + [anon_sym_if] = ACTIONS(4892), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_when] = ACTIONS(4892), + [anon_sym_try] = ACTIONS(4892), + [anon_sym_throw] = ACTIONS(4892), + [anon_sym_return] = ACTIONS(4892), + [anon_sym_continue] = ACTIONS(4892), + [anon_sym_break] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4894), + [anon_sym_continue_AT] = ACTIONS(4894), + [anon_sym_break_AT] = ACTIONS(4894), + [anon_sym_this_AT] = ACTIONS(4894), + [anon_sym_super_AT] = ACTIONS(4894), + [sym_real_literal] = ACTIONS(4894), + [sym_integer_literal] = ACTIONS(4892), + [sym_hex_literal] = ACTIONS(4894), + [sym_bin_literal] = ACTIONS(4894), + [anon_sym_true] = ACTIONS(4892), + [anon_sym_false] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4894), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4894), }, - [3120] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_object] = ACTIONS(4944), - [anon_sym_fun] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_this] = ACTIONS(4944), - [anon_sym_super] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [sym_label] = ACTIONS(4944), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(4944), - [anon_sym_if] = ACTIONS(4944), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_when] = ACTIONS(4944), - [anon_sym_try] = ACTIONS(4944), - [anon_sym_throw] = ACTIONS(4944), - [anon_sym_return] = ACTIONS(4944), - [anon_sym_continue] = ACTIONS(4944), - [anon_sym_break] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(6632), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4946), - [anon_sym_continue_AT] = ACTIONS(4946), - [anon_sym_break_AT] = ACTIONS(4946), - [anon_sym_this_AT] = ACTIONS(4946), - [anon_sym_super_AT] = ACTIONS(4946), - [sym_real_literal] = ACTIONS(4946), - [sym_integer_literal] = ACTIONS(4944), - [sym_hex_literal] = ACTIONS(4946), - [sym_bin_literal] = ACTIONS(4946), - [anon_sym_true] = ACTIONS(4944), - [anon_sym_false] = ACTIONS(4944), - [anon_sym_SQUOTE] = ACTIONS(4946), - [sym__backtick_identifier] = ACTIONS(4946), - [sym__automatic_semicolon] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), + [3076] = { + [sym__alpha_identifier] = ACTIONS(3932), + [anon_sym_AT] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_DOT] = ACTIONS(3932), + [anon_sym_as] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_where] = ACTIONS(3932), + [anon_sym_object] = ACTIONS(3932), + [anon_sym_fun] = ACTIONS(3932), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3932), + [anon_sym_set] = ACTIONS(3932), + [anon_sym_this] = ACTIONS(3932), + [anon_sym_super] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [sym_label] = ACTIONS(3932), + [anon_sym_in] = ACTIONS(3932), + [anon_sym_DOT_DOT] = ACTIONS(3934), + [anon_sym_QMARK_COLON] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_if] = ACTIONS(3932), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_when] = ACTIONS(3932), + [anon_sym_try] = ACTIONS(3932), + [anon_sym_throw] = ACTIONS(3932), + [anon_sym_return] = ACTIONS(3932), + [anon_sym_continue] = ACTIONS(3932), + [anon_sym_break] = ACTIONS(3932), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3934), + [anon_sym_SLASH_EQ] = ACTIONS(3934), + [anon_sym_PERCENT_EQ] = ACTIONS(3934), + [anon_sym_BANG_EQ] = ACTIONS(3932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_BANGin] = ACTIONS(3934), + [anon_sym_is] = ACTIONS(3932), + [anon_sym_BANGis] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_as_QMARK] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [anon_sym_BANG] = ACTIONS(3932), + [anon_sym_BANG_BANG] = ACTIONS(3934), + [anon_sym_data] = ACTIONS(3932), + [anon_sym_inner] = ACTIONS(3932), + [anon_sym_value] = ACTIONS(3932), + [anon_sym_expect] = ACTIONS(3932), + [anon_sym_actual] = ACTIONS(3932), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3934), + [anon_sym_continue_AT] = ACTIONS(3934), + [anon_sym_break_AT] = ACTIONS(3934), + [anon_sym_this_AT] = ACTIONS(3934), + [anon_sym_super_AT] = ACTIONS(3934), + [sym_real_literal] = ACTIONS(3934), + [sym_integer_literal] = ACTIONS(3932), + [sym_hex_literal] = ACTIONS(3934), + [sym_bin_literal] = ACTIONS(3934), + [anon_sym_true] = ACTIONS(3932), + [anon_sym_false] = ACTIONS(3932), + [anon_sym_SQUOTE] = ACTIONS(3934), + [sym__backtick_identifier] = ACTIONS(3934), + [sym__automatic_semicolon] = ACTIONS(3934), + [sym_safe_nav] = ACTIONS(3934), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3934), + }, + [3077] = { + [sym__alpha_identifier] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_object] = ACTIONS(3065), + [anon_sym_fun] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3065), + [anon_sym_set] = ACTIONS(3065), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_super] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [sym_label] = ACTIONS(3065), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3067), + [anon_sym_QMARK_COLON] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_when] = ACTIONS(3065), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_as_QMARK] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_BANG_BANG] = ACTIONS(3067), + [anon_sym_data] = ACTIONS(3065), + [anon_sym_inner] = ACTIONS(3065), + [anon_sym_value] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3065), + [anon_sym_actual] = ACTIONS(3065), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3067), + [anon_sym_continue_AT] = ACTIONS(3067), + [anon_sym_break_AT] = ACTIONS(3067), + [anon_sym_this_AT] = ACTIONS(3067), + [anon_sym_super_AT] = ACTIONS(3067), + [sym_real_literal] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [sym_hex_literal] = ACTIONS(3067), + [sym_bin_literal] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [sym__backtick_identifier] = ACTIONS(3067), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3067), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3067), + }, + [3078] = { + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(6573), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [3079] = { + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_object] = ACTIONS(4846), + [anon_sym_fun] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_this] = ACTIONS(4846), + [anon_sym_super] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [sym_label] = ACTIONS(4846), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4846), + [anon_sym_if] = ACTIONS(4846), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_when] = ACTIONS(4846), + [anon_sym_try] = ACTIONS(4846), + [anon_sym_throw] = ACTIONS(4846), + [anon_sym_return] = ACTIONS(4846), + [anon_sym_continue] = ACTIONS(4846), + [anon_sym_break] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG] = ACTIONS(4846), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4848), + [anon_sym_continue_AT] = ACTIONS(4848), + [anon_sym_break_AT] = ACTIONS(4848), + [anon_sym_this_AT] = ACTIONS(4848), + [anon_sym_super_AT] = ACTIONS(4848), + [sym_real_literal] = ACTIONS(4848), + [sym_integer_literal] = ACTIONS(4846), + [sym_hex_literal] = ACTIONS(4848), + [sym_bin_literal] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4846), + [anon_sym_false] = ACTIONS(4846), + [anon_sym_SQUOTE] = ACTIONS(4848), + [sym__backtick_identifier] = ACTIONS(4848), + [sym__automatic_semicolon] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4848), + }, + [3080] = { + [aux_sym_nullable_type_repeat1] = STATE(3155), + [sym__alpha_identifier] = ACTIONS(4208), + [anon_sym_AT] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4210), + [anon_sym_EQ] = ACTIONS(4210), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_RBRACE] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(4210), + [anon_sym_COMMA] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4208), + [anon_sym_where] = ACTIONS(4208), + [anon_sym_object] = ACTIONS(4208), + [anon_sym_fun] = 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), + [sym__quest] = ACTIONS(6575), + [anon_sym_STAR] = ACTIONS(4210), + [sym_label] = ACTIONS(4208), + [anon_sym_in] = ACTIONS(4208), + [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_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_PLUS_PLUS] = ACTIONS(4210), + [anon_sym_DASH_DASH] = ACTIONS(4210), + [anon_sym_BANG] = ACTIONS(4208), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4210), + [anon_sym_super_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4210), + }, + [3081] = { + [sym__alpha_identifier] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4832), + [anon_sym_as] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4834), + [anon_sym_RBRACE] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4834), + [anon_sym_COMMA] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_where] = ACTIONS(4832), + [anon_sym_object] = ACTIONS(4832), + [anon_sym_fun] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4834), + [anon_sym_get] = ACTIONS(4832), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_this] = ACTIONS(4832), + [anon_sym_super] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [sym_label] = ACTIONS(4832), + [anon_sym_in] = ACTIONS(4832), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_QMARK_COLON] = ACTIONS(4834), + [anon_sym_AMP_AMP] = ACTIONS(4834), + [anon_sym_PIPE_PIPE] = ACTIONS(4834), + [anon_sym_null] = ACTIONS(4832), + [anon_sym_if] = ACTIONS(4832), + [anon_sym_else] = ACTIONS(4832), + [anon_sym_when] = ACTIONS(4832), + [anon_sym_try] = ACTIONS(4832), + [anon_sym_throw] = ACTIONS(4832), + [anon_sym_return] = ACTIONS(4832), + [anon_sym_continue] = ACTIONS(4832), + [anon_sym_break] = ACTIONS(4832), + [anon_sym_COLON_COLON] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4834), + [anon_sym_DASH_EQ] = ACTIONS(4834), + [anon_sym_STAR_EQ] = ACTIONS(4834), + [anon_sym_SLASH_EQ] = ACTIONS(4834), + [anon_sym_PERCENT_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4834), + [anon_sym_BANGin] = ACTIONS(4834), + [anon_sym_is] = ACTIONS(4832), + [anon_sym_BANGis] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_as_QMARK] = ACTIONS(4834), + [anon_sym_PLUS_PLUS] = ACTIONS(4834), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_BANG] = ACTIONS(4832), + [anon_sym_BANG_BANG] = ACTIONS(4834), + [anon_sym_data] = ACTIONS(4832), + [anon_sym_inner] = ACTIONS(4832), + [anon_sym_value] = ACTIONS(4832), + [anon_sym_expect] = ACTIONS(4832), + [anon_sym_actual] = ACTIONS(4832), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4834), + [anon_sym_continue_AT] = ACTIONS(4834), + [anon_sym_break_AT] = ACTIONS(4834), + [anon_sym_this_AT] = ACTIONS(4834), + [anon_sym_super_AT] = ACTIONS(4834), + [sym_real_literal] = ACTIONS(4834), + [sym_integer_literal] = ACTIONS(4832), + [sym_hex_literal] = ACTIONS(4834), + [sym_bin_literal] = ACTIONS(4834), + [anon_sym_true] = ACTIONS(4832), + [anon_sym_false] = ACTIONS(4832), + [anon_sym_SQUOTE] = ACTIONS(4834), + [sym__backtick_identifier] = ACTIONS(4834), + [sym__automatic_semicolon] = ACTIONS(4834), + [sym_safe_nav] = ACTIONS(4834), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4834), + }, + [3082] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_as] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_where] = ACTIONS(4822), + [anon_sym_object] = ACTIONS(4822), + [anon_sym_fun] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_get] = ACTIONS(4822), + [anon_sym_set] = ACTIONS(4822), + [anon_sym_this] = ACTIONS(4822), + [anon_sym_super] = ACTIONS(4822), + [anon_sym_STAR] = ACTIONS(4822), + [sym_label] = ACTIONS(4822), + [anon_sym_in] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_QMARK_COLON] = ACTIONS(4824), + [anon_sym_AMP_AMP] = ACTIONS(4824), + [anon_sym_PIPE_PIPE] = ACTIONS(4824), + [anon_sym_null] = ACTIONS(4822), + [anon_sym_if] = ACTIONS(4822), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_when] = ACTIONS(4822), + [anon_sym_try] = ACTIONS(4822), + [anon_sym_throw] = ACTIONS(4822), + [anon_sym_return] = ACTIONS(4822), + [anon_sym_continue] = ACTIONS(4822), + [anon_sym_break] = ACTIONS(4822), + [anon_sym_COLON_COLON] = ACTIONS(4824), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_PERCENT_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4824), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_BANGin] = ACTIONS(4824), + [anon_sym_is] = ACTIONS(4822), + [anon_sym_BANGis] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_as_QMARK] = ACTIONS(4824), + [anon_sym_PLUS_PLUS] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4824), + [anon_sym_BANG] = ACTIONS(4822), + [anon_sym_BANG_BANG] = ACTIONS(4824), + [anon_sym_data] = ACTIONS(4822), + [anon_sym_inner] = ACTIONS(4822), + [anon_sym_value] = ACTIONS(4822), + [anon_sym_expect] = ACTIONS(4822), + [anon_sym_actual] = ACTIONS(4822), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4824), + [anon_sym_continue_AT] = ACTIONS(4824), + [anon_sym_break_AT] = ACTIONS(4824), + [anon_sym_this_AT] = ACTIONS(4824), + [anon_sym_super_AT] = ACTIONS(4824), + [sym_real_literal] = ACTIONS(4824), + [sym_integer_literal] = ACTIONS(4822), + [sym_hex_literal] = ACTIONS(4824), + [sym_bin_literal] = ACTIONS(4824), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_SQUOTE] = ACTIONS(4824), + [sym__backtick_identifier] = ACTIONS(4824), + [sym__automatic_semicolon] = ACTIONS(4824), + [sym_safe_nav] = ACTIONS(4824), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4824), + }, + [3083] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_object] = ACTIONS(4992), + [anon_sym_fun] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_this] = ACTIONS(4992), + [anon_sym_super] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [sym_label] = ACTIONS(4992), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_when] = ACTIONS(4992), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_throw] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(6577), + [anon_sym_PLUS_EQ] = ACTIONS(5013), + [anon_sym_DASH_EQ] = ACTIONS(5013), + [anon_sym_STAR_EQ] = ACTIONS(5013), + [anon_sym_SLASH_EQ] = ACTIONS(5013), + [anon_sym_PERCENT_EQ] = ACTIONS(5013), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4994), + [anon_sym_continue_AT] = ACTIONS(4994), + [anon_sym_break_AT] = ACTIONS(4994), + [anon_sym_this_AT] = ACTIONS(4994), + [anon_sym_super_AT] = ACTIONS(4994), + [sym_real_literal] = ACTIONS(4994), + [sym_integer_literal] = ACTIONS(4992), + [sym_hex_literal] = ACTIONS(4994), + [sym_bin_literal] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4994), + [sym__backtick_identifier] = ACTIONS(4994), + [sym__automatic_semicolon] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4994), + }, + [3084] = { + [sym_type_constraints] = STATE(3351), + [sym_enum_class_body] = STATE(3369), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4946), }, - [3121] = { - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [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_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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4462), - [anon_sym_super_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), + [3085] = { + [aux_sym_user_type_repeat1] = STATE(2896), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(6461), + [anon_sym_EQ] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_object] = ACTIONS(4103), + [anon_sym_fun] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_this] = ACTIONS(4103), + [anon_sym_super] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4105), + [sym_label] = ACTIONS(4103), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_null] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_when] = ACTIONS(4103), + [anon_sym_try] = ACTIONS(4103), + [anon_sym_throw] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG] = ACTIONS(4103), + [anon_sym_suspend] = ACTIONS(4103), + [anon_sym_sealed] = ACTIONS(4103), + [anon_sym_annotation] = ACTIONS(4103), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4103), + [anon_sym_lateinit] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_internal] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_tailrec] = ACTIONS(4103), + [anon_sym_operator] = ACTIONS(4103), + [anon_sym_infix] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_external] = ACTIONS(4103), + [sym_property_modifier] = ACTIONS(4103), + [anon_sym_abstract] = ACTIONS(4103), + [anon_sym_final] = ACTIONS(4103), + [anon_sym_open] = ACTIONS(4103), + [anon_sym_vararg] = ACTIONS(4103), + [anon_sym_noinline] = ACTIONS(4103), + [anon_sym_crossinline] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4105), + [anon_sym_continue_AT] = ACTIONS(4105), + [anon_sym_break_AT] = ACTIONS(4105), + [anon_sym_this_AT] = ACTIONS(4105), + [anon_sym_super_AT] = ACTIONS(4105), + [sym_real_literal] = ACTIONS(4105), + [sym_integer_literal] = ACTIONS(4103), + [sym_hex_literal] = ACTIONS(4105), + [sym_bin_literal] = ACTIONS(4105), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_SQUOTE] = ACTIONS(4105), + [sym__backtick_identifier] = ACTIONS(4105), + [sym__automatic_semicolon] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4105), }, - [3122] = { - [sym_type_constraints] = STATE(3295), - [sym_enum_class_body] = STATE(3510), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_RBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_DASH_GT] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [3086] = { + [sym_value_arguments] = STATE(3384), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(6580), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [anon_sym_DASH_GT] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), [sym_multiline_comment] = ACTIONS(3), }, - [3123] = { - [sym__alpha_identifier] = ACTIONS(4826), - [anon_sym_AT] = ACTIONS(4828), - [anon_sym_LBRACK] = ACTIONS(4828), - [anon_sym_DOT] = ACTIONS(4826), - [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_SEMI] = ACTIONS(4828), - [anon_sym_get] = ACTIONS(4826), - [anon_sym_set] = ACTIONS(4826), - [anon_sym_this] = ACTIONS(4826), - [anon_sym_super] = ACTIONS(4826), - [anon_sym_STAR] = ACTIONS(4826), - [sym_label] = ACTIONS(4826), - [anon_sym_in] = ACTIONS(4826), - [anon_sym_DOT_DOT] = ACTIONS(4828), - [anon_sym_QMARK_COLON] = ACTIONS(4828), - [anon_sym_AMP_AMP] = ACTIONS(4828), - [anon_sym_PIPE_PIPE] = ACTIONS(4828), - [anon_sym_null] = ACTIONS(4826), - [anon_sym_if] = ACTIONS(4826), - [anon_sym_else] = ACTIONS(4826), - [anon_sym_when] = ACTIONS(4826), - [anon_sym_try] = ACTIONS(4826), - [anon_sym_throw] = ACTIONS(4826), - [anon_sym_return] = ACTIONS(4826), - [anon_sym_continue] = ACTIONS(4826), - [anon_sym_break] = ACTIONS(4826), - [anon_sym_COLON_COLON] = ACTIONS(4828), - [anon_sym_PLUS_EQ] = ACTIONS(4828), - [anon_sym_DASH_EQ] = ACTIONS(4828), - [anon_sym_STAR_EQ] = ACTIONS(4828), - [anon_sym_SLASH_EQ] = ACTIONS(4828), - [anon_sym_PERCENT_EQ] = ACTIONS(4828), - [anon_sym_BANG_EQ] = ACTIONS(4826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), - [anon_sym_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4828), - [anon_sym_is] = ACTIONS(4826), - [anon_sym_BANGis] = ACTIONS(4828), - [anon_sym_PLUS] = ACTIONS(4826), - [anon_sym_DASH] = ACTIONS(4826), - [anon_sym_SLASH] = ACTIONS(4826), - [anon_sym_PERCENT] = ACTIONS(4826), - [anon_sym_as_QMARK] = ACTIONS(4828), - [anon_sym_PLUS_PLUS] = ACTIONS(4828), - [anon_sym_DASH_DASH] = ACTIONS(4828), - [anon_sym_BANG] = ACTIONS(4826), - [anon_sym_BANG_BANG] = ACTIONS(4828), - [anon_sym_data] = ACTIONS(4826), - [anon_sym_inner] = ACTIONS(4826), - [anon_sym_value] = ACTIONS(4826), - [anon_sym_expect] = ACTIONS(4826), - [anon_sym_actual] = ACTIONS(4826), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4828), - [anon_sym_continue_AT] = ACTIONS(4828), - [anon_sym_break_AT] = ACTIONS(4828), - [anon_sym_this_AT] = ACTIONS(4828), - [anon_sym_super_AT] = ACTIONS(4828), - [sym_real_literal] = ACTIONS(4828), - [sym_integer_literal] = ACTIONS(4826), - [sym_hex_literal] = ACTIONS(4828), - [sym_bin_literal] = ACTIONS(4828), - [anon_sym_true] = ACTIONS(4826), - [anon_sym_false] = ACTIONS(4826), - [anon_sym_SQUOTE] = ACTIONS(4828), - [sym__backtick_identifier] = ACTIONS(4828), - [sym__automatic_semicolon] = ACTIONS(4828), - [sym_safe_nav] = ACTIONS(4828), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4828), + [3087] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_where] = ACTIONS(4814), + [anon_sym_object] = ACTIONS(4814), + [anon_sym_fun] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_get] = ACTIONS(4814), + [anon_sym_set] = ACTIONS(4814), + [anon_sym_this] = ACTIONS(4814), + [anon_sym_super] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [sym_label] = ACTIONS(4814), + [anon_sym_in] = ACTIONS(4814), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_QMARK_COLON] = ACTIONS(4816), + [anon_sym_AMP_AMP] = ACTIONS(4816), + [anon_sym_PIPE_PIPE] = ACTIONS(4816), + [anon_sym_null] = ACTIONS(4814), + [anon_sym_if] = ACTIONS(4814), + [anon_sym_else] = ACTIONS(4814), + [anon_sym_when] = ACTIONS(4814), + [anon_sym_try] = ACTIONS(4814), + [anon_sym_throw] = ACTIONS(4814), + [anon_sym_return] = ACTIONS(4814), + [anon_sym_continue] = ACTIONS(4814), + [anon_sym_break] = ACTIONS(4814), + [anon_sym_COLON_COLON] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4816), + [anon_sym_DASH_EQ] = ACTIONS(4816), + [anon_sym_STAR_EQ] = ACTIONS(4816), + [anon_sym_SLASH_EQ] = ACTIONS(4816), + [anon_sym_PERCENT_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4816), + [anon_sym_BANGin] = ACTIONS(4816), + [anon_sym_is] = ACTIONS(4814), + [anon_sym_BANGis] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_as_QMARK] = ACTIONS(4816), + [anon_sym_PLUS_PLUS] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4816), + [anon_sym_BANG] = ACTIONS(4814), + [anon_sym_BANG_BANG] = ACTIONS(4816), + [anon_sym_data] = ACTIONS(4814), + [anon_sym_inner] = ACTIONS(4814), + [anon_sym_value] = ACTIONS(4814), + [anon_sym_expect] = ACTIONS(4814), + [anon_sym_actual] = ACTIONS(4814), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4816), + [anon_sym_continue_AT] = ACTIONS(4816), + [anon_sym_break_AT] = ACTIONS(4816), + [anon_sym_this_AT] = ACTIONS(4816), + [anon_sym_super_AT] = ACTIONS(4816), + [sym_real_literal] = ACTIONS(4816), + [sym_integer_literal] = ACTIONS(4814), + [sym_hex_literal] = ACTIONS(4816), + [sym_bin_literal] = ACTIONS(4816), + [anon_sym_true] = ACTIONS(4814), + [anon_sym_false] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4816), + [sym__backtick_identifier] = ACTIONS(4816), + [sym__automatic_semicolon] = ACTIONS(4816), + [sym_safe_nav] = ACTIONS(4816), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4816), }, - [3124] = { - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_by] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_object] = ACTIONS(4321), - [anon_sym_fun] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [anon_sym_this] = ACTIONS(4321), - [anon_sym_super] = ACTIONS(4321), - [sym__quest] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4323), - [anon_sym_DASH_GT] = ACTIONS(4325), - [sym_label] = ACTIONS(4321), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_null] = ACTIONS(4321), - [anon_sym_if] = ACTIONS(4321), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_when] = ACTIONS(4321), - [anon_sym_try] = ACTIONS(4321), - [anon_sym_throw] = ACTIONS(4321), - [anon_sym_return] = ACTIONS(4321), - [anon_sym_continue] = ACTIONS(4321), - [anon_sym_break] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG] = ACTIONS(4321), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), + [3088] = { + [sym__alpha_identifier] = ACTIONS(4256), + [anon_sym_AT] = ACTIONS(4258), + [anon_sym_LBRACK] = ACTIONS(4258), + [anon_sym_DOT] = ACTIONS(4256), + [anon_sym_as] = ACTIONS(4256), + [anon_sym_EQ] = ACTIONS(4256), + [anon_sym_LBRACE] = ACTIONS(4258), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_LPAREN] = ACTIONS(4258), + [anon_sym_COMMA] = ACTIONS(4258), + [anon_sym_LT] = ACTIONS(4256), + [anon_sym_GT] = ACTIONS(4256), + [anon_sym_where] = ACTIONS(4256), + [anon_sym_object] = ACTIONS(4256), + [anon_sym_fun] = ACTIONS(4256), + [anon_sym_SEMI] = ACTIONS(4258), + [anon_sym_get] = ACTIONS(4256), + [anon_sym_set] = ACTIONS(4256), + [anon_sym_this] = ACTIONS(4256), + [anon_sym_super] = ACTIONS(4256), + [anon_sym_STAR] = ACTIONS(4256), + [sym_label] = ACTIONS(4256), + [anon_sym_in] = ACTIONS(4256), + [anon_sym_DOT_DOT] = ACTIONS(4258), + [anon_sym_QMARK_COLON] = ACTIONS(4258), + [anon_sym_AMP_AMP] = ACTIONS(4258), + [anon_sym_PIPE_PIPE] = ACTIONS(4258), + [anon_sym_null] = ACTIONS(4256), + [anon_sym_if] = ACTIONS(4256), + [anon_sym_else] = ACTIONS(4256), + [anon_sym_when] = ACTIONS(4256), + [anon_sym_try] = ACTIONS(4256), + [anon_sym_throw] = ACTIONS(4256), + [anon_sym_return] = ACTIONS(4256), + [anon_sym_continue] = ACTIONS(4256), + [anon_sym_break] = ACTIONS(4256), + [anon_sym_COLON_COLON] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_BANG_EQ] = ACTIONS(4256), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), + [anon_sym_EQ_EQ] = ACTIONS(4256), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), + [anon_sym_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_EQ] = ACTIONS(4258), + [anon_sym_BANGin] = ACTIONS(4258), + [anon_sym_is] = ACTIONS(4256), + [anon_sym_BANGis] = ACTIONS(4258), + [anon_sym_PLUS] = ACTIONS(4256), + [anon_sym_DASH] = ACTIONS(4256), + [anon_sym_SLASH] = ACTIONS(4256), + [anon_sym_PERCENT] = ACTIONS(4256), + [anon_sym_as_QMARK] = ACTIONS(4258), + [anon_sym_PLUS_PLUS] = ACTIONS(4258), + [anon_sym_DASH_DASH] = ACTIONS(4258), + [anon_sym_BANG] = ACTIONS(4256), + [anon_sym_BANG_BANG] = ACTIONS(4258), + [anon_sym_data] = ACTIONS(4256), + [anon_sym_inner] = ACTIONS(4256), + [anon_sym_value] = ACTIONS(4256), + [anon_sym_expect] = ACTIONS(4256), + [anon_sym_actual] = ACTIONS(4256), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4323), - [anon_sym_continue_AT] = ACTIONS(4323), - [anon_sym_break_AT] = ACTIONS(4323), - [anon_sym_this_AT] = ACTIONS(4323), - [anon_sym_super_AT] = ACTIONS(4323), - [sym_real_literal] = ACTIONS(4323), - [sym_integer_literal] = ACTIONS(4321), - [sym_hex_literal] = ACTIONS(4323), - [sym_bin_literal] = ACTIONS(4323), - [anon_sym_true] = ACTIONS(4321), - [anon_sym_false] = ACTIONS(4321), - [anon_sym_SQUOTE] = ACTIONS(4323), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), + [anon_sym_return_AT] = ACTIONS(4258), + [anon_sym_continue_AT] = ACTIONS(4258), + [anon_sym_break_AT] = ACTIONS(4258), + [anon_sym_this_AT] = ACTIONS(4258), + [anon_sym_super_AT] = ACTIONS(4258), + [sym_real_literal] = ACTIONS(4258), + [sym_integer_literal] = ACTIONS(4256), + [sym_hex_literal] = ACTIONS(4258), + [sym_bin_literal] = ACTIONS(4258), + [anon_sym_true] = ACTIONS(4256), + [anon_sym_false] = ACTIONS(4256), + [anon_sym_SQUOTE] = ACTIONS(4258), + [sym__backtick_identifier] = ACTIONS(4258), + [sym__automatic_semicolon] = ACTIONS(4258), + [sym_safe_nav] = ACTIONS(4258), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4323), + [sym__string_start] = ACTIONS(4258), }, - [3125] = { - [sym_function_body] = STATE(3113), - [sym__block] = STATE(3072), + [3089] = { + [sym_class_body] = STATE(3369), + [sym_type_constraints] = STATE(3348), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3090] = { + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_COLON] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_RBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_constructor] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_RPAREN] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [anon_sym_DASH_GT] = ACTIONS(4384), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_while] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + }, + [3091] = { + [sym_type_constraints] = STATE(3345), + [sym_enum_class_body] = STATE(3372), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_DASH_GT] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + }, + [3092] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4810), + [anon_sym_as] = ACTIONS(4810), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_where] = ACTIONS(4810), + [anon_sym_object] = ACTIONS(4810), + [anon_sym_fun] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_get] = ACTIONS(4810), + [anon_sym_set] = ACTIONS(4810), + [anon_sym_this] = ACTIONS(4810), + [anon_sym_super] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4810), + [sym_label] = ACTIONS(4810), + [anon_sym_in] = ACTIONS(4810), + [anon_sym_DOT_DOT] = ACTIONS(4812), + [anon_sym_QMARK_COLON] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_null] = ACTIONS(4810), + [anon_sym_if] = ACTIONS(4810), + [anon_sym_else] = ACTIONS(4810), + [anon_sym_when] = ACTIONS(4810), + [anon_sym_try] = ACTIONS(4810), + [anon_sym_throw] = ACTIONS(4810), + [anon_sym_return] = ACTIONS(4810), + [anon_sym_continue] = ACTIONS(4810), + [anon_sym_break] = ACTIONS(4810), + [anon_sym_COLON_COLON] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_BANGin] = ACTIONS(4812), + [anon_sym_is] = ACTIONS(4810), + [anon_sym_BANGis] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_SLASH] = ACTIONS(4810), + [anon_sym_PERCENT] = ACTIONS(4810), + [anon_sym_as_QMARK] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_BANG] = ACTIONS(4810), + [anon_sym_BANG_BANG] = ACTIONS(4812), + [anon_sym_data] = ACTIONS(4810), + [anon_sym_inner] = ACTIONS(4810), + [anon_sym_value] = ACTIONS(4810), + [anon_sym_expect] = ACTIONS(4810), + [anon_sym_actual] = ACTIONS(4810), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4812), + [anon_sym_continue_AT] = ACTIONS(4812), + [anon_sym_break_AT] = ACTIONS(4812), + [anon_sym_this_AT] = ACTIONS(4812), + [anon_sym_super_AT] = ACTIONS(4812), + [sym_real_literal] = ACTIONS(4812), + [sym_integer_literal] = ACTIONS(4810), + [sym_hex_literal] = ACTIONS(4812), + [sym_bin_literal] = ACTIONS(4812), + [anon_sym_true] = ACTIONS(4810), + [anon_sym_false] = ACTIONS(4810), + [anon_sym_SQUOTE] = ACTIONS(4812), + [sym__backtick_identifier] = ACTIONS(4812), + [sym__automatic_semicolon] = ACTIONS(4812), + [sym_safe_nav] = ACTIONS(4812), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4812), + }, + [3093] = { + [sym_function_body] = STATE(3123), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [3094] = { + [sym_function_body] = STATE(3539), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_RBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [anon_sym_DASH_GT] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + }, + [3095] = { + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_object] = ACTIONS(4880), + [anon_sym_fun] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_this] = ACTIONS(4880), + [anon_sym_super] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [sym_label] = ACTIONS(4880), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_null] = ACTIONS(4880), + [anon_sym_if] = ACTIONS(4880), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4880), + [anon_sym_throw] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4880), + [anon_sym_continue] = ACTIONS(4880), + [anon_sym_break] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4880), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4882), + [anon_sym_continue_AT] = ACTIONS(4882), + [anon_sym_break_AT] = ACTIONS(4882), + [anon_sym_this_AT] = ACTIONS(4882), + [anon_sym_super_AT] = ACTIONS(4882), + [sym_real_literal] = ACTIONS(4882), + [sym_integer_literal] = ACTIONS(4880), + [sym_hex_literal] = ACTIONS(4882), + [sym_bin_literal] = ACTIONS(4882), + [anon_sym_true] = ACTIONS(4880), + [anon_sym_false] = ACTIONS(4880), + [anon_sym_SQUOTE] = ACTIONS(4882), + [sym__backtick_identifier] = ACTIONS(4882), + [sym__automatic_semicolon] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4882), + }, + [3096] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_RBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_as] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4093), + [anon_sym_constructor] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_RPAREN] = ACTIONS(4095), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_GT] = ACTIONS(4093), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [anon_sym_DASH_GT] = ACTIONS(4095), + [sym_label] = ACTIONS(4095), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_while] = ACTIONS(4093), + [anon_sym_DOT_DOT] = ACTIONS(4095), + [anon_sym_QMARK_COLON] = ACTIONS(4095), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_PIPE_PIPE] = ACTIONS(4095), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ] = ACTIONS(4093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_SLASH] = ACTIONS(4093), + [anon_sym_PERCENT] = ACTIONS(4093), + [anon_sym_as_QMARK] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG_BANG] = ACTIONS(4095), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4095), + [sym_safe_nav] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), + }, + [3097] = { + [sym__alpha_identifier] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4896), + [anon_sym_as] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_where] = ACTIONS(4896), + [anon_sym_object] = ACTIONS(4896), + [anon_sym_fun] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_get] = ACTIONS(4896), + [anon_sym_set] = ACTIONS(4896), + [anon_sym_this] = ACTIONS(4896), + [anon_sym_super] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [sym_label] = ACTIONS(4896), + [anon_sym_in] = ACTIONS(4896), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_QMARK_COLON] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4896), + [anon_sym_if] = ACTIONS(4896), + [anon_sym_else] = ACTIONS(4896), + [anon_sym_when] = ACTIONS(4896), + [anon_sym_try] = ACTIONS(4896), + [anon_sym_throw] = ACTIONS(4896), + [anon_sym_return] = ACTIONS(4896), + [anon_sym_continue] = ACTIONS(4896), + [anon_sym_break] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4898), + [anon_sym_DASH_EQ] = ACTIONS(4898), + [anon_sym_STAR_EQ] = ACTIONS(4898), + [anon_sym_SLASH_EQ] = ACTIONS(4898), + [anon_sym_PERCENT_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_BANGin] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4896), + [anon_sym_BANGis] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_as_QMARK] = ACTIONS(4898), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_BANG_BANG] = ACTIONS(4898), + [anon_sym_data] = ACTIONS(4896), + [anon_sym_inner] = ACTIONS(4896), + [anon_sym_value] = ACTIONS(4896), + [anon_sym_expect] = ACTIONS(4896), + [anon_sym_actual] = ACTIONS(4896), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4898), + [anon_sym_continue_AT] = ACTIONS(4898), + [anon_sym_break_AT] = ACTIONS(4898), + [anon_sym_this_AT] = ACTIONS(4898), + [anon_sym_super_AT] = ACTIONS(4898), + [sym_real_literal] = ACTIONS(4898), + [sym_integer_literal] = ACTIONS(4896), + [sym_hex_literal] = ACTIONS(4898), + [sym_bin_literal] = ACTIONS(4898), + [anon_sym_true] = ACTIONS(4896), + [anon_sym_false] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4898), + [sym__backtick_identifier] = ACTIONS(4898), + [sym__automatic_semicolon] = ACTIONS(4898), + [sym_safe_nav] = ACTIONS(4898), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4898), + }, + [3098] = { + [sym__alpha_identifier] = ACTIONS(4904), + [anon_sym_AT] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4906), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_object] = ACTIONS(4904), + [anon_sym_fun] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4906), + [anon_sym_get] = ACTIONS(4904), + [anon_sym_set] = ACTIONS(4904), + [anon_sym_this] = ACTIONS(4904), + [anon_sym_super] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [sym_label] = ACTIONS(4904), + [anon_sym_in] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_QMARK_COLON] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4906), + [anon_sym_PIPE_PIPE] = ACTIONS(4906), + [anon_sym_null] = ACTIONS(4904), + [anon_sym_if] = ACTIONS(4904), + [anon_sym_else] = ACTIONS(4904), + [anon_sym_when] = ACTIONS(4904), + [anon_sym_try] = ACTIONS(4904), + [anon_sym_throw] = ACTIONS(4904), + [anon_sym_return] = ACTIONS(4904), + [anon_sym_continue] = ACTIONS(4904), + [anon_sym_break] = ACTIONS(4904), + [anon_sym_COLON_COLON] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4906), + [anon_sym_DASH_EQ] = ACTIONS(4906), + [anon_sym_STAR_EQ] = ACTIONS(4906), + [anon_sym_SLASH_EQ] = ACTIONS(4906), + [anon_sym_PERCENT_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4906), + [anon_sym_BANGin] = ACTIONS(4906), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_BANGis] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_as_QMARK] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4906), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_BANG_BANG] = ACTIONS(4906), + [anon_sym_data] = ACTIONS(4904), + [anon_sym_inner] = ACTIONS(4904), + [anon_sym_value] = ACTIONS(4904), + [anon_sym_expect] = ACTIONS(4904), + [anon_sym_actual] = ACTIONS(4904), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4906), + [anon_sym_continue_AT] = ACTIONS(4906), + [anon_sym_break_AT] = ACTIONS(4906), + [anon_sym_this_AT] = ACTIONS(4906), + [anon_sym_super_AT] = ACTIONS(4906), + [sym_real_literal] = ACTIONS(4906), + [sym_integer_literal] = ACTIONS(4904), + [sym_hex_literal] = ACTIONS(4906), + [sym_bin_literal] = ACTIONS(4906), + [anon_sym_true] = ACTIONS(4904), + [anon_sym_false] = ACTIONS(4904), + [anon_sym_SQUOTE] = ACTIONS(4906), + [sym__backtick_identifier] = ACTIONS(4906), + [sym__automatic_semicolon] = ACTIONS(4906), + [sym_safe_nav] = ACTIONS(4906), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4906), + }, + [3099] = { + [sym_function_body] = STATE(3098), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [3100] = { + [sym_type_constraints] = STATE(3342), + [sym_enum_class_body] = STATE(3383), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_RBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(5462), + [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(5448), + [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_value] = 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), + }, + [3101] = { + [sym__alpha_identifier] = ACTIONS(4792), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_where] = ACTIONS(4792), + [anon_sym_object] = ACTIONS(4792), + [anon_sym_fun] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_get] = ACTIONS(4792), + [anon_sym_set] = ACTIONS(4792), + [anon_sym_this] = ACTIONS(4792), + [anon_sym_super] = ACTIONS(4792), + [anon_sym_STAR] = ACTIONS(4792), + [sym_label] = ACTIONS(4792), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4794), + [anon_sym_QMARK_COLON] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_null] = ACTIONS(4792), + [anon_sym_if] = ACTIONS(4792), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_when] = ACTIONS(4792), + [anon_sym_try] = ACTIONS(4792), + [anon_sym_throw] = ACTIONS(4792), + [anon_sym_return] = ACTIONS(4792), + [anon_sym_continue] = ACTIONS(4792), + [anon_sym_break] = ACTIONS(4792), + [anon_sym_COLON_COLON] = ACTIONS(4794), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_PERCENT_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4794), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_BANGin] = ACTIONS(4794), + [anon_sym_is] = ACTIONS(4792), + [anon_sym_BANGis] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_PERCENT] = ACTIONS(4792), + [anon_sym_as_QMARK] = ACTIONS(4794), + [anon_sym_PLUS_PLUS] = ACTIONS(4794), + [anon_sym_DASH_DASH] = ACTIONS(4794), + [anon_sym_BANG] = ACTIONS(4792), + [anon_sym_BANG_BANG] = ACTIONS(4794), + [anon_sym_data] = ACTIONS(4792), + [anon_sym_inner] = ACTIONS(4792), + [anon_sym_value] = ACTIONS(4792), + [anon_sym_expect] = ACTIONS(4792), + [anon_sym_actual] = ACTIONS(4792), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4794), + [anon_sym_continue_AT] = ACTIONS(4794), + [anon_sym_break_AT] = ACTIONS(4794), + [anon_sym_this_AT] = ACTIONS(4794), + [anon_sym_super_AT] = ACTIONS(4794), + [sym_real_literal] = ACTIONS(4794), + [sym_integer_literal] = ACTIONS(4792), + [sym_hex_literal] = ACTIONS(4794), + [sym_bin_literal] = ACTIONS(4794), + [anon_sym_true] = ACTIONS(4792), + [anon_sym_false] = ACTIONS(4792), + [anon_sym_SQUOTE] = ACTIONS(4794), + [sym__backtick_identifier] = ACTIONS(4794), + [sym__automatic_semicolon] = ACTIONS(4794), + [sym_safe_nav] = ACTIONS(4794), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4794), + }, + [3102] = { + [sym__alpha_identifier] = ACTIONS(4788), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_where] = ACTIONS(4788), + [anon_sym_object] = ACTIONS(4788), + [anon_sym_fun] = ACTIONS(4788), + [anon_sym_SEMI] = ACTIONS(4790), + [anon_sym_get] = ACTIONS(4788), + [anon_sym_set] = ACTIONS(4788), + [anon_sym_this] = ACTIONS(4788), + [anon_sym_super] = ACTIONS(4788), + [anon_sym_STAR] = ACTIONS(4788), + [sym_label] = ACTIONS(4788), + [anon_sym_in] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4790), + [anon_sym_QMARK_COLON] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_null] = ACTIONS(4788), + [anon_sym_if] = ACTIONS(4788), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_when] = ACTIONS(4788), + [anon_sym_try] = ACTIONS(4788), + [anon_sym_throw] = ACTIONS(4788), + [anon_sym_return] = ACTIONS(4788), + [anon_sym_continue] = ACTIONS(4788), + [anon_sym_break] = ACTIONS(4788), + [anon_sym_COLON_COLON] = ACTIONS(4790), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4790), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_BANGin] = ACTIONS(4790), + [anon_sym_is] = ACTIONS(4788), + [anon_sym_BANGis] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_as_QMARK] = ACTIONS(4790), + [anon_sym_PLUS_PLUS] = ACTIONS(4790), + [anon_sym_DASH_DASH] = ACTIONS(4790), + [anon_sym_BANG] = ACTIONS(4788), + [anon_sym_BANG_BANG] = ACTIONS(4790), + [anon_sym_data] = ACTIONS(4788), + [anon_sym_inner] = ACTIONS(4788), + [anon_sym_value] = ACTIONS(4788), + [anon_sym_expect] = ACTIONS(4788), + [anon_sym_actual] = ACTIONS(4788), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4790), + [anon_sym_continue_AT] = ACTIONS(4790), + [anon_sym_break_AT] = ACTIONS(4790), + [anon_sym_this_AT] = ACTIONS(4790), + [anon_sym_super_AT] = ACTIONS(4790), + [sym_real_literal] = ACTIONS(4790), + [sym_integer_literal] = ACTIONS(4788), + [sym_hex_literal] = ACTIONS(4790), + [sym_bin_literal] = ACTIONS(4790), + [anon_sym_true] = ACTIONS(4788), + [anon_sym_false] = ACTIONS(4788), + [anon_sym_SQUOTE] = ACTIONS(4790), + [sym__backtick_identifier] = ACTIONS(4790), + [sym__automatic_semicolon] = ACTIONS(4790), + [sym_safe_nav] = ACTIONS(4790), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4790), + }, + [3103] = { + [sym__alpha_identifier] = ACTIONS(4780), + [anon_sym_AT] = ACTIONS(4782), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4780), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_COMMA] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_where] = ACTIONS(4780), + [anon_sym_object] = ACTIONS(4780), + [anon_sym_fun] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4782), + [anon_sym_get] = ACTIONS(4780), + [anon_sym_set] = ACTIONS(4780), + [anon_sym_this] = ACTIONS(4780), + [anon_sym_super] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4780), + [anon_sym_in] = ACTIONS(4780), + [anon_sym_DOT_DOT] = ACTIONS(4782), + [anon_sym_QMARK_COLON] = ACTIONS(4782), + [anon_sym_AMP_AMP] = ACTIONS(4782), + [anon_sym_PIPE_PIPE] = ACTIONS(4782), + [anon_sym_null] = ACTIONS(4780), + [anon_sym_if] = ACTIONS(4780), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_when] = ACTIONS(4780), + [anon_sym_try] = ACTIONS(4780), + [anon_sym_throw] = ACTIONS(4780), + [anon_sym_return] = ACTIONS(4780), + [anon_sym_continue] = ACTIONS(4780), + [anon_sym_break] = ACTIONS(4780), + [anon_sym_COLON_COLON] = ACTIONS(4782), + [anon_sym_PLUS_EQ] = ACTIONS(4782), + [anon_sym_DASH_EQ] = ACTIONS(4782), + [anon_sym_STAR_EQ] = ACTIONS(4782), + [anon_sym_SLASH_EQ] = ACTIONS(4782), + [anon_sym_PERCENT_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4782), + [anon_sym_LT_EQ] = ACTIONS(4782), + [anon_sym_GT_EQ] = ACTIONS(4782), + [anon_sym_BANGin] = ACTIONS(4782), + [anon_sym_is] = ACTIONS(4780), + [anon_sym_BANGis] = ACTIONS(4782), + [anon_sym_PLUS] = ACTIONS(4780), + [anon_sym_DASH] = ACTIONS(4780), + [anon_sym_SLASH] = ACTIONS(4780), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4782), + [anon_sym_PLUS_PLUS] = ACTIONS(4782), + [anon_sym_DASH_DASH] = ACTIONS(4782), + [anon_sym_BANG] = ACTIONS(4780), + [anon_sym_BANG_BANG] = ACTIONS(4782), + [anon_sym_data] = ACTIONS(4780), + [anon_sym_inner] = ACTIONS(4780), + [anon_sym_value] = ACTIONS(4780), + [anon_sym_expect] = ACTIONS(4780), + [anon_sym_actual] = ACTIONS(4780), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4782), + [anon_sym_continue_AT] = ACTIONS(4782), + [anon_sym_break_AT] = ACTIONS(4782), + [anon_sym_this_AT] = ACTIONS(4782), + [anon_sym_super_AT] = ACTIONS(4782), + [sym_real_literal] = ACTIONS(4782), + [sym_integer_literal] = ACTIONS(4780), + [sym_hex_literal] = ACTIONS(4782), + [sym_bin_literal] = ACTIONS(4782), + [anon_sym_true] = ACTIONS(4780), + [anon_sym_false] = ACTIONS(4780), + [anon_sym_SQUOTE] = ACTIONS(4782), + [sym__backtick_identifier] = ACTIONS(4782), + [sym__automatic_semicolon] = ACTIONS(4782), + [sym_safe_nav] = ACTIONS(4782), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4782), + }, + [3104] = { + [sym__alpha_identifier] = ACTIONS(4776), + [anon_sym_AT] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(4776), + [anon_sym_LBRACE] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_where] = ACTIONS(4776), + [anon_sym_object] = ACTIONS(4776), + [anon_sym_fun] = ACTIONS(4776), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym_get] = ACTIONS(4776), + [anon_sym_set] = ACTIONS(4776), + [anon_sym_this] = ACTIONS(4776), + [anon_sym_super] = ACTIONS(4776), + [anon_sym_STAR] = ACTIONS(4776), + [sym_label] = ACTIONS(4776), + [anon_sym_in] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4778), + [anon_sym_QMARK_COLON] = ACTIONS(4778), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE_PIPE] = ACTIONS(4778), + [anon_sym_null] = ACTIONS(4776), + [anon_sym_if] = ACTIONS(4776), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_when] = ACTIONS(4776), + [anon_sym_try] = ACTIONS(4776), + [anon_sym_throw] = ACTIONS(4776), + [anon_sym_return] = ACTIONS(4776), + [anon_sym_continue] = ACTIONS(4776), + [anon_sym_break] = ACTIONS(4776), + [anon_sym_COLON_COLON] = ACTIONS(4778), + [anon_sym_PLUS_EQ] = ACTIONS(4778), + [anon_sym_DASH_EQ] = ACTIONS(4778), + [anon_sym_STAR_EQ] = ACTIONS(4778), + [anon_sym_SLASH_EQ] = ACTIONS(4778), + [anon_sym_PERCENT_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4778), + [anon_sym_LT_EQ] = ACTIONS(4778), + [anon_sym_GT_EQ] = ACTIONS(4778), + [anon_sym_BANGin] = ACTIONS(4778), + [anon_sym_is] = ACTIONS(4776), + [anon_sym_BANGis] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4776), + [anon_sym_DASH] = ACTIONS(4776), + [anon_sym_SLASH] = ACTIONS(4776), + [anon_sym_PERCENT] = ACTIONS(4776), + [anon_sym_as_QMARK] = ACTIONS(4778), + [anon_sym_PLUS_PLUS] = ACTIONS(4778), + [anon_sym_DASH_DASH] = ACTIONS(4778), + [anon_sym_BANG] = ACTIONS(4776), + [anon_sym_BANG_BANG] = ACTIONS(4778), + [anon_sym_data] = ACTIONS(4776), + [anon_sym_inner] = ACTIONS(4776), + [anon_sym_value] = ACTIONS(4776), + [anon_sym_expect] = ACTIONS(4776), + [anon_sym_actual] = ACTIONS(4776), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4778), + [anon_sym_continue_AT] = ACTIONS(4778), + [anon_sym_break_AT] = ACTIONS(4778), + [anon_sym_this_AT] = ACTIONS(4778), + [anon_sym_super_AT] = ACTIONS(4778), + [sym_real_literal] = ACTIONS(4778), + [sym_integer_literal] = ACTIONS(4776), + [sym_hex_literal] = ACTIONS(4778), + [sym_bin_literal] = ACTIONS(4778), + [anon_sym_true] = ACTIONS(4776), + [anon_sym_false] = ACTIONS(4776), + [anon_sym_SQUOTE] = ACTIONS(4778), + [sym__backtick_identifier] = ACTIONS(4778), + [sym__automatic_semicolon] = ACTIONS(4778), + [sym_safe_nav] = ACTIONS(4778), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4778), + }, + [3105] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_where] = ACTIONS(4944), + [anon_sym_object] = ACTIONS(4944), + [anon_sym_fun] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4946), + [anon_sym_get] = ACTIONS(4944), + [anon_sym_set] = ACTIONS(4944), + [anon_sym_this] = ACTIONS(4944), + [anon_sym_super] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [sym_label] = ACTIONS(4944), + [anon_sym_in] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4946), + [anon_sym_QMARK_COLON] = ACTIONS(4946), + [anon_sym_AMP_AMP] = ACTIONS(4946), + [anon_sym_PIPE_PIPE] = ACTIONS(4946), + [anon_sym_null] = ACTIONS(4944), + [anon_sym_if] = ACTIONS(4944), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_when] = ACTIONS(4944), + [anon_sym_try] = ACTIONS(4944), + [anon_sym_throw] = ACTIONS(4944), + [anon_sym_return] = ACTIONS(4944), + [anon_sym_continue] = ACTIONS(4944), + [anon_sym_break] = ACTIONS(4944), + [anon_sym_COLON_COLON] = ACTIONS(4946), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_PERCENT_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_BANGin] = ACTIONS(4946), + [anon_sym_is] = ACTIONS(4944), + [anon_sym_BANGis] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_as_QMARK] = ACTIONS(4946), + [anon_sym_PLUS_PLUS] = ACTIONS(4946), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_BANG_BANG] = ACTIONS(4946), + [anon_sym_data] = ACTIONS(4944), + [anon_sym_inner] = ACTIONS(4944), + [anon_sym_value] = ACTIONS(4944), + [anon_sym_expect] = ACTIONS(4944), + [anon_sym_actual] = ACTIONS(4944), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4946), + [anon_sym_continue_AT] = ACTIONS(4946), + [anon_sym_break_AT] = ACTIONS(4946), + [anon_sym_this_AT] = ACTIONS(4946), + [anon_sym_super_AT] = ACTIONS(4946), + [sym_real_literal] = ACTIONS(4946), + [sym_integer_literal] = ACTIONS(4944), + [sym_hex_literal] = ACTIONS(4946), + [sym_bin_literal] = ACTIONS(4946), + [anon_sym_true] = ACTIONS(4944), + [anon_sym_false] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4946), + [sym__backtick_identifier] = ACTIONS(4946), + [sym__automatic_semicolon] = ACTIONS(4946), + [sym_safe_nav] = ACTIONS(4946), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4946), + }, + [3106] = { + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_fun] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3368), + [anon_sym_super] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_null] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_when] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_BANG_BANG] = ACTIONS(3370), + [anon_sym_data] = ACTIONS(3368), + [anon_sym_inner] = ACTIONS(3368), + [anon_sym_value] = ACTIONS(3368), + [anon_sym_expect] = ACTIONS(3368), + [anon_sym_actual] = ACTIONS(3368), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3370), + [anon_sym_continue_AT] = ACTIONS(3370), + [anon_sym_break_AT] = ACTIONS(3370), + [anon_sym_this_AT] = ACTIONS(3370), + [anon_sym_super_AT] = ACTIONS(3370), + [sym_real_literal] = ACTIONS(3370), + [sym_integer_literal] = ACTIONS(3368), + [sym_hex_literal] = ACTIONS(3370), + [sym_bin_literal] = ACTIONS(3370), + [anon_sym_true] = ACTIONS(3368), + [anon_sym_false] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3370), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3370), + }, + [3107] = { + [sym__alpha_identifier] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4770), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4772), + [anon_sym_super_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), + }, + [3108] = { + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [3109] = { + [aux_sym_user_type_repeat1] = STATE(2885), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_RBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(6582), + [anon_sym_as] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_RPAREN] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_LT] = ACTIONS(4103), + [anon_sym_GT] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4103), + [anon_sym_DASH_GT] = ACTIONS(4105), + [sym_label] = ACTIONS(4105), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_while] = ACTIONS(4103), + [anon_sym_DOT_DOT] = ACTIONS(4105), + [anon_sym_QMARK_COLON] = ACTIONS(4105), + [anon_sym_AMP_AMP] = ACTIONS(4105), + [anon_sym_PIPE_PIPE] = ACTIONS(4105), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), + [anon_sym_DASH_EQ] = ACTIONS(4105), + [anon_sym_STAR_EQ] = ACTIONS(4105), + [anon_sym_SLASH_EQ] = ACTIONS(4105), + [anon_sym_PERCENT_EQ] = ACTIONS(4105), + [anon_sym_BANG_EQ] = ACTIONS(4103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4105), + [anon_sym_EQ_EQ] = ACTIONS(4103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4105), + [anon_sym_LT_EQ] = ACTIONS(4105), + [anon_sym_GT_EQ] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_SLASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_as_QMARK] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG_BANG] = ACTIONS(4105), + [anon_sym_suspend] = ACTIONS(4103), + [anon_sym_sealed] = ACTIONS(4103), + [anon_sym_annotation] = ACTIONS(4103), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4103), + [anon_sym_lateinit] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_internal] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_tailrec] = ACTIONS(4103), + [anon_sym_operator] = ACTIONS(4103), + [anon_sym_infix] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_external] = ACTIONS(4103), + [sym_property_modifier] = ACTIONS(4103), + [anon_sym_abstract] = ACTIONS(4103), + [anon_sym_final] = ACTIONS(4103), + [anon_sym_open] = ACTIONS(4103), + [anon_sym_vararg] = ACTIONS(4103), + [anon_sym_noinline] = ACTIONS(4103), + [anon_sym_crossinline] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4105), + [sym_safe_nav] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + }, + [3110] = { + [sym__alpha_identifier] = ACTIONS(4864), + [anon_sym_AT] = ACTIONS(4866), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4864), + [anon_sym_as] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4866), + [anon_sym_RBRACE] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4866), + [anon_sym_COMMA] = ACTIONS(4866), + [anon_sym_LT] = ACTIONS(4864), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_where] = ACTIONS(4864), + [anon_sym_object] = ACTIONS(4864), + [anon_sym_fun] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4866), + [anon_sym_get] = ACTIONS(4864), + [anon_sym_set] = ACTIONS(4864), + [anon_sym_this] = ACTIONS(4864), + [anon_sym_super] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [sym_label] = ACTIONS(4864), + [anon_sym_in] = ACTIONS(4864), + [anon_sym_DOT_DOT] = ACTIONS(4866), + [anon_sym_QMARK_COLON] = ACTIONS(4866), + [anon_sym_AMP_AMP] = ACTIONS(4866), + [anon_sym_PIPE_PIPE] = ACTIONS(4866), + [anon_sym_null] = ACTIONS(4864), + [anon_sym_if] = ACTIONS(4864), + [anon_sym_else] = ACTIONS(4864), + [anon_sym_when] = ACTIONS(4864), + [anon_sym_try] = ACTIONS(4864), + [anon_sym_throw] = ACTIONS(4864), + [anon_sym_return] = ACTIONS(4864), + [anon_sym_continue] = ACTIONS(4864), + [anon_sym_break] = ACTIONS(4864), + [anon_sym_COLON_COLON] = ACTIONS(4866), + [anon_sym_PLUS_EQ] = ACTIONS(4866), + [anon_sym_DASH_EQ] = ACTIONS(4866), + [anon_sym_STAR_EQ] = ACTIONS(4866), + [anon_sym_SLASH_EQ] = ACTIONS(4866), + [anon_sym_PERCENT_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ] = ACTIONS(4864), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4866), + [anon_sym_LT_EQ] = ACTIONS(4866), + [anon_sym_GT_EQ] = ACTIONS(4866), + [anon_sym_BANGin] = ACTIONS(4866), + [anon_sym_is] = ACTIONS(4864), + [anon_sym_BANGis] = ACTIONS(4866), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4864), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_as_QMARK] = ACTIONS(4866), + [anon_sym_PLUS_PLUS] = ACTIONS(4866), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_BANG] = ACTIONS(4864), + [anon_sym_BANG_BANG] = ACTIONS(4866), + [anon_sym_data] = ACTIONS(4864), + [anon_sym_inner] = ACTIONS(4864), + [anon_sym_value] = ACTIONS(4864), + [anon_sym_expect] = ACTIONS(4864), + [anon_sym_actual] = ACTIONS(4864), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4866), + [anon_sym_continue_AT] = ACTIONS(4866), + [anon_sym_break_AT] = ACTIONS(4866), + [anon_sym_this_AT] = ACTIONS(4866), + [anon_sym_super_AT] = ACTIONS(4866), + [sym_real_literal] = ACTIONS(4866), + [sym_integer_literal] = ACTIONS(4864), + [sym_hex_literal] = ACTIONS(4866), + [sym_bin_literal] = ACTIONS(4866), + [anon_sym_true] = ACTIONS(4864), + [anon_sym_false] = ACTIONS(4864), + [anon_sym_SQUOTE] = ACTIONS(4866), + [sym__backtick_identifier] = ACTIONS(4866), + [sym__automatic_semicolon] = ACTIONS(4866), + [sym_safe_nav] = ACTIONS(4866), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4866), + }, + [3111] = { + [sym__alpha_identifier] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4630), + [anon_sym_as] = ACTIONS(4630), + [anon_sym_EQ] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4632), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_where] = ACTIONS(4630), + [anon_sym_object] = ACTIONS(4630), + [anon_sym_fun] = ACTIONS(4630), + [anon_sym_SEMI] = ACTIONS(4632), + [anon_sym_get] = ACTIONS(4630), + [anon_sym_set] = ACTIONS(4630), + [anon_sym_this] = ACTIONS(4630), + [anon_sym_super] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [sym_label] = ACTIONS(4630), + [anon_sym_in] = ACTIONS(4630), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_QMARK_COLON] = ACTIONS(4632), + [anon_sym_AMP_AMP] = ACTIONS(4632), + [anon_sym_PIPE_PIPE] = ACTIONS(4632), + [anon_sym_null] = ACTIONS(4630), + [anon_sym_if] = ACTIONS(4630), + [anon_sym_else] = ACTIONS(4630), + [anon_sym_when] = ACTIONS(4630), + [anon_sym_try] = ACTIONS(4630), + [anon_sym_throw] = ACTIONS(4630), + [anon_sym_return] = ACTIONS(4630), + [anon_sym_continue] = ACTIONS(4630), + [anon_sym_break] = ACTIONS(4630), + [anon_sym_COLON_COLON] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4632), + [anon_sym_DASH_EQ] = ACTIONS(4632), + [anon_sym_STAR_EQ] = ACTIONS(4632), + [anon_sym_SLASH_EQ] = ACTIONS(4632), + [anon_sym_PERCENT_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4632), + [anon_sym_BANGin] = ACTIONS(4632), + [anon_sym_is] = ACTIONS(4630), + [anon_sym_BANGis] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_as_QMARK] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_BANG] = ACTIONS(4630), + [anon_sym_BANG_BANG] = ACTIONS(4632), + [anon_sym_data] = ACTIONS(4630), + [anon_sym_inner] = ACTIONS(4630), + [anon_sym_value] = ACTIONS(4630), + [anon_sym_expect] = ACTIONS(4630), + [anon_sym_actual] = ACTIONS(4630), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4632), + [anon_sym_continue_AT] = ACTIONS(4632), + [anon_sym_break_AT] = ACTIONS(4632), + [anon_sym_this_AT] = ACTIONS(4632), + [anon_sym_super_AT] = ACTIONS(4632), + [sym_real_literal] = ACTIONS(4632), + [sym_integer_literal] = ACTIONS(4630), + [sym_hex_literal] = ACTIONS(4632), + [sym_bin_literal] = ACTIONS(4632), + [anon_sym_true] = ACTIONS(4630), + [anon_sym_false] = ACTIONS(4630), + [anon_sym_SQUOTE] = ACTIONS(4632), + [sym__backtick_identifier] = ACTIONS(4632), + [sym__automatic_semicolon] = ACTIONS(4632), + [sym_safe_nav] = ACTIONS(4632), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4632), + }, + [3112] = { + [sym__alpha_identifier] = ACTIONS(4868), + [anon_sym_AT] = ACTIONS(4870), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4870), + [anon_sym_RBRACE] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4870), + [anon_sym_COMMA] = ACTIONS(4870), + [anon_sym_LT] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_where] = ACTIONS(4868), + [anon_sym_object] = ACTIONS(4868), + [anon_sym_fun] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4870), + [anon_sym_get] = ACTIONS(4868), + [anon_sym_set] = ACTIONS(4868), + [anon_sym_this] = ACTIONS(4868), + [anon_sym_super] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(4868), + [anon_sym_in] = ACTIONS(4868), + [anon_sym_DOT_DOT] = ACTIONS(4870), + [anon_sym_QMARK_COLON] = ACTIONS(4870), + [anon_sym_AMP_AMP] = ACTIONS(4870), + [anon_sym_PIPE_PIPE] = ACTIONS(4870), + [anon_sym_null] = ACTIONS(4868), + [anon_sym_if] = ACTIONS(4868), + [anon_sym_else] = ACTIONS(4868), + [anon_sym_when] = ACTIONS(4868), + [anon_sym_try] = ACTIONS(4868), + [anon_sym_throw] = ACTIONS(4868), + [anon_sym_return] = ACTIONS(4868), + [anon_sym_continue] = ACTIONS(4868), + [anon_sym_break] = ACTIONS(4868), + [anon_sym_COLON_COLON] = ACTIONS(4870), + [anon_sym_PLUS_EQ] = ACTIONS(4870), + [anon_sym_DASH_EQ] = ACTIONS(4870), + [anon_sym_STAR_EQ] = ACTIONS(4870), + [anon_sym_SLASH_EQ] = ACTIONS(4870), + [anon_sym_PERCENT_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4870), + [anon_sym_LT_EQ] = ACTIONS(4870), + [anon_sym_GT_EQ] = ACTIONS(4870), + [anon_sym_BANGin] = ACTIONS(4870), + [anon_sym_is] = ACTIONS(4868), + [anon_sym_BANGis] = ACTIONS(4870), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4868), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(4870), + [anon_sym_PLUS_PLUS] = ACTIONS(4870), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_BANG] = ACTIONS(4868), + [anon_sym_BANG_BANG] = ACTIONS(4870), + [anon_sym_data] = ACTIONS(4868), + [anon_sym_inner] = ACTIONS(4868), + [anon_sym_value] = ACTIONS(4868), + [anon_sym_expect] = ACTIONS(4868), + [anon_sym_actual] = ACTIONS(4868), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4870), + [anon_sym_continue_AT] = ACTIONS(4870), + [anon_sym_break_AT] = ACTIONS(4870), + [anon_sym_this_AT] = ACTIONS(4870), + [anon_sym_super_AT] = ACTIONS(4870), + [sym_real_literal] = ACTIONS(4870), + [sym_integer_literal] = ACTIONS(4868), + [sym_hex_literal] = ACTIONS(4870), + [sym_bin_literal] = ACTIONS(4870), + [anon_sym_true] = ACTIONS(4868), + [anon_sym_false] = ACTIONS(4868), + [anon_sym_SQUOTE] = ACTIONS(4870), + [sym__backtick_identifier] = ACTIONS(4870), + [sym__automatic_semicolon] = ACTIONS(4870), + [sym_safe_nav] = ACTIONS(4870), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4870), + }, + [3113] = { + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_object] = ACTIONS(4000), + [anon_sym_fun] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_this] = ACTIONS(4000), + [anon_sym_super] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4000), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_null] = ACTIONS(4000), + [anon_sym_if] = ACTIONS(4000), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_when] = ACTIONS(4000), + [anon_sym_try] = ACTIONS(4000), + [anon_sym_throw] = ACTIONS(4000), + [anon_sym_return] = ACTIONS(4000), + [anon_sym_continue] = ACTIONS(4000), + [anon_sym_break] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG] = ACTIONS(4000), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4002), + [anon_sym_continue_AT] = ACTIONS(4002), + [anon_sym_break_AT] = ACTIONS(4002), + [anon_sym_this_AT] = ACTIONS(4002), + [anon_sym_super_AT] = ACTIONS(4002), + [sym_real_literal] = ACTIONS(4002), + [sym_integer_literal] = ACTIONS(4000), + [sym_hex_literal] = ACTIONS(4002), + [sym_bin_literal] = ACTIONS(4002), + [anon_sym_true] = ACTIONS(4000), + [anon_sym_false] = ACTIONS(4000), + [anon_sym_SQUOTE] = ACTIONS(4002), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4002), + }, + [3114] = { + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(1766), + [anon_sym_super_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), + }, + [3115] = { + [sym__alpha_identifier] = ACTIONS(4872), + [anon_sym_AT] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4872), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_where] = ACTIONS(4872), + [anon_sym_object] = ACTIONS(4872), + [anon_sym_fun] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_get] = ACTIONS(4872), + [anon_sym_set] = ACTIONS(4872), + [anon_sym_this] = ACTIONS(4872), + [anon_sym_super] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [sym_label] = ACTIONS(4872), + [anon_sym_in] = ACTIONS(4872), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_null] = ACTIONS(4872), + [anon_sym_if] = ACTIONS(4872), + [anon_sym_else] = ACTIONS(4872), + [anon_sym_when] = ACTIONS(4872), + [anon_sym_try] = ACTIONS(4872), + [anon_sym_throw] = ACTIONS(4872), + [anon_sym_return] = ACTIONS(4872), + [anon_sym_continue] = ACTIONS(4872), + [anon_sym_break] = ACTIONS(4872), + [anon_sym_COLON_COLON] = ACTIONS(4874), + [anon_sym_PLUS_EQ] = ACTIONS(4874), + [anon_sym_DASH_EQ] = ACTIONS(4874), + [anon_sym_STAR_EQ] = ACTIONS(4874), + [anon_sym_SLASH_EQ] = ACTIONS(4874), + [anon_sym_PERCENT_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_BANGin] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4872), + [anon_sym_BANGis] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_as_QMARK] = ACTIONS(4874), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_BANG] = ACTIONS(4872), + [anon_sym_BANG_BANG] = ACTIONS(4874), + [anon_sym_data] = ACTIONS(4872), + [anon_sym_inner] = ACTIONS(4872), + [anon_sym_value] = ACTIONS(4872), + [anon_sym_expect] = ACTIONS(4872), + [anon_sym_actual] = ACTIONS(4872), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4874), + [anon_sym_continue_AT] = ACTIONS(4874), + [anon_sym_break_AT] = ACTIONS(4874), + [anon_sym_this_AT] = ACTIONS(4874), + [anon_sym_super_AT] = ACTIONS(4874), + [sym_real_literal] = ACTIONS(4874), + [sym_integer_literal] = ACTIONS(4872), + [sym_hex_literal] = ACTIONS(4874), + [sym_bin_literal] = ACTIONS(4874), + [anon_sym_true] = ACTIONS(4872), + [anon_sym_false] = ACTIONS(4872), + [anon_sym_SQUOTE] = ACTIONS(4874), + [sym__backtick_identifier] = ACTIONS(4874), + [sym__automatic_semicolon] = ACTIONS(4874), + [sym_safe_nav] = ACTIONS(4874), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4874), + }, + [3116] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_where] = ACTIONS(4948), + [anon_sym_object] = ACTIONS(4948), + [anon_sym_fun] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_get] = ACTIONS(4948), + [anon_sym_set] = ACTIONS(4948), + [anon_sym_this] = ACTIONS(4948), + [anon_sym_super] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [sym_label] = ACTIONS(4948), + [anon_sym_in] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4950), + [anon_sym_QMARK_COLON] = ACTIONS(4950), + [anon_sym_AMP_AMP] = ACTIONS(4950), + [anon_sym_PIPE_PIPE] = ACTIONS(4950), + [anon_sym_null] = ACTIONS(4948), + [anon_sym_if] = ACTIONS(4948), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_when] = ACTIONS(4948), + [anon_sym_try] = ACTIONS(4948), + [anon_sym_throw] = ACTIONS(4948), + [anon_sym_return] = ACTIONS(4948), + [anon_sym_continue] = ACTIONS(4948), + [anon_sym_break] = ACTIONS(4948), + [anon_sym_COLON_COLON] = ACTIONS(4950), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_PERCENT_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_BANGin] = ACTIONS(4950), + [anon_sym_is] = ACTIONS(4948), + [anon_sym_BANGis] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_as_QMARK] = ACTIONS(4950), + [anon_sym_PLUS_PLUS] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_BANG_BANG] = ACTIONS(4950), + [anon_sym_data] = ACTIONS(4948), + [anon_sym_inner] = ACTIONS(4948), + [anon_sym_value] = ACTIONS(4948), + [anon_sym_expect] = ACTIONS(4948), + [anon_sym_actual] = ACTIONS(4948), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4950), + [anon_sym_continue_AT] = ACTIONS(4950), + [anon_sym_break_AT] = ACTIONS(4950), + [anon_sym_this_AT] = ACTIONS(4950), + [anon_sym_super_AT] = ACTIONS(4950), + [sym_real_literal] = ACTIONS(4950), + [sym_integer_literal] = ACTIONS(4948), + [sym_hex_literal] = ACTIONS(4950), + [sym_bin_literal] = ACTIONS(4950), + [anon_sym_true] = ACTIONS(4948), + [anon_sym_false] = ACTIONS(4948), + [anon_sym_SQUOTE] = ACTIONS(4950), + [sym__backtick_identifier] = ACTIONS(4950), + [sym__automatic_semicolon] = ACTIONS(4950), + [sym_safe_nav] = ACTIONS(4950), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4950), + }, + [3117] = { + [sym_type_constraints] = STATE(3358), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_DASH_GT] = ACTIONS(4337), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + }, + [3118] = { + [sym__alpha_identifier] = ACTIONS(4876), + [anon_sym_AT] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4878), + [anon_sym_RBRACE] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_COMMA] = ACTIONS(4878), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_where] = ACTIONS(4876), + [anon_sym_object] = ACTIONS(4876), + [anon_sym_fun] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym_get] = ACTIONS(4876), + [anon_sym_set] = ACTIONS(4876), + [anon_sym_this] = ACTIONS(4876), + [anon_sym_super] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4876), + [anon_sym_in] = ACTIONS(4876), + [anon_sym_DOT_DOT] = ACTIONS(4878), + [anon_sym_QMARK_COLON] = ACTIONS(4878), + [anon_sym_AMP_AMP] = ACTIONS(4878), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_null] = ACTIONS(4876), + [anon_sym_if] = ACTIONS(4876), + [anon_sym_else] = ACTIONS(4876), + [anon_sym_when] = ACTIONS(4876), + [anon_sym_try] = ACTIONS(4876), + [anon_sym_throw] = ACTIONS(4876), + [anon_sym_return] = ACTIONS(4876), + [anon_sym_continue] = ACTIONS(4876), + [anon_sym_break] = ACTIONS(4876), + [anon_sym_COLON_COLON] = ACTIONS(4878), + [anon_sym_PLUS_EQ] = ACTIONS(4878), + [anon_sym_DASH_EQ] = ACTIONS(4878), + [anon_sym_STAR_EQ] = ACTIONS(4878), + [anon_sym_SLASH_EQ] = ACTIONS(4878), + [anon_sym_PERCENT_EQ] = ACTIONS(4878), + [anon_sym_BANG_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4878), + [anon_sym_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4878), + [anon_sym_LT_EQ] = ACTIONS(4878), + [anon_sym_GT_EQ] = ACTIONS(4878), + [anon_sym_BANGin] = ACTIONS(4878), + [anon_sym_is] = ACTIONS(4876), + [anon_sym_BANGis] = ACTIONS(4878), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4878), + [anon_sym_PLUS_PLUS] = ACTIONS(4878), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_BANG] = ACTIONS(4876), + [anon_sym_BANG_BANG] = ACTIONS(4878), + [anon_sym_data] = ACTIONS(4876), + [anon_sym_inner] = ACTIONS(4876), + [anon_sym_value] = ACTIONS(4876), + [anon_sym_expect] = ACTIONS(4876), + [anon_sym_actual] = ACTIONS(4876), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4878), + [anon_sym_continue_AT] = ACTIONS(4878), + [anon_sym_break_AT] = ACTIONS(4878), + [anon_sym_this_AT] = ACTIONS(4878), + [anon_sym_super_AT] = ACTIONS(4878), + [sym_real_literal] = ACTIONS(4878), + [sym_integer_literal] = ACTIONS(4876), + [sym_hex_literal] = ACTIONS(4878), + [sym_bin_literal] = ACTIONS(4878), + [anon_sym_true] = ACTIONS(4876), + [anon_sym_false] = ACTIONS(4876), + [anon_sym_SQUOTE] = ACTIONS(4878), + [sym__backtick_identifier] = ACTIONS(4878), + [sym__automatic_semicolon] = ACTIONS(4878), + [sym_safe_nav] = ACTIONS(4878), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4878), + }, + [3119] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_object] = ACTIONS(4952), + [anon_sym_fun] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_get] = ACTIONS(4952), + [anon_sym_set] = ACTIONS(4952), + [anon_sym_this] = ACTIONS(4952), + [anon_sym_super] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [sym_label] = ACTIONS(4952), + [anon_sym_in] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_QMARK_COLON] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4954), + [anon_sym_PIPE_PIPE] = ACTIONS(4954), + [anon_sym_null] = ACTIONS(4952), + [anon_sym_if] = ACTIONS(4952), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_when] = ACTIONS(4952), + [anon_sym_try] = ACTIONS(4952), + [anon_sym_throw] = ACTIONS(4952), + [anon_sym_return] = ACTIONS(4952), + [anon_sym_continue] = ACTIONS(4952), + [anon_sym_break] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_PERCENT_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_BANGin] = ACTIONS(4954), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_BANGis] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_as_QMARK] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_BANG_BANG] = ACTIONS(4954), + [anon_sym_data] = ACTIONS(4952), + [anon_sym_inner] = ACTIONS(4952), + [anon_sym_value] = ACTIONS(4952), + [anon_sym_expect] = ACTIONS(4952), + [anon_sym_actual] = ACTIONS(4952), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4954), + [anon_sym_continue_AT] = ACTIONS(4954), + [anon_sym_break_AT] = ACTIONS(4954), + [anon_sym_this_AT] = ACTIONS(4954), + [anon_sym_super_AT] = ACTIONS(4954), + [sym_real_literal] = ACTIONS(4954), + [sym_integer_literal] = ACTIONS(4952), + [sym_hex_literal] = ACTIONS(4954), + [sym_bin_literal] = ACTIONS(4954), + [anon_sym_true] = ACTIONS(4952), + [anon_sym_false] = ACTIONS(4952), + [anon_sym_SQUOTE] = ACTIONS(4954), + [sym__backtick_identifier] = ACTIONS(4954), + [sym__automatic_semicolon] = ACTIONS(4954), + [sym_safe_nav] = ACTIONS(4954), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4954), + }, + [3120] = { [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_LBRACE] = ACTIONS(4262), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(4260), [anon_sym_object] = ACTIONS(4260), [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), @@ -369266,190 +369110,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, - [3126] = { - [sym_class_body] = STATE(3156), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(6635), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [3127] = { - [sym__alpha_identifier] = ACTIONS(5093), - [anon_sym_AT] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5093), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(5095), - [anon_sym_super_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), + [3121] = { + [sym__alpha_identifier] = ACTIONS(4956), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_where] = ACTIONS(4956), + [anon_sym_object] = ACTIONS(4956), + [anon_sym_fun] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_get] = ACTIONS(4956), + [anon_sym_set] = ACTIONS(4956), + [anon_sym_this] = ACTIONS(4956), + [anon_sym_super] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [sym_label] = ACTIONS(4956), + [anon_sym_in] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_QMARK_COLON] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_null] = ACTIONS(4956), + [anon_sym_if] = ACTIONS(4956), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_when] = ACTIONS(4956), + [anon_sym_try] = ACTIONS(4956), + [anon_sym_throw] = ACTIONS(4956), + [anon_sym_return] = ACTIONS(4956), + [anon_sym_continue] = ACTIONS(4956), + [anon_sym_break] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4958), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_PERCENT_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_BANGin] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4956), + [anon_sym_BANGis] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_as_QMARK] = ACTIONS(4958), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_BANG_BANG] = ACTIONS(4958), + [anon_sym_data] = ACTIONS(4956), + [anon_sym_inner] = ACTIONS(4956), + [anon_sym_value] = ACTIONS(4956), + [anon_sym_expect] = ACTIONS(4956), + [anon_sym_actual] = ACTIONS(4956), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4958), + [anon_sym_continue_AT] = ACTIONS(4958), + [anon_sym_break_AT] = ACTIONS(4958), + [anon_sym_this_AT] = ACTIONS(4958), + [anon_sym_super_AT] = ACTIONS(4958), + [sym_real_literal] = ACTIONS(4958), + [sym_integer_literal] = ACTIONS(4956), + [sym_hex_literal] = ACTIONS(4958), + [sym_bin_literal] = ACTIONS(4958), + [anon_sym_true] = ACTIONS(4956), + [anon_sym_false] = ACTIONS(4956), + [anon_sym_SQUOTE] = ACTIONS(4958), + [sym__backtick_identifier] = ACTIONS(4958), + [sym__automatic_semicolon] = ACTIONS(4958), + [sym_safe_nav] = ACTIONS(4958), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4958), }, - [3128] = { + [3122] = { + [sym_function_body] = STATE(3108), + [sym__block] = STATE(3227), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(4260), - [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), [anon_sym_object] = ACTIONS(4260), [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), @@ -369521,1262 +369280,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, - [3129] = { - [sym__alpha_identifier] = ACTIONS(4838), - [anon_sym_AT] = ACTIONS(4840), - [anon_sym_LBRACK] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4838), - [anon_sym_as] = ACTIONS(4838), - [anon_sym_EQ] = ACTIONS(4838), - [anon_sym_LBRACE] = ACTIONS(4840), - [anon_sym_RBRACE] = ACTIONS(4840), - [anon_sym_LPAREN] = ACTIONS(4840), - [anon_sym_COMMA] = ACTIONS(4840), - [anon_sym_LT] = ACTIONS(4838), - [anon_sym_GT] = ACTIONS(4838), - [anon_sym_where] = ACTIONS(4838), - [anon_sym_object] = ACTIONS(4838), - [anon_sym_fun] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(4840), - [anon_sym_get] = ACTIONS(4838), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_this] = ACTIONS(4838), - [anon_sym_super] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4838), - [sym_label] = ACTIONS(4838), - [anon_sym_in] = ACTIONS(4838), - [anon_sym_DOT_DOT] = ACTIONS(4840), - [anon_sym_QMARK_COLON] = ACTIONS(4840), - [anon_sym_AMP_AMP] = ACTIONS(4840), - [anon_sym_PIPE_PIPE] = ACTIONS(4840), - [anon_sym_null] = ACTIONS(4838), - [anon_sym_if] = ACTIONS(4838), - [anon_sym_else] = ACTIONS(4838), - [anon_sym_when] = ACTIONS(4838), - [anon_sym_try] = ACTIONS(4838), - [anon_sym_throw] = ACTIONS(4838), - [anon_sym_return] = ACTIONS(4838), - [anon_sym_continue] = ACTIONS(4838), - [anon_sym_break] = ACTIONS(4838), - [anon_sym_COLON_COLON] = ACTIONS(4840), - [anon_sym_PLUS_EQ] = ACTIONS(4840), - [anon_sym_DASH_EQ] = ACTIONS(4840), - [anon_sym_STAR_EQ] = ACTIONS(4840), - [anon_sym_SLASH_EQ] = ACTIONS(4840), - [anon_sym_PERCENT_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ] = ACTIONS(4838), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ] = ACTIONS(4838), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), - [anon_sym_LT_EQ] = ACTIONS(4840), - [anon_sym_GT_EQ] = ACTIONS(4840), - [anon_sym_BANGin] = ACTIONS(4840), - [anon_sym_is] = ACTIONS(4838), - [anon_sym_BANGis] = ACTIONS(4840), - [anon_sym_PLUS] = ACTIONS(4838), - [anon_sym_DASH] = ACTIONS(4838), - [anon_sym_SLASH] = ACTIONS(4838), - [anon_sym_PERCENT] = ACTIONS(4838), - [anon_sym_as_QMARK] = ACTIONS(4840), - [anon_sym_PLUS_PLUS] = ACTIONS(4840), - [anon_sym_DASH_DASH] = ACTIONS(4840), - [anon_sym_BANG] = ACTIONS(4838), - [anon_sym_BANG_BANG] = ACTIONS(4840), - [anon_sym_data] = ACTIONS(4838), - [anon_sym_inner] = ACTIONS(4838), - [anon_sym_value] = ACTIONS(4838), - [anon_sym_expect] = ACTIONS(4838), - [anon_sym_actual] = ACTIONS(4838), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4840), - [anon_sym_continue_AT] = ACTIONS(4840), - [anon_sym_break_AT] = ACTIONS(4840), - [anon_sym_this_AT] = ACTIONS(4840), - [anon_sym_super_AT] = ACTIONS(4840), - [sym_real_literal] = ACTIONS(4840), - [sym_integer_literal] = ACTIONS(4838), - [sym_hex_literal] = ACTIONS(4840), - [sym_bin_literal] = ACTIONS(4840), - [anon_sym_true] = ACTIONS(4838), - [anon_sym_false] = ACTIONS(4838), - [anon_sym_SQUOTE] = ACTIONS(4840), - [sym__backtick_identifier] = ACTIONS(4840), - [sym__automatic_semicolon] = ACTIONS(4840), - [sym_safe_nav] = ACTIONS(4840), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4840), - }, - [3130] = { - [sym__alpha_identifier] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_fun] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3189), - [anon_sym_set] = ACTIONS(3189), - [anon_sym_this] = ACTIONS(3189), - [anon_sym_super] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [sym_label] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_QMARK_COLON] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_null] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_when] = ACTIONS(3189), - [anon_sym_try] = ACTIONS(3189), - [anon_sym_throw] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3191), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_as_QMARK] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_BANG_BANG] = ACTIONS(3191), - [anon_sym_data] = ACTIONS(3189), - [anon_sym_inner] = ACTIONS(3189), - [anon_sym_value] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3189), - [anon_sym_actual] = ACTIONS(3189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3191), - [anon_sym_continue_AT] = ACTIONS(3191), - [anon_sym_break_AT] = ACTIONS(3191), - [anon_sym_this_AT] = ACTIONS(3191), - [anon_sym_super_AT] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3191), - [sym_integer_literal] = ACTIONS(3189), - [sym_hex_literal] = ACTIONS(3191), - [sym_bin_literal] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_SQUOTE] = ACTIONS(3191), - [sym__backtick_identifier] = ACTIONS(3191), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(3191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3191), - }, - [3131] = { - [sym__alpha_identifier] = ACTIONS(5059), - [anon_sym_AT] = ACTIONS(5061), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5059), - [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_SEMI] = ACTIONS(5061), - [anon_sym_get] = ACTIONS(5059), - [anon_sym_set] = ACTIONS(5059), - [anon_sym_this] = ACTIONS(5059), - [anon_sym_super] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [sym_label] = ACTIONS(5059), - [anon_sym_in] = ACTIONS(5059), - [anon_sym_DOT_DOT] = ACTIONS(5061), - [anon_sym_QMARK_COLON] = ACTIONS(5061), - [anon_sym_AMP_AMP] = ACTIONS(5061), - [anon_sym_PIPE_PIPE] = ACTIONS(5061), - [anon_sym_null] = ACTIONS(5059), - [anon_sym_if] = ACTIONS(5059), - [anon_sym_else] = ACTIONS(5059), - [anon_sym_when] = ACTIONS(5059), - [anon_sym_try] = ACTIONS(5059), - [anon_sym_throw] = ACTIONS(5059), - [anon_sym_return] = ACTIONS(5059), - [anon_sym_continue] = ACTIONS(5059), - [anon_sym_break] = ACTIONS(5059), - [anon_sym_COLON_COLON] = ACTIONS(5061), - [anon_sym_PLUS_EQ] = ACTIONS(5061), - [anon_sym_DASH_EQ] = ACTIONS(5061), - [anon_sym_STAR_EQ] = ACTIONS(5061), - [anon_sym_SLASH_EQ] = ACTIONS(5061), - [anon_sym_PERCENT_EQ] = ACTIONS(5061), - [anon_sym_BANG_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), - [anon_sym_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), - [anon_sym_LT_EQ] = ACTIONS(5061), - [anon_sym_GT_EQ] = ACTIONS(5061), - [anon_sym_BANGin] = ACTIONS(5061), - [anon_sym_is] = ACTIONS(5059), - [anon_sym_BANGis] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_as_QMARK] = ACTIONS(5061), - [anon_sym_PLUS_PLUS] = ACTIONS(5061), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5059), - [anon_sym_BANG_BANG] = ACTIONS(5061), - [anon_sym_data] = ACTIONS(5059), - [anon_sym_inner] = ACTIONS(5059), - [anon_sym_value] = ACTIONS(5059), - [anon_sym_expect] = ACTIONS(5059), - [anon_sym_actual] = ACTIONS(5059), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5061), - [anon_sym_continue_AT] = ACTIONS(5061), - [anon_sym_break_AT] = ACTIONS(5061), - [anon_sym_this_AT] = ACTIONS(5061), - [anon_sym_super_AT] = ACTIONS(5061), - [sym_real_literal] = ACTIONS(5061), - [sym_integer_literal] = ACTIONS(5059), - [sym_hex_literal] = ACTIONS(5061), - [sym_bin_literal] = ACTIONS(5061), - [anon_sym_true] = ACTIONS(5059), - [anon_sym_false] = ACTIONS(5059), - [anon_sym_SQUOTE] = ACTIONS(5061), - [sym__backtick_identifier] = ACTIONS(5061), - [sym__automatic_semicolon] = ACTIONS(5061), - [sym_safe_nav] = ACTIONS(5061), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5061), - }, - [3132] = { - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_object] = ACTIONS(1734), - [anon_sym_fun] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(1734), - [anon_sym_set] = ACTIONS(1734), - [anon_sym_this] = ACTIONS(1734), - [anon_sym_super] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1734), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_null] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1734), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_when] = ACTIONS(1734), - [anon_sym_try] = ACTIONS(1734), - [anon_sym_throw] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1734), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1734), - [anon_sym_BANG_BANG] = ACTIONS(1736), - [anon_sym_data] = ACTIONS(1734), - [anon_sym_inner] = ACTIONS(1734), - [anon_sym_value] = ACTIONS(1734), - [anon_sym_expect] = ACTIONS(1734), - [anon_sym_actual] = ACTIONS(1734), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1736), - [anon_sym_continue_AT] = ACTIONS(1736), - [anon_sym_break_AT] = ACTIONS(1736), - [anon_sym_this_AT] = ACTIONS(1736), - [anon_sym_super_AT] = ACTIONS(1736), - [sym_real_literal] = ACTIONS(1736), - [sym_integer_literal] = ACTIONS(1734), - [sym_hex_literal] = ACTIONS(1736), - [sym_bin_literal] = ACTIONS(1736), - [anon_sym_true] = ACTIONS(1734), - [anon_sym_false] = ACTIONS(1734), - [anon_sym_SQUOTE] = ACTIONS(1736), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1736), - }, - [3133] = { - [sym__alpha_identifier] = ACTIONS(5063), - [anon_sym_AT] = ACTIONS(5065), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5063), - [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_SEMI] = ACTIONS(5065), - [anon_sym_get] = ACTIONS(5063), - [anon_sym_set] = ACTIONS(5063), - [anon_sym_this] = ACTIONS(5063), - [anon_sym_super] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [sym_label] = ACTIONS(5063), - [anon_sym_in] = ACTIONS(5063), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_QMARK_COLON] = ACTIONS(5065), - [anon_sym_AMP_AMP] = ACTIONS(5065), - [anon_sym_PIPE_PIPE] = ACTIONS(5065), - [anon_sym_null] = ACTIONS(5063), - [anon_sym_if] = ACTIONS(5063), - [anon_sym_else] = ACTIONS(5063), - [anon_sym_when] = ACTIONS(5063), - [anon_sym_try] = ACTIONS(5063), - [anon_sym_throw] = ACTIONS(5063), - [anon_sym_return] = ACTIONS(5063), - [anon_sym_continue] = ACTIONS(5063), - [anon_sym_break] = ACTIONS(5063), - [anon_sym_COLON_COLON] = ACTIONS(5065), - [anon_sym_PLUS_EQ] = ACTIONS(5065), - [anon_sym_DASH_EQ] = ACTIONS(5065), - [anon_sym_STAR_EQ] = ACTIONS(5065), - [anon_sym_SLASH_EQ] = ACTIONS(5065), - [anon_sym_PERCENT_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ] = ACTIONS(5063), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), - [anon_sym_EQ_EQ] = ACTIONS(5063), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), - [anon_sym_LT_EQ] = ACTIONS(5065), - [anon_sym_GT_EQ] = ACTIONS(5065), - [anon_sym_BANGin] = ACTIONS(5065), - [anon_sym_is] = ACTIONS(5063), - [anon_sym_BANGis] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_as_QMARK] = ACTIONS(5065), - [anon_sym_PLUS_PLUS] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5063), - [anon_sym_BANG_BANG] = ACTIONS(5065), - [anon_sym_data] = ACTIONS(5063), - [anon_sym_inner] = ACTIONS(5063), - [anon_sym_value] = ACTIONS(5063), - [anon_sym_expect] = ACTIONS(5063), - [anon_sym_actual] = ACTIONS(5063), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5065), - [anon_sym_continue_AT] = ACTIONS(5065), - [anon_sym_break_AT] = ACTIONS(5065), - [anon_sym_this_AT] = ACTIONS(5065), - [anon_sym_super_AT] = ACTIONS(5065), - [sym_real_literal] = ACTIONS(5065), - [sym_integer_literal] = ACTIONS(5063), - [sym_hex_literal] = ACTIONS(5065), - [sym_bin_literal] = ACTIONS(5065), - [anon_sym_true] = ACTIONS(5063), - [anon_sym_false] = ACTIONS(5063), - [anon_sym_SQUOTE] = ACTIONS(5065), - [sym__backtick_identifier] = ACTIONS(5065), - [sym__automatic_semicolon] = ACTIONS(5065), - [sym_safe_nav] = ACTIONS(5065), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5065), - }, - [3134] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(6637), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), - }, - [3135] = { - [sym__alpha_identifier] = ACTIONS(4991), - [anon_sym_AT] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4993), - [anon_sym_RBRACE] = ACTIONS(4993), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_where] = ACTIONS(4991), - [anon_sym_object] = ACTIONS(4991), - [anon_sym_fun] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4993), - [anon_sym_get] = ACTIONS(4991), - [anon_sym_set] = ACTIONS(4991), - [anon_sym_this] = ACTIONS(4991), - [anon_sym_super] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [sym_label] = ACTIONS(4991), - [anon_sym_in] = ACTIONS(4991), - [anon_sym_DOT_DOT] = ACTIONS(4993), - [anon_sym_QMARK_COLON] = ACTIONS(4993), - [anon_sym_AMP_AMP] = ACTIONS(4993), - [anon_sym_PIPE_PIPE] = ACTIONS(4993), - [anon_sym_null] = ACTIONS(4991), - [anon_sym_if] = ACTIONS(4991), - [anon_sym_else] = ACTIONS(4991), - [anon_sym_when] = ACTIONS(4991), - [anon_sym_try] = ACTIONS(4991), - [anon_sym_throw] = ACTIONS(4991), - [anon_sym_return] = ACTIONS(4991), - [anon_sym_continue] = ACTIONS(4991), - [anon_sym_break] = ACTIONS(4991), - [anon_sym_COLON_COLON] = ACTIONS(4993), - [anon_sym_PLUS_EQ] = ACTIONS(4993), - [anon_sym_DASH_EQ] = ACTIONS(4993), - [anon_sym_STAR_EQ] = ACTIONS(4993), - [anon_sym_SLASH_EQ] = ACTIONS(4993), - [anon_sym_PERCENT_EQ] = ACTIONS(4993), - [anon_sym_BANG_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4993), - [anon_sym_EQ_EQ] = ACTIONS(4991), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4993), - [anon_sym_LT_EQ] = ACTIONS(4993), - [anon_sym_GT_EQ] = ACTIONS(4993), - [anon_sym_BANGin] = ACTIONS(4993), - [anon_sym_is] = ACTIONS(4991), - [anon_sym_BANGis] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_as_QMARK] = ACTIONS(4993), - [anon_sym_PLUS_PLUS] = ACTIONS(4993), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_BANG_BANG] = ACTIONS(4993), - [anon_sym_data] = ACTIONS(4991), - [anon_sym_inner] = ACTIONS(4991), - [anon_sym_value] = ACTIONS(4991), - [anon_sym_expect] = ACTIONS(4991), - [anon_sym_actual] = ACTIONS(4991), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4993), - [anon_sym_continue_AT] = ACTIONS(4993), - [anon_sym_break_AT] = ACTIONS(4993), - [anon_sym_this_AT] = ACTIONS(4993), - [anon_sym_super_AT] = ACTIONS(4993), - [sym_real_literal] = ACTIONS(4993), - [sym_integer_literal] = ACTIONS(4991), - [sym_hex_literal] = ACTIONS(4993), - [sym_bin_literal] = ACTIONS(4993), - [anon_sym_true] = ACTIONS(4991), - [anon_sym_false] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4993), - [sym__backtick_identifier] = ACTIONS(4993), - [sym__automatic_semicolon] = ACTIONS(4993), - [sym_safe_nav] = ACTIONS(4993), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4993), - }, - [3136] = { - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, - [3137] = { - [sym_class_body] = STATE(3491), - [sym_type_constraints] = STATE(3356), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_RBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_RPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_DASH_GT] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - }, - [3138] = { - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_this] = ACTIONS(4754), - [anon_sym_super] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4754), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_null] = ACTIONS(4754), - [anon_sym_if] = ACTIONS(4754), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_when] = ACTIONS(4754), - [anon_sym_try] = ACTIONS(4754), - [anon_sym_throw] = ACTIONS(4754), - [anon_sym_return] = ACTIONS(4754), - [anon_sym_continue] = ACTIONS(4754), - [anon_sym_break] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4756), - [anon_sym_continue_AT] = ACTIONS(4756), - [anon_sym_break_AT] = ACTIONS(4756), - [anon_sym_this_AT] = ACTIONS(4756), - [anon_sym_super_AT] = ACTIONS(4756), - [sym_real_literal] = ACTIONS(4756), - [sym_integer_literal] = ACTIONS(4754), - [sym_hex_literal] = ACTIONS(4756), - [sym_bin_literal] = ACTIONS(4756), - [anon_sym_true] = ACTIONS(4754), - [anon_sym_false] = ACTIONS(4754), - [anon_sym_SQUOTE] = ACTIONS(4756), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4756), - }, - [3139] = { - [sym__alpha_identifier] = ACTIONS(4882), - [anon_sym_AT] = ACTIONS(4884), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_DOT] = ACTIONS(4882), - [anon_sym_as] = ACTIONS(4882), - [anon_sym_EQ] = ACTIONS(4882), - [anon_sym_LBRACE] = ACTIONS(4884), - [anon_sym_RBRACE] = ACTIONS(4884), - [anon_sym_LPAREN] = ACTIONS(4884), - [anon_sym_COMMA] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4882), - [anon_sym_GT] = ACTIONS(4882), - [anon_sym_where] = ACTIONS(4882), - [anon_sym_object] = ACTIONS(4882), - [anon_sym_fun] = ACTIONS(4882), - [anon_sym_SEMI] = ACTIONS(4884), - [anon_sym_get] = ACTIONS(4882), - [anon_sym_set] = ACTIONS(4882), - [anon_sym_this] = ACTIONS(4882), - [anon_sym_super] = ACTIONS(4882), - [anon_sym_STAR] = ACTIONS(4882), - [sym_label] = ACTIONS(4882), - [anon_sym_in] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4884), - [anon_sym_QMARK_COLON] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [anon_sym_null] = ACTIONS(4882), - [anon_sym_if] = ACTIONS(4882), - [anon_sym_else] = ACTIONS(4882), - [anon_sym_when] = ACTIONS(4882), - [anon_sym_try] = ACTIONS(4882), - [anon_sym_throw] = ACTIONS(4882), - [anon_sym_return] = ACTIONS(4882), - [anon_sym_continue] = ACTIONS(4882), - [anon_sym_break] = ACTIONS(4882), - [anon_sym_COLON_COLON] = ACTIONS(4884), - [anon_sym_PLUS_EQ] = ACTIONS(4884), - [anon_sym_DASH_EQ] = ACTIONS(4884), - [anon_sym_STAR_EQ] = ACTIONS(4884), - [anon_sym_SLASH_EQ] = ACTIONS(4884), - [anon_sym_PERCENT_EQ] = ACTIONS(4884), - [anon_sym_BANG_EQ] = ACTIONS(4882), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4884), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4884), - [anon_sym_BANGin] = ACTIONS(4884), - [anon_sym_is] = ACTIONS(4882), - [anon_sym_BANGis] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4882), - [anon_sym_DASH] = ACTIONS(4882), - [anon_sym_SLASH] = ACTIONS(4882), - [anon_sym_PERCENT] = ACTIONS(4882), - [anon_sym_as_QMARK] = ACTIONS(4884), - [anon_sym_PLUS_PLUS] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4884), - [anon_sym_BANG] = ACTIONS(4882), - [anon_sym_BANG_BANG] = ACTIONS(4884), - [anon_sym_data] = ACTIONS(4882), - [anon_sym_inner] = ACTIONS(4882), - [anon_sym_value] = ACTIONS(4882), - [anon_sym_expect] = ACTIONS(4882), - [anon_sym_actual] = ACTIONS(4882), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4884), - [anon_sym_continue_AT] = ACTIONS(4884), - [anon_sym_break_AT] = ACTIONS(4884), - [anon_sym_this_AT] = ACTIONS(4884), - [anon_sym_super_AT] = ACTIONS(4884), - [sym_real_literal] = ACTIONS(4884), - [sym_integer_literal] = ACTIONS(4882), - [sym_hex_literal] = ACTIONS(4884), - [sym_bin_literal] = ACTIONS(4884), - [anon_sym_true] = ACTIONS(4882), - [anon_sym_false] = ACTIONS(4882), - [anon_sym_SQUOTE] = ACTIONS(4884), - [sym__backtick_identifier] = ACTIONS(4884), - [sym__automatic_semicolon] = ACTIONS(4884), - [sym_safe_nav] = ACTIONS(4884), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4884), - }, - [3140] = { - [sym__alpha_identifier] = ACTIONS(4940), - [anon_sym_AT] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_as] = ACTIONS(4940), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_where] = ACTIONS(4940), - [anon_sym_object] = ACTIONS(4940), - [anon_sym_fun] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_get] = ACTIONS(4940), - [anon_sym_set] = ACTIONS(4940), - [anon_sym_this] = ACTIONS(4940), - [anon_sym_super] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4940), - [sym_label] = ACTIONS(4940), - [anon_sym_in] = ACTIONS(4940), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_QMARK_COLON] = ACTIONS(4942), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_null] = ACTIONS(4940), - [anon_sym_if] = ACTIONS(4940), - [anon_sym_else] = ACTIONS(4940), - [anon_sym_when] = ACTIONS(4940), - [anon_sym_try] = ACTIONS(4940), - [anon_sym_throw] = ACTIONS(4940), - [anon_sym_return] = ACTIONS(4940), - [anon_sym_continue] = ACTIONS(4940), - [anon_sym_break] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(4942), - [anon_sym_PLUS_EQ] = ACTIONS(4942), - [anon_sym_DASH_EQ] = ACTIONS(4942), - [anon_sym_STAR_EQ] = ACTIONS(4942), - [anon_sym_SLASH_EQ] = ACTIONS(4942), - [anon_sym_PERCENT_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4940), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_BANGin] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4940), - [anon_sym_BANGis] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_as_QMARK] = ACTIONS(4942), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_BANG] = ACTIONS(4940), - [anon_sym_BANG_BANG] = ACTIONS(4942), - [anon_sym_data] = ACTIONS(4940), - [anon_sym_inner] = ACTIONS(4940), - [anon_sym_value] = ACTIONS(4940), - [anon_sym_expect] = ACTIONS(4940), - [anon_sym_actual] = ACTIONS(4940), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4942), - [anon_sym_continue_AT] = ACTIONS(4942), - [anon_sym_break_AT] = ACTIONS(4942), - [anon_sym_this_AT] = ACTIONS(4942), - [anon_sym_super_AT] = ACTIONS(4942), - [sym_real_literal] = ACTIONS(4942), - [sym_integer_literal] = ACTIONS(4940), - [sym_hex_literal] = ACTIONS(4942), - [sym_bin_literal] = ACTIONS(4942), - [anon_sym_true] = ACTIONS(4940), - [anon_sym_false] = ACTIONS(4940), - [anon_sym_SQUOTE] = ACTIONS(4942), - [sym__backtick_identifier] = ACTIONS(4942), - [sym__automatic_semicolon] = ACTIONS(4942), - [sym_safe_nav] = ACTIONS(4942), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4942), - }, - [3141] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(6639), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_object] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_this] = ACTIONS(4844), - [anon_sym_super] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [sym_label] = ACTIONS(4844), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4844), - [anon_sym_if] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_throw] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_continue] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4844), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4846), - [anon_sym_continue_AT] = ACTIONS(4846), - [anon_sym_break_AT] = ACTIONS(4846), - [anon_sym_this_AT] = ACTIONS(4846), - [anon_sym_super_AT] = ACTIONS(4846), - [sym_real_literal] = ACTIONS(4846), - [sym_integer_literal] = ACTIONS(4844), - [sym_hex_literal] = ACTIONS(4846), - [sym_bin_literal] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4846), - }, - [3142] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6641), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_this] = ACTIONS(4228), - [anon_sym_super] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [sym_label] = ACTIONS(4228), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_throw] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4226), - [anon_sym_continue_AT] = ACTIONS(4226), - [anon_sym_break_AT] = ACTIONS(4226), - [anon_sym_this_AT] = ACTIONS(4226), - [anon_sym_super_AT] = ACTIONS(4226), - [sym_real_literal] = ACTIONS(4226), - [sym_integer_literal] = ACTIONS(4228), - [sym_hex_literal] = ACTIONS(4226), - [sym_bin_literal] = ACTIONS(4226), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4226), - }, - [3143] = { - [sym__alpha_identifier] = ACTIONS(4242), + [3123] = { + [sym__alpha_identifier] = ACTIONS(4238), [anon_sym_AT] = ACTIONS(4240), [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4238), [anon_sym_LBRACE] = ACTIONS(4240), [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6643), + [anon_sym_LPAREN] = ACTIONS(4240), [anon_sym_COMMA] = ACTIONS(4240), - [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_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), [anon_sym_SEMI] = ACTIONS(4240), - [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_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), [anon_sym_DOT_DOT] = ACTIONS(4240), [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [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_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), [anon_sym_COLON_COLON] = ACTIONS(4240), [anon_sym_PLUS_EQ] = ACTIONS(4240), [anon_sym_DASH_EQ] = ACTIONS(4240), [anon_sym_STAR_EQ] = ACTIONS(4240), [anon_sym_SLASH_EQ] = ACTIONS(4240), [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4238), [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4238), [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), [anon_sym_LT_EQ] = ACTIONS(4240), [anon_sym_GT_EQ] = ACTIONS(4240), [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4238), [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), [anon_sym_as_QMARK] = ACTIONS(4240), [anon_sym_PLUS_PLUS] = ACTIONS(4240), [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_BANG] = ACTIONS(4238), [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), [anon_sym_return_AT] = ACTIONS(4240), [anon_sym_continue_AT] = ACTIONS(4240), @@ -370784,11 +369353,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_this_AT] = ACTIONS(4240), [anon_sym_super_AT] = ACTIONS(4240), [sym_real_literal] = ACTIONS(4240), - [sym_integer_literal] = ACTIONS(4242), + [sym_integer_literal] = ACTIONS(4238), [sym_hex_literal] = ACTIONS(4240), [sym_bin_literal] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), [anon_sym_SQUOTE] = ACTIONS(4240), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), @@ -370796,1165 +369365,2682 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4240), }, - [3144] = { - [sym_function_body] = STATE(3387), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_RBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_RPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_DASH_GT] = ACTIONS(4395), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_while] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), + [3124] = { + [sym__alpha_identifier] = ACTIONS(5037), + [anon_sym_AT] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5037), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(5039), + [anon_sym_super_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), }, - [3145] = { - [sym__alpha_identifier] = ACTIONS(4411), - [anon_sym_AT] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4411), - [anon_sym_LBRACK] = ACTIONS(4413), - [anon_sym_RBRACK] = ACTIONS(4413), - [anon_sym_DOT] = ACTIONS(4411), - [anon_sym_as] = ACTIONS(4411), - [anon_sym_EQ] = ACTIONS(4411), - [anon_sym_constructor] = ACTIONS(4411), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_RBRACE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_RPAREN] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4411), - [anon_sym_GT] = ACTIONS(4411), - [anon_sym_where] = ACTIONS(4411), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_get] = ACTIONS(4411), - [anon_sym_set] = ACTIONS(4411), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_DASH_GT] = ACTIONS(4413), - [sym_label] = ACTIONS(4413), - [anon_sym_in] = ACTIONS(4411), - [anon_sym_while] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(4413), - [anon_sym_QMARK_COLON] = ACTIONS(4413), - [anon_sym_AMP_AMP] = ACTIONS(4413), - [anon_sym_PIPE_PIPE] = ACTIONS(4413), - [anon_sym_else] = ACTIONS(4411), - [anon_sym_COLON_COLON] = ACTIONS(4413), - [anon_sym_PLUS_EQ] = ACTIONS(4413), - [anon_sym_DASH_EQ] = ACTIONS(4413), - [anon_sym_STAR_EQ] = ACTIONS(4413), - [anon_sym_SLASH_EQ] = ACTIONS(4413), - [anon_sym_PERCENT_EQ] = ACTIONS(4413), - [anon_sym_BANG_EQ] = ACTIONS(4411), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), - [anon_sym_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4413), - [anon_sym_is] = ACTIONS(4411), - [anon_sym_BANGis] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4411), - [anon_sym_DASH] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4411), - [anon_sym_PERCENT] = ACTIONS(4411), - [anon_sym_as_QMARK] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_BANG_BANG] = ACTIONS(4413), - [anon_sym_suspend] = ACTIONS(4411), - [anon_sym_sealed] = ACTIONS(4411), - [anon_sym_annotation] = ACTIONS(4411), - [anon_sym_data] = ACTIONS(4411), - [anon_sym_inner] = ACTIONS(4411), - [anon_sym_value] = ACTIONS(4411), - [anon_sym_override] = ACTIONS(4411), - [anon_sym_lateinit] = ACTIONS(4411), - [anon_sym_public] = ACTIONS(4411), - [anon_sym_private] = ACTIONS(4411), - [anon_sym_internal] = ACTIONS(4411), - [anon_sym_protected] = ACTIONS(4411), - [anon_sym_tailrec] = ACTIONS(4411), - [anon_sym_operator] = ACTIONS(4411), - [anon_sym_infix] = ACTIONS(4411), - [anon_sym_inline] = ACTIONS(4411), - [anon_sym_external] = ACTIONS(4411), - [sym_property_modifier] = ACTIONS(4411), - [anon_sym_abstract] = ACTIONS(4411), - [anon_sym_final] = ACTIONS(4411), - [anon_sym_open] = ACTIONS(4411), - [anon_sym_vararg] = ACTIONS(4411), - [anon_sym_noinline] = ACTIONS(4411), - [anon_sym_crossinline] = ACTIONS(4411), - [anon_sym_expect] = ACTIONS(4411), - [anon_sym_actual] = ACTIONS(4411), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4413), - [sym_safe_nav] = ACTIONS(4413), - [sym_multiline_comment] = ACTIONS(3), + [3125] = { + [sym__alpha_identifier] = ACTIONS(5045), + [anon_sym_AT] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5045), + [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_SEMI] = ACTIONS(5047), + [anon_sym_get] = ACTIONS(5045), + [anon_sym_set] = ACTIONS(5045), + [anon_sym_this] = ACTIONS(5045), + [anon_sym_super] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [sym_label] = ACTIONS(5045), + [anon_sym_in] = ACTIONS(5045), + [anon_sym_DOT_DOT] = ACTIONS(5047), + [anon_sym_QMARK_COLON] = ACTIONS(5047), + [anon_sym_AMP_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5047), + [anon_sym_null] = ACTIONS(5045), + [anon_sym_if] = ACTIONS(5045), + [anon_sym_else] = ACTIONS(5045), + [anon_sym_when] = ACTIONS(5045), + [anon_sym_try] = ACTIONS(5045), + [anon_sym_throw] = ACTIONS(5045), + [anon_sym_return] = ACTIONS(5045), + [anon_sym_continue] = ACTIONS(5045), + [anon_sym_break] = ACTIONS(5045), + [anon_sym_COLON_COLON] = ACTIONS(5047), + [anon_sym_PLUS_EQ] = ACTIONS(5047), + [anon_sym_DASH_EQ] = ACTIONS(5047), + [anon_sym_STAR_EQ] = ACTIONS(5047), + [anon_sym_SLASH_EQ] = ACTIONS(5047), + [anon_sym_PERCENT_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), + [anon_sym_LT_EQ] = ACTIONS(5047), + [anon_sym_GT_EQ] = ACTIONS(5047), + [anon_sym_BANGin] = ACTIONS(5047), + [anon_sym_is] = ACTIONS(5045), + [anon_sym_BANGis] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5045), + [anon_sym_as_QMARK] = ACTIONS(5047), + [anon_sym_PLUS_PLUS] = ACTIONS(5047), + [anon_sym_DASH_DASH] = ACTIONS(5047), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_BANG_BANG] = ACTIONS(5047), + [anon_sym_data] = ACTIONS(5045), + [anon_sym_inner] = ACTIONS(5045), + [anon_sym_value] = ACTIONS(5045), + [anon_sym_expect] = ACTIONS(5045), + [anon_sym_actual] = ACTIONS(5045), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5047), + [anon_sym_continue_AT] = ACTIONS(5047), + [anon_sym_break_AT] = ACTIONS(5047), + [anon_sym_this_AT] = ACTIONS(5047), + [anon_sym_super_AT] = ACTIONS(5047), + [sym_real_literal] = ACTIONS(5047), + [sym_integer_literal] = ACTIONS(5045), + [sym_hex_literal] = ACTIONS(5047), + [sym_bin_literal] = ACTIONS(5047), + [anon_sym_true] = ACTIONS(5045), + [anon_sym_false] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5047), + [sym__backtick_identifier] = ACTIONS(5047), + [sym__automatic_semicolon] = ACTIONS(5047), + [sym_safe_nav] = ACTIONS(5047), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5047), }, - [3146] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5075), - [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_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_this] = ACTIONS(5075), - [anon_sym_super] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [sym_label] = ACTIONS(5075), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_null] = ACTIONS(5075), - [anon_sym_if] = ACTIONS(5075), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_when] = ACTIONS(5075), - [anon_sym_try] = ACTIONS(5075), - [anon_sym_throw] = ACTIONS(5075), - [anon_sym_return] = ACTIONS(5075), - [anon_sym_continue] = ACTIONS(5075), - [anon_sym_break] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5075), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_value] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5077), - [anon_sym_continue_AT] = ACTIONS(5077), - [anon_sym_break_AT] = ACTIONS(5077), - [anon_sym_this_AT] = ACTIONS(5077), - [anon_sym_super_AT] = ACTIONS(5077), - [sym_real_literal] = ACTIONS(5077), - [sym_integer_literal] = ACTIONS(5075), - [sym_hex_literal] = ACTIONS(5077), - [sym_bin_literal] = ACTIONS(5077), - [anon_sym_true] = ACTIONS(5075), - [anon_sym_false] = ACTIONS(5075), - [anon_sym_SQUOTE] = ACTIONS(5077), - [sym__backtick_identifier] = ACTIONS(5077), - [sym__automatic_semicolon] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5077), + [3126] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_RBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_constructor] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [anon_sym_DASH_GT] = ACTIONS(3943), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), }, - [3147] = { - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4395), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), + [3127] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6585), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [3148] = { - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_object] = ACTIONS(3312), - [anon_sym_fun] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_this] = ACTIONS(3312), - [anon_sym_super] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3312), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_null] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_when] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3312), - [anon_sym_BANG_BANG] = ACTIONS(3316), - [anon_sym_data] = ACTIONS(3312), - [anon_sym_inner] = ACTIONS(3312), - [anon_sym_value] = ACTIONS(3312), - [anon_sym_expect] = ACTIONS(3312), - [anon_sym_actual] = ACTIONS(3312), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3316), - [anon_sym_continue_AT] = ACTIONS(3316), - [anon_sym_break_AT] = ACTIONS(3316), - [anon_sym_this_AT] = ACTIONS(3316), - [anon_sym_super_AT] = ACTIONS(3316), - [sym_real_literal] = ACTIONS(3316), - [sym_integer_literal] = ACTIONS(3312), - [sym_hex_literal] = ACTIONS(3316), - [sym_bin_literal] = ACTIONS(3316), - [anon_sym_true] = ACTIONS(3312), - [anon_sym_false] = ACTIONS(3312), - [anon_sym_SQUOTE] = ACTIONS(3316), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3316), + [3128] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_object] = ACTIONS(4732), + [anon_sym_fun] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_this] = ACTIONS(4732), + [anon_sym_super] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4732), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_null] = ACTIONS(4732), + [anon_sym_if] = ACTIONS(4732), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_when] = ACTIONS(4732), + [anon_sym_try] = ACTIONS(4732), + [anon_sym_throw] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4732), + [anon_sym_continue] = ACTIONS(4732), + [anon_sym_break] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG] = ACTIONS(4732), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4734), + [anon_sym_continue_AT] = ACTIONS(4734), + [anon_sym_break_AT] = ACTIONS(4734), + [anon_sym_this_AT] = ACTIONS(4734), + [anon_sym_super_AT] = ACTIONS(4734), + [sym_real_literal] = ACTIONS(4734), + [sym_integer_literal] = ACTIONS(4732), + [sym_hex_literal] = ACTIONS(4734), + [sym_bin_literal] = ACTIONS(4734), + [anon_sym_true] = ACTIONS(4732), + [anon_sym_false] = ACTIONS(4732), + [anon_sym_SQUOTE] = ACTIONS(4734), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4734), }, - [3149] = { - [sym__alpha_identifier] = ACTIONS(5015), - [anon_sym_AT] = ACTIONS(5017), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_COMMA] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_where] = ACTIONS(5015), - [anon_sym_object] = ACTIONS(5015), - [anon_sym_fun] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_get] = ACTIONS(5015), - [anon_sym_set] = ACTIONS(5015), - [anon_sym_this] = ACTIONS(5015), - [anon_sym_super] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [sym_label] = ACTIONS(5015), - [anon_sym_in] = ACTIONS(5015), - [anon_sym_DOT_DOT] = ACTIONS(5017), - [anon_sym_QMARK_COLON] = ACTIONS(5017), - [anon_sym_AMP_AMP] = ACTIONS(5017), - [anon_sym_PIPE_PIPE] = ACTIONS(5017), - [anon_sym_null] = ACTIONS(5015), - [anon_sym_if] = ACTIONS(5015), - [anon_sym_else] = ACTIONS(5015), - [anon_sym_when] = ACTIONS(5015), - [anon_sym_try] = ACTIONS(5015), - [anon_sym_throw] = ACTIONS(5015), - [anon_sym_return] = ACTIONS(5015), - [anon_sym_continue] = ACTIONS(5015), - [anon_sym_break] = ACTIONS(5015), - [anon_sym_COLON_COLON] = ACTIONS(5017), - [anon_sym_PLUS_EQ] = ACTIONS(5017), - [anon_sym_DASH_EQ] = ACTIONS(5017), - [anon_sym_STAR_EQ] = ACTIONS(5017), - [anon_sym_SLASH_EQ] = ACTIONS(5017), - [anon_sym_PERCENT_EQ] = ACTIONS(5017), - [anon_sym_BANG_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5017), - [anon_sym_EQ_EQ] = ACTIONS(5015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5017), - [anon_sym_LT_EQ] = ACTIONS(5017), - [anon_sym_GT_EQ] = ACTIONS(5017), - [anon_sym_BANGin] = ACTIONS(5017), - [anon_sym_is] = ACTIONS(5015), - [anon_sym_BANGis] = ACTIONS(5017), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_as_QMARK] = ACTIONS(5017), - [anon_sym_PLUS_PLUS] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_BANG_BANG] = ACTIONS(5017), - [anon_sym_data] = ACTIONS(5015), - [anon_sym_inner] = ACTIONS(5015), - [anon_sym_value] = ACTIONS(5015), - [anon_sym_expect] = ACTIONS(5015), - [anon_sym_actual] = ACTIONS(5015), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5017), - [anon_sym_continue_AT] = ACTIONS(5017), - [anon_sym_break_AT] = ACTIONS(5017), - [anon_sym_this_AT] = ACTIONS(5017), - [anon_sym_super_AT] = ACTIONS(5017), - [sym_real_literal] = ACTIONS(5017), - [sym_integer_literal] = ACTIONS(5015), - [sym_hex_literal] = ACTIONS(5017), - [sym_bin_literal] = ACTIONS(5017), - [anon_sym_true] = ACTIONS(5015), - [anon_sym_false] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5017), - [sym__backtick_identifier] = ACTIONS(5017), - [sym__automatic_semicolon] = ACTIONS(5017), - [sym_safe_nav] = ACTIONS(5017), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5017), + [3129] = { + [sym_function_body] = STATE(3137), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), }, - [3150] = { - [sym__alpha_identifier] = ACTIONS(4890), - [anon_sym_AT] = ACTIONS(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4890), - [anon_sym_EQ] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_where] = ACTIONS(4890), - [anon_sym_object] = ACTIONS(4890), - [anon_sym_fun] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_get] = ACTIONS(4890), - [anon_sym_set] = ACTIONS(4890), - [anon_sym_this] = ACTIONS(4890), - [anon_sym_super] = ACTIONS(4890), - [anon_sym_STAR] = ACTIONS(4890), - [sym_label] = ACTIONS(4890), - [anon_sym_in] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_QMARK_COLON] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_null] = ACTIONS(4890), - [anon_sym_if] = ACTIONS(4890), - [anon_sym_else] = ACTIONS(4890), - [anon_sym_when] = ACTIONS(4890), - [anon_sym_try] = ACTIONS(4890), - [anon_sym_throw] = ACTIONS(4890), - [anon_sym_return] = ACTIONS(4890), - [anon_sym_continue] = ACTIONS(4890), - [anon_sym_break] = ACTIONS(4890), - [anon_sym_COLON_COLON] = ACTIONS(4892), - [anon_sym_PLUS_EQ] = ACTIONS(4892), - [anon_sym_DASH_EQ] = ACTIONS(4892), - [anon_sym_STAR_EQ] = ACTIONS(4892), - [anon_sym_SLASH_EQ] = ACTIONS(4892), - [anon_sym_PERCENT_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_BANGin] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4890), - [anon_sym_BANGis] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4890), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_as_QMARK] = ACTIONS(4892), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_BANG] = ACTIONS(4890), - [anon_sym_BANG_BANG] = ACTIONS(4892), - [anon_sym_data] = ACTIONS(4890), - [anon_sym_inner] = ACTIONS(4890), - [anon_sym_value] = ACTIONS(4890), - [anon_sym_expect] = ACTIONS(4890), - [anon_sym_actual] = ACTIONS(4890), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4892), - [anon_sym_continue_AT] = ACTIONS(4892), - [anon_sym_break_AT] = ACTIONS(4892), - [anon_sym_this_AT] = ACTIONS(4892), - [anon_sym_super_AT] = ACTIONS(4892), - [sym_real_literal] = ACTIONS(4892), - [sym_integer_literal] = ACTIONS(4890), - [sym_hex_literal] = ACTIONS(4892), - [sym_bin_literal] = ACTIONS(4892), - [anon_sym_true] = ACTIONS(4890), - [anon_sym_false] = ACTIONS(4890), - [anon_sym_SQUOTE] = ACTIONS(4892), - [sym__backtick_identifier] = ACTIONS(4892), - [sym__automatic_semicolon] = ACTIONS(4892), - [sym_safe_nav] = ACTIONS(4892), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4892), + [3130] = { + [sym_class_body] = STATE(3151), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(6589), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_object] = ACTIONS(4353), + [anon_sym_fun] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_this] = ACTIONS(4353), + [anon_sym_super] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [sym_label] = ACTIONS(4353), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_null] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_try] = ACTIONS(4353), + [anon_sym_throw] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_PLUS_EQ] = ACTIONS(4355), + [anon_sym_DASH_EQ] = ACTIONS(4355), + [anon_sym_STAR_EQ] = ACTIONS(4355), + [anon_sym_SLASH_EQ] = ACTIONS(4355), + [anon_sym_PERCENT_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4355), + [anon_sym_continue_AT] = ACTIONS(4355), + [anon_sym_break_AT] = ACTIONS(4355), + [anon_sym_this_AT] = ACTIONS(4355), + [anon_sym_super_AT] = ACTIONS(4355), + [sym_real_literal] = ACTIONS(4355), + [sym_integer_literal] = ACTIONS(4353), + [sym_hex_literal] = ACTIONS(4355), + [sym_bin_literal] = ACTIONS(4355), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4355), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4355), }, - [3151] = { - [sym__alpha_identifier] = ACTIONS(4920), - [anon_sym_AT] = ACTIONS(4922), - [anon_sym_LBRACK] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4920), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4922), - [anon_sym_RBRACE] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_where] = ACTIONS(4920), - [anon_sym_object] = ACTIONS(4920), - [anon_sym_fun] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4922), - [anon_sym_get] = ACTIONS(4920), - [anon_sym_set] = ACTIONS(4920), - [anon_sym_this] = ACTIONS(4920), - [anon_sym_super] = ACTIONS(4920), - [anon_sym_STAR] = ACTIONS(4920), - [sym_label] = ACTIONS(4920), - [anon_sym_in] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_QMARK_COLON] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_null] = ACTIONS(4920), - [anon_sym_if] = ACTIONS(4920), - [anon_sym_else] = ACTIONS(4920), - [anon_sym_when] = ACTIONS(4920), - [anon_sym_try] = ACTIONS(4920), - [anon_sym_throw] = ACTIONS(4920), - [anon_sym_return] = ACTIONS(4920), - [anon_sym_continue] = ACTIONS(4920), - [anon_sym_break] = ACTIONS(4920), - [anon_sym_COLON_COLON] = ACTIONS(4922), - [anon_sym_PLUS_EQ] = ACTIONS(4922), - [anon_sym_DASH_EQ] = ACTIONS(4922), - [anon_sym_STAR_EQ] = ACTIONS(4922), - [anon_sym_SLASH_EQ] = ACTIONS(4922), - [anon_sym_PERCENT_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_BANGin] = ACTIONS(4922), - [anon_sym_is] = ACTIONS(4920), - [anon_sym_BANGis] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_as_QMARK] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4922), - [anon_sym_BANG] = ACTIONS(4920), - [anon_sym_BANG_BANG] = ACTIONS(4922), - [anon_sym_data] = ACTIONS(4920), - [anon_sym_inner] = ACTIONS(4920), - [anon_sym_value] = ACTIONS(4920), - [anon_sym_expect] = ACTIONS(4920), - [anon_sym_actual] = ACTIONS(4920), + [3131] = { + [sym__alpha_identifier] = ACTIONS(4916), + [anon_sym_AT] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4918), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_where] = ACTIONS(4916), + [anon_sym_object] = ACTIONS(4916), + [anon_sym_fun] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4918), + [anon_sym_get] = ACTIONS(4916), + [anon_sym_set] = ACTIONS(4916), + [anon_sym_this] = ACTIONS(4916), + [anon_sym_super] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [sym_label] = ACTIONS(4916), + [anon_sym_in] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4918), + [anon_sym_QMARK_COLON] = ACTIONS(4918), + [anon_sym_AMP_AMP] = ACTIONS(4918), + [anon_sym_PIPE_PIPE] = ACTIONS(4918), + [anon_sym_null] = ACTIONS(4916), + [anon_sym_if] = ACTIONS(4916), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_when] = ACTIONS(4916), + [anon_sym_try] = ACTIONS(4916), + [anon_sym_throw] = ACTIONS(4916), + [anon_sym_return] = ACTIONS(4916), + [anon_sym_continue] = ACTIONS(4916), + [anon_sym_break] = ACTIONS(4916), + [anon_sym_COLON_COLON] = ACTIONS(4918), + [anon_sym_PLUS_EQ] = ACTIONS(4918), + [anon_sym_DASH_EQ] = ACTIONS(4918), + [anon_sym_STAR_EQ] = ACTIONS(4918), + [anon_sym_SLASH_EQ] = ACTIONS(4918), + [anon_sym_PERCENT_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), + [anon_sym_LT_EQ] = ACTIONS(4918), + [anon_sym_GT_EQ] = ACTIONS(4918), + [anon_sym_BANGin] = ACTIONS(4918), + [anon_sym_is] = ACTIONS(4916), + [anon_sym_BANGis] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_as_QMARK] = ACTIONS(4918), + [anon_sym_PLUS_PLUS] = ACTIONS(4918), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_BANG_BANG] = ACTIONS(4918), + [anon_sym_data] = ACTIONS(4916), + [anon_sym_inner] = ACTIONS(4916), + [anon_sym_value] = ACTIONS(4916), + [anon_sym_expect] = ACTIONS(4916), + [anon_sym_actual] = ACTIONS(4916), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4922), - [anon_sym_continue_AT] = ACTIONS(4922), - [anon_sym_break_AT] = ACTIONS(4922), - [anon_sym_this_AT] = ACTIONS(4922), - [anon_sym_super_AT] = ACTIONS(4922), - [sym_real_literal] = ACTIONS(4922), - [sym_integer_literal] = ACTIONS(4920), - [sym_hex_literal] = ACTIONS(4922), - [sym_bin_literal] = ACTIONS(4922), - [anon_sym_true] = ACTIONS(4920), - [anon_sym_false] = ACTIONS(4920), - [anon_sym_SQUOTE] = ACTIONS(4922), - [sym__backtick_identifier] = ACTIONS(4922), - [sym__automatic_semicolon] = ACTIONS(4922), - [sym_safe_nav] = ACTIONS(4922), + [anon_sym_return_AT] = ACTIONS(4918), + [anon_sym_continue_AT] = ACTIONS(4918), + [anon_sym_break_AT] = ACTIONS(4918), + [anon_sym_this_AT] = ACTIONS(4918), + [anon_sym_super_AT] = ACTIONS(4918), + [sym_real_literal] = ACTIONS(4918), + [sym_integer_literal] = ACTIONS(4916), + [sym_hex_literal] = ACTIONS(4918), + [sym_bin_literal] = ACTIONS(4918), + [anon_sym_true] = ACTIONS(4916), + [anon_sym_false] = ACTIONS(4916), + [anon_sym_SQUOTE] = ACTIONS(4918), + [sym__backtick_identifier] = ACTIONS(4918), + [sym__automatic_semicolon] = ACTIONS(4918), + [sym_safe_nav] = ACTIONS(4918), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4922), + [sym__string_start] = ACTIONS(4918), }, - [3152] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), + [3132] = { + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(4416), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), }, - [3153] = { - [sym__alpha_identifier] = ACTIONS(5105), - [anon_sym_AT] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_as] = ACTIONS(5105), - [anon_sym_EQ] = ACTIONS(5105), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_RBRACE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_where] = ACTIONS(5105), - [anon_sym_object] = ACTIONS(5105), - [anon_sym_fun] = ACTIONS(5105), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_get] = ACTIONS(5105), - [anon_sym_set] = ACTIONS(5105), - [anon_sym_this] = ACTIONS(5105), - [anon_sym_super] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [sym_label] = ACTIONS(5105), - [anon_sym_in] = ACTIONS(5105), - [anon_sym_DOT_DOT] = ACTIONS(5107), - [anon_sym_QMARK_COLON] = ACTIONS(5107), - [anon_sym_AMP_AMP] = ACTIONS(5107), - [anon_sym_PIPE_PIPE] = ACTIONS(5107), - [anon_sym_null] = ACTIONS(5105), - [anon_sym_if] = ACTIONS(5105), - [anon_sym_else] = ACTIONS(5105), - [anon_sym_when] = ACTIONS(5105), - [anon_sym_try] = ACTIONS(5105), - [anon_sym_throw] = ACTIONS(5105), - [anon_sym_return] = ACTIONS(5105), - [anon_sym_continue] = ACTIONS(5105), - [anon_sym_break] = ACTIONS(5105), - [anon_sym_COLON_COLON] = ACTIONS(5107), - [anon_sym_PLUS_EQ] = ACTIONS(5107), - [anon_sym_DASH_EQ] = ACTIONS(5107), - [anon_sym_STAR_EQ] = ACTIONS(5107), - [anon_sym_SLASH_EQ] = ACTIONS(5107), - [anon_sym_PERCENT_EQ] = ACTIONS(5107), - [anon_sym_BANG_EQ] = ACTIONS(5105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5107), - [anon_sym_EQ_EQ] = ACTIONS(5105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5107), - [anon_sym_LT_EQ] = ACTIONS(5107), - [anon_sym_GT_EQ] = ACTIONS(5107), - [anon_sym_BANGin] = ACTIONS(5107), - [anon_sym_is] = ACTIONS(5105), - [anon_sym_BANGis] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5105), - [anon_sym_as_QMARK] = ACTIONS(5107), - [anon_sym_PLUS_PLUS] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5107), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_BANG_BANG] = ACTIONS(5107), - [anon_sym_data] = ACTIONS(5105), - [anon_sym_inner] = ACTIONS(5105), - [anon_sym_value] = ACTIONS(5105), - [anon_sym_expect] = ACTIONS(5105), - [anon_sym_actual] = ACTIONS(5105), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5107), - [anon_sym_continue_AT] = ACTIONS(5107), - [anon_sym_break_AT] = ACTIONS(5107), - [anon_sym_this_AT] = ACTIONS(5107), - [anon_sym_super_AT] = ACTIONS(5107), - [sym_real_literal] = ACTIONS(5107), - [sym_integer_literal] = ACTIONS(5105), - [sym_hex_literal] = ACTIONS(5107), - [sym_bin_literal] = ACTIONS(5107), - [anon_sym_true] = ACTIONS(5105), - [anon_sym_false] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5107), - [sym__backtick_identifier] = ACTIONS(5107), - [sym__automatic_semicolon] = ACTIONS(5107), - [sym_safe_nav] = ACTIONS(5107), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5107), + [3133] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_object] = ACTIONS(4726), + [anon_sym_fun] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_this] = ACTIONS(4726), + [anon_sym_super] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4726), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_null] = ACTIONS(4726), + [anon_sym_if] = ACTIONS(4726), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_when] = ACTIONS(4726), + [anon_sym_try] = ACTIONS(4726), + [anon_sym_throw] = ACTIONS(4726), + [anon_sym_return] = ACTIONS(4726), + [anon_sym_continue] = ACTIONS(4726), + [anon_sym_break] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4726), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4728), + [anon_sym_continue_AT] = ACTIONS(4728), + [anon_sym_break_AT] = ACTIONS(4728), + [anon_sym_this_AT] = ACTIONS(4728), + [anon_sym_super_AT] = ACTIONS(4728), + [sym_real_literal] = ACTIONS(4728), + [sym_integer_literal] = ACTIONS(4726), + [sym_hex_literal] = ACTIONS(4728), + [sym_bin_literal] = ACTIONS(4728), + [anon_sym_true] = ACTIONS(4726), + [anon_sym_false] = ACTIONS(4726), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4728), }, - [3154] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(6645), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_object] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_this] = ACTIONS(4894), - [anon_sym_super] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [sym_label] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_when] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_throw] = ACTIONS(4894), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_continue] = ACTIONS(4894), - [anon_sym_break] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4896), - [anon_sym_continue_AT] = ACTIONS(4896), - [anon_sym_break_AT] = ACTIONS(4896), - [anon_sym_this_AT] = ACTIONS(4896), - [anon_sym_super_AT] = ACTIONS(4896), - [sym_real_literal] = ACTIONS(4896), - [sym_integer_literal] = ACTIONS(4894), - [sym_hex_literal] = ACTIONS(4896), - [sym_bin_literal] = ACTIONS(4896), - [anon_sym_true] = ACTIONS(4894), - [anon_sym_false] = ACTIONS(4894), - [anon_sym_SQUOTE] = ACTIONS(4896), - [sym__backtick_identifier] = ACTIONS(4896), - [sym__automatic_semicolon] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4896), + [3134] = { + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_object] = ACTIONS(3096), + [anon_sym_fun] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_this] = ACTIONS(3096), + [anon_sym_super] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(3096), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_null] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_when] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3096), + [anon_sym_BANG_BANG] = ACTIONS(3098), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3098), + [anon_sym_continue_AT] = ACTIONS(3098), + [anon_sym_break_AT] = ACTIONS(3098), + [anon_sym_this_AT] = ACTIONS(3098), + [anon_sym_super_AT] = ACTIONS(3098), + [sym_real_literal] = ACTIONS(3098), + [sym_integer_literal] = ACTIONS(3096), + [sym_hex_literal] = ACTIONS(3098), + [sym_bin_literal] = ACTIONS(3098), + [anon_sym_true] = ACTIONS(3096), + [anon_sym_false] = ACTIONS(3096), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3098), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3098), }, - [3155] = { - [aux_sym_user_type_repeat1] = STATE(2880), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4164), - [anon_sym_RBRACE] = ACTIONS(4164), - [anon_sym_LPAREN] = ACTIONS(4164), - [anon_sym_COMMA] = ACTIONS(4164), - [anon_sym_by] = ACTIONS(4162), - [anon_sym_where] = ACTIONS(4162), - [anon_sym_object] = ACTIONS(4162), - [anon_sym_fun] = 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_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_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_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_BANG] = ACTIONS(4162), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4164), - [anon_sym_super_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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4164), + [3135] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_DOT] = ACTIONS(4722), + [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_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_this] = ACTIONS(4722), + [anon_sym_super] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [sym_label] = ACTIONS(4722), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_null] = ACTIONS(4722), + [anon_sym_if] = ACTIONS(4722), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_when] = ACTIONS(4722), + [anon_sym_try] = ACTIONS(4722), + [anon_sym_throw] = ACTIONS(4722), + [anon_sym_return] = ACTIONS(4722), + [anon_sym_continue] = ACTIONS(4722), + [anon_sym_break] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4724), + [anon_sym_continue_AT] = ACTIONS(4724), + [anon_sym_break_AT] = ACTIONS(4724), + [anon_sym_this_AT] = ACTIONS(4724), + [anon_sym_super_AT] = ACTIONS(4724), + [sym_real_literal] = ACTIONS(4724), + [sym_integer_literal] = ACTIONS(4722), + [sym_hex_literal] = ACTIONS(4724), + [sym_bin_literal] = ACTIONS(4724), + [anon_sym_true] = ACTIONS(4722), + [anon_sym_false] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4724), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4724), }, - [3156] = { - [sym__alpha_identifier] = ACTIONS(4770), - [anon_sym_AT] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4770), - [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_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_value] = ACTIONS(4770), - [anon_sym_expect] = ACTIONS(4770), - [anon_sym_actual] = ACTIONS(4770), + [3136] = { + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4804), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4802), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_object] = ACTIONS(4802), + [anon_sym_fun] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_get] = ACTIONS(4802), + [anon_sym_set] = ACTIONS(4802), + [anon_sym_this] = ACTIONS(4802), + [anon_sym_super] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [sym_label] = ACTIONS(4802), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_QMARK_COLON] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_null] = ACTIONS(4802), + [anon_sym_if] = ACTIONS(4802), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_when] = ACTIONS(4802), + [anon_sym_try] = ACTIONS(4802), + [anon_sym_throw] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4802), + [anon_sym_continue] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4802), + [anon_sym_COLON_COLON] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4804), + [anon_sym_DASH_EQ] = ACTIONS(4804), + [anon_sym_STAR_EQ] = ACTIONS(4804), + [anon_sym_SLASH_EQ] = ACTIONS(4804), + [anon_sym_PERCENT_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4804), + [anon_sym_BANGin] = ACTIONS(4804), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_BANGis] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_as_QMARK] = ACTIONS(4804), + [anon_sym_PLUS_PLUS] = ACTIONS(4804), + [anon_sym_DASH_DASH] = ACTIONS(4804), + [anon_sym_BANG] = ACTIONS(4802), + [anon_sym_BANG_BANG] = ACTIONS(4804), + [anon_sym_data] = ACTIONS(4802), + [anon_sym_inner] = ACTIONS(4802), + [anon_sym_value] = ACTIONS(4802), + [anon_sym_expect] = ACTIONS(4802), + [anon_sym_actual] = ACTIONS(4802), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4804), + [anon_sym_continue_AT] = ACTIONS(4804), + [anon_sym_break_AT] = ACTIONS(4804), + [anon_sym_this_AT] = ACTIONS(4804), + [anon_sym_super_AT] = ACTIONS(4804), + [sym_real_literal] = ACTIONS(4804), + [sym_integer_literal] = ACTIONS(4802), + [sym_hex_literal] = ACTIONS(4804), + [sym_bin_literal] = ACTIONS(4804), + [anon_sym_true] = ACTIONS(4802), + [anon_sym_false] = ACTIONS(4802), + [anon_sym_SQUOTE] = ACTIONS(4804), + [sym__backtick_identifier] = ACTIONS(4804), + [sym__automatic_semicolon] = ACTIONS(4804), + [sym_safe_nav] = ACTIONS(4804), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4804), + }, + [3137] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [3138] = { + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [3139] = { + [sym_class_body] = STATE(3409), + [sym_type_constraints] = STATE(3360), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_RBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_while] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + }, + [3140] = { + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), + }, + [3141] = { + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4422), + [anon_sym_super_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), + }, + [3142] = { + [sym__alpha_identifier] = ACTIONS(4960), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4960), + [anon_sym_object] = ACTIONS(4960), + [anon_sym_fun] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_get] = ACTIONS(4960), + [anon_sym_set] = ACTIONS(4960), + [anon_sym_this] = ACTIONS(4960), + [anon_sym_super] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [sym_label] = ACTIONS(4960), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4962), + [anon_sym_QMARK_COLON] = ACTIONS(4962), + [anon_sym_AMP_AMP] = ACTIONS(4962), + [anon_sym_PIPE_PIPE] = ACTIONS(4962), + [anon_sym_null] = ACTIONS(4960), + [anon_sym_if] = ACTIONS(4960), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_when] = ACTIONS(4960), + [anon_sym_try] = ACTIONS(4960), + [anon_sym_throw] = ACTIONS(4960), + [anon_sym_return] = ACTIONS(4960), + [anon_sym_continue] = ACTIONS(4960), + [anon_sym_break] = ACTIONS(4960), + [anon_sym_COLON_COLON] = ACTIONS(4962), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_PERCENT_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_BANGin] = ACTIONS(4962), + [anon_sym_is] = ACTIONS(4960), + [anon_sym_BANGis] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_as_QMARK] = ACTIONS(4962), + [anon_sym_PLUS_PLUS] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_BANG_BANG] = ACTIONS(4962), + [anon_sym_data] = ACTIONS(4960), + [anon_sym_inner] = ACTIONS(4960), + [anon_sym_value] = ACTIONS(4960), + [anon_sym_expect] = ACTIONS(4960), + [anon_sym_actual] = ACTIONS(4960), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4962), + [anon_sym_continue_AT] = ACTIONS(4962), + [anon_sym_break_AT] = ACTIONS(4962), + [anon_sym_this_AT] = ACTIONS(4962), + [anon_sym_super_AT] = ACTIONS(4962), + [sym_real_literal] = ACTIONS(4962), + [sym_integer_literal] = ACTIONS(4960), + [sym_hex_literal] = ACTIONS(4962), + [sym_bin_literal] = ACTIONS(4962), + [anon_sym_true] = ACTIONS(4960), + [anon_sym_false] = ACTIONS(4960), + [anon_sym_SQUOTE] = ACTIONS(4962), + [sym__backtick_identifier] = ACTIONS(4962), + [sym__automatic_semicolon] = ACTIONS(4962), + [sym_safe_nav] = ACTIONS(4962), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4962), + }, + [3143] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4718), + [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_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_this] = ACTIONS(4718), + [anon_sym_super] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [sym_label] = ACTIONS(4718), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_QMARK_COLON] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_null] = ACTIONS(4718), + [anon_sym_if] = ACTIONS(4718), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_when] = ACTIONS(4718), + [anon_sym_try] = ACTIONS(4718), + [anon_sym_throw] = ACTIONS(4718), + [anon_sym_return] = ACTIONS(4718), + [anon_sym_continue] = ACTIONS(4718), + [anon_sym_break] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_PERCENT_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_BANGin] = ACTIONS(4720), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_as_QMARK] = ACTIONS(4720), + [anon_sym_PLUS_PLUS] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_BANG_BANG] = ACTIONS(4720), + [anon_sym_data] = ACTIONS(4718), + [anon_sym_inner] = ACTIONS(4718), + [anon_sym_value] = ACTIONS(4718), + [anon_sym_expect] = ACTIONS(4718), + [anon_sym_actual] = ACTIONS(4718), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4720), + [anon_sym_continue_AT] = ACTIONS(4720), + [anon_sym_break_AT] = ACTIONS(4720), + [anon_sym_this_AT] = ACTIONS(4720), + [anon_sym_super_AT] = ACTIONS(4720), + [sym_real_literal] = ACTIONS(4720), + [sym_integer_literal] = ACTIONS(4718), + [sym_hex_literal] = ACTIONS(4720), + [sym_bin_literal] = ACTIONS(4720), + [anon_sym_true] = ACTIONS(4718), + [anon_sym_false] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4720), + [sym__backtick_identifier] = ACTIONS(4720), + [sym__automatic_semicolon] = ACTIONS(4720), + [sym_safe_nav] = ACTIONS(4720), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4720), + }, + [3144] = { + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), + }, + [3145] = { + [sym__alpha_identifier] = ACTIONS(4964), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_where] = ACTIONS(4964), + [anon_sym_object] = ACTIONS(4964), + [anon_sym_fun] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_get] = ACTIONS(4964), + [anon_sym_set] = ACTIONS(4964), + [anon_sym_this] = ACTIONS(4964), + [anon_sym_super] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [sym_label] = ACTIONS(4964), + [anon_sym_in] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4966), + [anon_sym_QMARK_COLON] = ACTIONS(4966), + [anon_sym_AMP_AMP] = ACTIONS(4966), + [anon_sym_PIPE_PIPE] = ACTIONS(4966), + [anon_sym_null] = ACTIONS(4964), + [anon_sym_if] = ACTIONS(4964), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_when] = ACTIONS(4964), + [anon_sym_try] = ACTIONS(4964), + [anon_sym_throw] = ACTIONS(4964), + [anon_sym_return] = ACTIONS(4964), + [anon_sym_continue] = ACTIONS(4964), + [anon_sym_break] = ACTIONS(4964), + [anon_sym_COLON_COLON] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_PERCENT_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_BANGin] = ACTIONS(4966), + [anon_sym_is] = ACTIONS(4964), + [anon_sym_BANGis] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_as_QMARK] = ACTIONS(4966), + [anon_sym_PLUS_PLUS] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_BANG_BANG] = ACTIONS(4966), + [anon_sym_data] = ACTIONS(4964), + [anon_sym_inner] = ACTIONS(4964), + [anon_sym_value] = ACTIONS(4964), + [anon_sym_expect] = ACTIONS(4964), + [anon_sym_actual] = ACTIONS(4964), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4966), + [anon_sym_continue_AT] = ACTIONS(4966), + [anon_sym_break_AT] = ACTIONS(4966), + [anon_sym_this_AT] = ACTIONS(4966), + [anon_sym_super_AT] = ACTIONS(4966), + [sym_real_literal] = ACTIONS(4966), + [sym_integer_literal] = ACTIONS(4964), + [sym_hex_literal] = ACTIONS(4966), + [sym_bin_literal] = ACTIONS(4966), + [anon_sym_true] = ACTIONS(4964), + [anon_sym_false] = ACTIONS(4964), + [anon_sym_SQUOTE] = ACTIONS(4966), + [sym__backtick_identifier] = ACTIONS(4966), + [sym__automatic_semicolon] = ACTIONS(4966), + [sym_safe_nav] = ACTIONS(4966), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4966), + }, + [3146] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_RBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [anon_sym_DASH_GT] = ACTIONS(4345), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_while] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_catch] = ACTIONS(4343), + [anon_sym_finally] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + }, + [3147] = { + [sym__alpha_identifier] = ACTIONS(4968), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_where] = ACTIONS(4968), + [anon_sym_object] = ACTIONS(4968), + [anon_sym_fun] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_get] = ACTIONS(4968), + [anon_sym_set] = ACTIONS(4968), + [anon_sym_this] = ACTIONS(4968), + [anon_sym_super] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [sym_label] = ACTIONS(4968), + [anon_sym_in] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_QMARK_COLON] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_PIPE_PIPE] = ACTIONS(4970), + [anon_sym_null] = ACTIONS(4968), + [anon_sym_if] = ACTIONS(4968), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_when] = ACTIONS(4968), + [anon_sym_try] = ACTIONS(4968), + [anon_sym_throw] = ACTIONS(4968), + [anon_sym_return] = ACTIONS(4968), + [anon_sym_continue] = ACTIONS(4968), + [anon_sym_break] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4970), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_PERCENT_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_BANGin] = ACTIONS(4970), + [anon_sym_is] = ACTIONS(4968), + [anon_sym_BANGis] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_as_QMARK] = ACTIONS(4970), + [anon_sym_PLUS_PLUS] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_BANG_BANG] = ACTIONS(4970), + [anon_sym_data] = ACTIONS(4968), + [anon_sym_inner] = ACTIONS(4968), + [anon_sym_value] = ACTIONS(4968), + [anon_sym_expect] = ACTIONS(4968), + [anon_sym_actual] = ACTIONS(4968), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4970), + [anon_sym_continue_AT] = ACTIONS(4970), + [anon_sym_break_AT] = ACTIONS(4970), + [anon_sym_this_AT] = ACTIONS(4970), + [anon_sym_super_AT] = ACTIONS(4970), + [sym_real_literal] = ACTIONS(4970), + [sym_integer_literal] = ACTIONS(4968), + [sym_hex_literal] = ACTIONS(4970), + [sym_bin_literal] = ACTIONS(4970), + [anon_sym_true] = ACTIONS(4968), + [anon_sym_false] = ACTIONS(4968), + [anon_sym_SQUOTE] = ACTIONS(4970), + [sym__backtick_identifier] = ACTIONS(4970), + [sym__automatic_semicolon] = ACTIONS(4970), + [sym_safe_nav] = ACTIONS(4970), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4970), + }, + [3148] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_object] = ACTIONS(4343), + [anon_sym_fun] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_this] = ACTIONS(4343), + [anon_sym_super] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_null] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4345), + [anon_sym_continue_AT] = ACTIONS(4345), + [anon_sym_break_AT] = ACTIONS(4345), + [anon_sym_this_AT] = ACTIONS(4345), + [anon_sym_super_AT] = ACTIONS(4345), + [sym_real_literal] = ACTIONS(4345), + [sym_integer_literal] = ACTIONS(4343), + [sym_hex_literal] = ACTIONS(4345), + [sym_bin_literal] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [anon_sym_SQUOTE] = ACTIONS(4345), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4345), + }, + [3149] = { + [aux_sym_nullable_type_repeat1] = STATE(3149), + [sym__alpha_identifier] = ACTIONS(4280), + [anon_sym_AT] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_EQ] = ACTIONS(4282), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_by] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4280), + [anon_sym_object] = ACTIONS(4280), + [anon_sym_fun] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_get] = ACTIONS(4280), + [anon_sym_set] = ACTIONS(4280), + [anon_sym_this] = ACTIONS(4280), + [anon_sym_super] = ACTIONS(4280), + [sym__quest] = ACTIONS(6591), + [anon_sym_STAR] = ACTIONS(4282), + [sym_label] = ACTIONS(4280), + [anon_sym_in] = ACTIONS(4280), + [anon_sym_null] = ACTIONS(4280), + [anon_sym_if] = ACTIONS(4280), + [anon_sym_else] = ACTIONS(4280), + [anon_sym_when] = ACTIONS(4280), + [anon_sym_try] = ACTIONS(4280), + [anon_sym_throw] = ACTIONS(4280), + [anon_sym_return] = ACTIONS(4280), + [anon_sym_continue] = ACTIONS(4280), + [anon_sym_break] = ACTIONS(4280), + [anon_sym_COLON_COLON] = ACTIONS(4282), + [anon_sym_BANGin] = ACTIONS(4282), + [anon_sym_is] = ACTIONS(4280), + [anon_sym_BANGis] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_BANG] = ACTIONS(4280), + [anon_sym_suspend] = ACTIONS(4280), + [anon_sym_sealed] = ACTIONS(4280), + [anon_sym_annotation] = ACTIONS(4280), + [anon_sym_data] = ACTIONS(4280), + [anon_sym_inner] = ACTIONS(4280), + [anon_sym_value] = ACTIONS(4280), + [anon_sym_override] = ACTIONS(4280), + [anon_sym_lateinit] = ACTIONS(4280), + [anon_sym_public] = ACTIONS(4280), + [anon_sym_private] = ACTIONS(4280), + [anon_sym_internal] = ACTIONS(4280), + [anon_sym_protected] = ACTIONS(4280), + [anon_sym_tailrec] = ACTIONS(4280), + [anon_sym_operator] = ACTIONS(4280), + [anon_sym_infix] = ACTIONS(4280), + [anon_sym_inline] = ACTIONS(4280), + [anon_sym_external] = ACTIONS(4280), + [sym_property_modifier] = ACTIONS(4280), + [anon_sym_abstract] = ACTIONS(4280), + [anon_sym_final] = ACTIONS(4280), + [anon_sym_open] = ACTIONS(4280), + [anon_sym_vararg] = ACTIONS(4280), + [anon_sym_noinline] = ACTIONS(4280), + [anon_sym_crossinline] = ACTIONS(4280), + [anon_sym_expect] = ACTIONS(4280), + [anon_sym_actual] = ACTIONS(4280), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4282), + [anon_sym_continue_AT] = ACTIONS(4282), + [anon_sym_break_AT] = ACTIONS(4282), + [anon_sym_this_AT] = ACTIONS(4282), + [anon_sym_super_AT] = ACTIONS(4282), + [sym_real_literal] = ACTIONS(4282), + [sym_integer_literal] = ACTIONS(4280), + [sym_hex_literal] = ACTIONS(4282), + [sym_bin_literal] = ACTIONS(4282), + [anon_sym_true] = ACTIONS(4280), + [anon_sym_false] = ACTIONS(4280), + [anon_sym_SQUOTE] = ACTIONS(4282), + [sym__backtick_identifier] = ACTIONS(4282), + [sym__automatic_semicolon] = ACTIONS(4282), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4282), + }, + [3150] = { + [aux_sym_nullable_type_repeat1] = STATE(3155), + [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_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(6575), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4272), + [anon_sym_super_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), + }, + [3151] = { + [sym__alpha_identifier] = ACTIONS(5015), + [anon_sym_AT] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5017), + [anon_sym_DOT] = ACTIONS(5015), + [anon_sym_as] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_COMMA] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5015), + [anon_sym_GT] = ACTIONS(5015), + [anon_sym_where] = ACTIONS(5015), + [anon_sym_object] = ACTIONS(5015), + [anon_sym_fun] = ACTIONS(5015), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_get] = ACTIONS(5015), + [anon_sym_set] = ACTIONS(5015), + [anon_sym_this] = ACTIONS(5015), + [anon_sym_super] = ACTIONS(5015), + [anon_sym_STAR] = ACTIONS(5015), + [sym_label] = ACTIONS(5015), + [anon_sym_in] = ACTIONS(5015), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [anon_sym_QMARK_COLON] = ACTIONS(5017), + [anon_sym_AMP_AMP] = ACTIONS(5017), + [anon_sym_PIPE_PIPE] = ACTIONS(5017), + [anon_sym_null] = ACTIONS(5015), + [anon_sym_if] = ACTIONS(5015), + [anon_sym_else] = ACTIONS(5015), + [anon_sym_when] = ACTIONS(5015), + [anon_sym_try] = ACTIONS(5015), + [anon_sym_throw] = ACTIONS(5015), + [anon_sym_return] = ACTIONS(5015), + [anon_sym_continue] = ACTIONS(5015), + [anon_sym_break] = ACTIONS(5015), + [anon_sym_COLON_COLON] = ACTIONS(5017), + [anon_sym_PLUS_EQ] = ACTIONS(5017), + [anon_sym_DASH_EQ] = ACTIONS(5017), + [anon_sym_STAR_EQ] = ACTIONS(5017), + [anon_sym_SLASH_EQ] = ACTIONS(5017), + [anon_sym_PERCENT_EQ] = ACTIONS(5017), + [anon_sym_BANG_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5017), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5017), + [anon_sym_LT_EQ] = ACTIONS(5017), + [anon_sym_GT_EQ] = ACTIONS(5017), + [anon_sym_BANGin] = ACTIONS(5017), + [anon_sym_is] = ACTIONS(5015), + [anon_sym_BANGis] = ACTIONS(5017), + [anon_sym_PLUS] = ACTIONS(5015), + [anon_sym_DASH] = ACTIONS(5015), + [anon_sym_SLASH] = ACTIONS(5015), + [anon_sym_PERCENT] = ACTIONS(5015), + [anon_sym_as_QMARK] = ACTIONS(5017), + [anon_sym_PLUS_PLUS] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5015), + [anon_sym_BANG_BANG] = ACTIONS(5017), + [anon_sym_data] = ACTIONS(5015), + [anon_sym_inner] = ACTIONS(5015), + [anon_sym_value] = ACTIONS(5015), + [anon_sym_expect] = ACTIONS(5015), + [anon_sym_actual] = ACTIONS(5015), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4772), - [anon_sym_continue_AT] = ACTIONS(4772), - [anon_sym_break_AT] = ACTIONS(4772), - [anon_sym_this_AT] = ACTIONS(4772), - [anon_sym_super_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), + [anon_sym_return_AT] = ACTIONS(5017), + [anon_sym_continue_AT] = ACTIONS(5017), + [anon_sym_break_AT] = ACTIONS(5017), + [anon_sym_this_AT] = ACTIONS(5017), + [anon_sym_super_AT] = ACTIONS(5017), + [sym_real_literal] = ACTIONS(5017), + [sym_integer_literal] = ACTIONS(5015), + [sym_hex_literal] = ACTIONS(5017), + [sym_bin_literal] = ACTIONS(5017), + [anon_sym_true] = ACTIONS(5015), + [anon_sym_false] = ACTIONS(5015), + [anon_sym_SQUOTE] = ACTIONS(5017), + [sym__backtick_identifier] = ACTIONS(5017), + [sym__automatic_semicolon] = ACTIONS(5017), + [sym_safe_nav] = ACTIONS(5017), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4772), + [sym__string_start] = ACTIONS(5017), }, - [3157] = { - [sym_function_body] = STATE(3458), - [sym__block] = STATE(3577), + [3152] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_RBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_RPAREN] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4333), + [sym_label] = ACTIONS(4333), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_while] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_catch] = ACTIONS(4331), + [anon_sym_finally] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), + }, + [3153] = { + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_object] = ACTIONS(1682), + [anon_sym_fun] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1682), + [anon_sym_set] = ACTIONS(1682), + [anon_sym_this] = ACTIONS(1682), + [anon_sym_super] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1682), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_null] = ACTIONS(1682), + [anon_sym_if] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_when] = ACTIONS(1682), + [anon_sym_try] = ACTIONS(1682), + [anon_sym_throw] = ACTIONS(1682), + [anon_sym_return] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1682), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG] = ACTIONS(1682), + [anon_sym_BANG_BANG] = ACTIONS(1684), + [anon_sym_data] = ACTIONS(1682), + [anon_sym_inner] = ACTIONS(1682), + [anon_sym_value] = ACTIONS(1682), + [anon_sym_expect] = ACTIONS(1682), + [anon_sym_actual] = ACTIONS(1682), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1684), + [anon_sym_continue_AT] = ACTIONS(1684), + [anon_sym_break_AT] = ACTIONS(1684), + [anon_sym_this_AT] = ACTIONS(1684), + [anon_sym_super_AT] = ACTIONS(1684), + [sym_real_literal] = ACTIONS(1684), + [sym_integer_literal] = ACTIONS(1682), + [sym_hex_literal] = ACTIONS(1684), + [sym_bin_literal] = ACTIONS(1684), + [anon_sym_true] = ACTIONS(1682), + [anon_sym_false] = ACTIONS(1682), + [anon_sym_SQUOTE] = ACTIONS(1684), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1684), + }, + [3154] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_object] = ACTIONS(4331), + [anon_sym_fun] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_this] = ACTIONS(4331), + [anon_sym_super] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4333), + [anon_sym_continue_AT] = ACTIONS(4333), + [anon_sym_break_AT] = ACTIONS(4333), + [anon_sym_this_AT] = ACTIONS(4333), + [anon_sym_super_AT] = ACTIONS(4333), + [sym_real_literal] = ACTIONS(4333), + [sym_integer_literal] = ACTIONS(4331), + [sym_hex_literal] = ACTIONS(4333), + [sym_bin_literal] = ACTIONS(4333), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4333), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4333), + }, + [3155] = { + [aux_sym_nullable_type_repeat1] = STATE(3149), [sym__alpha_identifier] = ACTIONS(4264), [anon_sym_AT] = ACTIONS(4266), [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_RBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), + [anon_sym_EQ] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4266), [anon_sym_RBRACE] = ACTIONS(4266), [anon_sym_LPAREN] = ACTIONS(4266), [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), + [anon_sym_by] = ACTIONS(4264), [anon_sym_where] = ACTIONS(4264), + [anon_sym_object] = ACTIONS(4264), + [anon_sym_fun] = ACTIONS(4264), [anon_sym_SEMI] = ACTIONS(4266), [anon_sym_get] = ACTIONS(4264), [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), + [anon_sym_this] = ACTIONS(4264), + [anon_sym_super] = ACTIONS(4264), + [sym__quest] = ACTIONS(6594), + [anon_sym_STAR] = ACTIONS(4266), + [sym_label] = ACTIONS(4264), [anon_sym_in] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), + [anon_sym_null] = ACTIONS(4264), + [anon_sym_if] = ACTIONS(4264), [anon_sym_else] = ACTIONS(4264), + [anon_sym_when] = ACTIONS(4264), + [anon_sym_try] = ACTIONS(4264), + [anon_sym_throw] = ACTIONS(4264), + [anon_sym_return] = ACTIONS(4264), + [anon_sym_continue] = ACTIONS(4264), + [anon_sym_break] = ACTIONS(4264), [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), [anon_sym_BANGin] = ACTIONS(4266), [anon_sym_is] = ACTIONS(4264), [anon_sym_BANGis] = ACTIONS(4266), [anon_sym_PLUS] = ACTIONS(4264), [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), [anon_sym_PLUS_PLUS] = ACTIONS(4266), [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), + [anon_sym_BANG] = ACTIONS(4264), [anon_sym_suspend] = ACTIONS(4264), [anon_sym_sealed] = ACTIONS(4264), [anon_sym_annotation] = ACTIONS(4264), @@ -371982,2306 +372068,4529 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4264), [anon_sym_actual] = ACTIONS(4264), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4266), + [anon_sym_continue_AT] = ACTIONS(4266), + [anon_sym_break_AT] = ACTIONS(4266), + [anon_sym_this_AT] = ACTIONS(4266), + [anon_sym_super_AT] = ACTIONS(4266), + [sym_real_literal] = ACTIONS(4266), + [sym_integer_literal] = ACTIONS(4264), + [sym_hex_literal] = ACTIONS(4266), + [sym_bin_literal] = ACTIONS(4266), + [anon_sym_true] = ACTIONS(4264), + [anon_sym_false] = ACTIONS(4264), + [anon_sym_SQUOTE] = ACTIONS(4266), [sym__backtick_identifier] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__automatic_semicolon] = ACTIONS(4266), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4266), + }, + [3156] = { + [sym__alpha_identifier] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_as] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4714), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_COMMA] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_where] = ACTIONS(4714), + [anon_sym_object] = ACTIONS(4714), + [anon_sym_fun] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_get] = ACTIONS(4714), + [anon_sym_set] = ACTIONS(4714), + [anon_sym_this] = ACTIONS(4714), + [anon_sym_super] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [sym_label] = ACTIONS(4714), + [anon_sym_in] = ACTIONS(4714), + [anon_sym_DOT_DOT] = ACTIONS(4716), + [anon_sym_QMARK_COLON] = ACTIONS(4716), + [anon_sym_AMP_AMP] = ACTIONS(4716), + [anon_sym_PIPE_PIPE] = ACTIONS(4716), + [anon_sym_null] = ACTIONS(4714), + [anon_sym_if] = ACTIONS(4714), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_when] = ACTIONS(4714), + [anon_sym_try] = ACTIONS(4714), + [anon_sym_throw] = ACTIONS(4714), + [anon_sym_return] = ACTIONS(4714), + [anon_sym_continue] = ACTIONS(4714), + [anon_sym_break] = ACTIONS(4714), + [anon_sym_COLON_COLON] = ACTIONS(4716), + [anon_sym_PLUS_EQ] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4716), + [anon_sym_STAR_EQ] = ACTIONS(4716), + [anon_sym_SLASH_EQ] = ACTIONS(4716), + [anon_sym_PERCENT_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ] = ACTIONS(4714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), + [anon_sym_LT_EQ] = ACTIONS(4716), + [anon_sym_GT_EQ] = ACTIONS(4716), + [anon_sym_BANGin] = ACTIONS(4716), + [anon_sym_is] = ACTIONS(4714), + [anon_sym_BANGis] = ACTIONS(4716), + [anon_sym_PLUS] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4714), + [anon_sym_SLASH] = ACTIONS(4714), + [anon_sym_PERCENT] = ACTIONS(4714), + [anon_sym_as_QMARK] = ACTIONS(4716), + [anon_sym_PLUS_PLUS] = ACTIONS(4716), + [anon_sym_DASH_DASH] = ACTIONS(4716), + [anon_sym_BANG] = ACTIONS(4714), + [anon_sym_BANG_BANG] = ACTIONS(4716), + [anon_sym_data] = ACTIONS(4714), + [anon_sym_inner] = ACTIONS(4714), + [anon_sym_value] = ACTIONS(4714), + [anon_sym_expect] = ACTIONS(4714), + [anon_sym_actual] = ACTIONS(4714), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4716), + [anon_sym_continue_AT] = ACTIONS(4716), + [anon_sym_break_AT] = ACTIONS(4716), + [anon_sym_this_AT] = ACTIONS(4716), + [anon_sym_super_AT] = ACTIONS(4716), + [sym_real_literal] = ACTIONS(4716), + [sym_integer_literal] = ACTIONS(4714), + [sym_hex_literal] = ACTIONS(4716), + [sym_bin_literal] = ACTIONS(4716), + [anon_sym_true] = ACTIONS(4714), + [anon_sym_false] = ACTIONS(4714), + [anon_sym_SQUOTE] = ACTIONS(4716), + [sym__backtick_identifier] = ACTIONS(4716), + [sym__automatic_semicolon] = ACTIONS(4716), + [sym_safe_nav] = ACTIONS(4716), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4716), + }, + [3157] = { + [sym__alpha_identifier] = ACTIONS(4972), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_where] = ACTIONS(4972), + [anon_sym_object] = ACTIONS(4972), + [anon_sym_fun] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_get] = ACTIONS(4972), + [anon_sym_set] = ACTIONS(4972), + [anon_sym_this] = ACTIONS(4972), + [anon_sym_super] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [sym_label] = ACTIONS(4972), + [anon_sym_in] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4974), + [anon_sym_QMARK_COLON] = ACTIONS(4974), + [anon_sym_AMP_AMP] = ACTIONS(4974), + [anon_sym_PIPE_PIPE] = ACTIONS(4974), + [anon_sym_null] = ACTIONS(4972), + [anon_sym_if] = ACTIONS(4972), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_when] = ACTIONS(4972), + [anon_sym_try] = ACTIONS(4972), + [anon_sym_throw] = ACTIONS(4972), + [anon_sym_return] = ACTIONS(4972), + [anon_sym_continue] = ACTIONS(4972), + [anon_sym_break] = ACTIONS(4972), + [anon_sym_COLON_COLON] = ACTIONS(4974), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_PERCENT_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_BANGin] = ACTIONS(4974), + [anon_sym_is] = ACTIONS(4972), + [anon_sym_BANGis] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_as_QMARK] = ACTIONS(4974), + [anon_sym_PLUS_PLUS] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_BANG_BANG] = ACTIONS(4974), + [anon_sym_data] = ACTIONS(4972), + [anon_sym_inner] = ACTIONS(4972), + [anon_sym_value] = ACTIONS(4972), + [anon_sym_expect] = ACTIONS(4972), + [anon_sym_actual] = ACTIONS(4972), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4974), + [anon_sym_continue_AT] = ACTIONS(4974), + [anon_sym_break_AT] = ACTIONS(4974), + [anon_sym_this_AT] = ACTIONS(4974), + [anon_sym_super_AT] = ACTIONS(4974), + [sym_real_literal] = ACTIONS(4974), + [sym_integer_literal] = ACTIONS(4972), + [sym_hex_literal] = ACTIONS(4974), + [sym_bin_literal] = ACTIONS(4974), + [anon_sym_true] = ACTIONS(4972), + [anon_sym_false] = ACTIONS(4972), + [anon_sym_SQUOTE] = ACTIONS(4974), + [sym__backtick_identifier] = ACTIONS(4974), + [sym__automatic_semicolon] = ACTIONS(4974), + [sym_safe_nav] = ACTIONS(4974), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4974), }, [3158] = { - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(4415), - [anon_sym_object] = ACTIONS(4415), - [anon_sym_fun] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_this] = ACTIONS(4415), - [anon_sym_super] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [sym_label] = ACTIONS(4415), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_null] = ACTIONS(4415), - [anon_sym_if] = ACTIONS(4415), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_when] = ACTIONS(4415), - [anon_sym_try] = ACTIONS(4415), - [anon_sym_throw] = ACTIONS(4415), - [anon_sym_return] = ACTIONS(4415), - [anon_sym_continue] = ACTIONS(4415), - [anon_sym_break] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(4415), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4417), - [anon_sym_continue_AT] = ACTIONS(4417), - [anon_sym_break_AT] = ACTIONS(4417), - [anon_sym_this_AT] = ACTIONS(4417), - [anon_sym_super_AT] = ACTIONS(4417), - [sym_real_literal] = ACTIONS(4417), - [sym_integer_literal] = ACTIONS(4415), - [sym_hex_literal] = ACTIONS(4417), - [sym_bin_literal] = ACTIONS(4417), - [anon_sym_true] = ACTIONS(4415), - [anon_sym_false] = ACTIONS(4415), - [anon_sym_SQUOTE] = ACTIONS(4417), - [sym__backtick_identifier] = ACTIONS(4417), - [sym__automatic_semicolon] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4417), + [sym__alpha_identifier] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_where] = ACTIONS(4976), + [anon_sym_object] = ACTIONS(4976), + [anon_sym_fun] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_get] = ACTIONS(4976), + [anon_sym_set] = ACTIONS(4976), + [anon_sym_this] = ACTIONS(4976), + [anon_sym_super] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [sym_label] = ACTIONS(4976), + [anon_sym_in] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4978), + [anon_sym_QMARK_COLON] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_null] = ACTIONS(4976), + [anon_sym_if] = ACTIONS(4976), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_when] = ACTIONS(4976), + [anon_sym_try] = ACTIONS(4976), + [anon_sym_throw] = ACTIONS(4976), + [anon_sym_return] = ACTIONS(4976), + [anon_sym_continue] = ACTIONS(4976), + [anon_sym_break] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_BANGin] = ACTIONS(4978), + [anon_sym_is] = ACTIONS(4976), + [anon_sym_BANGis] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_as_QMARK] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_BANG_BANG] = ACTIONS(4978), + [anon_sym_data] = ACTIONS(4976), + [anon_sym_inner] = ACTIONS(4976), + [anon_sym_value] = ACTIONS(4976), + [anon_sym_expect] = ACTIONS(4976), + [anon_sym_actual] = ACTIONS(4976), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4978), + [anon_sym_continue_AT] = ACTIONS(4978), + [anon_sym_break_AT] = ACTIONS(4978), + [anon_sym_this_AT] = ACTIONS(4978), + [anon_sym_super_AT] = ACTIONS(4978), + [sym_real_literal] = ACTIONS(4978), + [sym_integer_literal] = ACTIONS(4976), + [sym_hex_literal] = ACTIONS(4978), + [sym_bin_literal] = ACTIONS(4978), + [anon_sym_true] = ACTIONS(4976), + [anon_sym_false] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4978), + [sym__backtick_identifier] = ACTIONS(4978), + [sym__automatic_semicolon] = ACTIONS(4978), + [sym_safe_nav] = ACTIONS(4978), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4978), }, [3159] = { - [sym__alpha_identifier] = ACTIONS(5209), - [anon_sym_AT] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_DOT] = ACTIONS(5209), - [anon_sym_as] = ACTIONS(5209), - [anon_sym_EQ] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_where] = ACTIONS(5209), - [anon_sym_object] = ACTIONS(5209), - [anon_sym_fun] = ACTIONS(5209), - [anon_sym_SEMI] = ACTIONS(5211), - [anon_sym_get] = ACTIONS(5209), - [anon_sym_set] = ACTIONS(5209), - [anon_sym_this] = ACTIONS(5209), - [anon_sym_super] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [sym_label] = ACTIONS(5209), - [anon_sym_in] = ACTIONS(5209), - [anon_sym_DOT_DOT] = ACTIONS(5211), - [anon_sym_QMARK_COLON] = ACTIONS(5211), - [anon_sym_AMP_AMP] = ACTIONS(5211), - [anon_sym_PIPE_PIPE] = ACTIONS(5211), - [anon_sym_null] = ACTIONS(5209), - [anon_sym_if] = ACTIONS(5209), - [anon_sym_else] = ACTIONS(5209), - [anon_sym_when] = ACTIONS(5209), - [anon_sym_try] = ACTIONS(5209), - [anon_sym_throw] = ACTIONS(5209), - [anon_sym_return] = ACTIONS(5209), - [anon_sym_continue] = ACTIONS(5209), - [anon_sym_break] = ACTIONS(5209), - [anon_sym_COLON_COLON] = ACTIONS(5211), - [anon_sym_PLUS_EQ] = ACTIONS(5211), - [anon_sym_DASH_EQ] = ACTIONS(5211), - [anon_sym_STAR_EQ] = ACTIONS(5211), - [anon_sym_SLASH_EQ] = ACTIONS(5211), - [anon_sym_PERCENT_EQ] = ACTIONS(5211), - [anon_sym_BANG_EQ] = ACTIONS(5209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), - [anon_sym_EQ_EQ] = ACTIONS(5209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), - [anon_sym_LT_EQ] = ACTIONS(5211), - [anon_sym_GT_EQ] = ACTIONS(5211), - [anon_sym_BANGin] = ACTIONS(5211), - [anon_sym_is] = ACTIONS(5209), - [anon_sym_BANGis] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_PERCENT] = ACTIONS(5209), - [anon_sym_as_QMARK] = ACTIONS(5211), - [anon_sym_PLUS_PLUS] = ACTIONS(5211), - [anon_sym_DASH_DASH] = ACTIONS(5211), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_BANG_BANG] = ACTIONS(5211), - [anon_sym_data] = ACTIONS(5209), - [anon_sym_inner] = ACTIONS(5209), - [anon_sym_value] = ACTIONS(5209), - [anon_sym_expect] = ACTIONS(5209), - [anon_sym_actual] = ACTIONS(5209), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5211), - [anon_sym_continue_AT] = ACTIONS(5211), - [anon_sym_break_AT] = ACTIONS(5211), - [anon_sym_this_AT] = ACTIONS(5211), - [anon_sym_super_AT] = ACTIONS(5211), - [sym_real_literal] = ACTIONS(5211), - [sym_integer_literal] = ACTIONS(5209), - [sym_hex_literal] = ACTIONS(5211), - [sym_bin_literal] = ACTIONS(5211), - [anon_sym_true] = ACTIONS(5209), - [anon_sym_false] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5211), - [sym__backtick_identifier] = ACTIONS(5211), - [sym__automatic_semicolon] = ACTIONS(5211), - [sym_safe_nav] = ACTIONS(5211), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5211), + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_object] = ACTIONS(5077), + [anon_sym_fun] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_this] = ACTIONS(5077), + [anon_sym_super] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5077), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_null] = ACTIONS(5077), + [anon_sym_if] = ACTIONS(5077), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_when] = ACTIONS(5077), + [anon_sym_try] = ACTIONS(5077), + [anon_sym_throw] = ACTIONS(5077), + [anon_sym_return] = ACTIONS(5077), + [anon_sym_continue] = ACTIONS(5077), + [anon_sym_break] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5079), + [anon_sym_continue_AT] = ACTIONS(5079), + [anon_sym_break_AT] = ACTIONS(5079), + [anon_sym_this_AT] = ACTIONS(5079), + [anon_sym_super_AT] = ACTIONS(5079), + [sym_real_literal] = ACTIONS(5079), + [sym_integer_literal] = ACTIONS(5077), + [sym_hex_literal] = ACTIONS(5079), + [sym_bin_literal] = ACTIONS(5079), + [anon_sym_true] = ACTIONS(5077), + [anon_sym_false] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5079), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5079), }, [3160] = { - [sym__alpha_identifier] = ACTIONS(5117), - [anon_sym_AT] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_as] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(5117), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_RBRACE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_where] = ACTIONS(5117), - [anon_sym_object] = ACTIONS(5117), - [anon_sym_fun] = ACTIONS(5117), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_get] = ACTIONS(5117), - [anon_sym_set] = ACTIONS(5117), - [anon_sym_this] = ACTIONS(5117), - [anon_sym_super] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [sym_label] = ACTIONS(5117), - [anon_sym_in] = ACTIONS(5117), - [anon_sym_DOT_DOT] = ACTIONS(5119), - [anon_sym_QMARK_COLON] = ACTIONS(5119), - [anon_sym_AMP_AMP] = ACTIONS(5119), - [anon_sym_PIPE_PIPE] = ACTIONS(5119), - [anon_sym_null] = ACTIONS(5117), - [anon_sym_if] = ACTIONS(5117), - [anon_sym_else] = ACTIONS(5117), - [anon_sym_when] = ACTIONS(5117), - [anon_sym_try] = ACTIONS(5117), - [anon_sym_throw] = ACTIONS(5117), - [anon_sym_return] = ACTIONS(5117), - [anon_sym_continue] = ACTIONS(5117), - [anon_sym_break] = ACTIONS(5117), - [anon_sym_COLON_COLON] = ACTIONS(5119), - [anon_sym_PLUS_EQ] = ACTIONS(5119), - [anon_sym_DASH_EQ] = ACTIONS(5119), - [anon_sym_STAR_EQ] = ACTIONS(5119), - [anon_sym_SLASH_EQ] = ACTIONS(5119), - [anon_sym_PERCENT_EQ] = ACTIONS(5119), - [anon_sym_BANG_EQ] = ACTIONS(5117), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), - [anon_sym_EQ_EQ] = ACTIONS(5117), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), - [anon_sym_LT_EQ] = ACTIONS(5119), - [anon_sym_GT_EQ] = ACTIONS(5119), - [anon_sym_BANGin] = ACTIONS(5119), - [anon_sym_is] = ACTIONS(5117), - [anon_sym_BANGis] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_PERCENT] = ACTIONS(5117), - [anon_sym_as_QMARK] = ACTIONS(5119), - [anon_sym_PLUS_PLUS] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5119), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_BANG_BANG] = ACTIONS(5119), - [anon_sym_data] = ACTIONS(5117), - [anon_sym_inner] = ACTIONS(5117), - [anon_sym_value] = ACTIONS(5117), - [anon_sym_expect] = ACTIONS(5117), - [anon_sym_actual] = ACTIONS(5117), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5119), - [anon_sym_continue_AT] = ACTIONS(5119), - [anon_sym_break_AT] = ACTIONS(5119), - [anon_sym_this_AT] = ACTIONS(5119), - [anon_sym_super_AT] = ACTIONS(5119), - [sym_real_literal] = ACTIONS(5119), - [sym_integer_literal] = ACTIONS(5117), - [sym_hex_literal] = ACTIONS(5119), - [sym_bin_literal] = ACTIONS(5119), - [anon_sym_true] = ACTIONS(5117), - [anon_sym_false] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5119), - [sym__backtick_identifier] = ACTIONS(5119), - [sym__automatic_semicolon] = ACTIONS(5119), - [sym_safe_nav] = ACTIONS(5119), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5119), + [sym__alpha_identifier] = ACTIONS(5053), + [anon_sym_AT] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_DOT] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(5053), + [anon_sym_LBRACE] = ACTIONS(5055), + [anon_sym_RBRACE] = ACTIONS(5055), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_where] = ACTIONS(5053), + [anon_sym_object] = ACTIONS(5053), + [anon_sym_fun] = ACTIONS(5053), + [anon_sym_SEMI] = ACTIONS(5055), + [anon_sym_get] = ACTIONS(5053), + [anon_sym_set] = ACTIONS(5053), + [anon_sym_this] = ACTIONS(5053), + [anon_sym_super] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [sym_label] = ACTIONS(5053), + [anon_sym_in] = ACTIONS(5053), + [anon_sym_DOT_DOT] = ACTIONS(5055), + [anon_sym_QMARK_COLON] = ACTIONS(5055), + [anon_sym_AMP_AMP] = ACTIONS(5055), + [anon_sym_PIPE_PIPE] = ACTIONS(5055), + [anon_sym_null] = ACTIONS(5053), + [anon_sym_if] = ACTIONS(5053), + [anon_sym_else] = ACTIONS(5053), + [anon_sym_when] = ACTIONS(5053), + [anon_sym_try] = ACTIONS(5053), + [anon_sym_throw] = ACTIONS(5053), + [anon_sym_return] = ACTIONS(5053), + [anon_sym_continue] = ACTIONS(5053), + [anon_sym_break] = ACTIONS(5053), + [anon_sym_COLON_COLON] = ACTIONS(5055), + [anon_sym_PLUS_EQ] = ACTIONS(5055), + [anon_sym_DASH_EQ] = ACTIONS(5055), + [anon_sym_STAR_EQ] = ACTIONS(5055), + [anon_sym_SLASH_EQ] = ACTIONS(5055), + [anon_sym_PERCENT_EQ] = ACTIONS(5055), + [anon_sym_BANG_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5055), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5055), + [anon_sym_BANGin] = ACTIONS(5055), + [anon_sym_is] = ACTIONS(5053), + [anon_sym_BANGis] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5053), + [anon_sym_as_QMARK] = ACTIONS(5055), + [anon_sym_PLUS_PLUS] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5055), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_BANG_BANG] = ACTIONS(5055), + [anon_sym_data] = ACTIONS(5053), + [anon_sym_inner] = ACTIONS(5053), + [anon_sym_value] = ACTIONS(5053), + [anon_sym_expect] = ACTIONS(5053), + [anon_sym_actual] = ACTIONS(5053), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5055), + [anon_sym_continue_AT] = ACTIONS(5055), + [anon_sym_break_AT] = ACTIONS(5055), + [anon_sym_this_AT] = ACTIONS(5055), + [anon_sym_super_AT] = ACTIONS(5055), + [sym_real_literal] = ACTIONS(5055), + [sym_integer_literal] = ACTIONS(5053), + [sym_hex_literal] = ACTIONS(5055), + [sym_bin_literal] = ACTIONS(5055), + [anon_sym_true] = ACTIONS(5053), + [anon_sym_false] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5055), + [sym__backtick_identifier] = ACTIONS(5055), + [sym__automatic_semicolon] = ACTIONS(5055), + [sym_safe_nav] = ACTIONS(5055), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5055), }, [3161] = { - [sym__alpha_identifier] = ACTIONS(5125), - [anon_sym_AT] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_DOT] = ACTIONS(5125), - [anon_sym_as] = ACTIONS(5125), - [anon_sym_EQ] = ACTIONS(5125), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_RBRACE] = ACTIONS(5127), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_where] = ACTIONS(5125), - [anon_sym_object] = ACTIONS(5125), - [anon_sym_fun] = ACTIONS(5125), - [anon_sym_SEMI] = ACTIONS(5127), - [anon_sym_get] = ACTIONS(5125), - [anon_sym_set] = ACTIONS(5125), - [anon_sym_this] = ACTIONS(5125), - [anon_sym_super] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [sym_label] = ACTIONS(5125), - [anon_sym_in] = ACTIONS(5125), - [anon_sym_DOT_DOT] = ACTIONS(5127), - [anon_sym_QMARK_COLON] = ACTIONS(5127), - [anon_sym_AMP_AMP] = ACTIONS(5127), - [anon_sym_PIPE_PIPE] = ACTIONS(5127), - [anon_sym_null] = ACTIONS(5125), - [anon_sym_if] = ACTIONS(5125), - [anon_sym_else] = ACTIONS(5125), - [anon_sym_when] = ACTIONS(5125), - [anon_sym_try] = ACTIONS(5125), - [anon_sym_throw] = ACTIONS(5125), - [anon_sym_return] = ACTIONS(5125), - [anon_sym_continue] = ACTIONS(5125), - [anon_sym_break] = ACTIONS(5125), - [anon_sym_COLON_COLON] = ACTIONS(5127), - [anon_sym_PLUS_EQ] = ACTIONS(5127), - [anon_sym_DASH_EQ] = ACTIONS(5127), - [anon_sym_STAR_EQ] = ACTIONS(5127), - [anon_sym_SLASH_EQ] = ACTIONS(5127), - [anon_sym_PERCENT_EQ] = ACTIONS(5127), - [anon_sym_BANG_EQ] = ACTIONS(5125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), - [anon_sym_EQ_EQ] = ACTIONS(5125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), - [anon_sym_LT_EQ] = ACTIONS(5127), - [anon_sym_GT_EQ] = ACTIONS(5127), - [anon_sym_BANGin] = ACTIONS(5127), - [anon_sym_is] = ACTIONS(5125), - [anon_sym_BANGis] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_PERCENT] = ACTIONS(5125), - [anon_sym_as_QMARK] = ACTIONS(5127), - [anon_sym_PLUS_PLUS] = ACTIONS(5127), - [anon_sym_DASH_DASH] = ACTIONS(5127), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_BANG_BANG] = ACTIONS(5127), - [anon_sym_data] = ACTIONS(5125), - [anon_sym_inner] = ACTIONS(5125), - [anon_sym_value] = ACTIONS(5125), - [anon_sym_expect] = ACTIONS(5125), - [anon_sym_actual] = ACTIONS(5125), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5127), - [anon_sym_continue_AT] = ACTIONS(5127), - [anon_sym_break_AT] = ACTIONS(5127), - [anon_sym_this_AT] = ACTIONS(5127), - [anon_sym_super_AT] = ACTIONS(5127), - [sym_real_literal] = ACTIONS(5127), - [sym_integer_literal] = ACTIONS(5125), - [sym_hex_literal] = ACTIONS(5127), - [sym_bin_literal] = ACTIONS(5127), - [anon_sym_true] = ACTIONS(5125), - [anon_sym_false] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5127), - [sym__backtick_identifier] = ACTIONS(5127), - [sym__automatic_semicolon] = ACTIONS(5127), - [sym_safe_nav] = ACTIONS(5127), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5127), + [sym__alpha_identifier] = ACTIONS(4980), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_as] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_where] = ACTIONS(4980), + [anon_sym_object] = ACTIONS(4980), + [anon_sym_fun] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(4980), + [anon_sym_set] = ACTIONS(4980), + [anon_sym_this] = ACTIONS(4980), + [anon_sym_super] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [sym_label] = ACTIONS(4980), + [anon_sym_in] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4982), + [anon_sym_QMARK_COLON] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_null] = ACTIONS(4980), + [anon_sym_if] = ACTIONS(4980), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_when] = ACTIONS(4980), + [anon_sym_try] = ACTIONS(4980), + [anon_sym_throw] = ACTIONS(4980), + [anon_sym_return] = ACTIONS(4980), + [anon_sym_continue] = ACTIONS(4980), + [anon_sym_break] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_BANGin] = ACTIONS(4982), + [anon_sym_is] = ACTIONS(4980), + [anon_sym_BANGis] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_as_QMARK] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_BANG_BANG] = ACTIONS(4982), + [anon_sym_data] = ACTIONS(4980), + [anon_sym_inner] = ACTIONS(4980), + [anon_sym_value] = ACTIONS(4980), + [anon_sym_expect] = ACTIONS(4980), + [anon_sym_actual] = ACTIONS(4980), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4982), + [anon_sym_continue_AT] = ACTIONS(4982), + [anon_sym_break_AT] = ACTIONS(4982), + [anon_sym_this_AT] = ACTIONS(4982), + [anon_sym_super_AT] = ACTIONS(4982), + [sym_real_literal] = ACTIONS(4982), + [sym_integer_literal] = ACTIONS(4980), + [sym_hex_literal] = ACTIONS(4982), + [sym_bin_literal] = ACTIONS(4982), + [anon_sym_true] = ACTIONS(4980), + [anon_sym_false] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4982), + [sym__backtick_identifier] = ACTIONS(4982), + [sym__automatic_semicolon] = ACTIONS(4982), + [sym_safe_nav] = ACTIONS(4982), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4982), }, [3162] = { - [sym__alpha_identifier] = ACTIONS(4212), - [anon_sym_AT] = ACTIONS(4214), - [anon_sym_LBRACK] = ACTIONS(4214), - [anon_sym_DOT] = ACTIONS(4212), - [anon_sym_as] = ACTIONS(4212), - [anon_sym_EQ] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4214), - [anon_sym_LPAREN] = ACTIONS(4214), - [anon_sym_COMMA] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4212), - [anon_sym_GT] = ACTIONS(4212), - [anon_sym_where] = ACTIONS(4212), - [anon_sym_object] = ACTIONS(4212), - [anon_sym_fun] = ACTIONS(4212), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym_get] = ACTIONS(4212), - [anon_sym_set] = ACTIONS(4212), - [anon_sym_this] = ACTIONS(4212), - [anon_sym_super] = ACTIONS(4212), - [anon_sym_STAR] = ACTIONS(4212), - [sym_label] = ACTIONS(4212), - [anon_sym_in] = ACTIONS(4212), - [anon_sym_DOT_DOT] = ACTIONS(4214), - [anon_sym_QMARK_COLON] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_null] = ACTIONS(4212), - [anon_sym_if] = ACTIONS(4212), - [anon_sym_else] = ACTIONS(4212), - [anon_sym_when] = ACTIONS(4212), - [anon_sym_try] = ACTIONS(4212), - [anon_sym_throw] = ACTIONS(4212), - [anon_sym_return] = ACTIONS(4212), - [anon_sym_continue] = ACTIONS(4212), - [anon_sym_break] = ACTIONS(4212), - [anon_sym_COLON_COLON] = ACTIONS(4214), - [anon_sym_PLUS_EQ] = ACTIONS(4214), - [anon_sym_DASH_EQ] = ACTIONS(4214), - [anon_sym_STAR_EQ] = ACTIONS(4214), - [anon_sym_SLASH_EQ] = ACTIONS(4214), - [anon_sym_PERCENT_EQ] = ACTIONS(4214), - [anon_sym_BANG_EQ] = ACTIONS(4212), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4214), - [anon_sym_EQ_EQ] = ACTIONS(4212), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4214), - [anon_sym_LT_EQ] = ACTIONS(4214), - [anon_sym_GT_EQ] = ACTIONS(4214), - [anon_sym_BANGin] = ACTIONS(4214), - [anon_sym_is] = ACTIONS(4212), - [anon_sym_BANGis] = ACTIONS(4214), - [anon_sym_PLUS] = ACTIONS(4212), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_SLASH] = ACTIONS(4212), - [anon_sym_PERCENT] = ACTIONS(4212), - [anon_sym_as_QMARK] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4214), - [anon_sym_DASH_DASH] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4212), - [anon_sym_BANG_BANG] = ACTIONS(4214), - [anon_sym_data] = ACTIONS(4212), - [anon_sym_inner] = ACTIONS(4212), - [anon_sym_value] = ACTIONS(4212), - [anon_sym_expect] = ACTIONS(4212), - [anon_sym_actual] = ACTIONS(4212), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4214), - [anon_sym_continue_AT] = ACTIONS(4214), - [anon_sym_break_AT] = ACTIONS(4214), - [anon_sym_this_AT] = ACTIONS(4214), - [anon_sym_super_AT] = ACTIONS(4214), - [sym_real_literal] = ACTIONS(4214), - [sym_integer_literal] = ACTIONS(4212), - [sym_hex_literal] = ACTIONS(4214), - [sym_bin_literal] = ACTIONS(4214), - [anon_sym_true] = ACTIONS(4212), - [anon_sym_false] = ACTIONS(4212), - [anon_sym_SQUOTE] = ACTIONS(4214), - [sym__backtick_identifier] = ACTIONS(4214), - [sym__automatic_semicolon] = ACTIONS(4214), - [sym_safe_nav] = ACTIONS(4214), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4214), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, [3163] = { - [sym_class_body] = STATE(3202), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(6647), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_EQ] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_object] = ACTIONS(4405), - [anon_sym_fun] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_this] = ACTIONS(4405), - [anon_sym_super] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4405), - [sym_label] = ACTIONS(4405), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_when] = ACTIONS(4405), - [anon_sym_try] = ACTIONS(4405), - [anon_sym_throw] = ACTIONS(4405), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_continue] = ACTIONS(4405), - [anon_sym_break] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_PLUS_EQ] = ACTIONS(4407), - [anon_sym_DASH_EQ] = ACTIONS(4407), - [anon_sym_STAR_EQ] = ACTIONS(4407), - [anon_sym_SLASH_EQ] = ACTIONS(4407), - [anon_sym_PERCENT_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4405), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4405), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4407), - [anon_sym_continue_AT] = ACTIONS(4407), - [anon_sym_break_AT] = ACTIONS(4407), - [anon_sym_this_AT] = ACTIONS(4407), - [anon_sym_super_AT] = ACTIONS(4407), - [sym_real_literal] = ACTIONS(4407), - [sym_integer_literal] = ACTIONS(4405), - [sym_hex_literal] = ACTIONS(4407), - [sym_bin_literal] = ACTIONS(4407), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4407), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4407), + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_as] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_where] = ACTIONS(4984), + [anon_sym_object] = ACTIONS(4984), + [anon_sym_fun] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_get] = ACTIONS(4984), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_this] = ACTIONS(4984), + [anon_sym_super] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [sym_label] = ACTIONS(4984), + [anon_sym_in] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4986), + [anon_sym_QMARK_COLON] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_null] = ACTIONS(4984), + [anon_sym_if] = ACTIONS(4984), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_when] = ACTIONS(4984), + [anon_sym_try] = ACTIONS(4984), + [anon_sym_throw] = ACTIONS(4984), + [anon_sym_return] = ACTIONS(4984), + [anon_sym_continue] = ACTIONS(4984), + [anon_sym_break] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_BANGin] = ACTIONS(4986), + [anon_sym_is] = ACTIONS(4984), + [anon_sym_BANGis] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_as_QMARK] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_BANG_BANG] = ACTIONS(4986), + [anon_sym_data] = ACTIONS(4984), + [anon_sym_inner] = ACTIONS(4984), + [anon_sym_value] = ACTIONS(4984), + [anon_sym_expect] = ACTIONS(4984), + [anon_sym_actual] = ACTIONS(4984), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4986), + [anon_sym_continue_AT] = ACTIONS(4986), + [anon_sym_break_AT] = ACTIONS(4986), + [anon_sym_this_AT] = ACTIONS(4986), + [anon_sym_super_AT] = ACTIONS(4986), + [sym_real_literal] = ACTIONS(4986), + [sym_integer_literal] = ACTIONS(4984), + [sym_hex_literal] = ACTIONS(4986), + [sym_bin_literal] = ACTIONS(4986), + [anon_sym_true] = ACTIONS(4984), + [anon_sym_false] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4986), + [sym__backtick_identifier] = ACTIONS(4986), + [sym__automatic_semicolon] = ACTIONS(4986), + [sym_safe_nav] = ACTIONS(4986), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4986), }, [3164] = { - [aux_sym_nullable_type_repeat1] = STATE(3180), - [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(6649), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4250), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_object] = ACTIONS(4343), + [anon_sym_fun] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_this] = ACTIONS(4343), + [anon_sym_super] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_null] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4345), + [anon_sym_continue_AT] = ACTIONS(4345), + [anon_sym_break_AT] = ACTIONS(4345), + [anon_sym_this_AT] = ACTIONS(4345), + [anon_sym_super_AT] = ACTIONS(4345), + [sym_real_literal] = ACTIONS(4345), + [sym_integer_literal] = ACTIONS(4343), + [sym_hex_literal] = ACTIONS(4345), + [sym_bin_literal] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [anon_sym_SQUOTE] = ACTIONS(4345), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4345), }, [3165] = { - [sym__alpha_identifier] = ACTIONS(4499), - [anon_sym_AT] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_RBRACK] = ACTIONS(4501), - [anon_sym_DOT] = ACTIONS(4499), - [anon_sym_as] = ACTIONS(4499), - [anon_sym_EQ] = ACTIONS(4499), - [anon_sym_LBRACE] = ACTIONS(4501), - [anon_sym_RBRACE] = ACTIONS(4501), - [anon_sym_LPAREN] = ACTIONS(4501), - [anon_sym_COMMA] = ACTIONS(4501), - [anon_sym_RPAREN] = ACTIONS(4501), - [anon_sym_LT] = ACTIONS(4499), - [anon_sym_GT] = ACTIONS(4499), - [anon_sym_where] = ACTIONS(4499), - [anon_sym_SEMI] = ACTIONS(4501), - [anon_sym_get] = ACTIONS(4499), - [anon_sym_set] = ACTIONS(4499), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_DASH_GT] = ACTIONS(4501), - [sym_label] = ACTIONS(4501), - [anon_sym_in] = ACTIONS(4499), - [anon_sym_while] = ACTIONS(4499), - [anon_sym_DOT_DOT] = ACTIONS(4501), - [anon_sym_QMARK_COLON] = ACTIONS(4501), - [anon_sym_AMP_AMP] = ACTIONS(4501), - [anon_sym_PIPE_PIPE] = ACTIONS(4501), - [anon_sym_else] = ACTIONS(4499), - [anon_sym_COLON_COLON] = ACTIONS(4501), - [anon_sym_PLUS_EQ] = ACTIONS(4501), - [anon_sym_DASH_EQ] = ACTIONS(4501), - [anon_sym_STAR_EQ] = ACTIONS(4501), - [anon_sym_SLASH_EQ] = ACTIONS(4501), - [anon_sym_PERCENT_EQ] = ACTIONS(4501), - [anon_sym_BANG_EQ] = ACTIONS(4499), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4501), - [anon_sym_EQ_EQ] = ACTIONS(4499), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4501), - [anon_sym_LT_EQ] = ACTIONS(4501), - [anon_sym_GT_EQ] = ACTIONS(4501), - [anon_sym_BANGin] = ACTIONS(4501), - [anon_sym_is] = ACTIONS(4499), - [anon_sym_BANGis] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(4499), - [anon_sym_DASH] = ACTIONS(4499), - [anon_sym_SLASH] = ACTIONS(4499), - [anon_sym_PERCENT] = ACTIONS(4499), - [anon_sym_as_QMARK] = ACTIONS(4501), - [anon_sym_PLUS_PLUS] = ACTIONS(4501), - [anon_sym_DASH_DASH] = ACTIONS(4501), - [anon_sym_BANG_BANG] = ACTIONS(4501), - [anon_sym_suspend] = ACTIONS(4499), - [anon_sym_sealed] = ACTIONS(4499), - [anon_sym_annotation] = ACTIONS(4499), - [anon_sym_data] = ACTIONS(4499), - [anon_sym_inner] = ACTIONS(4499), - [anon_sym_value] = ACTIONS(4499), - [anon_sym_override] = ACTIONS(4499), - [anon_sym_lateinit] = ACTIONS(4499), - [anon_sym_public] = ACTIONS(4499), - [anon_sym_private] = ACTIONS(4499), - [anon_sym_internal] = ACTIONS(4499), - [anon_sym_protected] = ACTIONS(4499), - [anon_sym_tailrec] = ACTIONS(4499), - [anon_sym_operator] = ACTIONS(4499), - [anon_sym_infix] = ACTIONS(4499), - [anon_sym_inline] = ACTIONS(4499), - [anon_sym_external] = ACTIONS(4499), - [sym_property_modifier] = ACTIONS(4499), - [anon_sym_abstract] = ACTIONS(4499), - [anon_sym_final] = ACTIONS(4499), - [anon_sym_open] = ACTIONS(4499), - [anon_sym_vararg] = ACTIONS(4499), - [anon_sym_noinline] = ACTIONS(4499), - [anon_sym_crossinline] = ACTIONS(4499), - [anon_sym_expect] = ACTIONS(4499), - [anon_sym_actual] = ACTIONS(4499), - [sym_line_comment] = ACTIONS(3), - [aux_sym_unsigned_literal_token1] = ACTIONS(6651), - [anon_sym_L] = ACTIONS(6653), - [sym__backtick_identifier] = ACTIONS(4501), - [sym_safe_nav] = ACTIONS(4501), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_object] = ACTIONS(4331), + [anon_sym_fun] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_this] = ACTIONS(4331), + [anon_sym_super] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_null] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4333), + [anon_sym_continue_AT] = ACTIONS(4333), + [anon_sym_break_AT] = ACTIONS(4333), + [anon_sym_this_AT] = ACTIONS(4333), + [anon_sym_super_AT] = ACTIONS(4333), + [sym_real_literal] = ACTIONS(4333), + [sym_integer_literal] = ACTIONS(4331), + [sym_hex_literal] = ACTIONS(4333), + [sym_bin_literal] = ACTIONS(4333), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4333), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4333), }, [3166] = { - [sym__alpha_identifier] = ACTIONS(1429), - [anon_sym_AT] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(1429), - [anon_sym_fun] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1429), - [anon_sym_set] = ACTIONS(1429), - [anon_sym_this] = ACTIONS(1429), - [anon_sym_super] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [sym_label] = ACTIONS(1429), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_null] = ACTIONS(1429), - [anon_sym_if] = ACTIONS(1429), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_when] = ACTIONS(1429), - [anon_sym_try] = ACTIONS(1429), - [anon_sym_throw] = ACTIONS(1429), - [anon_sym_return] = ACTIONS(1429), - [anon_sym_continue] = ACTIONS(1429), - [anon_sym_break] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_data] = ACTIONS(1429), - [anon_sym_inner] = ACTIONS(1429), - [anon_sym_value] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1429), - [anon_sym_actual] = ACTIONS(1429), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1427), - [anon_sym_continue_AT] = ACTIONS(1427), - [anon_sym_break_AT] = ACTIONS(1427), - [anon_sym_this_AT] = ACTIONS(1427), - [anon_sym_super_AT] = ACTIONS(1427), - [sym_real_literal] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1429), - [sym_hex_literal] = ACTIONS(1427), - [sym_bin_literal] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1429), - [anon_sym_false] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1427), - [sym__backtick_identifier] = ACTIONS(1427), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1427), - }, - [3167] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(4999), - [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_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_value] = ACTIONS(4999), - [anon_sym_expect] = ACTIONS(4999), - [anon_sym_actual] = ACTIONS(4999), + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_fun] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_this] = ACTIONS(3296), + [anon_sym_super] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3296), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_when] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_data] = ACTIONS(3296), + [anon_sym_inner] = ACTIONS(3296), + [anon_sym_value] = ACTIONS(3296), + [anon_sym_expect] = ACTIONS(3296), + [anon_sym_actual] = ACTIONS(3296), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5001), - [anon_sym_continue_AT] = ACTIONS(5001), - [anon_sym_break_AT] = ACTIONS(5001), - [anon_sym_this_AT] = ACTIONS(5001), - [anon_sym_super_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), + [anon_sym_return_AT] = ACTIONS(3298), + [anon_sym_continue_AT] = ACTIONS(3298), + [anon_sym_break_AT] = ACTIONS(3298), + [anon_sym_this_AT] = ACTIONS(3298), + [anon_sym_super_AT] = ACTIONS(3298), + [sym_real_literal] = ACTIONS(3298), + [sym_integer_literal] = ACTIONS(3296), + [sym_hex_literal] = ACTIONS(3298), + [sym_bin_literal] = ACTIONS(3298), + [anon_sym_true] = ACTIONS(3296), + [anon_sym_false] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5001), + [sym__string_start] = ACTIONS(3298), + }, + [3167] = { + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4232), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, [3168] = { - [sym__alpha_identifier] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_EQ] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_object] = ACTIONS(4104), - [anon_sym_fun] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_get] = ACTIONS(4104), - [anon_sym_set] = ACTIONS(4104), - [anon_sym_this] = ACTIONS(4104), - [anon_sym_super] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [sym_label] = ACTIONS(4104), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_QMARK_COLON] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_null] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_else] = ACTIONS(4104), - [anon_sym_when] = ACTIONS(4104), - [anon_sym_try] = ACTIONS(4104), - [anon_sym_throw] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_BANGin] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_BANGis] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_as_QMARK] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4104), - [anon_sym_BANG_BANG] = ACTIONS(4106), - [anon_sym_data] = ACTIONS(4104), - [anon_sym_inner] = ACTIONS(4104), - [anon_sym_value] = ACTIONS(4104), - [anon_sym_expect] = ACTIONS(4104), - [anon_sym_actual] = ACTIONS(4104), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4106), - [anon_sym_continue_AT] = ACTIONS(4106), - [anon_sym_break_AT] = ACTIONS(4106), - [anon_sym_this_AT] = ACTIONS(4106), - [anon_sym_super_AT] = ACTIONS(4106), - [sym_real_literal] = ACTIONS(4106), - [sym_integer_literal] = ACTIONS(4104), - [sym_hex_literal] = ACTIONS(4106), - [sym_bin_literal] = ACTIONS(4106), - [anon_sym_true] = ACTIONS(4104), - [anon_sym_false] = ACTIONS(4104), - [anon_sym_SQUOTE] = ACTIONS(4106), - [sym__backtick_identifier] = ACTIONS(4106), - [sym__automatic_semicolon] = ACTIONS(4106), - [sym_safe_nav] = ACTIONS(4106), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4106), + [sym__alpha_identifier] = ACTIONS(4158), + [anon_sym_AT] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_RBRACK] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4158), + [anon_sym_EQ] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(4160), + [anon_sym_COMMA] = ACTIONS(4160), + [anon_sym_RPAREN] = ACTIONS(4160), + [anon_sym_by] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4158), + [anon_sym_GT] = ACTIONS(4158), + [anon_sym_where] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym_get] = ACTIONS(4158), + [anon_sym_set] = ACTIONS(4158), + [sym__quest] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4158), + [anon_sym_while] = ACTIONS(4158), + [anon_sym_DOT_DOT] = ACTIONS(4160), + [anon_sym_QMARK_COLON] = ACTIONS(4160), + [anon_sym_AMP_AMP] = ACTIONS(4160), + [anon_sym_PIPE_PIPE] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(4160), + [anon_sym_PLUS_EQ] = ACTIONS(4160), + [anon_sym_DASH_EQ] = ACTIONS(4160), + [anon_sym_STAR_EQ] = ACTIONS(4160), + [anon_sym_SLASH_EQ] = ACTIONS(4160), + [anon_sym_PERCENT_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4160), + [anon_sym_LT_EQ] = ACTIONS(4160), + [anon_sym_GT_EQ] = ACTIONS(4160), + [anon_sym_BANGin] = ACTIONS(4160), + [anon_sym_is] = ACTIONS(4158), + [anon_sym_BANGis] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_SLASH] = ACTIONS(4158), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4160), + [anon_sym_PLUS_PLUS] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4160), + [anon_sym_suspend] = ACTIONS(4158), + [anon_sym_sealed] = ACTIONS(4158), + [anon_sym_annotation] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4158), + [anon_sym_inner] = ACTIONS(4158), + [anon_sym_value] = ACTIONS(4158), + [anon_sym_override] = ACTIONS(4158), + [anon_sym_lateinit] = ACTIONS(4158), + [anon_sym_public] = ACTIONS(4158), + [anon_sym_private] = ACTIONS(4158), + [anon_sym_internal] = ACTIONS(4158), + [anon_sym_protected] = ACTIONS(4158), + [anon_sym_tailrec] = ACTIONS(4158), + [anon_sym_operator] = ACTIONS(4158), + [anon_sym_infix] = ACTIONS(4158), + [anon_sym_inline] = ACTIONS(4158), + [anon_sym_external] = ACTIONS(4158), + [sym_property_modifier] = ACTIONS(4158), + [anon_sym_abstract] = ACTIONS(4158), + [anon_sym_final] = ACTIONS(4158), + [anon_sym_open] = ACTIONS(4158), + [anon_sym_vararg] = ACTIONS(4158), + [anon_sym_noinline] = ACTIONS(4158), + [anon_sym_crossinline] = ACTIONS(4158), + [anon_sym_expect] = ACTIONS(4158), + [anon_sym_actual] = ACTIONS(4158), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4160), + [sym_safe_nav] = ACTIONS(4160), + [sym_multiline_comment] = ACTIONS(3), }, [3169] = { - [sym__alpha_identifier] = ACTIONS(5055), - [anon_sym_AT] = ACTIONS(5057), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5055), - [anon_sym_as] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5057), - [anon_sym_RBRACE] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5057), - [anon_sym_COMMA] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5055), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_where] = ACTIONS(5055), - [anon_sym_object] = ACTIONS(5055), - [anon_sym_fun] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5057), - [anon_sym_get] = ACTIONS(5055), - [anon_sym_set] = ACTIONS(5055), - [anon_sym_this] = ACTIONS(5055), - [anon_sym_super] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [sym_label] = ACTIONS(5055), - [anon_sym_in] = ACTIONS(5055), - [anon_sym_DOT_DOT] = ACTIONS(5057), - [anon_sym_QMARK_COLON] = ACTIONS(5057), - [anon_sym_AMP_AMP] = ACTIONS(5057), - [anon_sym_PIPE_PIPE] = ACTIONS(5057), - [anon_sym_null] = ACTIONS(5055), - [anon_sym_if] = ACTIONS(5055), - [anon_sym_else] = ACTIONS(5055), - [anon_sym_when] = ACTIONS(5055), - [anon_sym_try] = ACTIONS(5055), - [anon_sym_throw] = ACTIONS(5055), - [anon_sym_return] = ACTIONS(5055), - [anon_sym_continue] = ACTIONS(5055), - [anon_sym_break] = ACTIONS(5055), - [anon_sym_COLON_COLON] = ACTIONS(5057), - [anon_sym_PLUS_EQ] = ACTIONS(5057), - [anon_sym_DASH_EQ] = ACTIONS(5057), - [anon_sym_STAR_EQ] = ACTIONS(5057), - [anon_sym_SLASH_EQ] = ACTIONS(5057), - [anon_sym_PERCENT_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ] = ACTIONS(5055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5057), - [anon_sym_LT_EQ] = ACTIONS(5057), - [anon_sym_GT_EQ] = ACTIONS(5057), - [anon_sym_BANGin] = ACTIONS(5057), - [anon_sym_is] = ACTIONS(5055), - [anon_sym_BANGis] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_as_QMARK] = ACTIONS(5057), - [anon_sym_PLUS_PLUS] = ACTIONS(5057), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5055), - [anon_sym_BANG_BANG] = ACTIONS(5057), - [anon_sym_data] = ACTIONS(5055), - [anon_sym_inner] = ACTIONS(5055), - [anon_sym_value] = ACTIONS(5055), - [anon_sym_expect] = ACTIONS(5055), - [anon_sym_actual] = ACTIONS(5055), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5057), - [anon_sym_continue_AT] = ACTIONS(5057), - [anon_sym_break_AT] = ACTIONS(5057), - [anon_sym_this_AT] = ACTIONS(5057), - [anon_sym_super_AT] = ACTIONS(5057), - [sym_real_literal] = ACTIONS(5057), - [sym_integer_literal] = ACTIONS(5055), - [sym_hex_literal] = ACTIONS(5057), - [sym_bin_literal] = ACTIONS(5057), - [anon_sym_true] = ACTIONS(5055), - [anon_sym_false] = ACTIONS(5055), - [anon_sym_SQUOTE] = ACTIONS(5057), - [sym__backtick_identifier] = ACTIONS(5057), - [sym__automatic_semicolon] = ACTIONS(5057), - [sym_safe_nav] = ACTIONS(5057), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5057), + [sym_class_body] = STATE(3209), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_fun] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_this] = ACTIONS(4325), + [anon_sym_super] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_when] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_PLUS_EQ] = ACTIONS(4327), + [anon_sym_DASH_EQ] = ACTIONS(4327), + [anon_sym_STAR_EQ] = ACTIONS(4327), + [anon_sym_SLASH_EQ] = ACTIONS(4327), + [anon_sym_PERCENT_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4325), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4327), + [anon_sym_continue_AT] = ACTIONS(4327), + [anon_sym_break_AT] = ACTIONS(4327), + [anon_sym_this_AT] = ACTIONS(4327), + [anon_sym_super_AT] = ACTIONS(4327), + [sym_real_literal] = ACTIONS(4327), + [sym_integer_literal] = ACTIONS(4325), + [sym_hex_literal] = ACTIONS(4327), + [sym_bin_literal] = ACTIONS(4327), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4327), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4327), }, [3170] = { - [sym__alpha_identifier] = ACTIONS(4932), - [anon_sym_AT] = ACTIONS(4934), - [anon_sym_LBRACK] = ACTIONS(4934), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_as] = ACTIONS(4932), - [anon_sym_EQ] = ACTIONS(4932), - [anon_sym_LBRACE] = ACTIONS(4934), - [anon_sym_RBRACE] = ACTIONS(4934), - [anon_sym_LPAREN] = ACTIONS(4934), - [anon_sym_COMMA] = ACTIONS(4934), - [anon_sym_LT] = ACTIONS(4932), - [anon_sym_GT] = ACTIONS(4932), - [anon_sym_where] = ACTIONS(4932), - [anon_sym_object] = ACTIONS(4932), - [anon_sym_fun] = ACTIONS(4932), - [anon_sym_SEMI] = ACTIONS(4934), - [anon_sym_get] = ACTIONS(4932), - [anon_sym_set] = ACTIONS(4932), - [anon_sym_this] = ACTIONS(4932), - [anon_sym_super] = ACTIONS(4932), - [anon_sym_STAR] = ACTIONS(4932), - [sym_label] = ACTIONS(4932), - [anon_sym_in] = ACTIONS(4932), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_QMARK_COLON] = ACTIONS(4934), - [anon_sym_AMP_AMP] = ACTIONS(4934), - [anon_sym_PIPE_PIPE] = ACTIONS(4934), - [anon_sym_null] = ACTIONS(4932), - [anon_sym_if] = ACTIONS(4932), - [anon_sym_else] = ACTIONS(4932), - [anon_sym_when] = ACTIONS(4932), - [anon_sym_try] = ACTIONS(4932), - [anon_sym_throw] = ACTIONS(4932), - [anon_sym_return] = ACTIONS(4932), - [anon_sym_continue] = ACTIONS(4932), - [anon_sym_break] = ACTIONS(4932), - [anon_sym_COLON_COLON] = ACTIONS(4934), - [anon_sym_PLUS_EQ] = ACTIONS(4934), - [anon_sym_DASH_EQ] = ACTIONS(4934), - [anon_sym_STAR_EQ] = ACTIONS(4934), - [anon_sym_SLASH_EQ] = ACTIONS(4934), - [anon_sym_PERCENT_EQ] = ACTIONS(4934), - [anon_sym_BANG_EQ] = ACTIONS(4932), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4934), - [anon_sym_EQ_EQ] = ACTIONS(4932), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4934), - [anon_sym_LT_EQ] = ACTIONS(4934), - [anon_sym_GT_EQ] = ACTIONS(4934), - [anon_sym_BANGin] = ACTIONS(4934), - [anon_sym_is] = ACTIONS(4932), - [anon_sym_BANGis] = ACTIONS(4934), - [anon_sym_PLUS] = ACTIONS(4932), - [anon_sym_DASH] = ACTIONS(4932), - [anon_sym_SLASH] = ACTIONS(4932), - [anon_sym_PERCENT] = ACTIONS(4932), - [anon_sym_as_QMARK] = ACTIONS(4934), - [anon_sym_PLUS_PLUS] = ACTIONS(4934), - [anon_sym_DASH_DASH] = ACTIONS(4934), - [anon_sym_BANG] = ACTIONS(4932), - [anon_sym_BANG_BANG] = ACTIONS(4934), - [anon_sym_data] = ACTIONS(4932), - [anon_sym_inner] = ACTIONS(4932), - [anon_sym_value] = ACTIONS(4932), - [anon_sym_expect] = ACTIONS(4932), - [anon_sym_actual] = ACTIONS(4932), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4934), - [anon_sym_continue_AT] = ACTIONS(4934), - [anon_sym_break_AT] = ACTIONS(4934), - [anon_sym_this_AT] = ACTIONS(4934), - [anon_sym_super_AT] = ACTIONS(4934), - [sym_real_literal] = ACTIONS(4934), - [sym_integer_literal] = ACTIONS(4932), - [sym_hex_literal] = ACTIONS(4934), - [sym_bin_literal] = ACTIONS(4934), - [anon_sym_true] = ACTIONS(4932), - [anon_sym_false] = ACTIONS(4932), - [anon_sym_SQUOTE] = ACTIONS(4934), - [sym__backtick_identifier] = ACTIONS(4934), - [sym__automatic_semicolon] = ACTIONS(4934), - [sym_safe_nav] = ACTIONS(4934), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4934), + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_as] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_object] = ACTIONS(4988), + [anon_sym_fun] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_this] = ACTIONS(4988), + [anon_sym_super] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [sym_label] = ACTIONS(4988), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4990), + [anon_sym_AMP_AMP] = ACTIONS(4990), + [anon_sym_PIPE_PIPE] = ACTIONS(4990), + [anon_sym_null] = ACTIONS(4988), + [anon_sym_if] = ACTIONS(4988), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_when] = ACTIONS(4988), + [anon_sym_try] = ACTIONS(4988), + [anon_sym_throw] = ACTIONS(4988), + [anon_sym_return] = ACTIONS(4988), + [anon_sym_continue] = ACTIONS(4988), + [anon_sym_break] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4990), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_PERCENT_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_BANGin] = ACTIONS(4990), + [anon_sym_is] = ACTIONS(4988), + [anon_sym_BANGis] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_as_QMARK] = ACTIONS(4990), + [anon_sym_PLUS_PLUS] = ACTIONS(4990), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_BANG_BANG] = ACTIONS(4990), + [anon_sym_data] = ACTIONS(4988), + [anon_sym_inner] = ACTIONS(4988), + [anon_sym_value] = ACTIONS(4988), + [anon_sym_expect] = ACTIONS(4988), + [anon_sym_actual] = ACTIONS(4988), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4990), + [anon_sym_continue_AT] = ACTIONS(4990), + [anon_sym_break_AT] = ACTIONS(4990), + [anon_sym_this_AT] = ACTIONS(4990), + [anon_sym_super_AT] = ACTIONS(4990), + [sym_real_literal] = ACTIONS(4990), + [sym_integer_literal] = ACTIONS(4988), + [sym_hex_literal] = ACTIONS(4990), + [sym_bin_literal] = ACTIONS(4990), + [anon_sym_true] = ACTIONS(4988), + [anon_sym_false] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4990), + [sym__backtick_identifier] = ACTIONS(4990), + [sym__automatic_semicolon] = ACTIONS(4990), + [sym_safe_nav] = ACTIONS(4990), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4990), }, [3171] = { - [aux_sym_type_constraints_repeat1] = STATE(3208), - [sym__alpha_identifier] = ACTIONS(4371), - [anon_sym_AT] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(4373), - [anon_sym_RBRACK] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4371), - [anon_sym_as] = ACTIONS(4371), - [anon_sym_EQ] = ACTIONS(4371), - [anon_sym_LBRACE] = ACTIONS(4373), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_LPAREN] = ACTIONS(4373), - [anon_sym_COMMA] = ACTIONS(6655), - [anon_sym_RPAREN] = ACTIONS(4373), - [anon_sym_by] = ACTIONS(4371), - [anon_sym_LT] = ACTIONS(4371), - [anon_sym_GT] = ACTIONS(4371), - [anon_sym_where] = ACTIONS(4371), - [anon_sym_SEMI] = ACTIONS(4373), - [anon_sym_get] = ACTIONS(4371), - [anon_sym_set] = ACTIONS(4371), - [anon_sym_STAR] = ACTIONS(4371), - [anon_sym_DASH_GT] = ACTIONS(4373), - [sym_label] = ACTIONS(4373), - [anon_sym_in] = ACTIONS(4371), - [anon_sym_while] = ACTIONS(4371), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_QMARK_COLON] = ACTIONS(4373), - [anon_sym_AMP_AMP] = ACTIONS(4373), - [anon_sym_PIPE_PIPE] = ACTIONS(4373), - [anon_sym_else] = ACTIONS(4371), - [anon_sym_COLON_COLON] = ACTIONS(4373), - [anon_sym_PLUS_EQ] = ACTIONS(4373), - [anon_sym_DASH_EQ] = ACTIONS(4373), - [anon_sym_STAR_EQ] = ACTIONS(4373), - [anon_sym_SLASH_EQ] = ACTIONS(4373), - [anon_sym_PERCENT_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4373), - [anon_sym_EQ_EQ] = ACTIONS(4371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4373), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4373), - [anon_sym_BANGin] = ACTIONS(4373), - [anon_sym_is] = ACTIONS(4371), - [anon_sym_BANGis] = ACTIONS(4373), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_SLASH] = ACTIONS(4371), - [anon_sym_PERCENT] = ACTIONS(4371), - [anon_sym_as_QMARK] = ACTIONS(4373), - [anon_sym_PLUS_PLUS] = ACTIONS(4373), - [anon_sym_DASH_DASH] = ACTIONS(4373), - [anon_sym_BANG_BANG] = ACTIONS(4373), - [anon_sym_suspend] = ACTIONS(4371), - [anon_sym_sealed] = ACTIONS(4371), - [anon_sym_annotation] = ACTIONS(4371), - [anon_sym_data] = ACTIONS(4371), - [anon_sym_inner] = ACTIONS(4371), - [anon_sym_value] = ACTIONS(4371), - [anon_sym_override] = ACTIONS(4371), - [anon_sym_lateinit] = ACTIONS(4371), - [anon_sym_public] = ACTIONS(4371), - [anon_sym_private] = ACTIONS(4371), - [anon_sym_internal] = ACTIONS(4371), - [anon_sym_protected] = ACTIONS(4371), - [anon_sym_tailrec] = ACTIONS(4371), - [anon_sym_operator] = ACTIONS(4371), - [anon_sym_infix] = ACTIONS(4371), - [anon_sym_inline] = ACTIONS(4371), - [anon_sym_external] = ACTIONS(4371), - [sym_property_modifier] = ACTIONS(4371), - [anon_sym_abstract] = ACTIONS(4371), - [anon_sym_final] = ACTIONS(4371), - [anon_sym_open] = ACTIONS(4371), - [anon_sym_vararg] = ACTIONS(4371), - [anon_sym_noinline] = ACTIONS(4371), - [anon_sym_crossinline] = ACTIONS(4371), - [anon_sym_expect] = ACTIONS(4371), - [anon_sym_actual] = ACTIONS(4371), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4373), - [sym_safe_nav] = ACTIONS(4373), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(4620), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_object] = ACTIONS(4618), + [anon_sym_fun] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_this] = ACTIONS(4618), + [anon_sym_super] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [sym_label] = ACTIONS(4618), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_null] = ACTIONS(4618), + [anon_sym_if] = ACTIONS(4618), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_when] = ACTIONS(4618), + [anon_sym_try] = ACTIONS(4618), + [anon_sym_throw] = ACTIONS(4618), + [anon_sym_return] = ACTIONS(4618), + [anon_sym_continue] = ACTIONS(4618), + [anon_sym_break] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG] = ACTIONS(4618), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4620), + [anon_sym_continue_AT] = ACTIONS(4620), + [anon_sym_break_AT] = ACTIONS(4620), + [anon_sym_this_AT] = ACTIONS(4620), + [anon_sym_super_AT] = ACTIONS(4620), + [sym_real_literal] = ACTIONS(4620), + [sym_integer_literal] = ACTIONS(4618), + [sym_hex_literal] = ACTIONS(4620), + [sym_bin_literal] = ACTIONS(4620), + [anon_sym_true] = ACTIONS(4618), + [anon_sym_false] = ACTIONS(4618), + [anon_sym_SQUOTE] = ACTIONS(4620), + [sym__backtick_identifier] = ACTIONS(4620), + [sym__automatic_semicolon] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4620), }, [3172] = { - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(4301), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(4299), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), + [sym__alpha_identifier] = ACTIONS(5057), + [anon_sym_AT] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5057), + [anon_sym_as] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(5057), + [anon_sym_LBRACE] = ACTIONS(5059), + [anon_sym_RBRACE] = ACTIONS(5059), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_where] = ACTIONS(5057), + [anon_sym_object] = ACTIONS(5057), + [anon_sym_fun] = ACTIONS(5057), + [anon_sym_SEMI] = ACTIONS(5059), + [anon_sym_get] = ACTIONS(5057), + [anon_sym_set] = ACTIONS(5057), + [anon_sym_this] = ACTIONS(5057), + [anon_sym_super] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [sym_label] = ACTIONS(5057), + [anon_sym_in] = ACTIONS(5057), + [anon_sym_DOT_DOT] = ACTIONS(5059), + [anon_sym_QMARK_COLON] = ACTIONS(5059), + [anon_sym_AMP_AMP] = ACTIONS(5059), + [anon_sym_PIPE_PIPE] = ACTIONS(5059), + [anon_sym_null] = ACTIONS(5057), + [anon_sym_if] = ACTIONS(5057), + [anon_sym_else] = ACTIONS(5057), + [anon_sym_when] = ACTIONS(5057), + [anon_sym_try] = ACTIONS(5057), + [anon_sym_throw] = ACTIONS(5057), + [anon_sym_return] = ACTIONS(5057), + [anon_sym_continue] = ACTIONS(5057), + [anon_sym_break] = ACTIONS(5057), + [anon_sym_COLON_COLON] = ACTIONS(5059), + [anon_sym_PLUS_EQ] = ACTIONS(5059), + [anon_sym_DASH_EQ] = ACTIONS(5059), + [anon_sym_STAR_EQ] = ACTIONS(5059), + [anon_sym_SLASH_EQ] = ACTIONS(5059), + [anon_sym_PERCENT_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5059), + [anon_sym_GT_EQ] = ACTIONS(5059), + [anon_sym_BANGin] = ACTIONS(5059), + [anon_sym_is] = ACTIONS(5057), + [anon_sym_BANGis] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_PERCENT] = ACTIONS(5057), + [anon_sym_as_QMARK] = ACTIONS(5059), + [anon_sym_PLUS_PLUS] = ACTIONS(5059), + [anon_sym_DASH_DASH] = ACTIONS(5059), + [anon_sym_BANG] = ACTIONS(5057), + [anon_sym_BANG_BANG] = ACTIONS(5059), + [anon_sym_data] = ACTIONS(5057), + [anon_sym_inner] = ACTIONS(5057), + [anon_sym_value] = ACTIONS(5057), + [anon_sym_expect] = ACTIONS(5057), + [anon_sym_actual] = ACTIONS(5057), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5059), + [anon_sym_continue_AT] = ACTIONS(5059), + [anon_sym_break_AT] = ACTIONS(5059), + [anon_sym_this_AT] = ACTIONS(5059), + [anon_sym_super_AT] = ACTIONS(5059), + [sym_real_literal] = ACTIONS(5059), + [sym_integer_literal] = ACTIONS(5057), + [sym_hex_literal] = ACTIONS(5059), + [sym_bin_literal] = ACTIONS(5059), + [anon_sym_true] = ACTIONS(5057), + [anon_sym_false] = ACTIONS(5057), + [anon_sym_SQUOTE] = ACTIONS(5059), + [sym__backtick_identifier] = ACTIONS(5059), + [sym__automatic_semicolon] = ACTIONS(5059), + [sym_safe_nav] = ACTIONS(5059), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5059), }, [3173] = { - [sym_function_body] = STATE(3396), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_RBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [anon_sym_DASH_GT] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(5033), + [anon_sym_AT] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5033), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(5035), + [anon_sym_super_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), }, [3174] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4908), - [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_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(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4444), - [anon_sym_super_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), + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_object] = ACTIONS(4710), + [anon_sym_fun] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_this] = ACTIONS(4710), + [anon_sym_super] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4710), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(4710), + [anon_sym_if] = ACTIONS(4710), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_when] = ACTIONS(4710), + [anon_sym_try] = ACTIONS(4710), + [anon_sym_throw] = ACTIONS(4710), + [anon_sym_return] = ACTIONS(4710), + [anon_sym_continue] = ACTIONS(4710), + [anon_sym_break] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4712), + [anon_sym_continue_AT] = ACTIONS(4712), + [anon_sym_break_AT] = ACTIONS(4712), + [anon_sym_this_AT] = ACTIONS(4712), + [anon_sym_super_AT] = ACTIONS(4712), + [sym_real_literal] = ACTIONS(4712), + [sym_integer_literal] = ACTIONS(4710), + [sym_hex_literal] = ACTIONS(4712), + [sym_bin_literal] = ACTIONS(4712), + [anon_sym_true] = ACTIONS(4710), + [anon_sym_false] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4712), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4712), }, [3175] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_catch] = ACTIONS(4442), - [anon_sym_finally] = 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_value] = 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_class_body] = STATE(3464), + [sym_type_constraints] = STATE(3364), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, [3176] = { - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_DOT] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_object] = ACTIONS(4018), - [anon_sym_fun] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_this] = ACTIONS(4018), - [anon_sym_super] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [sym_label] = ACTIONS(4018), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_null] = ACTIONS(4018), - [anon_sym_if] = ACTIONS(4018), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_when] = ACTIONS(4018), - [anon_sym_try] = ACTIONS(4018), - [anon_sym_throw] = ACTIONS(4018), - [anon_sym_return] = ACTIONS(4018), - [anon_sym_continue] = ACTIONS(4018), - [anon_sym_break] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_PLUS_EQ] = ACTIONS(4020), - [anon_sym_DASH_EQ] = ACTIONS(4020), - [anon_sym_STAR_EQ] = ACTIONS(4020), - [anon_sym_SLASH_EQ] = ACTIONS(4020), - [anon_sym_PERCENT_EQ] = ACTIONS(4020), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4020), - [anon_sym_DASH_DASH] = ACTIONS(4020), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_BANG_BANG] = ACTIONS(4020), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4020), - [anon_sym_continue_AT] = ACTIONS(4020), - [anon_sym_break_AT] = ACTIONS(4020), - [anon_sym_this_AT] = ACTIONS(4020), - [anon_sym_super_AT] = ACTIONS(4020), - [sym_real_literal] = ACTIONS(4020), - [sym_integer_literal] = ACTIONS(4018), - [sym_hex_literal] = ACTIONS(4020), - [sym_bin_literal] = ACTIONS(4020), - [anon_sym_true] = ACTIONS(4018), - [anon_sym_false] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4020), - [sym__backtick_identifier] = ACTIONS(4020), - [sym__automatic_semicolon] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4020), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4020), + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_object] = ACTIONS(4888), + [anon_sym_fun] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_this] = ACTIONS(4888), + [anon_sym_super] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [sym_label] = ACTIONS(4888), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4888), + [anon_sym_if] = ACTIONS(4888), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_when] = ACTIONS(4888), + [anon_sym_try] = ACTIONS(4888), + [anon_sym_throw] = ACTIONS(4888), + [anon_sym_return] = ACTIONS(4888), + [anon_sym_continue] = ACTIONS(4888), + [anon_sym_break] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG] = ACTIONS(4888), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4890), + [anon_sym_continue_AT] = ACTIONS(4890), + [anon_sym_break_AT] = ACTIONS(4890), + [anon_sym_this_AT] = ACTIONS(4890), + [anon_sym_super_AT] = ACTIONS(4890), + [sym_real_literal] = ACTIONS(4890), + [sym_integer_literal] = ACTIONS(4888), + [sym_hex_literal] = ACTIONS(4890), + [sym_bin_literal] = ACTIONS(4890), + [anon_sym_true] = ACTIONS(4888), + [anon_sym_false] = ACTIONS(4888), + [anon_sym_SQUOTE] = ACTIONS(4890), + [sym__backtick_identifier] = ACTIONS(4890), + [sym__automatic_semicolon] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4890), }, [3177] = { - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [aux_sym_type_constraints_repeat1] = STATE(3215), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_RBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(4396), + [anon_sym_by] = ACTIONS(4394), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = 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_value] = 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), }, [3178] = { - [aux_sym_nullable_type_repeat1] = STATE(3164), - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_object] = ACTIONS(4276), - [anon_sym_fun] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [anon_sym_this] = ACTIONS(4276), - [anon_sym_super] = ACTIONS(4276), - [sym__quest] = ACTIONS(6623), - [anon_sym_STAR] = ACTIONS(4278), - [sym_label] = ACTIONS(4276), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4276), - [anon_sym_if] = ACTIONS(4276), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_when] = ACTIONS(4276), - [anon_sym_try] = ACTIONS(4276), - [anon_sym_throw] = ACTIONS(4276), - [anon_sym_return] = ACTIONS(4276), - [anon_sym_continue] = ACTIONS(4276), - [anon_sym_break] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_suspend] = ACTIONS(4276), - [anon_sym_sealed] = ACTIONS(4276), - [anon_sym_annotation] = ACTIONS(4276), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_override] = ACTIONS(4276), - [anon_sym_lateinit] = ACTIONS(4276), - [anon_sym_public] = ACTIONS(4276), - [anon_sym_private] = ACTIONS(4276), - [anon_sym_internal] = ACTIONS(4276), - [anon_sym_protected] = ACTIONS(4276), - [anon_sym_tailrec] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [anon_sym_infix] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym_external] = ACTIONS(4276), - [sym_property_modifier] = ACTIONS(4276), - [anon_sym_abstract] = ACTIONS(4276), - [anon_sym_final] = ACTIONS(4276), - [anon_sym_open] = ACTIONS(4276), - [anon_sym_vararg] = ACTIONS(4276), - [anon_sym_noinline] = ACTIONS(4276), - [anon_sym_crossinline] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4278), - [anon_sym_continue_AT] = ACTIONS(4278), - [anon_sym_break_AT] = ACTIONS(4278), - [anon_sym_this_AT] = ACTIONS(4278), - [anon_sym_super_AT] = ACTIONS(4278), - [sym_real_literal] = ACTIONS(4278), - [sym_integer_literal] = ACTIONS(4276), - [sym_hex_literal] = ACTIONS(4278), - [sym_bin_literal] = ACTIONS(4278), - [anon_sym_true] = ACTIONS(4276), - [anon_sym_false] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4278), - [sym__backtick_identifier] = ACTIONS(4278), - [sym__automatic_semicolon] = ACTIONS(4278), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4278), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), }, [3179] = { - [sym__alpha_identifier] = ACTIONS(3986), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_object] = ACTIONS(3986), - [anon_sym_fun] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(3986), - [anon_sym_set] = ACTIONS(3986), - [anon_sym_this] = ACTIONS(3986), - [anon_sym_super] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3986), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3988), - [anon_sym_QMARK_COLON] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_PIPE_PIPE] = ACTIONS(3988), - [anon_sym_null] = ACTIONS(3986), - [anon_sym_if] = ACTIONS(3986), - [anon_sym_else] = ACTIONS(3986), - [anon_sym_when] = ACTIONS(3986), - [anon_sym_try] = ACTIONS(3986), - [anon_sym_throw] = ACTIONS(3986), - [anon_sym_return] = ACTIONS(3986), - [anon_sym_continue] = ACTIONS(3986), - [anon_sym_break] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_PLUS_EQ] = ACTIONS(3988), - [anon_sym_DASH_EQ] = ACTIONS(3988), - [anon_sym_STAR_EQ] = ACTIONS(3988), - [anon_sym_SLASH_EQ] = ACTIONS(3988), - [anon_sym_PERCENT_EQ] = ACTIONS(3988), - [anon_sym_BANG_EQ] = ACTIONS(3986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3988), - [anon_sym_EQ_EQ] = ACTIONS(3986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3988), - [anon_sym_LT_EQ] = ACTIONS(3988), - [anon_sym_GT_EQ] = ACTIONS(3988), - [anon_sym_BANGin] = ACTIONS(3988), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_BANGis] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_data] = ACTIONS(3986), - [anon_sym_inner] = ACTIONS(3986), - [anon_sym_value] = ACTIONS(3986), - [anon_sym_expect] = ACTIONS(3986), - [anon_sym_actual] = ACTIONS(3986), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3988), - [anon_sym_continue_AT] = ACTIONS(3988), - [anon_sym_break_AT] = ACTIONS(3988), - [anon_sym_this_AT] = ACTIONS(3988), - [anon_sym_super_AT] = ACTIONS(3988), - [sym_real_literal] = ACTIONS(3988), - [sym_integer_literal] = ACTIONS(3986), - [sym_hex_literal] = ACTIONS(3988), - [sym_bin_literal] = ACTIONS(3988), - [anon_sym_true] = ACTIONS(3986), - [anon_sym_false] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3988), - [sym__backtick_identifier] = ACTIONS(3988), - [sym__automatic_semicolon] = ACTIONS(3988), - [sym_safe_nav] = ACTIONS(3988), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3988), + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_object] = ACTIONS(4992), + [anon_sym_fun] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_this] = ACTIONS(4992), + [anon_sym_super] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [sym_label] = ACTIONS(4992), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_null] = ACTIONS(4992), + [anon_sym_if] = ACTIONS(4992), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_when] = ACTIONS(4992), + [anon_sym_try] = ACTIONS(4992), + [anon_sym_throw] = ACTIONS(4992), + [anon_sym_return] = ACTIONS(4992), + [anon_sym_continue] = ACTIONS(4992), + [anon_sym_break] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(6577), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_PERCENT_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG] = ACTIONS(4992), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4994), + [anon_sym_continue_AT] = ACTIONS(4994), + [anon_sym_break_AT] = ACTIONS(4994), + [anon_sym_this_AT] = ACTIONS(4994), + [anon_sym_super_AT] = ACTIONS(4994), + [sym_real_literal] = ACTIONS(4994), + [sym_integer_literal] = ACTIONS(4992), + [sym_hex_literal] = ACTIONS(4994), + [sym_bin_literal] = ACTIONS(4994), + [anon_sym_true] = ACTIONS(4992), + [anon_sym_false] = ACTIONS(4992), + [anon_sym_SQUOTE] = ACTIONS(4994), + [sym__backtick_identifier] = ACTIONS(4994), + [sym__automatic_semicolon] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4994), }, [3180] = { - [aux_sym_nullable_type_repeat1] = STATE(3180), - [sym__alpha_identifier] = ACTIONS(4282), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_LBRACE] = ACTIONS(4284), - [anon_sym_RBRACE] = ACTIONS(4284), - [anon_sym_LPAREN] = ACTIONS(4284), - [anon_sym_COMMA] = ACTIONS(4284), - [anon_sym_by] = ACTIONS(4282), - [anon_sym_where] = ACTIONS(4282), - [anon_sym_object] = ACTIONS(4282), - [anon_sym_fun] = 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), - [sym__quest] = ACTIONS(6657), - [anon_sym_STAR] = ACTIONS(4284), - [sym_label] = ACTIONS(4282), - [anon_sym_in] = ACTIONS(4282), - [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_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_PLUS_PLUS] = ACTIONS(4284), - [anon_sym_DASH_DASH] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4282), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4284), - [anon_sym_super_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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4284), + [sym__alpha_identifier] = ACTIONS(5003), + [anon_sym_AT] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(5005), + [anon_sym_super_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), }, [3181] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_object] = ACTIONS(4419), - [anon_sym_fun] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_this] = ACTIONS(4419), - [anon_sym_super] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4419), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_when] = ACTIONS(4419), - [anon_sym_try] = ACTIONS(4419), - [anon_sym_throw] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4922), - [anon_sym_DASH_EQ] = ACTIONS(4922), - [anon_sym_STAR_EQ] = ACTIONS(4922), - [anon_sym_SLASH_EQ] = ACTIONS(4922), - [anon_sym_PERCENT_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4421), - [anon_sym_continue_AT] = ACTIONS(4421), - [anon_sym_break_AT] = ACTIONS(4421), - [anon_sym_this_AT] = ACTIONS(4421), - [anon_sym_super_AT] = ACTIONS(4421), - [sym_real_literal] = ACTIONS(4421), - [sym_integer_literal] = ACTIONS(4419), - [sym_hex_literal] = ACTIONS(4421), - [sym_bin_literal] = ACTIONS(4421), - [anon_sym_true] = ACTIONS(4419), - [anon_sym_false] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4421), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4421), - }, - [3182] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6660), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4228), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [3183] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6664), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [sym__alpha_identifier] = ACTIONS(5007), + [anon_sym_AT] = ACTIONS(5009), + [anon_sym_LBRACK] = ACTIONS(5009), + [anon_sym_DOT] = ACTIONS(5007), + [anon_sym_as] = ACTIONS(5007), + [anon_sym_EQ] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5009), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_COMMA] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_where] = ACTIONS(5007), + [anon_sym_object] = ACTIONS(5007), + [anon_sym_fun] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_get] = ACTIONS(5007), + [anon_sym_set] = ACTIONS(5007), + [anon_sym_this] = ACTIONS(5007), + [anon_sym_super] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [sym_label] = ACTIONS(5007), + [anon_sym_in] = ACTIONS(5007), + [anon_sym_DOT_DOT] = ACTIONS(5009), + [anon_sym_QMARK_COLON] = ACTIONS(5009), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5009), + [anon_sym_null] = ACTIONS(5007), + [anon_sym_if] = ACTIONS(5007), + [anon_sym_else] = ACTIONS(5007), + [anon_sym_when] = ACTIONS(5007), + [anon_sym_try] = ACTIONS(5007), + [anon_sym_throw] = ACTIONS(5007), + [anon_sym_return] = ACTIONS(5007), + [anon_sym_continue] = ACTIONS(5007), + [anon_sym_break] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5009), + [anon_sym_PLUS_EQ] = ACTIONS(5009), + [anon_sym_DASH_EQ] = ACTIONS(5009), + [anon_sym_STAR_EQ] = ACTIONS(5009), + [anon_sym_SLASH_EQ] = ACTIONS(5009), + [anon_sym_PERCENT_EQ] = ACTIONS(5009), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5009), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5009), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5009), + [anon_sym_BANGin] = ACTIONS(5009), + [anon_sym_is] = ACTIONS(5007), + [anon_sym_BANGis] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_as_QMARK] = ACTIONS(5009), + [anon_sym_PLUS_PLUS] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5009), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_BANG_BANG] = ACTIONS(5009), + [anon_sym_data] = ACTIONS(5007), + [anon_sym_inner] = ACTIONS(5007), + [anon_sym_value] = ACTIONS(5007), + [anon_sym_expect] = ACTIONS(5007), + [anon_sym_actual] = ACTIONS(5007), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [anon_sym_return_AT] = ACTIONS(5009), + [anon_sym_continue_AT] = ACTIONS(5009), + [anon_sym_break_AT] = ACTIONS(5009), + [anon_sym_this_AT] = ACTIONS(5009), + [anon_sym_super_AT] = ACTIONS(5009), + [sym_real_literal] = ACTIONS(5009), + [sym_integer_literal] = ACTIONS(5007), + [sym_hex_literal] = ACTIONS(5009), + [sym_bin_literal] = ACTIONS(5009), + [anon_sym_true] = ACTIONS(5007), + [anon_sym_false] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5009), + [sym__backtick_identifier] = ACTIONS(5009), + [sym__automatic_semicolon] = ACTIONS(5009), + [sym_safe_nav] = ACTIONS(5009), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), + [sym__string_start] = ACTIONS(5009), + }, + [3182] = { + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_object] = ACTIONS(3950), + [anon_sym_fun] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_this] = ACTIONS(3950), + [anon_sym_super] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [sym_label] = ACTIONS(3950), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_null] = ACTIONS(3950), + [anon_sym_if] = ACTIONS(3950), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_when] = ACTIONS(3950), + [anon_sym_try] = ACTIONS(3950), + [anon_sym_throw] = ACTIONS(3950), + [anon_sym_return] = ACTIONS(3950), + [anon_sym_continue] = ACTIONS(3950), + [anon_sym_break] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_PLUS_EQ] = ACTIONS(3952), + [anon_sym_DASH_EQ] = ACTIONS(3952), + [anon_sym_STAR_EQ] = ACTIONS(3952), + [anon_sym_SLASH_EQ] = ACTIONS(3952), + [anon_sym_PERCENT_EQ] = ACTIONS(3952), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_BANG] = ACTIONS(3950), + [anon_sym_BANG_BANG] = ACTIONS(3952), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [anon_sym_expect] = ACTIONS(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3952), + [anon_sym_continue_AT] = ACTIONS(3952), + [anon_sym_break_AT] = ACTIONS(3952), + [anon_sym_this_AT] = ACTIONS(3952), + [anon_sym_super_AT] = ACTIONS(3952), + [sym_real_literal] = ACTIONS(3952), + [sym_integer_literal] = ACTIONS(3950), + [sym_hex_literal] = ACTIONS(3952), + [sym_bin_literal] = ACTIONS(3952), + [anon_sym_true] = ACTIONS(3950), + [anon_sym_false] = ACTIONS(3950), + [anon_sym_SQUOTE] = ACTIONS(3952), + [sym__backtick_identifier] = ACTIONS(3952), + [sym__automatic_semicolon] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3952), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3952), + }, + [3183] = { + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [3184] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_RPAREN] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_DASH_GT] = ACTIONS(4421), - [sym_label] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_catch] = ACTIONS(4419), - [anon_sym_finally] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), + [sym__alpha_identifier] = ACTIONS(5019), + [anon_sym_AT] = ACTIONS(5021), + [anon_sym_LBRACK] = ACTIONS(5021), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_as] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5021), + [anon_sym_RBRACE] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5021), + [anon_sym_COMMA] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5019), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_object] = ACTIONS(5019), + [anon_sym_fun] = ACTIONS(5019), + [anon_sym_SEMI] = ACTIONS(5021), + [anon_sym_get] = ACTIONS(5019), + [anon_sym_set] = ACTIONS(5019), + [anon_sym_this] = ACTIONS(5019), + [anon_sym_super] = ACTIONS(5019), + [anon_sym_STAR] = ACTIONS(5019), + [sym_label] = ACTIONS(5019), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5021), + [anon_sym_QMARK_COLON] = ACTIONS(5021), + [anon_sym_AMP_AMP] = ACTIONS(5021), + [anon_sym_PIPE_PIPE] = ACTIONS(5021), + [anon_sym_null] = ACTIONS(5019), + [anon_sym_if] = ACTIONS(5019), + [anon_sym_else] = ACTIONS(5019), + [anon_sym_when] = ACTIONS(5019), + [anon_sym_try] = ACTIONS(5019), + [anon_sym_throw] = ACTIONS(5019), + [anon_sym_return] = ACTIONS(5019), + [anon_sym_continue] = ACTIONS(5019), + [anon_sym_break] = ACTIONS(5019), + [anon_sym_COLON_COLON] = ACTIONS(5021), + [anon_sym_PLUS_EQ] = ACTIONS(5021), + [anon_sym_DASH_EQ] = ACTIONS(5021), + [anon_sym_STAR_EQ] = ACTIONS(5021), + [anon_sym_SLASH_EQ] = ACTIONS(5021), + [anon_sym_PERCENT_EQ] = ACTIONS(5021), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5021), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5021), + [anon_sym_LT_EQ] = ACTIONS(5021), + [anon_sym_GT_EQ] = ACTIONS(5021), + [anon_sym_BANGin] = ACTIONS(5021), + [anon_sym_is] = ACTIONS(5019), + [anon_sym_BANGis] = ACTIONS(5021), + [anon_sym_PLUS] = ACTIONS(5019), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_SLASH] = ACTIONS(5019), + [anon_sym_PERCENT] = ACTIONS(5019), + [anon_sym_as_QMARK] = ACTIONS(5021), + [anon_sym_PLUS_PLUS] = ACTIONS(5021), + [anon_sym_DASH_DASH] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5019), + [anon_sym_BANG_BANG] = ACTIONS(5021), + [anon_sym_data] = ACTIONS(5019), + [anon_sym_inner] = ACTIONS(5019), + [anon_sym_value] = ACTIONS(5019), + [anon_sym_expect] = ACTIONS(5019), + [anon_sym_actual] = ACTIONS(5019), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5021), + [anon_sym_continue_AT] = ACTIONS(5021), + [anon_sym_break_AT] = ACTIONS(5021), + [anon_sym_this_AT] = ACTIONS(5021), + [anon_sym_super_AT] = ACTIONS(5021), + [sym_real_literal] = ACTIONS(5021), + [sym_integer_literal] = ACTIONS(5019), + [sym_hex_literal] = ACTIONS(5021), + [sym_bin_literal] = ACTIONS(5021), + [anon_sym_true] = ACTIONS(5019), + [anon_sym_false] = ACTIONS(5019), + [anon_sym_SQUOTE] = ACTIONS(5021), + [sym__backtick_identifier] = ACTIONS(5021), + [sym__automatic_semicolon] = ACTIONS(5021), + [sym_safe_nav] = ACTIONS(5021), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5021), }, [3185] = { + [sym__alpha_identifier] = ACTIONS(5093), + [anon_sym_AT] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_DOT] = ACTIONS(5093), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(5095), + [anon_sym_super_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), + }, + [3186] = { + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_RBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [anon_sym_DASH_GT] = ACTIONS(4418), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_while] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + }, + [3187] = { + [sym__alpha_identifier] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_object] = ACTIONS(1580), + [anon_sym_fun] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1580), + [anon_sym_set] = ACTIONS(1580), + [anon_sym_this] = ACTIONS(1580), + [anon_sym_super] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [sym_label] = ACTIONS(1580), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_null] = ACTIONS(1580), + [anon_sym_if] = ACTIONS(1580), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_when] = ACTIONS(1580), + [anon_sym_try] = ACTIONS(1580), + [anon_sym_throw] = ACTIONS(1580), + [anon_sym_return] = ACTIONS(1580), + [anon_sym_continue] = ACTIONS(1580), + [anon_sym_break] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1578), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_BANG] = ACTIONS(1580), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_data] = ACTIONS(1580), + [anon_sym_inner] = ACTIONS(1580), + [anon_sym_value] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1580), + [anon_sym_actual] = ACTIONS(1580), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1578), + [anon_sym_continue_AT] = ACTIONS(1578), + [anon_sym_break_AT] = ACTIONS(1578), + [anon_sym_this_AT] = ACTIONS(1578), + [anon_sym_super_AT] = ACTIONS(1578), + [sym_real_literal] = ACTIONS(1578), + [sym_integer_literal] = ACTIONS(1580), + [sym_hex_literal] = ACTIONS(1578), + [sym_bin_literal] = ACTIONS(1578), + [anon_sym_true] = ACTIONS(1580), + [anon_sym_false] = ACTIONS(1580), + [anon_sym_SQUOTE] = ACTIONS(1578), + [sym__backtick_identifier] = ACTIONS(1578), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1578), + }, + [3188] = { + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_object] = ACTIONS(4447), + [anon_sym_fun] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_this] = ACTIONS(4447), + [anon_sym_super] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4447), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_null] = ACTIONS(4447), + [anon_sym_if] = ACTIONS(4447), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_when] = ACTIONS(4447), + [anon_sym_try] = ACTIONS(4447), + [anon_sym_throw] = ACTIONS(4447), + [anon_sym_return] = ACTIONS(4447), + [anon_sym_continue] = ACTIONS(4447), + [anon_sym_break] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4449), + [anon_sym_continue_AT] = ACTIONS(4449), + [anon_sym_break_AT] = ACTIONS(4449), + [anon_sym_this_AT] = ACTIONS(4449), + [anon_sym_super_AT] = ACTIONS(4449), + [sym_real_literal] = ACTIONS(4449), + [sym_integer_literal] = ACTIONS(4447), + [sym_hex_literal] = ACTIONS(4449), + [sym_bin_literal] = ACTIONS(4449), + [anon_sym_true] = ACTIONS(4447), + [anon_sym_false] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4449), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4449), + }, + [3189] = { + [sym_function_body] = STATE(3387), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [anon_sym_DASH_GT] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_while] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + }, + [3190] = { + [sym_function_body] = STATE(3367), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3191] = { + [sym__alpha_identifier] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_where] = ACTIONS(5029), + [anon_sym_object] = ACTIONS(5029), + [anon_sym_fun] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_get] = ACTIONS(5029), + [anon_sym_set] = ACTIONS(5029), + [anon_sym_this] = ACTIONS(5029), + [anon_sym_super] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [sym_label] = ACTIONS(5029), + [anon_sym_in] = ACTIONS(5029), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_QMARK_COLON] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_null] = ACTIONS(5029), + [anon_sym_if] = ACTIONS(5029), + [anon_sym_else] = ACTIONS(5029), + [anon_sym_when] = ACTIONS(5029), + [anon_sym_try] = ACTIONS(5029), + [anon_sym_throw] = ACTIONS(5029), + [anon_sym_return] = ACTIONS(5029), + [anon_sym_continue] = ACTIONS(5029), + [anon_sym_break] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym_PLUS_EQ] = ACTIONS(5031), + [anon_sym_DASH_EQ] = ACTIONS(5031), + [anon_sym_STAR_EQ] = ACTIONS(5031), + [anon_sym_SLASH_EQ] = ACTIONS(5031), + [anon_sym_PERCENT_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_BANGin] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5029), + [anon_sym_BANGis] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_as_QMARK] = ACTIONS(5031), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_BANG_BANG] = ACTIONS(5031), + [anon_sym_data] = ACTIONS(5029), + [anon_sym_inner] = ACTIONS(5029), + [anon_sym_value] = ACTIONS(5029), + [anon_sym_expect] = ACTIONS(5029), + [anon_sym_actual] = ACTIONS(5029), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5031), + [anon_sym_continue_AT] = ACTIONS(5031), + [anon_sym_break_AT] = ACTIONS(5031), + [anon_sym_this_AT] = ACTIONS(5031), + [anon_sym_super_AT] = ACTIONS(5031), + [sym_real_literal] = ACTIONS(5031), + [sym_integer_literal] = ACTIONS(5029), + [sym_hex_literal] = ACTIONS(5031), + [sym_bin_literal] = ACTIONS(5031), + [anon_sym_true] = ACTIONS(5029), + [anon_sym_false] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5031), + [sym__backtick_identifier] = ACTIONS(5031), + [sym__automatic_semicolon] = ACTIONS(5031), + [sym_safe_nav] = ACTIONS(5031), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5031), + }, + [3192] = { + [sym__alpha_identifier] = ACTIONS(4369), + [anon_sym_AT] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_RBRACK] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_as] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4369), + [anon_sym_LBRACE] = ACTIONS(4371), + [anon_sym_RBRACE] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4371), + [anon_sym_COMMA] = ACTIONS(4371), + [anon_sym_RPAREN] = ACTIONS(4371), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_where] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_get] = ACTIONS(4369), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_DASH_GT] = ACTIONS(4371), + [sym_label] = ACTIONS(4371), + [anon_sym_in] = ACTIONS(4369), + [anon_sym_while] = ACTIONS(4369), + [anon_sym_DOT_DOT] = ACTIONS(4371), + [anon_sym_QMARK_COLON] = ACTIONS(4371), + [anon_sym_AMP_AMP] = ACTIONS(4371), + [anon_sym_PIPE_PIPE] = ACTIONS(4371), + [anon_sym_else] = ACTIONS(4369), + [anon_sym_catch] = ACTIONS(4369), + [anon_sym_finally] = ACTIONS(4369), + [anon_sym_COLON_COLON] = ACTIONS(4371), + [anon_sym_PLUS_EQ] = ACTIONS(4371), + [anon_sym_DASH_EQ] = ACTIONS(4371), + [anon_sym_STAR_EQ] = ACTIONS(4371), + [anon_sym_SLASH_EQ] = ACTIONS(4371), + [anon_sym_PERCENT_EQ] = ACTIONS(4371), + [anon_sym_BANG_EQ] = ACTIONS(4369), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4371), + [anon_sym_EQ_EQ] = ACTIONS(4369), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4371), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_BANGin] = ACTIONS(4371), + [anon_sym_is] = ACTIONS(4369), + [anon_sym_BANGis] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4369), + [anon_sym_as_QMARK] = ACTIONS(4371), + [anon_sym_PLUS_PLUS] = ACTIONS(4371), + [anon_sym_DASH_DASH] = ACTIONS(4371), + [anon_sym_BANG_BANG] = ACTIONS(4371), + [anon_sym_suspend] = ACTIONS(4369), + [anon_sym_sealed] = ACTIONS(4369), + [anon_sym_annotation] = ACTIONS(4369), + [anon_sym_data] = ACTIONS(4369), + [anon_sym_inner] = ACTIONS(4369), + [anon_sym_value] = ACTIONS(4369), + [anon_sym_override] = ACTIONS(4369), + [anon_sym_lateinit] = ACTIONS(4369), + [anon_sym_public] = ACTIONS(4369), + [anon_sym_private] = ACTIONS(4369), + [anon_sym_internal] = ACTIONS(4369), + [anon_sym_protected] = ACTIONS(4369), + [anon_sym_tailrec] = ACTIONS(4369), + [anon_sym_operator] = ACTIONS(4369), + [anon_sym_infix] = ACTIONS(4369), + [anon_sym_inline] = ACTIONS(4369), + [anon_sym_external] = ACTIONS(4369), + [sym_property_modifier] = ACTIONS(4369), + [anon_sym_abstract] = ACTIONS(4369), + [anon_sym_final] = ACTIONS(4369), + [anon_sym_open] = ACTIONS(4369), + [anon_sym_vararg] = ACTIONS(4369), + [anon_sym_noinline] = ACTIONS(4369), + [anon_sym_crossinline] = ACTIONS(4369), + [anon_sym_expect] = ACTIONS(4369), + [anon_sym_actual] = ACTIONS(4369), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4371), + [sym_safe_nav] = ACTIONS(4371), + [sym_multiline_comment] = ACTIONS(3), + }, + [3193] = { + [sym_function_body] = STATE(3378), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_while] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3194] = { + [sym_function_body] = STATE(3233), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, + [3195] = { + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4077), + [anon_sym_LBRACE] = ACTIONS(4079), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, + [3196] = { + [sym__alpha_identifier] = ACTIONS(5049), + [anon_sym_AT] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5049), + [anon_sym_EQ] = ACTIONS(5049), + [anon_sym_LBRACE] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_where] = ACTIONS(5049), + [anon_sym_object] = ACTIONS(5049), + [anon_sym_fun] = ACTIONS(5049), + [anon_sym_SEMI] = ACTIONS(5051), + [anon_sym_get] = ACTIONS(5049), + [anon_sym_set] = ACTIONS(5049), + [anon_sym_this] = ACTIONS(5049), + [anon_sym_super] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [sym_label] = ACTIONS(5049), + [anon_sym_in] = ACTIONS(5049), + [anon_sym_DOT_DOT] = ACTIONS(5051), + [anon_sym_QMARK_COLON] = ACTIONS(5051), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE_PIPE] = ACTIONS(5051), + [anon_sym_null] = ACTIONS(5049), + [anon_sym_if] = ACTIONS(5049), + [anon_sym_else] = ACTIONS(5049), + [anon_sym_when] = ACTIONS(5049), + [anon_sym_try] = ACTIONS(5049), + [anon_sym_throw] = ACTIONS(5049), + [anon_sym_return] = ACTIONS(5049), + [anon_sym_continue] = ACTIONS(5049), + [anon_sym_break] = ACTIONS(5049), + [anon_sym_COLON_COLON] = ACTIONS(5051), + [anon_sym_PLUS_EQ] = ACTIONS(5051), + [anon_sym_DASH_EQ] = ACTIONS(5051), + [anon_sym_STAR_EQ] = ACTIONS(5051), + [anon_sym_SLASH_EQ] = ACTIONS(5051), + [anon_sym_PERCENT_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_BANGin] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5049), + [anon_sym_BANGis] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_PERCENT] = ACTIONS(5049), + [anon_sym_as_QMARK] = ACTIONS(5051), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_BANG_BANG] = ACTIONS(5051), + [anon_sym_data] = ACTIONS(5049), + [anon_sym_inner] = ACTIONS(5049), + [anon_sym_value] = ACTIONS(5049), + [anon_sym_expect] = ACTIONS(5049), + [anon_sym_actual] = ACTIONS(5049), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5051), + [anon_sym_continue_AT] = ACTIONS(5051), + [anon_sym_break_AT] = ACTIONS(5051), + [anon_sym_this_AT] = ACTIONS(5051), + [anon_sym_super_AT] = ACTIONS(5051), + [sym_real_literal] = ACTIONS(5051), + [sym_integer_literal] = ACTIONS(5049), + [sym_hex_literal] = ACTIONS(5051), + [sym_bin_literal] = ACTIONS(5051), + [anon_sym_true] = ACTIONS(5049), + [anon_sym_false] = ACTIONS(5049), + [anon_sym_SQUOTE] = ACTIONS(5051), + [sym__backtick_identifier] = ACTIONS(5051), + [sym__automatic_semicolon] = ACTIONS(5051), + [sym_safe_nav] = ACTIONS(5051), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5051), + }, + [3197] = { + [sym__alpha_identifier] = ACTIONS(4666), + [anon_sym_AT] = ACTIONS(4668), + [anon_sym_LBRACK] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4666), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4668), + [anon_sym_super_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), + }, + [3198] = { + [sym__alpha_identifier] = ACTIONS(4398), + [anon_sym_AT] = ACTIONS(4400), + [anon_sym_LBRACK] = ACTIONS(4400), + [anon_sym_RBRACK] = ACTIONS(4400), + [anon_sym_DOT] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4398), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4400), + [anon_sym_RBRACE] = ACTIONS(4400), + [anon_sym_LPAREN] = ACTIONS(4400), + [anon_sym_COMMA] = ACTIONS(4400), + [anon_sym_RPAREN] = ACTIONS(4400), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_where] = ACTIONS(4398), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_get] = ACTIONS(4398), + [anon_sym_set] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4398), + [anon_sym_DASH_GT] = ACTIONS(4400), + [sym_label] = ACTIONS(4400), + [anon_sym_in] = ACTIONS(4398), + [anon_sym_while] = ACTIONS(4398), + [anon_sym_DOT_DOT] = ACTIONS(4400), + [anon_sym_QMARK_COLON] = ACTIONS(4400), + [anon_sym_AMP_AMP] = ACTIONS(4400), + [anon_sym_PIPE_PIPE] = ACTIONS(4400), + [anon_sym_else] = ACTIONS(4398), + [anon_sym_catch] = ACTIONS(4398), + [anon_sym_finally] = ACTIONS(4398), + [anon_sym_COLON_COLON] = ACTIONS(4400), + [anon_sym_PLUS_EQ] = ACTIONS(4400), + [anon_sym_DASH_EQ] = ACTIONS(4400), + [anon_sym_STAR_EQ] = ACTIONS(4400), + [anon_sym_SLASH_EQ] = ACTIONS(4400), + [anon_sym_PERCENT_EQ] = ACTIONS(4400), + [anon_sym_BANG_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4400), + [anon_sym_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4400), + [anon_sym_LT_EQ] = ACTIONS(4400), + [anon_sym_GT_EQ] = ACTIONS(4400), + [anon_sym_BANGin] = ACTIONS(4400), + [anon_sym_is] = ACTIONS(4398), + [anon_sym_BANGis] = ACTIONS(4400), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_PERCENT] = ACTIONS(4398), + [anon_sym_as_QMARK] = ACTIONS(4400), + [anon_sym_PLUS_PLUS] = ACTIONS(4400), + [anon_sym_DASH_DASH] = ACTIONS(4400), + [anon_sym_BANG_BANG] = ACTIONS(4400), + [anon_sym_suspend] = ACTIONS(4398), + [anon_sym_sealed] = ACTIONS(4398), + [anon_sym_annotation] = ACTIONS(4398), + [anon_sym_data] = ACTIONS(4398), + [anon_sym_inner] = ACTIONS(4398), + [anon_sym_value] = ACTIONS(4398), + [anon_sym_override] = ACTIONS(4398), + [anon_sym_lateinit] = ACTIONS(4398), + [anon_sym_public] = ACTIONS(4398), + [anon_sym_private] = ACTIONS(4398), + [anon_sym_internal] = ACTIONS(4398), + [anon_sym_protected] = ACTIONS(4398), + [anon_sym_tailrec] = ACTIONS(4398), + [anon_sym_operator] = ACTIONS(4398), + [anon_sym_infix] = ACTIONS(4398), + [anon_sym_inline] = ACTIONS(4398), + [anon_sym_external] = ACTIONS(4398), + [sym_property_modifier] = ACTIONS(4398), + [anon_sym_abstract] = ACTIONS(4398), + [anon_sym_final] = ACTIONS(4398), + [anon_sym_open] = ACTIONS(4398), + [anon_sym_vararg] = ACTIONS(4398), + [anon_sym_noinline] = ACTIONS(4398), + [anon_sym_crossinline] = ACTIONS(4398), + [anon_sym_expect] = ACTIONS(4398), + [anon_sym_actual] = ACTIONS(4398), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4400), + [sym_safe_nav] = ACTIONS(4400), + [sym_multiline_comment] = ACTIONS(3), + }, + [3199] = { + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = 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_value] = 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), + }, + [3200] = { + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_RBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [anon_sym_DASH_GT] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + }, + [3201] = { + [sym_file_annotation] = STATE(3201), + [aux_sym_source_file_repeat1] = STATE(3201), + [ts_builtin_sym_end] = ACTIONS(6600), + [sym__alpha_identifier] = ACTIONS(6602), + [anon_sym_AT] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6600), + [anon_sym_package] = ACTIONS(6602), + [anon_sym_import] = ACTIONS(6602), + [anon_sym_typealias] = ACTIONS(6602), + [anon_sym_class] = ACTIONS(6602), + [anon_sym_interface] = ACTIONS(6602), + [anon_sym_enum] = ACTIONS(6602), + [anon_sym_LBRACE] = ACTIONS(6600), + [anon_sym_LPAREN] = ACTIONS(6600), + [anon_sym_val] = ACTIONS(6602), + [anon_sym_var] = ACTIONS(6602), + [anon_sym_object] = ACTIONS(6602), + [anon_sym_fun] = ACTIONS(6602), + [anon_sym_get] = ACTIONS(6602), + [anon_sym_set] = ACTIONS(6602), + [anon_sym_this] = ACTIONS(6602), + [anon_sym_super] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6600), + [sym_label] = ACTIONS(6602), + [anon_sym_for] = ACTIONS(6602), + [anon_sym_while] = ACTIONS(6602), + [anon_sym_do] = ACTIONS(6602), + [anon_sym_null] = ACTIONS(6602), + [anon_sym_if] = ACTIONS(6602), + [anon_sym_when] = ACTIONS(6602), + [anon_sym_try] = ACTIONS(6602), + [anon_sym_throw] = ACTIONS(6602), + [anon_sym_return] = ACTIONS(6602), + [anon_sym_continue] = ACTIONS(6602), + [anon_sym_break] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6600), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DASH_DASH] = ACTIONS(6600), + [anon_sym_BANG] = ACTIONS(6600), + [anon_sym_suspend] = ACTIONS(6602), + [anon_sym_sealed] = ACTIONS(6602), + [anon_sym_annotation] = ACTIONS(6602), + [anon_sym_data] = ACTIONS(6602), + [anon_sym_inner] = ACTIONS(6602), + [anon_sym_value] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_lateinit] = ACTIONS(6602), + [anon_sym_public] = ACTIONS(6602), + [anon_sym_private] = ACTIONS(6602), + [anon_sym_internal] = ACTIONS(6602), + [anon_sym_protected] = ACTIONS(6602), + [anon_sym_tailrec] = ACTIONS(6602), + [anon_sym_operator] = ACTIONS(6602), + [anon_sym_infix] = ACTIONS(6602), + [anon_sym_inline] = ACTIONS(6602), + [anon_sym_external] = ACTIONS(6602), + [sym_property_modifier] = ACTIONS(6602), + [anon_sym_abstract] = ACTIONS(6602), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_open] = ACTIONS(6602), + [anon_sym_vararg] = ACTIONS(6602), + [anon_sym_noinline] = ACTIONS(6602), + [anon_sym_crossinline] = ACTIONS(6602), + [anon_sym_expect] = ACTIONS(6602), + [anon_sym_actual] = ACTIONS(6602), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6600), + [anon_sym_continue_AT] = ACTIONS(6600), + [anon_sym_break_AT] = ACTIONS(6600), + [anon_sym_this_AT] = ACTIONS(6600), + [anon_sym_super_AT] = ACTIONS(6600), + [sym_real_literal] = ACTIONS(6600), + [sym_integer_literal] = ACTIONS(6602), + [sym_hex_literal] = ACTIONS(6600), + [sym_bin_literal] = ACTIONS(6600), + [anon_sym_true] = ACTIONS(6602), + [anon_sym_false] = ACTIONS(6602), + [anon_sym_SQUOTE] = ACTIONS(6600), + [sym__backtick_identifier] = ACTIONS(6600), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6600), + }, + [3202] = { + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_RBRACK] = ACTIONS(4323), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_constructor] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_RPAREN] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [anon_sym_DASH_GT] = ACTIONS(4323), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), + [sym_multiline_comment] = ACTIONS(3), + }, + [3203] = { + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_object] = ACTIONS(1754), + [anon_sym_fun] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1754), + [anon_sym_set] = ACTIONS(1754), + [anon_sym_this] = ACTIONS(1754), + [anon_sym_super] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1754), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_null] = ACTIONS(1754), + [anon_sym_if] = ACTIONS(1754), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_when] = ACTIONS(1754), + [anon_sym_try] = ACTIONS(1754), + [anon_sym_throw] = ACTIONS(1754), + [anon_sym_return] = ACTIONS(1754), + [anon_sym_continue] = ACTIONS(1754), + [anon_sym_break] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_BANG_BANG] = ACTIONS(1756), + [anon_sym_data] = ACTIONS(1754), + [anon_sym_inner] = ACTIONS(1754), + [anon_sym_value] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(1754), + [anon_sym_actual] = ACTIONS(1754), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1756), + [anon_sym_continue_AT] = ACTIONS(1756), + [anon_sym_break_AT] = ACTIONS(1756), + [anon_sym_this_AT] = ACTIONS(1756), + [anon_sym_super_AT] = ACTIONS(1756), + [sym_real_literal] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [sym_hex_literal] = ACTIONS(1756), + [sym_bin_literal] = ACTIONS(1756), + [anon_sym_true] = ACTIONS(1754), + [anon_sym_false] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1756), + }, + [3204] = { + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_object] = ACTIONS(1738), + [anon_sym_fun] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(1738), + [anon_sym_set] = ACTIONS(1738), + [anon_sym_this] = ACTIONS(1738), + [anon_sym_super] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1738), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_null] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1738), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_when] = ACTIONS(1738), + [anon_sym_try] = ACTIONS(1738), + [anon_sym_throw] = ACTIONS(1738), + [anon_sym_return] = ACTIONS(1738), + [anon_sym_continue] = ACTIONS(1738), + [anon_sym_break] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_BANG_BANG] = ACTIONS(1740), + [anon_sym_data] = ACTIONS(1738), + [anon_sym_inner] = ACTIONS(1738), + [anon_sym_value] = ACTIONS(1738), + [anon_sym_expect] = ACTIONS(1738), + [anon_sym_actual] = ACTIONS(1738), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1740), + [anon_sym_continue_AT] = ACTIONS(1740), + [anon_sym_break_AT] = ACTIONS(1740), + [anon_sym_this_AT] = ACTIONS(1740), + [anon_sym_super_AT] = ACTIONS(1740), + [sym_real_literal] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [sym_hex_literal] = ACTIONS(1740), + [sym_bin_literal] = ACTIONS(1740), + [anon_sym_true] = ACTIONS(1738), + [anon_sym_false] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1740), + }, + [3205] = { + [sym_type_constraints] = STATE(3330), + [sym_enum_class_body] = STATE(3464), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + }, + [3206] = { + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_object] = ACTIONS(4164), + [anon_sym_fun] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_this] = ACTIONS(4164), + [anon_sym_super] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(6607), + [sym__quest] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [sym_label] = ACTIONS(4164), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_null] = ACTIONS(4164), + [anon_sym_if] = ACTIONS(4164), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_try] = ACTIONS(4164), + [anon_sym_throw] = ACTIONS(4164), + [anon_sym_return] = ACTIONS(4164), + [anon_sym_continue] = ACTIONS(4164), + [anon_sym_break] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4166), + [anon_sym_continue_AT] = ACTIONS(4166), + [anon_sym_break_AT] = ACTIONS(4166), + [anon_sym_this_AT] = ACTIONS(4166), + [anon_sym_super_AT] = ACTIONS(4166), + [sym_real_literal] = ACTIONS(4166), + [sym_integer_literal] = ACTIONS(4164), + [sym_hex_literal] = ACTIONS(4166), + [sym_bin_literal] = ACTIONS(4166), + [anon_sym_true] = ACTIONS(4164), + [anon_sym_false] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4166), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4166), + }, + [3207] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_object] = ACTIONS(123), + [anon_sym_fun] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_this] = ACTIONS(123), + [anon_sym_super] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [sym_label] = ACTIONS(123), + [anon_sym_in] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_null] = ACTIONS(123), + [anon_sym_if] = ACTIONS(123), + [anon_sym_else] = ACTIONS(123), + [anon_sym_when] = ACTIONS(123), + [anon_sym_try] = ACTIONS(123), + [anon_sym_throw] = ACTIONS(123), + [anon_sym_return] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_break] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG] = ACTIONS(123), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(121), + [anon_sym_continue_AT] = ACTIONS(121), + [anon_sym_break_AT] = ACTIONS(121), + [anon_sym_this_AT] = ACTIONS(121), + [anon_sym_super_AT] = ACTIONS(121), + [sym_real_literal] = ACTIONS(121), + [sym_integer_literal] = ACTIONS(123), + [sym_hex_literal] = ACTIONS(121), + [sym_bin_literal] = ACTIONS(121), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), + [anon_sym_SQUOTE] = ACTIONS(121), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(121), + }, + [3208] = { + [sym_class_body] = STATE(3465), + [sym_type_constraints] = STATE(3329), + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_RBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_RPAREN] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(4414), + [sym_label] = ACTIONS(4414), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_while] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_suspend] = ACTIONS(4412), + [anon_sym_sealed] = ACTIONS(4412), + [anon_sym_annotation] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_override] = ACTIONS(4412), + [anon_sym_lateinit] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_internal] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_tailrec] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_infix] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym_external] = ACTIONS(4412), + [sym_property_modifier] = ACTIONS(4412), + [anon_sym_abstract] = ACTIONS(4412), + [anon_sym_final] = ACTIONS(4412), + [anon_sym_open] = ACTIONS(4412), + [anon_sym_vararg] = ACTIONS(4412), + [anon_sym_noinline] = ACTIONS(4412), + [anon_sym_crossinline] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), + [sym_multiline_comment] = ACTIONS(3), + }, + [3209] = { [sym__alpha_identifier] = ACTIONS(5081), [anon_sym_AT] = ACTIONS(5083), [anon_sym_LBRACK] = ACTIONS(5083), @@ -374366,177 +376675,772 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5083), }, - [3186] = { - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_object] = ACTIONS(1816), - [anon_sym_fun] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_super] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1816), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_when] = ACTIONS(1816), - [anon_sym_try] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_data] = ACTIONS(1816), - [anon_sym_inner] = ACTIONS(1816), - [anon_sym_value] = ACTIONS(1816), - [anon_sym_expect] = ACTIONS(1816), - [anon_sym_actual] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1818), - [anon_sym_continue_AT] = ACTIONS(1818), - [anon_sym_break_AT] = ACTIONS(1818), - [anon_sym_this_AT] = ACTIONS(1818), - [anon_sym_super_AT] = ACTIONS(1818), - [sym_real_literal] = ACTIONS(1818), - [sym_integer_literal] = ACTIONS(1816), - [sym_hex_literal] = ACTIONS(1818), - [sym_bin_literal] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1818), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1818), + [3210] = { + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5101), + [anon_sym_EQ] = ACTIONS(5101), + [anon_sym_LBRACE] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(5103), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_object] = ACTIONS(5101), + [anon_sym_fun] = ACTIONS(5101), + [anon_sym_SEMI] = ACTIONS(5103), + [anon_sym_get] = ACTIONS(5101), + [anon_sym_set] = ACTIONS(5101), + [anon_sym_this] = ACTIONS(5101), + [anon_sym_super] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [sym_label] = ACTIONS(5101), + [anon_sym_in] = ACTIONS(5101), + [anon_sym_DOT_DOT] = ACTIONS(5103), + [anon_sym_QMARK_COLON] = ACTIONS(5103), + [anon_sym_AMP_AMP] = ACTIONS(5103), + [anon_sym_PIPE_PIPE] = ACTIONS(5103), + [anon_sym_null] = ACTIONS(5101), + [anon_sym_if] = ACTIONS(5101), + [anon_sym_else] = ACTIONS(5101), + [anon_sym_when] = ACTIONS(5101), + [anon_sym_try] = ACTIONS(5101), + [anon_sym_throw] = ACTIONS(5101), + [anon_sym_return] = ACTIONS(5101), + [anon_sym_continue] = ACTIONS(5101), + [anon_sym_break] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5103), + [anon_sym_PLUS_EQ] = ACTIONS(5103), + [anon_sym_DASH_EQ] = ACTIONS(5103), + [anon_sym_STAR_EQ] = ACTIONS(5103), + [anon_sym_SLASH_EQ] = ACTIONS(5103), + [anon_sym_PERCENT_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), + [anon_sym_LT_EQ] = ACTIONS(5103), + [anon_sym_GT_EQ] = ACTIONS(5103), + [anon_sym_BANGin] = ACTIONS(5103), + [anon_sym_is] = ACTIONS(5101), + [anon_sym_BANGis] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_PERCENT] = ACTIONS(5101), + [anon_sym_as_QMARK] = ACTIONS(5103), + [anon_sym_PLUS_PLUS] = ACTIONS(5103), + [anon_sym_DASH_DASH] = ACTIONS(5103), + [anon_sym_BANG] = ACTIONS(5101), + [anon_sym_BANG_BANG] = ACTIONS(5103), + [anon_sym_data] = ACTIONS(5101), + [anon_sym_inner] = ACTIONS(5101), + [anon_sym_value] = ACTIONS(5101), + [anon_sym_expect] = ACTIONS(5101), + [anon_sym_actual] = ACTIONS(5101), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5103), + [anon_sym_continue_AT] = ACTIONS(5103), + [anon_sym_break_AT] = ACTIONS(5103), + [anon_sym_this_AT] = ACTIONS(5103), + [anon_sym_super_AT] = ACTIONS(5103), + [sym_real_literal] = ACTIONS(5103), + [sym_integer_literal] = ACTIONS(5101), + [sym_hex_literal] = ACTIONS(5103), + [sym_bin_literal] = ACTIONS(5103), + [anon_sym_true] = ACTIONS(5101), + [anon_sym_false] = ACTIONS(5101), + [anon_sym_SQUOTE] = ACTIONS(5103), + [sym__backtick_identifier] = ACTIONS(5103), + [sym__automatic_semicolon] = ACTIONS(5103), + [sym_safe_nav] = ACTIONS(5103), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5103), }, - [3187] = { - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_object] = ACTIONS(211), - [anon_sym_fun] = ACTIONS(211), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(211), - [anon_sym_set] = ACTIONS(211), - [anon_sym_this] = ACTIONS(211), - [anon_sym_super] = ACTIONS(211), - [anon_sym_STAR] = ACTIONS(211), - [sym_label] = ACTIONS(211), - [anon_sym_in] = ACTIONS(211), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_null] = ACTIONS(211), - [anon_sym_if] = ACTIONS(211), - [anon_sym_else] = ACTIONS(211), - [anon_sym_when] = ACTIONS(211), - [anon_sym_try] = ACTIONS(211), - [anon_sym_throw] = ACTIONS(211), - [anon_sym_return] = ACTIONS(211), - [anon_sym_continue] = ACTIONS(211), - [anon_sym_break] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [anon_sym_BANG] = ACTIONS(211), - [anon_sym_BANG_BANG] = ACTIONS(209), - [anon_sym_data] = ACTIONS(211), - [anon_sym_inner] = ACTIONS(211), - [anon_sym_value] = ACTIONS(211), - [anon_sym_expect] = ACTIONS(211), - [anon_sym_actual] = ACTIONS(211), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(209), - [anon_sym_continue_AT] = ACTIONS(209), - [anon_sym_break_AT] = ACTIONS(209), - [anon_sym_this_AT] = ACTIONS(209), - [anon_sym_super_AT] = ACTIONS(209), - [sym_real_literal] = ACTIONS(209), - [sym_integer_literal] = ACTIONS(211), - [sym_hex_literal] = ACTIONS(209), - [sym_bin_literal] = ACTIONS(209), - [anon_sym_true] = ACTIONS(211), - [anon_sym_false] = ACTIONS(211), - [anon_sym_SQUOTE] = ACTIONS(209), - [sym__backtick_identifier] = ACTIONS(209), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(209), + [3211] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_object] = ACTIONS(5085), + [anon_sym_fun] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_this] = ACTIONS(5085), + [anon_sym_super] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [sym_label] = ACTIONS(5085), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_null] = ACTIONS(5085), + [anon_sym_if] = ACTIONS(5085), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_when] = ACTIONS(5085), + [anon_sym_try] = ACTIONS(5085), + [anon_sym_throw] = ACTIONS(5085), + [anon_sym_return] = ACTIONS(5085), + [anon_sym_continue] = ACTIONS(5085), + [anon_sym_break] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5087), + [anon_sym_continue_AT] = ACTIONS(5087), + [anon_sym_break_AT] = ACTIONS(5087), + [anon_sym_this_AT] = ACTIONS(5087), + [anon_sym_super_AT] = ACTIONS(5087), + [sym_real_literal] = ACTIONS(5087), + [sym_integer_literal] = ACTIONS(5085), + [sym_hex_literal] = ACTIONS(5087), + [sym_bin_literal] = ACTIONS(5087), + [anon_sym_true] = ACTIONS(5085), + [anon_sym_false] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5087), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5087), }, - [3188] = { + [3212] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_where] = ACTIONS(4940), + [anon_sym_object] = ACTIONS(4940), + [anon_sym_fun] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4942), + [anon_sym_get] = ACTIONS(4940), + [anon_sym_set] = ACTIONS(4940), + [anon_sym_this] = ACTIONS(4940), + [anon_sym_super] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [sym_label] = ACTIONS(4940), + [anon_sym_in] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_QMARK_COLON] = ACTIONS(4942), + [anon_sym_AMP_AMP] = ACTIONS(4942), + [anon_sym_PIPE_PIPE] = ACTIONS(4942), + [anon_sym_null] = ACTIONS(4940), + [anon_sym_if] = ACTIONS(4940), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_when] = ACTIONS(4940), + [anon_sym_try] = ACTIONS(4940), + [anon_sym_throw] = ACTIONS(4940), + [anon_sym_return] = ACTIONS(4940), + [anon_sym_continue] = ACTIONS(4940), + [anon_sym_break] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_PERCENT_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_BANGin] = ACTIONS(4942), + [anon_sym_is] = ACTIONS(4940), + [anon_sym_BANGis] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_as_QMARK] = ACTIONS(4942), + [anon_sym_PLUS_PLUS] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_BANG_BANG] = ACTIONS(4942), + [anon_sym_data] = ACTIONS(4940), + [anon_sym_inner] = ACTIONS(4940), + [anon_sym_value] = ACTIONS(4940), + [anon_sym_expect] = ACTIONS(4940), + [anon_sym_actual] = ACTIONS(4940), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4942), + [anon_sym_continue_AT] = ACTIONS(4942), + [anon_sym_break_AT] = ACTIONS(4942), + [anon_sym_this_AT] = ACTIONS(4942), + [anon_sym_super_AT] = ACTIONS(4942), + [sym_real_literal] = ACTIONS(4942), + [sym_integer_literal] = ACTIONS(4940), + [sym_hex_literal] = ACTIONS(4942), + [sym_bin_literal] = ACTIONS(4942), + [anon_sym_true] = ACTIONS(4940), + [anon_sym_false] = ACTIONS(4940), + [anon_sym_SQUOTE] = ACTIONS(4942), + [sym__backtick_identifier] = ACTIONS(4942), + [sym__automatic_semicolon] = ACTIONS(4942), + [sym_safe_nav] = ACTIONS(4942), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4942), + }, + [3213] = { + [sym__alpha_identifier] = ACTIONS(4999), + [anon_sym_AT] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(5001), + [anon_sym_super_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), + }, + [3214] = { + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_RBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [anon_sym_DASH_GT] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [3215] = { + [aux_sym_type_constraints_repeat1] = STATE(3256), + [sym__alpha_identifier] = ACTIONS(4388), + [anon_sym_AT] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_as] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(4390), + [anon_sym_by] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_where] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_get] = ACTIONS(4388), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4388), + [anon_sym_DASH_GT] = ACTIONS(4390), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4388), + [anon_sym_while] = ACTIONS(4388), + [anon_sym_DOT_DOT] = ACTIONS(4390), + [anon_sym_QMARK_COLON] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_PLUS_EQ] = ACTIONS(4390), + [anon_sym_DASH_EQ] = ACTIONS(4390), + [anon_sym_STAR_EQ] = ACTIONS(4390), + [anon_sym_SLASH_EQ] = ACTIONS(4390), + [anon_sym_PERCENT_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4390), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_BANGin] = ACTIONS(4390), + [anon_sym_is] = ACTIONS(4388), + [anon_sym_BANGis] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4388), + [anon_sym_SLASH] = ACTIONS(4388), + [anon_sym_PERCENT] = ACTIONS(4388), + [anon_sym_as_QMARK] = ACTIONS(4390), + [anon_sym_PLUS_PLUS] = ACTIONS(4390), + [anon_sym_DASH_DASH] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4390), + [anon_sym_suspend] = ACTIONS(4388), + [anon_sym_sealed] = ACTIONS(4388), + [anon_sym_annotation] = ACTIONS(4388), + [anon_sym_data] = ACTIONS(4388), + [anon_sym_inner] = ACTIONS(4388), + [anon_sym_value] = ACTIONS(4388), + [anon_sym_override] = ACTIONS(4388), + [anon_sym_lateinit] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_internal] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_tailrec] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_infix] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym_external] = ACTIONS(4388), + [sym_property_modifier] = ACTIONS(4388), + [anon_sym_abstract] = ACTIONS(4388), + [anon_sym_final] = ACTIONS(4388), + [anon_sym_open] = ACTIONS(4388), + [anon_sym_vararg] = ACTIONS(4388), + [anon_sym_noinline] = ACTIONS(4388), + [anon_sym_crossinline] = ACTIONS(4388), + [anon_sym_expect] = ACTIONS(4388), + [anon_sym_actual] = ACTIONS(4388), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4390), + [sym_safe_nav] = ACTIONS(4390), + [sym_multiline_comment] = ACTIONS(3), + }, + [3216] = { + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [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_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_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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [3217] = { + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = 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(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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [3218] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6609), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), + }, + [3219] = { [sym__alpha_identifier] = ACTIONS(5089), [anon_sym_AT] = ACTIONS(5091), [anon_sym_LBRACK] = ACTIONS(5091), @@ -374621,2642 +377525,1367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5091), }, - [3189] = { - [sym__alpha_identifier] = ACTIONS(5189), - [anon_sym_AT] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_DOT] = ACTIONS(5189), - [anon_sym_as] = ACTIONS(5189), - [anon_sym_EQ] = ACTIONS(5189), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_where] = ACTIONS(5189), - [anon_sym_object] = ACTIONS(5189), - [anon_sym_fun] = ACTIONS(5189), - [anon_sym_SEMI] = ACTIONS(5191), - [anon_sym_get] = ACTIONS(5189), - [anon_sym_set] = ACTIONS(5189), - [anon_sym_this] = ACTIONS(5189), - [anon_sym_super] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [sym_label] = ACTIONS(5189), - [anon_sym_in] = ACTIONS(5189), - [anon_sym_DOT_DOT] = ACTIONS(5191), - [anon_sym_QMARK_COLON] = ACTIONS(5191), - [anon_sym_AMP_AMP] = ACTIONS(5191), - [anon_sym_PIPE_PIPE] = ACTIONS(5191), - [anon_sym_null] = ACTIONS(5189), - [anon_sym_if] = ACTIONS(5189), - [anon_sym_else] = ACTIONS(5189), - [anon_sym_when] = ACTIONS(5189), - [anon_sym_try] = ACTIONS(5189), - [anon_sym_throw] = ACTIONS(5189), - [anon_sym_return] = ACTIONS(5189), - [anon_sym_continue] = ACTIONS(5189), - [anon_sym_break] = ACTIONS(5189), - [anon_sym_COLON_COLON] = ACTIONS(5191), - [anon_sym_PLUS_EQ] = ACTIONS(5191), - [anon_sym_DASH_EQ] = ACTIONS(5191), - [anon_sym_STAR_EQ] = ACTIONS(5191), - [anon_sym_SLASH_EQ] = ACTIONS(5191), - [anon_sym_PERCENT_EQ] = ACTIONS(5191), - [anon_sym_BANG_EQ] = ACTIONS(5189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5191), - [anon_sym_EQ_EQ] = ACTIONS(5189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5191), - [anon_sym_LT_EQ] = ACTIONS(5191), - [anon_sym_GT_EQ] = ACTIONS(5191), - [anon_sym_BANGin] = ACTIONS(5191), - [anon_sym_is] = ACTIONS(5189), - [anon_sym_BANGis] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_PERCENT] = ACTIONS(5189), - [anon_sym_as_QMARK] = ACTIONS(5191), - [anon_sym_PLUS_PLUS] = ACTIONS(5191), - [anon_sym_DASH_DASH] = ACTIONS(5191), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_BANG_BANG] = ACTIONS(5191), - [anon_sym_data] = ACTIONS(5189), - [anon_sym_inner] = ACTIONS(5189), - [anon_sym_value] = ACTIONS(5189), - [anon_sym_expect] = ACTIONS(5189), - [anon_sym_actual] = ACTIONS(5189), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5191), - [anon_sym_continue_AT] = ACTIONS(5191), - [anon_sym_break_AT] = ACTIONS(5191), - [anon_sym_this_AT] = ACTIONS(5191), - [anon_sym_super_AT] = ACTIONS(5191), - [sym_real_literal] = ACTIONS(5191), - [sym_integer_literal] = ACTIONS(5189), - [sym_hex_literal] = ACTIONS(5191), - [sym_bin_literal] = ACTIONS(5191), - [anon_sym_true] = ACTIONS(5189), - [anon_sym_false] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5191), - [sym__backtick_identifier] = ACTIONS(5191), - [sym__automatic_semicolon] = ACTIONS(5191), - [sym_safe_nav] = ACTIONS(5191), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5191), - }, - [3190] = { - [sym_function_body] = STATE(3454), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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), - }, - [3191] = { - [sym__alpha_identifier] = ACTIONS(5035), - [anon_sym_AT] = ACTIONS(5037), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5037), - [anon_sym_RBRACE] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5037), - [anon_sym_COMMA] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5035), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_where] = ACTIONS(5035), - [anon_sym_object] = ACTIONS(5035), - [anon_sym_fun] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5037), - [anon_sym_get] = ACTIONS(5035), - [anon_sym_set] = ACTIONS(5035), - [anon_sym_this] = ACTIONS(5035), - [anon_sym_super] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [sym_label] = ACTIONS(5035), - [anon_sym_in] = ACTIONS(5035), - [anon_sym_DOT_DOT] = ACTIONS(5037), - [anon_sym_QMARK_COLON] = ACTIONS(5037), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE_PIPE] = ACTIONS(5037), - [anon_sym_null] = ACTIONS(5035), - [anon_sym_if] = ACTIONS(5035), - [anon_sym_else] = ACTIONS(5035), - [anon_sym_when] = ACTIONS(5035), - [anon_sym_try] = ACTIONS(5035), - [anon_sym_throw] = ACTIONS(5035), - [anon_sym_return] = ACTIONS(5035), - [anon_sym_continue] = ACTIONS(5035), - [anon_sym_break] = ACTIONS(5035), - [anon_sym_COLON_COLON] = ACTIONS(5037), - [anon_sym_PLUS_EQ] = ACTIONS(5037), - [anon_sym_DASH_EQ] = ACTIONS(5037), - [anon_sym_STAR_EQ] = ACTIONS(5037), - [anon_sym_SLASH_EQ] = ACTIONS(5037), - [anon_sym_PERCENT_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), - [anon_sym_LT_EQ] = ACTIONS(5037), - [anon_sym_GT_EQ] = ACTIONS(5037), - [anon_sym_BANGin] = ACTIONS(5037), - [anon_sym_is] = ACTIONS(5035), - [anon_sym_BANGis] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_as_QMARK] = ACTIONS(5037), - [anon_sym_PLUS_PLUS] = ACTIONS(5037), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5035), - [anon_sym_BANG_BANG] = ACTIONS(5037), - [anon_sym_data] = ACTIONS(5035), - [anon_sym_inner] = ACTIONS(5035), - [anon_sym_value] = ACTIONS(5035), - [anon_sym_expect] = ACTIONS(5035), - [anon_sym_actual] = ACTIONS(5035), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5037), - [anon_sym_continue_AT] = ACTIONS(5037), - [anon_sym_break_AT] = ACTIONS(5037), - [anon_sym_this_AT] = ACTIONS(5037), - [anon_sym_super_AT] = ACTIONS(5037), - [sym_real_literal] = ACTIONS(5037), - [sym_integer_literal] = ACTIONS(5035), - [sym_hex_literal] = ACTIONS(5037), - [sym_bin_literal] = ACTIONS(5037), - [anon_sym_true] = ACTIONS(5035), - [anon_sym_false] = ACTIONS(5035), - [anon_sym_SQUOTE] = ACTIONS(5037), - [sym__backtick_identifier] = ACTIONS(5037), - [sym__automatic_semicolon] = ACTIONS(5037), - [sym_safe_nav] = ACTIONS(5037), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5037), + [3220] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_DOT] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5111), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_object] = ACTIONS(5109), + [anon_sym_fun] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5109), + [anon_sym_set] = ACTIONS(5109), + [anon_sym_this] = ACTIONS(5109), + [anon_sym_super] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [sym_label] = ACTIONS(5109), + [anon_sym_in] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5111), + [anon_sym_QMARK_COLON] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5111), + [anon_sym_null] = ACTIONS(5109), + [anon_sym_if] = ACTIONS(5109), + [anon_sym_else] = ACTIONS(5109), + [anon_sym_when] = ACTIONS(5109), + [anon_sym_try] = ACTIONS(5109), + [anon_sym_throw] = ACTIONS(5109), + [anon_sym_return] = ACTIONS(5109), + [anon_sym_continue] = ACTIONS(5109), + [anon_sym_break] = ACTIONS(5109), + [anon_sym_COLON_COLON] = ACTIONS(5111), + [anon_sym_PLUS_EQ] = ACTIONS(5111), + [anon_sym_DASH_EQ] = ACTIONS(5111), + [anon_sym_STAR_EQ] = ACTIONS(5111), + [anon_sym_SLASH_EQ] = ACTIONS(5111), + [anon_sym_PERCENT_EQ] = ACTIONS(5111), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_BANGin] = ACTIONS(5111), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_BANGis] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_as_QMARK] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5111), + [anon_sym_BANG] = ACTIONS(5109), + [anon_sym_BANG_BANG] = ACTIONS(5111), + [anon_sym_data] = ACTIONS(5109), + [anon_sym_inner] = ACTIONS(5109), + [anon_sym_value] = ACTIONS(5109), + [anon_sym_expect] = ACTIONS(5109), + [anon_sym_actual] = ACTIONS(5109), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5111), + [anon_sym_continue_AT] = ACTIONS(5111), + [anon_sym_break_AT] = ACTIONS(5111), + [anon_sym_this_AT] = ACTIONS(5111), + [anon_sym_super_AT] = ACTIONS(5111), + [sym_real_literal] = ACTIONS(5111), + [sym_integer_literal] = ACTIONS(5109), + [sym_hex_literal] = ACTIONS(5111), + [sym_bin_literal] = ACTIONS(5111), + [anon_sym_true] = ACTIONS(5109), + [anon_sym_false] = ACTIONS(5109), + [anon_sym_SQUOTE] = ACTIONS(5111), + [sym__backtick_identifier] = ACTIONS(5111), + [sym__automatic_semicolon] = ACTIONS(5111), + [sym_safe_nav] = ACTIONS(5111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5111), }, - [3192] = { - [sym__alpha_identifier] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_as] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym_COMMA] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4040), - [anon_sym_GT] = ACTIONS(4040), - [anon_sym_where] = ACTIONS(4040), - [anon_sym_object] = ACTIONS(4040), - [anon_sym_fun] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_get] = ACTIONS(4040), - [anon_sym_set] = ACTIONS(4040), - [anon_sym_this] = ACTIONS(4040), - [anon_sym_super] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [sym_label] = ACTIONS(4040), - [anon_sym_in] = ACTIONS(4040), - [anon_sym_DOT_DOT] = ACTIONS(4042), - [anon_sym_QMARK_COLON] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_null] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_else] = ACTIONS(4040), - [anon_sym_when] = ACTIONS(4040), - [anon_sym_try] = ACTIONS(4040), - [anon_sym_throw] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_PLUS_EQ] = ACTIONS(4042), - [anon_sym_DASH_EQ] = ACTIONS(4042), - [anon_sym_STAR_EQ] = ACTIONS(4042), - [anon_sym_SLASH_EQ] = ACTIONS(4042), - [anon_sym_PERCENT_EQ] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4042), - [anon_sym_LT_EQ] = ACTIONS(4042), - [anon_sym_GT_EQ] = ACTIONS(4042), - [anon_sym_BANGin] = ACTIONS(4042), - [anon_sym_is] = ACTIONS(4040), - [anon_sym_BANGis] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_SLASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_as_QMARK] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_BANG] = ACTIONS(4040), - [anon_sym_BANG_BANG] = ACTIONS(4042), - [anon_sym_data] = ACTIONS(4040), - [anon_sym_inner] = ACTIONS(4040), - [anon_sym_value] = ACTIONS(4040), - [anon_sym_expect] = ACTIONS(4040), - [anon_sym_actual] = ACTIONS(4040), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4042), - [anon_sym_continue_AT] = ACTIONS(4042), - [anon_sym_break_AT] = ACTIONS(4042), - [anon_sym_this_AT] = ACTIONS(4042), - [anon_sym_super_AT] = ACTIONS(4042), - [sym_real_literal] = ACTIONS(4042), - [sym_integer_literal] = ACTIONS(4040), - [sym_hex_literal] = ACTIONS(4042), - [sym_bin_literal] = ACTIONS(4042), - [anon_sym_true] = ACTIONS(4040), - [anon_sym_false] = ACTIONS(4040), - [anon_sym_SQUOTE] = ACTIONS(4042), - [sym__backtick_identifier] = ACTIONS(4042), - [sym__automatic_semicolon] = ACTIONS(4042), - [sym_safe_nav] = ACTIONS(4042), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4042), + [3221] = { + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, - [3193] = { - [sym_function_body] = STATE(3231), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [3222] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6611), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4188), + [anon_sym_continue_AT] = ACTIONS(4188), + [anon_sym_break_AT] = ACTIONS(4188), + [anon_sym_this_AT] = ACTIONS(4188), + [anon_sym_super_AT] = ACTIONS(4188), + [sym_real_literal] = ACTIONS(4188), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4188), + [sym_bin_literal] = ACTIONS(4188), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4188), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4188), }, - [3194] = { - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(4150), - [anon_sym_LBRACE] = ACTIONS(4152), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [3223] = { + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4613), + [anon_sym_super_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), }, - [3195] = { - [sym__alpha_identifier] = ACTIONS(4864), - [anon_sym_AT] = ACTIONS(4866), - [anon_sym_LBRACK] = ACTIONS(4866), - [anon_sym_DOT] = ACTIONS(4864), - [anon_sym_as] = ACTIONS(4864), - [anon_sym_EQ] = ACTIONS(4864), - [anon_sym_LBRACE] = ACTIONS(4866), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4866), - [anon_sym_COMMA] = ACTIONS(4866), - [anon_sym_LT] = ACTIONS(4864), - [anon_sym_GT] = ACTIONS(4864), - [anon_sym_where] = ACTIONS(4864), - [anon_sym_object] = ACTIONS(4864), - [anon_sym_fun] = ACTIONS(4864), - [anon_sym_SEMI] = ACTIONS(4866), - [anon_sym_get] = ACTIONS(4864), - [anon_sym_set] = ACTIONS(4864), - [anon_sym_this] = ACTIONS(4864), - [anon_sym_super] = ACTIONS(4864), - [anon_sym_STAR] = ACTIONS(4864), - [sym_label] = ACTIONS(4864), - [anon_sym_in] = ACTIONS(4864), - [anon_sym_DOT_DOT] = ACTIONS(4866), - [anon_sym_QMARK_COLON] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_PIPE_PIPE] = ACTIONS(4866), - [anon_sym_null] = ACTIONS(4864), - [anon_sym_if] = ACTIONS(4864), - [anon_sym_else] = ACTIONS(4864), - [anon_sym_when] = ACTIONS(4864), - [anon_sym_try] = ACTIONS(4864), - [anon_sym_throw] = ACTIONS(4864), - [anon_sym_return] = ACTIONS(4864), - [anon_sym_continue] = ACTIONS(4864), - [anon_sym_break] = ACTIONS(4864), - [anon_sym_COLON_COLON] = ACTIONS(4866), - [anon_sym_PLUS_EQ] = ACTIONS(4866), - [anon_sym_DASH_EQ] = ACTIONS(4866), - [anon_sym_STAR_EQ] = ACTIONS(4866), - [anon_sym_SLASH_EQ] = ACTIONS(4866), - [anon_sym_PERCENT_EQ] = ACTIONS(4866), - [anon_sym_BANG_EQ] = ACTIONS(4864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4866), - [anon_sym_EQ_EQ] = ACTIONS(4864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4866), - [anon_sym_LT_EQ] = ACTIONS(4866), - [anon_sym_GT_EQ] = ACTIONS(4866), - [anon_sym_BANGin] = ACTIONS(4866), - [anon_sym_is] = ACTIONS(4864), - [anon_sym_BANGis] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4864), - [anon_sym_DASH] = ACTIONS(4864), - [anon_sym_SLASH] = ACTIONS(4864), - [anon_sym_PERCENT] = ACTIONS(4864), - [anon_sym_as_QMARK] = ACTIONS(4866), - [anon_sym_PLUS_PLUS] = ACTIONS(4866), - [anon_sym_DASH_DASH] = ACTIONS(4866), - [anon_sym_BANG] = ACTIONS(4864), - [anon_sym_BANG_BANG] = ACTIONS(4866), - [anon_sym_data] = ACTIONS(4864), - [anon_sym_inner] = ACTIONS(4864), - [anon_sym_value] = ACTIONS(4864), - [anon_sym_expect] = ACTIONS(4864), - [anon_sym_actual] = ACTIONS(4864), + [3224] = { + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_object] = ACTIONS(5121), + [anon_sym_fun] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_this] = ACTIONS(5121), + [anon_sym_super] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [sym_label] = ACTIONS(5121), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_null] = ACTIONS(5121), + [anon_sym_if] = ACTIONS(5121), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_when] = ACTIONS(5121), + [anon_sym_try] = ACTIONS(5121), + [anon_sym_throw] = ACTIONS(5121), + [anon_sym_return] = ACTIONS(5121), + [anon_sym_continue] = ACTIONS(5121), + [anon_sym_break] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5121), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4866), - [anon_sym_continue_AT] = ACTIONS(4866), - [anon_sym_break_AT] = ACTIONS(4866), - [anon_sym_this_AT] = ACTIONS(4866), - [anon_sym_super_AT] = ACTIONS(4866), - [sym_real_literal] = ACTIONS(4866), - [sym_integer_literal] = ACTIONS(4864), - [sym_hex_literal] = ACTIONS(4866), - [sym_bin_literal] = ACTIONS(4866), - [anon_sym_true] = ACTIONS(4864), - [anon_sym_false] = ACTIONS(4864), - [anon_sym_SQUOTE] = ACTIONS(4866), - [sym__backtick_identifier] = ACTIONS(4866), - [sym__automatic_semicolon] = ACTIONS(4866), - [sym_safe_nav] = ACTIONS(4866), + [anon_sym_return_AT] = ACTIONS(5123), + [anon_sym_continue_AT] = ACTIONS(5123), + [anon_sym_break_AT] = ACTIONS(5123), + [anon_sym_this_AT] = ACTIONS(5123), + [anon_sym_super_AT] = ACTIONS(5123), + [sym_real_literal] = ACTIONS(5123), + [sym_integer_literal] = ACTIONS(5121), + [sym_hex_literal] = ACTIONS(5123), + [sym_bin_literal] = ACTIONS(5123), + [anon_sym_true] = ACTIONS(5121), + [anon_sym_false] = ACTIONS(5121), + [anon_sym_SQUOTE] = ACTIONS(5123), + [sym__backtick_identifier] = ACTIONS(5123), + [sym__automatic_semicolon] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4866), + [sym__string_start] = ACTIONS(5123), }, - [3196] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_EQ] = ACTIONS(4317), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_object] = ACTIONS(4315), - [anon_sym_fun] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_this] = ACTIONS(4315), - [anon_sym_super] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(6668), - [sym__quest] = ACTIONS(4317), - [anon_sym_STAR] = ACTIONS(4317), - [sym_label] = ACTIONS(4315), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_null] = ACTIONS(4315), - [anon_sym_if] = ACTIONS(4315), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_when] = ACTIONS(4315), - [anon_sym_try] = ACTIONS(4315), - [anon_sym_throw] = ACTIONS(4315), - [anon_sym_return] = ACTIONS(4315), - [anon_sym_continue] = ACTIONS(4315), - [anon_sym_break] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG] = ACTIONS(4315), - [anon_sym_suspend] = ACTIONS(4315), - [anon_sym_sealed] = ACTIONS(4315), - [anon_sym_annotation] = ACTIONS(4315), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_override] = ACTIONS(4315), - [anon_sym_lateinit] = ACTIONS(4315), - [anon_sym_public] = ACTIONS(4315), - [anon_sym_private] = ACTIONS(4315), - [anon_sym_internal] = ACTIONS(4315), - [anon_sym_protected] = ACTIONS(4315), - [anon_sym_tailrec] = ACTIONS(4315), - [anon_sym_operator] = ACTIONS(4315), - [anon_sym_infix] = ACTIONS(4315), - [anon_sym_inline] = ACTIONS(4315), - [anon_sym_external] = ACTIONS(4315), - [sym_property_modifier] = ACTIONS(4315), - [anon_sym_abstract] = ACTIONS(4315), - [anon_sym_final] = ACTIONS(4315), - [anon_sym_open] = ACTIONS(4315), - [anon_sym_vararg] = ACTIONS(4315), - [anon_sym_noinline] = ACTIONS(4315), - [anon_sym_crossinline] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4317), - [anon_sym_continue_AT] = ACTIONS(4317), - [anon_sym_break_AT] = ACTIONS(4317), - [anon_sym_this_AT] = ACTIONS(4317), - [anon_sym_super_AT] = ACTIONS(4317), - [sym_real_literal] = ACTIONS(4317), - [sym_integer_literal] = ACTIONS(4315), - [sym_hex_literal] = ACTIONS(4317), - [sym_bin_literal] = ACTIONS(4317), - [anon_sym_true] = ACTIONS(4315), - [anon_sym_false] = ACTIONS(4315), - [anon_sym_SQUOTE] = ACTIONS(4317), - [sym__backtick_identifier] = ACTIONS(4317), - [sym__automatic_semicolon] = ACTIONS(4317), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4317), - }, - [3197] = { - [sym__alpha_identifier] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3114), - [anon_sym_as] = ACTIONS(3114), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_object] = ACTIONS(3114), - [anon_sym_fun] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3114), - [anon_sym_set] = ACTIONS(3114), - [anon_sym_this] = ACTIONS(3114), - [anon_sym_super] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [sym_label] = ACTIONS(3114), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(3116), - [anon_sym_QMARK_COLON] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_null] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_when] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3116), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_as_QMARK] = ACTIONS(3116), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_BANG_BANG] = ACTIONS(3116), - [anon_sym_data] = ACTIONS(3114), - [anon_sym_inner] = ACTIONS(3114), - [anon_sym_value] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3114), - [anon_sym_actual] = ACTIONS(3114), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3116), - [anon_sym_continue_AT] = ACTIONS(3116), - [anon_sym_break_AT] = ACTIONS(3116), - [anon_sym_this_AT] = ACTIONS(3116), - [anon_sym_super_AT] = ACTIONS(3116), - [sym_real_literal] = ACTIONS(3116), - [sym_integer_literal] = ACTIONS(3114), - [sym_hex_literal] = ACTIONS(3116), - [sym_bin_literal] = ACTIONS(3116), - [anon_sym_true] = ACTIONS(3114), - [anon_sym_false] = ACTIONS(3114), - [anon_sym_SQUOTE] = ACTIONS(3116), - [sym__backtick_identifier] = ACTIONS(3116), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(3116), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3116), + [3225] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(6613), + [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_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_this] = ACTIONS(4840), + [anon_sym_super] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4840), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), }, - [3198] = { - [sym_type_constraints] = STATE(3362), - [sym_enum_class_body] = STATE(3491), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_RBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_RPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_DASH_GT] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [3226] = { + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_object] = ACTIONS(5117), + [anon_sym_fun] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_this] = ACTIONS(5117), + [anon_sym_super] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [sym_label] = ACTIONS(5117), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_null] = ACTIONS(5117), + [anon_sym_if] = ACTIONS(5117), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_when] = ACTIONS(5117), + [anon_sym_try] = ACTIONS(5117), + [anon_sym_throw] = ACTIONS(5117), + [anon_sym_return] = ACTIONS(5117), + [anon_sym_continue] = ACTIONS(5117), + [anon_sym_break] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5117), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5119), + [anon_sym_continue_AT] = ACTIONS(5119), + [anon_sym_break_AT] = ACTIONS(5119), + [anon_sym_this_AT] = ACTIONS(5119), + [anon_sym_super_AT] = ACTIONS(5119), + [sym_real_literal] = ACTIONS(5119), + [sym_integer_literal] = ACTIONS(5117), + [sym_hex_literal] = ACTIONS(5119), + [sym_bin_literal] = ACTIONS(5119), + [anon_sym_true] = ACTIONS(5117), + [anon_sym_false] = ACTIONS(5117), + [anon_sym_SQUOTE] = ACTIONS(5119), + [sym__backtick_identifier] = ACTIONS(5119), + [sym__automatic_semicolon] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5119), }, - [3199] = { - [sym__alpha_identifier] = ACTIONS(5051), - [anon_sym_AT] = ACTIONS(5053), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5051), - [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_SEMI] = ACTIONS(5053), - [anon_sym_get] = ACTIONS(5051), - [anon_sym_set] = ACTIONS(5051), - [anon_sym_this] = ACTIONS(5051), - [anon_sym_super] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [sym_label] = ACTIONS(5051), - [anon_sym_in] = ACTIONS(5051), - [anon_sym_DOT_DOT] = ACTIONS(5053), - [anon_sym_QMARK_COLON] = ACTIONS(5053), - [anon_sym_AMP_AMP] = ACTIONS(5053), - [anon_sym_PIPE_PIPE] = ACTIONS(5053), - [anon_sym_null] = ACTIONS(5051), - [anon_sym_if] = ACTIONS(5051), - [anon_sym_else] = ACTIONS(5051), - [anon_sym_when] = ACTIONS(5051), - [anon_sym_try] = ACTIONS(5051), - [anon_sym_throw] = ACTIONS(5051), - [anon_sym_return] = ACTIONS(5051), - [anon_sym_continue] = ACTIONS(5051), - [anon_sym_break] = ACTIONS(5051), - [anon_sym_COLON_COLON] = ACTIONS(5053), - [anon_sym_PLUS_EQ] = ACTIONS(5053), - [anon_sym_DASH_EQ] = ACTIONS(5053), - [anon_sym_STAR_EQ] = ACTIONS(5053), - [anon_sym_SLASH_EQ] = ACTIONS(5053), - [anon_sym_PERCENT_EQ] = ACTIONS(5053), - [anon_sym_BANG_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), - [anon_sym_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), - [anon_sym_LT_EQ] = ACTIONS(5053), - [anon_sym_GT_EQ] = ACTIONS(5053), - [anon_sym_BANGin] = ACTIONS(5053), - [anon_sym_is] = ACTIONS(5051), - [anon_sym_BANGis] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_as_QMARK] = ACTIONS(5053), - [anon_sym_PLUS_PLUS] = ACTIONS(5053), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5051), - [anon_sym_BANG_BANG] = ACTIONS(5053), - [anon_sym_data] = ACTIONS(5051), - [anon_sym_inner] = ACTIONS(5051), - [anon_sym_value] = ACTIONS(5051), - [anon_sym_expect] = ACTIONS(5051), - [anon_sym_actual] = ACTIONS(5051), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5053), - [anon_sym_continue_AT] = ACTIONS(5053), - [anon_sym_break_AT] = ACTIONS(5053), - [anon_sym_this_AT] = ACTIONS(5053), - [anon_sym_super_AT] = ACTIONS(5053), - [sym_real_literal] = ACTIONS(5053), - [sym_integer_literal] = ACTIONS(5051), - [sym_hex_literal] = ACTIONS(5053), - [sym_bin_literal] = ACTIONS(5053), - [anon_sym_true] = ACTIONS(5051), - [anon_sym_false] = ACTIONS(5051), - [anon_sym_SQUOTE] = ACTIONS(5053), - [sym__backtick_identifier] = ACTIONS(5053), - [sym__automatic_semicolon] = ACTIONS(5053), - [sym_safe_nav] = ACTIONS(5053), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5053), - }, - [3200] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_RBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_constructor] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_RPAREN] = ACTIONS(3995), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_DASH_GT] = ACTIONS(3995), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), + [3227] = { + [sym__alpha_identifier] = ACTIONS(5023), + [anon_sym_AT] = ACTIONS(5025), + [anon_sym_LBRACK] = ACTIONS(5025), + [anon_sym_DOT] = ACTIONS(5023), + [anon_sym_as] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5025), + [anon_sym_RBRACE] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5023), + [anon_sym_GT] = ACTIONS(5023), + [anon_sym_where] = ACTIONS(5023), + [anon_sym_object] = ACTIONS(5023), + [anon_sym_fun] = ACTIONS(5023), + [anon_sym_SEMI] = ACTIONS(5025), + [anon_sym_get] = ACTIONS(5023), + [anon_sym_set] = ACTIONS(5023), + [anon_sym_this] = ACTIONS(5023), + [anon_sym_super] = ACTIONS(5023), + [anon_sym_STAR] = ACTIONS(5023), + [sym_label] = ACTIONS(5023), + [anon_sym_in] = ACTIONS(5023), + [anon_sym_DOT_DOT] = ACTIONS(5025), + [anon_sym_QMARK_COLON] = ACTIONS(5025), + [anon_sym_AMP_AMP] = ACTIONS(5025), + [anon_sym_PIPE_PIPE] = ACTIONS(5025), + [anon_sym_null] = ACTIONS(5023), + [anon_sym_if] = ACTIONS(5023), + [anon_sym_else] = ACTIONS(5023), + [anon_sym_when] = ACTIONS(5023), + [anon_sym_try] = ACTIONS(5023), + [anon_sym_throw] = ACTIONS(5023), + [anon_sym_return] = ACTIONS(5023), + [anon_sym_continue] = ACTIONS(5023), + [anon_sym_break] = ACTIONS(5023), + [anon_sym_COLON_COLON] = ACTIONS(5025), + [anon_sym_PLUS_EQ] = ACTIONS(5025), + [anon_sym_DASH_EQ] = ACTIONS(5025), + [anon_sym_STAR_EQ] = ACTIONS(5025), + [anon_sym_SLASH_EQ] = ACTIONS(5025), + [anon_sym_PERCENT_EQ] = ACTIONS(5025), + [anon_sym_BANG_EQ] = ACTIONS(5023), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5025), + [anon_sym_EQ_EQ] = ACTIONS(5023), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5025), + [anon_sym_LT_EQ] = ACTIONS(5025), + [anon_sym_GT_EQ] = ACTIONS(5025), + [anon_sym_BANGin] = ACTIONS(5025), + [anon_sym_is] = ACTIONS(5023), + [anon_sym_BANGis] = ACTIONS(5025), + [anon_sym_PLUS] = ACTIONS(5023), + [anon_sym_DASH] = ACTIONS(5023), + [anon_sym_SLASH] = ACTIONS(5023), + [anon_sym_PERCENT] = ACTIONS(5023), + [anon_sym_as_QMARK] = ACTIONS(5025), + [anon_sym_PLUS_PLUS] = ACTIONS(5025), + [anon_sym_DASH_DASH] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5023), + [anon_sym_BANG_BANG] = ACTIONS(5025), + [anon_sym_data] = ACTIONS(5023), + [anon_sym_inner] = ACTIONS(5023), + [anon_sym_value] = ACTIONS(5023), + [anon_sym_expect] = ACTIONS(5023), + [anon_sym_actual] = ACTIONS(5023), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5025), + [anon_sym_continue_AT] = ACTIONS(5025), + [anon_sym_break_AT] = ACTIONS(5025), + [anon_sym_this_AT] = ACTIONS(5025), + [anon_sym_super_AT] = ACTIONS(5025), + [sym_real_literal] = ACTIONS(5025), + [sym_integer_literal] = ACTIONS(5023), + [sym_hex_literal] = ACTIONS(5025), + [sym_bin_literal] = ACTIONS(5025), + [anon_sym_true] = ACTIONS(5023), + [anon_sym_false] = ACTIONS(5023), + [anon_sym_SQUOTE] = ACTIONS(5025), + [sym__backtick_identifier] = ACTIONS(5025), + [sym__automatic_semicolon] = ACTIONS(5025), + [sym_safe_nav] = ACTIONS(5025), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5025), }, - [3201] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_object] = ACTIONS(4894), - [anon_sym_fun] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_this] = ACTIONS(4894), - [anon_sym_super] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [sym_label] = ACTIONS(4894), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_null] = ACTIONS(4894), - [anon_sym_if] = ACTIONS(4894), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_when] = ACTIONS(4894), - [anon_sym_try] = ACTIONS(4894), - [anon_sym_throw] = ACTIONS(4894), - [anon_sym_return] = ACTIONS(4894), - [anon_sym_continue] = ACTIONS(4894), - [anon_sym_break] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4894), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4896), - [anon_sym_continue_AT] = ACTIONS(4896), - [anon_sym_break_AT] = ACTIONS(4896), - [anon_sym_this_AT] = ACTIONS(4896), - [anon_sym_super_AT] = ACTIONS(4896), - [sym_real_literal] = ACTIONS(4896), - [sym_integer_literal] = ACTIONS(4894), - [sym_hex_literal] = ACTIONS(4896), - [sym_bin_literal] = ACTIONS(4896), - [anon_sym_true] = ACTIONS(4894), - [anon_sym_false] = ACTIONS(4894), - [anon_sym_SQUOTE] = ACTIONS(4896), - [sym__backtick_identifier] = ACTIONS(4896), - [sym__automatic_semicolon] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4896), - }, - [3202] = { - [sym__alpha_identifier] = ACTIONS(4878), - [anon_sym_AT] = ACTIONS(4880), - [anon_sym_LBRACK] = ACTIONS(4880), - [anon_sym_DOT] = ACTIONS(4878), - [anon_sym_as] = ACTIONS(4878), - [anon_sym_EQ] = ACTIONS(4878), - [anon_sym_LBRACE] = ACTIONS(4880), - [anon_sym_RBRACE] = ACTIONS(4880), - [anon_sym_LPAREN] = ACTIONS(4880), - [anon_sym_COMMA] = ACTIONS(4880), - [anon_sym_LT] = ACTIONS(4878), - [anon_sym_GT] = ACTIONS(4878), - [anon_sym_where] = ACTIONS(4878), - [anon_sym_object] = ACTIONS(4878), - [anon_sym_fun] = ACTIONS(4878), - [anon_sym_SEMI] = ACTIONS(4880), - [anon_sym_get] = ACTIONS(4878), - [anon_sym_set] = ACTIONS(4878), - [anon_sym_this] = ACTIONS(4878), - [anon_sym_super] = ACTIONS(4878), - [anon_sym_STAR] = ACTIONS(4878), - [sym_label] = ACTIONS(4878), - [anon_sym_in] = ACTIONS(4878), - [anon_sym_DOT_DOT] = ACTIONS(4880), - [anon_sym_QMARK_COLON] = ACTIONS(4880), - [anon_sym_AMP_AMP] = ACTIONS(4880), - [anon_sym_PIPE_PIPE] = ACTIONS(4880), - [anon_sym_null] = ACTIONS(4878), - [anon_sym_if] = ACTIONS(4878), - [anon_sym_else] = ACTIONS(4878), - [anon_sym_when] = ACTIONS(4878), - [anon_sym_try] = ACTIONS(4878), - [anon_sym_throw] = ACTIONS(4878), - [anon_sym_return] = ACTIONS(4878), - [anon_sym_continue] = ACTIONS(4878), - [anon_sym_break] = ACTIONS(4878), - [anon_sym_COLON_COLON] = ACTIONS(4880), - [anon_sym_PLUS_EQ] = ACTIONS(4880), - [anon_sym_DASH_EQ] = ACTIONS(4880), - [anon_sym_STAR_EQ] = ACTIONS(4880), - [anon_sym_SLASH_EQ] = ACTIONS(4880), - [anon_sym_PERCENT_EQ] = ACTIONS(4880), - [anon_sym_BANG_EQ] = ACTIONS(4878), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4880), - [anon_sym_EQ_EQ] = ACTIONS(4878), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4880), - [anon_sym_LT_EQ] = ACTIONS(4880), - [anon_sym_GT_EQ] = ACTIONS(4880), - [anon_sym_BANGin] = ACTIONS(4880), - [anon_sym_is] = ACTIONS(4878), - [anon_sym_BANGis] = ACTIONS(4880), - [anon_sym_PLUS] = ACTIONS(4878), - [anon_sym_DASH] = ACTIONS(4878), - [anon_sym_SLASH] = ACTIONS(4878), - [anon_sym_PERCENT] = ACTIONS(4878), - [anon_sym_as_QMARK] = ACTIONS(4880), - [anon_sym_PLUS_PLUS] = ACTIONS(4880), - [anon_sym_DASH_DASH] = ACTIONS(4880), - [anon_sym_BANG] = ACTIONS(4878), - [anon_sym_BANG_BANG] = ACTIONS(4880), - [anon_sym_data] = ACTIONS(4878), - [anon_sym_inner] = ACTIONS(4878), - [anon_sym_value] = ACTIONS(4878), - [anon_sym_expect] = ACTIONS(4878), - [anon_sym_actual] = ACTIONS(4878), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4880), - [anon_sym_continue_AT] = ACTIONS(4880), - [anon_sym_break_AT] = ACTIONS(4880), - [anon_sym_this_AT] = ACTIONS(4880), - [anon_sym_super_AT] = ACTIONS(4880), - [sym_real_literal] = ACTIONS(4880), - [sym_integer_literal] = ACTIONS(4878), - [sym_hex_literal] = ACTIONS(4880), - [sym_bin_literal] = ACTIONS(4880), - [anon_sym_true] = ACTIONS(4878), - [anon_sym_false] = ACTIONS(4878), - [anon_sym_SQUOTE] = ACTIONS(4880), - [sym__backtick_identifier] = ACTIONS(4880), - [sym__automatic_semicolon] = ACTIONS(4880), - [sym_safe_nav] = ACTIONS(4880), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4880), - }, - [3203] = { - [sym__alpha_identifier] = ACTIONS(5019), - [anon_sym_AT] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5021), - [anon_sym_RBRACE] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_where] = ACTIONS(5019), - [anon_sym_object] = ACTIONS(5019), - [anon_sym_fun] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5021), - [anon_sym_get] = ACTIONS(5019), - [anon_sym_set] = ACTIONS(5019), - [anon_sym_this] = ACTIONS(5019), - [anon_sym_super] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [sym_label] = ACTIONS(5019), - [anon_sym_in] = ACTIONS(5019), - [anon_sym_DOT_DOT] = ACTIONS(5021), - [anon_sym_QMARK_COLON] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_null] = ACTIONS(5019), - [anon_sym_if] = ACTIONS(5019), - [anon_sym_else] = ACTIONS(5019), - [anon_sym_when] = ACTIONS(5019), - [anon_sym_try] = ACTIONS(5019), - [anon_sym_throw] = ACTIONS(5019), - [anon_sym_return] = ACTIONS(5019), - [anon_sym_continue] = ACTIONS(5019), - [anon_sym_break] = ACTIONS(5019), - [anon_sym_COLON_COLON] = ACTIONS(5021), - [anon_sym_PLUS_EQ] = ACTIONS(5021), - [anon_sym_DASH_EQ] = ACTIONS(5021), - [anon_sym_STAR_EQ] = ACTIONS(5021), - [anon_sym_SLASH_EQ] = ACTIONS(5021), - [anon_sym_PERCENT_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ] = ACTIONS(5019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5021), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5021), - [anon_sym_BANGin] = ACTIONS(5021), - [anon_sym_is] = ACTIONS(5019), - [anon_sym_BANGis] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_as_QMARK] = ACTIONS(5021), - [anon_sym_PLUS_PLUS] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5019), - [anon_sym_BANG_BANG] = ACTIONS(5021), - [anon_sym_data] = ACTIONS(5019), - [anon_sym_inner] = ACTIONS(5019), - [anon_sym_value] = ACTIONS(5019), - [anon_sym_expect] = ACTIONS(5019), - [anon_sym_actual] = ACTIONS(5019), + [3228] = { + [sym__alpha_identifier] = ACTIONS(5113), + [anon_sym_AT] = ACTIONS(5115), + [anon_sym_LBRACK] = ACTIONS(5115), + [anon_sym_DOT] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5115), + [anon_sym_RBRACE] = ACTIONS(5115), + [anon_sym_LPAREN] = ACTIONS(5115), + [anon_sym_COMMA] = ACTIONS(5115), + [anon_sym_LT] = ACTIONS(5113), + [anon_sym_GT] = ACTIONS(5113), + [anon_sym_where] = ACTIONS(5113), + [anon_sym_object] = ACTIONS(5113), + [anon_sym_fun] = ACTIONS(5113), + [anon_sym_SEMI] = ACTIONS(5115), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5113), + [anon_sym_this] = ACTIONS(5113), + [anon_sym_super] = ACTIONS(5113), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(5113), + [anon_sym_in] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5115), + [anon_sym_QMARK_COLON] = ACTIONS(5115), + [anon_sym_AMP_AMP] = ACTIONS(5115), + [anon_sym_PIPE_PIPE] = ACTIONS(5115), + [anon_sym_null] = ACTIONS(5113), + [anon_sym_if] = ACTIONS(5113), + [anon_sym_else] = ACTIONS(5113), + [anon_sym_when] = ACTIONS(5113), + [anon_sym_try] = ACTIONS(5113), + [anon_sym_throw] = ACTIONS(5113), + [anon_sym_return] = ACTIONS(5113), + [anon_sym_continue] = ACTIONS(5113), + [anon_sym_break] = ACTIONS(5113), + [anon_sym_COLON_COLON] = ACTIONS(5115), + [anon_sym_PLUS_EQ] = ACTIONS(5115), + [anon_sym_DASH_EQ] = ACTIONS(5115), + [anon_sym_STAR_EQ] = ACTIONS(5115), + [anon_sym_SLASH_EQ] = ACTIONS(5115), + [anon_sym_PERCENT_EQ] = ACTIONS(5115), + [anon_sym_BANG_EQ] = ACTIONS(5113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5115), + [anon_sym_EQ_EQ] = ACTIONS(5113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5115), + [anon_sym_LT_EQ] = ACTIONS(5115), + [anon_sym_GT_EQ] = ACTIONS(5115), + [anon_sym_BANGin] = ACTIONS(5115), + [anon_sym_is] = ACTIONS(5113), + [anon_sym_BANGis] = ACTIONS(5115), + [anon_sym_PLUS] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(5115), + [anon_sym_PLUS_PLUS] = ACTIONS(5115), + [anon_sym_DASH_DASH] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5113), + [anon_sym_BANG_BANG] = ACTIONS(5115), + [anon_sym_data] = ACTIONS(5113), + [anon_sym_inner] = ACTIONS(5113), + [anon_sym_value] = ACTIONS(5113), + [anon_sym_expect] = ACTIONS(5113), + [anon_sym_actual] = ACTIONS(5113), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5021), - [anon_sym_continue_AT] = ACTIONS(5021), - [anon_sym_break_AT] = ACTIONS(5021), - [anon_sym_this_AT] = ACTIONS(5021), - [anon_sym_super_AT] = ACTIONS(5021), - [sym_real_literal] = ACTIONS(5021), - [sym_integer_literal] = ACTIONS(5019), - [sym_hex_literal] = ACTIONS(5021), - [sym_bin_literal] = ACTIONS(5021), - [anon_sym_true] = ACTIONS(5019), - [anon_sym_false] = ACTIONS(5019), - [anon_sym_SQUOTE] = ACTIONS(5021), - [sym__backtick_identifier] = ACTIONS(5021), - [sym__automatic_semicolon] = ACTIONS(5021), - [sym_safe_nav] = ACTIONS(5021), + [anon_sym_return_AT] = ACTIONS(5115), + [anon_sym_continue_AT] = ACTIONS(5115), + [anon_sym_break_AT] = ACTIONS(5115), + [anon_sym_this_AT] = ACTIONS(5115), + [anon_sym_super_AT] = ACTIONS(5115), + [sym_real_literal] = ACTIONS(5115), + [sym_integer_literal] = ACTIONS(5113), + [sym_hex_literal] = ACTIONS(5115), + [sym_bin_literal] = ACTIONS(5115), + [anon_sym_true] = ACTIONS(5113), + [anon_sym_false] = ACTIONS(5113), + [anon_sym_SQUOTE] = ACTIONS(5115), + [sym__backtick_identifier] = ACTIONS(5115), + [sym__automatic_semicolon] = ACTIONS(5115), + [sym_safe_nav] = ACTIONS(5115), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5021), - }, - [3204] = { - [sym__alpha_identifier] = ACTIONS(4886), - [anon_sym_AT] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4888), - [anon_sym_RBRACE] = ACTIONS(4888), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_COMMA] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_object] = ACTIONS(4886), - [anon_sym_fun] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4888), - [anon_sym_get] = ACTIONS(4886), - [anon_sym_set] = ACTIONS(4886), - [anon_sym_this] = ACTIONS(4886), - [anon_sym_super] = ACTIONS(4886), - [anon_sym_STAR] = ACTIONS(4886), - [sym_label] = ACTIONS(4886), - [anon_sym_in] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4888), - [anon_sym_QMARK_COLON] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [anon_sym_null] = ACTIONS(4886), - [anon_sym_if] = ACTIONS(4886), - [anon_sym_else] = ACTIONS(4886), - [anon_sym_when] = ACTIONS(4886), - [anon_sym_try] = ACTIONS(4886), - [anon_sym_throw] = ACTIONS(4886), - [anon_sym_return] = ACTIONS(4886), - [anon_sym_continue] = ACTIONS(4886), - [anon_sym_break] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(4888), - [anon_sym_PLUS_EQ] = ACTIONS(4888), - [anon_sym_DASH_EQ] = ACTIONS(4888), - [anon_sym_STAR_EQ] = ACTIONS(4888), - [anon_sym_SLASH_EQ] = ACTIONS(4888), - [anon_sym_PERCENT_EQ] = ACTIONS(4888), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4888), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4888), - [anon_sym_BANGin] = ACTIONS(4888), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_BANGis] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4886), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_as_QMARK] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_BANG] = ACTIONS(4886), - [anon_sym_BANG_BANG] = ACTIONS(4888), - [anon_sym_data] = ACTIONS(4886), - [anon_sym_inner] = ACTIONS(4886), - [anon_sym_value] = ACTIONS(4886), - [anon_sym_expect] = ACTIONS(4886), - [anon_sym_actual] = ACTIONS(4886), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4888), - [anon_sym_continue_AT] = ACTIONS(4888), - [anon_sym_break_AT] = ACTIONS(4888), - [anon_sym_this_AT] = ACTIONS(4888), - [anon_sym_super_AT] = ACTIONS(4888), - [sym_real_literal] = ACTIONS(4888), - [sym_integer_literal] = ACTIONS(4886), - [sym_hex_literal] = ACTIONS(4888), - [sym_bin_literal] = ACTIONS(4888), - [anon_sym_true] = ACTIONS(4886), - [anon_sym_false] = ACTIONS(4886), - [anon_sym_SQUOTE] = ACTIONS(4888), - [sym__backtick_identifier] = ACTIONS(4888), - [sym__automatic_semicolon] = ACTIONS(4888), - [sym_safe_nav] = ACTIONS(4888), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4888), - }, - [3205] = { - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(4509), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_object] = ACTIONS(4507), - [anon_sym_fun] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_this] = ACTIONS(4507), - [anon_sym_super] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [sym_label] = ACTIONS(4507), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_null] = ACTIONS(4507), - [anon_sym_if] = ACTIONS(4507), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_when] = ACTIONS(4507), - [anon_sym_try] = ACTIONS(4507), - [anon_sym_throw] = ACTIONS(4507), - [anon_sym_return] = ACTIONS(4507), - [anon_sym_continue] = ACTIONS(4507), - [anon_sym_break] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4509), - [anon_sym_continue_AT] = ACTIONS(4509), - [anon_sym_break_AT] = ACTIONS(4509), - [anon_sym_this_AT] = ACTIONS(4509), - [anon_sym_super_AT] = ACTIONS(4509), - [sym_real_literal] = ACTIONS(4509), - [sym_integer_literal] = ACTIONS(4507), - [sym_hex_literal] = ACTIONS(4509), - [sym_bin_literal] = ACTIONS(4509), - [anon_sym_true] = ACTIONS(4507), - [anon_sym_false] = ACTIONS(4507), - [anon_sym_SQUOTE] = ACTIONS(4509), - [sym__backtick_identifier] = ACTIONS(4509), - [sym__automatic_semicolon] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4509), - }, - [3206] = { - [sym__alpha_identifier] = ACTIONS(5031), - [anon_sym_AT] = ACTIONS(5033), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5031), - [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_SEMI] = ACTIONS(5033), - [anon_sym_get] = ACTIONS(5031), - [anon_sym_set] = ACTIONS(5031), - [anon_sym_this] = ACTIONS(5031), - [anon_sym_super] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [sym_label] = ACTIONS(5031), - [anon_sym_in] = ACTIONS(5031), - [anon_sym_DOT_DOT] = ACTIONS(5033), - [anon_sym_QMARK_COLON] = ACTIONS(5033), - [anon_sym_AMP_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5033), - [anon_sym_null] = ACTIONS(5031), - [anon_sym_if] = ACTIONS(5031), - [anon_sym_else] = ACTIONS(5031), - [anon_sym_when] = ACTIONS(5031), - [anon_sym_try] = ACTIONS(5031), - [anon_sym_throw] = ACTIONS(5031), - [anon_sym_return] = ACTIONS(5031), - [anon_sym_continue] = ACTIONS(5031), - [anon_sym_break] = ACTIONS(5031), - [anon_sym_COLON_COLON] = ACTIONS(5033), - [anon_sym_PLUS_EQ] = ACTIONS(5033), - [anon_sym_DASH_EQ] = ACTIONS(5033), - [anon_sym_STAR_EQ] = ACTIONS(5033), - [anon_sym_SLASH_EQ] = ACTIONS(5033), - [anon_sym_PERCENT_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ] = ACTIONS(5031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5033), - [anon_sym_BANGin] = ACTIONS(5033), - [anon_sym_is] = ACTIONS(5031), - [anon_sym_BANGis] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_as_QMARK] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5031), - [anon_sym_BANG_BANG] = ACTIONS(5033), - [anon_sym_data] = ACTIONS(5031), - [anon_sym_inner] = ACTIONS(5031), - [anon_sym_value] = ACTIONS(5031), - [anon_sym_expect] = ACTIONS(5031), - [anon_sym_actual] = ACTIONS(5031), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5033), - [anon_sym_continue_AT] = ACTIONS(5033), - [anon_sym_break_AT] = ACTIONS(5033), - [anon_sym_this_AT] = ACTIONS(5033), - [anon_sym_super_AT] = ACTIONS(5033), - [sym_real_literal] = ACTIONS(5033), - [sym_integer_literal] = ACTIONS(5031), - [sym_hex_literal] = ACTIONS(5033), - [sym_bin_literal] = ACTIONS(5033), - [anon_sym_true] = ACTIONS(5031), - [anon_sym_false] = ACTIONS(5031), - [anon_sym_SQUOTE] = ACTIONS(5033), - [sym__backtick_identifier] = ACTIONS(5033), - [sym__automatic_semicolon] = ACTIONS(5033), - [sym_safe_nav] = ACTIONS(5033), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5033), - }, - [3207] = { - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4175), - [anon_sym_LBRACE] = ACTIONS(4177), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [sym__string_start] = ACTIONS(5115), }, - [3208] = { - [aux_sym_type_constraints_repeat1] = STATE(3249), - [sym__alpha_identifier] = ACTIONS(4389), - [anon_sym_AT] = ACTIONS(4391), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_RBRACK] = ACTIONS(4391), - [anon_sym_DOT] = ACTIONS(4389), - [anon_sym_as] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4391), - [anon_sym_RBRACE] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(6655), - [anon_sym_RPAREN] = ACTIONS(4391), - [anon_sym_by] = ACTIONS(4389), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(4389), - [anon_sym_SEMI] = ACTIONS(4391), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), - [anon_sym_STAR] = ACTIONS(4389), - [anon_sym_DASH_GT] = ACTIONS(4391), - [sym_label] = ACTIONS(4391), - [anon_sym_in] = ACTIONS(4389), - [anon_sym_while] = ACTIONS(4389), - [anon_sym_DOT_DOT] = ACTIONS(4391), - [anon_sym_QMARK_COLON] = ACTIONS(4391), - [anon_sym_AMP_AMP] = ACTIONS(4391), - [anon_sym_PIPE_PIPE] = ACTIONS(4391), - [anon_sym_else] = ACTIONS(4389), - [anon_sym_COLON_COLON] = ACTIONS(4391), - [anon_sym_PLUS_EQ] = ACTIONS(4391), - [anon_sym_DASH_EQ] = ACTIONS(4391), - [anon_sym_STAR_EQ] = ACTIONS(4391), - [anon_sym_SLASH_EQ] = ACTIONS(4391), - [anon_sym_PERCENT_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ] = ACTIONS(4389), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), - [anon_sym_EQ_EQ] = ACTIONS(4389), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), - [anon_sym_LT_EQ] = ACTIONS(4391), - [anon_sym_GT_EQ] = ACTIONS(4391), - [anon_sym_BANGin] = ACTIONS(4391), - [anon_sym_is] = ACTIONS(4389), - [anon_sym_BANGis] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4389), - [anon_sym_DASH] = ACTIONS(4389), - [anon_sym_SLASH] = ACTIONS(4389), - [anon_sym_PERCENT] = ACTIONS(4389), - [anon_sym_as_QMARK] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), - [anon_sym_BANG_BANG] = ACTIONS(4391), - [anon_sym_suspend] = ACTIONS(4389), - [anon_sym_sealed] = ACTIONS(4389), - [anon_sym_annotation] = ACTIONS(4389), - [anon_sym_data] = ACTIONS(4389), - [anon_sym_inner] = ACTIONS(4389), - [anon_sym_value] = ACTIONS(4389), - [anon_sym_override] = ACTIONS(4389), - [anon_sym_lateinit] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_internal] = ACTIONS(4389), - [anon_sym_protected] = ACTIONS(4389), - [anon_sym_tailrec] = ACTIONS(4389), - [anon_sym_operator] = ACTIONS(4389), - [anon_sym_infix] = ACTIONS(4389), - [anon_sym_inline] = ACTIONS(4389), - [anon_sym_external] = ACTIONS(4389), - [sym_property_modifier] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_open] = ACTIONS(4389), - [anon_sym_vararg] = ACTIONS(4389), - [anon_sym_noinline] = ACTIONS(4389), - [anon_sym_crossinline] = ACTIONS(4389), - [anon_sym_expect] = ACTIONS(4389), - [anon_sym_actual] = ACTIONS(4389), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4391), - [sym_safe_nav] = ACTIONS(4391), + [3229] = { + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_RBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6486), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [anon_sym_DASH_GT] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_while] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, - [3209] = { - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [3210] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6670), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [3230] = { + [sym__alpha_identifier] = ACTIONS(4924), + [anon_sym_AT] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_where] = ACTIONS(4924), + [anon_sym_object] = ACTIONS(4924), + [anon_sym_fun] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_get] = ACTIONS(4924), + [anon_sym_set] = ACTIONS(4924), + [anon_sym_this] = ACTIONS(4924), + [anon_sym_super] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [sym_label] = ACTIONS(4924), + [anon_sym_in] = ACTIONS(4924), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_QMARK_COLON] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4926), + [anon_sym_PIPE_PIPE] = ACTIONS(4926), + [anon_sym_null] = ACTIONS(4924), + [anon_sym_if] = ACTIONS(4924), + [anon_sym_else] = ACTIONS(4924), + [anon_sym_when] = ACTIONS(4924), + [anon_sym_try] = ACTIONS(4924), + [anon_sym_throw] = ACTIONS(4924), + [anon_sym_return] = ACTIONS(4924), + [anon_sym_continue] = ACTIONS(4924), + [anon_sym_break] = ACTIONS(4924), + [anon_sym_COLON_COLON] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4926), + [anon_sym_DASH_EQ] = ACTIONS(4926), + [anon_sym_STAR_EQ] = ACTIONS(4926), + [anon_sym_SLASH_EQ] = ACTIONS(4926), + [anon_sym_PERCENT_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4926), + [anon_sym_BANGin] = ACTIONS(4926), + [anon_sym_is] = ACTIONS(4924), + [anon_sym_BANGis] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_as_QMARK] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4926), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_BANG_BANG] = ACTIONS(4926), + [anon_sym_data] = ACTIONS(4924), + [anon_sym_inner] = ACTIONS(4924), + [anon_sym_value] = ACTIONS(4924), + [anon_sym_expect] = ACTIONS(4924), + [anon_sym_actual] = ACTIONS(4924), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [anon_sym_return_AT] = ACTIONS(4926), + [anon_sym_continue_AT] = ACTIONS(4926), + [anon_sym_break_AT] = ACTIONS(4926), + [anon_sym_this_AT] = ACTIONS(4926), + [anon_sym_super_AT] = ACTIONS(4926), + [sym_real_literal] = ACTIONS(4926), + [sym_integer_literal] = ACTIONS(4924), + [sym_hex_literal] = ACTIONS(4926), + [sym_bin_literal] = ACTIONS(4926), + [anon_sym_true] = ACTIONS(4924), + [anon_sym_false] = ACTIONS(4924), + [anon_sym_SQUOTE] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(4926), + [sym__automatic_semicolon] = ACTIONS(4926), + [sym_safe_nav] = ACTIONS(4926), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym__string_start] = ACTIONS(4926), }, - [3211] = { - [sym__alpha_identifier] = ACTIONS(5121), - [anon_sym_AT] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_as] = ACTIONS(5121), - [anon_sym_EQ] = ACTIONS(5121), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_RBRACE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_where] = ACTIONS(5121), - [anon_sym_object] = ACTIONS(5121), - [anon_sym_fun] = ACTIONS(5121), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_get] = ACTIONS(5121), - [anon_sym_set] = ACTIONS(5121), - [anon_sym_this] = ACTIONS(5121), - [anon_sym_super] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [sym_label] = ACTIONS(5121), - [anon_sym_in] = ACTIONS(5121), - [anon_sym_DOT_DOT] = ACTIONS(5123), - [anon_sym_QMARK_COLON] = ACTIONS(5123), - [anon_sym_AMP_AMP] = ACTIONS(5123), - [anon_sym_PIPE_PIPE] = ACTIONS(5123), - [anon_sym_null] = ACTIONS(5121), - [anon_sym_if] = ACTIONS(5121), - [anon_sym_else] = ACTIONS(5121), - [anon_sym_when] = ACTIONS(5121), - [anon_sym_try] = ACTIONS(5121), - [anon_sym_throw] = ACTIONS(5121), - [anon_sym_return] = ACTIONS(5121), - [anon_sym_continue] = ACTIONS(5121), - [anon_sym_break] = ACTIONS(5121), - [anon_sym_COLON_COLON] = ACTIONS(5123), - [anon_sym_PLUS_EQ] = ACTIONS(5123), - [anon_sym_DASH_EQ] = ACTIONS(5123), - [anon_sym_STAR_EQ] = ACTIONS(5123), - [anon_sym_SLASH_EQ] = ACTIONS(5123), - [anon_sym_PERCENT_EQ] = ACTIONS(5123), - [anon_sym_BANG_EQ] = ACTIONS(5121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), - [anon_sym_EQ_EQ] = ACTIONS(5121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), - [anon_sym_LT_EQ] = ACTIONS(5123), - [anon_sym_GT_EQ] = ACTIONS(5123), - [anon_sym_BANGin] = ACTIONS(5123), - [anon_sym_is] = ACTIONS(5121), - [anon_sym_BANGis] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_PERCENT] = ACTIONS(5121), - [anon_sym_as_QMARK] = ACTIONS(5123), - [anon_sym_PLUS_PLUS] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5123), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_BANG_BANG] = ACTIONS(5123), - [anon_sym_data] = ACTIONS(5121), - [anon_sym_inner] = ACTIONS(5121), - [anon_sym_value] = ACTIONS(5121), - [anon_sym_expect] = ACTIONS(5121), - [anon_sym_actual] = ACTIONS(5121), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5123), - [anon_sym_continue_AT] = ACTIONS(5123), - [anon_sym_break_AT] = ACTIONS(5123), - [anon_sym_this_AT] = ACTIONS(5123), - [anon_sym_super_AT] = ACTIONS(5123), - [sym_real_literal] = ACTIONS(5123), - [sym_integer_literal] = ACTIONS(5121), - [sym_hex_literal] = ACTIONS(5123), - [sym_bin_literal] = ACTIONS(5123), - [anon_sym_true] = ACTIONS(5121), - [anon_sym_false] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5123), - [sym__backtick_identifier] = ACTIONS(5123), - [sym__automatic_semicolon] = ACTIONS(5123), - [sym_safe_nav] = ACTIONS(5123), + [3231] = { + [sym_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(6615), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_RBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_COMMA] = ACTIONS(4327), + [anon_sym_RPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_where] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [anon_sym_DASH_GT] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_while] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_PLUS_EQ] = ACTIONS(4327), + [anon_sym_DASH_EQ] = ACTIONS(4327), + [anon_sym_STAR_EQ] = ACTIONS(4327), + [anon_sym_SLASH_EQ] = ACTIONS(4327), + [anon_sym_PERCENT_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4325), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5123), }, - [3212] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6674), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [3232] = { + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, - [3213] = { - [sym_class_body] = STATE(3492), - [sym_type_constraints] = STATE(3363), - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_RBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(5516), - [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(5512), - [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_value] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_lateinit] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_tailrec] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_infix] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym_external] = ACTIONS(4468), - [sym_property_modifier] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_final] = ACTIONS(4468), - [anon_sym_open] = ACTIONS(4468), - [anon_sym_vararg] = ACTIONS(4468), - [anon_sym_noinline] = ACTIONS(4468), - [anon_sym_crossinline] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), + [3233] = { + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, - [3214] = { - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(4270), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [3234] = { + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_object] = ACTIONS(4359), + [anon_sym_fun] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_this] = ACTIONS(4359), + [anon_sym_super] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4359), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4359), + [anon_sym_if] = ACTIONS(4359), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_when] = ACTIONS(4359), + [anon_sym_try] = ACTIONS(4359), + [anon_sym_throw] = ACTIONS(4359), + [anon_sym_return] = ACTIONS(4359), + [anon_sym_continue] = ACTIONS(4359), + [anon_sym_break] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG] = ACTIONS(4359), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4361), + [anon_sym_continue_AT] = ACTIONS(4361), + [anon_sym_break_AT] = ACTIONS(4361), + [anon_sym_this_AT] = ACTIONS(4361), + [anon_sym_super_AT] = ACTIONS(4361), + [sym_real_literal] = ACTIONS(4361), + [sym_integer_literal] = ACTIONS(4359), + [sym_hex_literal] = ACTIONS(4361), + [sym_bin_literal] = ACTIONS(4361), + [anon_sym_true] = ACTIONS(4359), + [anon_sym_false] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4361), }, - [3215] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_object] = ACTIONS(1790), - [anon_sym_fun] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_this] = ACTIONS(1790), - [anon_sym_super] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_null] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1790), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_when] = ACTIONS(1790), - [anon_sym_try] = ACTIONS(1790), - [anon_sym_throw] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1790), - [anon_sym_continue] = ACTIONS(1790), - [anon_sym_break] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), + [3235] = { + [sym__alpha_identifier] = ACTIONS(5125), + [anon_sym_AT] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5127), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_as] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5127), + [anon_sym_RBRACE] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5127), + [anon_sym_COMMA] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_where] = ACTIONS(5125), + [anon_sym_object] = ACTIONS(5125), + [anon_sym_fun] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5127), + [anon_sym_get] = ACTIONS(5125), + [anon_sym_set] = ACTIONS(5125), + [anon_sym_this] = ACTIONS(5125), + [anon_sym_super] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [sym_label] = ACTIONS(5125), + [anon_sym_in] = ACTIONS(5125), + [anon_sym_DOT_DOT] = ACTIONS(5127), + [anon_sym_QMARK_COLON] = ACTIONS(5127), + [anon_sym_AMP_AMP] = ACTIONS(5127), + [anon_sym_PIPE_PIPE] = ACTIONS(5127), + [anon_sym_null] = ACTIONS(5125), + [anon_sym_if] = ACTIONS(5125), + [anon_sym_else] = ACTIONS(5125), + [anon_sym_when] = ACTIONS(5125), + [anon_sym_try] = ACTIONS(5125), + [anon_sym_throw] = ACTIONS(5125), + [anon_sym_return] = ACTIONS(5125), + [anon_sym_continue] = ACTIONS(5125), + [anon_sym_break] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_PLUS_EQ] = ACTIONS(5127), + [anon_sym_DASH_EQ] = ACTIONS(5127), + [anon_sym_STAR_EQ] = ACTIONS(5127), + [anon_sym_SLASH_EQ] = ACTIONS(5127), + [anon_sym_PERCENT_EQ] = ACTIONS(5127), + [anon_sym_BANG_EQ] = ACTIONS(5125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5127), + [anon_sym_EQ_EQ] = ACTIONS(5125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5127), + [anon_sym_LT_EQ] = ACTIONS(5127), + [anon_sym_GT_EQ] = ACTIONS(5127), + [anon_sym_BANGin] = ACTIONS(5127), + [anon_sym_is] = ACTIONS(5125), + [anon_sym_BANGis] = ACTIONS(5127), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_as_QMARK] = ACTIONS(5127), + [anon_sym_PLUS_PLUS] = ACTIONS(5127), + [anon_sym_DASH_DASH] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5125), + [anon_sym_BANG_BANG] = ACTIONS(5127), + [anon_sym_data] = ACTIONS(5125), + [anon_sym_inner] = ACTIONS(5125), + [anon_sym_value] = ACTIONS(5125), + [anon_sym_expect] = ACTIONS(5125), + [anon_sym_actual] = ACTIONS(5125), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1792), - [anon_sym_continue_AT] = ACTIONS(1792), - [anon_sym_break_AT] = ACTIONS(1792), - [anon_sym_this_AT] = ACTIONS(1792), - [anon_sym_super_AT] = ACTIONS(1792), - [sym_real_literal] = ACTIONS(1792), - [sym_integer_literal] = ACTIONS(1790), - [sym_hex_literal] = ACTIONS(1792), - [sym_bin_literal] = ACTIONS(1792), - [anon_sym_true] = ACTIONS(1790), - [anon_sym_false] = ACTIONS(1790), - [anon_sym_SQUOTE] = ACTIONS(1792), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1792), - }, - [3216] = { - [sym__alpha_identifier] = ACTIONS(4963), - [anon_sym_AT] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4963), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4965), - [anon_sym_super_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), - }, - [3217] = { - [sym__alpha_identifier] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4183), - [anon_sym_COLON] = ACTIONS(6557), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_RBRACK] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_RBRACE] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_COMMA] = ACTIONS(4183), - [anon_sym_RPAREN] = ACTIONS(4183), - [anon_sym_by] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_where] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_get] = ACTIONS(4181), - [anon_sym_set] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_DASH_GT] = ACTIONS(4183), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_while] = ACTIONS(4181), - [anon_sym_DOT_DOT] = ACTIONS(4183), - [anon_sym_QMARK_COLON] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4181), - [anon_sym_COLON_COLON] = ACTIONS(4183), - [anon_sym_PLUS_EQ] = ACTIONS(4183), - [anon_sym_DASH_EQ] = ACTIONS(4183), - [anon_sym_STAR_EQ] = ACTIONS(4183), - [anon_sym_SLASH_EQ] = ACTIONS(4183), - [anon_sym_PERCENT_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4183), - [anon_sym_LT_EQ] = ACTIONS(4183), - [anon_sym_GT_EQ] = ACTIONS(4183), - [anon_sym_BANGin] = ACTIONS(4183), - [anon_sym_is] = ACTIONS(4181), - [anon_sym_BANGis] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4183), - [anon_sym_PLUS_PLUS] = ACTIONS(4183), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4183), - [anon_sym_suspend] = ACTIONS(4181), - [anon_sym_sealed] = ACTIONS(4181), - [anon_sym_annotation] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4181), - [anon_sym_inner] = ACTIONS(4181), - [anon_sym_value] = ACTIONS(4181), - [anon_sym_override] = ACTIONS(4181), - [anon_sym_lateinit] = ACTIONS(4181), - [anon_sym_public] = ACTIONS(4181), - [anon_sym_private] = ACTIONS(4181), - [anon_sym_internal] = ACTIONS(4181), - [anon_sym_protected] = ACTIONS(4181), - [anon_sym_tailrec] = ACTIONS(4181), - [anon_sym_operator] = ACTIONS(4181), - [anon_sym_infix] = ACTIONS(4181), - [anon_sym_inline] = ACTIONS(4181), - [anon_sym_external] = ACTIONS(4181), - [sym_property_modifier] = ACTIONS(4181), - [anon_sym_abstract] = ACTIONS(4181), - [anon_sym_final] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4181), - [anon_sym_vararg] = ACTIONS(4181), - [anon_sym_noinline] = ACTIONS(4181), - [anon_sym_crossinline] = ACTIONS(4181), - [anon_sym_expect] = ACTIONS(4181), - [anon_sym_actual] = ACTIONS(4181), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4183), - [sym_safe_nav] = ACTIONS(4183), + [anon_sym_return_AT] = ACTIONS(5127), + [anon_sym_continue_AT] = ACTIONS(5127), + [anon_sym_break_AT] = ACTIONS(5127), + [anon_sym_this_AT] = ACTIONS(5127), + [anon_sym_super_AT] = ACTIONS(5127), + [sym_real_literal] = ACTIONS(5127), + [sym_integer_literal] = ACTIONS(5125), + [sym_hex_literal] = ACTIONS(5127), + [sym_bin_literal] = ACTIONS(5127), + [anon_sym_true] = ACTIONS(5125), + [anon_sym_false] = ACTIONS(5125), + [anon_sym_SQUOTE] = ACTIONS(5127), + [sym__backtick_identifier] = ACTIONS(5127), + [sym__automatic_semicolon] = ACTIONS(5127), + [sym_safe_nav] = ACTIONS(5127), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5127), }, - [3218] = { - [sym__alpha_identifier] = ACTIONS(5193), - [anon_sym_AT] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_DOT] = ACTIONS(5193), - [anon_sym_as] = ACTIONS(5193), - [anon_sym_EQ] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_where] = ACTIONS(5193), - [anon_sym_object] = ACTIONS(5193), - [anon_sym_fun] = ACTIONS(5193), - [anon_sym_SEMI] = ACTIONS(5195), - [anon_sym_get] = ACTIONS(5193), - [anon_sym_set] = ACTIONS(5193), - [anon_sym_this] = ACTIONS(5193), - [anon_sym_super] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [sym_label] = ACTIONS(5193), - [anon_sym_in] = ACTIONS(5193), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_QMARK_COLON] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_null] = ACTIONS(5193), - [anon_sym_if] = ACTIONS(5193), - [anon_sym_else] = ACTIONS(5193), - [anon_sym_when] = ACTIONS(5193), - [anon_sym_try] = ACTIONS(5193), - [anon_sym_throw] = ACTIONS(5193), - [anon_sym_return] = ACTIONS(5193), - [anon_sym_continue] = ACTIONS(5193), - [anon_sym_break] = ACTIONS(5193), - [anon_sym_COLON_COLON] = ACTIONS(5195), - [anon_sym_PLUS_EQ] = ACTIONS(5195), - [anon_sym_DASH_EQ] = ACTIONS(5195), - [anon_sym_STAR_EQ] = ACTIONS(5195), - [anon_sym_SLASH_EQ] = ACTIONS(5195), - [anon_sym_PERCENT_EQ] = ACTIONS(5195), - [anon_sym_BANG_EQ] = ACTIONS(5193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), - [anon_sym_EQ_EQ] = ACTIONS(5193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), - [anon_sym_LT_EQ] = ACTIONS(5195), - [anon_sym_GT_EQ] = ACTIONS(5195), - [anon_sym_BANGin] = ACTIONS(5195), - [anon_sym_is] = ACTIONS(5193), - [anon_sym_BANGis] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_PERCENT] = ACTIONS(5193), - [anon_sym_as_QMARK] = ACTIONS(5195), - [anon_sym_PLUS_PLUS] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_BANG_BANG] = ACTIONS(5195), - [anon_sym_data] = ACTIONS(5193), - [anon_sym_inner] = ACTIONS(5193), - [anon_sym_value] = ACTIONS(5193), - [anon_sym_expect] = ACTIONS(5193), - [anon_sym_actual] = ACTIONS(5193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5195), - [anon_sym_continue_AT] = ACTIONS(5195), - [anon_sym_break_AT] = ACTIONS(5195), - [anon_sym_this_AT] = ACTIONS(5195), - [anon_sym_super_AT] = ACTIONS(5195), - [sym_real_literal] = ACTIONS(5195), - [sym_integer_literal] = ACTIONS(5193), - [sym_hex_literal] = ACTIONS(5195), - [sym_bin_literal] = ACTIONS(5195), - [anon_sym_true] = ACTIONS(5193), - [anon_sym_false] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5195), - [sym__backtick_identifier] = ACTIONS(5195), - [sym__automatic_semicolon] = ACTIONS(5195), - [sym_safe_nav] = ACTIONS(5195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5195), - }, - [3219] = { - [sym__alpha_identifier] = ACTIONS(4549), - [anon_sym_AT] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(4549), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_where] = ACTIONS(4549), - [anon_sym_object] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4549), - [anon_sym_set] = ACTIONS(4549), - [anon_sym_this] = ACTIONS(4549), - [anon_sym_super] = ACTIONS(4549), - [anon_sym_STAR] = ACTIONS(4549), - [sym_label] = ACTIONS(4549), - [anon_sym_in] = ACTIONS(4549), - [anon_sym_DOT_DOT] = ACTIONS(4551), - [anon_sym_QMARK_COLON] = ACTIONS(4551), - [anon_sym_AMP_AMP] = ACTIONS(4551), - [anon_sym_PIPE_PIPE] = ACTIONS(4551), - [anon_sym_null] = ACTIONS(4549), - [anon_sym_if] = ACTIONS(4549), - [anon_sym_else] = ACTIONS(4549), - [anon_sym_when] = ACTIONS(4549), - [anon_sym_try] = ACTIONS(4549), - [anon_sym_throw] = ACTIONS(4549), - [anon_sym_return] = ACTIONS(4549), - [anon_sym_continue] = ACTIONS(4549), - [anon_sym_break] = ACTIONS(4549), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym_PLUS_EQ] = ACTIONS(4551), - [anon_sym_DASH_EQ] = ACTIONS(4551), - [anon_sym_STAR_EQ] = ACTIONS(4551), - [anon_sym_SLASH_EQ] = ACTIONS(4551), - [anon_sym_PERCENT_EQ] = ACTIONS(4551), - [anon_sym_BANG_EQ] = ACTIONS(4549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), - [anon_sym_EQ_EQ] = ACTIONS(4549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_BANGin] = ACTIONS(4551), - [anon_sym_is] = ACTIONS(4549), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_SLASH] = ACTIONS(4549), - [anon_sym_PERCENT] = ACTIONS(4549), - [anon_sym_as_QMARK] = ACTIONS(4551), - [anon_sym_PLUS_PLUS] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4549), - [anon_sym_BANG_BANG] = ACTIONS(4551), - [anon_sym_data] = ACTIONS(4549), - [anon_sym_inner] = ACTIONS(4549), - [anon_sym_value] = ACTIONS(4549), - [anon_sym_expect] = ACTIONS(4549), - [anon_sym_actual] = ACTIONS(4549), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4551), - [anon_sym_continue_AT] = ACTIONS(4551), - [anon_sym_break_AT] = ACTIONS(4551), - [anon_sym_this_AT] = ACTIONS(4551), - [anon_sym_super_AT] = ACTIONS(4551), - [sym_real_literal] = ACTIONS(4551), - [sym_integer_literal] = ACTIONS(4549), - [sym_hex_literal] = ACTIONS(4551), - [sym_bin_literal] = ACTIONS(4551), - [anon_sym_true] = ACTIONS(4549), - [anon_sym_false] = ACTIONS(4549), - [anon_sym_SQUOTE] = ACTIONS(4551), - [sym__backtick_identifier] = ACTIONS(4551), - [sym__automatic_semicolon] = ACTIONS(4551), - [sym_safe_nav] = ACTIONS(4551), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4551), - }, - [3220] = { + [3236] = { [sym__alpha_identifier] = ACTIONS(5133), [anon_sym_AT] = ACTIONS(5135), [anon_sym_LBRACK] = ACTIONS(5135), @@ -377341,2897 +378970,2132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5135), }, - [3221] = { - [sym__alpha_identifier] = ACTIONS(5185), - [anon_sym_AT] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_DOT] = ACTIONS(5185), - [anon_sym_as] = ACTIONS(5185), - [anon_sym_EQ] = ACTIONS(5185), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_where] = ACTIONS(5185), - [anon_sym_object] = ACTIONS(5185), - [anon_sym_fun] = ACTIONS(5185), - [anon_sym_SEMI] = ACTIONS(5187), - [anon_sym_get] = ACTIONS(5185), - [anon_sym_set] = ACTIONS(5185), - [anon_sym_this] = ACTIONS(5185), - [anon_sym_super] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [sym_label] = ACTIONS(5185), - [anon_sym_in] = ACTIONS(5185), - [anon_sym_DOT_DOT] = ACTIONS(5187), - [anon_sym_QMARK_COLON] = ACTIONS(5187), - [anon_sym_AMP_AMP] = ACTIONS(5187), - [anon_sym_PIPE_PIPE] = ACTIONS(5187), - [anon_sym_null] = ACTIONS(5185), - [anon_sym_if] = ACTIONS(5185), - [anon_sym_else] = ACTIONS(5185), - [anon_sym_when] = ACTIONS(5185), - [anon_sym_try] = ACTIONS(5185), - [anon_sym_throw] = ACTIONS(5185), - [anon_sym_return] = ACTIONS(5185), - [anon_sym_continue] = ACTIONS(5185), - [anon_sym_break] = ACTIONS(5185), - [anon_sym_COLON_COLON] = ACTIONS(5187), - [anon_sym_PLUS_EQ] = ACTIONS(5187), - [anon_sym_DASH_EQ] = ACTIONS(5187), - [anon_sym_STAR_EQ] = ACTIONS(5187), - [anon_sym_SLASH_EQ] = ACTIONS(5187), - [anon_sym_PERCENT_EQ] = ACTIONS(5187), - [anon_sym_BANG_EQ] = ACTIONS(5185), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5187), - [anon_sym_EQ_EQ] = ACTIONS(5185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5187), - [anon_sym_LT_EQ] = ACTIONS(5187), - [anon_sym_GT_EQ] = ACTIONS(5187), - [anon_sym_BANGin] = ACTIONS(5187), - [anon_sym_is] = ACTIONS(5185), - [anon_sym_BANGis] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_PERCENT] = ACTIONS(5185), - [anon_sym_as_QMARK] = ACTIONS(5187), - [anon_sym_PLUS_PLUS] = ACTIONS(5187), - [anon_sym_DASH_DASH] = ACTIONS(5187), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_BANG_BANG] = ACTIONS(5187), - [anon_sym_data] = ACTIONS(5185), - [anon_sym_inner] = ACTIONS(5185), - [anon_sym_value] = ACTIONS(5185), - [anon_sym_expect] = ACTIONS(5185), - [anon_sym_actual] = ACTIONS(5185), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5187), - [anon_sym_continue_AT] = ACTIONS(5187), - [anon_sym_break_AT] = ACTIONS(5187), - [anon_sym_this_AT] = ACTIONS(5187), - [anon_sym_super_AT] = ACTIONS(5187), - [sym_real_literal] = ACTIONS(5187), - [sym_integer_literal] = ACTIONS(5185), - [sym_hex_literal] = ACTIONS(5187), - [sym_bin_literal] = ACTIONS(5187), - [anon_sym_true] = ACTIONS(5185), - [anon_sym_false] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5187), - [sym__backtick_identifier] = ACTIONS(5187), - [sym__automatic_semicolon] = ACTIONS(5187), - [sym_safe_nav] = ACTIONS(5187), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5187), - }, - [3222] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_fun] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_this] = ACTIONS(4423), - [anon_sym_super] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4423), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_null] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_when] = ACTIONS(4423), - [anon_sym_try] = ACTIONS(4423), - [anon_sym_throw] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4425), - [anon_sym_continue_AT] = ACTIONS(4425), - [anon_sym_break_AT] = ACTIONS(4425), - [anon_sym_this_AT] = ACTIONS(4425), - [anon_sym_super_AT] = ACTIONS(4425), - [sym_real_literal] = ACTIONS(4425), - [sym_integer_literal] = ACTIONS(4423), - [sym_hex_literal] = ACTIONS(4425), - [sym_bin_literal] = ACTIONS(4425), - [anon_sym_true] = ACTIONS(4423), - [anon_sym_false] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4425), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4425), - }, - [3223] = { - [sym__alpha_identifier] = ACTIONS(5169), - [anon_sym_AT] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_as] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_RBRACE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_where] = ACTIONS(5169), - [anon_sym_object] = ACTIONS(5169), - [anon_sym_fun] = ACTIONS(5169), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_get] = ACTIONS(5169), - [anon_sym_set] = ACTIONS(5169), - [anon_sym_this] = ACTIONS(5169), - [anon_sym_super] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [sym_label] = ACTIONS(5169), - [anon_sym_in] = ACTIONS(5169), - [anon_sym_DOT_DOT] = ACTIONS(5171), - [anon_sym_QMARK_COLON] = ACTIONS(5171), - [anon_sym_AMP_AMP] = ACTIONS(5171), - [anon_sym_PIPE_PIPE] = ACTIONS(5171), - [anon_sym_null] = ACTIONS(5169), - [anon_sym_if] = ACTIONS(5169), - [anon_sym_else] = ACTIONS(5169), - [anon_sym_when] = ACTIONS(5169), - [anon_sym_try] = ACTIONS(5169), - [anon_sym_throw] = ACTIONS(5169), - [anon_sym_return] = ACTIONS(5169), - [anon_sym_continue] = ACTIONS(5169), - [anon_sym_break] = ACTIONS(5169), - [anon_sym_COLON_COLON] = ACTIONS(5171), - [anon_sym_PLUS_EQ] = ACTIONS(5171), - [anon_sym_DASH_EQ] = ACTIONS(5171), - [anon_sym_STAR_EQ] = ACTIONS(5171), - [anon_sym_SLASH_EQ] = ACTIONS(5171), - [anon_sym_PERCENT_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ] = ACTIONS(5169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ] = ACTIONS(5169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), - [anon_sym_LT_EQ] = ACTIONS(5171), - [anon_sym_GT_EQ] = ACTIONS(5171), - [anon_sym_BANGin] = ACTIONS(5171), - [anon_sym_is] = ACTIONS(5169), - [anon_sym_BANGis] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_PERCENT] = ACTIONS(5169), - [anon_sym_as_QMARK] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5169), - [anon_sym_BANG_BANG] = ACTIONS(5171), - [anon_sym_data] = ACTIONS(5169), - [anon_sym_inner] = ACTIONS(5169), - [anon_sym_value] = ACTIONS(5169), - [anon_sym_expect] = ACTIONS(5169), - [anon_sym_actual] = ACTIONS(5169), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5171), - [anon_sym_continue_AT] = ACTIONS(5171), - [anon_sym_break_AT] = ACTIONS(5171), - [anon_sym_this_AT] = ACTIONS(5171), - [anon_sym_super_AT] = ACTIONS(5171), - [sym_real_literal] = ACTIONS(5171), - [sym_integer_literal] = ACTIONS(5169), - [sym_hex_literal] = ACTIONS(5171), - [sym_bin_literal] = ACTIONS(5171), - [anon_sym_true] = ACTIONS(5169), - [anon_sym_false] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5171), - [sym__backtick_identifier] = ACTIONS(5171), - [sym__automatic_semicolon] = ACTIONS(5171), - [sym_safe_nav] = ACTIONS(5171), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5171), - }, - [3224] = { - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_object] = ACTIONS(1808), - [anon_sym_fun] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(1808), - [anon_sym_set] = ACTIONS(1808), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_super] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1808), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_when] = ACTIONS(1808), - [anon_sym_try] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_data] = ACTIONS(1808), - [anon_sym_inner] = ACTIONS(1808), - [anon_sym_value] = ACTIONS(1808), - [anon_sym_expect] = ACTIONS(1808), - [anon_sym_actual] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1810), - [anon_sym_continue_AT] = ACTIONS(1810), - [anon_sym_break_AT] = ACTIONS(1810), - [anon_sym_this_AT] = ACTIONS(1810), - [anon_sym_super_AT] = ACTIONS(1810), - [sym_real_literal] = ACTIONS(1810), - [sym_integer_literal] = ACTIONS(1808), - [sym_hex_literal] = ACTIONS(1810), - [sym_bin_literal] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [anon_sym_SQUOTE] = ACTIONS(1810), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1810), + [3237] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(6617), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), }, - [3225] = { - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), + [3238] = { + [sym__alpha_identifier] = ACTIONS(4607), + [anon_sym_AT] = ACTIONS(4609), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(4609), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_where] = ACTIONS(4607), + [anon_sym_object] = ACTIONS(4607), + [anon_sym_fun] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4609), + [anon_sym_get] = ACTIONS(4607), + [anon_sym_set] = ACTIONS(4607), + [anon_sym_this] = ACTIONS(4607), + [anon_sym_super] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [sym_label] = ACTIONS(4607), + [anon_sym_in] = ACTIONS(4607), + [anon_sym_DOT_DOT] = ACTIONS(4609), + [anon_sym_QMARK_COLON] = ACTIONS(4609), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4609), + [anon_sym_null] = ACTIONS(4607), + [anon_sym_if] = ACTIONS(4607), + [anon_sym_else] = ACTIONS(4607), + [anon_sym_when] = ACTIONS(4607), + [anon_sym_try] = ACTIONS(4607), + [anon_sym_throw] = ACTIONS(4607), + [anon_sym_return] = ACTIONS(4607), + [anon_sym_continue] = ACTIONS(4607), + [anon_sym_break] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4609), + [anon_sym_PLUS_EQ] = ACTIONS(4609), + [anon_sym_DASH_EQ] = ACTIONS(4609), + [anon_sym_STAR_EQ] = ACTIONS(4609), + [anon_sym_SLASH_EQ] = ACTIONS(4609), + [anon_sym_PERCENT_EQ] = ACTIONS(4609), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4609), + [anon_sym_BANGin] = ACTIONS(4609), + [anon_sym_is] = ACTIONS(4607), + [anon_sym_BANGis] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_as_QMARK] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4609), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_BANG_BANG] = ACTIONS(4609), + [anon_sym_data] = ACTIONS(4607), + [anon_sym_inner] = ACTIONS(4607), + [anon_sym_value] = ACTIONS(4607), + [anon_sym_expect] = ACTIONS(4607), + [anon_sym_actual] = ACTIONS(4607), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4609), + [anon_sym_continue_AT] = ACTIONS(4609), + [anon_sym_break_AT] = ACTIONS(4609), + [anon_sym_this_AT] = ACTIONS(4609), + [anon_sym_super_AT] = ACTIONS(4609), + [sym_real_literal] = ACTIONS(4609), + [sym_integer_literal] = ACTIONS(4607), + [sym_hex_literal] = ACTIONS(4609), + [sym_bin_literal] = ACTIONS(4609), + [anon_sym_true] = ACTIONS(4607), + [anon_sym_false] = ACTIONS(4607), + [anon_sym_SQUOTE] = ACTIONS(4609), + [sym__backtick_identifier] = ACTIONS(4609), + [sym__automatic_semicolon] = ACTIONS(4609), + [sym_safe_nav] = ACTIONS(4609), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4609), }, - [3226] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(6678), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [3239] = { + [sym_class_body] = STATE(3453), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(6619), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_RBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_DASH_GT] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_while] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_PLUS_EQ] = ACTIONS(4355), + [anon_sym_DASH_EQ] = ACTIONS(4355), + [anon_sym_STAR_EQ] = ACTIONS(4355), + [anon_sym_SLASH_EQ] = ACTIONS(4355), + [anon_sym_PERCENT_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), }, - [3227] = { - [sym__alpha_identifier] = ACTIONS(4983), - [anon_sym_AT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_where] = ACTIONS(4983), - [anon_sym_object] = ACTIONS(4983), - [anon_sym_fun] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_get] = ACTIONS(4983), - [anon_sym_set] = ACTIONS(4983), - [anon_sym_this] = ACTIONS(4983), - [anon_sym_super] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [sym_label] = ACTIONS(4983), - [anon_sym_in] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4985), - [anon_sym_QMARK_COLON] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_null] = ACTIONS(4983), - [anon_sym_if] = ACTIONS(4983), - [anon_sym_else] = ACTIONS(4983), - [anon_sym_when] = ACTIONS(4983), - [anon_sym_try] = ACTIONS(4983), - [anon_sym_throw] = ACTIONS(4983), - [anon_sym_return] = ACTIONS(4983), - [anon_sym_continue] = ACTIONS(4983), - [anon_sym_break] = ACTIONS(4983), - [anon_sym_COLON_COLON] = ACTIONS(4985), - [anon_sym_PLUS_EQ] = ACTIONS(4985), - [anon_sym_DASH_EQ] = ACTIONS(4985), - [anon_sym_STAR_EQ] = ACTIONS(4985), - [anon_sym_SLASH_EQ] = ACTIONS(4985), - [anon_sym_PERCENT_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_BANGin] = ACTIONS(4985), - [anon_sym_is] = ACTIONS(4983), - [anon_sym_BANGis] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_as_QMARK] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_BANG_BANG] = ACTIONS(4985), - [anon_sym_data] = ACTIONS(4983), - [anon_sym_inner] = ACTIONS(4983), - [anon_sym_value] = ACTIONS(4983), - [anon_sym_expect] = ACTIONS(4983), - [anon_sym_actual] = ACTIONS(4983), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4985), - [anon_sym_continue_AT] = ACTIONS(4985), - [anon_sym_break_AT] = ACTIONS(4985), - [anon_sym_this_AT] = ACTIONS(4985), - [anon_sym_super_AT] = ACTIONS(4985), - [sym_real_literal] = ACTIONS(4985), - [sym_integer_literal] = ACTIONS(4983), - [sym_hex_literal] = ACTIONS(4985), - [sym_bin_literal] = ACTIONS(4985), - [anon_sym_true] = ACTIONS(4983), - [anon_sym_false] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4985), - [sym__backtick_identifier] = ACTIONS(4985), - [sym__automatic_semicolon] = ACTIONS(4985), - [sym_safe_nav] = ACTIONS(4985), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4985), + [3240] = { + [sym__alpha_identifier] = ACTIONS(4136), + [anon_sym_AT] = ACTIONS(4138), + [anon_sym_COLON] = ACTIONS(6450), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_RBRACK] = ACTIONS(4138), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym_COMMA] = ACTIONS(4138), + [anon_sym_RPAREN] = ACTIONS(4138), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4136), + [anon_sym_GT] = ACTIONS(4136), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(4136), + [anon_sym_set] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_DASH_GT] = ACTIONS(4138), + [sym_label] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_while] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4138), + [anon_sym_QMARK_COLON] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_PIPE_PIPE] = ACTIONS(4138), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4138), + [anon_sym_DASH_EQ] = ACTIONS(4138), + [anon_sym_STAR_EQ] = ACTIONS(4138), + [anon_sym_SLASH_EQ] = ACTIONS(4138), + [anon_sym_PERCENT_EQ] = ACTIONS(4138), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4138), + [anon_sym_GT_EQ] = ACTIONS(4138), + [anon_sym_BANGin] = ACTIONS(4138), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_BANGis] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_SLASH] = ACTIONS(4136), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_BANG_BANG] = ACTIONS(4138), + [anon_sym_suspend] = ACTIONS(4136), + [anon_sym_sealed] = ACTIONS(4136), + [anon_sym_annotation] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4136), + [anon_sym_inner] = ACTIONS(4136), + [anon_sym_value] = ACTIONS(4136), + [anon_sym_override] = ACTIONS(4136), + [anon_sym_lateinit] = ACTIONS(4136), + [anon_sym_public] = ACTIONS(4136), + [anon_sym_private] = ACTIONS(4136), + [anon_sym_internal] = ACTIONS(4136), + [anon_sym_protected] = ACTIONS(4136), + [anon_sym_tailrec] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_infix] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym_external] = ACTIONS(4136), + [sym_property_modifier] = ACTIONS(4136), + [anon_sym_abstract] = ACTIONS(4136), + [anon_sym_final] = ACTIONS(4136), + [anon_sym_open] = ACTIONS(4136), + [anon_sym_vararg] = ACTIONS(4136), + [anon_sym_noinline] = ACTIONS(4136), + [anon_sym_crossinline] = ACTIONS(4136), + [anon_sym_expect] = ACTIONS(4136), + [anon_sym_actual] = ACTIONS(4136), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4138), + [sym_safe_nav] = ACTIONS(4138), + [sym_multiline_comment] = ACTIONS(3), }, - [3228] = { - [sym__alpha_identifier] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_where] = ACTIONS(4955), - [anon_sym_object] = ACTIONS(4955), - [anon_sym_fun] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4957), - [anon_sym_get] = ACTIONS(4955), - [anon_sym_set] = ACTIONS(4955), - [anon_sym_this] = ACTIONS(4955), - [anon_sym_super] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4955), - [anon_sym_in] = ACTIONS(4955), - [anon_sym_DOT_DOT] = ACTIONS(4957), - [anon_sym_QMARK_COLON] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_null] = ACTIONS(4955), - [anon_sym_if] = ACTIONS(4955), - [anon_sym_else] = ACTIONS(4955), - [anon_sym_when] = ACTIONS(4955), - [anon_sym_try] = ACTIONS(4955), - [anon_sym_throw] = ACTIONS(4955), - [anon_sym_return] = ACTIONS(4955), - [anon_sym_continue] = ACTIONS(4955), - [anon_sym_break] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4957), - [anon_sym_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_BANGin] = ACTIONS(4957), - [anon_sym_is] = ACTIONS(4955), - [anon_sym_BANGis] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_BANG] = ACTIONS(4955), - [anon_sym_BANG_BANG] = ACTIONS(4957), - [anon_sym_data] = ACTIONS(4955), - [anon_sym_inner] = ACTIONS(4955), - [anon_sym_value] = ACTIONS(4955), - [anon_sym_expect] = ACTIONS(4955), - [anon_sym_actual] = ACTIONS(4955), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4957), - [anon_sym_continue_AT] = ACTIONS(4957), - [anon_sym_break_AT] = ACTIONS(4957), - [anon_sym_this_AT] = ACTIONS(4957), - [anon_sym_super_AT] = ACTIONS(4957), - [sym_real_literal] = ACTIONS(4957), - [sym_integer_literal] = ACTIONS(4955), - [sym_hex_literal] = ACTIONS(4957), - [sym_bin_literal] = ACTIONS(4957), - [anon_sym_true] = ACTIONS(4955), - [anon_sym_false] = ACTIONS(4955), - [anon_sym_SQUOTE] = ACTIONS(4957), - [sym__backtick_identifier] = ACTIONS(4957), - [sym__automatic_semicolon] = ACTIONS(4957), - [sym_safe_nav] = ACTIONS(4957), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4957), + [3241] = { + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(1772), + [anon_sym_super_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), }, - [3229] = { - [sym__alpha_identifier] = ACTIONS(4979), - [anon_sym_AT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4979), - [anon_sym_as] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4979), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_where] = ACTIONS(4979), - [anon_sym_object] = ACTIONS(4979), - [anon_sym_fun] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4981), - [anon_sym_get] = ACTIONS(4979), - [anon_sym_set] = ACTIONS(4979), - [anon_sym_this] = ACTIONS(4979), - [anon_sym_super] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [sym_label] = ACTIONS(4979), - [anon_sym_in] = ACTIONS(4979), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_QMARK_COLON] = ACTIONS(4981), - [anon_sym_AMP_AMP] = ACTIONS(4981), - [anon_sym_PIPE_PIPE] = ACTIONS(4981), - [anon_sym_null] = ACTIONS(4979), - [anon_sym_if] = ACTIONS(4979), - [anon_sym_else] = ACTIONS(4979), - [anon_sym_when] = ACTIONS(4979), - [anon_sym_try] = ACTIONS(4979), - [anon_sym_throw] = ACTIONS(4979), - [anon_sym_return] = ACTIONS(4979), - [anon_sym_continue] = ACTIONS(4979), - [anon_sym_break] = ACTIONS(4979), - [anon_sym_COLON_COLON] = ACTIONS(4981), - [anon_sym_PLUS_EQ] = ACTIONS(4981), - [anon_sym_DASH_EQ] = ACTIONS(4981), - [anon_sym_STAR_EQ] = ACTIONS(4981), - [anon_sym_SLASH_EQ] = ACTIONS(4981), - [anon_sym_PERCENT_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ] = ACTIONS(4979), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4981), - [anon_sym_EQ_EQ] = ACTIONS(4979), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_BANGin] = ACTIONS(4981), - [anon_sym_is] = ACTIONS(4979), - [anon_sym_BANGis] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_as_QMARK] = ACTIONS(4981), - [anon_sym_PLUS_PLUS] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_BANG] = ACTIONS(4979), - [anon_sym_BANG_BANG] = ACTIONS(4981), - [anon_sym_data] = ACTIONS(4979), - [anon_sym_inner] = ACTIONS(4979), - [anon_sym_value] = ACTIONS(4979), - [anon_sym_expect] = ACTIONS(4979), - [anon_sym_actual] = ACTIONS(4979), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4981), - [anon_sym_continue_AT] = ACTIONS(4981), - [anon_sym_break_AT] = ACTIONS(4981), - [anon_sym_this_AT] = ACTIONS(4981), - [anon_sym_super_AT] = ACTIONS(4981), - [sym_real_literal] = ACTIONS(4981), - [sym_integer_literal] = ACTIONS(4979), - [sym_hex_literal] = ACTIONS(4981), - [sym_bin_literal] = ACTIONS(4981), - [anon_sym_true] = ACTIONS(4979), - [anon_sym_false] = ACTIONS(4979), - [anon_sym_SQUOTE] = ACTIONS(4981), - [sym__backtick_identifier] = ACTIONS(4981), - [sym__automatic_semicolon] = ACTIONS(4981), - [sym_safe_nav] = ACTIONS(4981), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4981), + [3242] = { + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4646), + [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(4648), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4648), + [anon_sym_super_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), }, - [3230] = { - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [3243] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(6585), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [3231] = { - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [3244] = { + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_object] = ACTIONS(5145), + [anon_sym_fun] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_this] = ACTIONS(5145), + [anon_sym_super] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [sym_label] = ACTIONS(5145), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_null] = ACTIONS(5145), + [anon_sym_if] = ACTIONS(5145), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_when] = ACTIONS(5145), + [anon_sym_try] = ACTIONS(5145), + [anon_sym_throw] = ACTIONS(5145), + [anon_sym_return] = ACTIONS(5145), + [anon_sym_continue] = ACTIONS(5145), + [anon_sym_break] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5147), + [anon_sym_continue_AT] = ACTIONS(5147), + [anon_sym_break_AT] = ACTIONS(5147), + [anon_sym_this_AT] = ACTIONS(5147), + [anon_sym_super_AT] = ACTIONS(5147), + [sym_real_literal] = ACTIONS(5147), + [sym_integer_literal] = ACTIONS(5145), + [sym_hex_literal] = ACTIONS(5147), + [sym_bin_literal] = ACTIONS(5147), + [anon_sym_true] = ACTIONS(5145), + [anon_sym_false] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5147), + [sym__backtick_identifier] = ACTIONS(5147), + [sym__automatic_semicolon] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5147), }, - [3232] = { - [sym__alpha_identifier] = ACTIONS(5113), - [anon_sym_AT] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_as] = ACTIONS(5113), - [anon_sym_EQ] = ACTIONS(5113), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_RBRACE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_where] = ACTIONS(5113), - [anon_sym_object] = ACTIONS(5113), - [anon_sym_fun] = ACTIONS(5113), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_get] = ACTIONS(5113), - [anon_sym_set] = ACTIONS(5113), - [anon_sym_this] = ACTIONS(5113), - [anon_sym_super] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [sym_label] = ACTIONS(5113), - [anon_sym_in] = ACTIONS(5113), - [anon_sym_DOT_DOT] = ACTIONS(5115), - [anon_sym_QMARK_COLON] = ACTIONS(5115), - [anon_sym_AMP_AMP] = ACTIONS(5115), - [anon_sym_PIPE_PIPE] = ACTIONS(5115), - [anon_sym_null] = ACTIONS(5113), - [anon_sym_if] = ACTIONS(5113), - [anon_sym_else] = ACTIONS(5113), - [anon_sym_when] = ACTIONS(5113), - [anon_sym_try] = ACTIONS(5113), - [anon_sym_throw] = ACTIONS(5113), - [anon_sym_return] = ACTIONS(5113), - [anon_sym_continue] = ACTIONS(5113), - [anon_sym_break] = ACTIONS(5113), - [anon_sym_COLON_COLON] = ACTIONS(5115), - [anon_sym_PLUS_EQ] = ACTIONS(5115), - [anon_sym_DASH_EQ] = ACTIONS(5115), - [anon_sym_STAR_EQ] = ACTIONS(5115), - [anon_sym_SLASH_EQ] = ACTIONS(5115), - [anon_sym_PERCENT_EQ] = ACTIONS(5115), - [anon_sym_BANG_EQ] = ACTIONS(5113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5115), - [anon_sym_EQ_EQ] = ACTIONS(5113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5115), - [anon_sym_LT_EQ] = ACTIONS(5115), - [anon_sym_GT_EQ] = ACTIONS(5115), - [anon_sym_BANGin] = ACTIONS(5115), - [anon_sym_is] = ACTIONS(5113), - [anon_sym_BANGis] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_PERCENT] = ACTIONS(5113), - [anon_sym_as_QMARK] = ACTIONS(5115), - [anon_sym_PLUS_PLUS] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5115), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_BANG_BANG] = ACTIONS(5115), - [anon_sym_data] = ACTIONS(5113), - [anon_sym_inner] = ACTIONS(5113), - [anon_sym_value] = ACTIONS(5113), - [anon_sym_expect] = ACTIONS(5113), - [anon_sym_actual] = ACTIONS(5113), + [3245] = { + [sym__alpha_identifier] = ACTIONS(5129), + [anon_sym_AT] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5129), + [anon_sym_GT] = ACTIONS(5129), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_object] = ACTIONS(5129), + [anon_sym_fun] = ACTIONS(5129), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym_get] = ACTIONS(5129), + [anon_sym_set] = ACTIONS(5129), + [anon_sym_this] = ACTIONS(5129), + [anon_sym_super] = ACTIONS(5129), + [anon_sym_STAR] = ACTIONS(5129), + [sym_label] = ACTIONS(5129), + [anon_sym_in] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5131), + [anon_sym_QMARK_COLON] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_null] = ACTIONS(5129), + [anon_sym_if] = ACTIONS(5129), + [anon_sym_else] = ACTIONS(5129), + [anon_sym_when] = ACTIONS(5129), + [anon_sym_try] = ACTIONS(5129), + [anon_sym_throw] = ACTIONS(5129), + [anon_sym_return] = ACTIONS(5129), + [anon_sym_continue] = ACTIONS(5129), + [anon_sym_break] = ACTIONS(5129), + [anon_sym_COLON_COLON] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_BANGin] = ACTIONS(5131), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_BANGis] = ACTIONS(5131), + [anon_sym_PLUS] = ACTIONS(5129), + [anon_sym_DASH] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_as_QMARK] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5129), + [anon_sym_BANG_BANG] = ACTIONS(5131), + [anon_sym_data] = ACTIONS(5129), + [anon_sym_inner] = ACTIONS(5129), + [anon_sym_value] = ACTIONS(5129), + [anon_sym_expect] = ACTIONS(5129), + [anon_sym_actual] = ACTIONS(5129), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5115), - [anon_sym_continue_AT] = ACTIONS(5115), - [anon_sym_break_AT] = ACTIONS(5115), - [anon_sym_this_AT] = ACTIONS(5115), - [anon_sym_super_AT] = ACTIONS(5115), - [sym_real_literal] = ACTIONS(5115), - [sym_integer_literal] = ACTIONS(5113), - [sym_hex_literal] = ACTIONS(5115), - [sym_bin_literal] = ACTIONS(5115), - [anon_sym_true] = ACTIONS(5113), - [anon_sym_false] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5115), - [sym__backtick_identifier] = ACTIONS(5115), - [sym__automatic_semicolon] = ACTIONS(5115), - [sym_safe_nav] = ACTIONS(5115), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5115), - }, - [3233] = { - [sym__alpha_identifier] = ACTIONS(5027), - [anon_sym_AT] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5027), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(5029), - [anon_sym_super_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), - }, - [3234] = { - [sym__alpha_identifier] = ACTIONS(5039), - [anon_sym_AT] = ACTIONS(5041), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5041), - [anon_sym_RBRACE] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5041), - [anon_sym_COMMA] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5039), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_where] = ACTIONS(5039), - [anon_sym_object] = ACTIONS(5039), - [anon_sym_fun] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5041), - [anon_sym_get] = ACTIONS(5039), - [anon_sym_set] = ACTIONS(5039), - [anon_sym_this] = ACTIONS(5039), - [anon_sym_super] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [sym_label] = ACTIONS(5039), - [anon_sym_in] = ACTIONS(5039), - [anon_sym_DOT_DOT] = ACTIONS(5041), - [anon_sym_QMARK_COLON] = ACTIONS(5041), - [anon_sym_AMP_AMP] = ACTIONS(5041), - [anon_sym_PIPE_PIPE] = ACTIONS(5041), - [anon_sym_null] = ACTIONS(5039), - [anon_sym_if] = ACTIONS(5039), - [anon_sym_else] = ACTIONS(5039), - [anon_sym_when] = ACTIONS(5039), - [anon_sym_try] = ACTIONS(5039), - [anon_sym_throw] = ACTIONS(5039), - [anon_sym_return] = ACTIONS(5039), - [anon_sym_continue] = ACTIONS(5039), - [anon_sym_break] = ACTIONS(5039), - [anon_sym_COLON_COLON] = ACTIONS(5041), - [anon_sym_PLUS_EQ] = ACTIONS(5041), - [anon_sym_DASH_EQ] = ACTIONS(5041), - [anon_sym_STAR_EQ] = ACTIONS(5041), - [anon_sym_SLASH_EQ] = ACTIONS(5041), - [anon_sym_PERCENT_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), - [anon_sym_LT_EQ] = ACTIONS(5041), - [anon_sym_GT_EQ] = ACTIONS(5041), - [anon_sym_BANGin] = ACTIONS(5041), - [anon_sym_is] = ACTIONS(5039), - [anon_sym_BANGis] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_as_QMARK] = ACTIONS(5041), - [anon_sym_PLUS_PLUS] = ACTIONS(5041), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5039), - [anon_sym_BANG_BANG] = ACTIONS(5041), - [anon_sym_data] = ACTIONS(5039), - [anon_sym_inner] = ACTIONS(5039), - [anon_sym_value] = ACTIONS(5039), - [anon_sym_expect] = ACTIONS(5039), - [anon_sym_actual] = ACTIONS(5039), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5041), - [anon_sym_continue_AT] = ACTIONS(5041), - [anon_sym_break_AT] = ACTIONS(5041), - [anon_sym_this_AT] = ACTIONS(5041), - [anon_sym_super_AT] = ACTIONS(5041), - [sym_real_literal] = ACTIONS(5041), - [sym_integer_literal] = ACTIONS(5039), - [sym_hex_literal] = ACTIONS(5041), - [sym_bin_literal] = ACTIONS(5041), - [anon_sym_true] = ACTIONS(5039), - [anon_sym_false] = ACTIONS(5039), - [anon_sym_SQUOTE] = ACTIONS(5041), - [sym__backtick_identifier] = ACTIONS(5041), - [sym__automatic_semicolon] = ACTIONS(5041), - [sym_safe_nav] = ACTIONS(5041), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5041), - }, - [3235] = { - [aux_sym_user_type_repeat1] = STATE(2950), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_RBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(6682), - [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_by] = ACTIONS(4162), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_GT] = ACTIONS(4162), - [anon_sym_where] = 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_value] = 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), + [anon_sym_return_AT] = ACTIONS(5131), + [anon_sym_continue_AT] = ACTIONS(5131), + [anon_sym_break_AT] = ACTIONS(5131), + [anon_sym_this_AT] = ACTIONS(5131), + [anon_sym_super_AT] = ACTIONS(5131), + [sym_real_literal] = ACTIONS(5131), + [sym_integer_literal] = ACTIONS(5129), + [sym_hex_literal] = ACTIONS(5131), + [sym_bin_literal] = ACTIONS(5131), + [anon_sym_true] = ACTIONS(5129), + [anon_sym_false] = ACTIONS(5129), + [anon_sym_SQUOTE] = ACTIONS(5131), + [sym__backtick_identifier] = ACTIONS(5131), + [sym__automatic_semicolon] = ACTIONS(5131), + [sym_safe_nav] = ACTIONS(5131), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5131), }, - [3236] = { - [sym_function_body] = STATE(3084), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), + [3246] = { + [sym__alpha_identifier] = ACTIONS(5137), + [anon_sym_AT] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_object] = ACTIONS(5137), + [anon_sym_fun] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5137), + [anon_sym_set] = ACTIONS(5137), + [anon_sym_this] = ACTIONS(5137), + [anon_sym_super] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5137), + [sym_label] = ACTIONS(5137), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_QMARK_COLON] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_null] = ACTIONS(5137), + [anon_sym_if] = ACTIONS(5137), + [anon_sym_else] = ACTIONS(5137), + [anon_sym_when] = ACTIONS(5137), + [anon_sym_try] = ACTIONS(5137), + [anon_sym_throw] = ACTIONS(5137), + [anon_sym_return] = ACTIONS(5137), + [anon_sym_continue] = ACTIONS(5137), + [anon_sym_break] = ACTIONS(5137), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_PLUS_EQ] = ACTIONS(5139), + [anon_sym_DASH_EQ] = ACTIONS(5139), + [anon_sym_STAR_EQ] = ACTIONS(5139), + [anon_sym_SLASH_EQ] = ACTIONS(5139), + [anon_sym_PERCENT_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_BANGin] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5137), + [anon_sym_BANGis] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5137), + [anon_sym_as_QMARK] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5137), + [anon_sym_BANG_BANG] = ACTIONS(5139), + [anon_sym_data] = ACTIONS(5137), + [anon_sym_inner] = ACTIONS(5137), + [anon_sym_value] = ACTIONS(5137), + [anon_sym_expect] = ACTIONS(5137), + [anon_sym_actual] = ACTIONS(5137), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(5139), + [anon_sym_continue_AT] = ACTIONS(5139), + [anon_sym_break_AT] = ACTIONS(5139), + [anon_sym_this_AT] = ACTIONS(5139), + [anon_sym_super_AT] = ACTIONS(5139), + [sym_real_literal] = ACTIONS(5139), + [sym_integer_literal] = ACTIONS(5137), + [sym_hex_literal] = ACTIONS(5139), + [sym_bin_literal] = ACTIONS(5139), + [anon_sym_true] = ACTIONS(5137), + [anon_sym_false] = ACTIONS(5137), + [anon_sym_SQUOTE] = ACTIONS(5139), + [sym__backtick_identifier] = ACTIONS(5139), + [sym__automatic_semicolon] = ACTIONS(5139), + [sym_safe_nav] = ACTIONS(5139), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(5139), }, - [3237] = { - [sym__alpha_identifier] = ACTIONS(5043), - [anon_sym_AT] = ACTIONS(5045), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5045), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5045), - [anon_sym_COMMA] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5043), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_where] = ACTIONS(5043), - [anon_sym_object] = ACTIONS(5043), - [anon_sym_fun] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5045), - [anon_sym_get] = ACTIONS(5043), - [anon_sym_set] = ACTIONS(5043), - [anon_sym_this] = ACTIONS(5043), - [anon_sym_super] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [sym_label] = ACTIONS(5043), - [anon_sym_in] = ACTIONS(5043), - [anon_sym_DOT_DOT] = ACTIONS(5045), - [anon_sym_QMARK_COLON] = ACTIONS(5045), - [anon_sym_AMP_AMP] = ACTIONS(5045), - [anon_sym_PIPE_PIPE] = ACTIONS(5045), - [anon_sym_null] = ACTIONS(5043), - [anon_sym_if] = ACTIONS(5043), - [anon_sym_else] = ACTIONS(5043), - [anon_sym_when] = ACTIONS(5043), - [anon_sym_try] = ACTIONS(5043), - [anon_sym_throw] = ACTIONS(5043), - [anon_sym_return] = ACTIONS(5043), - [anon_sym_continue] = ACTIONS(5043), - [anon_sym_break] = ACTIONS(5043), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_PLUS_EQ] = ACTIONS(5045), - [anon_sym_DASH_EQ] = ACTIONS(5045), - [anon_sym_STAR_EQ] = ACTIONS(5045), - [anon_sym_SLASH_EQ] = ACTIONS(5045), - [anon_sym_PERCENT_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5045), - [anon_sym_GT_EQ] = ACTIONS(5045), - [anon_sym_BANGin] = ACTIONS(5045), - [anon_sym_is] = ACTIONS(5043), - [anon_sym_BANGis] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_as_QMARK] = ACTIONS(5045), - [anon_sym_PLUS_PLUS] = ACTIONS(5045), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_BANG] = ACTIONS(5043), - [anon_sym_BANG_BANG] = ACTIONS(5045), - [anon_sym_data] = ACTIONS(5043), - [anon_sym_inner] = ACTIONS(5043), - [anon_sym_value] = ACTIONS(5043), - [anon_sym_expect] = ACTIONS(5043), - [anon_sym_actual] = ACTIONS(5043), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5045), - [anon_sym_continue_AT] = ACTIONS(5045), - [anon_sym_break_AT] = ACTIONS(5045), - [anon_sym_this_AT] = ACTIONS(5045), - [anon_sym_super_AT] = ACTIONS(5045), - [sym_real_literal] = ACTIONS(5045), - [sym_integer_literal] = ACTIONS(5043), - [sym_hex_literal] = ACTIONS(5045), - [sym_bin_literal] = ACTIONS(5045), - [anon_sym_true] = ACTIONS(5043), - [anon_sym_false] = ACTIONS(5043), - [anon_sym_SQUOTE] = ACTIONS(5045), - [sym__backtick_identifier] = ACTIONS(5045), - [sym__automatic_semicolon] = ACTIONS(5045), - [sym_safe_nav] = ACTIONS(5045), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5045), + [3247] = { + [sym__alpha_identifier] = ACTIONS(5041), + [anon_sym_AT] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5041), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(5043), + [anon_sym_super_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), }, - [3238] = { - [sym__alpha_identifier] = ACTIONS(4672), - [anon_sym_AT] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(4674), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_LBRACE] = ACTIONS(4674), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_COMMA] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4672), - [anon_sym_GT] = ACTIONS(4672), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_object] = ACTIONS(4672), - [anon_sym_fun] = ACTIONS(4672), - [anon_sym_SEMI] = ACTIONS(4674), - [anon_sym_get] = ACTIONS(4672), - [anon_sym_set] = ACTIONS(4672), - [anon_sym_this] = ACTIONS(4672), - [anon_sym_super] = ACTIONS(4672), - [anon_sym_STAR] = ACTIONS(4672), - [sym_label] = ACTIONS(4672), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(4674), - [anon_sym_QMARK_COLON] = ACTIONS(4674), - [anon_sym_AMP_AMP] = ACTIONS(4674), - [anon_sym_PIPE_PIPE] = ACTIONS(4674), - [anon_sym_null] = ACTIONS(4672), - [anon_sym_if] = ACTIONS(4672), - [anon_sym_else] = ACTIONS(4672), - [anon_sym_when] = ACTIONS(4672), - [anon_sym_try] = ACTIONS(4672), - [anon_sym_throw] = ACTIONS(4672), - [anon_sym_return] = ACTIONS(4672), - [anon_sym_continue] = ACTIONS(4672), - [anon_sym_break] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_PLUS_EQ] = ACTIONS(4674), - [anon_sym_DASH_EQ] = ACTIONS(4674), - [anon_sym_STAR_EQ] = ACTIONS(4674), - [anon_sym_SLASH_EQ] = ACTIONS(4674), - [anon_sym_PERCENT_EQ] = ACTIONS(4674), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), - [anon_sym_LT_EQ] = ACTIONS(4674), - [anon_sym_GT_EQ] = ACTIONS(4674), - [anon_sym_BANGin] = ACTIONS(4674), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_BANGis] = ACTIONS(4674), - [anon_sym_PLUS] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_as_QMARK] = ACTIONS(4674), - [anon_sym_PLUS_PLUS] = ACTIONS(4674), - [anon_sym_DASH_DASH] = ACTIONS(4674), - [anon_sym_BANG] = ACTIONS(4672), - [anon_sym_BANG_BANG] = ACTIONS(4674), - [anon_sym_data] = ACTIONS(4672), - [anon_sym_inner] = ACTIONS(4672), - [anon_sym_value] = ACTIONS(4672), - [anon_sym_expect] = ACTIONS(4672), - [anon_sym_actual] = ACTIONS(4672), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4674), - [anon_sym_continue_AT] = ACTIONS(4674), - [anon_sym_break_AT] = ACTIONS(4674), - [anon_sym_this_AT] = ACTIONS(4674), - [anon_sym_super_AT] = ACTIONS(4674), - [sym_real_literal] = ACTIONS(4674), - [sym_integer_literal] = ACTIONS(4672), - [sym_hex_literal] = ACTIONS(4674), - [sym_bin_literal] = ACTIONS(4674), - [anon_sym_true] = ACTIONS(4672), - [anon_sym_false] = ACTIONS(4672), - [anon_sym_SQUOTE] = ACTIONS(4674), - [sym__backtick_identifier] = ACTIONS(4674), - [sym__automatic_semicolon] = ACTIONS(4674), - [sym_safe_nav] = ACTIONS(4674), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4674), + [3248] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6621), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, - [3239] = { - [sym__alpha_identifier] = ACTIONS(4762), - [anon_sym_AT] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4762), - [anon_sym_as] = ACTIONS(4762), - [anon_sym_EQ] = ACTIONS(4762), - [anon_sym_LBRACE] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4762), - [anon_sym_object] = ACTIONS(4762), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4764), - [anon_sym_super_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), + [3249] = { + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_RBRACK] = ACTIONS(4404), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(4404), + [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_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_value] = 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), + [aux_sym_unsigned_literal_token1] = ACTIONS(6625), + [anon_sym_L] = ACTIONS(6627), + [sym__backtick_identifier] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), + [sym_multiline_comment] = ACTIONS(3), }, - [3240] = { - [sym__alpha_identifier] = ACTIONS(4967), - [anon_sym_AT] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4967), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4969), - [anon_sym_super_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), + [3250] = { + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, - [3241] = { - [sym__alpha_identifier] = ACTIONS(5173), - [anon_sym_AT] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_RBRACE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5173), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_object] = ACTIONS(5173), - [anon_sym_fun] = ACTIONS(5173), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_get] = ACTIONS(5173), - [anon_sym_set] = ACTIONS(5173), - [anon_sym_this] = ACTIONS(5173), - [anon_sym_super] = ACTIONS(5173), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5173), - [anon_sym_in] = ACTIONS(5173), - [anon_sym_DOT_DOT] = ACTIONS(5175), - [anon_sym_QMARK_COLON] = ACTIONS(5175), - [anon_sym_AMP_AMP] = ACTIONS(5175), - [anon_sym_PIPE_PIPE] = ACTIONS(5175), - [anon_sym_null] = ACTIONS(5173), - [anon_sym_if] = ACTIONS(5173), - [anon_sym_else] = ACTIONS(5173), - [anon_sym_when] = ACTIONS(5173), - [anon_sym_try] = ACTIONS(5173), - [anon_sym_throw] = ACTIONS(5173), - [anon_sym_return] = ACTIONS(5173), - [anon_sym_continue] = ACTIONS(5173), - [anon_sym_break] = ACTIONS(5173), - [anon_sym_COLON_COLON] = ACTIONS(5175), - [anon_sym_PLUS_EQ] = ACTIONS(5175), - [anon_sym_DASH_EQ] = ACTIONS(5175), - [anon_sym_STAR_EQ] = ACTIONS(5175), - [anon_sym_SLASH_EQ] = ACTIONS(5175), - [anon_sym_PERCENT_EQ] = ACTIONS(5175), - [anon_sym_BANG_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5175), - [anon_sym_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5175), - [anon_sym_LT_EQ] = ACTIONS(5175), - [anon_sym_GT_EQ] = ACTIONS(5175), - [anon_sym_BANGin] = ACTIONS(5175), - [anon_sym_is] = ACTIONS(5173), - [anon_sym_BANGis] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5173), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5173), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5175), - [anon_sym_PLUS_PLUS] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5173), - [anon_sym_BANG_BANG] = ACTIONS(5175), - [anon_sym_data] = ACTIONS(5173), - [anon_sym_inner] = ACTIONS(5173), - [anon_sym_value] = ACTIONS(5173), - [anon_sym_expect] = ACTIONS(5173), - [anon_sym_actual] = ACTIONS(5173), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5175), - [anon_sym_continue_AT] = ACTIONS(5175), - [anon_sym_break_AT] = ACTIONS(5175), - [anon_sym_this_AT] = ACTIONS(5175), - [anon_sym_super_AT] = ACTIONS(5175), - [sym_real_literal] = ACTIONS(5175), - [sym_integer_literal] = ACTIONS(5173), - [sym_hex_literal] = ACTIONS(5175), - [sym_bin_literal] = ACTIONS(5175), - [anon_sym_true] = ACTIONS(5173), - [anon_sym_false] = ACTIONS(5173), - [anon_sym_SQUOTE] = ACTIONS(5175), - [sym__backtick_identifier] = ACTIONS(5175), - [sym__automatic_semicolon] = ACTIONS(5175), - [sym_safe_nav] = ACTIONS(5175), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5175), + [3251] = { + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, - [3242] = { - [sym__alpha_identifier] = ACTIONS(4916), - [anon_sym_AT] = ACTIONS(4918), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_as] = ACTIONS(4916), - [anon_sym_EQ] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_COMMA] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_where] = ACTIONS(4916), - [anon_sym_object] = ACTIONS(4916), - [anon_sym_fun] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4918), - [anon_sym_get] = ACTIONS(4916), - [anon_sym_set] = ACTIONS(4916), - [anon_sym_this] = ACTIONS(4916), - [anon_sym_super] = ACTIONS(4916), - [anon_sym_STAR] = ACTIONS(4916), - [sym_label] = ACTIONS(4916), - [anon_sym_in] = ACTIONS(4916), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_QMARK_COLON] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_null] = ACTIONS(4916), - [anon_sym_if] = ACTIONS(4916), - [anon_sym_else] = ACTIONS(4916), - [anon_sym_when] = ACTIONS(4916), - [anon_sym_try] = ACTIONS(4916), - [anon_sym_throw] = ACTIONS(4916), - [anon_sym_return] = ACTIONS(4916), - [anon_sym_continue] = ACTIONS(4916), - [anon_sym_break] = ACTIONS(4916), - [anon_sym_COLON_COLON] = ACTIONS(4918), - [anon_sym_PLUS_EQ] = ACTIONS(4918), - [anon_sym_DASH_EQ] = ACTIONS(4918), - [anon_sym_STAR_EQ] = ACTIONS(4918), - [anon_sym_SLASH_EQ] = ACTIONS(4918), - [anon_sym_PERCENT_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4916), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), - [anon_sym_LT_EQ] = ACTIONS(4918), - [anon_sym_GT_EQ] = ACTIONS(4918), - [anon_sym_BANGin] = ACTIONS(4918), - [anon_sym_is] = ACTIONS(4916), - [anon_sym_BANGis] = ACTIONS(4918), - [anon_sym_PLUS] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4916), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_as_QMARK] = ACTIONS(4918), - [anon_sym_PLUS_PLUS] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(4918), - [anon_sym_BANG] = ACTIONS(4916), - [anon_sym_BANG_BANG] = ACTIONS(4918), - [anon_sym_data] = ACTIONS(4916), - [anon_sym_inner] = ACTIONS(4916), - [anon_sym_value] = ACTIONS(4916), - [anon_sym_expect] = ACTIONS(4916), - [anon_sym_actual] = ACTIONS(4916), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4918), - [anon_sym_continue_AT] = ACTIONS(4918), - [anon_sym_break_AT] = ACTIONS(4918), - [anon_sym_this_AT] = ACTIONS(4918), - [anon_sym_super_AT] = ACTIONS(4918), - [sym_real_literal] = ACTIONS(4918), - [sym_integer_literal] = ACTIONS(4916), - [sym_hex_literal] = ACTIONS(4918), - [sym_bin_literal] = ACTIONS(4918), - [anon_sym_true] = ACTIONS(4916), - [anon_sym_false] = ACTIONS(4916), - [anon_sym_SQUOTE] = ACTIONS(4918), - [sym__backtick_identifier] = ACTIONS(4918), - [sym__automatic_semicolon] = ACTIONS(4918), - [sym_safe_nav] = ACTIONS(4918), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4918), - }, - [3243] = { - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3294), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [3252] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_object] = ACTIONS(5153), + [anon_sym_fun] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_this] = ACTIONS(5153), + [anon_sym_super] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5153), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_null] = ACTIONS(5153), + [anon_sym_if] = ACTIONS(5153), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_when] = ACTIONS(5153), + [anon_sym_try] = ACTIONS(5153), + [anon_sym_throw] = ACTIONS(5153), + [anon_sym_return] = ACTIONS(5153), + [anon_sym_continue] = ACTIONS(5153), + [anon_sym_break] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [anon_sym_return_AT] = ACTIONS(5155), + [anon_sym_continue_AT] = ACTIONS(5155), + [anon_sym_break_AT] = ACTIONS(5155), + [anon_sym_this_AT] = ACTIONS(5155), + [anon_sym_super_AT] = ACTIONS(5155), + [sym_real_literal] = ACTIONS(5155), + [sym_integer_literal] = ACTIONS(5153), + [sym_hex_literal] = ACTIONS(5155), + [sym_bin_literal] = ACTIONS(5155), + [anon_sym_true] = ACTIONS(5153), + [anon_sym_false] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5155), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), - }, - [3244] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_object] = ACTIONS(5177), - [anon_sym_fun] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_this] = ACTIONS(5177), - [anon_sym_super] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5177), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_null] = ACTIONS(5177), - [anon_sym_if] = ACTIONS(5177), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_when] = ACTIONS(5177), - [anon_sym_try] = ACTIONS(5177), - [anon_sym_throw] = ACTIONS(5177), - [anon_sym_return] = ACTIONS(5177), - [anon_sym_continue] = ACTIONS(5177), - [anon_sym_break] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5177), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5179), - [anon_sym_continue_AT] = ACTIONS(5179), - [anon_sym_break_AT] = ACTIONS(5179), - [anon_sym_this_AT] = ACTIONS(5179), - [anon_sym_super_AT] = ACTIONS(5179), - [sym_real_literal] = ACTIONS(5179), - [sym_integer_literal] = ACTIONS(5177), - [sym_hex_literal] = ACTIONS(5179), - [sym_bin_literal] = ACTIONS(5179), - [anon_sym_true] = ACTIONS(5177), - [anon_sym_false] = ACTIONS(5177), - [anon_sym_SQUOTE] = ACTIONS(5179), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5179), + [sym__string_start] = ACTIONS(5155), }, - [3245] = { - [sym__alpha_identifier] = ACTIONS(5071), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_as] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(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_SEMI] = ACTIONS(5073), - [anon_sym_get] = ACTIONS(5071), - [anon_sym_set] = ACTIONS(5071), - [anon_sym_this] = ACTIONS(5071), - [anon_sym_super] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [sym_label] = ACTIONS(5071), - [anon_sym_in] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(5073), - [anon_sym_QMARK_COLON] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_null] = ACTIONS(5071), - [anon_sym_if] = ACTIONS(5071), - [anon_sym_else] = ACTIONS(5071), - [anon_sym_when] = ACTIONS(5071), - [anon_sym_try] = ACTIONS(5071), - [anon_sym_throw] = ACTIONS(5071), - [anon_sym_return] = ACTIONS(5071), - [anon_sym_continue] = ACTIONS(5071), - [anon_sym_break] = ACTIONS(5071), - [anon_sym_COLON_COLON] = ACTIONS(5073), - [anon_sym_PLUS_EQ] = ACTIONS(5073), - [anon_sym_DASH_EQ] = ACTIONS(5073), - [anon_sym_STAR_EQ] = ACTIONS(5073), - [anon_sym_SLASH_EQ] = ACTIONS(5073), - [anon_sym_PERCENT_EQ] = ACTIONS(5073), - [anon_sym_BANG_EQ] = ACTIONS(5071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), - [anon_sym_EQ_EQ] = ACTIONS(5071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), - [anon_sym_LT_EQ] = ACTIONS(5073), - [anon_sym_GT_EQ] = ACTIONS(5073), - [anon_sym_BANGin] = ACTIONS(5073), - [anon_sym_is] = ACTIONS(5071), - [anon_sym_BANGis] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_as_QMARK] = ACTIONS(5073), - [anon_sym_PLUS_PLUS] = ACTIONS(5073), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5071), - [anon_sym_BANG_BANG] = ACTIONS(5073), - [anon_sym_data] = ACTIONS(5071), - [anon_sym_inner] = ACTIONS(5071), - [anon_sym_value] = ACTIONS(5071), - [anon_sym_expect] = ACTIONS(5071), - [anon_sym_actual] = ACTIONS(5071), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5073), - [anon_sym_continue_AT] = ACTIONS(5073), - [anon_sym_break_AT] = ACTIONS(5073), - [anon_sym_this_AT] = ACTIONS(5073), - [anon_sym_super_AT] = ACTIONS(5073), - [sym_real_literal] = ACTIONS(5073), - [sym_integer_literal] = ACTIONS(5071), - [sym_hex_literal] = ACTIONS(5073), - [sym_bin_literal] = ACTIONS(5073), - [anon_sym_true] = ACTIONS(5071), - [anon_sym_false] = ACTIONS(5071), - [anon_sym_SQUOTE] = ACTIONS(5073), - [sym__backtick_identifier] = ACTIONS(5073), - [sym__automatic_semicolon] = ACTIONS(5073), - [sym_safe_nav] = ACTIONS(5073), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5073), + [3253] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_object] = ACTIONS(4455), + [anon_sym_fun] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_this] = ACTIONS(4455), + [anon_sym_super] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4455), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_null] = ACTIONS(4455), + [anon_sym_if] = ACTIONS(4455), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_when] = ACTIONS(4455), + [anon_sym_try] = ACTIONS(4455), + [anon_sym_throw] = ACTIONS(4455), + [anon_sym_return] = ACTIONS(4455), + [anon_sym_continue] = ACTIONS(4455), + [anon_sym_break] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4455), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4457), + [anon_sym_continue_AT] = ACTIONS(4457), + [anon_sym_break_AT] = ACTIONS(4457), + [anon_sym_this_AT] = ACTIONS(4457), + [anon_sym_super_AT] = ACTIONS(4457), + [sym_real_literal] = ACTIONS(4457), + [sym_integer_literal] = ACTIONS(4455), + [sym_hex_literal] = ACTIONS(4457), + [sym_bin_literal] = ACTIONS(4457), + [anon_sym_true] = ACTIONS(4455), + [anon_sym_false] = ACTIONS(4455), + [anon_sym_SQUOTE] = ACTIONS(4457), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4457), }, - [3246] = { - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(4470), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_object] = ACTIONS(4468), - [anon_sym_fun] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_this] = ACTIONS(4468), - [anon_sym_super] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4468), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_null] = ACTIONS(4468), - [anon_sym_if] = ACTIONS(4468), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_when] = ACTIONS(4468), - [anon_sym_try] = ACTIONS(4468), - [anon_sym_throw] = ACTIONS(4468), - [anon_sym_return] = ACTIONS(4468), - [anon_sym_continue] = ACTIONS(4468), - [anon_sym_break] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4470), - [anon_sym_continue_AT] = ACTIONS(4470), - [anon_sym_break_AT] = ACTIONS(4470), - [anon_sym_this_AT] = ACTIONS(4470), - [anon_sym_super_AT] = ACTIONS(4470), - [sym_real_literal] = ACTIONS(4470), - [sym_integer_literal] = ACTIONS(4468), - [sym_hex_literal] = ACTIONS(4470), - [sym_bin_literal] = ACTIONS(4470), - [anon_sym_true] = ACTIONS(4468), - [anon_sym_false] = ACTIONS(4468), - [anon_sym_SQUOTE] = ACTIONS(4470), - [sym__backtick_identifier] = ACTIONS(4470), - [sym__automatic_semicolon] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4470), + [3254] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(6629), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(6631), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, - [3247] = { - [sym__alpha_identifier] = ACTIONS(5023), - [anon_sym_AT] = ACTIONS(5025), - [anon_sym_LBRACK] = ACTIONS(5025), - [anon_sym_DOT] = ACTIONS(5023), - [anon_sym_as] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5025), - [anon_sym_RBRACE] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5025), - [anon_sym_COMMA] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_where] = ACTIONS(5023), - [anon_sym_object] = ACTIONS(5023), - [anon_sym_fun] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5025), - [anon_sym_get] = ACTIONS(5023), - [anon_sym_set] = ACTIONS(5023), - [anon_sym_this] = ACTIONS(5023), - [anon_sym_super] = ACTIONS(5023), - [anon_sym_STAR] = ACTIONS(5023), - [sym_label] = ACTIONS(5023), - [anon_sym_in] = ACTIONS(5023), - [anon_sym_DOT_DOT] = ACTIONS(5025), - [anon_sym_QMARK_COLON] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_null] = ACTIONS(5023), - [anon_sym_if] = ACTIONS(5023), - [anon_sym_else] = ACTIONS(5023), - [anon_sym_when] = ACTIONS(5023), - [anon_sym_try] = ACTIONS(5023), - [anon_sym_throw] = ACTIONS(5023), - [anon_sym_return] = ACTIONS(5023), - [anon_sym_continue] = ACTIONS(5023), - [anon_sym_break] = ACTIONS(5023), - [anon_sym_COLON_COLON] = ACTIONS(5025), - [anon_sym_PLUS_EQ] = ACTIONS(5025), - [anon_sym_DASH_EQ] = ACTIONS(5025), - [anon_sym_STAR_EQ] = ACTIONS(5025), - [anon_sym_SLASH_EQ] = ACTIONS(5025), - [anon_sym_PERCENT_EQ] = ACTIONS(5025), - [anon_sym_BANG_EQ] = ACTIONS(5023), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5025), - [anon_sym_EQ_EQ] = ACTIONS(5023), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5025), - [anon_sym_LT_EQ] = ACTIONS(5025), - [anon_sym_GT_EQ] = ACTIONS(5025), - [anon_sym_BANGin] = ACTIONS(5025), - [anon_sym_is] = ACTIONS(5023), - [anon_sym_BANGis] = ACTIONS(5025), - [anon_sym_PLUS] = ACTIONS(5023), - [anon_sym_DASH] = ACTIONS(5023), - [anon_sym_SLASH] = ACTIONS(5023), - [anon_sym_PERCENT] = ACTIONS(5023), - [anon_sym_as_QMARK] = ACTIONS(5025), - [anon_sym_PLUS_PLUS] = ACTIONS(5025), - [anon_sym_DASH_DASH] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5023), - [anon_sym_BANG_BANG] = ACTIONS(5025), - [anon_sym_data] = ACTIONS(5023), - [anon_sym_inner] = ACTIONS(5023), - [anon_sym_value] = ACTIONS(5023), - [anon_sym_expect] = ACTIONS(5023), - [anon_sym_actual] = ACTIONS(5023), + [3255] = { + [sym__alpha_identifier] = ACTIONS(5141), + [anon_sym_AT] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_DOT] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(5141), + [anon_sym_LBRACE] = ACTIONS(5143), + [anon_sym_RBRACE] = ACTIONS(5143), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_LT] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5141), + [anon_sym_where] = ACTIONS(5141), + [anon_sym_object] = ACTIONS(5141), + [anon_sym_fun] = ACTIONS(5141), + [anon_sym_SEMI] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(5141), + [anon_sym_set] = ACTIONS(5141), + [anon_sym_this] = ACTIONS(5141), + [anon_sym_super] = ACTIONS(5141), + [anon_sym_STAR] = ACTIONS(5141), + [sym_label] = ACTIONS(5141), + [anon_sym_in] = ACTIONS(5141), + [anon_sym_DOT_DOT] = ACTIONS(5143), + [anon_sym_QMARK_COLON] = ACTIONS(5143), + [anon_sym_AMP_AMP] = ACTIONS(5143), + [anon_sym_PIPE_PIPE] = ACTIONS(5143), + [anon_sym_null] = ACTIONS(5141), + [anon_sym_if] = ACTIONS(5141), + [anon_sym_else] = ACTIONS(5141), + [anon_sym_when] = ACTIONS(5141), + [anon_sym_try] = ACTIONS(5141), + [anon_sym_throw] = ACTIONS(5141), + [anon_sym_return] = ACTIONS(5141), + [anon_sym_continue] = ACTIONS(5141), + [anon_sym_break] = ACTIONS(5141), + [anon_sym_COLON_COLON] = ACTIONS(5143), + [anon_sym_PLUS_EQ] = ACTIONS(5143), + [anon_sym_DASH_EQ] = ACTIONS(5143), + [anon_sym_STAR_EQ] = ACTIONS(5143), + [anon_sym_SLASH_EQ] = ACTIONS(5143), + [anon_sym_PERCENT_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), + [anon_sym_LT_EQ] = ACTIONS(5143), + [anon_sym_GT_EQ] = ACTIONS(5143), + [anon_sym_BANGin] = ACTIONS(5143), + [anon_sym_is] = ACTIONS(5141), + [anon_sym_BANGis] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5141), + [anon_sym_SLASH] = ACTIONS(5141), + [anon_sym_PERCENT] = ACTIONS(5141), + [anon_sym_as_QMARK] = ACTIONS(5143), + [anon_sym_PLUS_PLUS] = ACTIONS(5143), + [anon_sym_DASH_DASH] = ACTIONS(5143), + [anon_sym_BANG] = ACTIONS(5141), + [anon_sym_BANG_BANG] = ACTIONS(5143), + [anon_sym_data] = ACTIONS(5141), + [anon_sym_inner] = ACTIONS(5141), + [anon_sym_value] = ACTIONS(5141), + [anon_sym_expect] = ACTIONS(5141), + [anon_sym_actual] = ACTIONS(5141), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5025), - [anon_sym_continue_AT] = ACTIONS(5025), - [anon_sym_break_AT] = ACTIONS(5025), - [anon_sym_this_AT] = ACTIONS(5025), - [anon_sym_super_AT] = ACTIONS(5025), - [sym_real_literal] = ACTIONS(5025), - [sym_integer_literal] = ACTIONS(5023), - [sym_hex_literal] = ACTIONS(5025), - [sym_bin_literal] = ACTIONS(5025), - [anon_sym_true] = ACTIONS(5023), - [anon_sym_false] = ACTIONS(5023), - [anon_sym_SQUOTE] = ACTIONS(5025), - [sym__backtick_identifier] = ACTIONS(5025), - [sym__automatic_semicolon] = ACTIONS(5025), - [sym_safe_nav] = ACTIONS(5025), + [anon_sym_return_AT] = ACTIONS(5143), + [anon_sym_continue_AT] = ACTIONS(5143), + [anon_sym_break_AT] = ACTIONS(5143), + [anon_sym_this_AT] = ACTIONS(5143), + [anon_sym_super_AT] = ACTIONS(5143), + [sym_real_literal] = ACTIONS(5143), + [sym_integer_literal] = ACTIONS(5141), + [sym_hex_literal] = ACTIONS(5143), + [sym_bin_literal] = ACTIONS(5143), + [anon_sym_true] = ACTIONS(5141), + [anon_sym_false] = ACTIONS(5141), + [anon_sym_SQUOTE] = ACTIONS(5143), + [sym__backtick_identifier] = ACTIONS(5143), + [sym__automatic_semicolon] = ACTIONS(5143), + [sym_safe_nav] = ACTIONS(5143), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5025), - }, - [3248] = { - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4202), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), + [sym__string_start] = ACTIONS(5143), }, - [3249] = { - [aux_sym_type_constraints_repeat1] = STATE(3249), - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_RBRACK] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(6685), - [anon_sym_RPAREN] = ACTIONS(4433), - [anon_sym_by] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4431), - [anon_sym_where] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4433), - [sym_label] = ACTIONS(4433), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_while] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_QMARK_COLON] = ACTIONS(4433), - [anon_sym_AMP_AMP] = ACTIONS(4433), - [anon_sym_PIPE_PIPE] = ACTIONS(4433), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_PLUS_EQ] = ACTIONS(4433), - [anon_sym_DASH_EQ] = ACTIONS(4433), - [anon_sym_STAR_EQ] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4433), - [anon_sym_PERCENT_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_as_QMARK] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG_BANG] = ACTIONS(4433), - [anon_sym_suspend] = ACTIONS(4431), - [anon_sym_sealed] = ACTIONS(4431), - [anon_sym_annotation] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_override] = ACTIONS(4431), - [anon_sym_lateinit] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4431), - [anon_sym_internal] = ACTIONS(4431), - [anon_sym_protected] = ACTIONS(4431), - [anon_sym_tailrec] = ACTIONS(4431), - [anon_sym_operator] = ACTIONS(4431), - [anon_sym_infix] = ACTIONS(4431), - [anon_sym_inline] = ACTIONS(4431), - [anon_sym_external] = ACTIONS(4431), - [sym_property_modifier] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(4431), - [anon_sym_final] = ACTIONS(4431), - [anon_sym_open] = ACTIONS(4431), - [anon_sym_vararg] = ACTIONS(4431), - [anon_sym_noinline] = ACTIONS(4431), - [anon_sym_crossinline] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4433), - [sym_safe_nav] = ACTIONS(4433), + [3256] = { + [aux_sym_type_constraints_repeat1] = STATE(3256), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_RBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(6633), + [anon_sym_RPAREN] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_DASH_GT] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_while] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), [sym_multiline_comment] = ACTIONS(3), }, - [3250] = { - [sym__alpha_identifier] = ACTIONS(4908), - [anon_sym_AT] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(4908), - [anon_sym_LBRACE] = ACTIONS(4910), - [anon_sym_RBRACE] = ACTIONS(4910), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4908), - [anon_sym_object] = ACTIONS(4908), - [anon_sym_fun] = ACTIONS(4908), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_get] = ACTIONS(4908), - [anon_sym_set] = ACTIONS(4908), - [anon_sym_this] = ACTIONS(4908), - [anon_sym_super] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [sym_label] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_DOT_DOT] = ACTIONS(4910), - [anon_sym_QMARK_COLON] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_null] = ACTIONS(4908), - [anon_sym_if] = ACTIONS(4908), - [anon_sym_else] = ACTIONS(4908), - [anon_sym_when] = ACTIONS(4908), - [anon_sym_try] = ACTIONS(4908), - [anon_sym_throw] = ACTIONS(4908), - [anon_sym_return] = ACTIONS(4908), - [anon_sym_continue] = ACTIONS(4908), - [anon_sym_break] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(4910), - [anon_sym_PLUS_EQ] = ACTIONS(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [anon_sym_BANG_EQ] = ACTIONS(4908), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), - [anon_sym_LT_EQ] = ACTIONS(4910), - [anon_sym_GT_EQ] = ACTIONS(4910), - [anon_sym_BANGin] = ACTIONS(4910), - [anon_sym_is] = ACTIONS(4908), - [anon_sym_BANGis] = ACTIONS(4910), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_as_QMARK] = ACTIONS(4910), - [anon_sym_PLUS_PLUS] = ACTIONS(4910), - [anon_sym_DASH_DASH] = ACTIONS(4910), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_BANG_BANG] = ACTIONS(4910), - [anon_sym_data] = ACTIONS(4908), - [anon_sym_inner] = ACTIONS(4908), - [anon_sym_value] = ACTIONS(4908), - [anon_sym_expect] = ACTIONS(4908), - [anon_sym_actual] = ACTIONS(4908), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4910), - [anon_sym_continue_AT] = ACTIONS(4910), - [anon_sym_break_AT] = ACTIONS(4910), - [anon_sym_this_AT] = ACTIONS(4910), - [anon_sym_super_AT] = ACTIONS(4910), - [sym_real_literal] = ACTIONS(4910), - [sym_integer_literal] = ACTIONS(4908), - [sym_hex_literal] = ACTIONS(4910), - [sym_bin_literal] = ACTIONS(4910), - [anon_sym_true] = ACTIONS(4908), - [anon_sym_false] = ACTIONS(4908), - [anon_sym_SQUOTE] = ACTIONS(4910), - [sym__backtick_identifier] = ACTIONS(4910), - [sym__automatic_semicolon] = ACTIONS(4910), - [sym_safe_nav] = ACTIONS(4910), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4910), + [3257] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(6621), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4217), + [anon_sym_DASH_EQ] = ACTIONS(4217), + [anon_sym_STAR_EQ] = ACTIONS(4217), + [anon_sym_SLASH_EQ] = ACTIONS(4217), + [anon_sym_PERCENT_EQ] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, - [3251] = { - [sym_function_body] = STATE(3077), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6462), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [3258] = { + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_object] = ACTIONS(1744), + [anon_sym_fun] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_this] = ACTIONS(1744), + [anon_sym_super] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1744), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_null] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_when] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [anon_sym_throw] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1744), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_expect] = ACTIONS(1744), + [anon_sym_actual] = ACTIONS(1744), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1746), + [anon_sym_continue_AT] = ACTIONS(1746), + [anon_sym_break_AT] = ACTIONS(1746), + [anon_sym_this_AT] = ACTIONS(1746), + [anon_sym_super_AT] = ACTIONS(1746), + [sym_real_literal] = ACTIONS(1746), + [sym_integer_literal] = ACTIONS(1744), + [sym_hex_literal] = ACTIONS(1746), + [sym_bin_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SQUOTE] = ACTIONS(1746), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1746), }, - [3252] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_RBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_constructor] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_RPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4124), - [sym_label] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_while] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), + [3259] = { + [sym_class_body] = STATE(3503), + [sym_type_constraints] = STATE(3302), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_DASH_GT] = ACTIONS(4276), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), [sym_multiline_comment] = ACTIONS(3), }, - [3253] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_object] = ACTIONS(4944), - [anon_sym_fun] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_this] = ACTIONS(4944), - [anon_sym_super] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [sym_label] = ACTIONS(4944), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_null] = ACTIONS(4944), - [anon_sym_if] = ACTIONS(4944), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_when] = ACTIONS(4944), - [anon_sym_try] = ACTIONS(4944), - [anon_sym_throw] = ACTIONS(4944), - [anon_sym_return] = ACTIONS(4944), - [anon_sym_continue] = ACTIONS(4944), - [anon_sym_break] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(6632), - [anon_sym_PLUS_EQ] = ACTIONS(4946), - [anon_sym_DASH_EQ] = ACTIONS(4946), - [anon_sym_STAR_EQ] = ACTIONS(4946), - [anon_sym_SLASH_EQ] = ACTIONS(4946), - [anon_sym_PERCENT_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), + [3260] = { + [sym__alpha_identifier] = ACTIONS(5149), + [anon_sym_AT] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_DOT] = ACTIONS(5149), + [anon_sym_as] = ACTIONS(5149), + [anon_sym_EQ] = ACTIONS(5149), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_where] = ACTIONS(5149), + [anon_sym_object] = ACTIONS(5149), + [anon_sym_fun] = ACTIONS(5149), + [anon_sym_SEMI] = ACTIONS(5151), + [anon_sym_get] = ACTIONS(5149), + [anon_sym_set] = ACTIONS(5149), + [anon_sym_this] = ACTIONS(5149), + [anon_sym_super] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [sym_label] = ACTIONS(5149), + [anon_sym_in] = ACTIONS(5149), + [anon_sym_DOT_DOT] = ACTIONS(5151), + [anon_sym_QMARK_COLON] = ACTIONS(5151), + [anon_sym_AMP_AMP] = ACTIONS(5151), + [anon_sym_PIPE_PIPE] = ACTIONS(5151), + [anon_sym_null] = ACTIONS(5149), + [anon_sym_if] = ACTIONS(5149), + [anon_sym_else] = ACTIONS(5149), + [anon_sym_when] = ACTIONS(5149), + [anon_sym_try] = ACTIONS(5149), + [anon_sym_throw] = ACTIONS(5149), + [anon_sym_return] = ACTIONS(5149), + [anon_sym_continue] = ACTIONS(5149), + [anon_sym_break] = ACTIONS(5149), + [anon_sym_COLON_COLON] = ACTIONS(5151), + [anon_sym_PLUS_EQ] = ACTIONS(5151), + [anon_sym_DASH_EQ] = ACTIONS(5151), + [anon_sym_STAR_EQ] = ACTIONS(5151), + [anon_sym_SLASH_EQ] = ACTIONS(5151), + [anon_sym_PERCENT_EQ] = ACTIONS(5151), + [anon_sym_BANG_EQ] = ACTIONS(5149), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5151), + [anon_sym_EQ_EQ] = ACTIONS(5149), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5151), + [anon_sym_LT_EQ] = ACTIONS(5151), + [anon_sym_GT_EQ] = ACTIONS(5151), + [anon_sym_BANGin] = ACTIONS(5151), + [anon_sym_is] = ACTIONS(5149), + [anon_sym_BANGis] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_PERCENT] = ACTIONS(5149), + [anon_sym_as_QMARK] = ACTIONS(5151), + [anon_sym_PLUS_PLUS] = ACTIONS(5151), + [anon_sym_DASH_DASH] = ACTIONS(5151), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_BANG_BANG] = ACTIONS(5151), + [anon_sym_data] = ACTIONS(5149), + [anon_sym_inner] = ACTIONS(5149), + [anon_sym_value] = ACTIONS(5149), + [anon_sym_expect] = ACTIONS(5149), + [anon_sym_actual] = ACTIONS(5149), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4946), - [anon_sym_continue_AT] = ACTIONS(4946), - [anon_sym_break_AT] = ACTIONS(4946), - [anon_sym_this_AT] = ACTIONS(4946), - [anon_sym_super_AT] = ACTIONS(4946), - [sym_real_literal] = ACTIONS(4946), - [sym_integer_literal] = ACTIONS(4944), - [sym_hex_literal] = ACTIONS(4946), - [sym_bin_literal] = ACTIONS(4946), - [anon_sym_true] = ACTIONS(4944), - [anon_sym_false] = ACTIONS(4944), - [anon_sym_SQUOTE] = ACTIONS(4946), - [sym__backtick_identifier] = ACTIONS(4946), - [sym__automatic_semicolon] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), + [anon_sym_return_AT] = ACTIONS(5151), + [anon_sym_continue_AT] = ACTIONS(5151), + [anon_sym_break_AT] = ACTIONS(5151), + [anon_sym_this_AT] = ACTIONS(5151), + [anon_sym_super_AT] = ACTIONS(5151), + [sym_real_literal] = ACTIONS(5151), + [sym_integer_literal] = ACTIONS(5149), + [sym_hex_literal] = ACTIONS(5151), + [sym_bin_literal] = ACTIONS(5151), + [anon_sym_true] = ACTIONS(5149), + [anon_sym_false] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5151), + [sym__backtick_identifier] = ACTIONS(5151), + [sym__automatic_semicolon] = ACTIONS(5151), + [sym_safe_nav] = ACTIONS(5151), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4946), + [sym__string_start] = ACTIONS(5151), }, - [3254] = { - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(4429), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_object] = ACTIONS(4427), - [anon_sym_fun] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_this] = ACTIONS(4427), - [anon_sym_super] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4427), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_null] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_try] = ACTIONS(4427), - [anon_sym_throw] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4429), - [anon_sym_continue_AT] = ACTIONS(4429), - [anon_sym_break_AT] = ACTIONS(4429), - [anon_sym_this_AT] = ACTIONS(4429), - [anon_sym_super_AT] = ACTIONS(4429), - [sym_real_literal] = ACTIONS(4429), - [sym_integer_literal] = ACTIONS(4427), - [sym_hex_literal] = ACTIONS(4429), - [sym_bin_literal] = ACTIONS(4429), - [anon_sym_true] = ACTIONS(4427), - [anon_sym_false] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4429), + [3261] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_fun] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_this] = ACTIONS(4335), + [anon_sym_super] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4335), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_null] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_when] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4337), + [anon_sym_continue_AT] = ACTIONS(4337), + [anon_sym_break_AT] = ACTIONS(4337), + [anon_sym_this_AT] = ACTIONS(4337), + [anon_sym_super_AT] = ACTIONS(4337), + [sym_real_literal] = ACTIONS(4337), + [sym_integer_literal] = ACTIONS(4335), + [sym_hex_literal] = ACTIONS(4337), + [sym_bin_literal] = ACTIONS(4337), + [anon_sym_true] = ACTIONS(4335), + [anon_sym_false] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4337), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4337), }, - [3255] = { + [3262] = { [sym__alpha_identifier] = ACTIONS(5157), [anon_sym_AT] = ACTIONS(5159), [anon_sym_LBRACK] = ACTIONS(5159), @@ -380316,4897 +381180,4133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(5159), }, - [3256] = { - [sym__alpha_identifier] = ACTIONS(5213), - [anon_sym_AT] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_DOT] = ACTIONS(5213), - [anon_sym_as] = ACTIONS(5213), - [anon_sym_EQ] = ACTIONS(5213), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_where] = ACTIONS(5213), - [anon_sym_object] = ACTIONS(5213), - [anon_sym_fun] = ACTIONS(5213), - [anon_sym_SEMI] = ACTIONS(5215), - [anon_sym_get] = ACTIONS(5213), - [anon_sym_set] = ACTIONS(5213), - [anon_sym_this] = ACTIONS(5213), - [anon_sym_super] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [sym_label] = ACTIONS(5213), - [anon_sym_in] = ACTIONS(5213), - [anon_sym_DOT_DOT] = ACTIONS(5215), - [anon_sym_QMARK_COLON] = ACTIONS(5215), - [anon_sym_AMP_AMP] = ACTIONS(5215), - [anon_sym_PIPE_PIPE] = ACTIONS(5215), - [anon_sym_null] = ACTIONS(5213), - [anon_sym_if] = ACTIONS(5213), - [anon_sym_else] = ACTIONS(5213), - [anon_sym_when] = ACTIONS(5213), - [anon_sym_try] = ACTIONS(5213), - [anon_sym_throw] = ACTIONS(5213), - [anon_sym_return] = ACTIONS(5213), - [anon_sym_continue] = ACTIONS(5213), - [anon_sym_break] = ACTIONS(5213), - [anon_sym_COLON_COLON] = ACTIONS(5215), - [anon_sym_PLUS_EQ] = ACTIONS(5215), - [anon_sym_DASH_EQ] = ACTIONS(5215), - [anon_sym_STAR_EQ] = ACTIONS(5215), - [anon_sym_SLASH_EQ] = ACTIONS(5215), - [anon_sym_PERCENT_EQ] = ACTIONS(5215), - [anon_sym_BANG_EQ] = ACTIONS(5213), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5215), - [anon_sym_BANGin] = ACTIONS(5215), - [anon_sym_is] = ACTIONS(5213), - [anon_sym_BANGis] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_PERCENT] = ACTIONS(5213), - [anon_sym_as_QMARK] = ACTIONS(5215), - [anon_sym_PLUS_PLUS] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5215), - [anon_sym_BANG] = ACTIONS(5213), - [anon_sym_BANG_BANG] = ACTIONS(5215), - [anon_sym_data] = ACTIONS(5213), - [anon_sym_inner] = ACTIONS(5213), - [anon_sym_value] = ACTIONS(5213), - [anon_sym_expect] = ACTIONS(5213), - [anon_sym_actual] = ACTIONS(5213), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5215), - [anon_sym_continue_AT] = ACTIONS(5215), - [anon_sym_break_AT] = ACTIONS(5215), - [anon_sym_this_AT] = ACTIONS(5215), - [anon_sym_super_AT] = ACTIONS(5215), - [sym_real_literal] = ACTIONS(5215), - [sym_integer_literal] = ACTIONS(5213), - [sym_hex_literal] = ACTIONS(5215), - [sym_bin_literal] = ACTIONS(5215), - [anon_sym_true] = ACTIONS(5213), - [anon_sym_false] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5215), - [sym__backtick_identifier] = ACTIONS(5215), - [sym__automatic_semicolon] = ACTIONS(5215), - [sym_safe_nav] = ACTIONS(5215), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5215), + [3263] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(6636), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [3257] = { - [sym__alpha_identifier] = ACTIONS(5197), - [anon_sym_AT] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_DOT] = ACTIONS(5197), - [anon_sym_as] = ACTIONS(5197), - [anon_sym_EQ] = ACTIONS(5197), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_where] = ACTIONS(5197), - [anon_sym_object] = ACTIONS(5197), - [anon_sym_fun] = ACTIONS(5197), - [anon_sym_SEMI] = ACTIONS(5199), - [anon_sym_get] = ACTIONS(5197), - [anon_sym_set] = ACTIONS(5197), - [anon_sym_this] = ACTIONS(5197), - [anon_sym_super] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [sym_label] = ACTIONS(5197), - [anon_sym_in] = ACTIONS(5197), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_QMARK_COLON] = ACTIONS(5199), - [anon_sym_AMP_AMP] = ACTIONS(5199), - [anon_sym_PIPE_PIPE] = ACTIONS(5199), - [anon_sym_null] = ACTIONS(5197), - [anon_sym_if] = ACTIONS(5197), - [anon_sym_else] = ACTIONS(5197), - [anon_sym_when] = ACTIONS(5197), - [anon_sym_try] = ACTIONS(5197), - [anon_sym_throw] = ACTIONS(5197), - [anon_sym_return] = ACTIONS(5197), - [anon_sym_continue] = ACTIONS(5197), - [anon_sym_break] = ACTIONS(5197), - [anon_sym_COLON_COLON] = ACTIONS(5199), - [anon_sym_PLUS_EQ] = ACTIONS(5199), - [anon_sym_DASH_EQ] = ACTIONS(5199), - [anon_sym_STAR_EQ] = ACTIONS(5199), - [anon_sym_SLASH_EQ] = ACTIONS(5199), - [anon_sym_PERCENT_EQ] = ACTIONS(5199), - [anon_sym_BANG_EQ] = ACTIONS(5197), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), - [anon_sym_EQ_EQ] = ACTIONS(5197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), - [anon_sym_LT_EQ] = ACTIONS(5199), - [anon_sym_GT_EQ] = ACTIONS(5199), - [anon_sym_BANGin] = ACTIONS(5199), - [anon_sym_is] = ACTIONS(5197), - [anon_sym_BANGis] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_PERCENT] = ACTIONS(5197), - [anon_sym_as_QMARK] = ACTIONS(5199), - [anon_sym_PLUS_PLUS] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_BANG_BANG] = ACTIONS(5199), - [anon_sym_data] = ACTIONS(5197), - [anon_sym_inner] = ACTIONS(5197), - [anon_sym_value] = ACTIONS(5197), - [anon_sym_expect] = ACTIONS(5197), - [anon_sym_actual] = ACTIONS(5197), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5199), - [anon_sym_continue_AT] = ACTIONS(5199), - [anon_sym_break_AT] = ACTIONS(5199), - [anon_sym_this_AT] = ACTIONS(5199), - [anon_sym_super_AT] = ACTIONS(5199), - [sym_real_literal] = ACTIONS(5199), - [sym_integer_literal] = ACTIONS(5197), - [sym_hex_literal] = ACTIONS(5199), - [sym_bin_literal] = ACTIONS(5199), - [anon_sym_true] = ACTIONS(5197), - [anon_sym_false] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5199), - [sym__backtick_identifier] = ACTIONS(5199), - [sym__automatic_semicolon] = ACTIONS(5199), - [sym_safe_nav] = ACTIONS(5199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5199), + [3264] = { + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_null] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), }, - [3258] = { - [sym__alpha_identifier] = ACTIONS(4912), - [anon_sym_AT] = ACTIONS(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_DOT] = ACTIONS(4912), - [anon_sym_as] = ACTIONS(4912), - [anon_sym_EQ] = ACTIONS(4912), - [anon_sym_LBRACE] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_COMMA] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4912), - [anon_sym_GT] = ACTIONS(4912), - [anon_sym_where] = ACTIONS(4912), - [anon_sym_object] = ACTIONS(4912), - [anon_sym_fun] = ACTIONS(4912), - [anon_sym_SEMI] = ACTIONS(4914), - [anon_sym_get] = ACTIONS(4912), - [anon_sym_set] = ACTIONS(4912), - [anon_sym_this] = ACTIONS(4912), - [anon_sym_super] = ACTIONS(4912), - [anon_sym_STAR] = ACTIONS(4912), - [sym_label] = ACTIONS(4912), - [anon_sym_in] = ACTIONS(4912), - [anon_sym_DOT_DOT] = ACTIONS(4914), - [anon_sym_QMARK_COLON] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_null] = ACTIONS(4912), - [anon_sym_if] = ACTIONS(4912), - [anon_sym_else] = ACTIONS(4912), - [anon_sym_when] = ACTIONS(4912), - [anon_sym_try] = ACTIONS(4912), - [anon_sym_throw] = ACTIONS(4912), - [anon_sym_return] = ACTIONS(4912), - [anon_sym_continue] = ACTIONS(4912), - [anon_sym_break] = ACTIONS(4912), - [anon_sym_COLON_COLON] = ACTIONS(4914), - [anon_sym_PLUS_EQ] = ACTIONS(4914), - [anon_sym_DASH_EQ] = ACTIONS(4914), - [anon_sym_STAR_EQ] = ACTIONS(4914), - [anon_sym_SLASH_EQ] = ACTIONS(4914), - [anon_sym_PERCENT_EQ] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4912), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4912), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), - [anon_sym_LT_EQ] = ACTIONS(4914), - [anon_sym_GT_EQ] = ACTIONS(4914), - [anon_sym_BANGin] = ACTIONS(4914), - [anon_sym_is] = ACTIONS(4912), - [anon_sym_BANGis] = ACTIONS(4914), - [anon_sym_PLUS] = ACTIONS(4912), - [anon_sym_DASH] = ACTIONS(4912), - [anon_sym_SLASH] = ACTIONS(4912), - [anon_sym_PERCENT] = ACTIONS(4912), - [anon_sym_as_QMARK] = ACTIONS(4914), - [anon_sym_PLUS_PLUS] = ACTIONS(4914), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_BANG] = ACTIONS(4912), - [anon_sym_BANG_BANG] = ACTIONS(4914), - [anon_sym_data] = ACTIONS(4912), - [anon_sym_inner] = ACTIONS(4912), - [anon_sym_value] = ACTIONS(4912), - [anon_sym_expect] = ACTIONS(4912), - [anon_sym_actual] = ACTIONS(4912), + [3265] = { + [sym__alpha_identifier] = ACTIONS(5161), + [anon_sym_AT] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5161), + [anon_sym_EQ] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_where] = ACTIONS(5161), + [anon_sym_object] = ACTIONS(5161), + [anon_sym_fun] = ACTIONS(5161), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_get] = ACTIONS(5161), + [anon_sym_set] = ACTIONS(5161), + [anon_sym_this] = ACTIONS(5161), + [anon_sym_super] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [sym_label] = ACTIONS(5161), + [anon_sym_in] = ACTIONS(5161), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_QMARK_COLON] = ACTIONS(5163), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_null] = ACTIONS(5161), + [anon_sym_if] = ACTIONS(5161), + [anon_sym_else] = ACTIONS(5161), + [anon_sym_when] = ACTIONS(5161), + [anon_sym_try] = ACTIONS(5161), + [anon_sym_throw] = ACTIONS(5161), + [anon_sym_return] = ACTIONS(5161), + [anon_sym_continue] = ACTIONS(5161), + [anon_sym_break] = ACTIONS(5161), + [anon_sym_COLON_COLON] = ACTIONS(5163), + [anon_sym_PLUS_EQ] = ACTIONS(5163), + [anon_sym_DASH_EQ] = ACTIONS(5163), + [anon_sym_STAR_EQ] = ACTIONS(5163), + [anon_sym_SLASH_EQ] = ACTIONS(5163), + [anon_sym_PERCENT_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5161), + [anon_sym_BANGis] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5161), + [anon_sym_as_QMARK] = ACTIONS(5163), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_BANG_BANG] = ACTIONS(5163), + [anon_sym_data] = ACTIONS(5161), + [anon_sym_inner] = ACTIONS(5161), + [anon_sym_value] = ACTIONS(5161), + [anon_sym_expect] = ACTIONS(5161), + [anon_sym_actual] = ACTIONS(5161), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4914), - [anon_sym_continue_AT] = ACTIONS(4914), - [anon_sym_break_AT] = ACTIONS(4914), - [anon_sym_this_AT] = ACTIONS(4914), - [anon_sym_super_AT] = ACTIONS(4914), - [sym_real_literal] = ACTIONS(4914), - [sym_integer_literal] = ACTIONS(4912), - [sym_hex_literal] = ACTIONS(4914), - [sym_bin_literal] = ACTIONS(4914), - [anon_sym_true] = ACTIONS(4912), - [anon_sym_false] = ACTIONS(4912), - [anon_sym_SQUOTE] = ACTIONS(4914), - [sym__backtick_identifier] = ACTIONS(4914), - [sym__automatic_semicolon] = ACTIONS(4914), - [sym_safe_nav] = ACTIONS(4914), + [anon_sym_return_AT] = ACTIONS(5163), + [anon_sym_continue_AT] = ACTIONS(5163), + [anon_sym_break_AT] = ACTIONS(5163), + [anon_sym_this_AT] = ACTIONS(5163), + [anon_sym_super_AT] = ACTIONS(5163), + [sym_real_literal] = ACTIONS(5163), + [sym_integer_literal] = ACTIONS(5161), + [sym_hex_literal] = ACTIONS(5163), + [sym_bin_literal] = ACTIONS(5163), + [anon_sym_true] = ACTIONS(5161), + [anon_sym_false] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5163), + [sym__backtick_identifier] = ACTIONS(5163), + [sym__automatic_semicolon] = ACTIONS(5163), + [sym_safe_nav] = ACTIONS(5163), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4914), + [sym__string_start] = ACTIONS(5163), }, - [3259] = { - [sym__alpha_identifier] = ACTIONS(4868), - [anon_sym_AT] = ACTIONS(4870), - [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_EQ] = ACTIONS(4868), - [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_object] = ACTIONS(4868), - [anon_sym_fun] = ACTIONS(4868), - [anon_sym_SEMI] = ACTIONS(4870), - [anon_sym_get] = ACTIONS(4868), - [anon_sym_set] = ACTIONS(4868), - [anon_sym_this] = ACTIONS(4868), - [anon_sym_super] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4868), - [sym_label] = ACTIONS(4868), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_QMARK_COLON] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_null] = ACTIONS(4868), - [anon_sym_if] = ACTIONS(4868), - [anon_sym_else] = ACTIONS(4868), - [anon_sym_when] = ACTIONS(4868), - [anon_sym_try] = ACTIONS(4868), - [anon_sym_throw] = ACTIONS(4868), - [anon_sym_return] = ACTIONS(4868), - [anon_sym_continue] = ACTIONS(4868), - [anon_sym_break] = ACTIONS(4868), - [anon_sym_COLON_COLON] = ACTIONS(4870), - [anon_sym_PLUS_EQ] = ACTIONS(4870), - [anon_sym_DASH_EQ] = ACTIONS(4870), - [anon_sym_STAR_EQ] = ACTIONS(4870), - [anon_sym_SLASH_EQ] = ACTIONS(4870), - [anon_sym_PERCENT_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_BANGin] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_BANGis] = ACTIONS(4870), - [anon_sym_PLUS] = ACTIONS(4868), - [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_as_QMARK] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4870), - [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4868), - [anon_sym_BANG_BANG] = ACTIONS(4870), - [anon_sym_data] = ACTIONS(4868), - [anon_sym_inner] = ACTIONS(4868), - [anon_sym_value] = ACTIONS(4868), - [anon_sym_expect] = ACTIONS(4868), - [anon_sym_actual] = ACTIONS(4868), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4870), - [anon_sym_continue_AT] = ACTIONS(4870), - [anon_sym_break_AT] = ACTIONS(4870), - [anon_sym_this_AT] = ACTIONS(4870), - [anon_sym_super_AT] = ACTIONS(4870), - [sym_real_literal] = ACTIONS(4870), - [sym_integer_literal] = ACTIONS(4868), - [sym_hex_literal] = ACTIONS(4870), - [sym_bin_literal] = ACTIONS(4870), - [anon_sym_true] = ACTIONS(4868), - [anon_sym_false] = ACTIONS(4868), - [anon_sym_SQUOTE] = ACTIONS(4870), - [sym__backtick_identifier] = ACTIONS(4870), - [sym__automatic_semicolon] = ACTIONS(4870), - [sym_safe_nav] = ACTIONS(4870), + [3266] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(6631), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), + }, + [3267] = { + [sym__alpha_identifier] = ACTIONS(4158), + [anon_sym_AT] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_EQ] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(4160), + [anon_sym_COMMA] = ACTIONS(4160), + [anon_sym_by] = ACTIONS(4158), + [anon_sym_where] = ACTIONS(4158), + [anon_sym_object] = ACTIONS(4158), + [anon_sym_fun] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym_get] = ACTIONS(4158), + [anon_sym_set] = ACTIONS(4158), + [anon_sym_this] = ACTIONS(4158), + [anon_sym_super] = ACTIONS(4158), + [sym__quest] = ACTIONS(4160), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4158), + [anon_sym_in] = ACTIONS(4158), + [anon_sym_null] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_else] = ACTIONS(4158), + [anon_sym_when] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_throw] = ACTIONS(4158), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_continue] = ACTIONS(4158), + [anon_sym_break] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(4160), + [anon_sym_BANGin] = ACTIONS(4160), + [anon_sym_is] = ACTIONS(4158), + [anon_sym_BANGis] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_PLUS_PLUS] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4158), + [anon_sym_suspend] = ACTIONS(4158), + [anon_sym_sealed] = ACTIONS(4158), + [anon_sym_annotation] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4158), + [anon_sym_inner] = ACTIONS(4158), + [anon_sym_value] = ACTIONS(4158), + [anon_sym_override] = ACTIONS(4158), + [anon_sym_lateinit] = ACTIONS(4158), + [anon_sym_public] = ACTIONS(4158), + [anon_sym_private] = ACTIONS(4158), + [anon_sym_internal] = ACTIONS(4158), + [anon_sym_protected] = ACTIONS(4158), + [anon_sym_tailrec] = ACTIONS(4158), + [anon_sym_operator] = ACTIONS(4158), + [anon_sym_infix] = ACTIONS(4158), + [anon_sym_inline] = ACTIONS(4158), + [anon_sym_external] = ACTIONS(4158), + [sym_property_modifier] = ACTIONS(4158), + [anon_sym_abstract] = ACTIONS(4158), + [anon_sym_final] = ACTIONS(4158), + [anon_sym_open] = ACTIONS(4158), + [anon_sym_vararg] = ACTIONS(4158), + [anon_sym_noinline] = ACTIONS(4158), + [anon_sym_crossinline] = ACTIONS(4158), + [anon_sym_expect] = ACTIONS(4158), + [anon_sym_actual] = ACTIONS(4158), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4160), + [anon_sym_continue_AT] = ACTIONS(4160), + [anon_sym_break_AT] = ACTIONS(4160), + [anon_sym_this_AT] = ACTIONS(4160), + [anon_sym_super_AT] = ACTIONS(4160), + [sym_real_literal] = ACTIONS(4160), + [sym_integer_literal] = ACTIONS(4158), + [sym_hex_literal] = ACTIONS(4160), + [sym_bin_literal] = ACTIONS(4160), + [anon_sym_true] = ACTIONS(4158), + [anon_sym_false] = ACTIONS(4158), + [anon_sym_SQUOTE] = ACTIONS(4160), + [sym__backtick_identifier] = ACTIONS(4160), + [sym__automatic_semicolon] = ACTIONS(4160), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4160), + }, + [3268] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(6640), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), + }, + [3269] = { + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6430), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [3270] = { + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4097), + [anon_sym_LBRACE] = ACTIONS(4099), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [3271] = { + [sym_type_constraints] = STATE(3601), + [sym_function_body] = STATE(3826), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(6644), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4870), }, - [3260] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(6688), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [3272] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3046), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(6670), + [anon_sym_PIPE_PIPE] = ACTIONS(6672), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [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(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), }, - [3261] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(6690), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(6688), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [3273] = { + [sym_class_body] = STATE(3503), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_DASH_GT] = ACTIONS(4276), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), }, - [3262] = { - [sym_class_body] = STATE(3510), - [sym_type_constraints] = STATE(3312), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_RBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_DASH_GT] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [3274] = { + [sym_type_constraints] = STATE(3734), + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(6694), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, - [3263] = { - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_object] = ACTIONS(1796), - [anon_sym_fun] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1796), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_super] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1796), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_when] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_data] = ACTIONS(1796), - [anon_sym_inner] = ACTIONS(1796), - [anon_sym_value] = ACTIONS(1796), - [anon_sym_expect] = ACTIONS(1796), - [anon_sym_actual] = ACTIONS(1796), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1798), - [anon_sym_continue_AT] = ACTIONS(1798), - [anon_sym_break_AT] = ACTIONS(1798), - [anon_sym_this_AT] = ACTIONS(1798), - [anon_sym_super_AT] = ACTIONS(1798), - [sym_real_literal] = ACTIONS(1798), - [sym_integer_literal] = ACTIONS(1796), - [sym_hex_literal] = ACTIONS(1798), - [sym_bin_literal] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_SQUOTE] = ACTIONS(1798), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1798), + [3275] = { + [sym__alpha_identifier] = ACTIONS(4503), + [anon_sym_AT] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_RBRACK] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4503), + [anon_sym_as] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_COMMA] = ACTIONS(4505), + [anon_sym_RPAREN] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_get] = ACTIONS(4503), + [anon_sym_set] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4503), + [anon_sym_DASH_GT] = ACTIONS(4505), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4503), + [anon_sym_while] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_QMARK_COLON] = ACTIONS(4505), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4503), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_PLUS_EQ] = ACTIONS(4505), + [anon_sym_DASH_EQ] = ACTIONS(4505), + [anon_sym_STAR_EQ] = ACTIONS(4505), + [anon_sym_SLASH_EQ] = ACTIONS(4505), + [anon_sym_PERCENT_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ] = ACTIONS(4503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4505), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4505), + [anon_sym_BANGin] = ACTIONS(4505), + [anon_sym_is] = ACTIONS(4503), + [anon_sym_BANGis] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4503), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_as_QMARK] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4505), + [anon_sym_suspend] = ACTIONS(4503), + [anon_sym_sealed] = ACTIONS(4503), + [anon_sym_annotation] = ACTIONS(4503), + [anon_sym_data] = ACTIONS(4503), + [anon_sym_inner] = ACTIONS(4503), + [anon_sym_value] = ACTIONS(4503), + [anon_sym_override] = ACTIONS(4503), + [anon_sym_lateinit] = ACTIONS(4503), + [anon_sym_public] = ACTIONS(4503), + [anon_sym_private] = ACTIONS(4503), + [anon_sym_internal] = ACTIONS(4503), + [anon_sym_protected] = ACTIONS(4503), + [anon_sym_tailrec] = ACTIONS(4503), + [anon_sym_operator] = ACTIONS(4503), + [anon_sym_infix] = ACTIONS(4503), + [anon_sym_inline] = ACTIONS(4503), + [anon_sym_external] = ACTIONS(4503), + [sym_property_modifier] = ACTIONS(4503), + [anon_sym_abstract] = ACTIONS(4503), + [anon_sym_final] = ACTIONS(4503), + [anon_sym_open] = ACTIONS(4503), + [anon_sym_vararg] = ACTIONS(4503), + [anon_sym_noinline] = ACTIONS(4503), + [anon_sym_crossinline] = ACTIONS(4503), + [anon_sym_expect] = ACTIONS(4503), + [anon_sym_actual] = ACTIONS(4503), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4505), + [sym_safe_nav] = ACTIONS(4505), + [sym_multiline_comment] = ACTIONS(3), }, - [3264] = { - [sym__alpha_identifier] = ACTIONS(5201), - [anon_sym_AT] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_DOT] = ACTIONS(5201), - [anon_sym_as] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_where] = ACTIONS(5201), - [anon_sym_object] = ACTIONS(5201), - [anon_sym_fun] = ACTIONS(5201), - [anon_sym_SEMI] = ACTIONS(5203), - [anon_sym_get] = ACTIONS(5201), - [anon_sym_set] = ACTIONS(5201), - [anon_sym_this] = ACTIONS(5201), - [anon_sym_super] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [sym_label] = ACTIONS(5201), - [anon_sym_in] = ACTIONS(5201), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_QMARK_COLON] = ACTIONS(5203), - [anon_sym_AMP_AMP] = ACTIONS(5203), - [anon_sym_PIPE_PIPE] = ACTIONS(5203), - [anon_sym_null] = ACTIONS(5201), - [anon_sym_if] = ACTIONS(5201), - [anon_sym_else] = ACTIONS(5201), - [anon_sym_when] = ACTIONS(5201), - [anon_sym_try] = ACTIONS(5201), - [anon_sym_throw] = ACTIONS(5201), - [anon_sym_return] = ACTIONS(5201), - [anon_sym_continue] = ACTIONS(5201), - [anon_sym_break] = ACTIONS(5201), - [anon_sym_COLON_COLON] = ACTIONS(5203), - [anon_sym_PLUS_EQ] = ACTIONS(5203), - [anon_sym_DASH_EQ] = ACTIONS(5203), - [anon_sym_STAR_EQ] = ACTIONS(5203), - [anon_sym_SLASH_EQ] = ACTIONS(5203), - [anon_sym_PERCENT_EQ] = ACTIONS(5203), - [anon_sym_BANG_EQ] = ACTIONS(5201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5203), - [anon_sym_EQ_EQ] = ACTIONS(5201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5203), - [anon_sym_LT_EQ] = ACTIONS(5203), - [anon_sym_GT_EQ] = ACTIONS(5203), - [anon_sym_BANGin] = ACTIONS(5203), - [anon_sym_is] = ACTIONS(5201), - [anon_sym_BANGis] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_PERCENT] = ACTIONS(5201), - [anon_sym_as_QMARK] = ACTIONS(5203), - [anon_sym_PLUS_PLUS] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_BANG_BANG] = ACTIONS(5203), - [anon_sym_data] = ACTIONS(5201), - [anon_sym_inner] = ACTIONS(5201), - [anon_sym_value] = ACTIONS(5201), - [anon_sym_expect] = ACTIONS(5201), - [anon_sym_actual] = ACTIONS(5201), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5203), - [anon_sym_continue_AT] = ACTIONS(5203), - [anon_sym_break_AT] = ACTIONS(5203), - [anon_sym_this_AT] = ACTIONS(5203), - [anon_sym_super_AT] = ACTIONS(5203), - [sym_real_literal] = ACTIONS(5203), - [sym_integer_literal] = ACTIONS(5201), - [sym_hex_literal] = ACTIONS(5203), - [sym_bin_literal] = ACTIONS(5203), - [anon_sym_true] = ACTIONS(5201), - [anon_sym_false] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5203), - [sym__backtick_identifier] = ACTIONS(5203), - [sym__automatic_semicolon] = ACTIONS(5203), - [sym_safe_nav] = ACTIONS(5203), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5203), - }, - [3265] = { - [sym_function_body] = STATE(3464), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6520), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_DASH_GT] = ACTIONS(4262), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_while] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_PLUS_EQ] = ACTIONS(4262), - [anon_sym_DASH_EQ] = ACTIONS(4262), - [anon_sym_STAR_EQ] = ACTIONS(4262), - [anon_sym_SLASH_EQ] = ACTIONS(4262), - [anon_sym_PERCENT_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), - [sym_multiline_comment] = ACTIONS(3), - }, - [3266] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(6660), - [anon_sym_COMMA] = ACTIONS(4223), - [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_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4223), - [anon_sym_DASH_EQ] = ACTIONS(4223), - [anon_sym_STAR_EQ] = ACTIONS(4223), - [anon_sym_SLASH_EQ] = ACTIONS(4223), - [anon_sym_PERCENT_EQ] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [3267] = { - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACE] = ACTIONS(4196), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [3268] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(6664), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(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(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [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), - }, - [3269] = { - [sym__alpha_identifier] = ACTIONS(5205), - [anon_sym_AT] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_as] = ACTIONS(5205), - [anon_sym_EQ] = ACTIONS(5205), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_where] = ACTIONS(5205), - [anon_sym_object] = ACTIONS(5205), - [anon_sym_fun] = ACTIONS(5205), - [anon_sym_SEMI] = ACTIONS(5207), - [anon_sym_get] = ACTIONS(5205), - [anon_sym_set] = ACTIONS(5205), - [anon_sym_this] = ACTIONS(5205), - [anon_sym_super] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [sym_label] = ACTIONS(5205), - [anon_sym_in] = ACTIONS(5205), - [anon_sym_DOT_DOT] = ACTIONS(5207), - [anon_sym_QMARK_COLON] = ACTIONS(5207), - [anon_sym_AMP_AMP] = ACTIONS(5207), - [anon_sym_PIPE_PIPE] = ACTIONS(5207), - [anon_sym_null] = ACTIONS(5205), - [anon_sym_if] = ACTIONS(5205), - [anon_sym_else] = ACTIONS(5205), - [anon_sym_when] = ACTIONS(5205), - [anon_sym_try] = ACTIONS(5205), - [anon_sym_throw] = ACTIONS(5205), - [anon_sym_return] = ACTIONS(5205), - [anon_sym_continue] = ACTIONS(5205), - [anon_sym_break] = ACTIONS(5205), - [anon_sym_COLON_COLON] = ACTIONS(5207), - [anon_sym_PLUS_EQ] = ACTIONS(5207), - [anon_sym_DASH_EQ] = ACTIONS(5207), - [anon_sym_STAR_EQ] = ACTIONS(5207), - [anon_sym_SLASH_EQ] = ACTIONS(5207), - [anon_sym_PERCENT_EQ] = ACTIONS(5207), - [anon_sym_BANG_EQ] = ACTIONS(5205), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), - [anon_sym_EQ_EQ] = ACTIONS(5205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), - [anon_sym_LT_EQ] = ACTIONS(5207), - [anon_sym_GT_EQ] = ACTIONS(5207), - [anon_sym_BANGin] = ACTIONS(5207), - [anon_sym_is] = ACTIONS(5205), - [anon_sym_BANGis] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_PERCENT] = ACTIONS(5205), - [anon_sym_as_QMARK] = ACTIONS(5207), - [anon_sym_PLUS_PLUS] = ACTIONS(5207), - [anon_sym_DASH_DASH] = ACTIONS(5207), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_BANG_BANG] = ACTIONS(5207), - [anon_sym_data] = ACTIONS(5205), - [anon_sym_inner] = ACTIONS(5205), - [anon_sym_value] = ACTIONS(5205), - [anon_sym_expect] = ACTIONS(5205), - [anon_sym_actual] = ACTIONS(5205), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5207), - [anon_sym_continue_AT] = ACTIONS(5207), - [anon_sym_break_AT] = ACTIONS(5207), - [anon_sym_this_AT] = ACTIONS(5207), - [anon_sym_super_AT] = ACTIONS(5207), - [sym_real_literal] = ACTIONS(5207), - [sym_integer_literal] = ACTIONS(5205), - [sym_hex_literal] = ACTIONS(5207), - [sym_bin_literal] = ACTIONS(5207), - [anon_sym_true] = ACTIONS(5205), - [anon_sym_false] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5207), - [sym__backtick_identifier] = ACTIONS(5207), - [sym__automatic_semicolon] = ACTIONS(5207), - [sym_safe_nav] = ACTIONS(5207), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5207), - }, - [3270] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(6692), - [anon_sym_COMMA] = ACTIONS(4223), - [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_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [3271] = { - [sym__alpha_identifier] = ACTIONS(4553), - [anon_sym_AT] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_RBRACK] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_as] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_RPAREN] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4553), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4553), - [anon_sym_set] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4553), - [anon_sym_DASH_GT] = ACTIONS(4556), - [sym_label] = ACTIONS(4556), - [anon_sym_in] = ACTIONS(4553), - [anon_sym_while] = ACTIONS(4553), - [anon_sym_DOT_DOT] = ACTIONS(4556), - [anon_sym_QMARK_COLON] = ACTIONS(4556), - [anon_sym_AMP_AMP] = ACTIONS(4556), - [anon_sym_PIPE_PIPE] = ACTIONS(4556), - [anon_sym_else] = ACTIONS(4553), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_PLUS_EQ] = ACTIONS(4556), - [anon_sym_DASH_EQ] = ACTIONS(4556), - [anon_sym_STAR_EQ] = ACTIONS(4556), - [anon_sym_SLASH_EQ] = ACTIONS(4556), - [anon_sym_PERCENT_EQ] = ACTIONS(4556), - [anon_sym_BANG_EQ] = ACTIONS(4553), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4556), - [anon_sym_LT_EQ] = ACTIONS(4556), - [anon_sym_GT_EQ] = ACTIONS(4556), - [anon_sym_BANGin] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4553), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4553), - [anon_sym_PERCENT] = ACTIONS(4553), - [anon_sym_as_QMARK] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_BANG_BANG] = ACTIONS(4556), - [anon_sym_suspend] = ACTIONS(4553), - [anon_sym_sealed] = ACTIONS(4553), - [anon_sym_annotation] = ACTIONS(4553), - [anon_sym_data] = ACTIONS(4553), - [anon_sym_inner] = ACTIONS(4553), - [anon_sym_value] = ACTIONS(4553), - [anon_sym_override] = ACTIONS(4553), - [anon_sym_lateinit] = ACTIONS(4553), - [anon_sym_public] = ACTIONS(4553), - [anon_sym_private] = ACTIONS(4553), - [anon_sym_internal] = ACTIONS(4553), - [anon_sym_protected] = ACTIONS(4553), - [anon_sym_tailrec] = ACTIONS(4553), - [anon_sym_operator] = ACTIONS(4553), - [anon_sym_infix] = ACTIONS(4553), - [anon_sym_inline] = ACTIONS(4553), - [anon_sym_external] = ACTIONS(4553), - [sym_property_modifier] = ACTIONS(4553), - [anon_sym_abstract] = ACTIONS(4553), - [anon_sym_final] = ACTIONS(4553), - [anon_sym_open] = ACTIONS(4553), - [anon_sym_vararg] = ACTIONS(4553), - [anon_sym_noinline] = ACTIONS(4553), - [anon_sym_crossinline] = ACTIONS(4553), - [anon_sym_expect] = ACTIONS(4553), - [anon_sym_actual] = ACTIONS(4553), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4556), - [sym_safe_nav] = ACTIONS(4556), - [sym_multiline_comment] = ACTIONS(3), - }, - [3272] = { - [sym_type_constraints] = STATE(3770), - [sym_function_body] = STATE(3527), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(6696), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_where] = ACTIONS(5512), - [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_value] = 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), - }, - [3273] = { - [sym_catch_block] = STATE(3273), - [aux_sym_try_expression_repeat1] = STATE(3273), - [sym__alpha_identifier] = ACTIONS(4126), - [anon_sym_AT] = ACTIONS(4128), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_DOT] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_EQ] = ACTIONS(4126), - [anon_sym_LBRACE] = ACTIONS(4128), - [anon_sym_RBRACE] = ACTIONS(4128), - [anon_sym_LPAREN] = ACTIONS(4128), - [anon_sym_COMMA] = ACTIONS(4128), - [anon_sym_LT] = ACTIONS(4126), - [anon_sym_GT] = ACTIONS(4126), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_SEMI] = ACTIONS(4128), - [anon_sym_get] = ACTIONS(4126), - [anon_sym_set] = ACTIONS(4126), - [anon_sym_STAR] = ACTIONS(4126), - [sym_label] = ACTIONS(4128), - [anon_sym_in] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4128), - [anon_sym_QMARK_COLON] = ACTIONS(4128), - [anon_sym_AMP_AMP] = ACTIONS(4128), - [anon_sym_PIPE_PIPE] = ACTIONS(4128), - [anon_sym_else] = ACTIONS(4126), - [anon_sym_catch] = ACTIONS(6700), - [anon_sym_finally] = ACTIONS(4126), - [anon_sym_COLON_COLON] = ACTIONS(4128), - [anon_sym_PLUS_EQ] = ACTIONS(4128), - [anon_sym_DASH_EQ] = ACTIONS(4128), - [anon_sym_STAR_EQ] = ACTIONS(4128), - [anon_sym_SLASH_EQ] = ACTIONS(4128), - [anon_sym_PERCENT_EQ] = ACTIONS(4128), - [anon_sym_BANG_EQ] = ACTIONS(4126), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4128), - [anon_sym_EQ_EQ] = ACTIONS(4126), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4128), - [anon_sym_LT_EQ] = ACTIONS(4128), - [anon_sym_GT_EQ] = ACTIONS(4128), - [anon_sym_BANGin] = ACTIONS(4128), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_BANGis] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4126), - [anon_sym_SLASH] = ACTIONS(4126), - [anon_sym_PERCENT] = ACTIONS(4126), - [anon_sym_as_QMARK] = ACTIONS(4128), - [anon_sym_PLUS_PLUS] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4128), - [anon_sym_BANG_BANG] = ACTIONS(4128), - [anon_sym_suspend] = ACTIONS(4126), - [anon_sym_sealed] = ACTIONS(4126), - [anon_sym_annotation] = ACTIONS(4126), - [anon_sym_data] = ACTIONS(4126), - [anon_sym_inner] = ACTIONS(4126), - [anon_sym_value] = ACTIONS(4126), - [anon_sym_override] = ACTIONS(4126), - [anon_sym_lateinit] = ACTIONS(4126), - [anon_sym_public] = ACTIONS(4126), - [anon_sym_private] = ACTIONS(4126), - [anon_sym_internal] = ACTIONS(4126), - [anon_sym_protected] = ACTIONS(4126), - [anon_sym_tailrec] = ACTIONS(4126), - [anon_sym_operator] = ACTIONS(4126), - [anon_sym_infix] = ACTIONS(4126), - [anon_sym_inline] = ACTIONS(4126), - [anon_sym_external] = ACTIONS(4126), - [sym_property_modifier] = ACTIONS(4126), - [anon_sym_abstract] = ACTIONS(4126), - [anon_sym_final] = ACTIONS(4126), - [anon_sym_open] = ACTIONS(4126), - [anon_sym_vararg] = ACTIONS(4126), - [anon_sym_noinline] = ACTIONS(4126), - [anon_sym_crossinline] = ACTIONS(4126), - [anon_sym_expect] = ACTIONS(4126), - [anon_sym_actual] = ACTIONS(4126), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4128), - [sym__automatic_semicolon] = ACTIONS(4128), - [sym_safe_nav] = ACTIONS(4128), - [sym_multiline_comment] = ACTIONS(3), - }, - [3274] = { - [sym_class_body] = STATE(3510), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_RBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_DASH_GT] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - }, - [3275] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(6723), - [anon_sym_PIPE_PIPE] = ACTIONS(6725), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [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(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3276] = { - [sym__alpha_identifier] = ACTIONS(4589), - [anon_sym_AT] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4591), - [anon_sym_RBRACK] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4589), - [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_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_value] = 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(4591), - [sym_safe_nav] = ACTIONS(4591), - [sym_multiline_comment] = ACTIONS(3), + [3276] = { + [sym_type_constraints] = STATE(3736), + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(6698), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), }, [3277] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6747), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym_type_constraints] = STATE(3683), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(6700), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4123), + [anon_sym_fun] = ACTIONS(4123), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_this] = ACTIONS(4123), + [anon_sym_super] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [sym_label] = ACTIONS(4123), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_throw] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4125), + [anon_sym_continue_AT] = ACTIONS(4125), + [anon_sym_break_AT] = ACTIONS(4125), + [anon_sym_this_AT] = ACTIONS(4125), + [anon_sym_super_AT] = ACTIONS(4125), + [sym_real_literal] = ACTIONS(4125), + [sym_integer_literal] = ACTIONS(4123), + [sym_hex_literal] = ACTIONS(4125), + [sym_bin_literal] = ACTIONS(4125), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4125), }, [3278] = { - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_RBRACK] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(4433), - [anon_sym_RPAREN] = ACTIONS(4433), - [anon_sym_by] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4431), - [anon_sym_where] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4433), - [sym_label] = ACTIONS(4433), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_while] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_QMARK_COLON] = ACTIONS(4433), - [anon_sym_AMP_AMP] = ACTIONS(4433), - [anon_sym_PIPE_PIPE] = ACTIONS(4433), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_PLUS_EQ] = ACTIONS(4433), - [anon_sym_DASH_EQ] = ACTIONS(4433), - [anon_sym_STAR_EQ] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4433), - [anon_sym_PERCENT_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_as_QMARK] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG_BANG] = ACTIONS(4433), - [anon_sym_suspend] = ACTIONS(4431), - [anon_sym_sealed] = ACTIONS(4431), - [anon_sym_annotation] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_override] = ACTIONS(4431), - [anon_sym_lateinit] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4431), - [anon_sym_internal] = ACTIONS(4431), - [anon_sym_protected] = ACTIONS(4431), - [anon_sym_tailrec] = ACTIONS(4431), - [anon_sym_operator] = ACTIONS(4431), - [anon_sym_infix] = ACTIONS(4431), - [anon_sym_inline] = ACTIONS(4431), - [anon_sym_external] = ACTIONS(4431), - [sym_property_modifier] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(4431), - [anon_sym_final] = ACTIONS(4431), - [anon_sym_open] = ACTIONS(4431), - [anon_sym_vararg] = ACTIONS(4431), - [anon_sym_noinline] = ACTIONS(4431), - [anon_sym_crossinline] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4433), - [sym_safe_nav] = ACTIONS(4433), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [3279] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_RBRACK] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4646), + [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(4648), + [anon_sym_RPAREN] = ACTIONS(4648), + [anon_sym_by] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = ACTIONS(4646), + [anon_sym_SEMI] = ACTIONS(4648), + [anon_sym_get] = ACTIONS(4646), + [anon_sym_set] = ACTIONS(4646), + [anon_sym_STAR] = ACTIONS(4646), + [anon_sym_DASH_GT] = 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_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_value] = 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), }, [3280] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3112), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(6723), - [anon_sym_PIPE_PIPE] = ACTIONS(6725), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_RBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_RPAREN] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_DASH_GT] = ACTIONS(4375), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_while] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), [sym_multiline_comment] = ACTIONS(3), }, [3281] = { - [sym_enum_class_body] = STATE(3480), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_RBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_DASH_GT] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym_type_constraints] = STATE(3746), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(6704), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_while] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, [3282] = { - [sym__alpha_identifier] = ACTIONS(4545), - [anon_sym_AT] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_RBRACK] = ACTIONS(4547), - [anon_sym_DOT] = ACTIONS(4545), - [anon_sym_as] = ACTIONS(4545), - [anon_sym_EQ] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4547), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym_COMMA] = ACTIONS(4547), - [anon_sym_RPAREN] = ACTIONS(4547), - [anon_sym_by] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4545), - [anon_sym_where] = ACTIONS(4545), - [anon_sym_SEMI] = ACTIONS(4547), - [anon_sym_get] = ACTIONS(4545), - [anon_sym_set] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4545), - [anon_sym_DASH_GT] = ACTIONS(4547), - [sym_label] = ACTIONS(4547), - [anon_sym_in] = ACTIONS(4545), - [anon_sym_while] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(4547), - [anon_sym_QMARK_COLON] = ACTIONS(4547), - [anon_sym_AMP_AMP] = ACTIONS(4547), - [anon_sym_PIPE_PIPE] = ACTIONS(4547), - [anon_sym_else] = ACTIONS(4545), - [anon_sym_COLON_COLON] = ACTIONS(4547), - [anon_sym_PLUS_EQ] = ACTIONS(4547), - [anon_sym_DASH_EQ] = ACTIONS(4547), - [anon_sym_STAR_EQ] = ACTIONS(4547), - [anon_sym_SLASH_EQ] = ACTIONS(4547), - [anon_sym_PERCENT_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4547), - [anon_sym_EQ_EQ] = ACTIONS(4545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4547), - [anon_sym_LT_EQ] = ACTIONS(4547), - [anon_sym_GT_EQ] = ACTIONS(4547), - [anon_sym_BANGin] = ACTIONS(4547), - [anon_sym_is] = ACTIONS(4545), - [anon_sym_BANGis] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4545), - [anon_sym_PERCENT] = ACTIONS(4545), - [anon_sym_as_QMARK] = ACTIONS(4547), - [anon_sym_PLUS_PLUS] = ACTIONS(4547), - [anon_sym_DASH_DASH] = ACTIONS(4547), - [anon_sym_BANG_BANG] = ACTIONS(4547), - [anon_sym_suspend] = ACTIONS(4545), - [anon_sym_sealed] = ACTIONS(4545), - [anon_sym_annotation] = ACTIONS(4545), - [anon_sym_data] = ACTIONS(4545), - [anon_sym_inner] = ACTIONS(4545), - [anon_sym_value] = ACTIONS(4545), - [anon_sym_override] = ACTIONS(4545), - [anon_sym_lateinit] = ACTIONS(4545), - [anon_sym_public] = ACTIONS(4545), - [anon_sym_private] = ACTIONS(4545), - [anon_sym_internal] = ACTIONS(4545), - [anon_sym_protected] = ACTIONS(4545), - [anon_sym_tailrec] = ACTIONS(4545), - [anon_sym_operator] = ACTIONS(4545), - [anon_sym_infix] = ACTIONS(4545), - [anon_sym_inline] = ACTIONS(4545), - [anon_sym_external] = ACTIONS(4545), - [sym_property_modifier] = ACTIONS(4545), - [anon_sym_abstract] = ACTIONS(4545), - [anon_sym_final] = ACTIONS(4545), - [anon_sym_open] = ACTIONS(4545), - [anon_sym_vararg] = ACTIONS(4545), - [anon_sym_noinline] = ACTIONS(4545), - [anon_sym_crossinline] = ACTIONS(4545), - [anon_sym_expect] = ACTIONS(4545), - [anon_sym_actual] = ACTIONS(4545), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4547), - [sym_safe_nav] = ACTIONS(4547), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3689), + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(6706), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), }, [3283] = { - [sym__alpha_identifier] = ACTIONS(4529), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_RBRACK] = ACTIONS(4532), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_as] = ACTIONS(4529), - [anon_sym_EQ] = ACTIONS(4529), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_RPAREN] = ACTIONS(4532), - [anon_sym_by] = ACTIONS(4529), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4529), - [anon_sym_where] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4529), - [anon_sym_set] = ACTIONS(4529), - [anon_sym_STAR] = ACTIONS(4529), - [anon_sym_DASH_GT] = ACTIONS(4532), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4529), - [anon_sym_while] = ACTIONS(4529), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4529), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4529), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4529), - [anon_sym_BANGis] = ACTIONS(4532), - [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(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4529), - [anon_sym_sealed] = ACTIONS(4529), - [anon_sym_annotation] = ACTIONS(4529), - [anon_sym_data] = ACTIONS(4529), - [anon_sym_inner] = ACTIONS(4529), - [anon_sym_value] = ACTIONS(4529), - [anon_sym_override] = ACTIONS(4529), - [anon_sym_lateinit] = ACTIONS(4529), - [anon_sym_public] = ACTIONS(4529), - [anon_sym_private] = ACTIONS(4529), - [anon_sym_internal] = ACTIONS(4529), - [anon_sym_protected] = ACTIONS(4529), - [anon_sym_tailrec] = ACTIONS(4529), - [anon_sym_operator] = ACTIONS(4529), - [anon_sym_infix] = ACTIONS(4529), - [anon_sym_inline] = ACTIONS(4529), - [anon_sym_external] = ACTIONS(4529), - [sym_property_modifier] = ACTIONS(4529), - [anon_sym_abstract] = ACTIONS(4529), - [anon_sym_final] = ACTIONS(4529), - [anon_sym_open] = ACTIONS(4529), - [anon_sym_vararg] = ACTIONS(4529), - [anon_sym_noinline] = ACTIONS(4529), - [anon_sym_crossinline] = ACTIONS(4529), - [anon_sym_expect] = ACTIONS(4529), - [anon_sym_actual] = ACTIONS(4529), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3702), + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, [3284] = { - [sym__alpha_identifier] = ACTIONS(4549), - [anon_sym_AT] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_RBRACK] = ACTIONS(4551), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(4549), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_RPAREN] = ACTIONS(4551), - [anon_sym_by] = ACTIONS(4549), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_where] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4549), - [anon_sym_set] = ACTIONS(4549), - [anon_sym_STAR] = ACTIONS(4549), - [anon_sym_DASH_GT] = ACTIONS(4551), - [sym_label] = ACTIONS(4551), - [anon_sym_in] = ACTIONS(4549), - [anon_sym_while] = ACTIONS(4549), - [anon_sym_DOT_DOT] = ACTIONS(4551), - [anon_sym_QMARK_COLON] = ACTIONS(4551), - [anon_sym_AMP_AMP] = ACTIONS(4551), - [anon_sym_PIPE_PIPE] = ACTIONS(4551), - [anon_sym_else] = ACTIONS(4549), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym_PLUS_EQ] = ACTIONS(4551), - [anon_sym_DASH_EQ] = ACTIONS(4551), - [anon_sym_STAR_EQ] = ACTIONS(4551), - [anon_sym_SLASH_EQ] = ACTIONS(4551), - [anon_sym_PERCENT_EQ] = ACTIONS(4551), - [anon_sym_BANG_EQ] = ACTIONS(4549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), - [anon_sym_EQ_EQ] = ACTIONS(4549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_BANGin] = ACTIONS(4551), - [anon_sym_is] = ACTIONS(4549), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_SLASH] = ACTIONS(4549), - [anon_sym_PERCENT] = ACTIONS(4549), - [anon_sym_as_QMARK] = ACTIONS(4551), - [anon_sym_PLUS_PLUS] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4551), - [anon_sym_BANG_BANG] = ACTIONS(4551), - [anon_sym_suspend] = ACTIONS(4549), - [anon_sym_sealed] = ACTIONS(4549), - [anon_sym_annotation] = ACTIONS(4549), - [anon_sym_data] = ACTIONS(4549), - [anon_sym_inner] = ACTIONS(4549), - [anon_sym_value] = ACTIONS(4549), - [anon_sym_override] = ACTIONS(4549), - [anon_sym_lateinit] = ACTIONS(4549), - [anon_sym_public] = ACTIONS(4549), - [anon_sym_private] = ACTIONS(4549), - [anon_sym_internal] = ACTIONS(4549), - [anon_sym_protected] = ACTIONS(4549), - [anon_sym_tailrec] = ACTIONS(4549), - [anon_sym_operator] = ACTIONS(4549), - [anon_sym_infix] = ACTIONS(4549), - [anon_sym_inline] = ACTIONS(4549), - [anon_sym_external] = ACTIONS(4549), - [sym_property_modifier] = ACTIONS(4549), - [anon_sym_abstract] = ACTIONS(4549), - [anon_sym_final] = ACTIONS(4549), - [anon_sym_open] = ACTIONS(4549), - [anon_sym_vararg] = ACTIONS(4549), - [anon_sym_noinline] = ACTIONS(4549), - [anon_sym_crossinline] = ACTIONS(4549), - [anon_sym_expect] = ACTIONS(4549), - [anon_sym_actual] = ACTIONS(4549), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4551), - [sym_safe_nav] = ACTIONS(4551), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3706), + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6710), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3164), + [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_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_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(4144), + [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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, [3285] = { - [sym__alpha_identifier] = ACTIONS(4633), - [anon_sym_AT] = ACTIONS(4635), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_LBRACK] = ACTIONS(4635), - [anon_sym_RBRACK] = ACTIONS(4635), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_as] = ACTIONS(4633), - [anon_sym_EQ] = ACTIONS(4633), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_RBRACE] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_COMMA] = ACTIONS(4635), - [anon_sym_RPAREN] = ACTIONS(4635), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4633), - [anon_sym_where] = ACTIONS(4633), - [anon_sym_SEMI] = ACTIONS(4635), - [anon_sym_get] = ACTIONS(4633), - [anon_sym_set] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [anon_sym_DASH_GT] = ACTIONS(4635), - [sym_label] = ACTIONS(4635), - [anon_sym_in] = ACTIONS(4633), - [anon_sym_while] = ACTIONS(4633), - [anon_sym_DOT_DOT] = ACTIONS(4635), - [anon_sym_QMARK_COLON] = ACTIONS(4635), - [anon_sym_AMP_AMP] = ACTIONS(4635), - [anon_sym_PIPE_PIPE] = ACTIONS(4635), - [anon_sym_else] = ACTIONS(4633), - [anon_sym_COLON_COLON] = ACTIONS(4635), - [anon_sym_PLUS_EQ] = ACTIONS(4635), - [anon_sym_DASH_EQ] = ACTIONS(4635), - [anon_sym_STAR_EQ] = ACTIONS(4635), - [anon_sym_SLASH_EQ] = ACTIONS(4635), - [anon_sym_PERCENT_EQ] = ACTIONS(4635), - [anon_sym_BANG_EQ] = ACTIONS(4633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), - [anon_sym_EQ_EQ] = ACTIONS(4633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), - [anon_sym_LT_EQ] = ACTIONS(4635), - [anon_sym_GT_EQ] = ACTIONS(4635), - [anon_sym_BANGin] = ACTIONS(4635), - [anon_sym_is] = ACTIONS(4633), - [anon_sym_BANGis] = ACTIONS(4635), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_PERCENT] = ACTIONS(4633), - [anon_sym_as_QMARK] = ACTIONS(4635), - [anon_sym_PLUS_PLUS] = ACTIONS(4635), - [anon_sym_DASH_DASH] = ACTIONS(4635), - [anon_sym_BANG_BANG] = ACTIONS(4635), - [anon_sym_suspend] = ACTIONS(4633), - [anon_sym_sealed] = ACTIONS(4633), - [anon_sym_annotation] = ACTIONS(4633), - [anon_sym_data] = ACTIONS(4633), - [anon_sym_inner] = ACTIONS(4633), - [anon_sym_value] = ACTIONS(4633), - [anon_sym_override] = ACTIONS(4633), - [anon_sym_lateinit] = ACTIONS(4633), - [anon_sym_public] = ACTIONS(4633), - [anon_sym_private] = ACTIONS(4633), - [anon_sym_internal] = ACTIONS(4633), - [anon_sym_protected] = ACTIONS(4633), - [anon_sym_tailrec] = ACTIONS(4633), - [anon_sym_operator] = ACTIONS(4633), - [anon_sym_infix] = ACTIONS(4633), - [anon_sym_inline] = ACTIONS(4633), - [anon_sym_external] = ACTIONS(4633), - [sym_property_modifier] = ACTIONS(4633), - [anon_sym_abstract] = ACTIONS(4633), - [anon_sym_final] = ACTIONS(4633), - [anon_sym_open] = ACTIONS(4633), - [anon_sym_vararg] = ACTIONS(4633), - [anon_sym_noinline] = ACTIONS(4633), - [anon_sym_crossinline] = ACTIONS(4633), - [anon_sym_expect] = ACTIONS(4633), - [anon_sym_actual] = ACTIONS(4633), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4635), - [sym_safe_nav] = ACTIONS(4635), + [sym_type_constraints] = STATE(3791), + [sym_function_body] = STATE(3599), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(6712), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4123), + [sym_label] = ACTIONS(4125), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_while] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), [sym_multiline_comment] = ACTIONS(3), }, [3286] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3108), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(6723), - [anon_sym_PIPE_PIPE] = ACTIONS(6725), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [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(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_constraints] = STATE(3604), + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(6714), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), [sym_multiline_comment] = ACTIONS(3), }, [3287] = { - [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_DOT] = ACTIONS(4648), - [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_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_value] = 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_class_body] = STATE(3485), + [sym__alpha_identifier] = ACTIONS(4517), + [anon_sym_AT] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_RBRACK] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_as] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(5444), + [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_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_value] = 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), }, [3288] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3096), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3096), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(6723), - [anon_sym_PIPE_PIPE] = ACTIONS(6725), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_constraints] = STATE(3605), + [sym_function_body] = STATE(4000), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(6716), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4123), + [sym_label] = ACTIONS(4125), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), [sym_multiline_comment] = ACTIONS(3), }, [3289] = { - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_RBRACK] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4593), - [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_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_value] = 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), + [sym_type_constraints] = STATE(3686), + [sym_function_body] = STATE(3233), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(6718), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), }, [3290] = { - [sym_type_constraints] = STATE(3635), - [sym_function_body] = STATE(3969), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(6755), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_COMMA] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4133), - [sym_label] = ACTIONS(4135), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_PLUS_EQ] = ACTIONS(4135), - [anon_sym_DASH_EQ] = ACTIONS(4135), - [anon_sym_STAR_EQ] = ACTIONS(4135), - [anon_sym_SLASH_EQ] = ACTIONS(4135), - [anon_sym_PERCENT_EQ] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4133), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), + [sym_type_arguments] = STATE(6547), + [sym__alpha_identifier] = ACTIONS(4136), + [anon_sym_AT] = ACTIONS(4138), + [anon_sym_COLON] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym_COMMA] = ACTIONS(4138), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4136), + [anon_sym_GT] = ACTIONS(4136), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(4136), + [anon_sym_set] = ACTIONS(4136), + [sym__quest] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4138), + [anon_sym_QMARK_COLON] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_PIPE_PIPE] = ACTIONS(4138), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4138), + [anon_sym_DASH_EQ] = ACTIONS(4138), + [anon_sym_STAR_EQ] = ACTIONS(4138), + [anon_sym_SLASH_EQ] = ACTIONS(4138), + [anon_sym_PERCENT_EQ] = ACTIONS(4138), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4138), + [anon_sym_GT_EQ] = ACTIONS(4138), + [anon_sym_BANGin] = ACTIONS(4138), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_BANGis] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_SLASH] = ACTIONS(4136), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_BANG_BANG] = ACTIONS(4138), + [anon_sym_suspend] = ACTIONS(4136), + [anon_sym_sealed] = ACTIONS(4136), + [anon_sym_annotation] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4136), + [anon_sym_inner] = ACTIONS(4136), + [anon_sym_value] = ACTIONS(4136), + [anon_sym_override] = ACTIONS(4136), + [anon_sym_lateinit] = ACTIONS(4136), + [anon_sym_public] = ACTIONS(4136), + [anon_sym_private] = ACTIONS(4136), + [anon_sym_internal] = ACTIONS(4136), + [anon_sym_protected] = ACTIONS(4136), + [anon_sym_tailrec] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_infix] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym_external] = ACTIONS(4136), + [sym_property_modifier] = ACTIONS(4136), + [anon_sym_abstract] = ACTIONS(4136), + [anon_sym_final] = ACTIONS(4136), + [anon_sym_open] = ACTIONS(4136), + [anon_sym_vararg] = ACTIONS(4136), + [anon_sym_noinline] = ACTIONS(4136), + [anon_sym_crossinline] = ACTIONS(4136), + [anon_sym_expect] = ACTIONS(4136), + [anon_sym_actual] = ACTIONS(4136), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4138), + [sym__automatic_semicolon] = ACTIONS(4138), + [sym_safe_nav] = ACTIONS(4138), [sym_multiline_comment] = ACTIONS(3), }, [3291] = { - [sym_type_constraints] = STATE(3772), - [sym_function_body] = STATE(3549), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(6761), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_RPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4133), - [sym_label] = ACTIONS(4135), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_while] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_PLUS_EQ] = ACTIONS(4135), - [anon_sym_DASH_EQ] = ACTIONS(4135), - [anon_sym_STAR_EQ] = ACTIONS(4135), - [anon_sym_SLASH_EQ] = ACTIONS(4135), - [anon_sym_PERCENT_EQ] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4133), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3098), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(6670), + [anon_sym_PIPE_PIPE] = ACTIONS(6672), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3292] = { - [sym_class_body] = STATE(3492), - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_RBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_RPAREN] = ACTIONS(4470), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [anon_sym_DASH_GT] = ACTIONS(4470), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_while] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_suspend] = ACTIONS(4468), - [anon_sym_sealed] = ACTIONS(4468), - [anon_sym_annotation] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_lateinit] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_tailrec] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_infix] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym_external] = ACTIONS(4468), - [sym_property_modifier] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_final] = ACTIONS(4468), - [anon_sym_open] = ACTIONS(4468), - [anon_sym_vararg] = ACTIONS(4468), - [anon_sym_noinline] = ACTIONS(4468), - [anon_sym_crossinline] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), + [aux_sym__delegation_specifiers_repeat1] = STATE(3359), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_RBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [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_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4513), + [anon_sym_where] = ACTIONS(4513), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = 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_value] = 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_multiline_comment] = ACTIONS(3), }, [3293] = { - [aux_sym_user_type_repeat1] = STATE(3296), - [sym__alpha_identifier] = ACTIONS(4143), - [anon_sym_AT] = ACTIONS(4145), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_DOT] = ACTIONS(6763), - [anon_sym_as] = ACTIONS(4143), - [anon_sym_EQ] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_RBRACE] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(4145), - [anon_sym_COMMA] = ACTIONS(4145), - [anon_sym_by] = ACTIONS(4143), - [anon_sym_LT] = ACTIONS(4143), - [anon_sym_GT] = ACTIONS(4143), - [anon_sym_where] = ACTIONS(4143), - [anon_sym_SEMI] = ACTIONS(4145), - [anon_sym_get] = ACTIONS(4143), - [anon_sym_set] = ACTIONS(4143), - [anon_sym_AMP] = ACTIONS(4143), - [sym__quest] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(4143), - [sym_label] = ACTIONS(4145), - [anon_sym_in] = ACTIONS(4143), - [anon_sym_DOT_DOT] = ACTIONS(4145), - [anon_sym_QMARK_COLON] = ACTIONS(4145), - [anon_sym_AMP_AMP] = ACTIONS(4145), - [anon_sym_PIPE_PIPE] = ACTIONS(4145), - [anon_sym_else] = ACTIONS(4143), - [anon_sym_COLON_COLON] = ACTIONS(4145), - [anon_sym_PLUS_EQ] = ACTIONS(4145), - [anon_sym_DASH_EQ] = ACTIONS(4145), - [anon_sym_STAR_EQ] = ACTIONS(4145), - [anon_sym_SLASH_EQ] = ACTIONS(4145), - [anon_sym_PERCENT_EQ] = ACTIONS(4145), - [anon_sym_BANG_EQ] = ACTIONS(4143), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4145), - [anon_sym_EQ_EQ] = ACTIONS(4143), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4145), - [anon_sym_LT_EQ] = ACTIONS(4145), - [anon_sym_GT_EQ] = ACTIONS(4145), - [anon_sym_BANGin] = ACTIONS(4145), - [anon_sym_is] = ACTIONS(4143), - [anon_sym_BANGis] = ACTIONS(4145), - [anon_sym_PLUS] = ACTIONS(4143), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_SLASH] = ACTIONS(4143), - [anon_sym_PERCENT] = ACTIONS(4143), - [anon_sym_as_QMARK] = ACTIONS(4145), - [anon_sym_PLUS_PLUS] = ACTIONS(4145), - [anon_sym_DASH_DASH] = ACTIONS(4145), - [anon_sym_BANG_BANG] = ACTIONS(4145), - [anon_sym_suspend] = ACTIONS(4143), - [anon_sym_sealed] = ACTIONS(4143), - [anon_sym_annotation] = ACTIONS(4143), - [anon_sym_data] = ACTIONS(4143), - [anon_sym_inner] = ACTIONS(4143), - [anon_sym_value] = ACTIONS(4143), - [anon_sym_override] = ACTIONS(4143), - [anon_sym_lateinit] = ACTIONS(4143), - [anon_sym_public] = ACTIONS(4143), - [anon_sym_private] = ACTIONS(4143), - [anon_sym_internal] = ACTIONS(4143), - [anon_sym_protected] = ACTIONS(4143), - [anon_sym_tailrec] = ACTIONS(4143), - [anon_sym_operator] = ACTIONS(4143), - [anon_sym_infix] = ACTIONS(4143), - [anon_sym_inline] = ACTIONS(4143), - [anon_sym_external] = ACTIONS(4143), - [sym_property_modifier] = ACTIONS(4143), - [anon_sym_abstract] = ACTIONS(4143), - [anon_sym_final] = ACTIONS(4143), - [anon_sym_open] = ACTIONS(4143), - [anon_sym_vararg] = ACTIONS(4143), - [anon_sym_noinline] = ACTIONS(4143), - [anon_sym_crossinline] = ACTIONS(4143), - [anon_sym_expect] = ACTIONS(4143), - [anon_sym_actual] = ACTIONS(4143), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4145), - [sym__automatic_semicolon] = ACTIONS(4145), - [sym_safe_nav] = ACTIONS(4145), + [sym_type_constraints] = STATE(3657), + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6722), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5742), + [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_value] = 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), }, [3294] = { - [sym__alpha_identifier] = ACTIONS(4724), - [anon_sym_AT] = ACTIONS(4726), - [anon_sym_COLON] = ACTIONS(4724), - [anon_sym_LBRACK] = ACTIONS(4726), - [anon_sym_RBRACK] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4724), - [anon_sym_as] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4724), - [anon_sym_LBRACE] = ACTIONS(4726), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_COMMA] = ACTIONS(4726), - [anon_sym_RPAREN] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4724), - [anon_sym_GT] = ACTIONS(4724), - [anon_sym_where] = ACTIONS(4724), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_get] = ACTIONS(4724), - [anon_sym_set] = ACTIONS(4724), - [anon_sym_STAR] = ACTIONS(4724), - [anon_sym_DASH_GT] = ACTIONS(4726), - [sym_label] = ACTIONS(4726), - [anon_sym_in] = ACTIONS(4724), - [anon_sym_while] = ACTIONS(4724), - [anon_sym_DOT_DOT] = ACTIONS(4726), - [anon_sym_QMARK_COLON] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [anon_sym_else] = ACTIONS(4724), - [anon_sym_COLON_COLON] = ACTIONS(4726), - [anon_sym_PLUS_EQ] = ACTIONS(4726), - [anon_sym_DASH_EQ] = ACTIONS(4726), - [anon_sym_STAR_EQ] = ACTIONS(4726), - [anon_sym_SLASH_EQ] = ACTIONS(4726), - [anon_sym_PERCENT_EQ] = ACTIONS(4726), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4726), - [anon_sym_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_BANGin] = ACTIONS(4726), - [anon_sym_is] = ACTIONS(4724), - [anon_sym_BANGis] = ACTIONS(4726), - [anon_sym_PLUS] = ACTIONS(4724), - [anon_sym_DASH] = ACTIONS(4724), - [anon_sym_SLASH] = ACTIONS(4724), - [anon_sym_PERCENT] = ACTIONS(4724), - [anon_sym_as_QMARK] = ACTIONS(4726), - [anon_sym_PLUS_PLUS] = ACTIONS(4726), - [anon_sym_DASH_DASH] = ACTIONS(4726), - [anon_sym_BANG_BANG] = ACTIONS(4726), - [anon_sym_suspend] = ACTIONS(4724), - [anon_sym_sealed] = ACTIONS(4724), - [anon_sym_annotation] = ACTIONS(4724), - [anon_sym_data] = ACTIONS(4724), - [anon_sym_inner] = ACTIONS(4724), - [anon_sym_value] = ACTIONS(4724), - [anon_sym_override] = ACTIONS(4724), - [anon_sym_lateinit] = ACTIONS(4724), - [anon_sym_public] = ACTIONS(4724), - [anon_sym_private] = ACTIONS(4724), - [anon_sym_internal] = ACTIONS(4724), - [anon_sym_protected] = ACTIONS(4724), - [anon_sym_tailrec] = ACTIONS(4724), - [anon_sym_operator] = ACTIONS(4724), - [anon_sym_infix] = ACTIONS(4724), - [anon_sym_inline] = ACTIONS(4724), - [anon_sym_external] = ACTIONS(4724), - [sym_property_modifier] = ACTIONS(4724), - [anon_sym_abstract] = ACTIONS(4724), - [anon_sym_final] = ACTIONS(4724), - [anon_sym_open] = ACTIONS(4724), - [anon_sym_vararg] = ACTIONS(4724), - [anon_sym_noinline] = ACTIONS(4724), - [anon_sym_crossinline] = ACTIONS(4724), - [anon_sym_expect] = ACTIONS(4724), - [anon_sym_actual] = ACTIONS(4724), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4726), - [sym_safe_nav] = ACTIONS(4726), + [sym_type_constraints] = STATE(3607), + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(6724), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, [3295] = { - [sym_enum_class_body] = STATE(3491), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_RBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_RPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_DASH_GT] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3113), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(6670), + [anon_sym_PIPE_PIPE] = ACTIONS(6672), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3296] = { - [aux_sym_user_type_repeat1] = STATE(3296), - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(6766), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4187), - [sym__quest] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4187), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4189), - [anon_sym_QMARK_COLON] = ACTIONS(4189), - [anon_sym_AMP_AMP] = ACTIONS(4189), - [anon_sym_PIPE_PIPE] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4189), - [anon_sym_DASH_EQ] = ACTIONS(4189), - [anon_sym_STAR_EQ] = ACTIONS(4189), - [anon_sym_SLASH_EQ] = ACTIONS(4189), - [anon_sym_PERCENT_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), - [anon_sym_LT_EQ] = ACTIONS(4189), - [anon_sym_GT_EQ] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_SLASH] = ACTIONS(4187), - [anon_sym_PERCENT] = ACTIONS(4187), - [anon_sym_as_QMARK] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4189), - [sym__automatic_semicolon] = ACTIONS(4189), - [sym_safe_nav] = ACTIONS(4189), + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_RBRACK] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [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_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_value] = 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), + [anon_sym_AT2] = ACTIONS(6726), + [sym__backtick_identifier] = ACTIONS(4700), + [sym_safe_nav] = ACTIONS(4700), [sym_multiline_comment] = ACTIONS(3), }, [3297] = { - [sym_type_constraints] = STATE(3641), - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(6769), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3124), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(6670), + [anon_sym_PIPE_PIPE] = ACTIONS(6672), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [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(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3298] = { - [sym_type_arguments] = STATE(3397), - [sym__alpha_identifier] = ACTIONS(4169), - [anon_sym_AT] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_as] = ACTIONS(4169), - [anon_sym_EQ] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_RBRACE] = ACTIONS(4171), - [anon_sym_LPAREN] = ACTIONS(4171), - [anon_sym_COMMA] = ACTIONS(4171), - [anon_sym_by] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(6771), - [anon_sym_GT] = ACTIONS(4169), - [anon_sym_where] = ACTIONS(4169), - [anon_sym_SEMI] = ACTIONS(4171), - [anon_sym_get] = ACTIONS(4169), - [anon_sym_set] = ACTIONS(4169), - [anon_sym_AMP] = ACTIONS(4169), - [sym__quest] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4169), - [sym_label] = ACTIONS(4171), - [anon_sym_in] = ACTIONS(4169), - [anon_sym_DOT_DOT] = ACTIONS(4171), - [anon_sym_QMARK_COLON] = ACTIONS(4171), - [anon_sym_AMP_AMP] = ACTIONS(4171), - [anon_sym_PIPE_PIPE] = ACTIONS(4171), - [anon_sym_else] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4171), - [anon_sym_PLUS_EQ] = ACTIONS(4171), - [anon_sym_DASH_EQ] = ACTIONS(4171), - [anon_sym_STAR_EQ] = ACTIONS(4171), - [anon_sym_SLASH_EQ] = ACTIONS(4171), - [anon_sym_PERCENT_EQ] = ACTIONS(4171), - [anon_sym_BANG_EQ] = ACTIONS(4169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4171), - [anon_sym_EQ_EQ] = ACTIONS(4169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4171), - [anon_sym_LT_EQ] = ACTIONS(4171), - [anon_sym_GT_EQ] = ACTIONS(4171), - [anon_sym_BANGin] = ACTIONS(4171), - [anon_sym_is] = ACTIONS(4169), - [anon_sym_BANGis] = ACTIONS(4171), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_SLASH] = ACTIONS(4169), - [anon_sym_PERCENT] = ACTIONS(4169), - [anon_sym_as_QMARK] = ACTIONS(4171), - [anon_sym_PLUS_PLUS] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(4171), - [anon_sym_BANG_BANG] = ACTIONS(4171), - [anon_sym_suspend] = ACTIONS(4169), - [anon_sym_sealed] = ACTIONS(4169), - [anon_sym_annotation] = ACTIONS(4169), - [anon_sym_data] = ACTIONS(4169), - [anon_sym_inner] = ACTIONS(4169), - [anon_sym_value] = ACTIONS(4169), - [anon_sym_override] = ACTIONS(4169), - [anon_sym_lateinit] = ACTIONS(4169), - [anon_sym_public] = ACTIONS(4169), - [anon_sym_private] = ACTIONS(4169), - [anon_sym_internal] = ACTIONS(4169), - [anon_sym_protected] = ACTIONS(4169), - [anon_sym_tailrec] = ACTIONS(4169), - [anon_sym_operator] = ACTIONS(4169), - [anon_sym_infix] = ACTIONS(4169), - [anon_sym_inline] = ACTIONS(4169), - [anon_sym_external] = ACTIONS(4169), - [sym_property_modifier] = ACTIONS(4169), - [anon_sym_abstract] = ACTIONS(4169), - [anon_sym_final] = ACTIONS(4169), - [anon_sym_open] = ACTIONS(4169), - [anon_sym_vararg] = ACTIONS(4169), - [anon_sym_noinline] = ACTIONS(4169), - [anon_sym_crossinline] = ACTIONS(4169), - [anon_sym_expect] = ACTIONS(4169), - [anon_sym_actual] = ACTIONS(4169), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4171), - [sym__automatic_semicolon] = ACTIONS(4171), - [sym_safe_nav] = ACTIONS(4171), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3128), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(6670), + [anon_sym_PIPE_PIPE] = ACTIONS(6672), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3299] = { - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_RBRACK] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_as] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_RPAREN] = ACTIONS(4627), - [anon_sym_by] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_where] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_get] = ACTIONS(4625), - [anon_sym_set] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_DASH_GT] = ACTIONS(4627), - [sym_label] = ACTIONS(4627), - [anon_sym_in] = ACTIONS(4625), - [anon_sym_while] = ACTIONS(4625), - [anon_sym_DOT_DOT] = ACTIONS(4627), - [anon_sym_QMARK_COLON] = ACTIONS(4627), - [anon_sym_AMP_AMP] = ACTIONS(4627), - [anon_sym_PIPE_PIPE] = ACTIONS(4627), - [anon_sym_else] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4627), - [anon_sym_PLUS_EQ] = ACTIONS(4627), - [anon_sym_DASH_EQ] = ACTIONS(4627), - [anon_sym_STAR_EQ] = ACTIONS(4627), - [anon_sym_SLASH_EQ] = ACTIONS(4627), - [anon_sym_PERCENT_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ] = ACTIONS(4625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ] = ACTIONS(4625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4627), - [anon_sym_LT_EQ] = ACTIONS(4627), - [anon_sym_GT_EQ] = ACTIONS(4627), - [anon_sym_BANGin] = ACTIONS(4627), - [anon_sym_is] = ACTIONS(4625), - [anon_sym_BANGis] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_as_QMARK] = ACTIONS(4627), - [anon_sym_PLUS_PLUS] = ACTIONS(4627), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_BANG_BANG] = ACTIONS(4627), - [anon_sym_suspend] = ACTIONS(4625), - [anon_sym_sealed] = ACTIONS(4625), - [anon_sym_annotation] = ACTIONS(4625), - [anon_sym_data] = ACTIONS(4625), - [anon_sym_inner] = ACTIONS(4625), - [anon_sym_value] = ACTIONS(4625), - [anon_sym_override] = ACTIONS(4625), - [anon_sym_lateinit] = ACTIONS(4625), - [anon_sym_public] = ACTIONS(4625), - [anon_sym_private] = ACTIONS(4625), - [anon_sym_internal] = ACTIONS(4625), - [anon_sym_protected] = ACTIONS(4625), - [anon_sym_tailrec] = ACTIONS(4625), - [anon_sym_operator] = ACTIONS(4625), - [anon_sym_infix] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_external] = ACTIONS(4625), - [sym_property_modifier] = ACTIONS(4625), - [anon_sym_abstract] = ACTIONS(4625), - [anon_sym_final] = ACTIONS(4625), - [anon_sym_open] = ACTIONS(4625), - [anon_sym_vararg] = ACTIONS(4625), - [anon_sym_noinline] = ACTIONS(4625), - [anon_sym_crossinline] = ACTIONS(4625), - [anon_sym_expect] = ACTIONS(4625), - [anon_sym_actual] = ACTIONS(4625), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4627), - [sym_safe_nav] = ACTIONS(4627), + [sym_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [3300] = { - [sym__alpha_identifier] = ACTIONS(4535), - [anon_sym_AT] = ACTIONS(4537), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_RBRACK] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4535), - [anon_sym_as] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(4535), - [anon_sym_LBRACE] = ACTIONS(4537), - [anon_sym_RBRACE] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(4537), - [anon_sym_COMMA] = ACTIONS(4537), - [anon_sym_RPAREN] = ACTIONS(4537), - [anon_sym_LT] = ACTIONS(4535), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_where] = ACTIONS(4535), - [anon_sym_SEMI] = ACTIONS(4537), - [anon_sym_get] = ACTIONS(4535), - [anon_sym_set] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [anon_sym_DASH_GT] = ACTIONS(4537), - [sym_label] = ACTIONS(4537), - [anon_sym_in] = ACTIONS(4535), - [anon_sym_while] = ACTIONS(4535), - [anon_sym_DOT_DOT] = ACTIONS(4537), - [anon_sym_QMARK_COLON] = ACTIONS(4537), - [anon_sym_AMP_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4537), - [anon_sym_else] = ACTIONS(4535), - [anon_sym_COLON_COLON] = ACTIONS(4537), - [anon_sym_PLUS_EQ] = ACTIONS(4537), - [anon_sym_DASH_EQ] = ACTIONS(4537), - [anon_sym_STAR_EQ] = ACTIONS(4537), - [anon_sym_SLASH_EQ] = ACTIONS(4537), - [anon_sym_PERCENT_EQ] = ACTIONS(4537), - [anon_sym_BANG_EQ] = ACTIONS(4535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4537), - [anon_sym_EQ_EQ] = ACTIONS(4535), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4537), - [anon_sym_LT_EQ] = ACTIONS(4537), - [anon_sym_GT_EQ] = ACTIONS(4537), - [anon_sym_BANGin] = ACTIONS(4537), - [anon_sym_is] = ACTIONS(4535), - [anon_sym_BANGis] = ACTIONS(4537), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_PERCENT] = ACTIONS(4535), - [anon_sym_as_QMARK] = ACTIONS(4537), - [anon_sym_PLUS_PLUS] = ACTIONS(4537), - [anon_sym_DASH_DASH] = ACTIONS(4537), - [anon_sym_BANG_BANG] = ACTIONS(4537), - [anon_sym_suspend] = ACTIONS(4535), - [anon_sym_sealed] = ACTIONS(4535), - [anon_sym_annotation] = ACTIONS(4535), - [anon_sym_data] = ACTIONS(4535), - [anon_sym_inner] = ACTIONS(4535), - [anon_sym_value] = ACTIONS(4535), - [anon_sym_override] = ACTIONS(4535), - [anon_sym_lateinit] = ACTIONS(4535), - [anon_sym_public] = ACTIONS(4535), - [anon_sym_private] = ACTIONS(4535), - [anon_sym_internal] = ACTIONS(4535), - [anon_sym_protected] = ACTIONS(4535), - [anon_sym_tailrec] = ACTIONS(4535), - [anon_sym_operator] = ACTIONS(4535), - [anon_sym_infix] = ACTIONS(4535), - [anon_sym_inline] = ACTIONS(4535), - [anon_sym_external] = ACTIONS(4535), - [sym_property_modifier] = ACTIONS(4535), - [anon_sym_abstract] = ACTIONS(4535), - [anon_sym_final] = ACTIONS(4535), - [anon_sym_open] = ACTIONS(4535), - [anon_sym_vararg] = ACTIONS(4535), - [anon_sym_noinline] = ACTIONS(4535), - [anon_sym_crossinline] = ACTIONS(4535), - [anon_sym_expect] = ACTIONS(4535), - [anon_sym_actual] = ACTIONS(4535), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4537), - [sym_safe_nav] = ACTIONS(4537), + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_RBRACK] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_RPAREN] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [anon_sym_DASH_GT] = ACTIONS(4678), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_while] = ACTIONS(4676), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_QMARK_COLON] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4678), + [anon_sym_DASH_EQ] = ACTIONS(4678), + [anon_sym_STAR_EQ] = ACTIONS(4678), + [anon_sym_SLASH_EQ] = ACTIONS(4678), + [anon_sym_PERCENT_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_as_QMARK] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG_BANG] = ACTIONS(4678), + [anon_sym_suspend] = ACTIONS(4676), + [anon_sym_sealed] = ACTIONS(4676), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_override] = ACTIONS(4676), + [anon_sym_lateinit] = ACTIONS(4676), + [anon_sym_public] = ACTIONS(4676), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_internal] = ACTIONS(4676), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_tailrec] = ACTIONS(4676), + [anon_sym_operator] = ACTIONS(4676), + [anon_sym_infix] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym_external] = ACTIONS(4676), + [sym_property_modifier] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_final] = ACTIONS(4676), + [anon_sym_open] = ACTIONS(4676), + [anon_sym_vararg] = ACTIONS(4676), + [anon_sym_noinline] = ACTIONS(4676), + [anon_sym_crossinline] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4678), + [sym_safe_nav] = ACTIONS(4678), [sym_multiline_comment] = ACTIONS(3), }, [3301] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3319), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4541), - [anon_sym_RPAREN] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4539), - [anon_sym_DASH_GT] = ACTIONS(4541), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_while] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_PLUS_EQ] = ACTIONS(4541), - [anon_sym_DASH_EQ] = ACTIONS(4541), - [anon_sym_STAR_EQ] = ACTIONS(4541), - [anon_sym_SLASH_EQ] = ACTIONS(4541), - [anon_sym_PERCENT_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3109), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(6670), + [anon_sym_PIPE_PIPE] = ACTIONS(6672), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3302] = { - [sym_enum_class_body] = STATE(3536), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym_class_body] = STATE(3465), + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_RBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_RPAREN] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(4414), + [sym_label] = ACTIONS(4414), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_while] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_suspend] = ACTIONS(4412), + [anon_sym_sealed] = ACTIONS(4412), + [anon_sym_annotation] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_override] = ACTIONS(4412), + [anon_sym_lateinit] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_internal] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_tailrec] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_infix] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym_external] = ACTIONS(4412), + [sym_property_modifier] = ACTIONS(4412), + [anon_sym_abstract] = ACTIONS(4412), + [anon_sym_final] = ACTIONS(4412), + [anon_sym_open] = ACTIONS(4412), + [anon_sym_vararg] = ACTIONS(4412), + [anon_sym_noinline] = ACTIONS(4412), + [anon_sym_crossinline] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), [sym_multiline_comment] = ACTIONS(3), }, [3303] = { - [sym_class_body] = STATE(3539), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_RBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_while] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_RBRACK] = ACTIONS(4565), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_RPAREN] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_DASH_GT] = ACTIONS(4565), + [sym_label] = ACTIONS(4565), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_while] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_suspend] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_annotation] = ACTIONS(4563), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_lateinit] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_tailrec] = ACTIONS(4563), + [anon_sym_operator] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_inline] = ACTIONS(4563), + [anon_sym_external] = ACTIONS(4563), + [sym_property_modifier] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_vararg] = ACTIONS(4563), + [anon_sym_noinline] = ACTIONS(4563), + [anon_sym_crossinline] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), [sym_multiline_comment] = ACTIONS(3), }, [3304] = { - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_as] = ACTIONS(4276), - [anon_sym_EQ] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_DASH_GT] = ACTIONS(4278), - [sym_label] = ACTIONS(4278), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_while] = ACTIONS(4276), - [anon_sym_DOT_DOT] = ACTIONS(4278), - [anon_sym_QMARK_COLON] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ] = ACTIONS(4276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_as_QMARK] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG_BANG] = ACTIONS(4278), - [anon_sym_suspend] = ACTIONS(4276), - [anon_sym_sealed] = ACTIONS(4276), - [anon_sym_annotation] = ACTIONS(4276), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_override] = ACTIONS(4276), - [anon_sym_lateinit] = ACTIONS(4276), - [anon_sym_public] = ACTIONS(4276), - [anon_sym_private] = ACTIONS(4276), - [anon_sym_internal] = ACTIONS(4276), - [anon_sym_protected] = ACTIONS(4276), - [anon_sym_tailrec] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [anon_sym_infix] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym_external] = ACTIONS(4276), - [sym_property_modifier] = ACTIONS(4276), - [anon_sym_abstract] = ACTIONS(4276), - [anon_sym_final] = ACTIONS(4276), - [anon_sym_open] = ACTIONS(4276), - [anon_sym_vararg] = ACTIONS(4276), - [anon_sym_noinline] = ACTIONS(4276), - [anon_sym_crossinline] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4278), - [sym_safe_nav] = ACTIONS(4278), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_RBRACK] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_RPAREN] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_DASH_GT] = ACTIONS(4569), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_while] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), [sym_multiline_comment] = ACTIONS(3), }, [3305] = { - [sym_type_arguments] = STATE(6571), - [sym__alpha_identifier] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4183), - [anon_sym_COLON] = ACTIONS(6773), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_RBRACE] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_COMMA] = ACTIONS(4183), - [anon_sym_by] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_where] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_get] = ACTIONS(4181), - [anon_sym_set] = ACTIONS(4181), - [sym__quest] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_DOT_DOT] = ACTIONS(4183), - [anon_sym_QMARK_COLON] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4181), - [anon_sym_COLON_COLON] = ACTIONS(4183), - [anon_sym_PLUS_EQ] = ACTIONS(4183), - [anon_sym_DASH_EQ] = ACTIONS(4183), - [anon_sym_STAR_EQ] = ACTIONS(4183), - [anon_sym_SLASH_EQ] = ACTIONS(4183), - [anon_sym_PERCENT_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4183), - [anon_sym_LT_EQ] = ACTIONS(4183), - [anon_sym_GT_EQ] = ACTIONS(4183), - [anon_sym_BANGin] = ACTIONS(4183), - [anon_sym_is] = ACTIONS(4181), - [anon_sym_BANGis] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4183), - [anon_sym_PLUS_PLUS] = ACTIONS(4183), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4183), - [anon_sym_suspend] = ACTIONS(4181), - [anon_sym_sealed] = ACTIONS(4181), - [anon_sym_annotation] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4181), - [anon_sym_inner] = ACTIONS(4181), - [anon_sym_value] = ACTIONS(4181), - [anon_sym_override] = ACTIONS(4181), - [anon_sym_lateinit] = ACTIONS(4181), - [anon_sym_public] = ACTIONS(4181), - [anon_sym_private] = ACTIONS(4181), - [anon_sym_internal] = ACTIONS(4181), - [anon_sym_protected] = ACTIONS(4181), - [anon_sym_tailrec] = ACTIONS(4181), - [anon_sym_operator] = ACTIONS(4181), - [anon_sym_infix] = ACTIONS(4181), - [anon_sym_inline] = ACTIONS(4181), - [anon_sym_external] = ACTIONS(4181), - [sym_property_modifier] = ACTIONS(4181), - [anon_sym_abstract] = ACTIONS(4181), - [anon_sym_final] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4181), - [anon_sym_vararg] = ACTIONS(4181), - [anon_sym_noinline] = ACTIONS(4181), - [anon_sym_crossinline] = ACTIONS(4181), - [anon_sym_expect] = ACTIONS(4181), - [anon_sym_actual] = ACTIONS(4181), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4183), - [sym__automatic_semicolon] = ACTIONS(4183), - [sym_safe_nav] = ACTIONS(4183), + [sym__alpha_identifier] = ACTIONS(4634), + [anon_sym_AT] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_RBRACK] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4634), + [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_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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, [3306] = { - [aux_sym_user_type_repeat1] = STATE(3293), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(6775), - [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_by] = ACTIONS(4162), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_GT] = ACTIONS(4162), - [anon_sym_where] = ACTIONS(4162), - [anon_sym_SEMI] = ACTIONS(4164), - [anon_sym_get] = ACTIONS(4162), - [anon_sym_set] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4162), - [sym__quest] = 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_value] = 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_enum_class_body] = STATE(3464), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, [3307] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3090), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(6723), - [anon_sym_PIPE_PIPE] = ACTIONS(6725), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6728), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [3308] = { - [sym__alpha_identifier] = ACTIONS(4658), - [anon_sym_AT] = ACTIONS(4660), - [anon_sym_COLON] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4660), - [anon_sym_RBRACK] = ACTIONS(4660), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_as] = ACTIONS(4658), - [anon_sym_EQ] = ACTIONS(4658), - [anon_sym_LBRACE] = ACTIONS(4660), - [anon_sym_RBRACE] = ACTIONS(4660), - [anon_sym_LPAREN] = ACTIONS(4660), - [anon_sym_COMMA] = ACTIONS(4660), - [anon_sym_RPAREN] = ACTIONS(4660), - [anon_sym_LT] = ACTIONS(4658), - [anon_sym_GT] = ACTIONS(4658), - [anon_sym_where] = ACTIONS(4658), - [anon_sym_SEMI] = ACTIONS(4660), - [anon_sym_get] = ACTIONS(4658), - [anon_sym_set] = ACTIONS(4658), - [anon_sym_STAR] = ACTIONS(4658), - [anon_sym_DASH_GT] = ACTIONS(4660), - [sym_label] = ACTIONS(4660), - [anon_sym_in] = ACTIONS(4658), - [anon_sym_while] = ACTIONS(4658), - [anon_sym_DOT_DOT] = ACTIONS(4660), - [anon_sym_QMARK_COLON] = ACTIONS(4660), - [anon_sym_AMP_AMP] = ACTIONS(4660), - [anon_sym_PIPE_PIPE] = ACTIONS(4660), - [anon_sym_else] = ACTIONS(4658), - [anon_sym_COLON_COLON] = ACTIONS(4660), - [anon_sym_PLUS_EQ] = ACTIONS(4660), - [anon_sym_DASH_EQ] = ACTIONS(4660), - [anon_sym_STAR_EQ] = ACTIONS(4660), - [anon_sym_SLASH_EQ] = ACTIONS(4660), - [anon_sym_PERCENT_EQ] = ACTIONS(4660), - [anon_sym_BANG_EQ] = ACTIONS(4658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4660), - [anon_sym_EQ_EQ] = ACTIONS(4658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4660), - [anon_sym_LT_EQ] = ACTIONS(4660), - [anon_sym_GT_EQ] = ACTIONS(4660), - [anon_sym_BANGin] = ACTIONS(4660), - [anon_sym_is] = ACTIONS(4658), - [anon_sym_BANGis] = ACTIONS(4660), - [anon_sym_PLUS] = ACTIONS(4658), - [anon_sym_DASH] = ACTIONS(4658), - [anon_sym_SLASH] = ACTIONS(4658), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_as_QMARK] = ACTIONS(4660), - [anon_sym_PLUS_PLUS] = ACTIONS(4660), - [anon_sym_DASH_DASH] = ACTIONS(4660), - [anon_sym_BANG_BANG] = ACTIONS(4660), - [anon_sym_suspend] = ACTIONS(4658), - [anon_sym_sealed] = ACTIONS(4658), - [anon_sym_annotation] = ACTIONS(4658), - [anon_sym_data] = ACTIONS(4658), - [anon_sym_inner] = ACTIONS(4658), - [anon_sym_value] = ACTIONS(4658), - [anon_sym_override] = ACTIONS(4658), - [anon_sym_lateinit] = ACTIONS(4658), - [anon_sym_public] = ACTIONS(4658), - [anon_sym_private] = ACTIONS(4658), - [anon_sym_internal] = ACTIONS(4658), - [anon_sym_protected] = ACTIONS(4658), - [anon_sym_tailrec] = ACTIONS(4658), - [anon_sym_operator] = ACTIONS(4658), - [anon_sym_infix] = ACTIONS(4658), - [anon_sym_inline] = ACTIONS(4658), - [anon_sym_external] = ACTIONS(4658), - [sym_property_modifier] = ACTIONS(4658), - [anon_sym_abstract] = ACTIONS(4658), - [anon_sym_final] = ACTIONS(4658), - [anon_sym_open] = ACTIONS(4658), - [anon_sym_vararg] = ACTIONS(4658), - [anon_sym_noinline] = ACTIONS(4658), - [anon_sym_crossinline] = ACTIONS(4658), - [anon_sym_expect] = ACTIONS(4658), - [anon_sym_actual] = ACTIONS(4658), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4660), - [sym_safe_nav] = ACTIONS(4660), + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_RBRACK] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4642), + [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_by] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = 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_value] = 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), }, [3309] = { - [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_DOT] = ACTIONS(4597), - [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_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_value] = 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), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6732), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [3310] = { - [sym__alpha_identifier] = ACTIONS(4605), - [anon_sym_AT] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_RBRACK] = ACTIONS(4607), - [anon_sym_DOT] = ACTIONS(4605), - [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_by] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(4605), - [anon_sym_GT] = ACTIONS(4605), - [anon_sym_where] = 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_value] = 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__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_RBRACK] = ACTIONS(4527), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_RPAREN] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_DASH_GT] = ACTIONS(4527), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4525), + [anon_sym_while] = ACTIONS(4525), + [anon_sym_DOT_DOT] = ACTIONS(4527), + [anon_sym_QMARK_COLON] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4525), + [anon_sym_COLON_COLON] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_BANGin] = ACTIONS(4527), + [anon_sym_is] = ACTIONS(4525), + [anon_sym_BANGis] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_as_QMARK] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_suspend] = ACTIONS(4525), + [anon_sym_sealed] = ACTIONS(4525), + [anon_sym_annotation] = ACTIONS(4525), + [anon_sym_data] = ACTIONS(4525), + [anon_sym_inner] = ACTIONS(4525), + [anon_sym_value] = ACTIONS(4525), + [anon_sym_override] = ACTIONS(4525), + [anon_sym_lateinit] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_internal] = ACTIONS(4525), + [anon_sym_protected] = ACTIONS(4525), + [anon_sym_tailrec] = ACTIONS(4525), + [anon_sym_operator] = ACTIONS(4525), + [anon_sym_infix] = ACTIONS(4525), + [anon_sym_inline] = ACTIONS(4525), + [anon_sym_external] = ACTIONS(4525), + [sym_property_modifier] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_open] = ACTIONS(4525), + [anon_sym_vararg] = ACTIONS(4525), + [anon_sym_noinline] = ACTIONS(4525), + [anon_sym_crossinline] = ACTIONS(4525), + [anon_sym_expect] = ACTIONS(4525), + [anon_sym_actual] = ACTIONS(4525), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), [sym_multiline_comment] = ACTIONS(3), }, [3311] = { - [sym__alpha_identifier] = ACTIONS(4720), - [anon_sym_AT] = ACTIONS(4722), - [anon_sym_COLON] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4722), - [anon_sym_RBRACK] = ACTIONS(4722), - [anon_sym_DOT] = ACTIONS(4720), - [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_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_value] = 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_class_body] = STATE(3549), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_DASH_GT] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, [3312] = { - [sym_class_body] = STATE(3491), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_RBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_RPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_DASH_GT] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - }, - [3313] = { - [sym_enum_class_body] = STATE(3510), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_RBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_DASH_GT] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - }, - [3314] = { [sym__alpha_identifier] = ACTIONS(4652), [anon_sym_AT] = ACTIONS(4654), - [anon_sym_COLON] = ACTIONS(4652), [anon_sym_LBRACK] = ACTIONS(4654), [anon_sym_RBRACK] = ACTIONS(4654), [anon_sym_DOT] = ACTIONS(4652), @@ -385217,6 +385317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(4654), [anon_sym_COMMA] = ACTIONS(4654), [anon_sym_RPAREN] = ACTIONS(4654), + [anon_sym_by] = ACTIONS(4652), [anon_sym_LT] = ACTIONS(4652), [anon_sym_GT] = ACTIONS(4652), [anon_sym_where] = ACTIONS(4652), @@ -385287,2781 +385388,3705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, + [3313] = { + [sym__alpha_identifier] = ACTIONS(4656), + [anon_sym_AT] = ACTIONS(4659), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_RBRACK] = ACTIONS(4659), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_as] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_RPAREN] = ACTIONS(4659), + [anon_sym_by] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_where] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4659), + [anon_sym_get] = ACTIONS(4656), + [anon_sym_set] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4656), + [anon_sym_DASH_GT] = ACTIONS(4659), + [sym_label] = ACTIONS(4659), + [anon_sym_in] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4659), + [anon_sym_QMARK_COLON] = ACTIONS(4659), + [anon_sym_AMP_AMP] = ACTIONS(4659), + [anon_sym_PIPE_PIPE] = ACTIONS(4659), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_COLON_COLON] = ACTIONS(4659), + [anon_sym_PLUS_EQ] = ACTIONS(4659), + [anon_sym_DASH_EQ] = ACTIONS(4659), + [anon_sym_STAR_EQ] = ACTIONS(4659), + [anon_sym_SLASH_EQ] = ACTIONS(4659), + [anon_sym_PERCENT_EQ] = ACTIONS(4659), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), + [anon_sym_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), + [anon_sym_LT_EQ] = ACTIONS(4659), + [anon_sym_GT_EQ] = ACTIONS(4659), + [anon_sym_BANGin] = ACTIONS(4659), + [anon_sym_is] = ACTIONS(4656), + [anon_sym_BANGis] = ACTIONS(4659), + [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(4659), + [anon_sym_PLUS_PLUS] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4659), + [anon_sym_BANG_BANG] = ACTIONS(4659), + [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_value] = 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(4659), + [sym_safe_nav] = ACTIONS(4659), + [sym_multiline_comment] = ACTIONS(3), + }, + [3314] = { + [sym__alpha_identifier] = ACTIONS(4583), + [anon_sym_AT] = ACTIONS(4585), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_RBRACK] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_RBRACE] = ACTIONS(4585), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_RPAREN] = ACTIONS(4585), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_where] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4585), + [anon_sym_get] = ACTIONS(4583), + [anon_sym_set] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [anon_sym_DASH_GT] = ACTIONS(4585), + [sym_label] = ACTIONS(4585), + [anon_sym_in] = ACTIONS(4583), + [anon_sym_while] = ACTIONS(4583), + [anon_sym_DOT_DOT] = ACTIONS(4585), + [anon_sym_QMARK_COLON] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_else] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_BANGin] = ACTIONS(4585), + [anon_sym_is] = ACTIONS(4583), + [anon_sym_BANGis] = ACTIONS(4585), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_as_QMARK] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_BANG_BANG] = ACTIONS(4585), + [anon_sym_suspend] = ACTIONS(4583), + [anon_sym_sealed] = ACTIONS(4583), + [anon_sym_annotation] = ACTIONS(4583), + [anon_sym_data] = ACTIONS(4583), + [anon_sym_inner] = ACTIONS(4583), + [anon_sym_value] = ACTIONS(4583), + [anon_sym_override] = ACTIONS(4583), + [anon_sym_lateinit] = ACTIONS(4583), + [anon_sym_public] = ACTIONS(4583), + [anon_sym_private] = ACTIONS(4583), + [anon_sym_internal] = ACTIONS(4583), + [anon_sym_protected] = ACTIONS(4583), + [anon_sym_tailrec] = ACTIONS(4583), + [anon_sym_operator] = ACTIONS(4583), + [anon_sym_infix] = ACTIONS(4583), + [anon_sym_inline] = ACTIONS(4583), + [anon_sym_external] = ACTIONS(4583), + [sym_property_modifier] = ACTIONS(4583), + [anon_sym_abstract] = ACTIONS(4583), + [anon_sym_final] = ACTIONS(4583), + [anon_sym_open] = ACTIONS(4583), + [anon_sym_vararg] = ACTIONS(4583), + [anon_sym_noinline] = ACTIONS(4583), + [anon_sym_crossinline] = ACTIONS(4583), + [anon_sym_expect] = ACTIONS(4583), + [anon_sym_actual] = ACTIONS(4583), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4585), + [sym_safe_nav] = ACTIONS(4585), + [sym_multiline_comment] = ACTIONS(3), + }, [3315] = { - [sym__alpha_identifier] = ACTIONS(4609), - [anon_sym_AT] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4611), - [anon_sym_RBRACK] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_as] = ACTIONS(4609), - [anon_sym_EQ] = ACTIONS(4609), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_RBRACE] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_RPAREN] = ACTIONS(4611), - [anon_sym_by] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_where] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_get] = ACTIONS(4609), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [anon_sym_DASH_GT] = ACTIONS(4611), - [sym_label] = ACTIONS(4611), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_while] = ACTIONS(4609), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4611), - [anon_sym_AMP_AMP] = ACTIONS(4611), - [anon_sym_PIPE_PIPE] = ACTIONS(4611), - [anon_sym_else] = ACTIONS(4609), - [anon_sym_COLON_COLON] = ACTIONS(4611), - [anon_sym_PLUS_EQ] = ACTIONS(4611), - [anon_sym_DASH_EQ] = ACTIONS(4611), - [anon_sym_STAR_EQ] = ACTIONS(4611), - [anon_sym_SLASH_EQ] = ACTIONS(4611), - [anon_sym_PERCENT_EQ] = ACTIONS(4611), - [anon_sym_BANG_EQ] = ACTIONS(4609), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4611), - [anon_sym_EQ_EQ] = ACTIONS(4609), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4611), - [anon_sym_LT_EQ] = ACTIONS(4611), - [anon_sym_GT_EQ] = ACTIONS(4611), - [anon_sym_BANGin] = ACTIONS(4611), - [anon_sym_is] = ACTIONS(4609), - [anon_sym_BANGis] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_PERCENT] = ACTIONS(4609), - [anon_sym_as_QMARK] = ACTIONS(4611), - [anon_sym_PLUS_PLUS] = ACTIONS(4611), - [anon_sym_DASH_DASH] = ACTIONS(4611), - [anon_sym_BANG_BANG] = ACTIONS(4611), - [anon_sym_suspend] = ACTIONS(4609), - [anon_sym_sealed] = ACTIONS(4609), - [anon_sym_annotation] = ACTIONS(4609), - [anon_sym_data] = ACTIONS(4609), - [anon_sym_inner] = ACTIONS(4609), - [anon_sym_value] = ACTIONS(4609), - [anon_sym_override] = ACTIONS(4609), - [anon_sym_lateinit] = ACTIONS(4609), - [anon_sym_public] = ACTIONS(4609), - [anon_sym_private] = ACTIONS(4609), - [anon_sym_internal] = ACTIONS(4609), - [anon_sym_protected] = ACTIONS(4609), - [anon_sym_tailrec] = ACTIONS(4609), - [anon_sym_operator] = ACTIONS(4609), - [anon_sym_infix] = ACTIONS(4609), - [anon_sym_inline] = ACTIONS(4609), - [anon_sym_external] = ACTIONS(4609), - [sym_property_modifier] = ACTIONS(4609), - [anon_sym_abstract] = ACTIONS(4609), - [anon_sym_final] = ACTIONS(4609), - [anon_sym_open] = ACTIONS(4609), - [anon_sym_vararg] = ACTIONS(4609), - [anon_sym_noinline] = ACTIONS(4609), - [anon_sym_crossinline] = ACTIONS(4609), - [anon_sym_expect] = ACTIONS(4609), - [anon_sym_actual] = ACTIONS(4609), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4611), - [sym_safe_nav] = ACTIONS(4611), + [sym__alpha_identifier] = ACTIONS(4509), + [anon_sym_AT] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4511), + [anon_sym_RBRACK] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(4509), + [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_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_value] = 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), }, [3316] = { - [sym_class_body] = STATE(3562), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__alpha_identifier] = ACTIONS(4638), + [anon_sym_AT] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_RBRACK] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4638), + [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_by] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_where] = 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_value] = 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), + [sym__backtick_identifier] = ACTIONS(4640), + [sym_safe_nav] = ACTIONS(4640), [sym_multiline_comment] = ACTIONS(3), }, [3317] = { - [sym__alpha_identifier] = ACTIONS(4617), - [anon_sym_AT] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4619), - [anon_sym_RBRACK] = ACTIONS(4619), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_as] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(4619), - [anon_sym_RBRACE] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_COMMA] = ACTIONS(4619), - [anon_sym_RPAREN] = ACTIONS(4619), - [anon_sym_by] = ACTIONS(4617), - [anon_sym_LT] = ACTIONS(4617), - [anon_sym_GT] = ACTIONS(4617), - [anon_sym_where] = ACTIONS(4617), - [anon_sym_SEMI] = ACTIONS(4619), - [anon_sym_get] = ACTIONS(4617), - [anon_sym_set] = ACTIONS(4617), - [anon_sym_STAR] = ACTIONS(4617), - [anon_sym_DASH_GT] = ACTIONS(4619), - [sym_label] = ACTIONS(4619), - [anon_sym_in] = ACTIONS(4617), - [anon_sym_while] = ACTIONS(4617), - [anon_sym_DOT_DOT] = ACTIONS(4619), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4619), - [anon_sym_PIPE_PIPE] = ACTIONS(4619), - [anon_sym_else] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(4619), - [anon_sym_PLUS_EQ] = ACTIONS(4619), - [anon_sym_DASH_EQ] = ACTIONS(4619), - [anon_sym_STAR_EQ] = ACTIONS(4619), - [anon_sym_SLASH_EQ] = ACTIONS(4619), - [anon_sym_PERCENT_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ] = ACTIONS(4617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ] = ACTIONS(4617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4619), - [anon_sym_LT_EQ] = ACTIONS(4619), - [anon_sym_GT_EQ] = ACTIONS(4619), - [anon_sym_BANGin] = ACTIONS(4619), - [anon_sym_is] = ACTIONS(4617), - [anon_sym_BANGis] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4617), - [anon_sym_SLASH] = ACTIONS(4617), - [anon_sym_PERCENT] = ACTIONS(4617), - [anon_sym_as_QMARK] = ACTIONS(4619), - [anon_sym_PLUS_PLUS] = ACTIONS(4619), - [anon_sym_DASH_DASH] = ACTIONS(4619), - [anon_sym_BANG_BANG] = ACTIONS(4619), - [anon_sym_suspend] = ACTIONS(4617), - [anon_sym_sealed] = ACTIONS(4617), - [anon_sym_annotation] = ACTIONS(4617), - [anon_sym_data] = ACTIONS(4617), - [anon_sym_inner] = ACTIONS(4617), - [anon_sym_value] = ACTIONS(4617), - [anon_sym_override] = ACTIONS(4617), - [anon_sym_lateinit] = ACTIONS(4617), - [anon_sym_public] = ACTIONS(4617), - [anon_sym_private] = ACTIONS(4617), - [anon_sym_internal] = ACTIONS(4617), - [anon_sym_protected] = ACTIONS(4617), - [anon_sym_tailrec] = ACTIONS(4617), - [anon_sym_operator] = ACTIONS(4617), - [anon_sym_infix] = ACTIONS(4617), - [anon_sym_inline] = ACTIONS(4617), - [anon_sym_external] = ACTIONS(4617), - [sym_property_modifier] = ACTIONS(4617), - [anon_sym_abstract] = ACTIONS(4617), - [anon_sym_final] = ACTIONS(4617), - [anon_sym_open] = ACTIONS(4617), - [anon_sym_vararg] = ACTIONS(4617), - [anon_sym_noinline] = ACTIONS(4617), - [anon_sym_crossinline] = ACTIONS(4617), - [anon_sym_expect] = ACTIONS(4617), - [anon_sym_actual] = ACTIONS(4617), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4619), - [sym_safe_nav] = ACTIONS(4619), + [sym_type_constraints] = STATE(3733), + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6736), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5448), + [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_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_value] = 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), }, [3318] = { - [sym_class_body] = STATE(3530), - [sym__alpha_identifier] = ACTIONS(4668), - [anon_sym_AT] = ACTIONS(4670), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_RBRACK] = ACTIONS(4670), - [anon_sym_DOT] = ACTIONS(4668), - [anon_sym_as] = ACTIONS(4668), - [anon_sym_EQ] = ACTIONS(4668), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4670), - [anon_sym_LPAREN] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4670), - [anon_sym_RPAREN] = ACTIONS(4670), - [anon_sym_LT] = ACTIONS(4668), - [anon_sym_GT] = ACTIONS(4668), - [anon_sym_where] = 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_value] = 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__alpha_identifier] = ACTIONS(4499), + [anon_sym_AT] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4499), + [anon_sym_LBRACK] = ACTIONS(4501), + [anon_sym_RBRACK] = ACTIONS(4501), + [anon_sym_DOT] = ACTIONS(4499), + [anon_sym_as] = ACTIONS(4499), + [anon_sym_EQ] = ACTIONS(4499), + [anon_sym_LBRACE] = ACTIONS(4501), + [anon_sym_RBRACE] = ACTIONS(4501), + [anon_sym_LPAREN] = ACTIONS(4501), + [anon_sym_COMMA] = ACTIONS(4501), + [anon_sym_RPAREN] = ACTIONS(4501), + [anon_sym_LT] = ACTIONS(4499), + [anon_sym_GT] = ACTIONS(4499), + [anon_sym_where] = ACTIONS(4499), + [anon_sym_SEMI] = ACTIONS(4501), + [anon_sym_get] = ACTIONS(4499), + [anon_sym_set] = ACTIONS(4499), + [anon_sym_STAR] = ACTIONS(4499), + [anon_sym_DASH_GT] = ACTIONS(4501), + [sym_label] = ACTIONS(4501), + [anon_sym_in] = ACTIONS(4499), + [anon_sym_while] = ACTIONS(4499), + [anon_sym_DOT_DOT] = ACTIONS(4501), + [anon_sym_QMARK_COLON] = ACTIONS(4501), + [anon_sym_AMP_AMP] = ACTIONS(4501), + [anon_sym_PIPE_PIPE] = ACTIONS(4501), + [anon_sym_else] = ACTIONS(4499), + [anon_sym_COLON_COLON] = ACTIONS(4501), + [anon_sym_PLUS_EQ] = ACTIONS(4501), + [anon_sym_DASH_EQ] = ACTIONS(4501), + [anon_sym_STAR_EQ] = ACTIONS(4501), + [anon_sym_SLASH_EQ] = ACTIONS(4501), + [anon_sym_PERCENT_EQ] = ACTIONS(4501), + [anon_sym_BANG_EQ] = ACTIONS(4499), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4501), + [anon_sym_EQ_EQ] = ACTIONS(4499), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4501), + [anon_sym_LT_EQ] = ACTIONS(4501), + [anon_sym_GT_EQ] = ACTIONS(4501), + [anon_sym_BANGin] = ACTIONS(4501), + [anon_sym_is] = ACTIONS(4499), + [anon_sym_BANGis] = ACTIONS(4501), + [anon_sym_PLUS] = ACTIONS(4499), + [anon_sym_DASH] = ACTIONS(4499), + [anon_sym_SLASH] = ACTIONS(4499), + [anon_sym_PERCENT] = ACTIONS(4499), + [anon_sym_as_QMARK] = ACTIONS(4501), + [anon_sym_PLUS_PLUS] = ACTIONS(4501), + [anon_sym_DASH_DASH] = ACTIONS(4501), + [anon_sym_BANG_BANG] = ACTIONS(4501), + [anon_sym_suspend] = ACTIONS(4499), + [anon_sym_sealed] = ACTIONS(4499), + [anon_sym_annotation] = ACTIONS(4499), + [anon_sym_data] = ACTIONS(4499), + [anon_sym_inner] = ACTIONS(4499), + [anon_sym_value] = ACTIONS(4499), + [anon_sym_override] = ACTIONS(4499), + [anon_sym_lateinit] = ACTIONS(4499), + [anon_sym_public] = ACTIONS(4499), + [anon_sym_private] = ACTIONS(4499), + [anon_sym_internal] = ACTIONS(4499), + [anon_sym_protected] = ACTIONS(4499), + [anon_sym_tailrec] = ACTIONS(4499), + [anon_sym_operator] = ACTIONS(4499), + [anon_sym_infix] = ACTIONS(4499), + [anon_sym_inline] = ACTIONS(4499), + [anon_sym_external] = ACTIONS(4499), + [sym_property_modifier] = ACTIONS(4499), + [anon_sym_abstract] = ACTIONS(4499), + [anon_sym_final] = ACTIONS(4499), + [anon_sym_open] = ACTIONS(4499), + [anon_sym_vararg] = ACTIONS(4499), + [anon_sym_noinline] = ACTIONS(4499), + [anon_sym_crossinline] = ACTIONS(4499), + [anon_sym_expect] = ACTIONS(4499), + [anon_sym_actual] = ACTIONS(4499), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4501), + [sym_safe_nav] = ACTIONS(4501), [sym_multiline_comment] = ACTIONS(3), }, [3319] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3319), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_RBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(6778), - [anon_sym_RPAREN] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_DASH_GT] = ACTIONS(4639), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_while] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), + [sym__alpha_identifier] = ACTIONS(4666), + [anon_sym_AT] = ACTIONS(4668), + [anon_sym_LBRACK] = ACTIONS(4668), + [anon_sym_RBRACK] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4666), + [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_by] = ACTIONS(4666), + [anon_sym_LT] = ACTIONS(4666), + [anon_sym_GT] = ACTIONS(4666), + [anon_sym_where] = 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_value] = 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), }, [3320] = { - [sym_type_constraints] = STATE(3769), - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(6781), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_where] = ACTIONS(5512), - [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_value] = 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__alpha_identifier] = ACTIONS(4495), + [anon_sym_AT] = ACTIONS(4497), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_RBRACK] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4497), + [anon_sym_RBRACE] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4497), + [anon_sym_COMMA] = ACTIONS(4497), + [anon_sym_RPAREN] = ACTIONS(4497), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_where] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4497), + [anon_sym_get] = ACTIONS(4495), + [anon_sym_set] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_DASH_GT] = ACTIONS(4497), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4495), + [anon_sym_while] = ACTIONS(4495), + [anon_sym_DOT_DOT] = ACTIONS(4497), + [anon_sym_QMARK_COLON] = ACTIONS(4497), + [anon_sym_AMP_AMP] = ACTIONS(4497), + [anon_sym_PIPE_PIPE] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4495), + [anon_sym_COLON_COLON] = ACTIONS(4497), + [anon_sym_PLUS_EQ] = ACTIONS(4497), + [anon_sym_DASH_EQ] = ACTIONS(4497), + [anon_sym_STAR_EQ] = ACTIONS(4497), + [anon_sym_SLASH_EQ] = ACTIONS(4497), + [anon_sym_PERCENT_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), + [anon_sym_LT_EQ] = ACTIONS(4497), + [anon_sym_GT_EQ] = ACTIONS(4497), + [anon_sym_BANGin] = ACTIONS(4497), + [anon_sym_is] = ACTIONS(4495), + [anon_sym_BANGis] = ACTIONS(4497), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_as_QMARK] = ACTIONS(4497), + [anon_sym_PLUS_PLUS] = ACTIONS(4497), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4497), + [anon_sym_suspend] = ACTIONS(4495), + [anon_sym_sealed] = ACTIONS(4495), + [anon_sym_annotation] = ACTIONS(4495), + [anon_sym_data] = ACTIONS(4495), + [anon_sym_inner] = ACTIONS(4495), + [anon_sym_value] = ACTIONS(4495), + [anon_sym_override] = ACTIONS(4495), + [anon_sym_lateinit] = ACTIONS(4495), + [anon_sym_public] = ACTIONS(4495), + [anon_sym_private] = ACTIONS(4495), + [anon_sym_internal] = ACTIONS(4495), + [anon_sym_protected] = ACTIONS(4495), + [anon_sym_tailrec] = ACTIONS(4495), + [anon_sym_operator] = ACTIONS(4495), + [anon_sym_infix] = ACTIONS(4495), + [anon_sym_inline] = ACTIONS(4495), + [anon_sym_external] = ACTIONS(4495), + [sym_property_modifier] = ACTIONS(4495), + [anon_sym_abstract] = ACTIONS(4495), + [anon_sym_final] = ACTIONS(4495), + [anon_sym_open] = ACTIONS(4495), + [anon_sym_vararg] = ACTIONS(4495), + [anon_sym_noinline] = ACTIONS(4495), + [anon_sym_crossinline] = ACTIONS(4495), + [anon_sym_expect] = ACTIONS(4495), + [anon_sym_actual] = ACTIONS(4495), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4497), + [sym_safe_nav] = ACTIONS(4497), [sym_multiline_comment] = ACTIONS(3), }, [3321] = { - [sym_type_constraints] = STATE(3768), - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(6783), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_as] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_by] = ACTIONS(4093), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_GT] = ACTIONS(4093), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_AMP] = ACTIONS(4093), + [sym__quest] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [sym_label] = ACTIONS(4095), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_DOT_DOT] = ACTIONS(4095), + [anon_sym_QMARK_COLON] = ACTIONS(4095), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_PIPE_PIPE] = ACTIONS(4095), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ] = ACTIONS(4093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_SLASH] = ACTIONS(4093), + [anon_sym_PERCENT] = ACTIONS(4093), + [anon_sym_as_QMARK] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG_BANG] = ACTIONS(4095), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4095), + [sym__automatic_semicolon] = ACTIONS(4095), + [sym_safe_nav] = ACTIONS(4095), [sym_multiline_comment] = ACTIONS(3), }, [3322] = { - [sym_type_constraints] = STATE(3765), - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(6785), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3117), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3323] = { - [sym__alpha_identifier] = ACTIONS(4613), - [anon_sym_AT] = ACTIONS(4615), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_LBRACK] = ACTIONS(4615), - [anon_sym_RBRACK] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_as] = ACTIONS(4613), - [anon_sym_EQ] = ACTIONS(4613), - [anon_sym_LBRACE] = ACTIONS(4615), - [anon_sym_RBRACE] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_COMMA] = ACTIONS(4615), - [anon_sym_RPAREN] = ACTIONS(4615), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_where] = ACTIONS(4613), - [anon_sym_SEMI] = ACTIONS(4615), - [anon_sym_get] = ACTIONS(4613), - [anon_sym_set] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [anon_sym_DASH_GT] = ACTIONS(4615), - [sym_label] = ACTIONS(4615), - [anon_sym_in] = ACTIONS(4613), - [anon_sym_while] = ACTIONS(4613), - [anon_sym_DOT_DOT] = ACTIONS(4615), - [anon_sym_QMARK_COLON] = ACTIONS(4615), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4615), - [anon_sym_else] = ACTIONS(4613), - [anon_sym_COLON_COLON] = ACTIONS(4615), - [anon_sym_PLUS_EQ] = ACTIONS(4615), - [anon_sym_DASH_EQ] = ACTIONS(4615), - [anon_sym_STAR_EQ] = ACTIONS(4615), - [anon_sym_SLASH_EQ] = ACTIONS(4615), - [anon_sym_PERCENT_EQ] = ACTIONS(4615), - [anon_sym_BANG_EQ] = ACTIONS(4613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4615), - [anon_sym_EQ_EQ] = ACTIONS(4613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4615), - [anon_sym_LT_EQ] = ACTIONS(4615), - [anon_sym_GT_EQ] = ACTIONS(4615), - [anon_sym_BANGin] = ACTIONS(4615), - [anon_sym_is] = ACTIONS(4613), - [anon_sym_BANGis] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_PERCENT] = ACTIONS(4613), - [anon_sym_as_QMARK] = ACTIONS(4615), - [anon_sym_PLUS_PLUS] = ACTIONS(4615), - [anon_sym_DASH_DASH] = ACTIONS(4615), - [anon_sym_BANG_BANG] = ACTIONS(4615), - [anon_sym_suspend] = ACTIONS(4613), - [anon_sym_sealed] = ACTIONS(4613), - [anon_sym_annotation] = ACTIONS(4613), - [anon_sym_data] = ACTIONS(4613), - [anon_sym_inner] = ACTIONS(4613), - [anon_sym_value] = ACTIONS(4613), - [anon_sym_override] = ACTIONS(4613), - [anon_sym_lateinit] = ACTIONS(4613), - [anon_sym_public] = ACTIONS(4613), - [anon_sym_private] = ACTIONS(4613), - [anon_sym_internal] = ACTIONS(4613), - [anon_sym_protected] = ACTIONS(4613), - [anon_sym_tailrec] = ACTIONS(4613), - [anon_sym_operator] = ACTIONS(4613), - [anon_sym_infix] = ACTIONS(4613), - [anon_sym_inline] = ACTIONS(4613), - [anon_sym_external] = ACTIONS(4613), - [sym_property_modifier] = ACTIONS(4613), - [anon_sym_abstract] = ACTIONS(4613), - [anon_sym_final] = ACTIONS(4613), - [anon_sym_open] = ACTIONS(4613), - [anon_sym_vararg] = ACTIONS(4613), - [anon_sym_noinline] = ACTIONS(4613), - [anon_sym_crossinline] = ACTIONS(4613), - [anon_sym_expect] = ACTIONS(4613), - [anon_sym_actual] = ACTIONS(4613), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4615), - [sym_safe_nav] = ACTIONS(4615), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_RPAREN] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3074), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(6670), + [anon_sym_PIPE_PIPE] = ACTIONS(6672), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3074), + [anon_sym_DASH_EQ] = ACTIONS(3074), + [anon_sym_STAR_EQ] = ACTIONS(3074), + [anon_sym_SLASH_EQ] = ACTIONS(3074), + [anon_sym_PERCENT_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3324] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3191), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(6723), - [anon_sym_PIPE_PIPE] = ACTIONS(6725), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_enum_class_body] = STATE(3430), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, [3325] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_by] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3990), - [sym__quest] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), + [sym_class_body] = STATE(3413), + [sym__alpha_identifier] = ACTIONS(4591), + [anon_sym_AT] = ACTIONS(4593), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_RBRACK] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4593), + [anon_sym_RPAREN] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_where] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4593), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4591), + [anon_sym_STAR] = ACTIONS(4591), + [anon_sym_DASH_GT] = ACTIONS(4593), + [sym_label] = ACTIONS(4593), + [anon_sym_in] = ACTIONS(4591), + [anon_sym_while] = ACTIONS(4591), + [anon_sym_DOT_DOT] = ACTIONS(4593), + [anon_sym_QMARK_COLON] = ACTIONS(4593), + [anon_sym_AMP_AMP] = ACTIONS(4593), + [anon_sym_PIPE_PIPE] = ACTIONS(4593), + [anon_sym_else] = ACTIONS(4591), + [anon_sym_COLON_COLON] = ACTIONS(4593), + [anon_sym_PLUS_EQ] = ACTIONS(4593), + [anon_sym_DASH_EQ] = ACTIONS(4593), + [anon_sym_STAR_EQ] = ACTIONS(4593), + [anon_sym_SLASH_EQ] = ACTIONS(4593), + [anon_sym_PERCENT_EQ] = ACTIONS(4593), + [anon_sym_BANG_EQ] = ACTIONS(4591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), + [anon_sym_EQ_EQ] = ACTIONS(4591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4593), + [anon_sym_BANGin] = ACTIONS(4593), + [anon_sym_is] = ACTIONS(4591), + [anon_sym_BANGis] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_as_QMARK] = ACTIONS(4593), + [anon_sym_PLUS_PLUS] = ACTIONS(4593), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_BANG_BANG] = ACTIONS(4593), + [anon_sym_suspend] = ACTIONS(4591), + [anon_sym_sealed] = ACTIONS(4591), + [anon_sym_annotation] = ACTIONS(4591), + [anon_sym_data] = ACTIONS(4591), + [anon_sym_inner] = ACTIONS(4591), + [anon_sym_value] = ACTIONS(4591), + [anon_sym_override] = ACTIONS(4591), + [anon_sym_lateinit] = ACTIONS(4591), + [anon_sym_public] = ACTIONS(4591), + [anon_sym_private] = ACTIONS(4591), + [anon_sym_internal] = ACTIONS(4591), + [anon_sym_protected] = ACTIONS(4591), + [anon_sym_tailrec] = ACTIONS(4591), + [anon_sym_operator] = ACTIONS(4591), + [anon_sym_infix] = ACTIONS(4591), + [anon_sym_inline] = ACTIONS(4591), + [anon_sym_external] = ACTIONS(4591), + [sym_property_modifier] = ACTIONS(4591), + [anon_sym_abstract] = ACTIONS(4591), + [anon_sym_final] = ACTIONS(4591), + [anon_sym_open] = ACTIONS(4591), + [anon_sym_vararg] = ACTIONS(4591), + [anon_sym_noinline] = ACTIONS(4591), + [anon_sym_crossinline] = ACTIONS(4591), + [anon_sym_expect] = ACTIONS(4591), + [anon_sym_actual] = ACTIONS(4591), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4593), + [sym_safe_nav] = ACTIONS(4593), [sym_multiline_comment] = ACTIONS(3), }, [3326] = { - [sym_type_constraints] = STATE(3606), - [sym_function_body] = STATE(3194), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(6787), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_COMMA] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4133), - [anon_sym_fun] = ACTIONS(4133), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_this] = ACTIONS(4133), - [anon_sym_super] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4135), - [sym_label] = ACTIONS(4133), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_if] = ACTIONS(4133), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_when] = ACTIONS(4133), - [anon_sym_try] = ACTIONS(4133), - [anon_sym_throw] = ACTIONS(4133), - [anon_sym_return] = ACTIONS(4133), - [anon_sym_continue] = ACTIONS(4133), - [anon_sym_break] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4135), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4133), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4135), - [anon_sym_continue_AT] = ACTIONS(4135), - [anon_sym_break_AT] = ACTIONS(4135), - [anon_sym_this_AT] = ACTIONS(4135), - [anon_sym_super_AT] = ACTIONS(4135), - [sym_real_literal] = ACTIONS(4135), - [sym_integer_literal] = ACTIONS(4133), - [sym_hex_literal] = ACTIONS(4135), - [sym_bin_literal] = ACTIONS(4135), - [anon_sym_true] = ACTIONS(4133), - [anon_sym_false] = ACTIONS(4133), - [anon_sym_SQUOTE] = ACTIONS(4135), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4135), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3132), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), }, [3327] = { - [sym__alpha_identifier] = ACTIONS(4629), - [anon_sym_AT] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_RBRACK] = ACTIONS(4631), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_as] = ACTIONS(4629), - [anon_sym_EQ] = ACTIONS(4629), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_RBRACE] = ACTIONS(4631), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_RPAREN] = ACTIONS(4631), - [anon_sym_by] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_where] = ACTIONS(4629), - [anon_sym_SEMI] = ACTIONS(4631), - [anon_sym_get] = ACTIONS(4629), - [anon_sym_set] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_DASH_GT] = ACTIONS(4631), - [sym_label] = ACTIONS(4631), - [anon_sym_in] = ACTIONS(4629), - [anon_sym_while] = ACTIONS(4629), - [anon_sym_DOT_DOT] = ACTIONS(4631), - [anon_sym_QMARK_COLON] = ACTIONS(4631), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4631), - [anon_sym_else] = ACTIONS(4629), - [anon_sym_COLON_COLON] = ACTIONS(4631), - [anon_sym_PLUS_EQ] = ACTIONS(4631), - [anon_sym_DASH_EQ] = ACTIONS(4631), - [anon_sym_STAR_EQ] = ACTIONS(4631), - [anon_sym_SLASH_EQ] = ACTIONS(4631), - [anon_sym_PERCENT_EQ] = ACTIONS(4631), - [anon_sym_BANG_EQ] = ACTIONS(4629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4631), - [anon_sym_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4631), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4631), - [anon_sym_is] = ACTIONS(4629), - [anon_sym_BANGis] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4629), - [anon_sym_as_QMARK] = ACTIONS(4631), - [anon_sym_PLUS_PLUS] = ACTIONS(4631), - [anon_sym_DASH_DASH] = ACTIONS(4631), - [anon_sym_BANG_BANG] = ACTIONS(4631), - [anon_sym_suspend] = ACTIONS(4629), - [anon_sym_sealed] = ACTIONS(4629), - [anon_sym_annotation] = ACTIONS(4629), - [anon_sym_data] = ACTIONS(4629), - [anon_sym_inner] = ACTIONS(4629), - [anon_sym_value] = ACTIONS(4629), - [anon_sym_override] = ACTIONS(4629), - [anon_sym_lateinit] = ACTIONS(4629), - [anon_sym_public] = ACTIONS(4629), - [anon_sym_private] = ACTIONS(4629), - [anon_sym_internal] = ACTIONS(4629), - [anon_sym_protected] = ACTIONS(4629), - [anon_sym_tailrec] = ACTIONS(4629), - [anon_sym_operator] = ACTIONS(4629), - [anon_sym_infix] = ACTIONS(4629), - [anon_sym_inline] = ACTIONS(4629), - [anon_sym_external] = ACTIONS(4629), - [sym_property_modifier] = ACTIONS(4629), - [anon_sym_abstract] = ACTIONS(4629), - [anon_sym_final] = ACTIONS(4629), - [anon_sym_open] = ACTIONS(4629), - [anon_sym_vararg] = ACTIONS(4629), - [anon_sym_noinline] = ACTIONS(4629), - [anon_sym_crossinline] = ACTIONS(4629), - [anon_sym_expect] = ACTIONS(4629), - [anon_sym_actual] = ACTIONS(4629), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4631), - [sym_safe_nav] = ACTIONS(4631), + [sym__alpha_identifier] = ACTIONS(4595), + [anon_sym_AT] = ACTIONS(4597), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_RBRACK] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_as] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4597), + [anon_sym_RPAREN] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4597), + [anon_sym_get] = ACTIONS(4595), + [anon_sym_set] = ACTIONS(4595), + [anon_sym_STAR] = ACTIONS(4595), + [anon_sym_DASH_GT] = ACTIONS(4597), + [sym_label] = ACTIONS(4597), + [anon_sym_in] = ACTIONS(4595), + [anon_sym_while] = ACTIONS(4595), + [anon_sym_DOT_DOT] = ACTIONS(4597), + [anon_sym_QMARK_COLON] = ACTIONS(4597), + [anon_sym_AMP_AMP] = ACTIONS(4597), + [anon_sym_PIPE_PIPE] = ACTIONS(4597), + [anon_sym_else] = ACTIONS(4595), + [anon_sym_COLON_COLON] = ACTIONS(4597), + [anon_sym_PLUS_EQ] = ACTIONS(4597), + [anon_sym_DASH_EQ] = ACTIONS(4597), + [anon_sym_STAR_EQ] = ACTIONS(4597), + [anon_sym_SLASH_EQ] = ACTIONS(4597), + [anon_sym_PERCENT_EQ] = ACTIONS(4597), + [anon_sym_BANG_EQ] = ACTIONS(4595), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), + [anon_sym_EQ_EQ] = ACTIONS(4595), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4597), + [anon_sym_BANGin] = ACTIONS(4597), + [anon_sym_is] = ACTIONS(4595), + [anon_sym_BANGis] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_as_QMARK] = ACTIONS(4597), + [anon_sym_PLUS_PLUS] = ACTIONS(4597), + [anon_sym_DASH_DASH] = ACTIONS(4597), + [anon_sym_BANG_BANG] = ACTIONS(4597), + [anon_sym_suspend] = ACTIONS(4595), + [anon_sym_sealed] = ACTIONS(4595), + [anon_sym_annotation] = ACTIONS(4595), + [anon_sym_data] = ACTIONS(4595), + [anon_sym_inner] = ACTIONS(4595), + [anon_sym_value] = ACTIONS(4595), + [anon_sym_override] = ACTIONS(4595), + [anon_sym_lateinit] = ACTIONS(4595), + [anon_sym_public] = ACTIONS(4595), + [anon_sym_private] = ACTIONS(4595), + [anon_sym_internal] = ACTIONS(4595), + [anon_sym_protected] = ACTIONS(4595), + [anon_sym_tailrec] = ACTIONS(4595), + [anon_sym_operator] = ACTIONS(4595), + [anon_sym_infix] = ACTIONS(4595), + [anon_sym_inline] = ACTIONS(4595), + [anon_sym_external] = ACTIONS(4595), + [sym_property_modifier] = ACTIONS(4595), + [anon_sym_abstract] = ACTIONS(4595), + [anon_sym_final] = ACTIONS(4595), + [anon_sym_open] = ACTIONS(4595), + [anon_sym_vararg] = ACTIONS(4595), + [anon_sym_noinline] = ACTIONS(4595), + [anon_sym_crossinline] = ACTIONS(4595), + [anon_sym_expect] = ACTIONS(4595), + [anon_sym_actual] = ACTIONS(4595), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4597), + [sym_safe_nav] = ACTIONS(4597), [sym_multiline_comment] = ACTIONS(3), }, [3328] = { - [sym_type_constraints] = STATE(3605), - [sym_function_body] = STATE(3231), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(6791), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [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(3258), - [anon_sym_object] = ACTIONS(4150), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3078), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), }, [3329] = { - [sym_class_body] = STATE(3495), - [sym__alpha_identifier] = ACTIONS(4644), - [anon_sym_AT] = ACTIONS(4646), - [anon_sym_LBRACK] = ACTIONS(4646), - [anon_sym_RBRACK] = ACTIONS(4646), - [anon_sym_DOT] = ACTIONS(4644), - [anon_sym_as] = ACTIONS(4644), - [anon_sym_EQ] = ACTIONS(4644), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4646), - [anon_sym_LPAREN] = ACTIONS(4646), - [anon_sym_COMMA] = ACTIONS(4646), - [anon_sym_RPAREN] = ACTIONS(4646), - [anon_sym_LT] = ACTIONS(4644), - [anon_sym_GT] = ACTIONS(4644), - [anon_sym_where] = ACTIONS(4644), - [anon_sym_SEMI] = ACTIONS(4646), - [anon_sym_get] = ACTIONS(4644), - [anon_sym_set] = ACTIONS(4644), - [anon_sym_STAR] = ACTIONS(4644), - [anon_sym_DASH_GT] = ACTIONS(4646), - [sym_label] = ACTIONS(4646), - [anon_sym_in] = ACTIONS(4644), - [anon_sym_while] = ACTIONS(4644), - [anon_sym_DOT_DOT] = ACTIONS(4646), - [anon_sym_QMARK_COLON] = ACTIONS(4646), - [anon_sym_AMP_AMP] = ACTIONS(4646), - [anon_sym_PIPE_PIPE] = ACTIONS(4646), - [anon_sym_else] = ACTIONS(4644), - [anon_sym_COLON_COLON] = ACTIONS(4646), - [anon_sym_PLUS_EQ] = ACTIONS(4646), - [anon_sym_DASH_EQ] = ACTIONS(4646), - [anon_sym_STAR_EQ] = ACTIONS(4646), - [anon_sym_SLASH_EQ] = ACTIONS(4646), - [anon_sym_PERCENT_EQ] = ACTIONS(4646), - [anon_sym_BANG_EQ] = ACTIONS(4644), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), - [anon_sym_EQ_EQ] = ACTIONS(4644), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), - [anon_sym_LT_EQ] = ACTIONS(4646), - [anon_sym_GT_EQ] = ACTIONS(4646), - [anon_sym_BANGin] = ACTIONS(4646), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_BANGis] = ACTIONS(4646), - [anon_sym_PLUS] = ACTIONS(4644), - [anon_sym_DASH] = ACTIONS(4644), - [anon_sym_SLASH] = ACTIONS(4644), - [anon_sym_PERCENT] = ACTIONS(4644), - [anon_sym_as_QMARK] = ACTIONS(4646), - [anon_sym_PLUS_PLUS] = ACTIONS(4646), - [anon_sym_DASH_DASH] = ACTIONS(4646), - [anon_sym_BANG_BANG] = ACTIONS(4646), - [anon_sym_suspend] = ACTIONS(4644), - [anon_sym_sealed] = ACTIONS(4644), - [anon_sym_annotation] = ACTIONS(4644), - [anon_sym_data] = ACTIONS(4644), - [anon_sym_inner] = ACTIONS(4644), - [anon_sym_value] = ACTIONS(4644), - [anon_sym_override] = ACTIONS(4644), - [anon_sym_lateinit] = ACTIONS(4644), - [anon_sym_public] = ACTIONS(4644), - [anon_sym_private] = ACTIONS(4644), - [anon_sym_internal] = ACTIONS(4644), - [anon_sym_protected] = ACTIONS(4644), - [anon_sym_tailrec] = ACTIONS(4644), - [anon_sym_operator] = ACTIONS(4644), - [anon_sym_infix] = ACTIONS(4644), - [anon_sym_inline] = ACTIONS(4644), - [anon_sym_external] = ACTIONS(4644), - [sym_property_modifier] = ACTIONS(4644), - [anon_sym_abstract] = ACTIONS(4644), - [anon_sym_final] = ACTIONS(4644), - [anon_sym_open] = ACTIONS(4644), - [anon_sym_vararg] = ACTIONS(4644), - [anon_sym_noinline] = ACTIONS(4644), - [anon_sym_crossinline] = ACTIONS(4644), - [anon_sym_expect] = ACTIONS(4644), - [anon_sym_actual] = ACTIONS(4644), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4646), - [sym_safe_nav] = ACTIONS(4646), + [sym_class_body] = STATE(3409), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_RBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_while] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), [sym_multiline_comment] = ACTIONS(3), }, [3330] = { - [sym_type_constraints] = STATE(3601), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(6793), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [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(3258), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [sym_enum_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_DASH_GT] = ACTIONS(4337), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), }, [3331] = { - [sym_type_constraints] = STATE(3603), - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(6795), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3139), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(6670), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [anon_sym_DASH_EQ] = ACTIONS(3139), + [anon_sym_STAR_EQ] = ACTIONS(3139), + [anon_sym_SLASH_EQ] = ACTIONS(3139), + [anon_sym_PERCENT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), }, [3332] = { - [sym_type_constraints] = STATE(3608), - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(6797), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [sym_type_arguments] = STATE(3426), + [sym__alpha_identifier] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_DOT] = ACTIONS(4117), + [anon_sym_as] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_RBRACE] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4119), + [anon_sym_COMMA] = ACTIONS(4119), + [anon_sym_by] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(6738), + [anon_sym_GT] = ACTIONS(4117), + [anon_sym_where] = ACTIONS(4117), + [anon_sym_SEMI] = ACTIONS(4119), + [anon_sym_get] = ACTIONS(4117), + [anon_sym_set] = ACTIONS(4117), + [anon_sym_AMP] = ACTIONS(4117), + [sym__quest] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4117), + [sym_label] = ACTIONS(4119), + [anon_sym_in] = ACTIONS(4117), + [anon_sym_DOT_DOT] = ACTIONS(4119), + [anon_sym_QMARK_COLON] = ACTIONS(4119), + [anon_sym_AMP_AMP] = ACTIONS(4119), + [anon_sym_PIPE_PIPE] = ACTIONS(4119), + [anon_sym_else] = ACTIONS(4117), + [anon_sym_COLON_COLON] = ACTIONS(4119), + [anon_sym_PLUS_EQ] = ACTIONS(4119), + [anon_sym_DASH_EQ] = ACTIONS(4119), + [anon_sym_STAR_EQ] = ACTIONS(4119), + [anon_sym_SLASH_EQ] = ACTIONS(4119), + [anon_sym_PERCENT_EQ] = ACTIONS(4119), + [anon_sym_BANG_EQ] = ACTIONS(4117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4119), + [anon_sym_EQ_EQ] = ACTIONS(4117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4119), + [anon_sym_LT_EQ] = ACTIONS(4119), + [anon_sym_GT_EQ] = ACTIONS(4119), + [anon_sym_BANGin] = ACTIONS(4119), + [anon_sym_is] = ACTIONS(4117), + [anon_sym_BANGis] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_SLASH] = ACTIONS(4117), + [anon_sym_PERCENT] = ACTIONS(4117), + [anon_sym_as_QMARK] = ACTIONS(4119), + [anon_sym_PLUS_PLUS] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4119), + [anon_sym_BANG_BANG] = ACTIONS(4119), + [anon_sym_suspend] = ACTIONS(4117), + [anon_sym_sealed] = ACTIONS(4117), + [anon_sym_annotation] = ACTIONS(4117), + [anon_sym_data] = ACTIONS(4117), + [anon_sym_inner] = ACTIONS(4117), + [anon_sym_value] = ACTIONS(4117), + [anon_sym_override] = ACTIONS(4117), + [anon_sym_lateinit] = ACTIONS(4117), + [anon_sym_public] = ACTIONS(4117), + [anon_sym_private] = ACTIONS(4117), + [anon_sym_internal] = ACTIONS(4117), + [anon_sym_protected] = ACTIONS(4117), + [anon_sym_tailrec] = ACTIONS(4117), + [anon_sym_operator] = ACTIONS(4117), + [anon_sym_infix] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4117), + [anon_sym_external] = ACTIONS(4117), + [sym_property_modifier] = ACTIONS(4117), + [anon_sym_abstract] = ACTIONS(4117), + [anon_sym_final] = ACTIONS(4117), + [anon_sym_open] = ACTIONS(4117), + [anon_sym_vararg] = ACTIONS(4117), + [anon_sym_noinline] = ACTIONS(4117), + [anon_sym_crossinline] = ACTIONS(4117), + [anon_sym_expect] = ACTIONS(4117), + [anon_sym_actual] = ACTIONS(4117), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4119), + [sym__automatic_semicolon] = ACTIONS(4119), + [sym_safe_nav] = ACTIONS(4119), + [sym_multiline_comment] = ACTIONS(3), }, [3333] = { - [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_DOT] = ACTIONS(4601), - [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_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_value] = 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_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3086), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3334] = { - [sym__alpha_identifier] = ACTIONS(4559), - [anon_sym_AT] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [anon_sym_RBRACK] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_as] = ACTIONS(4559), - [anon_sym_EQ] = ACTIONS(4559), - [anon_sym_LBRACE] = ACTIONS(4561), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym_COMMA] = ACTIONS(4561), - [anon_sym_RPAREN] = ACTIONS(4561), - [anon_sym_by] = ACTIONS(4559), - [anon_sym_LT] = ACTIONS(4559), - [anon_sym_GT] = ACTIONS(4559), - [anon_sym_where] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_STAR] = ACTIONS(4559), - [anon_sym_DASH_GT] = ACTIONS(4561), - [sym_label] = ACTIONS(4561), - [anon_sym_in] = ACTIONS(4559), - [anon_sym_while] = ACTIONS(4559), - [anon_sym_DOT_DOT] = ACTIONS(4561), - [anon_sym_QMARK_COLON] = ACTIONS(4561), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4561), - [anon_sym_else] = ACTIONS(4559), - [anon_sym_COLON_COLON] = ACTIONS(4561), - [anon_sym_PLUS_EQ] = ACTIONS(4561), - [anon_sym_DASH_EQ] = ACTIONS(4561), - [anon_sym_STAR_EQ] = ACTIONS(4561), - [anon_sym_SLASH_EQ] = ACTIONS(4561), - [anon_sym_PERCENT_EQ] = ACTIONS(4561), - [anon_sym_BANG_EQ] = ACTIONS(4559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), - [anon_sym_EQ_EQ] = ACTIONS(4559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), - [anon_sym_LT_EQ] = ACTIONS(4561), - [anon_sym_GT_EQ] = ACTIONS(4561), - [anon_sym_BANGin] = ACTIONS(4561), - [anon_sym_is] = ACTIONS(4559), - [anon_sym_BANGis] = ACTIONS(4561), - [anon_sym_PLUS] = ACTIONS(4559), - [anon_sym_DASH] = ACTIONS(4559), - [anon_sym_SLASH] = ACTIONS(4559), - [anon_sym_PERCENT] = ACTIONS(4559), - [anon_sym_as_QMARK] = ACTIONS(4561), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_BANG_BANG] = ACTIONS(4561), - [anon_sym_suspend] = ACTIONS(4559), - [anon_sym_sealed] = ACTIONS(4559), - [anon_sym_annotation] = ACTIONS(4559), - [anon_sym_data] = ACTIONS(4559), - [anon_sym_inner] = ACTIONS(4559), - [anon_sym_value] = ACTIONS(4559), - [anon_sym_override] = ACTIONS(4559), - [anon_sym_lateinit] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_internal] = ACTIONS(4559), - [anon_sym_protected] = ACTIONS(4559), - [anon_sym_tailrec] = ACTIONS(4559), - [anon_sym_operator] = ACTIONS(4559), - [anon_sym_infix] = ACTIONS(4559), - [anon_sym_inline] = ACTIONS(4559), - [anon_sym_external] = ACTIONS(4559), - [sym_property_modifier] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_open] = ACTIONS(4559), - [anon_sym_vararg] = ACTIONS(4559), - [anon_sym_noinline] = ACTIONS(4559), - [anon_sym_crossinline] = ACTIONS(4559), - [anon_sym_expect] = ACTIONS(4559), - [anon_sym_actual] = ACTIONS(4559), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4561), - [sym_safe_nav] = ACTIONS(4561), + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_by] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_AMP] = ACTIONS(3938), + [sym__quest] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), }, [3335] = { - [sym_enum_class_body] = STATE(3402), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_RBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [anon_sym_DASH_GT] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), + [aux_sym_user_type_repeat1] = STATE(3335), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(6740), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), [sym_multiline_comment] = ACTIONS(3), }, [3336] = { - [sym_enum_class_body] = STATE(3457), - [sym__alpha_identifier] = ACTIONS(4716), - [anon_sym_AT] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4718), - [anon_sym_RBRACK] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4716), - [anon_sym_EQ] = ACTIONS(4716), - [anon_sym_LBRACE] = ACTIONS(5508), - [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_SEMI] = ACTIONS(4718), - [anon_sym_get] = ACTIONS(4716), - [anon_sym_set] = ACTIONS(4716), - [anon_sym_STAR] = ACTIONS(4716), - [anon_sym_DASH_GT] = ACTIONS(4718), - [sym_label] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4716), - [anon_sym_while] = ACTIONS(4716), - [anon_sym_DOT_DOT] = ACTIONS(4718), - [anon_sym_QMARK_COLON] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_else] = ACTIONS(4716), - [anon_sym_COLON_COLON] = ACTIONS(4718), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_STAR_EQ] = ACTIONS(4718), - [anon_sym_SLASH_EQ] = ACTIONS(4718), - [anon_sym_PERCENT_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_BANGin] = ACTIONS(4718), - [anon_sym_is] = ACTIONS(4716), - [anon_sym_BANGis] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_SLASH] = ACTIONS(4716), - [anon_sym_PERCENT] = ACTIONS(4716), - [anon_sym_as_QMARK] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [anon_sym_BANG_BANG] = ACTIONS(4718), - [anon_sym_suspend] = ACTIONS(4716), - [anon_sym_sealed] = ACTIONS(4716), - [anon_sym_annotation] = ACTIONS(4716), - [anon_sym_data] = ACTIONS(4716), - [anon_sym_inner] = ACTIONS(4716), - [anon_sym_value] = ACTIONS(4716), - [anon_sym_override] = ACTIONS(4716), - [anon_sym_lateinit] = ACTIONS(4716), - [anon_sym_public] = ACTIONS(4716), - [anon_sym_private] = ACTIONS(4716), - [anon_sym_internal] = ACTIONS(4716), - [anon_sym_protected] = ACTIONS(4716), - [anon_sym_tailrec] = ACTIONS(4716), - [anon_sym_operator] = ACTIONS(4716), - [anon_sym_infix] = ACTIONS(4716), - [anon_sym_inline] = ACTIONS(4716), - [anon_sym_external] = ACTIONS(4716), - [sym_property_modifier] = ACTIONS(4716), - [anon_sym_abstract] = ACTIONS(4716), - [anon_sym_final] = ACTIONS(4716), - [anon_sym_open] = ACTIONS(4716), - [anon_sym_vararg] = ACTIONS(4716), - [anon_sym_noinline] = ACTIONS(4716), - [anon_sym_crossinline] = ACTIONS(4716), - [anon_sym_expect] = ACTIONS(4716), - [anon_sym_actual] = ACTIONS(4716), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4718), - [sym_safe_nav] = ACTIONS(4718), + [aux_sym_user_type_repeat1] = STATE(3335), + [sym__alpha_identifier] = ACTIONS(4070), + [anon_sym_AT] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(6743), + [anon_sym_as] = ACTIONS(4070), + [anon_sym_EQ] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4072), + [anon_sym_by] = ACTIONS(4070), + [anon_sym_LT] = ACTIONS(4070), + [anon_sym_GT] = ACTIONS(4070), + [anon_sym_where] = ACTIONS(4070), + [anon_sym_SEMI] = ACTIONS(4072), + [anon_sym_get] = ACTIONS(4070), + [anon_sym_set] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4070), + [sym__quest] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4070), + [sym_label] = ACTIONS(4072), + [anon_sym_in] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_QMARK_COLON] = ACTIONS(4072), + [anon_sym_AMP_AMP] = ACTIONS(4072), + [anon_sym_PIPE_PIPE] = ACTIONS(4072), + [anon_sym_else] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_PLUS_EQ] = ACTIONS(4072), + [anon_sym_DASH_EQ] = ACTIONS(4072), + [anon_sym_STAR_EQ] = ACTIONS(4072), + [anon_sym_SLASH_EQ] = ACTIONS(4072), + [anon_sym_PERCENT_EQ] = ACTIONS(4072), + [anon_sym_BANG_EQ] = ACTIONS(4070), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4072), + [anon_sym_EQ_EQ] = ACTIONS(4070), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4072), + [anon_sym_LT_EQ] = ACTIONS(4072), + [anon_sym_GT_EQ] = ACTIONS(4072), + [anon_sym_BANGin] = ACTIONS(4072), + [anon_sym_is] = ACTIONS(4070), + [anon_sym_BANGis] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_SLASH] = ACTIONS(4070), + [anon_sym_PERCENT] = ACTIONS(4070), + [anon_sym_as_QMARK] = ACTIONS(4072), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_BANG_BANG] = ACTIONS(4072), + [anon_sym_suspend] = ACTIONS(4070), + [anon_sym_sealed] = ACTIONS(4070), + [anon_sym_annotation] = ACTIONS(4070), + [anon_sym_data] = ACTIONS(4070), + [anon_sym_inner] = ACTIONS(4070), + [anon_sym_value] = ACTIONS(4070), + [anon_sym_override] = ACTIONS(4070), + [anon_sym_lateinit] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_internal] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_tailrec] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_infix] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym_external] = ACTIONS(4070), + [sym_property_modifier] = ACTIONS(4070), + [anon_sym_abstract] = ACTIONS(4070), + [anon_sym_final] = ACTIONS(4070), + [anon_sym_open] = ACTIONS(4070), + [anon_sym_vararg] = ACTIONS(4070), + [anon_sym_noinline] = ACTIONS(4070), + [anon_sym_crossinline] = ACTIONS(4070), + [anon_sym_expect] = ACTIONS(4070), + [anon_sym_actual] = ACTIONS(4070), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4072), + [sym__automatic_semicolon] = ACTIONS(4072), + [sym_safe_nav] = ACTIONS(4072), [sym_multiline_comment] = ACTIONS(3), }, [3337] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3135), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym__alpha_identifier] = ACTIONS(4599), + [anon_sym_AT] = ACTIONS(4601), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_RBRACK] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4599), + [anon_sym_as] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4601), + [anon_sym_RBRACE] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4601), + [anon_sym_RPAREN] = ACTIONS(4601), + [anon_sym_by] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4599), + [anon_sym_where] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4601), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), + [anon_sym_STAR] = ACTIONS(4599), + [anon_sym_DASH_GT] = ACTIONS(4601), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4599), + [anon_sym_while] = ACTIONS(4599), + [anon_sym_DOT_DOT] = ACTIONS(4601), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4601), + [anon_sym_PIPE_PIPE] = ACTIONS(4601), + [anon_sym_else] = ACTIONS(4599), + [anon_sym_COLON_COLON] = ACTIONS(4601), + [anon_sym_PLUS_EQ] = ACTIONS(4601), + [anon_sym_DASH_EQ] = ACTIONS(4601), + [anon_sym_STAR_EQ] = ACTIONS(4601), + [anon_sym_SLASH_EQ] = ACTIONS(4601), + [anon_sym_PERCENT_EQ] = ACTIONS(4601), + [anon_sym_BANG_EQ] = ACTIONS(4599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4601), + [anon_sym_EQ_EQ] = ACTIONS(4599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4601), + [anon_sym_BANGin] = ACTIONS(4601), + [anon_sym_is] = ACTIONS(4599), + [anon_sym_BANGis] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4601), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_BANG_BANG] = ACTIONS(4601), + [anon_sym_suspend] = ACTIONS(4599), + [anon_sym_sealed] = ACTIONS(4599), + [anon_sym_annotation] = ACTIONS(4599), + [anon_sym_data] = ACTIONS(4599), + [anon_sym_inner] = ACTIONS(4599), + [anon_sym_value] = ACTIONS(4599), + [anon_sym_override] = ACTIONS(4599), + [anon_sym_lateinit] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_internal] = ACTIONS(4599), + [anon_sym_protected] = ACTIONS(4599), + [anon_sym_tailrec] = ACTIONS(4599), + [anon_sym_operator] = ACTIONS(4599), + [anon_sym_infix] = ACTIONS(4599), + [anon_sym_inline] = ACTIONS(4599), + [anon_sym_external] = ACTIONS(4599), + [sym_property_modifier] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_open] = ACTIONS(4599), + [anon_sym_vararg] = ACTIONS(4599), + [anon_sym_noinline] = ACTIONS(4599), + [anon_sym_crossinline] = ACTIONS(4599), + [anon_sym_expect] = ACTIONS(4599), + [anon_sym_actual] = ACTIONS(4599), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4601), + [sym_safe_nav] = ACTIONS(4601), [sym_multiline_comment] = ACTIONS(3), }, [3338] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_RPAREN] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3187), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(6723), - [anon_sym_PIPE_PIPE] = ACTIONS(6725), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3187), - [anon_sym_DASH_EQ] = ACTIONS(3187), - [anon_sym_STAR_EQ] = ACTIONS(3187), - [anon_sym_SLASH_EQ] = ACTIONS(3187), - [anon_sym_PERCENT_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [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_DOT] = ACTIONS(4521), + [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_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_value] = 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), }, [3339] = { - [sym_enum_class_body] = STATE(3463), - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_RBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_EQ] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(5508), - [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_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_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_value] = 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_class_body] = STATE(3464), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, [3340] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_RBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_RPAREN] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(6621), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [anon_sym_DASH_GT] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_while] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3059), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3341] = { - [sym_class_body] = STATE(3467), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_RBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(5516), - [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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [anon_sym_DASH_GT] = ACTIONS(4756), - [sym_label] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_while] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3342] = { - [sym_type_constraints] = STATE(3636), - [sym_function_body] = STATE(3889), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(6799), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [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(5816), - [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_value] = 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_enum_class_body] = STATE(3394), + [sym__alpha_identifier] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_RBRACK] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4630), + [anon_sym_as] = ACTIONS(4630), + [anon_sym_EQ] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_RPAREN] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_where] = ACTIONS(4630), + [anon_sym_SEMI] = ACTIONS(4632), + [anon_sym_get] = ACTIONS(4630), + [anon_sym_set] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [anon_sym_DASH_GT] = ACTIONS(4632), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4630), + [anon_sym_while] = ACTIONS(4630), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_QMARK_COLON] = ACTIONS(4632), + [anon_sym_AMP_AMP] = ACTIONS(4632), + [anon_sym_PIPE_PIPE] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4630), + [anon_sym_COLON_COLON] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4632), + [anon_sym_DASH_EQ] = ACTIONS(4632), + [anon_sym_STAR_EQ] = ACTIONS(4632), + [anon_sym_SLASH_EQ] = ACTIONS(4632), + [anon_sym_PERCENT_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4632), + [anon_sym_BANGin] = ACTIONS(4632), + [anon_sym_is] = ACTIONS(4630), + [anon_sym_BANGis] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_as_QMARK] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4632), + [anon_sym_suspend] = ACTIONS(4630), + [anon_sym_sealed] = ACTIONS(4630), + [anon_sym_annotation] = ACTIONS(4630), + [anon_sym_data] = ACTIONS(4630), + [anon_sym_inner] = ACTIONS(4630), + [anon_sym_value] = ACTIONS(4630), + [anon_sym_override] = ACTIONS(4630), + [anon_sym_lateinit] = ACTIONS(4630), + [anon_sym_public] = ACTIONS(4630), + [anon_sym_private] = ACTIONS(4630), + [anon_sym_internal] = ACTIONS(4630), + [anon_sym_protected] = ACTIONS(4630), + [anon_sym_tailrec] = ACTIONS(4630), + [anon_sym_operator] = ACTIONS(4630), + [anon_sym_infix] = ACTIONS(4630), + [anon_sym_inline] = ACTIONS(4630), + [anon_sym_external] = ACTIONS(4630), + [sym_property_modifier] = ACTIONS(4630), + [anon_sym_abstract] = ACTIONS(4630), + [anon_sym_final] = ACTIONS(4630), + [anon_sym_open] = ACTIONS(4630), + [anon_sym_vararg] = ACTIONS(4630), + [anon_sym_noinline] = ACTIONS(4630), + [anon_sym_crossinline] = ACTIONS(4630), + [anon_sym_expect] = ACTIONS(4630), + [anon_sym_actual] = ACTIONS(4630), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4632), + [sym_safe_nav] = ACTIONS(4632), [sym_multiline_comment] = ACTIONS(3), }, [3343] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3195), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(6727), + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4673), + [anon_sym_LBRACK] = ACTIONS(4673), + [anon_sym_RBRACK] = ACTIONS(4673), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4673), + [anon_sym_RBRACE] = ACTIONS(4673), + [anon_sym_LPAREN] = ACTIONS(4673), + [anon_sym_COMMA] = ACTIONS(4673), + [anon_sym_RPAREN] = ACTIONS(4673), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [anon_sym_DASH_GT] = ACTIONS(4673), + [sym_label] = ACTIONS(4673), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_while] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4673), + [anon_sym_QMARK_COLON] = ACTIONS(4673), + [anon_sym_AMP_AMP] = ACTIONS(4673), + [anon_sym_PIPE_PIPE] = ACTIONS(4673), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4673), + [anon_sym_PLUS_EQ] = ACTIONS(4673), + [anon_sym_DASH_EQ] = ACTIONS(4673), + [anon_sym_STAR_EQ] = ACTIONS(4673), + [anon_sym_SLASH_EQ] = ACTIONS(4673), + [anon_sym_PERCENT_EQ] = ACTIONS(4673), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), + [anon_sym_LT_EQ] = ACTIONS(4673), + [anon_sym_GT_EQ] = ACTIONS(4673), + [anon_sym_BANGin] = ACTIONS(4673), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4673), + [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(4673), + [anon_sym_PLUS_PLUS] = ACTIONS(4673), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_BANG_BANG] = ACTIONS(4673), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4673), + [sym_safe_nav] = ACTIONS(4673), [sym_multiline_comment] = ACTIONS(3), }, [3344] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3154), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3154), - [anon_sym_DASH_EQ] = ACTIONS(3154), - [anon_sym_STAR_EQ] = ACTIONS(3154), - [anon_sym_SLASH_EQ] = ACTIONS(3154), - [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym__alpha_identifier] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_RBRACK] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_as] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_RPAREN] = ACTIONS(4682), + [anon_sym_by] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4680), + [anon_sym_where] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_get] = ACTIONS(4680), + [anon_sym_set] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4680), + [anon_sym_DASH_GT] = ACTIONS(4682), + [sym_label] = ACTIONS(4682), + [anon_sym_in] = ACTIONS(4680), + [anon_sym_while] = ACTIONS(4680), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_QMARK_COLON] = ACTIONS(4682), + [anon_sym_AMP_AMP] = ACTIONS(4682), + [anon_sym_PIPE_PIPE] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4682), + [anon_sym_DASH_EQ] = ACTIONS(4682), + [anon_sym_STAR_EQ] = ACTIONS(4682), + [anon_sym_SLASH_EQ] = ACTIONS(4682), + [anon_sym_PERCENT_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4682), + [anon_sym_BANGin] = ACTIONS(4682), + [anon_sym_is] = ACTIONS(4680), + [anon_sym_BANGis] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_SLASH] = ACTIONS(4680), + [anon_sym_PERCENT] = ACTIONS(4680), + [anon_sym_as_QMARK] = ACTIONS(4682), + [anon_sym_PLUS_PLUS] = ACTIONS(4682), + [anon_sym_DASH_DASH] = ACTIONS(4682), + [anon_sym_BANG_BANG] = ACTIONS(4682), + [anon_sym_suspend] = ACTIONS(4680), + [anon_sym_sealed] = ACTIONS(4680), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_data] = ACTIONS(4680), + [anon_sym_inner] = ACTIONS(4680), + [anon_sym_value] = ACTIONS(4680), + [anon_sym_override] = ACTIONS(4680), + [anon_sym_lateinit] = ACTIONS(4680), + [anon_sym_public] = ACTIONS(4680), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_internal] = ACTIONS(4680), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_tailrec] = ACTIONS(4680), + [anon_sym_operator] = ACTIONS(4680), + [anon_sym_infix] = ACTIONS(4680), + [anon_sym_inline] = ACTIONS(4680), + [anon_sym_external] = ACTIONS(4680), + [sym_property_modifier] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_final] = ACTIONS(4680), + [anon_sym_open] = ACTIONS(4680), + [anon_sym_vararg] = ACTIONS(4680), + [anon_sym_noinline] = ACTIONS(4680), + [anon_sym_crossinline] = ACTIONS(4680), + [anon_sym_expect] = ACTIONS(4680), + [anon_sym_actual] = ACTIONS(4680), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4682), + [sym_safe_nav] = ACTIONS(4682), [sym_multiline_comment] = ACTIONS(3), }, [3345] = { - [sym_class_body] = STATE(3514), - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_RBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_RPAREN] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_DASH_GT] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_while] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_suspend] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_annotation] = ACTIONS(4507), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_lateinit] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_tailrec] = ACTIONS(4507), - [anon_sym_operator] = ACTIONS(4507), - [anon_sym_infix] = ACTIONS(4507), - [anon_sym_inline] = ACTIONS(4507), - [anon_sym_external] = ACTIONS(4507), - [sym_property_modifier] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_final] = ACTIONS(4507), - [anon_sym_open] = ACTIONS(4507), - [anon_sym_vararg] = ACTIONS(4507), - [anon_sym_noinline] = ACTIONS(4507), - [anon_sym_crossinline] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), + [sym_enum_class_body] = STATE(3383), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_RBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(5462), + [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_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_value] = 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), }, [3346] = { - [sym_type_constraints] = STATE(3639), - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(6801), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [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(5816), - [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_value] = 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_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_RPAREN] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3143), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3143), + [anon_sym_DASH_EQ] = ACTIONS(3143), + [anon_sym_STAR_EQ] = ACTIONS(3143), + [anon_sym_SLASH_EQ] = ACTIONS(3143), + [anon_sym_PERCENT_EQ] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3347] = { - [sym_type_constraints] = STATE(3646), - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(6803), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_RBRACK] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_RPAREN] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [anon_sym_DASH_GT] = ACTIONS(4708), + [sym_label] = ACTIONS(4708), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_while] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), [sym_multiline_comment] = ACTIONS(3), }, [3348] = { + [sym_class_body] = STATE(3376), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_RBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_RPAREN] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [anon_sym_DASH_GT] = ACTIONS(4620), + [sym_label] = ACTIONS(4620), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_while] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_suspend] = ACTIONS(4618), + [anon_sym_sealed] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4618), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_override] = ACTIONS(4618), + [anon_sym_lateinit] = ACTIONS(4618), + [anon_sym_public] = ACTIONS(4618), + [anon_sym_private] = ACTIONS(4618), + [anon_sym_internal] = ACTIONS(4618), + [anon_sym_protected] = ACTIONS(4618), + [anon_sym_tailrec] = ACTIONS(4618), + [anon_sym_operator] = ACTIONS(4618), + [anon_sym_infix] = ACTIONS(4618), + [anon_sym_inline] = ACTIONS(4618), + [anon_sym_external] = ACTIONS(4618), + [sym_property_modifier] = ACTIONS(4618), + [anon_sym_abstract] = ACTIONS(4618), + [anon_sym_final] = ACTIONS(4618), + [anon_sym_open] = ACTIONS(4618), + [anon_sym_vararg] = ACTIONS(4618), + [anon_sym_noinline] = ACTIONS(4618), + [anon_sym_crossinline] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), + [sym_multiline_comment] = ACTIONS(3), + }, + [3349] = { + [sym_catch_block] = STATE(3349), + [aux_sym_try_expression_repeat1] = STATE(3349), + [sym__alpha_identifier] = ACTIONS(4110), + [anon_sym_AT] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_DOT] = ACTIONS(4110), + [anon_sym_as] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_LPAREN] = ACTIONS(4112), + [anon_sym_COMMA] = ACTIONS(4112), + [anon_sym_LT] = ACTIONS(4110), + [anon_sym_GT] = ACTIONS(4110), + [anon_sym_where] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_get] = ACTIONS(4110), + [anon_sym_set] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4110), + [sym_label] = ACTIONS(4112), + [anon_sym_in] = ACTIONS(4110), + [anon_sym_DOT_DOT] = ACTIONS(4112), + [anon_sym_QMARK_COLON] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_PIPE_PIPE] = ACTIONS(4112), + [anon_sym_else] = ACTIONS(4110), + [anon_sym_catch] = ACTIONS(6746), + [anon_sym_finally] = ACTIONS(4110), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_PLUS_EQ] = ACTIONS(4112), + [anon_sym_DASH_EQ] = ACTIONS(4112), + [anon_sym_STAR_EQ] = ACTIONS(4112), + [anon_sym_SLASH_EQ] = ACTIONS(4112), + [anon_sym_PERCENT_EQ] = ACTIONS(4112), + [anon_sym_BANG_EQ] = ACTIONS(4110), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4112), + [anon_sym_EQ_EQ] = ACTIONS(4110), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4112), + [anon_sym_LT_EQ] = ACTIONS(4112), + [anon_sym_GT_EQ] = ACTIONS(4112), + [anon_sym_BANGin] = ACTIONS(4112), + [anon_sym_is] = ACTIONS(4110), + [anon_sym_BANGis] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_SLASH] = ACTIONS(4110), + [anon_sym_PERCENT] = ACTIONS(4110), + [anon_sym_as_QMARK] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_BANG_BANG] = ACTIONS(4112), + [anon_sym_suspend] = ACTIONS(4110), + [anon_sym_sealed] = ACTIONS(4110), + [anon_sym_annotation] = ACTIONS(4110), + [anon_sym_data] = ACTIONS(4110), + [anon_sym_inner] = ACTIONS(4110), + [anon_sym_value] = ACTIONS(4110), + [anon_sym_override] = ACTIONS(4110), + [anon_sym_lateinit] = ACTIONS(4110), + [anon_sym_public] = ACTIONS(4110), + [anon_sym_private] = ACTIONS(4110), + [anon_sym_internal] = ACTIONS(4110), + [anon_sym_protected] = ACTIONS(4110), + [anon_sym_tailrec] = ACTIONS(4110), + [anon_sym_operator] = ACTIONS(4110), + [anon_sym_infix] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym_external] = ACTIONS(4110), + [sym_property_modifier] = ACTIONS(4110), + [anon_sym_abstract] = ACTIONS(4110), + [anon_sym_final] = ACTIONS(4110), + [anon_sym_open] = ACTIONS(4110), + [anon_sym_vararg] = ACTIONS(4110), + [anon_sym_noinline] = ACTIONS(4110), + [anon_sym_crossinline] = ACTIONS(4110), + [anon_sym_expect] = ACTIONS(4110), + [anon_sym_actual] = ACTIONS(4110), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4112), + [sym__automatic_semicolon] = ACTIONS(4112), + [sym_safe_nav] = ACTIONS(4112), + [sym_multiline_comment] = ACTIONS(3), + }, + [3350] = { + [sym__alpha_identifier] = ACTIONS(4270), + [anon_sym_AT] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_RBRACK] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [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_SEMI] = ACTIONS(4272), + [anon_sym_get] = ACTIONS(4270), + [anon_sym_set] = 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_value] = 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), + }, + [3351] = { + [sym_enum_class_body] = STATE(3376), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_RBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_RPAREN] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [anon_sym_DASH_GT] = ACTIONS(4620), + [sym_label] = ACTIONS(4620), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_while] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_suspend] = ACTIONS(4618), + [anon_sym_sealed] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4618), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_override] = ACTIONS(4618), + [anon_sym_lateinit] = ACTIONS(4618), + [anon_sym_public] = ACTIONS(4618), + [anon_sym_private] = ACTIONS(4618), + [anon_sym_internal] = ACTIONS(4618), + [anon_sym_protected] = ACTIONS(4618), + [anon_sym_tailrec] = ACTIONS(4618), + [anon_sym_operator] = ACTIONS(4618), + [anon_sym_infix] = ACTIONS(4618), + [anon_sym_inline] = ACTIONS(4618), + [anon_sym_external] = ACTIONS(4618), + [sym_property_modifier] = ACTIONS(4618), + [anon_sym_abstract] = ACTIONS(4618), + [anon_sym_final] = ACTIONS(4618), + [anon_sym_open] = ACTIONS(4618), + [anon_sym_vararg] = ACTIONS(4618), + [anon_sym_noinline] = ACTIONS(4618), + [anon_sym_crossinline] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), + [sym_multiline_comment] = ACTIONS(3), + }, + [3352] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [anon_sym_DASH_GT] = ACTIONS(3102), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [3353] = { + [sym_enum_class_body] = STATE(3372), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_DASH_GT] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), + [sym_multiline_comment] = ACTIONS(3), + }, + [3354] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3052), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [3355] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1603), + [sym__comparison_operator] = STATE(1602), + [sym__in_operator] = STATE(1601), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1600), + [sym__multiplicative_operator] = STATE(1599), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1598), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_DASH_GT] = ACTIONS(3082), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(6664), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(6666), + [anon_sym_QMARK_COLON] = ACTIONS(6668), + [anon_sym_AMP_AMP] = ACTIONS(6670), + [anon_sym_PIPE_PIPE] = ACTIONS(6672), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(6676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(6678), + [anon_sym_EQ_EQ] = ACTIONS(6676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(6678), + [anon_sym_LT_EQ] = ACTIONS(6680), + [anon_sym_GT_EQ] = ACTIONS(6680), + [anon_sym_BANGin] = ACTIONS(6682), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(6688), + [anon_sym_DASH] = ACTIONS(6688), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [3356] = { + [sym_class_body] = STATE(3369), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3357] = { [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4662), + [anon_sym_AT] = ACTIONS(4664), [anon_sym_LBRACK] = ACTIONS(4664), [anon_sym_RBRACK] = ACTIONS(4664), [anon_sym_DOT] = ACTIONS(4662), @@ -388072,6 +389097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(4664), [anon_sym_COMMA] = ACTIONS(4664), [anon_sym_RPAREN] = ACTIONS(4664), + [anon_sym_by] = ACTIONS(4662), [anon_sym_LT] = ACTIONS(4662), [anon_sym_GT] = ACTIONS(4662), [anon_sym_where] = ACTIONS(4662), @@ -388138,5590 +389164,5165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4662), [anon_sym_actual] = ACTIONS(4662), [sym_line_comment] = ACTIONS(3), - [anon_sym_AT2] = ACTIONS(6805), [sym__backtick_identifier] = ACTIONS(4664), [sym_safe_nav] = ACTIONS(4664), [sym_multiline_comment] = ACTIONS(3), }, - [3349] = { - [sym__alpha_identifier] = ACTIONS(4708), - [anon_sym_AT] = ACTIONS(4710), - [anon_sym_LBRACK] = ACTIONS(4710), - [anon_sym_RBRACK] = ACTIONS(4710), - [anon_sym_DOT] = ACTIONS(4708), - [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_by] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4708), - [anon_sym_GT] = ACTIONS(4708), - [anon_sym_where] = 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_value] = 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), - [sym__backtick_identifier] = ACTIONS(4710), - [sym_safe_nav] = ACTIONS(4710), - [sym_multiline_comment] = ACTIONS(3), - }, - [3350] = { - [sym_enum_class_body] = STATE(3467), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_RBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(5508), - [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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [anon_sym_DASH_GT] = ACTIONS(4756), - [sym_label] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_while] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), - [sym_multiline_comment] = ACTIONS(3), - }, - [3351] = { - [sym_class_body] = STATE(3536), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [3352] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3131), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(6723), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3353] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3127), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3354] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3123), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3355] = { - [sym_enum_class_body] = STATE(3469), - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [anon_sym_DASH_GT] = ACTIONS(4417), - [sym_label] = ACTIONS(4417), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_while] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_suspend] = ACTIONS(4415), - [anon_sym_sealed] = ACTIONS(4415), - [anon_sym_annotation] = ACTIONS(4415), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_override] = ACTIONS(4415), - [anon_sym_lateinit] = ACTIONS(4415), - [anon_sym_public] = ACTIONS(4415), - [anon_sym_private] = ACTIONS(4415), - [anon_sym_internal] = ACTIONS(4415), - [anon_sym_protected] = ACTIONS(4415), - [anon_sym_tailrec] = ACTIONS(4415), - [anon_sym_operator] = ACTIONS(4415), - [anon_sym_infix] = ACTIONS(4415), - [anon_sym_inline] = ACTIONS(4415), - [anon_sym_external] = ACTIONS(4415), - [sym_property_modifier] = ACTIONS(4415), - [anon_sym_abstract] = ACTIONS(4415), - [anon_sym_final] = ACTIONS(4415), - [anon_sym_open] = ACTIONS(4415), - [anon_sym_vararg] = ACTIONS(4415), - [anon_sym_noinline] = ACTIONS(4415), - [anon_sym_crossinline] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), - }, - [3356] = { - [sym_class_body] = STATE(3475), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3357] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3116), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, [3358] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3143), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(6727), + [sym_enum_class_body] = STATE(3369), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, [3359] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_DASH_GT] = ACTIONS(3161), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(6727), + [aux_sym__delegation_specifiers_repeat1] = STATE(3359), + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_RBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [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(6749), + [anon_sym_RPAREN] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4611), + [anon_sym_where] = 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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, [3360] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3168), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(6727), + [sym_class_body] = STATE(3377), + [sym__alpha_identifier] = ACTIONS(4607), + [anon_sym_AT] = ACTIONS(4609), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_RBRACK] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4609), + [anon_sym_RPAREN] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_where] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4609), + [anon_sym_get] = ACTIONS(4607), + [anon_sym_set] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [anon_sym_DASH_GT] = ACTIONS(4609), + [sym_label] = ACTIONS(4609), + [anon_sym_in] = ACTIONS(4607), + [anon_sym_while] = ACTIONS(4607), + [anon_sym_DOT_DOT] = ACTIONS(4609), + [anon_sym_QMARK_COLON] = ACTIONS(4609), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4609), + [anon_sym_else] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4609), + [anon_sym_PLUS_EQ] = ACTIONS(4609), + [anon_sym_DASH_EQ] = ACTIONS(4609), + [anon_sym_STAR_EQ] = ACTIONS(4609), + [anon_sym_SLASH_EQ] = ACTIONS(4609), + [anon_sym_PERCENT_EQ] = ACTIONS(4609), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4609), + [anon_sym_BANGin] = ACTIONS(4609), + [anon_sym_is] = ACTIONS(4607), + [anon_sym_BANGis] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_as_QMARK] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4609), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_BANG_BANG] = ACTIONS(4609), + [anon_sym_suspend] = ACTIONS(4607), + [anon_sym_sealed] = ACTIONS(4607), + [anon_sym_annotation] = ACTIONS(4607), + [anon_sym_data] = ACTIONS(4607), + [anon_sym_inner] = ACTIONS(4607), + [anon_sym_value] = ACTIONS(4607), + [anon_sym_override] = ACTIONS(4607), + [anon_sym_lateinit] = ACTIONS(4607), + [anon_sym_public] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4607), + [anon_sym_internal] = ACTIONS(4607), + [anon_sym_protected] = ACTIONS(4607), + [anon_sym_tailrec] = ACTIONS(4607), + [anon_sym_operator] = ACTIONS(4607), + [anon_sym_infix] = ACTIONS(4607), + [anon_sym_inline] = ACTIONS(4607), + [anon_sym_external] = ACTIONS(4607), + [sym_property_modifier] = ACTIONS(4607), + [anon_sym_abstract] = ACTIONS(4607), + [anon_sym_final] = ACTIONS(4607), + [anon_sym_open] = ACTIONS(4607), + [anon_sym_vararg] = ACTIONS(4607), + [anon_sym_noinline] = ACTIONS(4607), + [anon_sym_crossinline] = ACTIONS(4607), + [anon_sym_expect] = ACTIONS(4607), + [anon_sym_actual] = ACTIONS(4607), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4609), + [sym_safe_nav] = ACTIONS(4609), [sym_multiline_comment] = ACTIONS(3), }, [3361] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1989), - [sym__comparison_operator] = STATE(1991), - [sym__in_operator] = STATE(1992), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1993), - [sym__multiplicative_operator] = STATE(1994), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1995), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(6711), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(6713), - [anon_sym_DASH_GT] = ACTIONS(3175), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(6717), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(6719), - [anon_sym_QMARK_COLON] = ACTIONS(6721), - [anon_sym_AMP_AMP] = ACTIONS(6723), - [anon_sym_PIPE_PIPE] = ACTIONS(6725), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(6729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(6731), - [anon_sym_EQ_EQ] = ACTIONS(6729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(6731), - [anon_sym_LT_EQ] = ACTIONS(6733), - [anon_sym_GT_EQ] = ACTIONS(6733), - [anon_sym_BANGin] = ACTIONS(6735), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(6741), - [anon_sym_DASH] = ACTIONS(6741), - [anon_sym_SLASH] = ACTIONS(6713), - [anon_sym_PERCENT] = ACTIONS(6713), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(6580), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [anon_sym_DASH_GT] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), [sym_multiline_comment] = ACTIONS(3), }, [3362] = { - [sym_enum_class_body] = STATE(3475), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [sym__alpha_identifier] = ACTIONS(4603), + [anon_sym_AT] = ACTIONS(4605), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_RBRACK] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4603), + [anon_sym_as] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4605), + [anon_sym_RBRACE] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4605), + [anon_sym_RPAREN] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4603), + [anon_sym_where] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4605), + [anon_sym_get] = ACTIONS(4603), + [anon_sym_set] = ACTIONS(4603), + [anon_sym_STAR] = ACTIONS(4603), + [anon_sym_DASH_GT] = ACTIONS(4605), + [sym_label] = ACTIONS(4605), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_while] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4605), + [anon_sym_AMP_AMP] = ACTIONS(4605), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(4603), + [anon_sym_COLON_COLON] = ACTIONS(4605), + [anon_sym_PLUS_EQ] = ACTIONS(4605), + [anon_sym_DASH_EQ] = ACTIONS(4605), + [anon_sym_STAR_EQ] = ACTIONS(4605), + [anon_sym_SLASH_EQ] = ACTIONS(4605), + [anon_sym_PERCENT_EQ] = ACTIONS(4605), + [anon_sym_BANG_EQ] = ACTIONS(4603), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4605), + [anon_sym_EQ_EQ] = ACTIONS(4603), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4605), + [anon_sym_BANGin] = ACTIONS(4605), + [anon_sym_is] = ACTIONS(4603), + [anon_sym_BANGis] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_as_QMARK] = ACTIONS(4605), + [anon_sym_PLUS_PLUS] = ACTIONS(4605), + [anon_sym_DASH_DASH] = ACTIONS(4605), + [anon_sym_BANG_BANG] = ACTIONS(4605), + [anon_sym_suspend] = ACTIONS(4603), + [anon_sym_sealed] = ACTIONS(4603), + [anon_sym_annotation] = ACTIONS(4603), + [anon_sym_data] = ACTIONS(4603), + [anon_sym_inner] = ACTIONS(4603), + [anon_sym_value] = ACTIONS(4603), + [anon_sym_override] = ACTIONS(4603), + [anon_sym_lateinit] = ACTIONS(4603), + [anon_sym_public] = ACTIONS(4603), + [anon_sym_private] = ACTIONS(4603), + [anon_sym_internal] = ACTIONS(4603), + [anon_sym_protected] = ACTIONS(4603), + [anon_sym_tailrec] = ACTIONS(4603), + [anon_sym_operator] = ACTIONS(4603), + [anon_sym_infix] = ACTIONS(4603), + [anon_sym_inline] = ACTIONS(4603), + [anon_sym_external] = ACTIONS(4603), + [sym_property_modifier] = ACTIONS(4603), + [anon_sym_abstract] = ACTIONS(4603), + [anon_sym_final] = ACTIONS(4603), + [anon_sym_open] = ACTIONS(4603), + [anon_sym_vararg] = ACTIONS(4603), + [anon_sym_noinline] = ACTIONS(4603), + [anon_sym_crossinline] = ACTIONS(4603), + [anon_sym_expect] = ACTIONS(4603), + [anon_sym_actual] = ACTIONS(4603), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4605), + [sym_safe_nav] = ACTIONS(4605), [sym_multiline_comment] = ACTIONS(3), }, [3363] = { - [sym_class_body] = STATE(3477), - [sym__alpha_identifier] = ACTIONS(4672), - [anon_sym_AT] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(4674), - [anon_sym_RBRACK] = ACTIONS(4674), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_COMMA] = ACTIONS(4674), - [anon_sym_RPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4672), - [anon_sym_GT] = ACTIONS(4672), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_SEMI] = ACTIONS(4674), - [anon_sym_get] = ACTIONS(4672), - [anon_sym_set] = ACTIONS(4672), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4674), - [sym_label] = ACTIONS(4674), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_while] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(4674), - [anon_sym_QMARK_COLON] = ACTIONS(4674), - [anon_sym_AMP_AMP] = ACTIONS(4674), - [anon_sym_PIPE_PIPE] = ACTIONS(4674), - [anon_sym_else] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_PLUS_EQ] = ACTIONS(4674), - [anon_sym_DASH_EQ] = ACTIONS(4674), - [anon_sym_STAR_EQ] = ACTIONS(4674), - [anon_sym_SLASH_EQ] = ACTIONS(4674), - [anon_sym_PERCENT_EQ] = ACTIONS(4674), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), - [anon_sym_LT_EQ] = ACTIONS(4674), - [anon_sym_GT_EQ] = ACTIONS(4674), - [anon_sym_BANGin] = ACTIONS(4674), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_BANGis] = ACTIONS(4674), - [anon_sym_PLUS] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_as_QMARK] = ACTIONS(4674), - [anon_sym_PLUS_PLUS] = ACTIONS(4674), - [anon_sym_DASH_DASH] = ACTIONS(4674), - [anon_sym_BANG_BANG] = ACTIONS(4674), - [anon_sym_suspend] = ACTIONS(4672), - [anon_sym_sealed] = ACTIONS(4672), - [anon_sym_annotation] = ACTIONS(4672), - [anon_sym_data] = ACTIONS(4672), - [anon_sym_inner] = ACTIONS(4672), - [anon_sym_value] = ACTIONS(4672), - [anon_sym_override] = ACTIONS(4672), - [anon_sym_lateinit] = ACTIONS(4672), - [anon_sym_public] = ACTIONS(4672), - [anon_sym_private] = ACTIONS(4672), - [anon_sym_internal] = ACTIONS(4672), - [anon_sym_protected] = ACTIONS(4672), - [anon_sym_tailrec] = ACTIONS(4672), - [anon_sym_operator] = ACTIONS(4672), - [anon_sym_infix] = ACTIONS(4672), - [anon_sym_inline] = ACTIONS(4672), - [anon_sym_external] = ACTIONS(4672), - [sym_property_modifier] = ACTIONS(4672), - [anon_sym_abstract] = ACTIONS(4672), - [anon_sym_final] = ACTIONS(4672), - [anon_sym_open] = ACTIONS(4672), - [anon_sym_vararg] = ACTIONS(4672), - [anon_sym_noinline] = ACTIONS(4672), - [anon_sym_crossinline] = ACTIONS(4672), - [anon_sym_expect] = ACTIONS(4672), - [anon_sym_actual] = ACTIONS(4672), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4674), - [sym_safe_nav] = ACTIONS(4674), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4154), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), [sym_multiline_comment] = ACTIONS(3), }, [3364] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_by] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4122), - [sym__quest] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [sym_label] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), + [sym_class_body] = STATE(3406), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_DASH_GT] = ACTIONS(4337), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), [sym_multiline_comment] = ACTIONS(3), }, [3365] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4760), - [anon_sym_RBRACK] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4758), - [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_SEMI] = ACTIONS(4760), - [anon_sym_get] = ACTIONS(4758), - [anon_sym_set] = ACTIONS(4758), - [anon_sym_STAR] = ACTIONS(4758), - [anon_sym_DASH_GT] = ACTIONS(4760), - [sym_label] = ACTIONS(4760), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_while] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_QMARK_COLON] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [anon_sym_else] = ACTIONS(4758), - [anon_sym_COLON_COLON] = ACTIONS(4760), - [anon_sym_PLUS_EQ] = ACTIONS(4760), - [anon_sym_DASH_EQ] = ACTIONS(4760), - [anon_sym_STAR_EQ] = ACTIONS(4760), - [anon_sym_SLASH_EQ] = ACTIONS(4760), - [anon_sym_PERCENT_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_BANGin] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4758), - [anon_sym_BANGis] = ACTIONS(4760), - [anon_sym_PLUS] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_SLASH] = ACTIONS(4758), - [anon_sym_PERCENT] = ACTIONS(4758), - [anon_sym_as_QMARK] = ACTIONS(4760), - [anon_sym_PLUS_PLUS] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4760), - [anon_sym_BANG_BANG] = ACTIONS(4760), - [anon_sym_suspend] = ACTIONS(4758), - [anon_sym_sealed] = ACTIONS(4758), - [anon_sym_annotation] = ACTIONS(4758), - [anon_sym_data] = ACTIONS(4758), - [anon_sym_inner] = ACTIONS(4758), - [anon_sym_value] = ACTIONS(4758), - [anon_sym_override] = ACTIONS(4758), - [anon_sym_lateinit] = ACTIONS(4758), - [anon_sym_public] = ACTIONS(4758), - [anon_sym_private] = ACTIONS(4758), - [anon_sym_internal] = ACTIONS(4758), - [anon_sym_protected] = ACTIONS(4758), - [anon_sym_tailrec] = ACTIONS(4758), - [anon_sym_operator] = ACTIONS(4758), - [anon_sym_infix] = ACTIONS(4758), - [anon_sym_inline] = ACTIONS(4758), - [anon_sym_external] = ACTIONS(4758), - [sym_property_modifier] = ACTIONS(4758), - [anon_sym_abstract] = ACTIONS(4758), - [anon_sym_final] = ACTIONS(4758), - [anon_sym_open] = ACTIONS(4758), - [anon_sym_vararg] = ACTIONS(4758), - [anon_sym_noinline] = ACTIONS(4758), - [anon_sym_crossinline] = ACTIONS(4758), - [anon_sym_expect] = ACTIONS(4758), - [anon_sym_actual] = ACTIONS(4758), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), + [aux_sym_user_type_repeat1] = STATE(3336), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(6752), + [anon_sym_as] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_LT] = ACTIONS(4103), + [anon_sym_GT] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_AMP] = ACTIONS(4103), + [sym__quest] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4103), + [sym_label] = ACTIONS(4105), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_DOT_DOT] = ACTIONS(4105), + [anon_sym_QMARK_COLON] = ACTIONS(4105), + [anon_sym_AMP_AMP] = ACTIONS(4105), + [anon_sym_PIPE_PIPE] = ACTIONS(4105), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), + [anon_sym_DASH_EQ] = ACTIONS(4105), + [anon_sym_STAR_EQ] = ACTIONS(4105), + [anon_sym_SLASH_EQ] = ACTIONS(4105), + [anon_sym_PERCENT_EQ] = ACTIONS(4105), + [anon_sym_BANG_EQ] = ACTIONS(4103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4105), + [anon_sym_EQ_EQ] = ACTIONS(4103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4105), + [anon_sym_LT_EQ] = ACTIONS(4105), + [anon_sym_GT_EQ] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_SLASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_as_QMARK] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG_BANG] = ACTIONS(4105), + [anon_sym_suspend] = ACTIONS(4103), + [anon_sym_sealed] = ACTIONS(4103), + [anon_sym_annotation] = ACTIONS(4103), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4103), + [anon_sym_lateinit] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_internal] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_tailrec] = ACTIONS(4103), + [anon_sym_operator] = ACTIONS(4103), + [anon_sym_infix] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_external] = ACTIONS(4103), + [sym_property_modifier] = ACTIONS(4103), + [anon_sym_abstract] = ACTIONS(4103), + [anon_sym_final] = ACTIONS(4103), + [anon_sym_open] = ACTIONS(4103), + [anon_sym_vararg] = ACTIONS(4103), + [anon_sym_noinline] = ACTIONS(4103), + [anon_sym_crossinline] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4105), + [sym__automatic_semicolon] = ACTIONS(4105), + [sym_safe_nav] = ACTIONS(4105), [sym_multiline_comment] = ACTIONS(3), }, [3366] = { - [sym_type_constraints] = STATE(3768), - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym__alpha_identifier] = ACTIONS(5007), + [anon_sym_AT] = ACTIONS(5009), + [anon_sym_LBRACK] = ACTIONS(5009), + [anon_sym_RBRACK] = ACTIONS(5009), + [anon_sym_DOT] = ACTIONS(5007), + [anon_sym_as] = ACTIONS(5007), + [anon_sym_EQ] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5009), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_COMMA] = ACTIONS(5009), + [anon_sym_RPAREN] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_where] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_get] = ACTIONS(5007), + [anon_sym_set] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5009), + [sym_label] = ACTIONS(5009), + [anon_sym_in] = ACTIONS(5007), + [anon_sym_while] = ACTIONS(5007), + [anon_sym_DOT_DOT] = ACTIONS(5009), + [anon_sym_QMARK_COLON] = ACTIONS(5009), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5009), + [anon_sym_else] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5009), + [anon_sym_PLUS_EQ] = ACTIONS(5009), + [anon_sym_DASH_EQ] = ACTIONS(5009), + [anon_sym_STAR_EQ] = ACTIONS(5009), + [anon_sym_SLASH_EQ] = ACTIONS(5009), + [anon_sym_PERCENT_EQ] = ACTIONS(5009), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5009), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5009), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5009), + [anon_sym_BANGin] = ACTIONS(5009), + [anon_sym_is] = ACTIONS(5007), + [anon_sym_BANGis] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_as_QMARK] = ACTIONS(5009), + [anon_sym_PLUS_PLUS] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5009), + [anon_sym_BANG_BANG] = ACTIONS(5009), + [anon_sym_suspend] = ACTIONS(5007), + [anon_sym_sealed] = ACTIONS(5007), + [anon_sym_annotation] = ACTIONS(5007), + [anon_sym_data] = ACTIONS(5007), + [anon_sym_inner] = ACTIONS(5007), + [anon_sym_value] = ACTIONS(5007), + [anon_sym_override] = ACTIONS(5007), + [anon_sym_lateinit] = ACTIONS(5007), + [anon_sym_public] = ACTIONS(5007), + [anon_sym_private] = ACTIONS(5007), + [anon_sym_internal] = ACTIONS(5007), + [anon_sym_protected] = ACTIONS(5007), + [anon_sym_tailrec] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5007), + [anon_sym_infix] = ACTIONS(5007), + [anon_sym_inline] = ACTIONS(5007), + [anon_sym_external] = ACTIONS(5007), + [sym_property_modifier] = ACTIONS(5007), + [anon_sym_abstract] = ACTIONS(5007), + [anon_sym_final] = ACTIONS(5007), + [anon_sym_open] = ACTIONS(5007), + [anon_sym_vararg] = ACTIONS(5007), + [anon_sym_noinline] = ACTIONS(5007), + [anon_sym_crossinline] = ACTIONS(5007), + [anon_sym_expect] = ACTIONS(5007), + [anon_sym_actual] = ACTIONS(5007), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5009), + [sym_safe_nav] = ACTIONS(5009), [sym_multiline_comment] = ACTIONS(3), }, [3367] = { - [sym__alpha_identifier] = ACTIONS(4904), - [anon_sym_AT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4904), - [anon_sym_as] = ACTIONS(4904), - [anon_sym_EQ] = ACTIONS(4904), - [anon_sym_LBRACE] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_where] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_get] = ACTIONS(4904), - [anon_sym_set] = ACTIONS(4904), - [anon_sym_STAR] = ACTIONS(4904), - [anon_sym_DASH_GT] = ACTIONS(4906), - [sym_label] = ACTIONS(4906), - [anon_sym_in] = ACTIONS(4904), - [anon_sym_while] = ACTIONS(4904), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_QMARK_COLON] = ACTIONS(4906), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_else] = ACTIONS(4904), - [anon_sym_COLON_COLON] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(4906), - [anon_sym_DASH_EQ] = ACTIONS(4906), - [anon_sym_STAR_EQ] = ACTIONS(4906), - [anon_sym_SLASH_EQ] = ACTIONS(4906), - [anon_sym_PERCENT_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_BANGin] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4904), - [anon_sym_BANGis] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_SLASH] = ACTIONS(4904), - [anon_sym_PERCENT] = ACTIONS(4904), - [anon_sym_as_QMARK] = ACTIONS(4906), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_BANG_BANG] = ACTIONS(4906), - [anon_sym_suspend] = ACTIONS(4904), - [anon_sym_sealed] = ACTIONS(4904), - [anon_sym_annotation] = ACTIONS(4904), - [anon_sym_data] = ACTIONS(4904), - [anon_sym_inner] = ACTIONS(4904), - [anon_sym_value] = ACTIONS(4904), - [anon_sym_override] = ACTIONS(4904), - [anon_sym_lateinit] = ACTIONS(4904), - [anon_sym_public] = ACTIONS(4904), - [anon_sym_private] = ACTIONS(4904), - [anon_sym_internal] = ACTIONS(4904), - [anon_sym_protected] = ACTIONS(4904), - [anon_sym_tailrec] = ACTIONS(4904), - [anon_sym_operator] = ACTIONS(4904), - [anon_sym_infix] = ACTIONS(4904), - [anon_sym_inline] = ACTIONS(4904), - [anon_sym_external] = ACTIONS(4904), - [sym_property_modifier] = ACTIONS(4904), - [anon_sym_abstract] = ACTIONS(4904), - [anon_sym_final] = ACTIONS(4904), - [anon_sym_open] = ACTIONS(4904), - [anon_sym_vararg] = ACTIONS(4904), - [anon_sym_noinline] = ACTIONS(4904), - [anon_sym_crossinline] = ACTIONS(4904), - [anon_sym_expect] = ACTIONS(4904), - [anon_sym_actual] = ACTIONS(4904), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4906), - [sym_safe_nav] = ACTIONS(4906), + [sym__alpha_identifier] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_RBRACK] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_as] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4714), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_COMMA] = ACTIONS(4716), + [anon_sym_RPAREN] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_where] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_get] = ACTIONS(4714), + [anon_sym_set] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_DASH_GT] = ACTIONS(4716), + [sym_label] = ACTIONS(4716), + [anon_sym_in] = ACTIONS(4714), + [anon_sym_while] = ACTIONS(4714), + [anon_sym_DOT_DOT] = ACTIONS(4716), + [anon_sym_QMARK_COLON] = ACTIONS(4716), + [anon_sym_AMP_AMP] = ACTIONS(4716), + [anon_sym_PIPE_PIPE] = ACTIONS(4716), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_COLON_COLON] = ACTIONS(4716), + [anon_sym_PLUS_EQ] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4716), + [anon_sym_STAR_EQ] = ACTIONS(4716), + [anon_sym_SLASH_EQ] = ACTIONS(4716), + [anon_sym_PERCENT_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ] = ACTIONS(4714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), + [anon_sym_LT_EQ] = ACTIONS(4716), + [anon_sym_GT_EQ] = ACTIONS(4716), + [anon_sym_BANGin] = ACTIONS(4716), + [anon_sym_is] = ACTIONS(4714), + [anon_sym_BANGis] = ACTIONS(4716), + [anon_sym_PLUS] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4714), + [anon_sym_SLASH] = ACTIONS(4714), + [anon_sym_PERCENT] = ACTIONS(4714), + [anon_sym_as_QMARK] = ACTIONS(4716), + [anon_sym_PLUS_PLUS] = ACTIONS(4716), + [anon_sym_DASH_DASH] = ACTIONS(4716), + [anon_sym_BANG_BANG] = ACTIONS(4716), + [anon_sym_suspend] = ACTIONS(4714), + [anon_sym_sealed] = ACTIONS(4714), + [anon_sym_annotation] = ACTIONS(4714), + [anon_sym_data] = ACTIONS(4714), + [anon_sym_inner] = ACTIONS(4714), + [anon_sym_value] = ACTIONS(4714), + [anon_sym_override] = ACTIONS(4714), + [anon_sym_lateinit] = ACTIONS(4714), + [anon_sym_public] = ACTIONS(4714), + [anon_sym_private] = ACTIONS(4714), + [anon_sym_internal] = ACTIONS(4714), + [anon_sym_protected] = ACTIONS(4714), + [anon_sym_tailrec] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(4714), + [anon_sym_infix] = ACTIONS(4714), + [anon_sym_inline] = ACTIONS(4714), + [anon_sym_external] = ACTIONS(4714), + [sym_property_modifier] = ACTIONS(4714), + [anon_sym_abstract] = ACTIONS(4714), + [anon_sym_final] = ACTIONS(4714), + [anon_sym_open] = ACTIONS(4714), + [anon_sym_vararg] = ACTIONS(4714), + [anon_sym_noinline] = ACTIONS(4714), + [anon_sym_crossinline] = ACTIONS(4714), + [anon_sym_expect] = ACTIONS(4714), + [anon_sym_actual] = ACTIONS(4714), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4716), + [sym_safe_nav] = ACTIONS(4716), [sym_multiline_comment] = ACTIONS(3), }, [3368] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_as] = ACTIONS(4315), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(4315), - [anon_sym_GT] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(6807), - [sym__quest] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [sym_label] = ACTIONS(4317), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_DOT_DOT] = ACTIONS(4317), - [anon_sym_QMARK_COLON] = ACTIONS(4317), - [anon_sym_AMP_AMP] = ACTIONS(4317), - [anon_sym_PIPE_PIPE] = ACTIONS(4317), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_PLUS_EQ] = ACTIONS(4317), - [anon_sym_DASH_EQ] = ACTIONS(4317), - [anon_sym_STAR_EQ] = ACTIONS(4317), - [anon_sym_SLASH_EQ] = ACTIONS(4317), - [anon_sym_PERCENT_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ] = ACTIONS(4315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ] = ACTIONS(4315), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4317), - [anon_sym_LT_EQ] = ACTIONS(4317), - [anon_sym_GT_EQ] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_SLASH] = ACTIONS(4315), - [anon_sym_PERCENT] = ACTIONS(4315), - [anon_sym_as_QMARK] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG_BANG] = ACTIONS(4317), - [anon_sym_suspend] = ACTIONS(4315), - [anon_sym_sealed] = ACTIONS(4315), - [anon_sym_annotation] = ACTIONS(4315), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_override] = ACTIONS(4315), - [anon_sym_lateinit] = ACTIONS(4315), - [anon_sym_public] = ACTIONS(4315), - [anon_sym_private] = ACTIONS(4315), - [anon_sym_internal] = ACTIONS(4315), - [anon_sym_protected] = ACTIONS(4315), - [anon_sym_tailrec] = ACTIONS(4315), - [anon_sym_operator] = ACTIONS(4315), - [anon_sym_infix] = ACTIONS(4315), - [anon_sym_inline] = ACTIONS(4315), - [anon_sym_external] = ACTIONS(4315), - [sym_property_modifier] = ACTIONS(4315), - [anon_sym_abstract] = ACTIONS(4315), - [anon_sym_final] = ACTIONS(4315), - [anon_sym_open] = ACTIONS(4315), - [anon_sym_vararg] = ACTIONS(4315), - [anon_sym_noinline] = ACTIONS(4315), - [anon_sym_crossinline] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4317), - [sym__automatic_semicolon] = ACTIONS(4317), - [sym_safe_nav] = ACTIONS(4317), + [sym__alpha_identifier] = ACTIONS(5053), + [anon_sym_AT] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_RBRACK] = ACTIONS(5055), + [anon_sym_DOT] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(5053), + [anon_sym_LBRACE] = ACTIONS(5055), + [anon_sym_RBRACE] = ACTIONS(5055), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_RPAREN] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_where] = ACTIONS(5053), + [anon_sym_SEMI] = ACTIONS(5055), + [anon_sym_get] = ACTIONS(5053), + [anon_sym_set] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_DASH_GT] = ACTIONS(5055), + [sym_label] = ACTIONS(5055), + [anon_sym_in] = ACTIONS(5053), + [anon_sym_while] = ACTIONS(5053), + [anon_sym_DOT_DOT] = ACTIONS(5055), + [anon_sym_QMARK_COLON] = ACTIONS(5055), + [anon_sym_AMP_AMP] = ACTIONS(5055), + [anon_sym_PIPE_PIPE] = ACTIONS(5055), + [anon_sym_else] = ACTIONS(5053), + [anon_sym_COLON_COLON] = ACTIONS(5055), + [anon_sym_PLUS_EQ] = ACTIONS(5055), + [anon_sym_DASH_EQ] = ACTIONS(5055), + [anon_sym_STAR_EQ] = ACTIONS(5055), + [anon_sym_SLASH_EQ] = ACTIONS(5055), + [anon_sym_PERCENT_EQ] = ACTIONS(5055), + [anon_sym_BANG_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5055), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5055), + [anon_sym_BANGin] = ACTIONS(5055), + [anon_sym_is] = ACTIONS(5053), + [anon_sym_BANGis] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5053), + [anon_sym_as_QMARK] = ACTIONS(5055), + [anon_sym_PLUS_PLUS] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5055), + [anon_sym_BANG_BANG] = ACTIONS(5055), + [anon_sym_suspend] = ACTIONS(5053), + [anon_sym_sealed] = ACTIONS(5053), + [anon_sym_annotation] = ACTIONS(5053), + [anon_sym_data] = ACTIONS(5053), + [anon_sym_inner] = ACTIONS(5053), + [anon_sym_value] = ACTIONS(5053), + [anon_sym_override] = ACTIONS(5053), + [anon_sym_lateinit] = ACTIONS(5053), + [anon_sym_public] = ACTIONS(5053), + [anon_sym_private] = ACTIONS(5053), + [anon_sym_internal] = ACTIONS(5053), + [anon_sym_protected] = ACTIONS(5053), + [anon_sym_tailrec] = ACTIONS(5053), + [anon_sym_operator] = ACTIONS(5053), + [anon_sym_infix] = ACTIONS(5053), + [anon_sym_inline] = ACTIONS(5053), + [anon_sym_external] = ACTIONS(5053), + [sym_property_modifier] = ACTIONS(5053), + [anon_sym_abstract] = ACTIONS(5053), + [anon_sym_final] = ACTIONS(5053), + [anon_sym_open] = ACTIONS(5053), + [anon_sym_vararg] = ACTIONS(5053), + [anon_sym_noinline] = ACTIONS(5053), + [anon_sym_crossinline] = ACTIONS(5053), + [anon_sym_expect] = ACTIONS(5053), + [anon_sym_actual] = ACTIONS(5053), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5055), + [sym_safe_nav] = ACTIONS(5055), [sym_multiline_comment] = ACTIONS(3), }, [3369] = { - [sym__alpha_identifier] = ACTIONS(4321), - [anon_sym_AT] = ACTIONS(4323), - [anon_sym_LBRACK] = ACTIONS(4323), - [anon_sym_DOT] = ACTIONS(4321), - [anon_sym_as] = ACTIONS(4321), - [anon_sym_EQ] = ACTIONS(4321), - [anon_sym_LBRACE] = ACTIONS(4323), - [anon_sym_RBRACE] = ACTIONS(4323), - [anon_sym_LPAREN] = ACTIONS(4323), - [anon_sym_COMMA] = ACTIONS(4323), - [anon_sym_by] = ACTIONS(4321), - [anon_sym_LT] = ACTIONS(4321), - [anon_sym_GT] = ACTIONS(4321), - [anon_sym_where] = ACTIONS(4321), - [anon_sym_SEMI] = ACTIONS(4323), - [anon_sym_get] = ACTIONS(4321), - [anon_sym_set] = ACTIONS(4321), - [sym__quest] = ACTIONS(4321), - [anon_sym_STAR] = ACTIONS(4321), - [anon_sym_DASH_GT] = ACTIONS(4325), - [sym_label] = ACTIONS(4323), - [anon_sym_in] = ACTIONS(4321), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_QMARK_COLON] = ACTIONS(4323), - [anon_sym_AMP_AMP] = ACTIONS(4323), - [anon_sym_PIPE_PIPE] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4321), - [anon_sym_COLON_COLON] = ACTIONS(4323), - [anon_sym_PLUS_EQ] = ACTIONS(4323), - [anon_sym_DASH_EQ] = ACTIONS(4323), - [anon_sym_STAR_EQ] = ACTIONS(4323), - [anon_sym_SLASH_EQ] = ACTIONS(4323), - [anon_sym_PERCENT_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4321), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), - [anon_sym_EQ_EQ] = ACTIONS(4321), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4323), - [anon_sym_BANGin] = ACTIONS(4323), - [anon_sym_is] = ACTIONS(4321), - [anon_sym_BANGis] = ACTIONS(4323), - [anon_sym_PLUS] = ACTIONS(4321), - [anon_sym_DASH] = ACTIONS(4321), - [anon_sym_SLASH] = ACTIONS(4321), - [anon_sym_PERCENT] = ACTIONS(4321), - [anon_sym_as_QMARK] = ACTIONS(4323), - [anon_sym_PLUS_PLUS] = ACTIONS(4323), - [anon_sym_DASH_DASH] = ACTIONS(4323), - [anon_sym_BANG_BANG] = ACTIONS(4323), - [anon_sym_suspend] = ACTIONS(4321), - [anon_sym_sealed] = ACTIONS(4321), - [anon_sym_annotation] = ACTIONS(4321), - [anon_sym_data] = ACTIONS(4321), - [anon_sym_inner] = ACTIONS(4321), - [anon_sym_value] = ACTIONS(4321), - [anon_sym_override] = ACTIONS(4321), - [anon_sym_lateinit] = ACTIONS(4321), - [anon_sym_public] = ACTIONS(4321), - [anon_sym_private] = ACTIONS(4321), - [anon_sym_internal] = ACTIONS(4321), - [anon_sym_protected] = ACTIONS(4321), - [anon_sym_tailrec] = ACTIONS(4321), - [anon_sym_operator] = ACTIONS(4321), - [anon_sym_infix] = ACTIONS(4321), - [anon_sym_inline] = ACTIONS(4321), - [anon_sym_external] = ACTIONS(4321), - [sym_property_modifier] = ACTIONS(4321), - [anon_sym_abstract] = ACTIONS(4321), - [anon_sym_final] = ACTIONS(4321), - [anon_sym_open] = ACTIONS(4321), - [anon_sym_vararg] = ACTIONS(4321), - [anon_sym_noinline] = ACTIONS(4321), - [anon_sym_crossinline] = ACTIONS(4321), - [anon_sym_expect] = ACTIONS(4321), - [anon_sym_actual] = ACTIONS(4321), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4323), - [sym__automatic_semicolon] = ACTIONS(4323), - [sym_safe_nav] = ACTIONS(4323), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_RBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(4620), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_RPAREN] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [anon_sym_DASH_GT] = ACTIONS(4620), + [sym_label] = ACTIONS(4620), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_while] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_suspend] = ACTIONS(4618), + [anon_sym_sealed] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4618), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_override] = ACTIONS(4618), + [anon_sym_lateinit] = ACTIONS(4618), + [anon_sym_public] = ACTIONS(4618), + [anon_sym_private] = ACTIONS(4618), + [anon_sym_internal] = ACTIONS(4618), + [anon_sym_protected] = ACTIONS(4618), + [anon_sym_tailrec] = ACTIONS(4618), + [anon_sym_operator] = ACTIONS(4618), + [anon_sym_infix] = ACTIONS(4618), + [anon_sym_inline] = ACTIONS(4618), + [anon_sym_external] = ACTIONS(4618), + [sym_property_modifier] = ACTIONS(4618), + [anon_sym_abstract] = ACTIONS(4618), + [anon_sym_final] = ACTIONS(4618), + [anon_sym_open] = ACTIONS(4618), + [anon_sym_vararg] = ACTIONS(4618), + [anon_sym_noinline] = ACTIONS(4618), + [anon_sym_crossinline] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), [sym_multiline_comment] = ACTIONS(3), }, [3370] = { - [sym__alpha_identifier] = ACTIONS(4315), - [anon_sym_AT] = ACTIONS(4317), - [anon_sym_LBRACK] = ACTIONS(4317), - [anon_sym_DOT] = ACTIONS(4315), - [anon_sym_as] = ACTIONS(4315), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_LBRACE] = ACTIONS(4317), - [anon_sym_RBRACE] = ACTIONS(4317), - [anon_sym_LPAREN] = ACTIONS(4317), - [anon_sym_COMMA] = ACTIONS(4317), - [anon_sym_by] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(4315), - [anon_sym_GT] = ACTIONS(4315), - [anon_sym_where] = ACTIONS(4315), - [anon_sym_SEMI] = ACTIONS(4317), - [anon_sym_get] = ACTIONS(4315), - [anon_sym_set] = ACTIONS(4315), - [anon_sym_AMP] = ACTIONS(6809), - [sym__quest] = ACTIONS(4315), - [anon_sym_STAR] = ACTIONS(4315), - [sym_label] = ACTIONS(4317), - [anon_sym_in] = ACTIONS(4315), - [anon_sym_DOT_DOT] = ACTIONS(4317), - [anon_sym_QMARK_COLON] = ACTIONS(4317), - [anon_sym_AMP_AMP] = ACTIONS(4317), - [anon_sym_PIPE_PIPE] = ACTIONS(4317), - [anon_sym_else] = ACTIONS(4315), - [anon_sym_COLON_COLON] = ACTIONS(4317), - [anon_sym_PLUS_EQ] = ACTIONS(4317), - [anon_sym_DASH_EQ] = ACTIONS(4317), - [anon_sym_STAR_EQ] = ACTIONS(4317), - [anon_sym_SLASH_EQ] = ACTIONS(4317), - [anon_sym_PERCENT_EQ] = ACTIONS(4317), - [anon_sym_BANG_EQ] = ACTIONS(4315), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4317), - [anon_sym_EQ_EQ] = ACTIONS(4315), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4317), - [anon_sym_LT_EQ] = ACTIONS(4317), - [anon_sym_GT_EQ] = ACTIONS(4317), - [anon_sym_BANGin] = ACTIONS(4317), - [anon_sym_is] = ACTIONS(4315), - [anon_sym_BANGis] = ACTIONS(4317), - [anon_sym_PLUS] = ACTIONS(4315), - [anon_sym_DASH] = ACTIONS(4315), - [anon_sym_SLASH] = ACTIONS(4315), - [anon_sym_PERCENT] = ACTIONS(4315), - [anon_sym_as_QMARK] = ACTIONS(4317), - [anon_sym_PLUS_PLUS] = ACTIONS(4317), - [anon_sym_DASH_DASH] = ACTIONS(4317), - [anon_sym_BANG_BANG] = ACTIONS(4317), - [anon_sym_suspend] = ACTIONS(4315), - [anon_sym_sealed] = ACTIONS(4315), - [anon_sym_annotation] = ACTIONS(4315), - [anon_sym_data] = ACTIONS(4315), - [anon_sym_inner] = ACTIONS(4315), - [anon_sym_value] = ACTIONS(4315), - [anon_sym_override] = ACTIONS(4315), - [anon_sym_lateinit] = ACTIONS(4315), - [anon_sym_public] = ACTIONS(4315), - [anon_sym_private] = ACTIONS(4315), - [anon_sym_internal] = ACTIONS(4315), - [anon_sym_protected] = ACTIONS(4315), - [anon_sym_tailrec] = ACTIONS(4315), - [anon_sym_operator] = ACTIONS(4315), - [anon_sym_infix] = ACTIONS(4315), - [anon_sym_inline] = ACTIONS(4315), - [anon_sym_external] = ACTIONS(4315), - [sym_property_modifier] = ACTIONS(4315), - [anon_sym_abstract] = ACTIONS(4315), - [anon_sym_final] = ACTIONS(4315), - [anon_sym_open] = ACTIONS(4315), - [anon_sym_vararg] = ACTIONS(4315), - [anon_sym_noinline] = ACTIONS(4315), - [anon_sym_crossinline] = ACTIONS(4315), - [anon_sym_expect] = ACTIONS(4315), - [anon_sym_actual] = ACTIONS(4315), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4317), - [sym__automatic_semicolon] = ACTIONS(4317), - [sym_safe_nav] = ACTIONS(4317), + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(6755), + [sym__quest] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), [sym_multiline_comment] = ACTIONS(3), }, [3371] = { - [aux_sym_nullable_type_repeat1] = STATE(3598), - [sym__alpha_identifier] = ACTIONS(4295), - [anon_sym_AT] = ACTIONS(4297), - [anon_sym_LBRACK] = ACTIONS(4297), - [anon_sym_DOT] = ACTIONS(4295), - [anon_sym_as] = ACTIONS(4295), - [anon_sym_EQ] = ACTIONS(4295), - [anon_sym_LBRACE] = ACTIONS(4297), - [anon_sym_RBRACE] = ACTIONS(4297), - [anon_sym_LPAREN] = ACTIONS(4297), - [anon_sym_COMMA] = ACTIONS(4297), - [anon_sym_by] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(4295), - [anon_sym_GT] = ACTIONS(4295), - [anon_sym_where] = ACTIONS(4295), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_get] = ACTIONS(4295), - [anon_sym_set] = ACTIONS(4295), - [sym__quest] = ACTIONS(6811), - [anon_sym_STAR] = ACTIONS(4295), - [sym_label] = ACTIONS(4297), - [anon_sym_in] = ACTIONS(4295), - [anon_sym_DOT_DOT] = ACTIONS(4297), - [anon_sym_QMARK_COLON] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [anon_sym_else] = ACTIONS(4295), - [anon_sym_COLON_COLON] = ACTIONS(4297), - [anon_sym_PLUS_EQ] = ACTIONS(4297), - [anon_sym_DASH_EQ] = ACTIONS(4297), - [anon_sym_STAR_EQ] = ACTIONS(4297), - [anon_sym_SLASH_EQ] = ACTIONS(4297), - [anon_sym_PERCENT_EQ] = ACTIONS(4297), - [anon_sym_BANG_EQ] = ACTIONS(4295), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4297), - [anon_sym_EQ_EQ] = ACTIONS(4295), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4297), - [anon_sym_LT_EQ] = ACTIONS(4297), - [anon_sym_GT_EQ] = ACTIONS(4297), - [anon_sym_BANGin] = ACTIONS(4297), - [anon_sym_is] = ACTIONS(4295), - [anon_sym_BANGis] = ACTIONS(4297), - [anon_sym_PLUS] = ACTIONS(4295), - [anon_sym_DASH] = ACTIONS(4295), - [anon_sym_SLASH] = ACTIONS(4295), - [anon_sym_PERCENT] = ACTIONS(4295), - [anon_sym_as_QMARK] = ACTIONS(4297), - [anon_sym_PLUS_PLUS] = ACTIONS(4297), - [anon_sym_DASH_DASH] = ACTIONS(4297), - [anon_sym_BANG_BANG] = ACTIONS(4297), - [anon_sym_suspend] = ACTIONS(4295), - [anon_sym_sealed] = ACTIONS(4295), - [anon_sym_annotation] = ACTIONS(4295), - [anon_sym_data] = ACTIONS(4295), - [anon_sym_inner] = ACTIONS(4295), - [anon_sym_value] = ACTIONS(4295), - [anon_sym_override] = ACTIONS(4295), - [anon_sym_lateinit] = ACTIONS(4295), - [anon_sym_public] = ACTIONS(4295), - [anon_sym_private] = ACTIONS(4295), - [anon_sym_internal] = ACTIONS(4295), - [anon_sym_protected] = ACTIONS(4295), - [anon_sym_tailrec] = ACTIONS(4295), - [anon_sym_operator] = ACTIONS(4295), - [anon_sym_infix] = ACTIONS(4295), - [anon_sym_inline] = ACTIONS(4295), - [anon_sym_external] = ACTIONS(4295), - [sym_property_modifier] = ACTIONS(4295), - [anon_sym_abstract] = ACTIONS(4295), - [anon_sym_final] = ACTIONS(4295), - [anon_sym_open] = ACTIONS(4295), - [anon_sym_vararg] = ACTIONS(4295), - [anon_sym_noinline] = ACTIONS(4295), - [anon_sym_crossinline] = ACTIONS(4295), - [anon_sym_expect] = ACTIONS(4295), - [anon_sym_actual] = ACTIONS(4295), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4297), - [sym__automatic_semicolon] = ACTIONS(4297), - [sym_safe_nav] = ACTIONS(4297), + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_RBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_RPAREN] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1682), + [anon_sym_set] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [anon_sym_DASH_GT] = ACTIONS(1684), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_while] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), + [anon_sym_suspend] = ACTIONS(1682), + [anon_sym_sealed] = ACTIONS(1682), + [anon_sym_annotation] = ACTIONS(1682), + [anon_sym_data] = ACTIONS(1682), + [anon_sym_inner] = ACTIONS(1682), + [anon_sym_value] = ACTIONS(1682), + [anon_sym_override] = ACTIONS(1682), + [anon_sym_lateinit] = ACTIONS(1682), + [anon_sym_public] = ACTIONS(1682), + [anon_sym_private] = ACTIONS(1682), + [anon_sym_internal] = ACTIONS(1682), + [anon_sym_protected] = ACTIONS(1682), + [anon_sym_tailrec] = ACTIONS(1682), + [anon_sym_operator] = ACTIONS(1682), + [anon_sym_infix] = ACTIONS(1682), + [anon_sym_inline] = ACTIONS(1682), + [anon_sym_external] = ACTIONS(1682), + [sym_property_modifier] = ACTIONS(1682), + [anon_sym_abstract] = ACTIONS(1682), + [anon_sym_final] = ACTIONS(1682), + [anon_sym_open] = ACTIONS(1682), + [anon_sym_vararg] = ACTIONS(1682), + [anon_sym_noinline] = ACTIONS(1682), + [anon_sym_crossinline] = ACTIONS(1682), + [anon_sym_expect] = ACTIONS(1682), + [anon_sym_actual] = ACTIONS(1682), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, [3372] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_RBRACK] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [anon_sym_DASH_GT] = ACTIONS(4946), - [sym_label] = ACTIONS(4946), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_while] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(6813), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_suspend] = ACTIONS(4944), - [anon_sym_sealed] = ACTIONS(4944), - [anon_sym_annotation] = ACTIONS(4944), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_override] = ACTIONS(4944), - [anon_sym_lateinit] = ACTIONS(4944), - [anon_sym_public] = ACTIONS(4944), - [anon_sym_private] = ACTIONS(4944), - [anon_sym_internal] = ACTIONS(4944), - [anon_sym_protected] = ACTIONS(4944), - [anon_sym_tailrec] = ACTIONS(4944), - [anon_sym_operator] = ACTIONS(4944), - [anon_sym_infix] = ACTIONS(4944), - [anon_sym_inline] = ACTIONS(4944), - [anon_sym_external] = ACTIONS(4944), - [sym_property_modifier] = ACTIONS(4944), - [anon_sym_abstract] = ACTIONS(4944), - [anon_sym_final] = ACTIONS(4944), - [anon_sym_open] = ACTIONS(4944), - [anon_sym_vararg] = ACTIONS(4944), - [anon_sym_noinline] = ACTIONS(4944), - [anon_sym_crossinline] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_RBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [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_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_value] = 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), }, [3373] = { - [sym__alpha_identifier] = ACTIONS(5063), - [anon_sym_AT] = ACTIONS(5065), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_RBRACK] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5063), - [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_SEMI] = ACTIONS(5065), - [anon_sym_get] = ACTIONS(5063), - [anon_sym_set] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [anon_sym_DASH_GT] = ACTIONS(5065), - [sym_label] = ACTIONS(5065), - [anon_sym_in] = ACTIONS(5063), - [anon_sym_while] = ACTIONS(5063), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_QMARK_COLON] = ACTIONS(5065), - [anon_sym_AMP_AMP] = ACTIONS(5065), - [anon_sym_PIPE_PIPE] = ACTIONS(5065), - [anon_sym_else] = ACTIONS(5063), - [anon_sym_COLON_COLON] = ACTIONS(5065), - [anon_sym_PLUS_EQ] = ACTIONS(5065), - [anon_sym_DASH_EQ] = ACTIONS(5065), - [anon_sym_STAR_EQ] = ACTIONS(5065), - [anon_sym_SLASH_EQ] = ACTIONS(5065), - [anon_sym_PERCENT_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ] = ACTIONS(5063), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), - [anon_sym_EQ_EQ] = ACTIONS(5063), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), - [anon_sym_LT_EQ] = ACTIONS(5065), - [anon_sym_GT_EQ] = ACTIONS(5065), - [anon_sym_BANGin] = ACTIONS(5065), - [anon_sym_is] = ACTIONS(5063), - [anon_sym_BANGis] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_as_QMARK] = ACTIONS(5065), - [anon_sym_PLUS_PLUS] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_BANG_BANG] = ACTIONS(5065), - [anon_sym_suspend] = ACTIONS(5063), - [anon_sym_sealed] = ACTIONS(5063), - [anon_sym_annotation] = ACTIONS(5063), - [anon_sym_data] = ACTIONS(5063), - [anon_sym_inner] = ACTIONS(5063), - [anon_sym_value] = ACTIONS(5063), - [anon_sym_override] = ACTIONS(5063), - [anon_sym_lateinit] = ACTIONS(5063), - [anon_sym_public] = ACTIONS(5063), - [anon_sym_private] = ACTIONS(5063), - [anon_sym_internal] = ACTIONS(5063), - [anon_sym_protected] = ACTIONS(5063), - [anon_sym_tailrec] = ACTIONS(5063), - [anon_sym_operator] = ACTIONS(5063), - [anon_sym_infix] = ACTIONS(5063), - [anon_sym_inline] = ACTIONS(5063), - [anon_sym_external] = ACTIONS(5063), - [sym_property_modifier] = ACTIONS(5063), - [anon_sym_abstract] = ACTIONS(5063), - [anon_sym_final] = ACTIONS(5063), - [anon_sym_open] = ACTIONS(5063), - [anon_sym_vararg] = ACTIONS(5063), - [anon_sym_noinline] = ACTIONS(5063), - [anon_sym_crossinline] = ACTIONS(5063), - [anon_sym_expect] = ACTIONS(5063), - [anon_sym_actual] = ACTIONS(5063), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5065), - [sym_safe_nav] = ACTIONS(5065), + [sym__alpha_identifier] = ACTIONS(5045), + [anon_sym_AT] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5045), + [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_SEMI] = ACTIONS(5047), + [anon_sym_get] = ACTIONS(5045), + [anon_sym_set] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_DASH_GT] = ACTIONS(5047), + [sym_label] = ACTIONS(5047), + [anon_sym_in] = ACTIONS(5045), + [anon_sym_while] = ACTIONS(5045), + [anon_sym_DOT_DOT] = ACTIONS(5047), + [anon_sym_QMARK_COLON] = ACTIONS(5047), + [anon_sym_AMP_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5047), + [anon_sym_else] = ACTIONS(5045), + [anon_sym_COLON_COLON] = ACTIONS(5047), + [anon_sym_PLUS_EQ] = ACTIONS(5047), + [anon_sym_DASH_EQ] = ACTIONS(5047), + [anon_sym_STAR_EQ] = ACTIONS(5047), + [anon_sym_SLASH_EQ] = ACTIONS(5047), + [anon_sym_PERCENT_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), + [anon_sym_LT_EQ] = ACTIONS(5047), + [anon_sym_GT_EQ] = ACTIONS(5047), + [anon_sym_BANGin] = ACTIONS(5047), + [anon_sym_is] = ACTIONS(5045), + [anon_sym_BANGis] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5045), + [anon_sym_as_QMARK] = ACTIONS(5047), + [anon_sym_PLUS_PLUS] = ACTIONS(5047), + [anon_sym_DASH_DASH] = ACTIONS(5047), + [anon_sym_BANG_BANG] = ACTIONS(5047), + [anon_sym_suspend] = ACTIONS(5045), + [anon_sym_sealed] = ACTIONS(5045), + [anon_sym_annotation] = ACTIONS(5045), + [anon_sym_data] = ACTIONS(5045), + [anon_sym_inner] = ACTIONS(5045), + [anon_sym_value] = ACTIONS(5045), + [anon_sym_override] = ACTIONS(5045), + [anon_sym_lateinit] = ACTIONS(5045), + [anon_sym_public] = ACTIONS(5045), + [anon_sym_private] = ACTIONS(5045), + [anon_sym_internal] = ACTIONS(5045), + [anon_sym_protected] = ACTIONS(5045), + [anon_sym_tailrec] = ACTIONS(5045), + [anon_sym_operator] = ACTIONS(5045), + [anon_sym_infix] = ACTIONS(5045), + [anon_sym_inline] = ACTIONS(5045), + [anon_sym_external] = ACTIONS(5045), + [sym_property_modifier] = ACTIONS(5045), + [anon_sym_abstract] = ACTIONS(5045), + [anon_sym_final] = ACTIONS(5045), + [anon_sym_open] = ACTIONS(5045), + [anon_sym_vararg] = ACTIONS(5045), + [anon_sym_noinline] = ACTIONS(5045), + [anon_sym_crossinline] = ACTIONS(5045), + [anon_sym_expect] = ACTIONS(5045), + [anon_sym_actual] = ACTIONS(5045), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5047), + [sym_safe_nav] = ACTIONS(5047), [sym_multiline_comment] = ACTIONS(3), }, [3374] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4908), - [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_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(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [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_value] = 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_function_body] = STATE(3885), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(6757), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_PLUS_EQ] = ACTIONS(4240), + [anon_sym_DASH_EQ] = ACTIONS(4240), + [anon_sym_STAR_EQ] = ACTIONS(4240), + [anon_sym_SLASH_EQ] = ACTIONS(4240), + [anon_sym_PERCENT_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), }, [3375] = { - [sym_class_body] = STATE(3964), - [sym_type_constraints] = STATE(3783), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(5876), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_type_constraints_repeat1] = STATE(3504), + [sym__alpha_identifier] = ACTIONS(4388), + [anon_sym_AT] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4390), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(6759), + [anon_sym_by] = ACTIONS(4388), + [anon_sym_object] = ACTIONS(4388), + [anon_sym_fun] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_get] = ACTIONS(4388), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_this] = ACTIONS(4388), + [anon_sym_super] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [sym_label] = ACTIONS(4388), + [anon_sym_in] = ACTIONS(4388), + [anon_sym_null] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4388), + [anon_sym_when] = ACTIONS(4388), + [anon_sym_try] = ACTIONS(4388), + [anon_sym_throw] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4388), + [anon_sym_continue] = ACTIONS(4388), + [anon_sym_break] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_BANGin] = ACTIONS(4390), + [anon_sym_is] = ACTIONS(4388), + [anon_sym_BANGis] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4388), + [anon_sym_PLUS_PLUS] = ACTIONS(4390), + [anon_sym_DASH_DASH] = ACTIONS(4390), + [anon_sym_BANG] = ACTIONS(4388), + [anon_sym_suspend] = ACTIONS(4388), + [anon_sym_sealed] = ACTIONS(4388), + [anon_sym_annotation] = ACTIONS(4388), + [anon_sym_data] = ACTIONS(4388), + [anon_sym_inner] = ACTIONS(4388), + [anon_sym_value] = ACTIONS(4388), + [anon_sym_override] = ACTIONS(4388), + [anon_sym_lateinit] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_internal] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_tailrec] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_infix] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym_external] = ACTIONS(4388), + [sym_property_modifier] = ACTIONS(4388), + [anon_sym_abstract] = ACTIONS(4388), + [anon_sym_final] = ACTIONS(4388), + [anon_sym_open] = ACTIONS(4388), + [anon_sym_vararg] = ACTIONS(4388), + [anon_sym_noinline] = ACTIONS(4388), + [anon_sym_crossinline] = ACTIONS(4388), + [anon_sym_expect] = ACTIONS(4388), + [anon_sym_actual] = ACTIONS(4388), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4390), + [anon_sym_continue_AT] = ACTIONS(4390), + [anon_sym_break_AT] = ACTIONS(4390), + [anon_sym_this_AT] = ACTIONS(4390), + [anon_sym_super_AT] = ACTIONS(4390), + [sym_real_literal] = ACTIONS(4390), + [sym_integer_literal] = ACTIONS(4388), + [sym_hex_literal] = ACTIONS(4390), + [sym_bin_literal] = ACTIONS(4390), + [anon_sym_true] = ACTIONS(4388), + [anon_sym_false] = ACTIONS(4388), + [anon_sym_SQUOTE] = ACTIONS(4390), + [sym__backtick_identifier] = ACTIONS(4390), + [sym__automatic_semicolon] = ACTIONS(4390), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4390), }, [3376] = { - [sym_type_constraints] = STATE(3811), - [sym_enum_class_body] = STATE(3853), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6816), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [sym__alpha_identifier] = ACTIONS(5037), + [anon_sym_AT] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5037), + [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_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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, [3377] = { - [sym_class_body] = STATE(3853), - [sym_type_constraints] = STATE(3820), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6818), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_RBRACK] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_RPAREN] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_DASH_GT] = ACTIONS(4712), + [sym_label] = ACTIONS(4712), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), [sym_multiline_comment] = ACTIONS(3), }, [3378] = { - [sym_type_constraints] = STATE(3823), - [sym_enum_class_body] = STATE(3831), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(5906), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [anon_sym_DASH_GT] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_while] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, [3379] = { - [sym_type_constraints] = STATE(3787), - [sym_enum_class_body] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(6820), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym_type_constraints_repeat1] = STATE(3375), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(6759), + [anon_sym_by] = ACTIONS(4394), + [anon_sym_object] = ACTIONS(4394), + [anon_sym_fun] = 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(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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4396), + [anon_sym_super_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), }, [3380] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_RPAREN] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_DASH_GT] = ACTIONS(4421), - [sym_label] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), + [sym_function_body] = STATE(3859), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(6761), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), }, [3381] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_RBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4230), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_RPAREN] = ACTIONS(4223), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [anon_sym_DASH_GT] = ACTIONS(4223), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_while] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4223), - [anon_sym_DASH_EQ] = ACTIONS(4223), - [anon_sym_STAR_EQ] = ACTIONS(4223), - [anon_sym_SLASH_EQ] = ACTIONS(4223), - [anon_sym_PERCENT_EQ] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [sym_safe_nav] = ACTIONS(4223), + [sym__alpha_identifier] = ACTIONS(5093), + [anon_sym_AT] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_RBRACK] = ACTIONS(5095), + [anon_sym_DOT] = ACTIONS(5093), + [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_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_value] = 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), }, [3382] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_RPAREN] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [anon_sym_DASH_GT] = ACTIONS(4237), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4234), - [anon_sym_while] = ACTIONS(4234), - [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(4234), - [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(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_RBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_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_value] = 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), }, [3383] = { - [ts_builtin_sym_end] = ACTIONS(6822), - [sym__alpha_identifier] = ACTIONS(6824), - [anon_sym_AT] = ACTIONS(6822), - [anon_sym_LBRACK] = ACTIONS(6822), - [anon_sym_package] = ACTIONS(6824), - [anon_sym_import] = ACTIONS(6824), - [anon_sym_typealias] = ACTIONS(6824), - [anon_sym_class] = ACTIONS(6824), - [anon_sym_interface] = ACTIONS(6824), - [anon_sym_enum] = ACTIONS(6824), - [anon_sym_LBRACE] = ACTIONS(6822), - [anon_sym_LPAREN] = ACTIONS(6822), - [anon_sym_val] = ACTIONS(6824), - [anon_sym_var] = ACTIONS(6824), - [anon_sym_object] = ACTIONS(6824), - [anon_sym_fun] = ACTIONS(6824), - [anon_sym_get] = ACTIONS(6824), - [anon_sym_set] = ACTIONS(6824), - [anon_sym_this] = ACTIONS(6824), - [anon_sym_super] = ACTIONS(6824), - [anon_sym_STAR] = ACTIONS(6822), - [sym_label] = ACTIONS(6824), - [anon_sym_for] = ACTIONS(6824), - [anon_sym_while] = ACTIONS(6824), - [anon_sym_do] = ACTIONS(6824), - [anon_sym_null] = ACTIONS(6824), - [anon_sym_if] = ACTIONS(6824), - [anon_sym_when] = ACTIONS(6824), - [anon_sym_try] = ACTIONS(6824), - [anon_sym_throw] = ACTIONS(6824), - [anon_sym_return] = ACTIONS(6824), - [anon_sym_continue] = ACTIONS(6824), - [anon_sym_break] = ACTIONS(6824), - [anon_sym_COLON_COLON] = ACTIONS(6822), - [anon_sym_PLUS] = ACTIONS(6824), - [anon_sym_DASH] = ACTIONS(6824), - [anon_sym_PLUS_PLUS] = ACTIONS(6822), - [anon_sym_DASH_DASH] = ACTIONS(6822), - [anon_sym_BANG] = ACTIONS(6822), - [anon_sym_suspend] = ACTIONS(6824), - [anon_sym_sealed] = ACTIONS(6824), - [anon_sym_annotation] = ACTIONS(6824), - [anon_sym_data] = ACTIONS(6824), - [anon_sym_inner] = ACTIONS(6824), - [anon_sym_value] = ACTIONS(6824), - [anon_sym_override] = ACTIONS(6824), - [anon_sym_lateinit] = ACTIONS(6824), - [anon_sym_public] = ACTIONS(6824), - [anon_sym_private] = ACTIONS(6824), - [anon_sym_internal] = ACTIONS(6824), - [anon_sym_protected] = ACTIONS(6824), - [anon_sym_tailrec] = ACTIONS(6824), - [anon_sym_operator] = ACTIONS(6824), - [anon_sym_infix] = ACTIONS(6824), - [anon_sym_inline] = ACTIONS(6824), - [anon_sym_external] = ACTIONS(6824), - [sym_property_modifier] = ACTIONS(6824), - [anon_sym_abstract] = ACTIONS(6824), - [anon_sym_final] = ACTIONS(6824), - [anon_sym_open] = ACTIONS(6824), - [anon_sym_vararg] = ACTIONS(6824), - [anon_sym_noinline] = ACTIONS(6824), - [anon_sym_crossinline] = ACTIONS(6824), - [anon_sym_expect] = ACTIONS(6824), - [anon_sym_actual] = ACTIONS(6824), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6822), - [anon_sym_continue_AT] = ACTIONS(6822), - [anon_sym_break_AT] = ACTIONS(6822), - [anon_sym_this_AT] = ACTIONS(6822), - [anon_sym_super_AT] = ACTIONS(6822), - [sym_real_literal] = ACTIONS(6822), - [sym_integer_literal] = ACTIONS(6824), - [sym_hex_literal] = ACTIONS(6822), - [sym_bin_literal] = ACTIONS(6822), - [anon_sym_true] = ACTIONS(6824), - [anon_sym_false] = ACTIONS(6824), - [anon_sym_SQUOTE] = ACTIONS(6822), - [sym__backtick_identifier] = ACTIONS(6822), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6822), + [sym__alpha_identifier] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_RBRACK] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4630), + [anon_sym_as] = ACTIONS(4630), + [anon_sym_EQ] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4632), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_RPAREN] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_where] = ACTIONS(4630), + [anon_sym_SEMI] = ACTIONS(4632), + [anon_sym_get] = ACTIONS(4630), + [anon_sym_set] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [anon_sym_DASH_GT] = ACTIONS(4632), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4630), + [anon_sym_while] = ACTIONS(4630), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_QMARK_COLON] = ACTIONS(4632), + [anon_sym_AMP_AMP] = ACTIONS(4632), + [anon_sym_PIPE_PIPE] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4630), + [anon_sym_COLON_COLON] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4632), + [anon_sym_DASH_EQ] = ACTIONS(4632), + [anon_sym_STAR_EQ] = ACTIONS(4632), + [anon_sym_SLASH_EQ] = ACTIONS(4632), + [anon_sym_PERCENT_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4632), + [anon_sym_BANGin] = ACTIONS(4632), + [anon_sym_is] = ACTIONS(4630), + [anon_sym_BANGis] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_as_QMARK] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4632), + [anon_sym_suspend] = ACTIONS(4630), + [anon_sym_sealed] = ACTIONS(4630), + [anon_sym_annotation] = ACTIONS(4630), + [anon_sym_data] = ACTIONS(4630), + [anon_sym_inner] = ACTIONS(4630), + [anon_sym_value] = ACTIONS(4630), + [anon_sym_override] = ACTIONS(4630), + [anon_sym_lateinit] = ACTIONS(4630), + [anon_sym_public] = ACTIONS(4630), + [anon_sym_private] = ACTIONS(4630), + [anon_sym_internal] = ACTIONS(4630), + [anon_sym_protected] = ACTIONS(4630), + [anon_sym_tailrec] = ACTIONS(4630), + [anon_sym_operator] = ACTIONS(4630), + [anon_sym_infix] = ACTIONS(4630), + [anon_sym_inline] = ACTIONS(4630), + [anon_sym_external] = ACTIONS(4630), + [sym_property_modifier] = ACTIONS(4630), + [anon_sym_abstract] = ACTIONS(4630), + [anon_sym_final] = ACTIONS(4630), + [anon_sym_open] = ACTIONS(4630), + [anon_sym_vararg] = ACTIONS(4630), + [anon_sym_noinline] = ACTIONS(4630), + [anon_sym_crossinline] = ACTIONS(4630), + [anon_sym_expect] = ACTIONS(4630), + [anon_sym_actual] = ACTIONS(4630), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4632), + [sym_safe_nav] = ACTIONS(4632), + [sym_multiline_comment] = ACTIONS(3), }, [3384] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_value] = 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__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_RBRACK] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_RPAREN] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_DASH_GT] = ACTIONS(4882), + [sym_label] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_while] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), [sym_multiline_comment] = ACTIONS(3), }, [3385] = { - [sym_class_body] = STATE(4033), - [sym_type_constraints] = STATE(3742), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(5846), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__alpha_identifier] = ACTIONS(5121), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_RBRACK] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5121), + [anon_sym_as] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5121), + [anon_sym_GT] = ACTIONS(5121), + [anon_sym_where] = ACTIONS(5121), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym_get] = ACTIONS(5121), + [anon_sym_set] = ACTIONS(5121), + [anon_sym_STAR] = ACTIONS(5121), + [anon_sym_DASH_GT] = ACTIONS(5123), + [sym_label] = ACTIONS(5123), + [anon_sym_in] = ACTIONS(5121), + [anon_sym_while] = ACTIONS(5121), + [anon_sym_DOT_DOT] = ACTIONS(5123), + [anon_sym_QMARK_COLON] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_else] = ACTIONS(5121), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_suspend] = ACTIONS(5121), + [anon_sym_sealed] = ACTIONS(5121), + [anon_sym_annotation] = ACTIONS(5121), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_override] = ACTIONS(5121), + [anon_sym_lateinit] = ACTIONS(5121), + [anon_sym_public] = ACTIONS(5121), + [anon_sym_private] = ACTIONS(5121), + [anon_sym_internal] = ACTIONS(5121), + [anon_sym_protected] = ACTIONS(5121), + [anon_sym_tailrec] = ACTIONS(5121), + [anon_sym_operator] = ACTIONS(5121), + [anon_sym_infix] = ACTIONS(5121), + [anon_sym_inline] = ACTIONS(5121), + [anon_sym_external] = ACTIONS(5121), + [sym_property_modifier] = ACTIONS(5121), + [anon_sym_abstract] = ACTIONS(5121), + [anon_sym_final] = ACTIONS(5121), + [anon_sym_open] = ACTIONS(5121), + [anon_sym_vararg] = ACTIONS(5121), + [anon_sym_noinline] = ACTIONS(5121), + [anon_sym_crossinline] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), [sym_multiline_comment] = ACTIONS(3), }, [3386] = { - [sym_class_body] = STATE(3856), - [sym_type_constraints] = STATE(3803), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(6826), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_DASH_GT] = ACTIONS(4449), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_while] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [3387] = { - [sym__alpha_identifier] = ACTIONS(5067), - [anon_sym_AT] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5067), - [anon_sym_as] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_RPAREN] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5067), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_where] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5069), - [anon_sym_get] = ACTIONS(5067), - [anon_sym_set] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [anon_sym_DASH_GT] = ACTIONS(5069), - [sym_label] = ACTIONS(5069), - [anon_sym_in] = ACTIONS(5067), - [anon_sym_while] = ACTIONS(5067), - [anon_sym_DOT_DOT] = ACTIONS(5069), - [anon_sym_QMARK_COLON] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_else] = ACTIONS(5067), - [anon_sym_COLON_COLON] = ACTIONS(5069), - [anon_sym_PLUS_EQ] = ACTIONS(5069), - [anon_sym_DASH_EQ] = ACTIONS(5069), - [anon_sym_STAR_EQ] = ACTIONS(5069), - [anon_sym_SLASH_EQ] = ACTIONS(5069), - [anon_sym_PERCENT_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_BANGin] = ACTIONS(5069), - [anon_sym_is] = ACTIONS(5067), - [anon_sym_BANGis] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_as_QMARK] = ACTIONS(5069), - [anon_sym_PLUS_PLUS] = ACTIONS(5069), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_BANG_BANG] = ACTIONS(5069), - [anon_sym_suspend] = ACTIONS(5067), - [anon_sym_sealed] = ACTIONS(5067), - [anon_sym_annotation] = ACTIONS(5067), - [anon_sym_data] = ACTIONS(5067), - [anon_sym_inner] = ACTIONS(5067), - [anon_sym_value] = ACTIONS(5067), - [anon_sym_override] = ACTIONS(5067), - [anon_sym_lateinit] = ACTIONS(5067), - [anon_sym_public] = ACTIONS(5067), - [anon_sym_private] = ACTIONS(5067), - [anon_sym_internal] = ACTIONS(5067), - [anon_sym_protected] = ACTIONS(5067), - [anon_sym_tailrec] = ACTIONS(5067), - [anon_sym_operator] = ACTIONS(5067), - [anon_sym_infix] = ACTIONS(5067), - [anon_sym_inline] = ACTIONS(5067), - [anon_sym_external] = ACTIONS(5067), - [sym_property_modifier] = ACTIONS(5067), - [anon_sym_abstract] = ACTIONS(5067), - [anon_sym_final] = ACTIONS(5067), - [anon_sym_open] = ACTIONS(5067), - [anon_sym_vararg] = ACTIONS(5067), - [anon_sym_noinline] = ACTIONS(5067), - [anon_sym_crossinline] = ACTIONS(5067), - [anon_sym_expect] = ACTIONS(5067), - [anon_sym_actual] = ACTIONS(5067), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5069), - [sym_safe_nav] = ACTIONS(5069), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [anon_sym_DASH_GT] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [3388] = { - [sym__alpha_identifier] = ACTIONS(5081), - [anon_sym_AT] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_as] = ACTIONS(5081), - [anon_sym_EQ] = ACTIONS(5081), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_RBRACE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_where] = ACTIONS(5081), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_get] = ACTIONS(5081), - [anon_sym_set] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_DASH_GT] = ACTIONS(5083), - [sym_label] = ACTIONS(5083), - [anon_sym_in] = ACTIONS(5081), - [anon_sym_while] = ACTIONS(5081), - [anon_sym_DOT_DOT] = ACTIONS(5083), - [anon_sym_QMARK_COLON] = ACTIONS(5083), - [anon_sym_AMP_AMP] = ACTIONS(5083), - [anon_sym_PIPE_PIPE] = ACTIONS(5083), - [anon_sym_else] = ACTIONS(5081), - [anon_sym_COLON_COLON] = ACTIONS(5083), - [anon_sym_PLUS_EQ] = ACTIONS(5083), - [anon_sym_DASH_EQ] = ACTIONS(5083), - [anon_sym_STAR_EQ] = ACTIONS(5083), - [anon_sym_SLASH_EQ] = ACTIONS(5083), - [anon_sym_PERCENT_EQ] = ACTIONS(5083), - [anon_sym_BANG_EQ] = ACTIONS(5081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5083), - [anon_sym_EQ_EQ] = ACTIONS(5081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5083), - [anon_sym_LT_EQ] = ACTIONS(5083), - [anon_sym_GT_EQ] = ACTIONS(5083), - [anon_sym_BANGin] = ACTIONS(5083), - [anon_sym_is] = ACTIONS(5081), - [anon_sym_BANGis] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_PERCENT] = ACTIONS(5081), - [anon_sym_as_QMARK] = ACTIONS(5083), - [anon_sym_PLUS_PLUS] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5083), - [anon_sym_BANG_BANG] = ACTIONS(5083), - [anon_sym_suspend] = ACTIONS(5081), - [anon_sym_sealed] = ACTIONS(5081), - [anon_sym_annotation] = ACTIONS(5081), - [anon_sym_data] = ACTIONS(5081), - [anon_sym_inner] = ACTIONS(5081), - [anon_sym_value] = ACTIONS(5081), - [anon_sym_override] = ACTIONS(5081), - [anon_sym_lateinit] = ACTIONS(5081), - [anon_sym_public] = ACTIONS(5081), - [anon_sym_private] = ACTIONS(5081), - [anon_sym_internal] = ACTIONS(5081), - [anon_sym_protected] = ACTIONS(5081), - [anon_sym_tailrec] = ACTIONS(5081), - [anon_sym_operator] = ACTIONS(5081), - [anon_sym_infix] = ACTIONS(5081), - [anon_sym_inline] = ACTIONS(5081), - [anon_sym_external] = ACTIONS(5081), - [sym_property_modifier] = ACTIONS(5081), - [anon_sym_abstract] = ACTIONS(5081), - [anon_sym_final] = ACTIONS(5081), - [anon_sym_open] = ACTIONS(5081), - [anon_sym_vararg] = ACTIONS(5081), - [anon_sym_noinline] = ACTIONS(5081), - [anon_sym_crossinline] = ACTIONS(5081), - [anon_sym_expect] = ACTIONS(5081), - [anon_sym_actual] = ACTIONS(5081), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5083), - [sym_safe_nav] = ACTIONS(5083), + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_RBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_RPAREN] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1754), + [anon_sym_set] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_DASH_GT] = ACTIONS(1756), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_while] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), + [anon_sym_suspend] = ACTIONS(1754), + [anon_sym_sealed] = ACTIONS(1754), + [anon_sym_annotation] = ACTIONS(1754), + [anon_sym_data] = ACTIONS(1754), + [anon_sym_inner] = ACTIONS(1754), + [anon_sym_value] = ACTIONS(1754), + [anon_sym_override] = ACTIONS(1754), + [anon_sym_lateinit] = ACTIONS(1754), + [anon_sym_public] = ACTIONS(1754), + [anon_sym_private] = ACTIONS(1754), + [anon_sym_internal] = ACTIONS(1754), + [anon_sym_protected] = ACTIONS(1754), + [anon_sym_tailrec] = ACTIONS(1754), + [anon_sym_operator] = ACTIONS(1754), + [anon_sym_infix] = ACTIONS(1754), + [anon_sym_inline] = ACTIONS(1754), + [anon_sym_external] = ACTIONS(1754), + [sym_property_modifier] = ACTIONS(1754), + [anon_sym_abstract] = ACTIONS(1754), + [anon_sym_final] = ACTIONS(1754), + [anon_sym_open] = ACTIONS(1754), + [anon_sym_vararg] = ACTIONS(1754), + [anon_sym_noinline] = ACTIONS(1754), + [anon_sym_crossinline] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(1754), + [anon_sym_actual] = ACTIONS(1754), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, [3389] = { - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_RBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4395), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_RPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [anon_sym_DASH_GT] = ACTIONS(4395), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_while] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [anon_sym_DASH_GT] = ACTIONS(121), + [sym_label] = ACTIONS(121), + [anon_sym_in] = ACTIONS(123), + [anon_sym_while] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_else] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(123), + [anon_sym_annotation] = ACTIONS(123), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_override] = ACTIONS(123), + [anon_sym_lateinit] = ACTIONS(123), + [anon_sym_public] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_internal] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_tailrec] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(123), + [anon_sym_infix] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_external] = ACTIONS(123), + [sym_property_modifier] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_final] = ACTIONS(123), + [anon_sym_open] = ACTIONS(123), + [anon_sym_vararg] = ACTIONS(123), + [anon_sym_noinline] = ACTIONS(123), + [anon_sym_crossinline] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), }, [3390] = { - [sym__alpha_identifier] = ACTIONS(5165), - [anon_sym_AT] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_RBRACK] = ACTIONS(5167), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_as] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_RPAREN] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_where] = ACTIONS(5165), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_get] = ACTIONS(5165), - [anon_sym_set] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [anon_sym_DASH_GT] = ACTIONS(5167), - [sym_label] = ACTIONS(5167), - [anon_sym_in] = ACTIONS(5165), - [anon_sym_while] = ACTIONS(5165), - [anon_sym_DOT_DOT] = ACTIONS(5167), - [anon_sym_QMARK_COLON] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_PIPE_PIPE] = ACTIONS(5167), - [anon_sym_else] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_PLUS_EQ] = ACTIONS(5167), - [anon_sym_DASH_EQ] = ACTIONS(5167), - [anon_sym_STAR_EQ] = ACTIONS(5167), - [anon_sym_SLASH_EQ] = ACTIONS(5167), - [anon_sym_PERCENT_EQ] = ACTIONS(5167), - [anon_sym_BANG_EQ] = ACTIONS(5165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), - [anon_sym_EQ_EQ] = ACTIONS(5165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), - [anon_sym_LT_EQ] = ACTIONS(5167), - [anon_sym_GT_EQ] = ACTIONS(5167), - [anon_sym_BANGin] = ACTIONS(5167), - [anon_sym_is] = ACTIONS(5165), - [anon_sym_BANGis] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_as_QMARK] = ACTIONS(5167), - [anon_sym_PLUS_PLUS] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5167), - [anon_sym_BANG_BANG] = ACTIONS(5167), - [anon_sym_suspend] = ACTIONS(5165), - [anon_sym_sealed] = ACTIONS(5165), - [anon_sym_annotation] = ACTIONS(5165), - [anon_sym_data] = ACTIONS(5165), - [anon_sym_inner] = ACTIONS(5165), - [anon_sym_value] = ACTIONS(5165), - [anon_sym_override] = ACTIONS(5165), - [anon_sym_lateinit] = ACTIONS(5165), - [anon_sym_public] = ACTIONS(5165), - [anon_sym_private] = ACTIONS(5165), - [anon_sym_internal] = ACTIONS(5165), - [anon_sym_protected] = ACTIONS(5165), - [anon_sym_tailrec] = ACTIONS(5165), - [anon_sym_operator] = ACTIONS(5165), - [anon_sym_infix] = ACTIONS(5165), - [anon_sym_inline] = ACTIONS(5165), - [anon_sym_external] = ACTIONS(5165), - [sym_property_modifier] = ACTIONS(5165), - [anon_sym_abstract] = ACTIONS(5165), - [anon_sym_final] = ACTIONS(5165), - [anon_sym_open] = ACTIONS(5165), - [anon_sym_vararg] = ACTIONS(5165), - [anon_sym_noinline] = ACTIONS(5165), - [anon_sym_crossinline] = ACTIONS(5165), - [anon_sym_expect] = ACTIONS(5165), - [anon_sym_actual] = ACTIONS(5165), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5167), - [sym_safe_nav] = ACTIONS(5167), + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_RBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [anon_sym_DASH_GT] = ACTIONS(4345), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_while] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), [sym_multiline_comment] = ACTIONS(3), }, [3391] = { - [sym__alpha_identifier] = ACTIONS(5161), - [anon_sym_AT] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_RBRACK] = ACTIONS(5163), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_as] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_RPAREN] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_where] = ACTIONS(5161), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_get] = ACTIONS(5161), - [anon_sym_set] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [anon_sym_DASH_GT] = ACTIONS(5163), - [sym_label] = ACTIONS(5163), - [anon_sym_in] = ACTIONS(5161), - [anon_sym_while] = ACTIONS(5161), - [anon_sym_DOT_DOT] = ACTIONS(5163), - [anon_sym_QMARK_COLON] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_else] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_PLUS_EQ] = ACTIONS(5163), - [anon_sym_DASH_EQ] = ACTIONS(5163), - [anon_sym_STAR_EQ] = ACTIONS(5163), - [anon_sym_SLASH_EQ] = ACTIONS(5163), - [anon_sym_PERCENT_EQ] = ACTIONS(5163), - [anon_sym_BANG_EQ] = ACTIONS(5161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), - [anon_sym_EQ_EQ] = ACTIONS(5161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), - [anon_sym_LT_EQ] = ACTIONS(5163), - [anon_sym_GT_EQ] = ACTIONS(5163), - [anon_sym_BANGin] = ACTIONS(5163), - [anon_sym_is] = ACTIONS(5161), - [anon_sym_BANGis] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_PERCENT] = ACTIONS(5161), - [anon_sym_as_QMARK] = ACTIONS(5163), - [anon_sym_PLUS_PLUS] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5163), - [anon_sym_BANG_BANG] = ACTIONS(5163), - [anon_sym_suspend] = ACTIONS(5161), - [anon_sym_sealed] = ACTIONS(5161), - [anon_sym_annotation] = ACTIONS(5161), - [anon_sym_data] = ACTIONS(5161), - [anon_sym_inner] = ACTIONS(5161), - [anon_sym_value] = ACTIONS(5161), - [anon_sym_override] = ACTIONS(5161), - [anon_sym_lateinit] = ACTIONS(5161), - [anon_sym_public] = ACTIONS(5161), - [anon_sym_private] = ACTIONS(5161), - [anon_sym_internal] = ACTIONS(5161), - [anon_sym_protected] = ACTIONS(5161), - [anon_sym_tailrec] = ACTIONS(5161), - [anon_sym_operator] = ACTIONS(5161), - [anon_sym_infix] = ACTIONS(5161), - [anon_sym_inline] = ACTIONS(5161), - [anon_sym_external] = ACTIONS(5161), - [sym_property_modifier] = ACTIONS(5161), - [anon_sym_abstract] = ACTIONS(5161), - [anon_sym_final] = ACTIONS(5161), - [anon_sym_open] = ACTIONS(5161), - [anon_sym_vararg] = ACTIONS(5161), - [anon_sym_noinline] = ACTIONS(5161), - [anon_sym_crossinline] = ACTIONS(5161), - [anon_sym_expect] = ACTIONS(5161), - [anon_sym_actual] = ACTIONS(5161), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5163), - [sym_safe_nav] = ACTIONS(5163), + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_RBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_RPAREN] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4333), + [sym_label] = ACTIONS(4333), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_while] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), [sym_multiline_comment] = ACTIONS(3), }, [3392] = { - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_RBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_DASH_GT] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_RBRACK] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5101), + [anon_sym_EQ] = ACTIONS(5101), + [anon_sym_LBRACE] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(5103), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_RPAREN] = ACTIONS(5103), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_SEMI] = ACTIONS(5103), + [anon_sym_get] = ACTIONS(5101), + [anon_sym_set] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [anon_sym_DASH_GT] = ACTIONS(5103), + [sym_label] = ACTIONS(5103), + [anon_sym_in] = ACTIONS(5101), + [anon_sym_while] = ACTIONS(5101), + [anon_sym_DOT_DOT] = ACTIONS(5103), + [anon_sym_QMARK_COLON] = ACTIONS(5103), + [anon_sym_AMP_AMP] = ACTIONS(5103), + [anon_sym_PIPE_PIPE] = ACTIONS(5103), + [anon_sym_else] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5103), + [anon_sym_PLUS_EQ] = ACTIONS(5103), + [anon_sym_DASH_EQ] = ACTIONS(5103), + [anon_sym_STAR_EQ] = ACTIONS(5103), + [anon_sym_SLASH_EQ] = ACTIONS(5103), + [anon_sym_PERCENT_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), + [anon_sym_LT_EQ] = ACTIONS(5103), + [anon_sym_GT_EQ] = ACTIONS(5103), + [anon_sym_BANGin] = ACTIONS(5103), + [anon_sym_is] = ACTIONS(5101), + [anon_sym_BANGis] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_PERCENT] = ACTIONS(5101), + [anon_sym_as_QMARK] = ACTIONS(5103), + [anon_sym_PLUS_PLUS] = ACTIONS(5103), + [anon_sym_DASH_DASH] = ACTIONS(5103), + [anon_sym_BANG_BANG] = ACTIONS(5103), + [anon_sym_suspend] = ACTIONS(5101), + [anon_sym_sealed] = ACTIONS(5101), + [anon_sym_annotation] = ACTIONS(5101), + [anon_sym_data] = ACTIONS(5101), + [anon_sym_inner] = ACTIONS(5101), + [anon_sym_value] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_lateinit] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_protected] = ACTIONS(5101), + [anon_sym_tailrec] = ACTIONS(5101), + [anon_sym_operator] = ACTIONS(5101), + [anon_sym_infix] = ACTIONS(5101), + [anon_sym_inline] = ACTIONS(5101), + [anon_sym_external] = ACTIONS(5101), + [sym_property_modifier] = ACTIONS(5101), + [anon_sym_abstract] = ACTIONS(5101), + [anon_sym_final] = ACTIONS(5101), + [anon_sym_open] = ACTIONS(5101), + [anon_sym_vararg] = ACTIONS(5101), + [anon_sym_noinline] = ACTIONS(5101), + [anon_sym_crossinline] = ACTIONS(5101), + [anon_sym_expect] = ACTIONS(5101), + [anon_sym_actual] = ACTIONS(5101), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5103), + [sym_safe_nav] = ACTIONS(5103), [sym_multiline_comment] = ACTIONS(3), }, [3393] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(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(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_RBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_DASH_GT] = ACTIONS(3370), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), + [anon_sym_suspend] = ACTIONS(3368), + [anon_sym_sealed] = ACTIONS(3368), + [anon_sym_annotation] = ACTIONS(3368), + [anon_sym_data] = ACTIONS(3368), + [anon_sym_inner] = ACTIONS(3368), + [anon_sym_value] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_lateinit] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_internal] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_tailrec] = ACTIONS(3368), + [anon_sym_operator] = ACTIONS(3368), + [anon_sym_infix] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym_external] = ACTIONS(3368), + [sym_property_modifier] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_final] = ACTIONS(3368), + [anon_sym_open] = ACTIONS(3368), + [anon_sym_vararg] = ACTIONS(3368), + [anon_sym_noinline] = ACTIONS(3368), + [anon_sym_crossinline] = ACTIONS(3368), + [anon_sym_expect] = ACTIONS(3368), + [anon_sym_actual] = ACTIONS(3368), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), }, [3394] = { - [sym__alpha_identifier] = ACTIONS(4971), - [anon_sym_AT] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4971), - [anon_sym_as] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_where] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4973), - [anon_sym_get] = ACTIONS(4971), - [anon_sym_set] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_DASH_GT] = ACTIONS(4973), - [sym_label] = ACTIONS(4973), - [anon_sym_in] = ACTIONS(4971), - [anon_sym_while] = ACTIONS(4971), - [anon_sym_DOT_DOT] = ACTIONS(4973), - [anon_sym_QMARK_COLON] = ACTIONS(4973), - [anon_sym_AMP_AMP] = ACTIONS(4973), - [anon_sym_PIPE_PIPE] = ACTIONS(4973), - [anon_sym_else] = ACTIONS(4971), - [anon_sym_COLON_COLON] = ACTIONS(4973), - [anon_sym_PLUS_EQ] = ACTIONS(4973), - [anon_sym_DASH_EQ] = ACTIONS(4973), - [anon_sym_STAR_EQ] = ACTIONS(4973), - [anon_sym_SLASH_EQ] = ACTIONS(4973), - [anon_sym_PERCENT_EQ] = ACTIONS(4973), - [anon_sym_BANG_EQ] = ACTIONS(4971), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4973), - [anon_sym_EQ_EQ] = ACTIONS(4971), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4973), - [anon_sym_LT_EQ] = ACTIONS(4973), - [anon_sym_GT_EQ] = ACTIONS(4973), - [anon_sym_BANGin] = ACTIONS(4973), - [anon_sym_is] = ACTIONS(4971), - [anon_sym_BANGis] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_as_QMARK] = ACTIONS(4973), - [anon_sym_PLUS_PLUS] = ACTIONS(4973), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_BANG_BANG] = ACTIONS(4973), - [anon_sym_suspend] = ACTIONS(4971), - [anon_sym_sealed] = ACTIONS(4971), - [anon_sym_annotation] = ACTIONS(4971), - [anon_sym_data] = ACTIONS(4971), - [anon_sym_inner] = ACTIONS(4971), - [anon_sym_value] = ACTIONS(4971), - [anon_sym_override] = ACTIONS(4971), - [anon_sym_lateinit] = ACTIONS(4971), - [anon_sym_public] = ACTIONS(4971), - [anon_sym_private] = ACTIONS(4971), - [anon_sym_internal] = ACTIONS(4971), - [anon_sym_protected] = ACTIONS(4971), - [anon_sym_tailrec] = ACTIONS(4971), - [anon_sym_operator] = ACTIONS(4971), - [anon_sym_infix] = ACTIONS(4971), - [anon_sym_inline] = ACTIONS(4971), - [anon_sym_external] = ACTIONS(4971), - [sym_property_modifier] = ACTIONS(4971), - [anon_sym_abstract] = ACTIONS(4971), - [anon_sym_final] = ACTIONS(4971), - [anon_sym_open] = ACTIONS(4971), - [anon_sym_vararg] = ACTIONS(4971), - [anon_sym_noinline] = ACTIONS(4971), - [anon_sym_crossinline] = ACTIONS(4971), - [anon_sym_expect] = ACTIONS(4971), - [anon_sym_actual] = ACTIONS(4971), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4973), - [sym_safe_nav] = ACTIONS(4973), + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_RBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_RPAREN] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_where] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4946), + [anon_sym_get] = ACTIONS(4944), + [anon_sym_set] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_DASH_GT] = ACTIONS(4946), + [sym_label] = ACTIONS(4946), + [anon_sym_in] = ACTIONS(4944), + [anon_sym_while] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4946), + [anon_sym_QMARK_COLON] = ACTIONS(4946), + [anon_sym_AMP_AMP] = ACTIONS(4946), + [anon_sym_PIPE_PIPE] = ACTIONS(4946), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_COLON_COLON] = ACTIONS(4946), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_PERCENT_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_BANGin] = ACTIONS(4946), + [anon_sym_is] = ACTIONS(4944), + [anon_sym_BANGis] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_as_QMARK] = ACTIONS(4946), + [anon_sym_PLUS_PLUS] = ACTIONS(4946), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_BANG_BANG] = ACTIONS(4946), + [anon_sym_suspend] = ACTIONS(4944), + [anon_sym_sealed] = ACTIONS(4944), + [anon_sym_annotation] = ACTIONS(4944), + [anon_sym_data] = ACTIONS(4944), + [anon_sym_inner] = ACTIONS(4944), + [anon_sym_value] = ACTIONS(4944), + [anon_sym_override] = ACTIONS(4944), + [anon_sym_lateinit] = ACTIONS(4944), + [anon_sym_public] = ACTIONS(4944), + [anon_sym_private] = ACTIONS(4944), + [anon_sym_internal] = ACTIONS(4944), + [anon_sym_protected] = ACTIONS(4944), + [anon_sym_tailrec] = ACTIONS(4944), + [anon_sym_operator] = ACTIONS(4944), + [anon_sym_infix] = ACTIONS(4944), + [anon_sym_inline] = ACTIONS(4944), + [anon_sym_external] = ACTIONS(4944), + [sym_property_modifier] = ACTIONS(4944), + [anon_sym_abstract] = ACTIONS(4944), + [anon_sym_final] = ACTIONS(4944), + [anon_sym_open] = ACTIONS(4944), + [anon_sym_vararg] = ACTIONS(4944), + [anon_sym_noinline] = ACTIONS(4944), + [anon_sym_crossinline] = ACTIONS(4944), + [anon_sym_expect] = ACTIONS(4944), + [anon_sym_actual] = ACTIONS(4944), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4946), + [sym_safe_nav] = ACTIONS(4946), [sym_multiline_comment] = ACTIONS(3), }, [3395] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(6832), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4223), - [anon_sym_DASH_EQ] = ACTIONS(4223), - [anon_sym_STAR_EQ] = ACTIONS(4223), - [anon_sym_SLASH_EQ] = ACTIONS(4223), - [anon_sym_PERCENT_EQ] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [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_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = 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_value] = 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), }, [3396] = { - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_RBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACE] = ACTIONS(4208), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_DASH_GT] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_while] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), + [sym__alpha_identifier] = ACTIONS(4904), + [anon_sym_AT] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_RBRACK] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4906), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4906), + [anon_sym_get] = ACTIONS(4904), + [anon_sym_set] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4906), + [sym_label] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4904), + [anon_sym_while] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_QMARK_COLON] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4906), + [anon_sym_PIPE_PIPE] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4904), + [anon_sym_COLON_COLON] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4906), + [anon_sym_DASH_EQ] = ACTIONS(4906), + [anon_sym_STAR_EQ] = ACTIONS(4906), + [anon_sym_SLASH_EQ] = ACTIONS(4906), + [anon_sym_PERCENT_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4906), + [anon_sym_BANGin] = ACTIONS(4906), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_BANGis] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_as_QMARK] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4906), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_BANG_BANG] = ACTIONS(4906), + [anon_sym_suspend] = ACTIONS(4904), + [anon_sym_sealed] = ACTIONS(4904), + [anon_sym_annotation] = ACTIONS(4904), + [anon_sym_data] = ACTIONS(4904), + [anon_sym_inner] = ACTIONS(4904), + [anon_sym_value] = ACTIONS(4904), + [anon_sym_override] = ACTIONS(4904), + [anon_sym_lateinit] = ACTIONS(4904), + [anon_sym_public] = ACTIONS(4904), + [anon_sym_private] = ACTIONS(4904), + [anon_sym_internal] = ACTIONS(4904), + [anon_sym_protected] = ACTIONS(4904), + [anon_sym_tailrec] = ACTIONS(4904), + [anon_sym_operator] = ACTIONS(4904), + [anon_sym_infix] = ACTIONS(4904), + [anon_sym_inline] = ACTIONS(4904), + [anon_sym_external] = ACTIONS(4904), + [sym_property_modifier] = ACTIONS(4904), + [anon_sym_abstract] = ACTIONS(4904), + [anon_sym_final] = ACTIONS(4904), + [anon_sym_open] = ACTIONS(4904), + [anon_sym_vararg] = ACTIONS(4904), + [anon_sym_noinline] = ACTIONS(4904), + [anon_sym_crossinline] = ACTIONS(4904), + [anon_sym_expect] = ACTIONS(4904), + [anon_sym_actual] = ACTIONS(4904), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4906), + [sym_safe_nav] = ACTIONS(4906), [sym_multiline_comment] = ACTIONS(3), }, [3397] = { - [sym__alpha_identifier] = ACTIONS(4305), - [anon_sym_AT] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_as] = ACTIONS(4305), - [anon_sym_EQ] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_RBRACE] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_by] = ACTIONS(4305), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_where] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_get] = ACTIONS(4305), - [anon_sym_set] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(4305), - [sym__quest] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4305), - [sym_label] = ACTIONS(4307), - [anon_sym_in] = ACTIONS(4305), - [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(4305), - [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(4305), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [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(4305), - [anon_sym_BANGis] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_SLASH] = ACTIONS(4305), - [anon_sym_PERCENT] = ACTIONS(4305), - [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(4305), - [anon_sym_sealed] = ACTIONS(4305), - [anon_sym_annotation] = ACTIONS(4305), - [anon_sym_data] = ACTIONS(4305), - [anon_sym_inner] = ACTIONS(4305), - [anon_sym_value] = ACTIONS(4305), - [anon_sym_override] = ACTIONS(4305), - [anon_sym_lateinit] = ACTIONS(4305), - [anon_sym_public] = ACTIONS(4305), - [anon_sym_private] = ACTIONS(4305), - [anon_sym_internal] = ACTIONS(4305), - [anon_sym_protected] = ACTIONS(4305), - [anon_sym_tailrec] = ACTIONS(4305), - [anon_sym_operator] = ACTIONS(4305), - [anon_sym_infix] = ACTIONS(4305), - [anon_sym_inline] = ACTIONS(4305), - [anon_sym_external] = ACTIONS(4305), - [sym_property_modifier] = ACTIONS(4305), - [anon_sym_abstract] = ACTIONS(4305), - [anon_sym_final] = ACTIONS(4305), - [anon_sym_open] = ACTIONS(4305), - [anon_sym_vararg] = ACTIONS(4305), - [anon_sym_noinline] = ACTIONS(4305), - [anon_sym_crossinline] = ACTIONS(4305), - [anon_sym_expect] = ACTIONS(4305), - [anon_sym_actual] = ACTIONS(4305), - [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), + [ts_builtin_sym_end] = ACTIONS(6763), + [sym__alpha_identifier] = ACTIONS(6765), + [anon_sym_AT] = ACTIONS(6763), + [anon_sym_LBRACK] = ACTIONS(6763), + [anon_sym_package] = ACTIONS(6765), + [anon_sym_import] = ACTIONS(6765), + [anon_sym_typealias] = ACTIONS(6765), + [anon_sym_class] = ACTIONS(6765), + [anon_sym_interface] = ACTIONS(6765), + [anon_sym_enum] = ACTIONS(6765), + [anon_sym_LBRACE] = ACTIONS(6763), + [anon_sym_LPAREN] = ACTIONS(6763), + [anon_sym_val] = ACTIONS(6765), + [anon_sym_var] = ACTIONS(6765), + [anon_sym_object] = ACTIONS(6765), + [anon_sym_fun] = ACTIONS(6765), + [anon_sym_get] = ACTIONS(6765), + [anon_sym_set] = ACTIONS(6765), + [anon_sym_this] = ACTIONS(6765), + [anon_sym_super] = ACTIONS(6765), + [anon_sym_STAR] = ACTIONS(6763), + [sym_label] = ACTIONS(6765), + [anon_sym_for] = ACTIONS(6765), + [anon_sym_while] = ACTIONS(6765), + [anon_sym_do] = ACTIONS(6765), + [anon_sym_null] = ACTIONS(6765), + [anon_sym_if] = ACTIONS(6765), + [anon_sym_when] = ACTIONS(6765), + [anon_sym_try] = ACTIONS(6765), + [anon_sym_throw] = ACTIONS(6765), + [anon_sym_return] = ACTIONS(6765), + [anon_sym_continue] = ACTIONS(6765), + [anon_sym_break] = ACTIONS(6765), + [anon_sym_COLON_COLON] = ACTIONS(6763), + [anon_sym_PLUS] = ACTIONS(6765), + [anon_sym_DASH] = ACTIONS(6765), + [anon_sym_PLUS_PLUS] = ACTIONS(6763), + [anon_sym_DASH_DASH] = ACTIONS(6763), + [anon_sym_BANG] = ACTIONS(6763), + [anon_sym_suspend] = ACTIONS(6765), + [anon_sym_sealed] = ACTIONS(6765), + [anon_sym_annotation] = ACTIONS(6765), + [anon_sym_data] = ACTIONS(6765), + [anon_sym_inner] = ACTIONS(6765), + [anon_sym_value] = ACTIONS(6765), + [anon_sym_override] = ACTIONS(6765), + [anon_sym_lateinit] = ACTIONS(6765), + [anon_sym_public] = ACTIONS(6765), + [anon_sym_private] = ACTIONS(6765), + [anon_sym_internal] = ACTIONS(6765), + [anon_sym_protected] = ACTIONS(6765), + [anon_sym_tailrec] = ACTIONS(6765), + [anon_sym_operator] = ACTIONS(6765), + [anon_sym_infix] = ACTIONS(6765), + [anon_sym_inline] = ACTIONS(6765), + [anon_sym_external] = ACTIONS(6765), + [sym_property_modifier] = ACTIONS(6765), + [anon_sym_abstract] = ACTIONS(6765), + [anon_sym_final] = ACTIONS(6765), + [anon_sym_open] = ACTIONS(6765), + [anon_sym_vararg] = ACTIONS(6765), + [anon_sym_noinline] = ACTIONS(6765), + [anon_sym_crossinline] = ACTIONS(6765), + [anon_sym_expect] = ACTIONS(6765), + [anon_sym_actual] = ACTIONS(6765), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6763), + [anon_sym_continue_AT] = ACTIONS(6763), + [anon_sym_break_AT] = ACTIONS(6763), + [anon_sym_this_AT] = ACTIONS(6763), + [anon_sym_super_AT] = ACTIONS(6763), + [sym_real_literal] = ACTIONS(6763), + [sym_integer_literal] = ACTIONS(6765), + [sym_hex_literal] = ACTIONS(6763), + [sym_bin_literal] = ACTIONS(6763), + [anon_sym_true] = ACTIONS(6765), + [anon_sym_false] = ACTIONS(6765), + [anon_sym_SQUOTE] = ACTIONS(6763), + [sym__backtick_identifier] = ACTIONS(6763), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6763), }, [3398] = { - [sym__alpha_identifier] = ACTIONS(5097), - [anon_sym_AT] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_as] = ACTIONS(5097), - [anon_sym_EQ] = ACTIONS(5097), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_where] = ACTIONS(5097), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_get] = ACTIONS(5097), - [anon_sym_set] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_DASH_GT] = ACTIONS(5099), - [sym_label] = ACTIONS(5099), - [anon_sym_in] = ACTIONS(5097), - [anon_sym_while] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_QMARK_COLON] = ACTIONS(5099), - [anon_sym_AMP_AMP] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5099), - [anon_sym_else] = ACTIONS(5097), - [anon_sym_COLON_COLON] = ACTIONS(5099), - [anon_sym_PLUS_EQ] = ACTIONS(5099), - [anon_sym_DASH_EQ] = ACTIONS(5099), - [anon_sym_STAR_EQ] = ACTIONS(5099), - [anon_sym_SLASH_EQ] = ACTIONS(5099), - [anon_sym_PERCENT_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ] = ACTIONS(5097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_BANGin] = ACTIONS(5099), - [anon_sym_is] = ACTIONS(5097), - [anon_sym_BANGis] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_PERCENT] = ACTIONS(5097), - [anon_sym_as_QMARK] = ACTIONS(5099), - [anon_sym_PLUS_PLUS] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5099), - [anon_sym_BANG_BANG] = ACTIONS(5099), - [anon_sym_suspend] = ACTIONS(5097), - [anon_sym_sealed] = ACTIONS(5097), - [anon_sym_annotation] = ACTIONS(5097), - [anon_sym_data] = ACTIONS(5097), - [anon_sym_inner] = ACTIONS(5097), - [anon_sym_value] = ACTIONS(5097), - [anon_sym_override] = ACTIONS(5097), - [anon_sym_lateinit] = ACTIONS(5097), - [anon_sym_public] = ACTIONS(5097), - [anon_sym_private] = ACTIONS(5097), - [anon_sym_internal] = ACTIONS(5097), - [anon_sym_protected] = ACTIONS(5097), - [anon_sym_tailrec] = ACTIONS(5097), - [anon_sym_operator] = ACTIONS(5097), - [anon_sym_infix] = ACTIONS(5097), - [anon_sym_inline] = ACTIONS(5097), - [anon_sym_external] = ACTIONS(5097), - [sym_property_modifier] = ACTIONS(5097), - [anon_sym_abstract] = ACTIONS(5097), - [anon_sym_final] = ACTIONS(5097), - [anon_sym_open] = ACTIONS(5097), - [anon_sym_vararg] = ACTIONS(5097), - [anon_sym_noinline] = ACTIONS(5097), - [anon_sym_crossinline] = ACTIONS(5097), - [anon_sym_expect] = ACTIONS(5097), - [anon_sym_actual] = ACTIONS(5097), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5099), - [sym_safe_nav] = ACTIONS(5099), + [sym_type_constraints] = STATE(3353), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(6767), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), [sym_multiline_comment] = ACTIONS(3), }, [3399] = { - [sym__alpha_identifier] = ACTIONS(5193), - [anon_sym_AT] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_DOT] = ACTIONS(5193), - [anon_sym_as] = ACTIONS(5193), - [anon_sym_EQ] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_where] = ACTIONS(5193), - [anon_sym_SEMI] = ACTIONS(5195), - [anon_sym_get] = ACTIONS(5193), - [anon_sym_set] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_DASH_GT] = ACTIONS(5195), - [sym_label] = ACTIONS(5195), - [anon_sym_in] = ACTIONS(5193), - [anon_sym_while] = ACTIONS(5193), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_QMARK_COLON] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_else] = ACTIONS(5193), - [anon_sym_COLON_COLON] = ACTIONS(5195), - [anon_sym_PLUS_EQ] = ACTIONS(5195), - [anon_sym_DASH_EQ] = ACTIONS(5195), - [anon_sym_STAR_EQ] = ACTIONS(5195), - [anon_sym_SLASH_EQ] = ACTIONS(5195), - [anon_sym_PERCENT_EQ] = ACTIONS(5195), - [anon_sym_BANG_EQ] = ACTIONS(5193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), - [anon_sym_EQ_EQ] = ACTIONS(5193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), - [anon_sym_LT_EQ] = ACTIONS(5195), - [anon_sym_GT_EQ] = ACTIONS(5195), - [anon_sym_BANGin] = ACTIONS(5195), - [anon_sym_is] = ACTIONS(5193), - [anon_sym_BANGis] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_PERCENT] = ACTIONS(5193), - [anon_sym_as_QMARK] = ACTIONS(5195), - [anon_sym_PLUS_PLUS] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_BANG_BANG] = ACTIONS(5195), - [anon_sym_suspend] = ACTIONS(5193), - [anon_sym_sealed] = ACTIONS(5193), - [anon_sym_annotation] = ACTIONS(5193), - [anon_sym_data] = ACTIONS(5193), - [anon_sym_inner] = ACTIONS(5193), - [anon_sym_value] = ACTIONS(5193), - [anon_sym_override] = ACTIONS(5193), - [anon_sym_lateinit] = ACTIONS(5193), - [anon_sym_public] = ACTIONS(5193), - [anon_sym_private] = ACTIONS(5193), - [anon_sym_internal] = ACTIONS(5193), - [anon_sym_protected] = ACTIONS(5193), - [anon_sym_tailrec] = ACTIONS(5193), - [anon_sym_operator] = ACTIONS(5193), - [anon_sym_infix] = ACTIONS(5193), - [anon_sym_inline] = ACTIONS(5193), - [anon_sym_external] = ACTIONS(5193), - [sym_property_modifier] = ACTIONS(5193), - [anon_sym_abstract] = ACTIONS(5193), - [anon_sym_final] = ACTIONS(5193), - [anon_sym_open] = ACTIONS(5193), - [anon_sym_vararg] = ACTIONS(5193), - [anon_sym_noinline] = ACTIONS(5193), - [anon_sym_crossinline] = ACTIONS(5193), - [anon_sym_expect] = ACTIONS(5193), - [anon_sym_actual] = ACTIONS(5193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5195), - [sym_safe_nav] = ACTIONS(5195), + [sym_type_constraints] = STATE(3363), + [sym_enum_class_body] = STATE(3430), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, [3400] = { - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4187), - [anon_sym_as] = ACTIONS(4187), - [anon_sym_EQ] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_RBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_COMMA] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4187), - [anon_sym_LT] = ACTIONS(4187), - [anon_sym_GT] = ACTIONS(4187), - [anon_sym_where] = ACTIONS(4187), - [anon_sym_SEMI] = ACTIONS(4189), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_AMP] = ACTIONS(4187), - [sym__quest] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4187), - [sym_label] = ACTIONS(4189), - [anon_sym_in] = ACTIONS(4187), - [anon_sym_DOT_DOT] = ACTIONS(4189), - [anon_sym_QMARK_COLON] = ACTIONS(4189), - [anon_sym_AMP_AMP] = ACTIONS(4189), - [anon_sym_PIPE_PIPE] = ACTIONS(4189), - [anon_sym_else] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS_EQ] = ACTIONS(4189), - [anon_sym_DASH_EQ] = ACTIONS(4189), - [anon_sym_STAR_EQ] = ACTIONS(4189), - [anon_sym_SLASH_EQ] = ACTIONS(4189), - [anon_sym_PERCENT_EQ] = ACTIONS(4189), - [anon_sym_BANG_EQ] = ACTIONS(4187), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4189), - [anon_sym_EQ_EQ] = ACTIONS(4187), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4189), - [anon_sym_LT_EQ] = ACTIONS(4189), - [anon_sym_GT_EQ] = ACTIONS(4189), - [anon_sym_BANGin] = ACTIONS(4189), - [anon_sym_is] = ACTIONS(4187), - [anon_sym_BANGis] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_SLASH] = ACTIONS(4187), - [anon_sym_PERCENT] = ACTIONS(4187), - [anon_sym_as_QMARK] = ACTIONS(4189), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4189), - [sym__automatic_semicolon] = ACTIONS(4189), - [sym_safe_nav] = ACTIONS(4189), + [sym__alpha_identifier] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_RBRACK] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4896), + [anon_sym_as] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_where] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_get] = ACTIONS(4896), + [anon_sym_set] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_DASH_GT] = ACTIONS(4898), + [sym_label] = ACTIONS(4898), + [anon_sym_in] = ACTIONS(4896), + [anon_sym_while] = ACTIONS(4896), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_QMARK_COLON] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4898), + [anon_sym_DASH_EQ] = ACTIONS(4898), + [anon_sym_STAR_EQ] = ACTIONS(4898), + [anon_sym_SLASH_EQ] = ACTIONS(4898), + [anon_sym_PERCENT_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_BANGin] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4896), + [anon_sym_BANGis] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_as_QMARK] = ACTIONS(4898), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_BANG_BANG] = ACTIONS(4898), + [anon_sym_suspend] = ACTIONS(4896), + [anon_sym_sealed] = ACTIONS(4896), + [anon_sym_annotation] = ACTIONS(4896), + [anon_sym_data] = ACTIONS(4896), + [anon_sym_inner] = ACTIONS(4896), + [anon_sym_value] = ACTIONS(4896), + [anon_sym_override] = ACTIONS(4896), + [anon_sym_lateinit] = ACTIONS(4896), + [anon_sym_public] = ACTIONS(4896), + [anon_sym_private] = ACTIONS(4896), + [anon_sym_internal] = ACTIONS(4896), + [anon_sym_protected] = ACTIONS(4896), + [anon_sym_tailrec] = ACTIONS(4896), + [anon_sym_operator] = ACTIONS(4896), + [anon_sym_infix] = ACTIONS(4896), + [anon_sym_inline] = ACTIONS(4896), + [anon_sym_external] = ACTIONS(4896), + [sym_property_modifier] = ACTIONS(4896), + [anon_sym_abstract] = ACTIONS(4896), + [anon_sym_final] = ACTIONS(4896), + [anon_sym_open] = ACTIONS(4896), + [anon_sym_vararg] = ACTIONS(4896), + [anon_sym_noinline] = ACTIONS(4896), + [anon_sym_crossinline] = ACTIONS(4896), + [anon_sym_expect] = ACTIONS(4896), + [anon_sym_actual] = ACTIONS(4896), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4898), + [sym_safe_nav] = ACTIONS(4898), [sym_multiline_comment] = ACTIONS(3), }, [3401] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4961), - [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_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_value] = 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(5113), + [anon_sym_AT] = ACTIONS(5115), + [anon_sym_LBRACK] = ACTIONS(5115), + [anon_sym_RBRACK] = ACTIONS(5115), + [anon_sym_DOT] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5115), + [anon_sym_RBRACE] = ACTIONS(5115), + [anon_sym_LPAREN] = ACTIONS(5115), + [anon_sym_COMMA] = ACTIONS(5115), + [anon_sym_RPAREN] = ACTIONS(5115), + [anon_sym_LT] = ACTIONS(5113), + [anon_sym_GT] = ACTIONS(5113), + [anon_sym_where] = ACTIONS(5113), + [anon_sym_SEMI] = ACTIONS(5115), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5113), + [anon_sym_STAR] = ACTIONS(5113), + [anon_sym_DASH_GT] = ACTIONS(5115), + [sym_label] = ACTIONS(5115), + [anon_sym_in] = ACTIONS(5113), + [anon_sym_while] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5115), + [anon_sym_QMARK_COLON] = ACTIONS(5115), + [anon_sym_AMP_AMP] = ACTIONS(5115), + [anon_sym_PIPE_PIPE] = ACTIONS(5115), + [anon_sym_else] = ACTIONS(5113), + [anon_sym_COLON_COLON] = ACTIONS(5115), + [anon_sym_PLUS_EQ] = ACTIONS(5115), + [anon_sym_DASH_EQ] = ACTIONS(5115), + [anon_sym_STAR_EQ] = ACTIONS(5115), + [anon_sym_SLASH_EQ] = ACTIONS(5115), + [anon_sym_PERCENT_EQ] = ACTIONS(5115), + [anon_sym_BANG_EQ] = ACTIONS(5113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5115), + [anon_sym_EQ_EQ] = ACTIONS(5113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5115), + [anon_sym_LT_EQ] = ACTIONS(5115), + [anon_sym_GT_EQ] = ACTIONS(5115), + [anon_sym_BANGin] = ACTIONS(5115), + [anon_sym_is] = ACTIONS(5113), + [anon_sym_BANGis] = ACTIONS(5115), + [anon_sym_PLUS] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(5115), + [anon_sym_PLUS_PLUS] = ACTIONS(5115), + [anon_sym_DASH_DASH] = ACTIONS(5115), + [anon_sym_BANG_BANG] = ACTIONS(5115), + [anon_sym_suspend] = ACTIONS(5113), + [anon_sym_sealed] = ACTIONS(5113), + [anon_sym_annotation] = ACTIONS(5113), + [anon_sym_data] = ACTIONS(5113), + [anon_sym_inner] = ACTIONS(5113), + [anon_sym_value] = ACTIONS(5113), + [anon_sym_override] = ACTIONS(5113), + [anon_sym_lateinit] = ACTIONS(5113), + [anon_sym_public] = ACTIONS(5113), + [anon_sym_private] = ACTIONS(5113), + [anon_sym_internal] = ACTIONS(5113), + [anon_sym_protected] = ACTIONS(5113), + [anon_sym_tailrec] = ACTIONS(5113), + [anon_sym_operator] = ACTIONS(5113), + [anon_sym_infix] = ACTIONS(5113), + [anon_sym_inline] = ACTIONS(5113), + [anon_sym_external] = ACTIONS(5113), + [sym_property_modifier] = ACTIONS(5113), + [anon_sym_abstract] = ACTIONS(5113), + [anon_sym_final] = ACTIONS(5113), + [anon_sym_open] = ACTIONS(5113), + [anon_sym_vararg] = ACTIONS(5113), + [anon_sym_noinline] = ACTIONS(5113), + [anon_sym_crossinline] = ACTIONS(5113), + [anon_sym_expect] = ACTIONS(5113), + [anon_sym_actual] = ACTIONS(5113), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5115), + [sym_safe_nav] = ACTIONS(5115), [sym_multiline_comment] = ACTIONS(3), }, [3402] = { - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [anon_sym_DASH_GT] = ACTIONS(4417), - [sym_label] = ACTIONS(4417), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_while] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_suspend] = ACTIONS(4415), - [anon_sym_sealed] = ACTIONS(4415), - [anon_sym_annotation] = ACTIONS(4415), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_override] = ACTIONS(4415), - [anon_sym_lateinit] = ACTIONS(4415), - [anon_sym_public] = ACTIONS(4415), - [anon_sym_private] = ACTIONS(4415), - [anon_sym_internal] = ACTIONS(4415), - [anon_sym_protected] = ACTIONS(4415), - [anon_sym_tailrec] = ACTIONS(4415), - [anon_sym_operator] = ACTIONS(4415), - [anon_sym_infix] = ACTIONS(4415), - [anon_sym_inline] = ACTIONS(4415), - [anon_sym_external] = ACTIONS(4415), - [sym_property_modifier] = ACTIONS(4415), - [anon_sym_abstract] = ACTIONS(4415), - [anon_sym_final] = ACTIONS(4415), - [anon_sym_open] = ACTIONS(4415), - [anon_sym_vararg] = ACTIONS(4415), - [anon_sym_noinline] = ACTIONS(4415), - [anon_sym_crossinline] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), + [sym_class_body] = STATE(3464), + [sym_type_constraints] = STATE(3364), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6769), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, [3403] = { - [sym__alpha_identifier] = ACTIONS(5209), - [anon_sym_AT] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_RBRACK] = ACTIONS(5211), - [anon_sym_DOT] = ACTIONS(5209), - [anon_sym_as] = ACTIONS(5209), - [anon_sym_EQ] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_RPAREN] = ACTIONS(5211), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_where] = ACTIONS(5209), - [anon_sym_SEMI] = ACTIONS(5211), - [anon_sym_get] = ACTIONS(5209), - [anon_sym_set] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_DASH_GT] = ACTIONS(5211), - [sym_label] = ACTIONS(5211), - [anon_sym_in] = ACTIONS(5209), - [anon_sym_while] = ACTIONS(5209), - [anon_sym_DOT_DOT] = ACTIONS(5211), - [anon_sym_QMARK_COLON] = ACTIONS(5211), - [anon_sym_AMP_AMP] = ACTIONS(5211), - [anon_sym_PIPE_PIPE] = ACTIONS(5211), - [anon_sym_else] = ACTIONS(5209), - [anon_sym_COLON_COLON] = ACTIONS(5211), - [anon_sym_PLUS_EQ] = ACTIONS(5211), - [anon_sym_DASH_EQ] = ACTIONS(5211), - [anon_sym_STAR_EQ] = ACTIONS(5211), - [anon_sym_SLASH_EQ] = ACTIONS(5211), - [anon_sym_PERCENT_EQ] = ACTIONS(5211), - [anon_sym_BANG_EQ] = ACTIONS(5209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), - [anon_sym_EQ_EQ] = ACTIONS(5209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), - [anon_sym_LT_EQ] = ACTIONS(5211), - [anon_sym_GT_EQ] = ACTIONS(5211), - [anon_sym_BANGin] = ACTIONS(5211), - [anon_sym_is] = ACTIONS(5209), - [anon_sym_BANGis] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_PERCENT] = ACTIONS(5209), - [anon_sym_as_QMARK] = ACTIONS(5211), - [anon_sym_PLUS_PLUS] = ACTIONS(5211), - [anon_sym_DASH_DASH] = ACTIONS(5211), - [anon_sym_BANG_BANG] = ACTIONS(5211), - [anon_sym_suspend] = ACTIONS(5209), - [anon_sym_sealed] = ACTIONS(5209), - [anon_sym_annotation] = ACTIONS(5209), - [anon_sym_data] = ACTIONS(5209), - [anon_sym_inner] = ACTIONS(5209), - [anon_sym_value] = ACTIONS(5209), - [anon_sym_override] = ACTIONS(5209), - [anon_sym_lateinit] = ACTIONS(5209), - [anon_sym_public] = ACTIONS(5209), - [anon_sym_private] = ACTIONS(5209), - [anon_sym_internal] = ACTIONS(5209), - [anon_sym_protected] = ACTIONS(5209), - [anon_sym_tailrec] = ACTIONS(5209), - [anon_sym_operator] = ACTIONS(5209), - [anon_sym_infix] = ACTIONS(5209), - [anon_sym_inline] = ACTIONS(5209), - [anon_sym_external] = ACTIONS(5209), - [sym_property_modifier] = ACTIONS(5209), - [anon_sym_abstract] = ACTIONS(5209), - [anon_sym_final] = ACTIONS(5209), - [anon_sym_open] = ACTIONS(5209), - [anon_sym_vararg] = ACTIONS(5209), - [anon_sym_noinline] = ACTIONS(5209), - [anon_sym_crossinline] = ACTIONS(5209), - [anon_sym_expect] = ACTIONS(5209), - [anon_sym_actual] = ACTIONS(5209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5211), - [sym_safe_nav] = ACTIONS(5211), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_arguments] = STATE(3741), + [sym__alpha_identifier] = ACTIONS(4117), + [anon_sym_AT] = ACTIONS(4119), + [anon_sym_LBRACK] = ACTIONS(4119), + [anon_sym_DOT] = ACTIONS(4117), + [anon_sym_typealias] = ACTIONS(4117), + [anon_sym_class] = ACTIONS(4117), + [anon_sym_interface] = ACTIONS(4117), + [anon_sym_enum] = ACTIONS(4117), + [anon_sym_LBRACE] = ACTIONS(4119), + [anon_sym_LPAREN] = ACTIONS(4119), + [anon_sym_val] = ACTIONS(4117), + [anon_sym_var] = ACTIONS(4117), + [anon_sym_LT] = ACTIONS(6771), + [anon_sym_object] = ACTIONS(4117), + [anon_sym_fun] = ACTIONS(4117), + [anon_sym_get] = ACTIONS(4117), + [anon_sym_set] = ACTIONS(4117), + [anon_sym_this] = ACTIONS(4117), + [anon_sym_super] = ACTIONS(4117), + [anon_sym_STAR] = ACTIONS(4119), + [sym_label] = ACTIONS(4117), + [anon_sym_for] = ACTIONS(4117), + [anon_sym_while] = ACTIONS(4117), + [anon_sym_do] = ACTIONS(4117), + [anon_sym_null] = ACTIONS(4117), + [anon_sym_if] = ACTIONS(4117), + [anon_sym_when] = ACTIONS(4117), + [anon_sym_try] = ACTIONS(4117), + [anon_sym_throw] = ACTIONS(4117), + [anon_sym_return] = ACTIONS(4117), + [anon_sym_continue] = ACTIONS(4117), + [anon_sym_break] = ACTIONS(4117), + [anon_sym_COLON_COLON] = ACTIONS(4119), + [anon_sym_PLUS] = ACTIONS(4117), + [anon_sym_DASH] = ACTIONS(4117), + [anon_sym_PLUS_PLUS] = ACTIONS(4119), + [anon_sym_DASH_DASH] = ACTIONS(4119), + [anon_sym_BANG] = ACTIONS(4119), + [anon_sym_suspend] = ACTIONS(4117), + [anon_sym_sealed] = ACTIONS(4117), + [anon_sym_annotation] = ACTIONS(4117), + [anon_sym_data] = ACTIONS(4117), + [anon_sym_inner] = ACTIONS(4117), + [anon_sym_value] = ACTIONS(4117), + [anon_sym_override] = ACTIONS(4117), + [anon_sym_lateinit] = ACTIONS(4117), + [anon_sym_public] = ACTIONS(4117), + [anon_sym_private] = ACTIONS(4117), + [anon_sym_internal] = ACTIONS(4117), + [anon_sym_protected] = ACTIONS(4117), + [anon_sym_tailrec] = ACTIONS(4117), + [anon_sym_operator] = ACTIONS(4117), + [anon_sym_infix] = ACTIONS(4117), + [anon_sym_inline] = ACTIONS(4117), + [anon_sym_external] = ACTIONS(4117), + [sym_property_modifier] = ACTIONS(4117), + [anon_sym_abstract] = ACTIONS(4117), + [anon_sym_final] = ACTIONS(4117), + [anon_sym_open] = ACTIONS(4117), + [anon_sym_vararg] = ACTIONS(4117), + [anon_sym_noinline] = ACTIONS(4117), + [anon_sym_crossinline] = ACTIONS(4117), + [anon_sym_expect] = ACTIONS(4117), + [anon_sym_actual] = ACTIONS(4117), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4119), + [anon_sym_continue_AT] = ACTIONS(4119), + [anon_sym_break_AT] = ACTIONS(4119), + [anon_sym_this_AT] = ACTIONS(4119), + [anon_sym_super_AT] = ACTIONS(4119), + [sym_real_literal] = ACTIONS(4119), + [sym_integer_literal] = ACTIONS(4117), + [sym_hex_literal] = ACTIONS(4119), + [sym_bin_literal] = ACTIONS(4119), + [anon_sym_true] = ACTIONS(4117), + [anon_sym_false] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [sym__backtick_identifier] = ACTIONS(4119), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4119), }, [3404] = { - [sym_type_constraints] = STATE(3355), - [sym_enum_class_body] = STATE(3402), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(6836), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), + [sym_type_constraints] = STATE(3330), + [sym_enum_class_body] = STATE(3464), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6773), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, [3405] = { - [sym__alpha_identifier] = ACTIONS(5055), - [anon_sym_AT] = ACTIONS(5057), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_RBRACK] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5055), - [anon_sym_as] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5057), - [anon_sym_RBRACE] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5057), - [anon_sym_COMMA] = ACTIONS(5057), - [anon_sym_RPAREN] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5055), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_where] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5057), - [anon_sym_get] = ACTIONS(5055), - [anon_sym_set] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [anon_sym_DASH_GT] = ACTIONS(5057), - [sym_label] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5055), - [anon_sym_while] = ACTIONS(5055), - [anon_sym_DOT_DOT] = ACTIONS(5057), - [anon_sym_QMARK_COLON] = ACTIONS(5057), - [anon_sym_AMP_AMP] = ACTIONS(5057), - [anon_sym_PIPE_PIPE] = ACTIONS(5057), - [anon_sym_else] = ACTIONS(5055), - [anon_sym_COLON_COLON] = ACTIONS(5057), - [anon_sym_PLUS_EQ] = ACTIONS(5057), - [anon_sym_DASH_EQ] = ACTIONS(5057), - [anon_sym_STAR_EQ] = ACTIONS(5057), - [anon_sym_SLASH_EQ] = ACTIONS(5057), - [anon_sym_PERCENT_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ] = ACTIONS(5055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5057), - [anon_sym_LT_EQ] = ACTIONS(5057), - [anon_sym_GT_EQ] = ACTIONS(5057), - [anon_sym_BANGin] = ACTIONS(5057), - [anon_sym_is] = ACTIONS(5055), - [anon_sym_BANGis] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_as_QMARK] = ACTIONS(5057), - [anon_sym_PLUS_PLUS] = ACTIONS(5057), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_BANG_BANG] = ACTIONS(5057), - [anon_sym_suspend] = ACTIONS(5055), - [anon_sym_sealed] = ACTIONS(5055), - [anon_sym_annotation] = ACTIONS(5055), - [anon_sym_data] = ACTIONS(5055), - [anon_sym_inner] = ACTIONS(5055), - [anon_sym_value] = ACTIONS(5055), - [anon_sym_override] = ACTIONS(5055), - [anon_sym_lateinit] = ACTIONS(5055), - [anon_sym_public] = ACTIONS(5055), - [anon_sym_private] = ACTIONS(5055), - [anon_sym_internal] = ACTIONS(5055), - [anon_sym_protected] = ACTIONS(5055), - [anon_sym_tailrec] = ACTIONS(5055), - [anon_sym_operator] = ACTIONS(5055), - [anon_sym_infix] = ACTIONS(5055), - [anon_sym_inline] = ACTIONS(5055), - [anon_sym_external] = ACTIONS(5055), - [sym_property_modifier] = ACTIONS(5055), - [anon_sym_abstract] = ACTIONS(5055), - [anon_sym_final] = ACTIONS(5055), - [anon_sym_open] = ACTIONS(5055), - [anon_sym_vararg] = ACTIONS(5055), - [anon_sym_noinline] = ACTIONS(5055), - [anon_sym_crossinline] = ACTIONS(5055), - [anon_sym_expect] = ACTIONS(5055), - [anon_sym_actual] = ACTIONS(5055), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5057), - [sym_safe_nav] = ACTIONS(5057), + [sym_class_body] = STATE(3501), + [sym_type_constraints] = STATE(3339), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(5796), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [3406] = { - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_object] = ACTIONS(4276), - [anon_sym_fun] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [anon_sym_this] = ACTIONS(4276), - [anon_sym_super] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4278), - [sym_label] = ACTIONS(4276), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_null] = ACTIONS(4276), - [anon_sym_if] = ACTIONS(4276), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_when] = ACTIONS(4276), - [anon_sym_try] = ACTIONS(4276), - [anon_sym_throw] = ACTIONS(4276), - [anon_sym_return] = ACTIONS(4276), - [anon_sym_continue] = ACTIONS(4276), - [anon_sym_break] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_suspend] = ACTIONS(4276), - [anon_sym_sealed] = ACTIONS(4276), - [anon_sym_annotation] = ACTIONS(4276), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_override] = ACTIONS(4276), - [anon_sym_lateinit] = ACTIONS(4276), - [anon_sym_public] = ACTIONS(4276), - [anon_sym_private] = ACTIONS(4276), - [anon_sym_internal] = ACTIONS(4276), - [anon_sym_protected] = ACTIONS(4276), - [anon_sym_tailrec] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [anon_sym_infix] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym_external] = ACTIONS(4276), - [sym_property_modifier] = ACTIONS(4276), - [anon_sym_abstract] = ACTIONS(4276), - [anon_sym_final] = ACTIONS(4276), - [anon_sym_open] = ACTIONS(4276), - [anon_sym_vararg] = ACTIONS(4276), - [anon_sym_noinline] = ACTIONS(4276), - [anon_sym_crossinline] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4278), - [anon_sym_continue_AT] = ACTIONS(4278), - [anon_sym_break_AT] = ACTIONS(4278), - [anon_sym_this_AT] = ACTIONS(4278), - [anon_sym_super_AT] = ACTIONS(4278), - [sym_real_literal] = ACTIONS(4278), - [sym_integer_literal] = ACTIONS(4276), - [sym_hex_literal] = ACTIONS(4278), - [sym_bin_literal] = ACTIONS(4278), - [anon_sym_true] = ACTIONS(4276), - [anon_sym_false] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4278), - [sym__backtick_identifier] = ACTIONS(4278), - [sym__automatic_semicolon] = ACTIONS(4278), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4278), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_RPAREN] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [anon_sym_DASH_GT] = ACTIONS(4361), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_while] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), }, [3407] = { - [sym_type_constraints] = STATE(3335), - [sym_enum_class_body] = STATE(3480), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(5886), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(5870), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [3408] = { - [sym__alpha_identifier] = ACTIONS(5019), - [anon_sym_AT] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5021), - [anon_sym_RBRACE] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_where] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5021), - [anon_sym_get] = ACTIONS(5019), - [anon_sym_set] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [anon_sym_DASH_GT] = ACTIONS(5021), - [sym_label] = ACTIONS(5021), - [anon_sym_in] = ACTIONS(5019), - [anon_sym_while] = ACTIONS(5019), - [anon_sym_DOT_DOT] = ACTIONS(5021), - [anon_sym_QMARK_COLON] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_else] = ACTIONS(5019), - [anon_sym_COLON_COLON] = ACTIONS(5021), - [anon_sym_PLUS_EQ] = ACTIONS(5021), - [anon_sym_DASH_EQ] = ACTIONS(5021), - [anon_sym_STAR_EQ] = ACTIONS(5021), - [anon_sym_SLASH_EQ] = ACTIONS(5021), - [anon_sym_PERCENT_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ] = ACTIONS(5019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5021), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5021), - [anon_sym_BANGin] = ACTIONS(5021), - [anon_sym_is] = ACTIONS(5019), - [anon_sym_BANGis] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_as_QMARK] = ACTIONS(5021), - [anon_sym_PLUS_PLUS] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_BANG_BANG] = ACTIONS(5021), - [anon_sym_suspend] = ACTIONS(5019), - [anon_sym_sealed] = ACTIONS(5019), - [anon_sym_annotation] = ACTIONS(5019), - [anon_sym_data] = ACTIONS(5019), - [anon_sym_inner] = ACTIONS(5019), - [anon_sym_value] = ACTIONS(5019), - [anon_sym_override] = ACTIONS(5019), - [anon_sym_lateinit] = ACTIONS(5019), - [anon_sym_public] = ACTIONS(5019), - [anon_sym_private] = ACTIONS(5019), - [anon_sym_internal] = ACTIONS(5019), - [anon_sym_protected] = ACTIONS(5019), - [anon_sym_tailrec] = ACTIONS(5019), - [anon_sym_operator] = ACTIONS(5019), - [anon_sym_infix] = ACTIONS(5019), - [anon_sym_inline] = ACTIONS(5019), - [anon_sym_external] = ACTIONS(5019), - [sym_property_modifier] = ACTIONS(5019), - [anon_sym_abstract] = ACTIONS(5019), - [anon_sym_final] = ACTIONS(5019), - [anon_sym_open] = ACTIONS(5019), - [anon_sym_vararg] = ACTIONS(5019), - [anon_sym_noinline] = ACTIONS(5019), - [anon_sym_crossinline] = ACTIONS(5019), - [anon_sym_expect] = ACTIONS(5019), - [anon_sym_actual] = ACTIONS(5019), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5021), - [sym_safe_nav] = ACTIONS(5021), + [sym_class_body] = STATE(3503), + [sym_type_constraints] = STATE(3302), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(6775), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), [sym_multiline_comment] = ACTIONS(3), }, [3409] = { - [sym__alpha_identifier] = ACTIONS(4963), - [anon_sym_AT] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4963), - [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_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_value] = 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__alpha_identifier] = ACTIONS(4607), + [anon_sym_AT] = ACTIONS(4609), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_RBRACK] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(4609), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4609), + [anon_sym_RPAREN] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_where] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4609), + [anon_sym_get] = ACTIONS(4607), + [anon_sym_set] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [anon_sym_DASH_GT] = ACTIONS(4609), + [sym_label] = ACTIONS(4609), + [anon_sym_in] = ACTIONS(4607), + [anon_sym_while] = ACTIONS(4607), + [anon_sym_DOT_DOT] = ACTIONS(4609), + [anon_sym_QMARK_COLON] = ACTIONS(4609), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4609), + [anon_sym_else] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4609), + [anon_sym_PLUS_EQ] = ACTIONS(4609), + [anon_sym_DASH_EQ] = ACTIONS(4609), + [anon_sym_STAR_EQ] = ACTIONS(4609), + [anon_sym_SLASH_EQ] = ACTIONS(4609), + [anon_sym_PERCENT_EQ] = ACTIONS(4609), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4609), + [anon_sym_BANGin] = ACTIONS(4609), + [anon_sym_is] = ACTIONS(4607), + [anon_sym_BANGis] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_as_QMARK] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4609), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_BANG_BANG] = ACTIONS(4609), + [anon_sym_suspend] = ACTIONS(4607), + [anon_sym_sealed] = ACTIONS(4607), + [anon_sym_annotation] = ACTIONS(4607), + [anon_sym_data] = ACTIONS(4607), + [anon_sym_inner] = ACTIONS(4607), + [anon_sym_value] = ACTIONS(4607), + [anon_sym_override] = ACTIONS(4607), + [anon_sym_lateinit] = ACTIONS(4607), + [anon_sym_public] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4607), + [anon_sym_internal] = ACTIONS(4607), + [anon_sym_protected] = ACTIONS(4607), + [anon_sym_tailrec] = ACTIONS(4607), + [anon_sym_operator] = ACTIONS(4607), + [anon_sym_infix] = ACTIONS(4607), + [anon_sym_inline] = ACTIONS(4607), + [anon_sym_external] = ACTIONS(4607), + [sym_property_modifier] = ACTIONS(4607), + [anon_sym_abstract] = ACTIONS(4607), + [anon_sym_final] = ACTIONS(4607), + [anon_sym_open] = ACTIONS(4607), + [anon_sym_vararg] = ACTIONS(4607), + [anon_sym_noinline] = ACTIONS(4607), + [anon_sym_crossinline] = ACTIONS(4607), + [anon_sym_expect] = ACTIONS(4607), + [anon_sym_actual] = ACTIONS(4607), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4609), + [sym_safe_nav] = ACTIONS(4609), [sym_multiline_comment] = ACTIONS(3), }, [3410] = { - [sym_class_body] = STATE(3510), - [sym_type_constraints] = STATE(3312), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6838), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [sym__alpha_identifier] = ACTIONS(5129), + [anon_sym_AT] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_RBRACK] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_RPAREN] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5129), + [anon_sym_GT] = ACTIONS(5129), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym_get] = ACTIONS(5129), + [anon_sym_set] = ACTIONS(5129), + [anon_sym_STAR] = ACTIONS(5129), + [anon_sym_DASH_GT] = ACTIONS(5131), + [sym_label] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5129), + [anon_sym_while] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5131), + [anon_sym_QMARK_COLON] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_else] = ACTIONS(5129), + [anon_sym_COLON_COLON] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_BANGin] = ACTIONS(5131), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_BANGis] = ACTIONS(5131), + [anon_sym_PLUS] = ACTIONS(5129), + [anon_sym_DASH] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_as_QMARK] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_BANG_BANG] = ACTIONS(5131), + [anon_sym_suspend] = ACTIONS(5129), + [anon_sym_sealed] = ACTIONS(5129), + [anon_sym_annotation] = ACTIONS(5129), + [anon_sym_data] = ACTIONS(5129), + [anon_sym_inner] = ACTIONS(5129), + [anon_sym_value] = ACTIONS(5129), + [anon_sym_override] = ACTIONS(5129), + [anon_sym_lateinit] = ACTIONS(5129), + [anon_sym_public] = ACTIONS(5129), + [anon_sym_private] = ACTIONS(5129), + [anon_sym_internal] = ACTIONS(5129), + [anon_sym_protected] = ACTIONS(5129), + [anon_sym_tailrec] = ACTIONS(5129), + [anon_sym_operator] = ACTIONS(5129), + [anon_sym_infix] = ACTIONS(5129), + [anon_sym_inline] = ACTIONS(5129), + [anon_sym_external] = ACTIONS(5129), + [sym_property_modifier] = ACTIONS(5129), + [anon_sym_abstract] = ACTIONS(5129), + [anon_sym_final] = ACTIONS(5129), + [anon_sym_open] = ACTIONS(5129), + [anon_sym_vararg] = ACTIONS(5129), + [anon_sym_noinline] = ACTIONS(5129), + [anon_sym_crossinline] = ACTIONS(5129), + [anon_sym_expect] = ACTIONS(5129), + [anon_sym_actual] = ACTIONS(5129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5131), + [sym_safe_nav] = ACTIONS(5131), [sym_multiline_comment] = ACTIONS(3), }, [3411] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(6840), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__alpha_identifier] = ACTIONS(4158), + [anon_sym_AT] = ACTIONS(4160), + [anon_sym_LBRACK] = ACTIONS(4160), + [anon_sym_DOT] = ACTIONS(4158), + [anon_sym_as] = ACTIONS(4158), + [anon_sym_EQ] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(4160), + [anon_sym_COMMA] = ACTIONS(4160), + [anon_sym_by] = ACTIONS(4158), + [anon_sym_LT] = ACTIONS(4158), + [anon_sym_GT] = ACTIONS(4158), + [anon_sym_where] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym_get] = ACTIONS(4158), + [anon_sym_set] = ACTIONS(4158), + [sym__quest] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4158), + [anon_sym_DASH_GT] = ACTIONS(4162), + [sym_label] = ACTIONS(4160), + [anon_sym_in] = ACTIONS(4158), + [anon_sym_DOT_DOT] = ACTIONS(4160), + [anon_sym_QMARK_COLON] = ACTIONS(4160), + [anon_sym_AMP_AMP] = ACTIONS(4160), + [anon_sym_PIPE_PIPE] = ACTIONS(4160), + [anon_sym_else] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(4160), + [anon_sym_PLUS_EQ] = ACTIONS(4160), + [anon_sym_DASH_EQ] = ACTIONS(4160), + [anon_sym_STAR_EQ] = ACTIONS(4160), + [anon_sym_SLASH_EQ] = ACTIONS(4160), + [anon_sym_PERCENT_EQ] = ACTIONS(4160), + [anon_sym_BANG_EQ] = ACTIONS(4158), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4160), + [anon_sym_EQ_EQ] = ACTIONS(4158), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4160), + [anon_sym_LT_EQ] = ACTIONS(4160), + [anon_sym_GT_EQ] = ACTIONS(4160), + [anon_sym_BANGin] = ACTIONS(4160), + [anon_sym_is] = ACTIONS(4158), + [anon_sym_BANGis] = ACTIONS(4160), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_SLASH] = ACTIONS(4158), + [anon_sym_PERCENT] = ACTIONS(4158), + [anon_sym_as_QMARK] = ACTIONS(4160), + [anon_sym_PLUS_PLUS] = ACTIONS(4160), + [anon_sym_DASH_DASH] = ACTIONS(4160), + [anon_sym_BANG_BANG] = ACTIONS(4160), + [anon_sym_suspend] = ACTIONS(4158), + [anon_sym_sealed] = ACTIONS(4158), + [anon_sym_annotation] = ACTIONS(4158), + [anon_sym_data] = ACTIONS(4158), + [anon_sym_inner] = ACTIONS(4158), + [anon_sym_value] = ACTIONS(4158), + [anon_sym_override] = ACTIONS(4158), + [anon_sym_lateinit] = ACTIONS(4158), + [anon_sym_public] = ACTIONS(4158), + [anon_sym_private] = ACTIONS(4158), + [anon_sym_internal] = ACTIONS(4158), + [anon_sym_protected] = ACTIONS(4158), + [anon_sym_tailrec] = ACTIONS(4158), + [anon_sym_operator] = ACTIONS(4158), + [anon_sym_infix] = ACTIONS(4158), + [anon_sym_inline] = ACTIONS(4158), + [anon_sym_external] = ACTIONS(4158), + [sym_property_modifier] = ACTIONS(4158), + [anon_sym_abstract] = ACTIONS(4158), + [anon_sym_final] = ACTIONS(4158), + [anon_sym_open] = ACTIONS(4158), + [anon_sym_vararg] = ACTIONS(4158), + [anon_sym_noinline] = ACTIONS(4158), + [anon_sym_crossinline] = ACTIONS(4158), + [anon_sym_expect] = ACTIONS(4158), + [anon_sym_actual] = ACTIONS(4158), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4160), + [sym__automatic_semicolon] = ACTIONS(4160), + [sym_safe_nav] = ACTIONS(4160), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), }, [3412] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(6842), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(6840), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [sym_class_body] = STATE(3549), + [sym_type_constraints] = STATE(3273), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(5874), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), }, [3413] = { - [sym__alpha_identifier] = ACTIONS(5185), - [anon_sym_AT] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_DOT] = ACTIONS(5185), - [anon_sym_as] = ACTIONS(5185), - [anon_sym_EQ] = ACTIONS(5185), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_where] = ACTIONS(5185), - [anon_sym_SEMI] = ACTIONS(5187), - [anon_sym_get] = ACTIONS(5185), - [anon_sym_set] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_DASH_GT] = ACTIONS(5187), - [sym_label] = ACTIONS(5187), - [anon_sym_in] = ACTIONS(5185), - [anon_sym_while] = ACTIONS(5185), - [anon_sym_DOT_DOT] = ACTIONS(5187), - [anon_sym_QMARK_COLON] = ACTIONS(5187), - [anon_sym_AMP_AMP] = ACTIONS(5187), - [anon_sym_PIPE_PIPE] = ACTIONS(5187), - [anon_sym_else] = ACTIONS(5185), - [anon_sym_COLON_COLON] = ACTIONS(5187), - [anon_sym_PLUS_EQ] = ACTIONS(5187), - [anon_sym_DASH_EQ] = ACTIONS(5187), - [anon_sym_STAR_EQ] = ACTIONS(5187), - [anon_sym_SLASH_EQ] = ACTIONS(5187), - [anon_sym_PERCENT_EQ] = ACTIONS(5187), - [anon_sym_BANG_EQ] = ACTIONS(5185), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5187), - [anon_sym_EQ_EQ] = ACTIONS(5185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5187), - [anon_sym_LT_EQ] = ACTIONS(5187), - [anon_sym_GT_EQ] = ACTIONS(5187), - [anon_sym_BANGin] = ACTIONS(5187), - [anon_sym_is] = ACTIONS(5185), - [anon_sym_BANGis] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_PERCENT] = ACTIONS(5185), - [anon_sym_as_QMARK] = ACTIONS(5187), - [anon_sym_PLUS_PLUS] = ACTIONS(5187), - [anon_sym_DASH_DASH] = ACTIONS(5187), - [anon_sym_BANG_BANG] = ACTIONS(5187), - [anon_sym_suspend] = ACTIONS(5185), - [anon_sym_sealed] = ACTIONS(5185), - [anon_sym_annotation] = ACTIONS(5185), - [anon_sym_data] = ACTIONS(5185), - [anon_sym_inner] = ACTIONS(5185), - [anon_sym_value] = ACTIONS(5185), - [anon_sym_override] = ACTIONS(5185), - [anon_sym_lateinit] = ACTIONS(5185), - [anon_sym_public] = ACTIONS(5185), - [anon_sym_private] = ACTIONS(5185), - [anon_sym_internal] = ACTIONS(5185), - [anon_sym_protected] = ACTIONS(5185), - [anon_sym_tailrec] = ACTIONS(5185), - [anon_sym_operator] = ACTIONS(5185), - [anon_sym_infix] = ACTIONS(5185), - [anon_sym_inline] = ACTIONS(5185), - [anon_sym_external] = ACTIONS(5185), - [sym_property_modifier] = ACTIONS(5185), - [anon_sym_abstract] = ACTIONS(5185), - [anon_sym_final] = ACTIONS(5185), - [anon_sym_open] = ACTIONS(5185), - [anon_sym_vararg] = ACTIONS(5185), - [anon_sym_noinline] = ACTIONS(5185), - [anon_sym_crossinline] = ACTIONS(5185), - [anon_sym_expect] = ACTIONS(5185), - [anon_sym_actual] = ACTIONS(5185), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5187), - [sym_safe_nav] = ACTIONS(5187), + [sym__alpha_identifier] = ACTIONS(5137), + [anon_sym_AT] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_RBRACK] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_RPAREN] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5137), + [anon_sym_set] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5137), + [anon_sym_DASH_GT] = ACTIONS(5139), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_while] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_QMARK_COLON] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5137), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_PLUS_EQ] = ACTIONS(5139), + [anon_sym_DASH_EQ] = ACTIONS(5139), + [anon_sym_STAR_EQ] = ACTIONS(5139), + [anon_sym_SLASH_EQ] = ACTIONS(5139), + [anon_sym_PERCENT_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_BANGin] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5137), + [anon_sym_BANGis] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5137), + [anon_sym_as_QMARK] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5139), + [anon_sym_suspend] = ACTIONS(5137), + [anon_sym_sealed] = ACTIONS(5137), + [anon_sym_annotation] = ACTIONS(5137), + [anon_sym_data] = ACTIONS(5137), + [anon_sym_inner] = ACTIONS(5137), + [anon_sym_value] = ACTIONS(5137), + [anon_sym_override] = ACTIONS(5137), + [anon_sym_lateinit] = ACTIONS(5137), + [anon_sym_public] = ACTIONS(5137), + [anon_sym_private] = ACTIONS(5137), + [anon_sym_internal] = ACTIONS(5137), + [anon_sym_protected] = ACTIONS(5137), + [anon_sym_tailrec] = ACTIONS(5137), + [anon_sym_operator] = ACTIONS(5137), + [anon_sym_infix] = ACTIONS(5137), + [anon_sym_inline] = ACTIONS(5137), + [anon_sym_external] = ACTIONS(5137), + [sym_property_modifier] = ACTIONS(5137), + [anon_sym_abstract] = ACTIONS(5137), + [anon_sym_final] = ACTIONS(5137), + [anon_sym_open] = ACTIONS(5137), + [anon_sym_vararg] = ACTIONS(5137), + [anon_sym_noinline] = ACTIONS(5137), + [anon_sym_crossinline] = ACTIONS(5137), + [anon_sym_expect] = ACTIONS(5137), + [anon_sym_actual] = ACTIONS(5137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5139), + [sym_safe_nav] = ACTIONS(5139), [sym_multiline_comment] = ACTIONS(3), }, [3414] = { - [sym_type_constraints] = STATE(3295), - [sym_enum_class_body] = STATE(3510), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6844), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(6777), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, [3415] = { - [sym_class_body] = STATE(3536), - [sym_type_constraints] = STATE(3274), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(5898), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__alpha_identifier] = ACTIONS(5041), + [anon_sym_AT] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5041), + [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_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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, [3416] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(6781), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [3417] = { + [sym__alpha_identifier] = ACTIONS(4864), + [anon_sym_AT] = ACTIONS(4866), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_RBRACK] = ACTIONS(4866), + [anon_sym_DOT] = ACTIONS(4864), + [anon_sym_as] = ACTIONS(4864), + [anon_sym_EQ] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4866), + [anon_sym_RBRACE] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4866), + [anon_sym_COMMA] = ACTIONS(4866), + [anon_sym_RPAREN] = ACTIONS(4866), + [anon_sym_LT] = ACTIONS(4864), + [anon_sym_GT] = ACTIONS(4864), + [anon_sym_where] = ACTIONS(4864), + [anon_sym_SEMI] = ACTIONS(4866), + [anon_sym_get] = ACTIONS(4864), + [anon_sym_set] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_DASH_GT] = ACTIONS(4866), + [sym_label] = ACTIONS(4866), + [anon_sym_in] = ACTIONS(4864), + [anon_sym_while] = ACTIONS(4864), + [anon_sym_DOT_DOT] = ACTIONS(4866), + [anon_sym_QMARK_COLON] = ACTIONS(4866), + [anon_sym_AMP_AMP] = ACTIONS(4866), + [anon_sym_PIPE_PIPE] = ACTIONS(4866), + [anon_sym_else] = ACTIONS(4864), + [anon_sym_COLON_COLON] = ACTIONS(4866), + [anon_sym_PLUS_EQ] = ACTIONS(4866), + [anon_sym_DASH_EQ] = ACTIONS(4866), + [anon_sym_STAR_EQ] = ACTIONS(4866), + [anon_sym_SLASH_EQ] = ACTIONS(4866), + [anon_sym_PERCENT_EQ] = ACTIONS(4866), + [anon_sym_BANG_EQ] = ACTIONS(4864), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4866), + [anon_sym_EQ_EQ] = ACTIONS(4864), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4866), + [anon_sym_LT_EQ] = ACTIONS(4866), + [anon_sym_GT_EQ] = ACTIONS(4866), + [anon_sym_BANGin] = ACTIONS(4866), + [anon_sym_is] = ACTIONS(4864), + [anon_sym_BANGis] = ACTIONS(4866), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4864), + [anon_sym_SLASH] = ACTIONS(4864), + [anon_sym_PERCENT] = ACTIONS(4864), + [anon_sym_as_QMARK] = ACTIONS(4866), + [anon_sym_PLUS_PLUS] = ACTIONS(4866), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_BANG_BANG] = ACTIONS(4866), + [anon_sym_suspend] = ACTIONS(4864), + [anon_sym_sealed] = ACTIONS(4864), + [anon_sym_annotation] = ACTIONS(4864), + [anon_sym_data] = ACTIONS(4864), + [anon_sym_inner] = ACTIONS(4864), + [anon_sym_value] = ACTIONS(4864), + [anon_sym_override] = ACTIONS(4864), + [anon_sym_lateinit] = ACTIONS(4864), + [anon_sym_public] = ACTIONS(4864), + [anon_sym_private] = ACTIONS(4864), + [anon_sym_internal] = ACTIONS(4864), + [anon_sym_protected] = ACTIONS(4864), + [anon_sym_tailrec] = ACTIONS(4864), + [anon_sym_operator] = ACTIONS(4864), + [anon_sym_infix] = ACTIONS(4864), + [anon_sym_inline] = ACTIONS(4864), + [anon_sym_external] = ACTIONS(4864), + [sym_property_modifier] = ACTIONS(4864), + [anon_sym_abstract] = ACTIONS(4864), + [anon_sym_final] = ACTIONS(4864), + [anon_sym_open] = ACTIONS(4864), + [anon_sym_vararg] = ACTIONS(4864), + [anon_sym_noinline] = ACTIONS(4864), + [anon_sym_crossinline] = ACTIONS(4864), + [anon_sym_expect] = ACTIONS(4864), + [anon_sym_actual] = ACTIONS(4864), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4866), + [sym_safe_nav] = ACTIONS(4866), + [sym_multiline_comment] = ACTIONS(3), + }, + [3418] = { + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_EQ] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_RBRACE] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_COMMA] = ACTIONS(4150), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4148), + [anon_sym_GT] = ACTIONS(4148), + [anon_sym_where] = ACTIONS(4148), + [anon_sym_SEMI] = ACTIONS(4150), + [anon_sym_get] = ACTIONS(4148), + [anon_sym_set] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4148), + [sym__quest] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [sym_label] = ACTIONS(4150), + [anon_sym_in] = ACTIONS(4148), + [anon_sym_DOT_DOT] = ACTIONS(4150), + [anon_sym_QMARK_COLON] = ACTIONS(4150), + [anon_sym_AMP_AMP] = ACTIONS(4150), + [anon_sym_PIPE_PIPE] = ACTIONS(4150), + [anon_sym_else] = ACTIONS(4148), + [anon_sym_COLON_COLON] = ACTIONS(4150), + [anon_sym_PLUS_EQ] = ACTIONS(4150), + [anon_sym_DASH_EQ] = ACTIONS(4150), + [anon_sym_STAR_EQ] = ACTIONS(4150), + [anon_sym_SLASH_EQ] = ACTIONS(4150), + [anon_sym_PERCENT_EQ] = ACTIONS(4150), + [anon_sym_BANG_EQ] = ACTIONS(4148), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4150), + [anon_sym_EQ_EQ] = ACTIONS(4148), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4150), + [anon_sym_LT_EQ] = ACTIONS(4150), + [anon_sym_GT_EQ] = ACTIONS(4150), + [anon_sym_BANGin] = ACTIONS(4150), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_BANGis] = ACTIONS(4150), + [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(4150), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_BANG_BANG] = ACTIONS(4150), + [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_value] = 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(4150), + [sym__automatic_semicolon] = ACTIONS(4150), + [sym_safe_nav] = ACTIONS(4150), + [sym_multiline_comment] = ACTIONS(3), + }, + [3419] = { + [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_SEMI] = ACTIONS(4272), + [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_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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4272), + [anon_sym_super_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), + }, + [3420] = { [sym__alpha_identifier] = ACTIONS(4868), [anon_sym_AT] = ACTIONS(4870), [anon_sym_LBRACK] = ACTIONS(4870), @@ -393804,671 +394405,2082 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4870), [sym_multiline_comment] = ACTIONS(3), }, - [3417] = { - [sym_type_constraints] = STATE(3313), - [sym_enum_class_body] = STATE(3536), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(5904), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [3418] = { - [sym_class_body] = STATE(3539), - [sym_type_constraints] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(6846), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_while] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - }, - [3419] = { - [sym__alpha_identifier] = ACTIONS(4309), - [anon_sym_AT] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_as] = ACTIONS(4309), - [anon_sym_EQ] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_RBRACE] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_COMMA] = ACTIONS(4311), - [anon_sym_by] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_where] = ACTIONS(4309), - [anon_sym_SEMI] = ACTIONS(4311), - [anon_sym_get] = ACTIONS(4309), - [anon_sym_set] = ACTIONS(4309), - [anon_sym_AMP] = ACTIONS(4309), - [sym__quest] = ACTIONS(4309), - [anon_sym_STAR] = ACTIONS(4309), - [sym_label] = ACTIONS(4311), - [anon_sym_in] = ACTIONS(4309), - [anon_sym_DOT_DOT] = ACTIONS(4311), - [anon_sym_QMARK_COLON] = ACTIONS(4311), - [anon_sym_AMP_AMP] = ACTIONS(4311), - [anon_sym_PIPE_PIPE] = ACTIONS(4311), - [anon_sym_else] = ACTIONS(4309), - [anon_sym_COLON_COLON] = ACTIONS(4311), - [anon_sym_PLUS_EQ] = ACTIONS(4311), - [anon_sym_DASH_EQ] = ACTIONS(4311), - [anon_sym_STAR_EQ] = ACTIONS(4311), - [anon_sym_SLASH_EQ] = ACTIONS(4311), - [anon_sym_PERCENT_EQ] = ACTIONS(4311), - [anon_sym_BANG_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4311), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4311), - [anon_sym_LT_EQ] = ACTIONS(4311), - [anon_sym_GT_EQ] = ACTIONS(4311), - [anon_sym_BANGin] = ACTIONS(4311), - [anon_sym_is] = ACTIONS(4309), - [anon_sym_BANGis] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4309), - [anon_sym_DASH] = ACTIONS(4309), - [anon_sym_SLASH] = ACTIONS(4309), - [anon_sym_PERCENT] = ACTIONS(4309), - [anon_sym_as_QMARK] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_BANG_BANG] = ACTIONS(4311), - [anon_sym_suspend] = ACTIONS(4309), - [anon_sym_sealed] = ACTIONS(4309), - [anon_sym_annotation] = ACTIONS(4309), - [anon_sym_data] = ACTIONS(4309), - [anon_sym_inner] = ACTIONS(4309), - [anon_sym_value] = ACTIONS(4309), - [anon_sym_override] = ACTIONS(4309), - [anon_sym_lateinit] = ACTIONS(4309), - [anon_sym_public] = ACTIONS(4309), - [anon_sym_private] = ACTIONS(4309), - [anon_sym_internal] = ACTIONS(4309), - [anon_sym_protected] = ACTIONS(4309), - [anon_sym_tailrec] = ACTIONS(4309), - [anon_sym_operator] = ACTIONS(4309), - [anon_sym_infix] = ACTIONS(4309), - [anon_sym_inline] = ACTIONS(4309), - [anon_sym_external] = ACTIONS(4309), - [sym_property_modifier] = ACTIONS(4309), - [anon_sym_abstract] = ACTIONS(4309), - [anon_sym_final] = ACTIONS(4309), - [anon_sym_open] = ACTIONS(4309), - [anon_sym_vararg] = ACTIONS(4309), - [anon_sym_noinline] = ACTIONS(4309), - [anon_sym_crossinline] = ACTIONS(4309), - [anon_sym_expect] = ACTIONS(4309), - [anon_sym_actual] = ACTIONS(4309), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4311), - [sym__automatic_semicolon] = ACTIONS(4311), - [sym_safe_nav] = ACTIONS(4311), - [sym_multiline_comment] = ACTIONS(3), - }, - [3420] = { - [sym__alpha_identifier] = ACTIONS(5169), - [anon_sym_AT] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5171), - [anon_sym_RBRACK] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_as] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_RBRACE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_RPAREN] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_where] = ACTIONS(5169), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_get] = ACTIONS(5169), - [anon_sym_set] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [anon_sym_DASH_GT] = ACTIONS(5171), - [sym_label] = ACTIONS(5171), - [anon_sym_in] = ACTIONS(5169), - [anon_sym_while] = ACTIONS(5169), - [anon_sym_DOT_DOT] = ACTIONS(5171), - [anon_sym_QMARK_COLON] = ACTIONS(5171), - [anon_sym_AMP_AMP] = ACTIONS(5171), - [anon_sym_PIPE_PIPE] = ACTIONS(5171), - [anon_sym_else] = ACTIONS(5169), - [anon_sym_COLON_COLON] = ACTIONS(5171), - [anon_sym_PLUS_EQ] = ACTIONS(5171), - [anon_sym_DASH_EQ] = ACTIONS(5171), - [anon_sym_STAR_EQ] = ACTIONS(5171), - [anon_sym_SLASH_EQ] = ACTIONS(5171), - [anon_sym_PERCENT_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ] = ACTIONS(5169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ] = ACTIONS(5169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), - [anon_sym_LT_EQ] = ACTIONS(5171), - [anon_sym_GT_EQ] = ACTIONS(5171), - [anon_sym_BANGin] = ACTIONS(5171), - [anon_sym_is] = ACTIONS(5169), - [anon_sym_BANGis] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_PERCENT] = ACTIONS(5169), - [anon_sym_as_QMARK] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_BANG_BANG] = ACTIONS(5171), - [anon_sym_suspend] = ACTIONS(5169), - [anon_sym_sealed] = ACTIONS(5169), - [anon_sym_annotation] = ACTIONS(5169), - [anon_sym_data] = ACTIONS(5169), - [anon_sym_inner] = ACTIONS(5169), - [anon_sym_value] = ACTIONS(5169), - [anon_sym_override] = ACTIONS(5169), - [anon_sym_lateinit] = ACTIONS(5169), - [anon_sym_public] = ACTIONS(5169), - [anon_sym_private] = ACTIONS(5169), - [anon_sym_internal] = ACTIONS(5169), - [anon_sym_protected] = ACTIONS(5169), - [anon_sym_tailrec] = ACTIONS(5169), - [anon_sym_operator] = ACTIONS(5169), - [anon_sym_infix] = ACTIONS(5169), - [anon_sym_inline] = ACTIONS(5169), - [anon_sym_external] = ACTIONS(5169), - [sym_property_modifier] = ACTIONS(5169), - [anon_sym_abstract] = ACTIONS(5169), - [anon_sym_final] = ACTIONS(5169), - [anon_sym_open] = ACTIONS(5169), - [anon_sym_vararg] = ACTIONS(5169), - [anon_sym_noinline] = ACTIONS(5169), - [anon_sym_crossinline] = ACTIONS(5169), - [anon_sym_expect] = ACTIONS(5169), - [anon_sym_actual] = ACTIONS(5169), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5171), - [sym_safe_nav] = ACTIONS(5171), - [sym_multiline_comment] = ACTIONS(3), - }, [3421] = { - [sym__alpha_identifier] = ACTIONS(4912), - [anon_sym_AT] = ACTIONS(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_RBRACK] = ACTIONS(4914), - [anon_sym_DOT] = ACTIONS(4912), - [anon_sym_as] = ACTIONS(4912), - [anon_sym_EQ] = ACTIONS(4912), - [anon_sym_LBRACE] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_COMMA] = ACTIONS(4914), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4912), - [anon_sym_GT] = ACTIONS(4912), - [anon_sym_where] = ACTIONS(4912), - [anon_sym_SEMI] = ACTIONS(4914), - [anon_sym_get] = ACTIONS(4912), - [anon_sym_set] = ACTIONS(4912), - [anon_sym_STAR] = ACTIONS(4912), - [anon_sym_DASH_GT] = ACTIONS(4914), - [sym_label] = ACTIONS(4914), - [anon_sym_in] = ACTIONS(4912), - [anon_sym_while] = ACTIONS(4912), - [anon_sym_DOT_DOT] = ACTIONS(4914), - [anon_sym_QMARK_COLON] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_else] = ACTIONS(4912), - [anon_sym_COLON_COLON] = ACTIONS(4914), - [anon_sym_PLUS_EQ] = ACTIONS(4914), - [anon_sym_DASH_EQ] = ACTIONS(4914), - [anon_sym_STAR_EQ] = ACTIONS(4914), - [anon_sym_SLASH_EQ] = ACTIONS(4914), - [anon_sym_PERCENT_EQ] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4912), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4912), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), - [anon_sym_LT_EQ] = ACTIONS(4914), - [anon_sym_GT_EQ] = ACTIONS(4914), - [anon_sym_BANGin] = ACTIONS(4914), - [anon_sym_is] = ACTIONS(4912), - [anon_sym_BANGis] = ACTIONS(4914), - [anon_sym_PLUS] = ACTIONS(4912), - [anon_sym_DASH] = ACTIONS(4912), - [anon_sym_SLASH] = ACTIONS(4912), - [anon_sym_PERCENT] = ACTIONS(4912), - [anon_sym_as_QMARK] = ACTIONS(4914), - [anon_sym_PLUS_PLUS] = ACTIONS(4914), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_BANG_BANG] = ACTIONS(4914), - [anon_sym_suspend] = ACTIONS(4912), - [anon_sym_sealed] = ACTIONS(4912), - [anon_sym_annotation] = ACTIONS(4912), - [anon_sym_data] = ACTIONS(4912), - [anon_sym_inner] = ACTIONS(4912), - [anon_sym_value] = ACTIONS(4912), - [anon_sym_override] = ACTIONS(4912), - [anon_sym_lateinit] = ACTIONS(4912), - [anon_sym_public] = ACTIONS(4912), - [anon_sym_private] = ACTIONS(4912), - [anon_sym_internal] = ACTIONS(4912), - [anon_sym_protected] = ACTIONS(4912), - [anon_sym_tailrec] = ACTIONS(4912), - [anon_sym_operator] = ACTIONS(4912), - [anon_sym_infix] = ACTIONS(4912), - [anon_sym_inline] = ACTIONS(4912), - [anon_sym_external] = ACTIONS(4912), - [sym_property_modifier] = ACTIONS(4912), - [anon_sym_abstract] = ACTIONS(4912), - [anon_sym_final] = ACTIONS(4912), - [anon_sym_open] = ACTIONS(4912), - [anon_sym_vararg] = ACTIONS(4912), - [anon_sym_noinline] = ACTIONS(4912), - [anon_sym_crossinline] = ACTIONS(4912), - [anon_sym_expect] = ACTIONS(4912), - [anon_sym_actual] = ACTIONS(4912), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4914), - [sym_safe_nav] = ACTIONS(4914), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [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_SEMI] = ACTIONS(4246), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_AMP] = ACTIONS(4244), + [sym__quest] = ACTIONS(4244), + [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_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4246), + [sym__automatic_semicolon] = ACTIONS(4246), + [sym_safe_nav] = ACTIONS(4246), [sym_multiline_comment] = ACTIONS(3), }, [3422] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_RPAREN] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_DASH_GT] = ACTIONS(4421), - [sym_label] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4922), - [anon_sym_DASH_EQ] = ACTIONS(4922), - [anon_sym_STAR_EQ] = ACTIONS(4922), - [anon_sym_SLASH_EQ] = ACTIONS(4922), - [anon_sym_PERCENT_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), + [sym_type_constraints] = STATE(4003), + [sym_function_body] = STATE(3826), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(6785), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, [3423] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_as] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_RBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_COMMA] = ACTIONS(4258), - [anon_sym_by] = ACTIONS(4256), - [anon_sym_LT] = ACTIONS(4256), - [anon_sym_GT] = ACTIONS(4256), - [anon_sym_where] = ACTIONS(4256), - [anon_sym_SEMI] = ACTIONS(4258), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_AMP] = ACTIONS(4256), - [sym__quest] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [sym_label] = ACTIONS(4258), - [anon_sym_in] = ACTIONS(4256), - [anon_sym_DOT_DOT] = ACTIONS(4258), - [anon_sym_QMARK_COLON] = ACTIONS(4258), - [anon_sym_AMP_AMP] = ACTIONS(4258), - [anon_sym_PIPE_PIPE] = ACTIONS(4258), - [anon_sym_else] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS_EQ] = ACTIONS(4258), - [anon_sym_DASH_EQ] = ACTIONS(4258), - [anon_sym_STAR_EQ] = ACTIONS(4258), - [anon_sym_SLASH_EQ] = ACTIONS(4258), - [anon_sym_PERCENT_EQ] = ACTIONS(4258), - [anon_sym_BANG_EQ] = ACTIONS(4256), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4258), - [anon_sym_EQ_EQ] = ACTIONS(4256), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4258), - [anon_sym_LT_EQ] = ACTIONS(4258), - [anon_sym_GT_EQ] = ACTIONS(4258), - [anon_sym_BANGin] = ACTIONS(4258), - [anon_sym_is] = ACTIONS(4256), - [anon_sym_BANGis] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_SLASH] = ACTIONS(4256), - [anon_sym_PERCENT] = ACTIONS(4256), - [anon_sym_as_QMARK] = ACTIONS(4258), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4258), - [sym__automatic_semicolon] = ACTIONS(4258), - [sym_safe_nav] = ACTIONS(4258), + [sym__alpha_identifier] = ACTIONS(4872), + [anon_sym_AT] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_RBRACK] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_RPAREN] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4872), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_where] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_get] = ACTIONS(4872), + [anon_sym_set] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [anon_sym_DASH_GT] = ACTIONS(4874), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4872), + [anon_sym_while] = ACTIONS(4872), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4872), + [anon_sym_COLON_COLON] = ACTIONS(4874), + [anon_sym_PLUS_EQ] = ACTIONS(4874), + [anon_sym_DASH_EQ] = ACTIONS(4874), + [anon_sym_STAR_EQ] = ACTIONS(4874), + [anon_sym_SLASH_EQ] = ACTIONS(4874), + [anon_sym_PERCENT_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_BANGin] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4872), + [anon_sym_BANGis] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_as_QMARK] = ACTIONS(4874), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4874), + [anon_sym_suspend] = ACTIONS(4872), + [anon_sym_sealed] = ACTIONS(4872), + [anon_sym_annotation] = ACTIONS(4872), + [anon_sym_data] = ACTIONS(4872), + [anon_sym_inner] = ACTIONS(4872), + [anon_sym_value] = ACTIONS(4872), + [anon_sym_override] = ACTIONS(4872), + [anon_sym_lateinit] = ACTIONS(4872), + [anon_sym_public] = ACTIONS(4872), + [anon_sym_private] = ACTIONS(4872), + [anon_sym_internal] = ACTIONS(4872), + [anon_sym_protected] = ACTIONS(4872), + [anon_sym_tailrec] = ACTIONS(4872), + [anon_sym_operator] = ACTIONS(4872), + [anon_sym_infix] = ACTIONS(4872), + [anon_sym_inline] = ACTIONS(4872), + [anon_sym_external] = ACTIONS(4872), + [sym_property_modifier] = ACTIONS(4872), + [anon_sym_abstract] = ACTIONS(4872), + [anon_sym_final] = ACTIONS(4872), + [anon_sym_open] = ACTIONS(4872), + [anon_sym_vararg] = ACTIONS(4872), + [anon_sym_noinline] = ACTIONS(4872), + [anon_sym_crossinline] = ACTIONS(4872), + [anon_sym_expect] = ACTIONS(4872), + [anon_sym_actual] = ACTIONS(4872), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4874), + [sym_safe_nav] = ACTIONS(4874), [sym_multiline_comment] = ACTIONS(3), }, [3424] = { + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_as] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_RBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_COMMA] = ACTIONS(4131), + [anon_sym_by] = ACTIONS(4129), + [anon_sym_LT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4129), + [anon_sym_where] = ACTIONS(4129), + [anon_sym_SEMI] = ACTIONS(4131), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_AMP] = ACTIONS(4129), + [sym__quest] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4129), + [sym_label] = ACTIONS(4131), + [anon_sym_in] = ACTIONS(4129), + [anon_sym_DOT_DOT] = ACTIONS(4131), + [anon_sym_QMARK_COLON] = ACTIONS(4131), + [anon_sym_AMP_AMP] = ACTIONS(4131), + [anon_sym_PIPE_PIPE] = ACTIONS(4131), + [anon_sym_else] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS_EQ] = ACTIONS(4131), + [anon_sym_DASH_EQ] = ACTIONS(4131), + [anon_sym_STAR_EQ] = ACTIONS(4131), + [anon_sym_SLASH_EQ] = ACTIONS(4131), + [anon_sym_PERCENT_EQ] = ACTIONS(4131), + [anon_sym_BANG_EQ] = ACTIONS(4129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4131), + [anon_sym_EQ_EQ] = ACTIONS(4129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4131), + [anon_sym_LT_EQ] = ACTIONS(4131), + [anon_sym_GT_EQ] = ACTIONS(4131), + [anon_sym_BANGin] = ACTIONS(4131), + [anon_sym_is] = ACTIONS(4129), + [anon_sym_BANGis] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_SLASH] = ACTIONS(4129), + [anon_sym_PERCENT] = ACTIONS(4129), + [anon_sym_as_QMARK] = ACTIONS(4131), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4131), + [sym__automatic_semicolon] = ACTIONS(4131), + [sym_safe_nav] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + }, + [3425] = { + [sym__alpha_identifier] = ACTIONS(4876), + [anon_sym_AT] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_RBRACK] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4878), + [anon_sym_RBRACE] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_COMMA] = ACTIONS(4878), + [anon_sym_RPAREN] = ACTIONS(4878), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_where] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym_get] = ACTIONS(4876), + [anon_sym_set] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_DASH_GT] = ACTIONS(4878), + [sym_label] = ACTIONS(4878), + [anon_sym_in] = ACTIONS(4876), + [anon_sym_while] = ACTIONS(4876), + [anon_sym_DOT_DOT] = ACTIONS(4878), + [anon_sym_QMARK_COLON] = ACTIONS(4878), + [anon_sym_AMP_AMP] = ACTIONS(4878), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4876), + [anon_sym_COLON_COLON] = ACTIONS(4878), + [anon_sym_PLUS_EQ] = ACTIONS(4878), + [anon_sym_DASH_EQ] = ACTIONS(4878), + [anon_sym_STAR_EQ] = ACTIONS(4878), + [anon_sym_SLASH_EQ] = ACTIONS(4878), + [anon_sym_PERCENT_EQ] = ACTIONS(4878), + [anon_sym_BANG_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4878), + [anon_sym_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4878), + [anon_sym_LT_EQ] = ACTIONS(4878), + [anon_sym_GT_EQ] = ACTIONS(4878), + [anon_sym_BANGin] = ACTIONS(4878), + [anon_sym_is] = ACTIONS(4876), + [anon_sym_BANGis] = ACTIONS(4878), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4878), + [anon_sym_PLUS_PLUS] = ACTIONS(4878), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_BANG_BANG] = ACTIONS(4878), + [anon_sym_suspend] = ACTIONS(4876), + [anon_sym_sealed] = ACTIONS(4876), + [anon_sym_annotation] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4876), + [anon_sym_inner] = ACTIONS(4876), + [anon_sym_value] = ACTIONS(4876), + [anon_sym_override] = ACTIONS(4876), + [anon_sym_lateinit] = ACTIONS(4876), + [anon_sym_public] = ACTIONS(4876), + [anon_sym_private] = ACTIONS(4876), + [anon_sym_internal] = ACTIONS(4876), + [anon_sym_protected] = ACTIONS(4876), + [anon_sym_tailrec] = ACTIONS(4876), + [anon_sym_operator] = ACTIONS(4876), + [anon_sym_infix] = ACTIONS(4876), + [anon_sym_inline] = ACTIONS(4876), + [anon_sym_external] = ACTIONS(4876), + [sym_property_modifier] = ACTIONS(4876), + [anon_sym_abstract] = ACTIONS(4876), + [anon_sym_final] = ACTIONS(4876), + [anon_sym_open] = ACTIONS(4876), + [anon_sym_vararg] = ACTIONS(4876), + [anon_sym_noinline] = ACTIONS(4876), + [anon_sym_crossinline] = ACTIONS(4876), + [anon_sym_expect] = ACTIONS(4876), + [anon_sym_actual] = ACTIONS(4876), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4878), + [sym_safe_nav] = ACTIONS(4878), + [sym_multiline_comment] = ACTIONS(3), + }, + [3426] = { [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6848), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_as] = ACTIONS(4234), + [anon_sym_EQ] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_RBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_COMMA] = ACTIONS(4236), + [anon_sym_by] = ACTIONS(4234), + [anon_sym_LT] = ACTIONS(4234), + [anon_sym_GT] = ACTIONS(4234), + [anon_sym_where] = ACTIONS(4234), + [anon_sym_SEMI] = ACTIONS(4236), [anon_sym_get] = ACTIONS(4234), [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), + [anon_sym_AMP] = ACTIONS(4234), + [sym__quest] = ACTIONS(4234), [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), + [sym_label] = ACTIONS(4236), + [anon_sym_in] = ACTIONS(4234), + [anon_sym_DOT_DOT] = ACTIONS(4236), + [anon_sym_QMARK_COLON] = ACTIONS(4236), + [anon_sym_AMP_AMP] = ACTIONS(4236), + [anon_sym_PIPE_PIPE] = ACTIONS(4236), + [anon_sym_else] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4236), + [anon_sym_PLUS_EQ] = ACTIONS(4236), + [anon_sym_DASH_EQ] = ACTIONS(4236), + [anon_sym_STAR_EQ] = ACTIONS(4236), + [anon_sym_SLASH_EQ] = ACTIONS(4236), + [anon_sym_PERCENT_EQ] = ACTIONS(4236), + [anon_sym_BANG_EQ] = ACTIONS(4234), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4236), + [anon_sym_EQ_EQ] = ACTIONS(4234), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4236), + [anon_sym_LT_EQ] = ACTIONS(4236), + [anon_sym_GT_EQ] = ACTIONS(4236), + [anon_sym_BANGin] = ACTIONS(4236), + [anon_sym_is] = ACTIONS(4234), + [anon_sym_BANGis] = ACTIONS(4236), [anon_sym_PLUS] = ACTIONS(4234), [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_SLASH] = ACTIONS(4234), + [anon_sym_PERCENT] = ACTIONS(4234), + [anon_sym_as_QMARK] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG_BANG] = ACTIONS(4236), + [anon_sym_suspend] = ACTIONS(4234), + [anon_sym_sealed] = ACTIONS(4234), + [anon_sym_annotation] = ACTIONS(4234), [anon_sym_data] = ACTIONS(4234), [anon_sym_inner] = ACTIONS(4234), [anon_sym_value] = ACTIONS(4234), + [anon_sym_override] = ACTIONS(4234), + [anon_sym_lateinit] = ACTIONS(4234), + [anon_sym_public] = ACTIONS(4234), + [anon_sym_private] = ACTIONS(4234), + [anon_sym_internal] = ACTIONS(4234), + [anon_sym_protected] = ACTIONS(4234), + [anon_sym_tailrec] = ACTIONS(4234), + [anon_sym_operator] = ACTIONS(4234), + [anon_sym_infix] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym_external] = ACTIONS(4234), + [sym_property_modifier] = ACTIONS(4234), + [anon_sym_abstract] = ACTIONS(4234), + [anon_sym_final] = ACTIONS(4234), + [anon_sym_open] = ACTIONS(4234), + [anon_sym_vararg] = ACTIONS(4234), + [anon_sym_noinline] = ACTIONS(4234), + [anon_sym_crossinline] = ACTIONS(4234), [anon_sym_expect] = ACTIONS(4234), [anon_sym_actual] = ACTIONS(4234), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4236), + [sym__automatic_semicolon] = ACTIONS(4236), + [sym_safe_nav] = ACTIONS(4236), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), }, - [3425] = { + [3427] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_RBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [anon_sym_DASH_GT] = ACTIONS(4345), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_while] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + }, + [3428] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6789), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [3429] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6793), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), + }, + [3430] = { + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_DASH_GT] = ACTIONS(4154), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + }, + [3431] = { + [ts_builtin_sym_end] = ACTIONS(6797), + [sym__alpha_identifier] = ACTIONS(6799), + [anon_sym_AT] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6797), + [anon_sym_package] = ACTIONS(6799), + [anon_sym_import] = ACTIONS(6799), + [anon_sym_typealias] = ACTIONS(6799), + [anon_sym_class] = ACTIONS(6799), + [anon_sym_interface] = ACTIONS(6799), + [anon_sym_enum] = ACTIONS(6799), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_LPAREN] = ACTIONS(6797), + [anon_sym_val] = ACTIONS(6799), + [anon_sym_var] = ACTIONS(6799), + [anon_sym_object] = ACTIONS(6799), + [anon_sym_fun] = ACTIONS(6799), + [anon_sym_get] = ACTIONS(6799), + [anon_sym_set] = ACTIONS(6799), + [anon_sym_this] = ACTIONS(6799), + [anon_sym_super] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6797), + [sym_label] = ACTIONS(6799), + [anon_sym_for] = ACTIONS(6799), + [anon_sym_while] = ACTIONS(6799), + [anon_sym_do] = ACTIONS(6799), + [anon_sym_null] = ACTIONS(6799), + [anon_sym_if] = ACTIONS(6799), + [anon_sym_when] = ACTIONS(6799), + [anon_sym_try] = ACTIONS(6799), + [anon_sym_throw] = ACTIONS(6799), + [anon_sym_return] = ACTIONS(6799), + [anon_sym_continue] = ACTIONS(6799), + [anon_sym_break] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_BANG] = ACTIONS(6797), + [anon_sym_suspend] = ACTIONS(6799), + [anon_sym_sealed] = ACTIONS(6799), + [anon_sym_annotation] = ACTIONS(6799), + [anon_sym_data] = ACTIONS(6799), + [anon_sym_inner] = ACTIONS(6799), + [anon_sym_value] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_lateinit] = ACTIONS(6799), + [anon_sym_public] = ACTIONS(6799), + [anon_sym_private] = ACTIONS(6799), + [anon_sym_internal] = ACTIONS(6799), + [anon_sym_protected] = ACTIONS(6799), + [anon_sym_tailrec] = ACTIONS(6799), + [anon_sym_operator] = ACTIONS(6799), + [anon_sym_infix] = ACTIONS(6799), + [anon_sym_inline] = ACTIONS(6799), + [anon_sym_external] = ACTIONS(6799), + [sym_property_modifier] = ACTIONS(6799), + [anon_sym_abstract] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_open] = ACTIONS(6799), + [anon_sym_vararg] = ACTIONS(6799), + [anon_sym_noinline] = ACTIONS(6799), + [anon_sym_crossinline] = ACTIONS(6799), + [anon_sym_expect] = ACTIONS(6799), + [anon_sym_actual] = ACTIONS(6799), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6797), + [anon_sym_continue_AT] = ACTIONS(6797), + [anon_sym_break_AT] = ACTIONS(6797), + [anon_sym_this_AT] = ACTIONS(6797), + [anon_sym_super_AT] = ACTIONS(6797), + [sym_real_literal] = ACTIONS(6797), + [sym_integer_literal] = ACTIONS(6799), + [sym_hex_literal] = ACTIONS(6797), + [sym_bin_literal] = ACTIONS(6797), + [anon_sym_true] = ACTIONS(6799), + [anon_sym_false] = ACTIONS(6799), + [anon_sym_SQUOTE] = ACTIONS(6797), + [sym__backtick_identifier] = ACTIONS(6797), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6797), + }, + [3432] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3938), + [anon_sym_interface] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3938), + [anon_sym_var] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3943), + [sym_label] = ACTIONS(3938), + [anon_sym_for] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_do] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [3433] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(6803), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), + }, + [3434] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(6805), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(6803), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), + }, + [3435] = { + [sym__alpha_identifier] = ACTIONS(5141), + [anon_sym_AT] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_RBRACK] = ACTIONS(5143), + [anon_sym_DOT] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(5141), + [anon_sym_LBRACE] = ACTIONS(5143), + [anon_sym_RBRACE] = ACTIONS(5143), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5143), + [anon_sym_LT] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5141), + [anon_sym_where] = ACTIONS(5141), + [anon_sym_SEMI] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(5141), + [anon_sym_set] = ACTIONS(5141), + [anon_sym_STAR] = ACTIONS(5141), + [anon_sym_DASH_GT] = ACTIONS(5143), + [sym_label] = ACTIONS(5143), + [anon_sym_in] = ACTIONS(5141), + [anon_sym_while] = ACTIONS(5141), + [anon_sym_DOT_DOT] = ACTIONS(5143), + [anon_sym_QMARK_COLON] = ACTIONS(5143), + [anon_sym_AMP_AMP] = ACTIONS(5143), + [anon_sym_PIPE_PIPE] = ACTIONS(5143), + [anon_sym_else] = ACTIONS(5141), + [anon_sym_COLON_COLON] = ACTIONS(5143), + [anon_sym_PLUS_EQ] = ACTIONS(5143), + [anon_sym_DASH_EQ] = ACTIONS(5143), + [anon_sym_STAR_EQ] = ACTIONS(5143), + [anon_sym_SLASH_EQ] = ACTIONS(5143), + [anon_sym_PERCENT_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), + [anon_sym_LT_EQ] = ACTIONS(5143), + [anon_sym_GT_EQ] = ACTIONS(5143), + [anon_sym_BANGin] = ACTIONS(5143), + [anon_sym_is] = ACTIONS(5141), + [anon_sym_BANGis] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5141), + [anon_sym_SLASH] = ACTIONS(5141), + [anon_sym_PERCENT] = ACTIONS(5141), + [anon_sym_as_QMARK] = ACTIONS(5143), + [anon_sym_PLUS_PLUS] = ACTIONS(5143), + [anon_sym_DASH_DASH] = ACTIONS(5143), + [anon_sym_BANG_BANG] = ACTIONS(5143), + [anon_sym_suspend] = ACTIONS(5141), + [anon_sym_sealed] = ACTIONS(5141), + [anon_sym_annotation] = ACTIONS(5141), + [anon_sym_data] = ACTIONS(5141), + [anon_sym_inner] = ACTIONS(5141), + [anon_sym_value] = ACTIONS(5141), + [anon_sym_override] = ACTIONS(5141), + [anon_sym_lateinit] = ACTIONS(5141), + [anon_sym_public] = ACTIONS(5141), + [anon_sym_private] = ACTIONS(5141), + [anon_sym_internal] = ACTIONS(5141), + [anon_sym_protected] = ACTIONS(5141), + [anon_sym_tailrec] = ACTIONS(5141), + [anon_sym_operator] = ACTIONS(5141), + [anon_sym_infix] = ACTIONS(5141), + [anon_sym_inline] = ACTIONS(5141), + [anon_sym_external] = ACTIONS(5141), + [sym_property_modifier] = ACTIONS(5141), + [anon_sym_abstract] = ACTIONS(5141), + [anon_sym_final] = ACTIONS(5141), + [anon_sym_open] = ACTIONS(5141), + [anon_sym_vararg] = ACTIONS(5141), + [anon_sym_noinline] = ACTIONS(5141), + [anon_sym_crossinline] = ACTIONS(5141), + [anon_sym_expect] = ACTIONS(5141), + [anon_sym_actual] = ACTIONS(5141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5143), + [sym_safe_nav] = ACTIONS(5143), + [sym_multiline_comment] = ACTIONS(3), + }, + [3436] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(5434), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_while] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [3437] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_RBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(5490), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_RPAREN] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_DASH_GT] = ACTIONS(4217), + [sym_label] = ACTIONS(4217), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + }, + [3438] = { + [sym__alpha_identifier] = ACTIONS(4164), + [anon_sym_AT] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_DOT] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4164), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(4166), + [anon_sym_COMMA] = ACTIONS(4166), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4164), + [anon_sym_GT] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4164), + [anon_sym_set] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(6807), + [sym__quest] = ACTIONS(4164), + [anon_sym_STAR] = ACTIONS(4164), + [sym_label] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4166), + [anon_sym_QMARK_COLON] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_else] = ACTIONS(4164), + [anon_sym_COLON_COLON] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4166), + [anon_sym_DASH_EQ] = ACTIONS(4166), + [anon_sym_STAR_EQ] = ACTIONS(4166), + [anon_sym_SLASH_EQ] = ACTIONS(4166), + [anon_sym_PERCENT_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4166), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_BANGin] = ACTIONS(4166), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_BANGis] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4164), + [anon_sym_SLASH] = ACTIONS(4164), + [anon_sym_PERCENT] = ACTIONS(4164), + [anon_sym_as_QMARK] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4166), + [anon_sym_BANG_BANG] = ACTIONS(4166), + [anon_sym_suspend] = ACTIONS(4164), + [anon_sym_sealed] = ACTIONS(4164), + [anon_sym_annotation] = ACTIONS(4164), + [anon_sym_data] = ACTIONS(4164), + [anon_sym_inner] = ACTIONS(4164), + [anon_sym_value] = ACTIONS(4164), + [anon_sym_override] = ACTIONS(4164), + [anon_sym_lateinit] = ACTIONS(4164), + [anon_sym_public] = ACTIONS(4164), + [anon_sym_private] = ACTIONS(4164), + [anon_sym_internal] = ACTIONS(4164), + [anon_sym_protected] = ACTIONS(4164), + [anon_sym_tailrec] = ACTIONS(4164), + [anon_sym_operator] = ACTIONS(4164), + [anon_sym_infix] = ACTIONS(4164), + [anon_sym_inline] = ACTIONS(4164), + [anon_sym_external] = ACTIONS(4164), + [sym_property_modifier] = ACTIONS(4164), + [anon_sym_abstract] = ACTIONS(4164), + [anon_sym_final] = ACTIONS(4164), + [anon_sym_open] = ACTIONS(4164), + [anon_sym_vararg] = ACTIONS(4164), + [anon_sym_noinline] = ACTIONS(4164), + [anon_sym_crossinline] = ACTIONS(4164), + [anon_sym_expect] = ACTIONS(4164), + [anon_sym_actual] = ACTIONS(4164), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4166), + [sym__automatic_semicolon] = ACTIONS(4166), + [sym_safe_nav] = ACTIONS(4166), + [sym_multiline_comment] = ACTIONS(3), + }, + [3439] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_RBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_RPAREN] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [anon_sym_DASH_GT] = ACTIONS(4345), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_while] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + }, + [3440] = { + [aux_sym_nullable_type_repeat1] = STATE(3455), + [sym__alpha_identifier] = ACTIONS(4208), + [anon_sym_AT] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4210), + [anon_sym_DOT] = ACTIONS(4208), + [anon_sym_as] = ACTIONS(4208), + [anon_sym_EQ] = ACTIONS(4208), + [anon_sym_LBRACE] = ACTIONS(4210), + [anon_sym_RBRACE] = ACTIONS(4210), + [anon_sym_LPAREN] = ACTIONS(4210), + [anon_sym_COMMA] = ACTIONS(4210), + [anon_sym_by] = ACTIONS(4208), + [anon_sym_LT] = ACTIONS(4208), + [anon_sym_GT] = ACTIONS(4208), + [anon_sym_where] = ACTIONS(4208), + [anon_sym_SEMI] = ACTIONS(4210), + [anon_sym_get] = ACTIONS(4208), + [anon_sym_set] = ACTIONS(4208), + [sym__quest] = ACTIONS(6809), + [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_value] = 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), + }, + [3441] = { + [sym_type_constraints] = STATE(3978), + [sym_function_body] = STATE(4000), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4123), + [sym_label] = ACTIONS(4125), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_PLUS_EQ] = ACTIONS(4125), + [anon_sym_DASH_EQ] = ACTIONS(4125), + [anon_sym_STAR_EQ] = ACTIONS(4125), + [anon_sym_SLASH_EQ] = ACTIONS(4125), + [anon_sym_PERCENT_EQ] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4123), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + }, + [3442] = { + [sym__alpha_identifier] = ACTIONS(4916), + [anon_sym_AT] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_RBRACK] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4918), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_RPAREN] = ACTIONS(4918), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_where] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4918), + [anon_sym_get] = ACTIONS(4916), + [anon_sym_set] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_DASH_GT] = ACTIONS(4918), + [sym_label] = ACTIONS(4918), + [anon_sym_in] = ACTIONS(4916), + [anon_sym_while] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4918), + [anon_sym_QMARK_COLON] = ACTIONS(4918), + [anon_sym_AMP_AMP] = ACTIONS(4918), + [anon_sym_PIPE_PIPE] = ACTIONS(4918), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_COLON_COLON] = ACTIONS(4918), + [anon_sym_PLUS_EQ] = ACTIONS(4918), + [anon_sym_DASH_EQ] = ACTIONS(4918), + [anon_sym_STAR_EQ] = ACTIONS(4918), + [anon_sym_SLASH_EQ] = ACTIONS(4918), + [anon_sym_PERCENT_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), + [anon_sym_LT_EQ] = ACTIONS(4918), + [anon_sym_GT_EQ] = ACTIONS(4918), + [anon_sym_BANGin] = ACTIONS(4918), + [anon_sym_is] = ACTIONS(4916), + [anon_sym_BANGis] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_as_QMARK] = ACTIONS(4918), + [anon_sym_PLUS_PLUS] = ACTIONS(4918), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_BANG_BANG] = ACTIONS(4918), + [anon_sym_suspend] = ACTIONS(4916), + [anon_sym_sealed] = ACTIONS(4916), + [anon_sym_annotation] = ACTIONS(4916), + [anon_sym_data] = ACTIONS(4916), + [anon_sym_inner] = ACTIONS(4916), + [anon_sym_value] = ACTIONS(4916), + [anon_sym_override] = ACTIONS(4916), + [anon_sym_lateinit] = ACTIONS(4916), + [anon_sym_public] = ACTIONS(4916), + [anon_sym_private] = ACTIONS(4916), + [anon_sym_internal] = ACTIONS(4916), + [anon_sym_protected] = ACTIONS(4916), + [anon_sym_tailrec] = ACTIONS(4916), + [anon_sym_operator] = ACTIONS(4916), + [anon_sym_infix] = ACTIONS(4916), + [anon_sym_inline] = ACTIONS(4916), + [anon_sym_external] = ACTIONS(4916), + [sym_property_modifier] = ACTIONS(4916), + [anon_sym_abstract] = ACTIONS(4916), + [anon_sym_final] = ACTIONS(4916), + [anon_sym_open] = ACTIONS(4916), + [anon_sym_vararg] = ACTIONS(4916), + [anon_sym_noinline] = ACTIONS(4916), + [anon_sym_crossinline] = ACTIONS(4916), + [anon_sym_expect] = ACTIONS(4916), + [anon_sym_actual] = ACTIONS(4916), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4918), + [sym_safe_nav] = ACTIONS(4918), + [sym_multiline_comment] = ACTIONS(3), + }, + [3443] = { + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [anon_sym_DASH_GT] = ACTIONS(3098), + [sym_label] = ACTIONS(3098), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_BANG_BANG] = ACTIONS(3098), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3098), + [sym_multiline_comment] = ACTIONS(3), + }, + [3444] = { + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [anon_sym_DASH_GT] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + }, + [3445] = { + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RPAREN] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_DASH_GT] = ACTIONS(1746), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_suspend] = ACTIONS(1744), + [anon_sym_sealed] = ACTIONS(1744), + [anon_sym_annotation] = ACTIONS(1744), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(1744), + [anon_sym_lateinit] = ACTIONS(1744), + [anon_sym_public] = ACTIONS(1744), + [anon_sym_private] = ACTIONS(1744), + [anon_sym_internal] = ACTIONS(1744), + [anon_sym_protected] = ACTIONS(1744), + [anon_sym_tailrec] = ACTIONS(1744), + [anon_sym_operator] = ACTIONS(1744), + [anon_sym_infix] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym_external] = ACTIONS(1744), + [sym_property_modifier] = ACTIONS(1744), + [anon_sym_abstract] = ACTIONS(1744), + [anon_sym_final] = ACTIONS(1744), + [anon_sym_open] = ACTIONS(1744), + [anon_sym_vararg] = ACTIONS(1744), + [anon_sym_noinline] = ACTIONS(1744), + [anon_sym_crossinline] = ACTIONS(1744), + [anon_sym_expect] = ACTIONS(1744), + [anon_sym_actual] = ACTIONS(1744), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), + [sym_multiline_comment] = ACTIONS(3), + }, + [3446] = { [sym__alpha_identifier] = ACTIONS(5149), [anon_sym_AT] = ACTIONS(5151), [anon_sym_LBRACK] = ACTIONS(5151), @@ -394551,588 +396563,1584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5151), [sym_multiline_comment] = ACTIONS(3), }, - [3426] = { - [sym_class_body] = STATE(3562), - [sym_type_constraints] = STATE(3303), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(5922), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [3447] = { + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [anon_sym_DASH_GT] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), [sym_multiline_comment] = ACTIONS(3), }, - [3427] = { - [sym__alpha_identifier] = ACTIONS(5113), - [anon_sym_AT] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_as] = ACTIONS(5113), - [anon_sym_EQ] = ACTIONS(5113), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_RBRACE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_where] = ACTIONS(5113), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_get] = ACTIONS(5113), - [anon_sym_set] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_DASH_GT] = ACTIONS(5115), - [sym_label] = ACTIONS(5115), - [anon_sym_in] = ACTIONS(5113), - [anon_sym_while] = ACTIONS(5113), - [anon_sym_DOT_DOT] = ACTIONS(5115), - [anon_sym_QMARK_COLON] = ACTIONS(5115), - [anon_sym_AMP_AMP] = ACTIONS(5115), - [anon_sym_PIPE_PIPE] = ACTIONS(5115), - [anon_sym_else] = ACTIONS(5113), - [anon_sym_COLON_COLON] = ACTIONS(5115), - [anon_sym_PLUS_EQ] = ACTIONS(5115), - [anon_sym_DASH_EQ] = ACTIONS(5115), - [anon_sym_STAR_EQ] = ACTIONS(5115), - [anon_sym_SLASH_EQ] = ACTIONS(5115), - [anon_sym_PERCENT_EQ] = ACTIONS(5115), - [anon_sym_BANG_EQ] = ACTIONS(5113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5115), - [anon_sym_EQ_EQ] = ACTIONS(5113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5115), - [anon_sym_LT_EQ] = ACTIONS(5115), - [anon_sym_GT_EQ] = ACTIONS(5115), - [anon_sym_BANGin] = ACTIONS(5115), - [anon_sym_is] = ACTIONS(5113), - [anon_sym_BANGis] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_PERCENT] = ACTIONS(5113), - [anon_sym_as_QMARK] = ACTIONS(5115), - [anon_sym_PLUS_PLUS] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5115), - [anon_sym_BANG_BANG] = ACTIONS(5115), - [anon_sym_suspend] = ACTIONS(5113), - [anon_sym_sealed] = ACTIONS(5113), - [anon_sym_annotation] = ACTIONS(5113), - [anon_sym_data] = ACTIONS(5113), - [anon_sym_inner] = ACTIONS(5113), - [anon_sym_value] = ACTIONS(5113), - [anon_sym_override] = ACTIONS(5113), - [anon_sym_lateinit] = ACTIONS(5113), - [anon_sym_public] = ACTIONS(5113), - [anon_sym_private] = ACTIONS(5113), - [anon_sym_internal] = ACTIONS(5113), - [anon_sym_protected] = ACTIONS(5113), - [anon_sym_tailrec] = ACTIONS(5113), - [anon_sym_operator] = ACTIONS(5113), - [anon_sym_infix] = ACTIONS(5113), - [anon_sym_inline] = ACTIONS(5113), - [anon_sym_external] = ACTIONS(5113), - [sym_property_modifier] = ACTIONS(5113), - [anon_sym_abstract] = ACTIONS(5113), - [anon_sym_final] = ACTIONS(5113), - [anon_sym_open] = ACTIONS(5113), - [anon_sym_vararg] = ACTIONS(5113), - [anon_sym_noinline] = ACTIONS(5113), - [anon_sym_crossinline] = ACTIONS(5113), - [anon_sym_expect] = ACTIONS(5113), - [anon_sym_actual] = ACTIONS(5113), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5115), - [sym_safe_nav] = ACTIONS(5115), + [3448] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_RBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_RPAREN] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4333), + [sym_label] = ACTIONS(4333), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_while] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), [sym_multiline_comment] = ACTIONS(3), }, - [3428] = { - [sym__alpha_identifier] = ACTIONS(5121), - [anon_sym_AT] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_DOT] = ACTIONS(5121), - [anon_sym_as] = ACTIONS(5121), - [anon_sym_EQ] = ACTIONS(5121), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_RBRACE] = ACTIONS(5123), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_where] = ACTIONS(5121), - [anon_sym_SEMI] = ACTIONS(5123), - [anon_sym_get] = ACTIONS(5121), - [anon_sym_set] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_DASH_GT] = ACTIONS(5123), - [sym_label] = ACTIONS(5123), - [anon_sym_in] = ACTIONS(5121), - [anon_sym_while] = ACTIONS(5121), - [anon_sym_DOT_DOT] = ACTIONS(5123), - [anon_sym_QMARK_COLON] = ACTIONS(5123), - [anon_sym_AMP_AMP] = ACTIONS(5123), - [anon_sym_PIPE_PIPE] = ACTIONS(5123), - [anon_sym_else] = ACTIONS(5121), - [anon_sym_COLON_COLON] = ACTIONS(5123), - [anon_sym_PLUS_EQ] = ACTIONS(5123), - [anon_sym_DASH_EQ] = ACTIONS(5123), - [anon_sym_STAR_EQ] = ACTIONS(5123), - [anon_sym_SLASH_EQ] = ACTIONS(5123), - [anon_sym_PERCENT_EQ] = ACTIONS(5123), - [anon_sym_BANG_EQ] = ACTIONS(5121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), - [anon_sym_EQ_EQ] = ACTIONS(5121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), - [anon_sym_LT_EQ] = ACTIONS(5123), - [anon_sym_GT_EQ] = ACTIONS(5123), - [anon_sym_BANGin] = ACTIONS(5123), - [anon_sym_is] = ACTIONS(5121), - [anon_sym_BANGis] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_PERCENT] = ACTIONS(5121), - [anon_sym_as_QMARK] = ACTIONS(5123), - [anon_sym_PLUS_PLUS] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5123), - [anon_sym_BANG_BANG] = ACTIONS(5123), - [anon_sym_suspend] = ACTIONS(5121), - [anon_sym_sealed] = ACTIONS(5121), - [anon_sym_annotation] = ACTIONS(5121), - [anon_sym_data] = ACTIONS(5121), - [anon_sym_inner] = ACTIONS(5121), - [anon_sym_value] = ACTIONS(5121), - [anon_sym_override] = ACTIONS(5121), - [anon_sym_lateinit] = ACTIONS(5121), - [anon_sym_public] = ACTIONS(5121), - [anon_sym_private] = ACTIONS(5121), - [anon_sym_internal] = ACTIONS(5121), - [anon_sym_protected] = ACTIONS(5121), - [anon_sym_tailrec] = ACTIONS(5121), - [anon_sym_operator] = ACTIONS(5121), - [anon_sym_infix] = ACTIONS(5121), - [anon_sym_inline] = ACTIONS(5121), - [anon_sym_external] = ACTIONS(5121), - [sym_property_modifier] = ACTIONS(5121), - [anon_sym_abstract] = ACTIONS(5121), - [anon_sym_final] = ACTIONS(5121), - [anon_sym_open] = ACTIONS(5121), - [anon_sym_vararg] = ACTIONS(5121), - [anon_sym_noinline] = ACTIONS(5121), - [anon_sym_crossinline] = ACTIONS(5121), - [anon_sym_expect] = ACTIONS(5121), - [anon_sym_actual] = ACTIONS(5121), + [3449] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(6813), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), + }, + [3450] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_object] = ACTIONS(4840), + [anon_sym_fun] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_this] = ACTIONS(4840), + [anon_sym_super] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4840), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), + }, + [3451] = { + [sym__alpha_identifier] = ACTIONS(5161), + [anon_sym_AT] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5161), + [anon_sym_EQ] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_where] = ACTIONS(5161), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_get] = ACTIONS(5161), + [anon_sym_set] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_DASH_GT] = ACTIONS(5163), + [sym_label] = ACTIONS(5163), + [anon_sym_in] = ACTIONS(5161), + [anon_sym_while] = ACTIONS(5161), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_QMARK_COLON] = ACTIONS(5163), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_else] = ACTIONS(5161), + [anon_sym_COLON_COLON] = ACTIONS(5163), + [anon_sym_PLUS_EQ] = ACTIONS(5163), + [anon_sym_DASH_EQ] = ACTIONS(5163), + [anon_sym_STAR_EQ] = ACTIONS(5163), + [anon_sym_SLASH_EQ] = ACTIONS(5163), + [anon_sym_PERCENT_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5161), + [anon_sym_BANGis] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5161), + [anon_sym_as_QMARK] = ACTIONS(5163), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_BANG_BANG] = ACTIONS(5163), + [anon_sym_suspend] = ACTIONS(5161), + [anon_sym_sealed] = ACTIONS(5161), + [anon_sym_annotation] = ACTIONS(5161), + [anon_sym_data] = ACTIONS(5161), + [anon_sym_inner] = ACTIONS(5161), + [anon_sym_value] = ACTIONS(5161), + [anon_sym_override] = ACTIONS(5161), + [anon_sym_lateinit] = ACTIONS(5161), + [anon_sym_public] = ACTIONS(5161), + [anon_sym_private] = ACTIONS(5161), + [anon_sym_internal] = ACTIONS(5161), + [anon_sym_protected] = ACTIONS(5161), + [anon_sym_tailrec] = ACTIONS(5161), + [anon_sym_operator] = ACTIONS(5161), + [anon_sym_infix] = ACTIONS(5161), + [anon_sym_inline] = ACTIONS(5161), + [anon_sym_external] = ACTIONS(5161), + [sym_property_modifier] = ACTIONS(5161), + [anon_sym_abstract] = ACTIONS(5161), + [anon_sym_final] = ACTIONS(5161), + [anon_sym_open] = ACTIONS(5161), + [anon_sym_vararg] = ACTIONS(5161), + [anon_sym_noinline] = ACTIONS(5161), + [anon_sym_crossinline] = ACTIONS(5161), + [anon_sym_expect] = ACTIONS(5161), + [anon_sym_actual] = ACTIONS(5161), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5123), - [sym_safe_nav] = ACTIONS(5123), + [sym__backtick_identifier] = ACTIONS(5163), + [sym_safe_nav] = ACTIONS(5163), [sym_multiline_comment] = ACTIONS(3), }, - [3429] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6852), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [3452] = { + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_RBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4097), + [anon_sym_LBRACE] = ACTIONS(4099), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [anon_sym_DASH_GT] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), }, - [3430] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6856), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4240), - [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(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [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(4240), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [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(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), + [3453] = { + [sym__alpha_identifier] = ACTIONS(5015), + [anon_sym_AT] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5017), + [anon_sym_RBRACK] = ACTIONS(5017), + [anon_sym_DOT] = ACTIONS(5015), + [anon_sym_as] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_COMMA] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5015), + [anon_sym_GT] = ACTIONS(5015), + [anon_sym_where] = ACTIONS(5015), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_get] = ACTIONS(5015), + [anon_sym_set] = ACTIONS(5015), + [anon_sym_STAR] = ACTIONS(5015), + [anon_sym_DASH_GT] = ACTIONS(5017), + [sym_label] = ACTIONS(5017), + [anon_sym_in] = ACTIONS(5015), + [anon_sym_while] = ACTIONS(5015), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [anon_sym_QMARK_COLON] = ACTIONS(5017), + [anon_sym_AMP_AMP] = ACTIONS(5017), + [anon_sym_PIPE_PIPE] = ACTIONS(5017), + [anon_sym_else] = ACTIONS(5015), + [anon_sym_COLON_COLON] = ACTIONS(5017), + [anon_sym_PLUS_EQ] = ACTIONS(5017), + [anon_sym_DASH_EQ] = ACTIONS(5017), + [anon_sym_STAR_EQ] = ACTIONS(5017), + [anon_sym_SLASH_EQ] = ACTIONS(5017), + [anon_sym_PERCENT_EQ] = ACTIONS(5017), + [anon_sym_BANG_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5017), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5017), + [anon_sym_LT_EQ] = ACTIONS(5017), + [anon_sym_GT_EQ] = ACTIONS(5017), + [anon_sym_BANGin] = ACTIONS(5017), + [anon_sym_is] = ACTIONS(5015), + [anon_sym_BANGis] = ACTIONS(5017), + [anon_sym_PLUS] = ACTIONS(5015), + [anon_sym_DASH] = ACTIONS(5015), + [anon_sym_SLASH] = ACTIONS(5015), + [anon_sym_PERCENT] = ACTIONS(5015), + [anon_sym_as_QMARK] = ACTIONS(5017), + [anon_sym_PLUS_PLUS] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_BANG_BANG] = ACTIONS(5017), + [anon_sym_suspend] = ACTIONS(5015), + [anon_sym_sealed] = ACTIONS(5015), + [anon_sym_annotation] = ACTIONS(5015), + [anon_sym_data] = ACTIONS(5015), + [anon_sym_inner] = ACTIONS(5015), + [anon_sym_value] = ACTIONS(5015), + [anon_sym_override] = ACTIONS(5015), + [anon_sym_lateinit] = ACTIONS(5015), + [anon_sym_public] = ACTIONS(5015), + [anon_sym_private] = ACTIONS(5015), + [anon_sym_internal] = ACTIONS(5015), + [anon_sym_protected] = ACTIONS(5015), + [anon_sym_tailrec] = ACTIONS(5015), + [anon_sym_operator] = ACTIONS(5015), + [anon_sym_infix] = ACTIONS(5015), + [anon_sym_inline] = ACTIONS(5015), + [anon_sym_external] = ACTIONS(5015), + [sym_property_modifier] = ACTIONS(5015), + [anon_sym_abstract] = ACTIONS(5015), + [anon_sym_final] = ACTIONS(5015), + [anon_sym_open] = ACTIONS(5015), + [anon_sym_vararg] = ACTIONS(5015), + [anon_sym_noinline] = ACTIONS(5015), + [anon_sym_crossinline] = ACTIONS(5015), + [anon_sym_expect] = ACTIONS(5015), + [anon_sym_actual] = ACTIONS(5015), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4240), - [anon_sym_continue_AT] = ACTIONS(4240), - [anon_sym_break_AT] = ACTIONS(4240), - [anon_sym_this_AT] = ACTIONS(4240), - [anon_sym_super_AT] = ACTIONS(4240), - [sym_real_literal] = ACTIONS(4240), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4240), - [sym_bin_literal] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4240), - [sym__backtick_identifier] = ACTIONS(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(5017), + [sym_safe_nav] = ACTIONS(5017), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4240), }, - [3431] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6858), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_this] = ACTIONS(4228), - [anon_sym_super] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [sym_label] = ACTIONS(4228), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_throw] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4226), - [anon_sym_continue_AT] = ACTIONS(4226), - [anon_sym_break_AT] = ACTIONS(4226), - [anon_sym_this_AT] = ACTIONS(4226), - [anon_sym_super_AT] = ACTIONS(4226), - [sym_real_literal] = ACTIONS(4226), - [sym_integer_literal] = ACTIONS(4228), - [sym_hex_literal] = ACTIONS(4226), - [sym_bin_literal] = ACTIONS(4226), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4226), + [3454] = { + [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_where] = 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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4636), + [anon_sym_super_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), }, - [3432] = { - [sym__alpha_identifier] = ACTIONS(4979), - [anon_sym_AT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4979), - [anon_sym_as] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4979), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_where] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4981), - [anon_sym_get] = ACTIONS(4979), - [anon_sym_set] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [anon_sym_DASH_GT] = ACTIONS(4981), - [sym_label] = ACTIONS(4981), - [anon_sym_in] = ACTIONS(4979), - [anon_sym_while] = ACTIONS(4979), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_QMARK_COLON] = ACTIONS(4981), - [anon_sym_AMP_AMP] = ACTIONS(4981), - [anon_sym_PIPE_PIPE] = ACTIONS(4981), - [anon_sym_else] = ACTIONS(4979), - [anon_sym_COLON_COLON] = ACTIONS(4981), - [anon_sym_PLUS_EQ] = ACTIONS(4981), - [anon_sym_DASH_EQ] = ACTIONS(4981), - [anon_sym_STAR_EQ] = ACTIONS(4981), - [anon_sym_SLASH_EQ] = ACTIONS(4981), - [anon_sym_PERCENT_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ] = ACTIONS(4979), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4981), - [anon_sym_EQ_EQ] = ACTIONS(4979), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_BANGin] = ACTIONS(4981), - [anon_sym_is] = ACTIONS(4979), - [anon_sym_BANGis] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_as_QMARK] = ACTIONS(4981), - [anon_sym_PLUS_PLUS] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_BANG_BANG] = ACTIONS(4981), - [anon_sym_suspend] = ACTIONS(4979), - [anon_sym_sealed] = ACTIONS(4979), - [anon_sym_annotation] = ACTIONS(4979), - [anon_sym_data] = ACTIONS(4979), - [anon_sym_inner] = ACTIONS(4979), - [anon_sym_value] = ACTIONS(4979), - [anon_sym_override] = ACTIONS(4979), - [anon_sym_lateinit] = ACTIONS(4979), - [anon_sym_public] = ACTIONS(4979), - [anon_sym_private] = ACTIONS(4979), - [anon_sym_internal] = ACTIONS(4979), - [anon_sym_protected] = ACTIONS(4979), - [anon_sym_tailrec] = ACTIONS(4979), - [anon_sym_operator] = ACTIONS(4979), - [anon_sym_infix] = ACTIONS(4979), - [anon_sym_inline] = ACTIONS(4979), - [anon_sym_external] = ACTIONS(4979), - [sym_property_modifier] = ACTIONS(4979), - [anon_sym_abstract] = ACTIONS(4979), - [anon_sym_final] = ACTIONS(4979), - [anon_sym_open] = ACTIONS(4979), - [anon_sym_vararg] = ACTIONS(4979), - [anon_sym_noinline] = ACTIONS(4979), - [anon_sym_crossinline] = ACTIONS(4979), - [anon_sym_expect] = ACTIONS(4979), - [anon_sym_actual] = ACTIONS(4979), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4981), - [sym_safe_nav] = ACTIONS(4981), + [3455] = { + [aux_sym_nullable_type_repeat1] = STATE(3590), + [sym__alpha_identifier] = ACTIONS(4264), + [anon_sym_AT] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_DOT] = ACTIONS(4264), + [anon_sym_as] = ACTIONS(4264), + [anon_sym_EQ] = ACTIONS(4264), + [anon_sym_LBRACE] = ACTIONS(4266), + [anon_sym_RBRACE] = ACTIONS(4266), + [anon_sym_LPAREN] = ACTIONS(4266), + [anon_sym_COMMA] = ACTIONS(4266), + [anon_sym_by] = ACTIONS(4264), + [anon_sym_LT] = ACTIONS(4264), + [anon_sym_GT] = ACTIONS(4264), + [anon_sym_where] = ACTIONS(4264), + [anon_sym_SEMI] = ACTIONS(4266), + [anon_sym_get] = ACTIONS(4264), + [anon_sym_set] = ACTIONS(4264), + [sym__quest] = ACTIONS(6817), + [anon_sym_STAR] = ACTIONS(4264), + [sym_label] = ACTIONS(4266), + [anon_sym_in] = ACTIONS(4264), + [anon_sym_DOT_DOT] = ACTIONS(4266), + [anon_sym_QMARK_COLON] = ACTIONS(4266), + [anon_sym_AMP_AMP] = ACTIONS(4266), + [anon_sym_PIPE_PIPE] = ACTIONS(4266), + [anon_sym_else] = ACTIONS(4264), + [anon_sym_COLON_COLON] = ACTIONS(4266), + [anon_sym_PLUS_EQ] = ACTIONS(4266), + [anon_sym_DASH_EQ] = ACTIONS(4266), + [anon_sym_STAR_EQ] = ACTIONS(4266), + [anon_sym_SLASH_EQ] = ACTIONS(4266), + [anon_sym_PERCENT_EQ] = ACTIONS(4266), + [anon_sym_BANG_EQ] = ACTIONS(4264), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), + [anon_sym_EQ_EQ] = ACTIONS(4264), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), + [anon_sym_LT_EQ] = ACTIONS(4266), + [anon_sym_GT_EQ] = ACTIONS(4266), + [anon_sym_BANGin] = ACTIONS(4266), + [anon_sym_is] = ACTIONS(4264), + [anon_sym_BANGis] = ACTIONS(4266), + [anon_sym_PLUS] = ACTIONS(4264), + [anon_sym_DASH] = ACTIONS(4264), + [anon_sym_SLASH] = ACTIONS(4264), + [anon_sym_PERCENT] = ACTIONS(4264), + [anon_sym_as_QMARK] = ACTIONS(4266), + [anon_sym_PLUS_PLUS] = ACTIONS(4266), + [anon_sym_DASH_DASH] = ACTIONS(4266), + [anon_sym_BANG_BANG] = ACTIONS(4266), + [anon_sym_suspend] = ACTIONS(4264), + [anon_sym_sealed] = ACTIONS(4264), + [anon_sym_annotation] = ACTIONS(4264), + [anon_sym_data] = ACTIONS(4264), + [anon_sym_inner] = ACTIONS(4264), + [anon_sym_value] = ACTIONS(4264), + [anon_sym_override] = ACTIONS(4264), + [anon_sym_lateinit] = ACTIONS(4264), + [anon_sym_public] = ACTIONS(4264), + [anon_sym_private] = ACTIONS(4264), + [anon_sym_internal] = ACTIONS(4264), + [anon_sym_protected] = ACTIONS(4264), + [anon_sym_tailrec] = ACTIONS(4264), + [anon_sym_operator] = ACTIONS(4264), + [anon_sym_infix] = ACTIONS(4264), + [anon_sym_inline] = ACTIONS(4264), + [anon_sym_external] = ACTIONS(4264), + [sym_property_modifier] = ACTIONS(4264), + [anon_sym_abstract] = ACTIONS(4264), + [anon_sym_final] = ACTIONS(4264), + [anon_sym_open] = ACTIONS(4264), + [anon_sym_vararg] = ACTIONS(4264), + [anon_sym_noinline] = ACTIONS(4264), + [anon_sym_crossinline] = ACTIONS(4264), + [anon_sym_expect] = ACTIONS(4264), + [anon_sym_actual] = ACTIONS(4264), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4266), + [sym__automatic_semicolon] = ACTIONS(4266), + [sym_safe_nav] = ACTIONS(4266), [sym_multiline_comment] = ACTIONS(3), }, - [3433] = { + [3456] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_RBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(6819), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_DASH_GT] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_while] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [3457] = { + [sym__alpha_identifier] = ACTIONS(4638), + [anon_sym_AT] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4640), + [anon_sym_RBRACE] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4640), + [anon_sym_COMMA] = ACTIONS(4640), + [anon_sym_by] = ACTIONS(4638), + [anon_sym_where] = ACTIONS(4638), + [anon_sym_object] = ACTIONS(4638), + [anon_sym_fun] = 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(4640), + [sym_label] = ACTIONS(4638), + [anon_sym_in] = ACTIONS(4638), + [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_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_PLUS_PLUS] = ACTIONS(4640), + [anon_sym_DASH_DASH] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(4638), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4640), + [anon_sym_super_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_true] = ACTIONS(4638), + [anon_sym_false] = ACTIONS(4638), + [anon_sym_SQUOTE] = ACTIONS(4640), + [sym__backtick_identifier] = ACTIONS(4640), + [sym__automatic_semicolon] = ACTIONS(4640), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4640), + }, + [3458] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4192), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [anon_sym_DASH_GT] = ACTIONS(4185), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_while] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [3459] = { + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4644), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_by] = ACTIONS(4642), + [anon_sym_where] = ACTIONS(4642), + [anon_sym_object] = ACTIONS(4642), + [anon_sym_fun] = 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(4644), + [sym_label] = ACTIONS(4642), + [anon_sym_in] = ACTIONS(4642), + [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_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_PLUS_PLUS] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4642), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4644), + [anon_sym_super_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4644), + }, + [3460] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_RBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [anon_sym_DASH_GT] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_while] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(6821), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [3461] = { + [sym__alpha_identifier] = ACTIONS(5157), + [anon_sym_AT] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5157), + [anon_sym_as] = ACTIONS(5157), + [anon_sym_EQ] = ACTIONS(5157), + [anon_sym_LBRACE] = ACTIONS(5159), + [anon_sym_RBRACE] = ACTIONS(5159), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_where] = ACTIONS(5157), + [anon_sym_SEMI] = ACTIONS(5159), + [anon_sym_get] = ACTIONS(5157), + [anon_sym_set] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [anon_sym_DASH_GT] = ACTIONS(5159), + [sym_label] = ACTIONS(5159), + [anon_sym_in] = ACTIONS(5157), + [anon_sym_while] = ACTIONS(5157), + [anon_sym_DOT_DOT] = ACTIONS(5159), + [anon_sym_QMARK_COLON] = ACTIONS(5159), + [anon_sym_AMP_AMP] = ACTIONS(5159), + [anon_sym_PIPE_PIPE] = ACTIONS(5159), + [anon_sym_else] = ACTIONS(5157), + [anon_sym_COLON_COLON] = ACTIONS(5159), + [anon_sym_PLUS_EQ] = ACTIONS(5159), + [anon_sym_DASH_EQ] = ACTIONS(5159), + [anon_sym_STAR_EQ] = ACTIONS(5159), + [anon_sym_SLASH_EQ] = ACTIONS(5159), + [anon_sym_PERCENT_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5157), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ] = ACTIONS(5157), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5159), + [anon_sym_LT_EQ] = ACTIONS(5159), + [anon_sym_GT_EQ] = ACTIONS(5159), + [anon_sym_BANGin] = ACTIONS(5159), + [anon_sym_is] = ACTIONS(5157), + [anon_sym_BANGis] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_PERCENT] = ACTIONS(5157), + [anon_sym_as_QMARK] = ACTIONS(5159), + [anon_sym_PLUS_PLUS] = ACTIONS(5159), + [anon_sym_DASH_DASH] = ACTIONS(5159), + [anon_sym_BANG_BANG] = ACTIONS(5159), + [anon_sym_suspend] = ACTIONS(5157), + [anon_sym_sealed] = ACTIONS(5157), + [anon_sym_annotation] = ACTIONS(5157), + [anon_sym_data] = ACTIONS(5157), + [anon_sym_inner] = ACTIONS(5157), + [anon_sym_value] = ACTIONS(5157), + [anon_sym_override] = ACTIONS(5157), + [anon_sym_lateinit] = ACTIONS(5157), + [anon_sym_public] = ACTIONS(5157), + [anon_sym_private] = ACTIONS(5157), + [anon_sym_internal] = ACTIONS(5157), + [anon_sym_protected] = ACTIONS(5157), + [anon_sym_tailrec] = ACTIONS(5157), + [anon_sym_operator] = ACTIONS(5157), + [anon_sym_infix] = ACTIONS(5157), + [anon_sym_inline] = ACTIONS(5157), + [anon_sym_external] = ACTIONS(5157), + [sym_property_modifier] = ACTIONS(5157), + [anon_sym_abstract] = ACTIONS(5157), + [anon_sym_final] = ACTIONS(5157), + [anon_sym_open] = ACTIONS(5157), + [anon_sym_vararg] = ACTIONS(5157), + [anon_sym_noinline] = ACTIONS(5157), + [anon_sym_crossinline] = ACTIONS(5157), + [anon_sym_expect] = ACTIONS(5157), + [anon_sym_actual] = ACTIONS(5157), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5159), + [sym_safe_nav] = ACTIONS(5159), + [sym_multiline_comment] = ACTIONS(3), + }, + [3462] = { + [ts_builtin_sym_end] = ACTIONS(6823), + [sym__alpha_identifier] = ACTIONS(6825), + [anon_sym_AT] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6823), + [anon_sym_package] = ACTIONS(6825), + [anon_sym_import] = ACTIONS(6825), + [anon_sym_typealias] = ACTIONS(6825), + [anon_sym_class] = ACTIONS(6825), + [anon_sym_interface] = ACTIONS(6825), + [anon_sym_enum] = ACTIONS(6825), + [anon_sym_LBRACE] = ACTIONS(6823), + [anon_sym_LPAREN] = ACTIONS(6823), + [anon_sym_val] = ACTIONS(6825), + [anon_sym_var] = ACTIONS(6825), + [anon_sym_object] = ACTIONS(6825), + [anon_sym_fun] = ACTIONS(6825), + [anon_sym_get] = ACTIONS(6825), + [anon_sym_set] = ACTIONS(6825), + [anon_sym_this] = ACTIONS(6825), + [anon_sym_super] = ACTIONS(6825), + [anon_sym_STAR] = ACTIONS(6823), + [sym_label] = ACTIONS(6825), + [anon_sym_for] = ACTIONS(6825), + [anon_sym_while] = ACTIONS(6825), + [anon_sym_do] = ACTIONS(6825), + [anon_sym_null] = ACTIONS(6825), + [anon_sym_if] = ACTIONS(6825), + [anon_sym_when] = ACTIONS(6825), + [anon_sym_try] = ACTIONS(6825), + [anon_sym_throw] = ACTIONS(6825), + [anon_sym_return] = ACTIONS(6825), + [anon_sym_continue] = ACTIONS(6825), + [anon_sym_break] = ACTIONS(6825), + [anon_sym_COLON_COLON] = ACTIONS(6823), + [anon_sym_PLUS] = ACTIONS(6825), + [anon_sym_DASH] = ACTIONS(6825), + [anon_sym_PLUS_PLUS] = ACTIONS(6823), + [anon_sym_DASH_DASH] = ACTIONS(6823), + [anon_sym_BANG] = ACTIONS(6823), + [anon_sym_suspend] = ACTIONS(6825), + [anon_sym_sealed] = ACTIONS(6825), + [anon_sym_annotation] = ACTIONS(6825), + [anon_sym_data] = ACTIONS(6825), + [anon_sym_inner] = ACTIONS(6825), + [anon_sym_value] = ACTIONS(6825), + [anon_sym_override] = ACTIONS(6825), + [anon_sym_lateinit] = ACTIONS(6825), + [anon_sym_public] = ACTIONS(6825), + [anon_sym_private] = ACTIONS(6825), + [anon_sym_internal] = ACTIONS(6825), + [anon_sym_protected] = ACTIONS(6825), + [anon_sym_tailrec] = ACTIONS(6825), + [anon_sym_operator] = ACTIONS(6825), + [anon_sym_infix] = ACTIONS(6825), + [anon_sym_inline] = ACTIONS(6825), + [anon_sym_external] = ACTIONS(6825), + [sym_property_modifier] = ACTIONS(6825), + [anon_sym_abstract] = ACTIONS(6825), + [anon_sym_final] = ACTIONS(6825), + [anon_sym_open] = ACTIONS(6825), + [anon_sym_vararg] = ACTIONS(6825), + [anon_sym_noinline] = ACTIONS(6825), + [anon_sym_crossinline] = ACTIONS(6825), + [anon_sym_expect] = ACTIONS(6825), + [anon_sym_actual] = ACTIONS(6825), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6823), + [anon_sym_continue_AT] = ACTIONS(6823), + [anon_sym_break_AT] = ACTIONS(6823), + [anon_sym_this_AT] = ACTIONS(6823), + [anon_sym_super_AT] = ACTIONS(6823), + [sym_real_literal] = ACTIONS(6823), + [sym_integer_literal] = ACTIONS(6825), + [sym_hex_literal] = ACTIONS(6823), + [sym_bin_literal] = ACTIONS(6823), + [anon_sym_true] = ACTIONS(6825), + [anon_sym_false] = ACTIONS(6825), + [anon_sym_SQUOTE] = ACTIONS(6823), + [sym__backtick_identifier] = ACTIONS(6823), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6823), + }, + [3463] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_RBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_RPAREN] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [anon_sym_DASH_GT] = ACTIONS(4217), + [sym_label] = ACTIONS(4217), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4217), + [anon_sym_DASH_EQ] = ACTIONS(4217), + [anon_sym_STAR_EQ] = ACTIONS(4217), + [anon_sym_SLASH_EQ] = ACTIONS(4217), + [anon_sym_PERCENT_EQ] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + }, + [3464] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_RBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_RPAREN] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [anon_sym_DASH_GT] = ACTIONS(4337), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + }, + [3465] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_RBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_RPAREN] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [anon_sym_DASH_GT] = ACTIONS(4457), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_while] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), + [sym_multiline_comment] = ACTIONS(3), + }, + [3466] = { [sym__alpha_identifier] = ACTIONS(5153), [anon_sym_AT] = ACTIONS(5155), [anon_sym_LBRACK] = ACTIONS(5155), @@ -395215,1584 +398223,1169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5155), [sym_multiline_comment] = ACTIONS(3), }, - [3434] = { - [sym__alpha_identifier] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3114), - [anon_sym_as] = ACTIONS(3114), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3114), - [anon_sym_set] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [anon_sym_DASH_GT] = ACTIONS(3116), - [sym_label] = ACTIONS(3116), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(3116), - [anon_sym_QMARK_COLON] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3116), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_as_QMARK] = ACTIONS(3116), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_BANG_BANG] = ACTIONS(3116), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3114), - [anon_sym_inner] = ACTIONS(3114), - [anon_sym_value] = ACTIONS(3114), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3114), - [anon_sym_actual] = ACTIONS(3114), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(3116), + [3467] = { + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [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_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), [sym_multiline_comment] = ACTIONS(3), }, - [3435] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_RBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [anon_sym_DASH_GT] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_while] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(6860), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [3468] = { + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_DASH_GT] = ACTIONS(5147), + [sym_label] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_while] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_suspend] = ACTIONS(5145), + [anon_sym_sealed] = ACTIONS(5145), + [anon_sym_annotation] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_lateinit] = ACTIONS(5145), + [anon_sym_public] = ACTIONS(5145), + [anon_sym_private] = ACTIONS(5145), + [anon_sym_internal] = ACTIONS(5145), + [anon_sym_protected] = ACTIONS(5145), + [anon_sym_tailrec] = ACTIONS(5145), + [anon_sym_operator] = ACTIONS(5145), + [anon_sym_infix] = ACTIONS(5145), + [anon_sym_inline] = ACTIONS(5145), + [anon_sym_external] = ACTIONS(5145), + [sym_property_modifier] = ACTIONS(5145), + [anon_sym_abstract] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_open] = ACTIONS(5145), + [anon_sym_vararg] = ACTIONS(5145), + [anon_sym_noinline] = ACTIONS(5145), + [anon_sym_crossinline] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), [sym_multiline_comment] = ACTIONS(3), }, - [3436] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(6862), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [3437] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_RBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(6866), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [anon_sym_DASH_GT] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_while] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(6860), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [3469] = { + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, - [3438] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(6868), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4234), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [3470] = { + [sym_class_body] = STATE(3947), + [sym_type_constraints] = STATE(3738), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), - }, - [3439] = { - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(6872), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_where] = ACTIONS(4289), - [anon_sym_object] = ACTIONS(4289), - [anon_sym_fun] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_this] = ACTIONS(4289), - [anon_sym_super] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4289), - [anon_sym_if] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_when] = ACTIONS(4289), - [anon_sym_try] = ACTIONS(4289), - [anon_sym_throw] = ACTIONS(4289), - [anon_sym_return] = ACTIONS(4289), - [anon_sym_continue] = ACTIONS(4289), - [anon_sym_break] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4291), - [anon_sym_continue_AT] = ACTIONS(4291), - [anon_sym_break_AT] = ACTIONS(4291), - [anon_sym_this_AT] = ACTIONS(4291), - [anon_sym_super_AT] = ACTIONS(4291), - [sym_real_literal] = ACTIONS(4291), - [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4291), - [sym_bin_literal] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4289), - [anon_sym_false] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4291), }, - [3440] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(6874), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_object] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_this] = ACTIONS(4844), - [anon_sym_super] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [sym_label] = ACTIONS(4844), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4844), - [anon_sym_if] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_throw] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_continue] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4844), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4846), - [anon_sym_continue_AT] = ACTIONS(4846), - [anon_sym_break_AT] = ACTIONS(4846), - [anon_sym_this_AT] = ACTIONS(4846), - [anon_sym_super_AT] = ACTIONS(4846), - [sym_real_literal] = ACTIONS(4846), - [sym_integer_literal] = ACTIONS(4844), - [sym_hex_literal] = ACTIONS(4846), - [sym_bin_literal] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4846), + [3471] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_DASH_GT] = ACTIONS(4994), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_while] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(6827), + [anon_sym_PLUS_EQ] = ACTIONS(5013), + [anon_sym_DASH_EQ] = ACTIONS(5013), + [anon_sym_STAR_EQ] = ACTIONS(5013), + [anon_sym_SLASH_EQ] = ACTIONS(5013), + [anon_sym_PERCENT_EQ] = ACTIONS(5013), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_suspend] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_annotation] = ACTIONS(4992), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_lateinit] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_tailrec] = ACTIONS(4992), + [anon_sym_operator] = ACTIONS(4992), + [anon_sym_infix] = ACTIONS(4992), + [anon_sym_inline] = ACTIONS(4992), + [anon_sym_external] = ACTIONS(4992), + [sym_property_modifier] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_final] = ACTIONS(4992), + [anon_sym_open] = ACTIONS(4992), + [anon_sym_vararg] = ACTIONS(4992), + [anon_sym_noinline] = ACTIONS(4992), + [anon_sym_crossinline] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), }, - [3441] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(6876), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), + [3472] = { + [sym_type_constraints] = STATE(3963), + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6830), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3164), + [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_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_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(4144), + [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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, - [3442] = { - [sym__alpha_identifier] = ACTIONS(5213), - [anon_sym_AT] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_DOT] = ACTIONS(5213), - [anon_sym_as] = ACTIONS(5213), - [anon_sym_EQ] = ACTIONS(5213), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_where] = ACTIONS(5213), - [anon_sym_SEMI] = ACTIONS(5215), - [anon_sym_get] = ACTIONS(5213), - [anon_sym_set] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [anon_sym_DASH_GT] = ACTIONS(5215), - [sym_label] = ACTIONS(5215), - [anon_sym_in] = ACTIONS(5213), - [anon_sym_while] = ACTIONS(5213), - [anon_sym_DOT_DOT] = ACTIONS(5215), - [anon_sym_QMARK_COLON] = ACTIONS(5215), - [anon_sym_AMP_AMP] = ACTIONS(5215), - [anon_sym_PIPE_PIPE] = ACTIONS(5215), - [anon_sym_else] = ACTIONS(5213), - [anon_sym_COLON_COLON] = ACTIONS(5215), - [anon_sym_PLUS_EQ] = ACTIONS(5215), - [anon_sym_DASH_EQ] = ACTIONS(5215), - [anon_sym_STAR_EQ] = ACTIONS(5215), - [anon_sym_SLASH_EQ] = ACTIONS(5215), - [anon_sym_PERCENT_EQ] = ACTIONS(5215), - [anon_sym_BANG_EQ] = ACTIONS(5213), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5215), - [anon_sym_BANGin] = ACTIONS(5215), - [anon_sym_is] = ACTIONS(5213), - [anon_sym_BANGis] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_PERCENT] = ACTIONS(5213), - [anon_sym_as_QMARK] = ACTIONS(5215), - [anon_sym_PLUS_PLUS] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5215), - [anon_sym_BANG_BANG] = ACTIONS(5215), - [anon_sym_suspend] = ACTIONS(5213), - [anon_sym_sealed] = ACTIONS(5213), - [anon_sym_annotation] = ACTIONS(5213), - [anon_sym_data] = ACTIONS(5213), - [anon_sym_inner] = ACTIONS(5213), - [anon_sym_value] = ACTIONS(5213), - [anon_sym_override] = ACTIONS(5213), - [anon_sym_lateinit] = ACTIONS(5213), - [anon_sym_public] = ACTIONS(5213), - [anon_sym_private] = ACTIONS(5213), - [anon_sym_internal] = ACTIONS(5213), - [anon_sym_protected] = ACTIONS(5213), - [anon_sym_tailrec] = ACTIONS(5213), - [anon_sym_operator] = ACTIONS(5213), - [anon_sym_infix] = ACTIONS(5213), - [anon_sym_inline] = ACTIONS(5213), - [anon_sym_external] = ACTIONS(5213), - [sym_property_modifier] = ACTIONS(5213), - [anon_sym_abstract] = ACTIONS(5213), - [anon_sym_final] = ACTIONS(5213), - [anon_sym_open] = ACTIONS(5213), - [anon_sym_vararg] = ACTIONS(5213), - [anon_sym_noinline] = ACTIONS(5213), - [anon_sym_crossinline] = ACTIONS(5213), - [anon_sym_expect] = ACTIONS(5213), - [anon_sym_actual] = ACTIONS(5213), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5215), - [sym_safe_nav] = ACTIONS(5215), + [3473] = { + [sym__alpha_identifier] = ACTIONS(5057), + [anon_sym_AT] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5059), + [anon_sym_RBRACK] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5057), + [anon_sym_as] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(5057), + [anon_sym_LBRACE] = ACTIONS(5059), + [anon_sym_RBRACE] = ACTIONS(5059), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_RPAREN] = ACTIONS(5059), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_where] = ACTIONS(5057), + [anon_sym_SEMI] = ACTIONS(5059), + [anon_sym_get] = ACTIONS(5057), + [anon_sym_set] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_DASH_GT] = ACTIONS(5059), + [sym_label] = ACTIONS(5059), + [anon_sym_in] = ACTIONS(5057), + [anon_sym_while] = ACTIONS(5057), + [anon_sym_DOT_DOT] = ACTIONS(5059), + [anon_sym_QMARK_COLON] = ACTIONS(5059), + [anon_sym_AMP_AMP] = ACTIONS(5059), + [anon_sym_PIPE_PIPE] = ACTIONS(5059), + [anon_sym_else] = ACTIONS(5057), + [anon_sym_COLON_COLON] = ACTIONS(5059), + [anon_sym_PLUS_EQ] = ACTIONS(5059), + [anon_sym_DASH_EQ] = ACTIONS(5059), + [anon_sym_STAR_EQ] = ACTIONS(5059), + [anon_sym_SLASH_EQ] = ACTIONS(5059), + [anon_sym_PERCENT_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5059), + [anon_sym_GT_EQ] = ACTIONS(5059), + [anon_sym_BANGin] = ACTIONS(5059), + [anon_sym_is] = ACTIONS(5057), + [anon_sym_BANGis] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_PERCENT] = ACTIONS(5057), + [anon_sym_as_QMARK] = ACTIONS(5059), + [anon_sym_PLUS_PLUS] = ACTIONS(5059), + [anon_sym_DASH_DASH] = ACTIONS(5059), + [anon_sym_BANG_BANG] = ACTIONS(5059), + [anon_sym_suspend] = ACTIONS(5057), + [anon_sym_sealed] = ACTIONS(5057), + [anon_sym_annotation] = ACTIONS(5057), + [anon_sym_data] = ACTIONS(5057), + [anon_sym_inner] = ACTIONS(5057), + [anon_sym_value] = ACTIONS(5057), + [anon_sym_override] = ACTIONS(5057), + [anon_sym_lateinit] = ACTIONS(5057), + [anon_sym_public] = ACTIONS(5057), + [anon_sym_private] = ACTIONS(5057), + [anon_sym_internal] = ACTIONS(5057), + [anon_sym_protected] = ACTIONS(5057), + [anon_sym_tailrec] = ACTIONS(5057), + [anon_sym_operator] = ACTIONS(5057), + [anon_sym_infix] = ACTIONS(5057), + [anon_sym_inline] = ACTIONS(5057), + [anon_sym_external] = ACTIONS(5057), + [sym_property_modifier] = ACTIONS(5057), + [anon_sym_abstract] = ACTIONS(5057), + [anon_sym_final] = ACTIONS(5057), + [anon_sym_open] = ACTIONS(5057), + [anon_sym_vararg] = ACTIONS(5057), + [anon_sym_noinline] = ACTIONS(5057), + [anon_sym_crossinline] = ACTIONS(5057), + [anon_sym_expect] = ACTIONS(5057), + [anon_sym_actual] = ACTIONS(5057), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5059), + [sym_safe_nav] = ACTIONS(5059), [sym_multiline_comment] = ACTIONS(3), }, - [3443] = { - [sym__alpha_identifier] = ACTIONS(4629), - [anon_sym_AT] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4631), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_RBRACE] = ACTIONS(4631), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_by] = ACTIONS(4629), - [anon_sym_where] = ACTIONS(4629), - [anon_sym_object] = ACTIONS(4629), - [anon_sym_fun] = ACTIONS(4629), - [anon_sym_SEMI] = ACTIONS(4631), - [anon_sym_get] = ACTIONS(4629), - [anon_sym_set] = ACTIONS(4629), - [anon_sym_this] = ACTIONS(4629), - [anon_sym_super] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4631), - [sym_label] = ACTIONS(4629), - [anon_sym_in] = ACTIONS(4629), - [anon_sym_null] = ACTIONS(4629), - [anon_sym_if] = ACTIONS(4629), - [anon_sym_else] = ACTIONS(4629), - [anon_sym_when] = ACTIONS(4629), - [anon_sym_try] = ACTIONS(4629), - [anon_sym_throw] = ACTIONS(4629), - [anon_sym_return] = ACTIONS(4629), - [anon_sym_continue] = ACTIONS(4629), - [anon_sym_break] = ACTIONS(4629), - [anon_sym_COLON_COLON] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4631), - [anon_sym_is] = ACTIONS(4629), - [anon_sym_BANGis] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_PLUS_PLUS] = ACTIONS(4631), - [anon_sym_DASH_DASH] = ACTIONS(4631), - [anon_sym_BANG] = ACTIONS(4629), - [anon_sym_suspend] = ACTIONS(4629), - [anon_sym_sealed] = ACTIONS(4629), - [anon_sym_annotation] = ACTIONS(4629), - [anon_sym_data] = ACTIONS(4629), - [anon_sym_inner] = ACTIONS(4629), - [anon_sym_value] = ACTIONS(4629), - [anon_sym_override] = ACTIONS(4629), - [anon_sym_lateinit] = ACTIONS(4629), - [anon_sym_public] = ACTIONS(4629), - [anon_sym_private] = ACTIONS(4629), - [anon_sym_internal] = ACTIONS(4629), - [anon_sym_protected] = ACTIONS(4629), - [anon_sym_tailrec] = ACTIONS(4629), - [anon_sym_operator] = ACTIONS(4629), - [anon_sym_infix] = ACTIONS(4629), - [anon_sym_inline] = ACTIONS(4629), - [anon_sym_external] = ACTIONS(4629), - [sym_property_modifier] = ACTIONS(4629), - [anon_sym_abstract] = ACTIONS(4629), - [anon_sym_final] = ACTIONS(4629), - [anon_sym_open] = ACTIONS(4629), - [anon_sym_vararg] = ACTIONS(4629), - [anon_sym_noinline] = ACTIONS(4629), - [anon_sym_crossinline] = ACTIONS(4629), - [anon_sym_expect] = ACTIONS(4629), - [anon_sym_actual] = ACTIONS(4629), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4631), - [anon_sym_continue_AT] = ACTIONS(4631), - [anon_sym_break_AT] = ACTIONS(4631), - [anon_sym_this_AT] = ACTIONS(4631), - [anon_sym_super_AT] = ACTIONS(4631), - [sym_real_literal] = ACTIONS(4631), - [sym_integer_literal] = ACTIONS(4629), - [sym_hex_literal] = ACTIONS(4631), - [sym_bin_literal] = ACTIONS(4631), - [anon_sym_true] = ACTIONS(4629), - [anon_sym_false] = ACTIONS(4629), - [anon_sym_SQUOTE] = ACTIONS(4631), - [sym__backtick_identifier] = ACTIONS(4631), - [sym__automatic_semicolon] = ACTIONS(4631), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4631), - }, - [3444] = { - [sym__alpha_identifier] = ACTIONS(4609), - [anon_sym_AT] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4611), - [anon_sym_EQ] = ACTIONS(4611), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_RBRACE] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_by] = ACTIONS(4609), - [anon_sym_where] = ACTIONS(4609), - [anon_sym_object] = ACTIONS(4609), - [anon_sym_fun] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_get] = ACTIONS(4609), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_this] = ACTIONS(4609), - [anon_sym_super] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4611), - [sym_label] = ACTIONS(4609), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_null] = ACTIONS(4609), - [anon_sym_if] = ACTIONS(4609), - [anon_sym_else] = ACTIONS(4609), - [anon_sym_when] = ACTIONS(4609), - [anon_sym_try] = ACTIONS(4609), - [anon_sym_throw] = ACTIONS(4609), - [anon_sym_return] = ACTIONS(4609), - [anon_sym_continue] = ACTIONS(4609), - [anon_sym_break] = ACTIONS(4609), - [anon_sym_COLON_COLON] = ACTIONS(4611), - [anon_sym_BANGin] = ACTIONS(4611), - [anon_sym_is] = ACTIONS(4609), - [anon_sym_BANGis] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_PLUS_PLUS] = ACTIONS(4611), - [anon_sym_DASH_DASH] = ACTIONS(4611), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_suspend] = ACTIONS(4609), - [anon_sym_sealed] = ACTIONS(4609), - [anon_sym_annotation] = ACTIONS(4609), - [anon_sym_data] = ACTIONS(4609), - [anon_sym_inner] = ACTIONS(4609), - [anon_sym_value] = ACTIONS(4609), - [anon_sym_override] = ACTIONS(4609), - [anon_sym_lateinit] = ACTIONS(4609), - [anon_sym_public] = ACTIONS(4609), - [anon_sym_private] = ACTIONS(4609), - [anon_sym_internal] = ACTIONS(4609), - [anon_sym_protected] = ACTIONS(4609), - [anon_sym_tailrec] = ACTIONS(4609), - [anon_sym_operator] = ACTIONS(4609), - [anon_sym_infix] = ACTIONS(4609), - [anon_sym_inline] = ACTIONS(4609), - [anon_sym_external] = ACTIONS(4609), - [sym_property_modifier] = ACTIONS(4609), - [anon_sym_abstract] = ACTIONS(4609), - [anon_sym_final] = ACTIONS(4609), - [anon_sym_open] = ACTIONS(4609), - [anon_sym_vararg] = ACTIONS(4609), - [anon_sym_noinline] = ACTIONS(4609), - [anon_sym_crossinline] = ACTIONS(4609), - [anon_sym_expect] = ACTIONS(4609), - [anon_sym_actual] = ACTIONS(4609), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4611), - [anon_sym_continue_AT] = ACTIONS(4611), - [anon_sym_break_AT] = ACTIONS(4611), - [anon_sym_this_AT] = ACTIONS(4611), - [anon_sym_super_AT] = ACTIONS(4611), - [sym_real_literal] = ACTIONS(4611), - [sym_integer_literal] = ACTIONS(4609), - [sym_hex_literal] = ACTIONS(4611), - [sym_bin_literal] = ACTIONS(4611), - [anon_sym_true] = ACTIONS(4609), - [anon_sym_false] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4611), - [sym__backtick_identifier] = ACTIONS(4611), - [sym__automatic_semicolon] = ACTIONS(4611), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4611), + [3474] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(6793), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4217), + [anon_sym_DASH_EQ] = ACTIONS(4217), + [anon_sym_STAR_EQ] = ACTIONS(4217), + [anon_sym_SLASH_EQ] = ACTIONS(4217), + [anon_sym_PERCENT_EQ] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, - [3445] = { - [sym__alpha_identifier] = ACTIONS(4605), - [anon_sym_AT] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_EQ] = ACTIONS(4607), - [anon_sym_LBRACE] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4607), - [anon_sym_LPAREN] = ACTIONS(4607), - [anon_sym_COMMA] = ACTIONS(4607), - [anon_sym_by] = ACTIONS(4605), - [anon_sym_where] = ACTIONS(4605), - [anon_sym_object] = ACTIONS(4605), - [anon_sym_fun] = 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(4607), - [sym_label] = ACTIONS(4605), - [anon_sym_in] = ACTIONS(4605), - [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_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_PLUS_PLUS] = ACTIONS(4607), - [anon_sym_DASH_DASH] = ACTIONS(4607), - [anon_sym_BANG] = ACTIONS(4605), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4607), - [anon_sym_super_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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4607), + [3475] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(6789), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [3446] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(5472), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_RPAREN] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [anon_sym_DASH_GT] = ACTIONS(4237), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4234), - [anon_sym_while] = ACTIONS(4234), - [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(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [3476] = { + [sym__alpha_identifier] = ACTIONS(5133), + [anon_sym_AT] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_RBRACK] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_RPAREN] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5133), + [anon_sym_GT] = ACTIONS(5133), + [anon_sym_where] = ACTIONS(5133), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_get] = ACTIONS(5133), + [anon_sym_set] = ACTIONS(5133), + [anon_sym_STAR] = ACTIONS(5133), + [anon_sym_DASH_GT] = ACTIONS(5135), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5133), + [anon_sym_while] = ACTIONS(5133), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_QMARK_COLON] = ACTIONS(5135), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5133), + [anon_sym_COLON_COLON] = ACTIONS(5135), + [anon_sym_PLUS_EQ] = ACTIONS(5135), + [anon_sym_DASH_EQ] = ACTIONS(5135), + [anon_sym_STAR_EQ] = ACTIONS(5135), + [anon_sym_SLASH_EQ] = ACTIONS(5135), + [anon_sym_PERCENT_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_BANGin] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5133), + [anon_sym_BANGis] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5133), + [anon_sym_DASH] = ACTIONS(5133), + [anon_sym_SLASH] = ACTIONS(5133), + [anon_sym_PERCENT] = ACTIONS(5133), + [anon_sym_as_QMARK] = ACTIONS(5135), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5135), + [anon_sym_suspend] = ACTIONS(5133), + [anon_sym_sealed] = ACTIONS(5133), + [anon_sym_annotation] = ACTIONS(5133), + [anon_sym_data] = ACTIONS(5133), + [anon_sym_inner] = ACTIONS(5133), + [anon_sym_value] = ACTIONS(5133), + [anon_sym_override] = ACTIONS(5133), + [anon_sym_lateinit] = ACTIONS(5133), + [anon_sym_public] = ACTIONS(5133), + [anon_sym_private] = ACTIONS(5133), + [anon_sym_internal] = ACTIONS(5133), + [anon_sym_protected] = ACTIONS(5133), + [anon_sym_tailrec] = ACTIONS(5133), + [anon_sym_operator] = ACTIONS(5133), + [anon_sym_infix] = ACTIONS(5133), + [anon_sym_inline] = ACTIONS(5133), + [anon_sym_external] = ACTIONS(5133), + [sym_property_modifier] = ACTIONS(5133), + [anon_sym_abstract] = ACTIONS(5133), + [anon_sym_final] = ACTIONS(5133), + [anon_sym_open] = ACTIONS(5133), + [anon_sym_vararg] = ACTIONS(5133), + [anon_sym_noinline] = ACTIONS(5133), + [anon_sym_crossinline] = ACTIONS(5133), + [anon_sym_expect] = ACTIONS(5133), + [anon_sym_actual] = ACTIONS(5133), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [sym__backtick_identifier] = ACTIONS(5135), + [sym_safe_nav] = ACTIONS(5135), [sym_multiline_comment] = ACTIONS(3), }, - [3447] = { - [sym__alpha_identifier] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_RBRACK] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_as] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym_COMMA] = ACTIONS(4042), - [anon_sym_RPAREN] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4040), - [anon_sym_GT] = ACTIONS(4040), - [anon_sym_where] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_get] = ACTIONS(4040), - [anon_sym_set] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [anon_sym_DASH_GT] = ACTIONS(4042), - [sym_label] = ACTIONS(4042), - [anon_sym_in] = ACTIONS(4040), - [anon_sym_while] = ACTIONS(4040), - [anon_sym_DOT_DOT] = ACTIONS(4042), - [anon_sym_QMARK_COLON] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_else] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_PLUS_EQ] = ACTIONS(4042), - [anon_sym_DASH_EQ] = ACTIONS(4042), - [anon_sym_STAR_EQ] = ACTIONS(4042), - [anon_sym_SLASH_EQ] = ACTIONS(4042), - [anon_sym_PERCENT_EQ] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4042), - [anon_sym_LT_EQ] = ACTIONS(4042), - [anon_sym_GT_EQ] = ACTIONS(4042), - [anon_sym_BANGin] = ACTIONS(4042), - [anon_sym_is] = ACTIONS(4040), - [anon_sym_BANGis] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_SLASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_as_QMARK] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_BANG_BANG] = ACTIONS(4042), - [anon_sym_suspend] = ACTIONS(4040), - [anon_sym_sealed] = ACTIONS(4040), - [anon_sym_annotation] = ACTIONS(4040), - [anon_sym_data] = ACTIONS(4040), - [anon_sym_inner] = ACTIONS(4040), - [anon_sym_value] = ACTIONS(4040), - [anon_sym_override] = ACTIONS(4040), - [anon_sym_lateinit] = ACTIONS(4040), - [anon_sym_public] = ACTIONS(4040), - [anon_sym_private] = ACTIONS(4040), - [anon_sym_internal] = ACTIONS(4040), - [anon_sym_protected] = ACTIONS(4040), - [anon_sym_tailrec] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_infix] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym_external] = ACTIONS(4040), - [sym_property_modifier] = ACTIONS(4040), - [anon_sym_abstract] = ACTIONS(4040), - [anon_sym_final] = ACTIONS(4040), - [anon_sym_open] = ACTIONS(4040), - [anon_sym_vararg] = ACTIONS(4040), - [anon_sym_noinline] = ACTIONS(4040), - [anon_sym_crossinline] = ACTIONS(4040), - [anon_sym_expect] = ACTIONS(4040), - [anon_sym_actual] = ACTIONS(4040), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4042), - [sym_safe_nav] = ACTIONS(4042), + [3477] = { + [sym_class_body] = STATE(3923), + [sym_type_constraints] = STATE(3784), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(6834), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), [sym_multiline_comment] = ACTIONS(3), }, - [3448] = { - [ts_builtin_sym_end] = ACTIONS(6878), - [sym__alpha_identifier] = ACTIONS(6880), - [anon_sym_AT] = ACTIONS(6878), - [anon_sym_LBRACK] = ACTIONS(6878), - [anon_sym_package] = ACTIONS(6880), - [anon_sym_import] = ACTIONS(6880), - [anon_sym_typealias] = ACTIONS(6880), - [anon_sym_class] = ACTIONS(6880), - [anon_sym_interface] = ACTIONS(6880), - [anon_sym_enum] = ACTIONS(6880), - [anon_sym_LBRACE] = ACTIONS(6878), - [anon_sym_LPAREN] = ACTIONS(6878), - [anon_sym_val] = ACTIONS(6880), - [anon_sym_var] = ACTIONS(6880), - [anon_sym_object] = ACTIONS(6880), - [anon_sym_fun] = ACTIONS(6880), - [anon_sym_get] = ACTIONS(6880), - [anon_sym_set] = ACTIONS(6880), - [anon_sym_this] = ACTIONS(6880), - [anon_sym_super] = ACTIONS(6880), - [anon_sym_STAR] = ACTIONS(6878), - [sym_label] = ACTIONS(6880), - [anon_sym_for] = ACTIONS(6880), - [anon_sym_while] = ACTIONS(6880), - [anon_sym_do] = ACTIONS(6880), - [anon_sym_null] = ACTIONS(6880), - [anon_sym_if] = ACTIONS(6880), - [anon_sym_when] = ACTIONS(6880), - [anon_sym_try] = ACTIONS(6880), - [anon_sym_throw] = ACTIONS(6880), - [anon_sym_return] = ACTIONS(6880), - [anon_sym_continue] = ACTIONS(6880), - [anon_sym_break] = ACTIONS(6880), - [anon_sym_COLON_COLON] = ACTIONS(6878), - [anon_sym_PLUS] = ACTIONS(6880), - [anon_sym_DASH] = ACTIONS(6880), - [anon_sym_PLUS_PLUS] = ACTIONS(6878), - [anon_sym_DASH_DASH] = ACTIONS(6878), - [anon_sym_BANG] = ACTIONS(6878), - [anon_sym_suspend] = ACTIONS(6880), - [anon_sym_sealed] = ACTIONS(6880), - [anon_sym_annotation] = ACTIONS(6880), - [anon_sym_data] = ACTIONS(6880), - [anon_sym_inner] = ACTIONS(6880), - [anon_sym_value] = ACTIONS(6880), - [anon_sym_override] = ACTIONS(6880), - [anon_sym_lateinit] = ACTIONS(6880), - [anon_sym_public] = ACTIONS(6880), - [anon_sym_private] = ACTIONS(6880), - [anon_sym_internal] = ACTIONS(6880), - [anon_sym_protected] = ACTIONS(6880), - [anon_sym_tailrec] = ACTIONS(6880), - [anon_sym_operator] = ACTIONS(6880), - [anon_sym_infix] = ACTIONS(6880), - [anon_sym_inline] = ACTIONS(6880), - [anon_sym_external] = ACTIONS(6880), - [sym_property_modifier] = ACTIONS(6880), - [anon_sym_abstract] = ACTIONS(6880), - [anon_sym_final] = ACTIONS(6880), - [anon_sym_open] = ACTIONS(6880), - [anon_sym_vararg] = ACTIONS(6880), - [anon_sym_noinline] = ACTIONS(6880), - [anon_sym_crossinline] = ACTIONS(6880), - [anon_sym_expect] = ACTIONS(6880), - [anon_sym_actual] = ACTIONS(6880), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6878), - [anon_sym_continue_AT] = ACTIONS(6878), - [anon_sym_break_AT] = ACTIONS(6878), - [anon_sym_this_AT] = ACTIONS(6878), - [anon_sym_super_AT] = ACTIONS(6878), - [sym_real_literal] = ACTIONS(6878), - [sym_integer_literal] = ACTIONS(6880), - [sym_hex_literal] = ACTIONS(6878), - [sym_bin_literal] = ACTIONS(6878), - [anon_sym_true] = ACTIONS(6880), - [anon_sym_false] = ACTIONS(6880), - [anon_sym_SQUOTE] = ACTIONS(6878), - [sym__backtick_identifier] = ACTIONS(6878), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6878), - }, - [3449] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(6882), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3990), - [anon_sym_interface] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(3990), - [anon_sym_var] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3995), - [sym_label] = ACTIONS(3990), - [anon_sym_for] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_do] = ACTIONS(3990), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [3450] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_RBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(5468), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_RPAREN] = ACTIONS(4223), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [anon_sym_DASH_GT] = ACTIONS(4223), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_while] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [sym_safe_nav] = ACTIONS(4223), + [3478] = { + [sym_type_constraints] = STATE(3711), + [sym_enum_class_body] = STATE(3893), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(5846), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [3451] = { - [sym__alpha_identifier] = ACTIONS(5189), - [anon_sym_AT] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_DOT] = ACTIONS(5189), - [anon_sym_as] = ACTIONS(5189), - [anon_sym_EQ] = ACTIONS(5189), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_where] = ACTIONS(5189), - [anon_sym_SEMI] = ACTIONS(5191), - [anon_sym_get] = ACTIONS(5189), - [anon_sym_set] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_DASH_GT] = ACTIONS(5191), - [sym_label] = ACTIONS(5191), - [anon_sym_in] = ACTIONS(5189), - [anon_sym_while] = ACTIONS(5189), - [anon_sym_DOT_DOT] = ACTIONS(5191), - [anon_sym_QMARK_COLON] = ACTIONS(5191), - [anon_sym_AMP_AMP] = ACTIONS(5191), - [anon_sym_PIPE_PIPE] = ACTIONS(5191), - [anon_sym_else] = ACTIONS(5189), - [anon_sym_COLON_COLON] = ACTIONS(5191), - [anon_sym_PLUS_EQ] = ACTIONS(5191), - [anon_sym_DASH_EQ] = ACTIONS(5191), - [anon_sym_STAR_EQ] = ACTIONS(5191), - [anon_sym_SLASH_EQ] = ACTIONS(5191), - [anon_sym_PERCENT_EQ] = ACTIONS(5191), - [anon_sym_BANG_EQ] = ACTIONS(5189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5191), - [anon_sym_EQ_EQ] = ACTIONS(5189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5191), - [anon_sym_LT_EQ] = ACTIONS(5191), - [anon_sym_GT_EQ] = ACTIONS(5191), - [anon_sym_BANGin] = ACTIONS(5191), - [anon_sym_is] = ACTIONS(5189), - [anon_sym_BANGis] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_PERCENT] = ACTIONS(5189), - [anon_sym_as_QMARK] = ACTIONS(5191), - [anon_sym_PLUS_PLUS] = ACTIONS(5191), - [anon_sym_DASH_DASH] = ACTIONS(5191), - [anon_sym_BANG_BANG] = ACTIONS(5191), - [anon_sym_suspend] = ACTIONS(5189), - [anon_sym_sealed] = ACTIONS(5189), - [anon_sym_annotation] = ACTIONS(5189), - [anon_sym_data] = ACTIONS(5189), - [anon_sym_inner] = ACTIONS(5189), - [anon_sym_value] = ACTIONS(5189), - [anon_sym_override] = ACTIONS(5189), - [anon_sym_lateinit] = ACTIONS(5189), - [anon_sym_public] = ACTIONS(5189), - [anon_sym_private] = ACTIONS(5189), - [anon_sym_internal] = ACTIONS(5189), - [anon_sym_protected] = ACTIONS(5189), - [anon_sym_tailrec] = ACTIONS(5189), - [anon_sym_operator] = ACTIONS(5189), - [anon_sym_infix] = ACTIONS(5189), - [anon_sym_inline] = ACTIONS(5189), - [anon_sym_external] = ACTIONS(5189), - [sym_property_modifier] = ACTIONS(5189), - [anon_sym_abstract] = ACTIONS(5189), - [anon_sym_final] = ACTIONS(5189), - [anon_sym_open] = ACTIONS(5189), - [anon_sym_vararg] = ACTIONS(5189), - [anon_sym_noinline] = ACTIONS(5189), - [anon_sym_crossinline] = ACTIONS(5189), - [anon_sym_expect] = ACTIONS(5189), - [anon_sym_actual] = ACTIONS(5189), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5191), - [sym_safe_nav] = ACTIONS(5191), + [3479] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_RBRACK] = ACTIONS(5111), + [anon_sym_DOT] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5111), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(5111), + [anon_sym_RPAREN] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5109), + [anon_sym_set] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_DASH_GT] = ACTIONS(5111), + [sym_label] = ACTIONS(5111), + [anon_sym_in] = ACTIONS(5109), + [anon_sym_while] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5111), + [anon_sym_QMARK_COLON] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5111), + [anon_sym_else] = ACTIONS(5109), + [anon_sym_COLON_COLON] = ACTIONS(5111), + [anon_sym_PLUS_EQ] = ACTIONS(5111), + [anon_sym_DASH_EQ] = ACTIONS(5111), + [anon_sym_STAR_EQ] = ACTIONS(5111), + [anon_sym_SLASH_EQ] = ACTIONS(5111), + [anon_sym_PERCENT_EQ] = ACTIONS(5111), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_BANGin] = ACTIONS(5111), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_BANGis] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_as_QMARK] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5111), + [anon_sym_BANG_BANG] = ACTIONS(5111), + [anon_sym_suspend] = ACTIONS(5109), + [anon_sym_sealed] = ACTIONS(5109), + [anon_sym_annotation] = ACTIONS(5109), + [anon_sym_data] = ACTIONS(5109), + [anon_sym_inner] = ACTIONS(5109), + [anon_sym_value] = ACTIONS(5109), + [anon_sym_override] = ACTIONS(5109), + [anon_sym_lateinit] = ACTIONS(5109), + [anon_sym_public] = ACTIONS(5109), + [anon_sym_private] = ACTIONS(5109), + [anon_sym_internal] = ACTIONS(5109), + [anon_sym_protected] = ACTIONS(5109), + [anon_sym_tailrec] = ACTIONS(5109), + [anon_sym_operator] = ACTIONS(5109), + [anon_sym_infix] = ACTIONS(5109), + [anon_sym_inline] = ACTIONS(5109), + [anon_sym_external] = ACTIONS(5109), + [sym_property_modifier] = ACTIONS(5109), + [anon_sym_abstract] = ACTIONS(5109), + [anon_sym_final] = ACTIONS(5109), + [anon_sym_open] = ACTIONS(5109), + [anon_sym_vararg] = ACTIONS(5109), + [anon_sym_noinline] = ACTIONS(5109), + [anon_sym_crossinline] = ACTIONS(5109), + [anon_sym_expect] = ACTIONS(5109), + [anon_sym_actual] = ACTIONS(5109), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5111), + [sym_safe_nav] = ACTIONS(5111), [sym_multiline_comment] = ACTIONS(3), }, - [3452] = { - [sym__alpha_identifier] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_RBRACK] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_EQ] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_RPAREN] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_get] = ACTIONS(4104), - [anon_sym_set] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [anon_sym_DASH_GT] = ACTIONS(4106), - [sym_label] = ACTIONS(4106), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_while] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_QMARK_COLON] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_BANGin] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_BANGis] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_as_QMARK] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_BANG_BANG] = ACTIONS(4106), - [anon_sym_suspend] = ACTIONS(4104), - [anon_sym_sealed] = ACTIONS(4104), - [anon_sym_annotation] = ACTIONS(4104), - [anon_sym_data] = ACTIONS(4104), - [anon_sym_inner] = ACTIONS(4104), - [anon_sym_value] = ACTIONS(4104), - [anon_sym_override] = ACTIONS(4104), - [anon_sym_lateinit] = ACTIONS(4104), - [anon_sym_public] = ACTIONS(4104), - [anon_sym_private] = ACTIONS(4104), - [anon_sym_internal] = ACTIONS(4104), - [anon_sym_protected] = ACTIONS(4104), - [anon_sym_tailrec] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_infix] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym_external] = ACTIONS(4104), - [sym_property_modifier] = ACTIONS(4104), - [anon_sym_abstract] = ACTIONS(4104), - [anon_sym_final] = ACTIONS(4104), - [anon_sym_open] = ACTIONS(4104), - [anon_sym_vararg] = ACTIONS(4104), - [anon_sym_noinline] = ACTIONS(4104), - [anon_sym_crossinline] = ACTIONS(4104), - [anon_sym_expect] = ACTIONS(4104), - [anon_sym_actual] = ACTIONS(4104), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4106), - [sym_safe_nav] = ACTIONS(4106), + [3480] = { + [sym_class_body] = STATE(3893), + [sym_type_constraints] = STATE(3712), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(5852), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [3453] = { + [3481] = { [sym__alpha_identifier] = ACTIONS(5125), [anon_sym_AT] = ACTIONS(5127), [anon_sym_LBRACK] = ACTIONS(5127), @@ -396875,505 +399468,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5127), [sym_multiline_comment] = ACTIONS(3), }, - [3454] = { - [sym__alpha_identifier] = ACTIONS(5141), - [anon_sym_AT] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5143), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_as] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5141), - [anon_sym_where] = ACTIONS(5141), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_get] = ACTIONS(5141), - [anon_sym_set] = ACTIONS(5141), - [anon_sym_STAR] = ACTIONS(5141), - [anon_sym_DASH_GT] = ACTIONS(5143), - [sym_label] = ACTIONS(5143), - [anon_sym_in] = ACTIONS(5141), - [anon_sym_while] = ACTIONS(5141), - [anon_sym_DOT_DOT] = ACTIONS(5143), - [anon_sym_QMARK_COLON] = ACTIONS(5143), - [anon_sym_AMP_AMP] = ACTIONS(5143), - [anon_sym_PIPE_PIPE] = ACTIONS(5143), - [anon_sym_else] = ACTIONS(5141), - [anon_sym_COLON_COLON] = ACTIONS(5143), - [anon_sym_PLUS_EQ] = ACTIONS(5143), - [anon_sym_DASH_EQ] = ACTIONS(5143), - [anon_sym_STAR_EQ] = ACTIONS(5143), - [anon_sym_SLASH_EQ] = ACTIONS(5143), - [anon_sym_PERCENT_EQ] = ACTIONS(5143), - [anon_sym_BANG_EQ] = ACTIONS(5141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), - [anon_sym_EQ_EQ] = ACTIONS(5141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), - [anon_sym_LT_EQ] = ACTIONS(5143), - [anon_sym_GT_EQ] = ACTIONS(5143), - [anon_sym_BANGin] = ACTIONS(5143), - [anon_sym_is] = ACTIONS(5141), - [anon_sym_BANGis] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5141), - [anon_sym_PERCENT] = ACTIONS(5141), - [anon_sym_as_QMARK] = ACTIONS(5143), - [anon_sym_PLUS_PLUS] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5143), - [anon_sym_BANG_BANG] = ACTIONS(5143), - [anon_sym_suspend] = ACTIONS(5141), - [anon_sym_sealed] = ACTIONS(5141), - [anon_sym_annotation] = ACTIONS(5141), - [anon_sym_data] = ACTIONS(5141), - [anon_sym_inner] = ACTIONS(5141), - [anon_sym_value] = ACTIONS(5141), - [anon_sym_override] = ACTIONS(5141), - [anon_sym_lateinit] = ACTIONS(5141), - [anon_sym_public] = ACTIONS(5141), - [anon_sym_private] = ACTIONS(5141), - [anon_sym_internal] = ACTIONS(5141), - [anon_sym_protected] = ACTIONS(5141), - [anon_sym_tailrec] = ACTIONS(5141), - [anon_sym_operator] = ACTIONS(5141), - [anon_sym_infix] = ACTIONS(5141), - [anon_sym_inline] = ACTIONS(5141), - [anon_sym_external] = ACTIONS(5141), - [sym_property_modifier] = ACTIONS(5141), - [anon_sym_abstract] = ACTIONS(5141), - [anon_sym_final] = ACTIONS(5141), - [anon_sym_open] = ACTIONS(5141), - [anon_sym_vararg] = ACTIONS(5141), - [anon_sym_noinline] = ACTIONS(5141), - [anon_sym_crossinline] = ACTIONS(5141), - [anon_sym_expect] = ACTIONS(5141), - [anon_sym_actual] = ACTIONS(5141), + [3482] = { + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_RBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [anon_sym_DASH_GT] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [3483] = { + [sym_type_constraints] = STATE(3717), + [sym_enum_class_body] = STATE(3990), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6836), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + }, + [3484] = { + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_RBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [anon_sym_DASH_GT] = ACTIONS(3298), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(3296), + [anon_sym_sealed] = ACTIONS(3296), + [anon_sym_annotation] = ACTIONS(3296), + [anon_sym_data] = ACTIONS(3296), + [anon_sym_inner] = ACTIONS(3296), + [anon_sym_value] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_lateinit] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_internal] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_tailrec] = ACTIONS(3296), + [anon_sym_operator] = ACTIONS(3296), + [anon_sym_infix] = ACTIONS(3296), + [anon_sym_inline] = ACTIONS(3296), + [anon_sym_external] = ACTIONS(3296), + [sym_property_modifier] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_final] = ACTIONS(3296), + [anon_sym_open] = ACTIONS(3296), + [anon_sym_vararg] = ACTIONS(3296), + [anon_sym_noinline] = ACTIONS(3296), + [anon_sym_crossinline] = ACTIONS(3296), + [anon_sym_expect] = ACTIONS(3296), + [anon_sym_actual] = ACTIONS(3296), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5143), - [sym_safe_nav] = ACTIONS(5143), + [sym__backtick_identifier] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [3455] = { - [sym__alpha_identifier] = ACTIONS(5129), - [anon_sym_AT] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5131), - [anon_sym_RBRACK] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_as] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(5129), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_RPAREN] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_where] = ACTIONS(5129), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_get] = ACTIONS(5129), - [anon_sym_set] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_DASH_GT] = ACTIONS(5131), - [sym_label] = ACTIONS(5131), - [anon_sym_in] = ACTIONS(5129), - [anon_sym_while] = ACTIONS(5129), - [anon_sym_DOT_DOT] = ACTIONS(5131), - [anon_sym_QMARK_COLON] = ACTIONS(5131), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5131), - [anon_sym_else] = ACTIONS(5129), - [anon_sym_COLON_COLON] = ACTIONS(5131), - [anon_sym_PLUS_EQ] = ACTIONS(5131), - [anon_sym_DASH_EQ] = ACTIONS(5131), - [anon_sym_STAR_EQ] = ACTIONS(5131), - [anon_sym_SLASH_EQ] = ACTIONS(5131), - [anon_sym_PERCENT_EQ] = ACTIONS(5131), - [anon_sym_BANG_EQ] = ACTIONS(5129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), - [anon_sym_EQ_EQ] = ACTIONS(5129), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), - [anon_sym_LT_EQ] = ACTIONS(5131), - [anon_sym_GT_EQ] = ACTIONS(5131), - [anon_sym_BANGin] = ACTIONS(5131), - [anon_sym_is] = ACTIONS(5129), - [anon_sym_BANGis] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_PERCENT] = ACTIONS(5129), - [anon_sym_as_QMARK] = ACTIONS(5131), - [anon_sym_PLUS_PLUS] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5131), - [anon_sym_BANG_BANG] = ACTIONS(5131), - [anon_sym_suspend] = ACTIONS(5129), - [anon_sym_sealed] = ACTIONS(5129), - [anon_sym_annotation] = ACTIONS(5129), - [anon_sym_data] = ACTIONS(5129), - [anon_sym_inner] = ACTIONS(5129), - [anon_sym_value] = ACTIONS(5129), - [anon_sym_override] = ACTIONS(5129), - [anon_sym_lateinit] = ACTIONS(5129), - [anon_sym_public] = ACTIONS(5129), - [anon_sym_private] = ACTIONS(5129), - [anon_sym_internal] = ACTIONS(5129), - [anon_sym_protected] = ACTIONS(5129), - [anon_sym_tailrec] = ACTIONS(5129), - [anon_sym_operator] = ACTIONS(5129), - [anon_sym_infix] = ACTIONS(5129), - [anon_sym_inline] = ACTIONS(5129), - [anon_sym_external] = ACTIONS(5129), - [sym_property_modifier] = ACTIONS(5129), - [anon_sym_abstract] = ACTIONS(5129), - [anon_sym_final] = ACTIONS(5129), - [anon_sym_open] = ACTIONS(5129), - [anon_sym_vararg] = ACTIONS(5129), - [anon_sym_noinline] = ACTIONS(5129), - [anon_sym_crossinline] = ACTIONS(5129), - [anon_sym_expect] = ACTIONS(5129), - [anon_sym_actual] = ACTIONS(5129), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5131), - [sym_safe_nav] = ACTIONS(5131), - [sym_multiline_comment] = ACTIONS(3), - }, - [3456] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6832), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4228), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [3457] = { - [sym__alpha_identifier] = ACTIONS(5101), - [anon_sym_AT] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_as] = ACTIONS(5101), - [anon_sym_EQ] = ACTIONS(5101), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_where] = ACTIONS(5101), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_get] = ACTIONS(5101), - [anon_sym_set] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_DASH_GT] = ACTIONS(5103), - [sym_label] = ACTIONS(5103), - [anon_sym_in] = ACTIONS(5101), - [anon_sym_while] = ACTIONS(5101), - [anon_sym_DOT_DOT] = ACTIONS(5103), - [anon_sym_QMARK_COLON] = ACTIONS(5103), - [anon_sym_AMP_AMP] = ACTIONS(5103), - [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_else] = ACTIONS(5101), - [anon_sym_COLON_COLON] = ACTIONS(5103), - [anon_sym_PLUS_EQ] = ACTIONS(5103), - [anon_sym_DASH_EQ] = ACTIONS(5103), - [anon_sym_STAR_EQ] = ACTIONS(5103), - [anon_sym_SLASH_EQ] = ACTIONS(5103), - [anon_sym_PERCENT_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), - [anon_sym_LT_EQ] = ACTIONS(5103), - [anon_sym_GT_EQ] = ACTIONS(5103), - [anon_sym_BANGin] = ACTIONS(5103), - [anon_sym_is] = ACTIONS(5101), - [anon_sym_BANGis] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_PERCENT] = ACTIONS(5101), - [anon_sym_as_QMARK] = ACTIONS(5103), - [anon_sym_PLUS_PLUS] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5103), - [anon_sym_BANG_BANG] = ACTIONS(5103), - [anon_sym_suspend] = ACTIONS(5101), - [anon_sym_sealed] = ACTIONS(5101), - [anon_sym_annotation] = ACTIONS(5101), - [anon_sym_data] = ACTIONS(5101), - [anon_sym_inner] = ACTIONS(5101), - [anon_sym_value] = ACTIONS(5101), - [anon_sym_override] = ACTIONS(5101), - [anon_sym_lateinit] = ACTIONS(5101), - [anon_sym_public] = ACTIONS(5101), - [anon_sym_private] = ACTIONS(5101), - [anon_sym_internal] = ACTIONS(5101), - [anon_sym_protected] = ACTIONS(5101), - [anon_sym_tailrec] = ACTIONS(5101), - [anon_sym_operator] = ACTIONS(5101), - [anon_sym_infix] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym_external] = ACTIONS(5101), - [sym_property_modifier] = ACTIONS(5101), - [anon_sym_abstract] = ACTIONS(5101), - [anon_sym_final] = ACTIONS(5101), - [anon_sym_open] = ACTIONS(5101), - [anon_sym_vararg] = ACTIONS(5101), - [anon_sym_noinline] = ACTIONS(5101), - [anon_sym_crossinline] = ACTIONS(5101), - [anon_sym_expect] = ACTIONS(5101), - [anon_sym_actual] = ACTIONS(5101), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5103), - [sym_safe_nav] = ACTIONS(5103), - [sym_multiline_comment] = ACTIONS(3), - }, - [3458] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [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_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_value] = 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), - }, - [3459] = { - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_RBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_RPAREN] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3420), - [anon_sym_set] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [anon_sym_DASH_GT] = ACTIONS(3422), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), - [anon_sym_suspend] = ACTIONS(3420), - [anon_sym_sealed] = ACTIONS(3420), - [anon_sym_annotation] = ACTIONS(3420), - [anon_sym_data] = ACTIONS(3420), - [anon_sym_inner] = ACTIONS(3420), - [anon_sym_value] = ACTIONS(3420), - [anon_sym_override] = ACTIONS(3420), - [anon_sym_lateinit] = ACTIONS(3420), - [anon_sym_public] = ACTIONS(3420), - [anon_sym_private] = ACTIONS(3420), - [anon_sym_internal] = ACTIONS(3420), - [anon_sym_protected] = ACTIONS(3420), - [anon_sym_tailrec] = ACTIONS(3420), - [anon_sym_operator] = ACTIONS(3420), - [anon_sym_infix] = ACTIONS(3420), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym_external] = ACTIONS(3420), - [sym_property_modifier] = ACTIONS(3420), - [anon_sym_abstract] = ACTIONS(3420), - [anon_sym_final] = ACTIONS(3420), - [anon_sym_open] = ACTIONS(3420), - [anon_sym_vararg] = ACTIONS(3420), - [anon_sym_noinline] = ACTIONS(3420), - [anon_sym_crossinline] = ACTIONS(3420), - [anon_sym_expect] = ACTIONS(3420), - [anon_sym_actual] = ACTIONS(3420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), - [sym_multiline_comment] = ACTIONS(3), - }, - [3460] = { + [3485] = { [sym__alpha_identifier] = ACTIONS(5117), [anon_sym_AT] = ACTIONS(5119), [anon_sym_LBRACK] = ACTIONS(5119), @@ -397456,954 +399800,545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5119), [sym_multiline_comment] = ACTIONS(3), }, - [3461] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6828), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), - }, - [3462] = { - [sym__alpha_identifier] = ACTIONS(5105), - [anon_sym_AT] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_as] = ACTIONS(5105), - [anon_sym_EQ] = ACTIONS(5105), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_RBRACE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_where] = ACTIONS(5105), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_get] = ACTIONS(5105), - [anon_sym_set] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_DASH_GT] = ACTIONS(5107), - [sym_label] = ACTIONS(5107), - [anon_sym_in] = ACTIONS(5105), - [anon_sym_while] = ACTIONS(5105), - [anon_sym_DOT_DOT] = ACTIONS(5107), - [anon_sym_QMARK_COLON] = ACTIONS(5107), - [anon_sym_AMP_AMP] = ACTIONS(5107), - [anon_sym_PIPE_PIPE] = ACTIONS(5107), - [anon_sym_else] = ACTIONS(5105), - [anon_sym_COLON_COLON] = ACTIONS(5107), - [anon_sym_PLUS_EQ] = ACTIONS(5107), - [anon_sym_DASH_EQ] = ACTIONS(5107), - [anon_sym_STAR_EQ] = ACTIONS(5107), - [anon_sym_SLASH_EQ] = ACTIONS(5107), - [anon_sym_PERCENT_EQ] = ACTIONS(5107), - [anon_sym_BANG_EQ] = ACTIONS(5105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5107), - [anon_sym_EQ_EQ] = ACTIONS(5105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5107), - [anon_sym_LT_EQ] = ACTIONS(5107), - [anon_sym_GT_EQ] = ACTIONS(5107), - [anon_sym_BANGin] = ACTIONS(5107), - [anon_sym_is] = ACTIONS(5105), - [anon_sym_BANGis] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5105), - [anon_sym_as_QMARK] = ACTIONS(5107), - [anon_sym_PLUS_PLUS] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5107), - [anon_sym_BANG_BANG] = ACTIONS(5107), - [anon_sym_suspend] = ACTIONS(5105), - [anon_sym_sealed] = ACTIONS(5105), - [anon_sym_annotation] = ACTIONS(5105), - [anon_sym_data] = ACTIONS(5105), - [anon_sym_inner] = ACTIONS(5105), - [anon_sym_value] = ACTIONS(5105), - [anon_sym_override] = ACTIONS(5105), - [anon_sym_lateinit] = ACTIONS(5105), - [anon_sym_public] = ACTIONS(5105), - [anon_sym_private] = ACTIONS(5105), - [anon_sym_internal] = ACTIONS(5105), - [anon_sym_protected] = ACTIONS(5105), - [anon_sym_tailrec] = ACTIONS(5105), - [anon_sym_operator] = ACTIONS(5105), - [anon_sym_infix] = ACTIONS(5105), - [anon_sym_inline] = ACTIONS(5105), - [anon_sym_external] = ACTIONS(5105), - [sym_property_modifier] = ACTIONS(5105), - [anon_sym_abstract] = ACTIONS(5105), - [anon_sym_final] = ACTIONS(5105), - [anon_sym_open] = ACTIONS(5105), - [anon_sym_vararg] = ACTIONS(5105), - [anon_sym_noinline] = ACTIONS(5105), - [anon_sym_crossinline] = ACTIONS(5105), - [anon_sym_expect] = ACTIONS(5105), - [anon_sym_actual] = ACTIONS(5105), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5107), - [sym_safe_nav] = ACTIONS(5107), - [sym_multiline_comment] = ACTIONS(3), - }, - [3463] = { - [sym__alpha_identifier] = ACTIONS(4716), - [anon_sym_AT] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4718), - [anon_sym_RBRACK] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4716), - [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_SEMI] = ACTIONS(4718), - [anon_sym_get] = ACTIONS(4716), - [anon_sym_set] = ACTIONS(4716), - [anon_sym_STAR] = ACTIONS(4716), - [anon_sym_DASH_GT] = ACTIONS(4718), - [sym_label] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4716), - [anon_sym_while] = ACTIONS(4716), - [anon_sym_DOT_DOT] = ACTIONS(4718), - [anon_sym_QMARK_COLON] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_else] = ACTIONS(4716), - [anon_sym_COLON_COLON] = ACTIONS(4718), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_STAR_EQ] = ACTIONS(4718), - [anon_sym_SLASH_EQ] = ACTIONS(4718), - [anon_sym_PERCENT_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_BANGin] = ACTIONS(4718), - [anon_sym_is] = ACTIONS(4716), - [anon_sym_BANGis] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_SLASH] = ACTIONS(4716), - [anon_sym_PERCENT] = ACTIONS(4716), - [anon_sym_as_QMARK] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [anon_sym_BANG_BANG] = ACTIONS(4718), - [anon_sym_suspend] = ACTIONS(4716), - [anon_sym_sealed] = ACTIONS(4716), - [anon_sym_annotation] = ACTIONS(4716), - [anon_sym_data] = ACTIONS(4716), - [anon_sym_inner] = ACTIONS(4716), - [anon_sym_value] = ACTIONS(4716), - [anon_sym_override] = ACTIONS(4716), - [anon_sym_lateinit] = ACTIONS(4716), - [anon_sym_public] = ACTIONS(4716), - [anon_sym_private] = ACTIONS(4716), - [anon_sym_internal] = ACTIONS(4716), - [anon_sym_protected] = ACTIONS(4716), - [anon_sym_tailrec] = ACTIONS(4716), - [anon_sym_operator] = ACTIONS(4716), - [anon_sym_infix] = ACTIONS(4716), - [anon_sym_inline] = ACTIONS(4716), - [anon_sym_external] = ACTIONS(4716), - [sym_property_modifier] = ACTIONS(4716), - [anon_sym_abstract] = ACTIONS(4716), - [anon_sym_final] = ACTIONS(4716), - [anon_sym_open] = ACTIONS(4716), - [anon_sym_vararg] = ACTIONS(4716), - [anon_sym_noinline] = ACTIONS(4716), - [anon_sym_crossinline] = ACTIONS(4716), - [anon_sym_expect] = ACTIONS(4716), - [anon_sym_actual] = ACTIONS(4716), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4718), - [sym_safe_nav] = ACTIONS(4718), - [sym_multiline_comment] = ACTIONS(3), - }, - [3464] = { - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_RBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4264), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [3486] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_RBRACK] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_RPAREN] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [anon_sym_DASH_GT] = ACTIONS(5079), + [sym_label] = ACTIONS(5079), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_while] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), [sym_multiline_comment] = ACTIONS(3), }, - [3465] = { - [sym__alpha_identifier] = ACTIONS(4920), - [anon_sym_AT] = ACTIONS(4922), - [anon_sym_LBRACK] = ACTIONS(4922), - [anon_sym_RBRACK] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4920), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4922), - [anon_sym_RBRACE] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_RPAREN] = ACTIONS(4922), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_where] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4922), - [anon_sym_get] = ACTIONS(4920), - [anon_sym_set] = ACTIONS(4920), - [anon_sym_STAR] = ACTIONS(4920), - [anon_sym_DASH_GT] = ACTIONS(4922), - [sym_label] = ACTIONS(4922), - [anon_sym_in] = ACTIONS(4920), - [anon_sym_while] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_QMARK_COLON] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_else] = ACTIONS(4920), - [anon_sym_COLON_COLON] = ACTIONS(4922), - [anon_sym_PLUS_EQ] = ACTIONS(4922), - [anon_sym_DASH_EQ] = ACTIONS(4922), - [anon_sym_STAR_EQ] = ACTIONS(4922), - [anon_sym_SLASH_EQ] = ACTIONS(4922), - [anon_sym_PERCENT_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_BANGin] = ACTIONS(4922), - [anon_sym_is] = ACTIONS(4920), - [anon_sym_BANGis] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_as_QMARK] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4922), - [anon_sym_BANG_BANG] = ACTIONS(4922), - [anon_sym_suspend] = ACTIONS(4920), - [anon_sym_sealed] = ACTIONS(4920), - [anon_sym_annotation] = ACTIONS(4920), - [anon_sym_data] = ACTIONS(4920), - [anon_sym_inner] = ACTIONS(4920), - [anon_sym_value] = ACTIONS(4920), - [anon_sym_override] = ACTIONS(4920), - [anon_sym_lateinit] = ACTIONS(4920), - [anon_sym_public] = ACTIONS(4920), - [anon_sym_private] = ACTIONS(4920), - [anon_sym_internal] = ACTIONS(4920), - [anon_sym_protected] = ACTIONS(4920), - [anon_sym_tailrec] = ACTIONS(4920), - [anon_sym_operator] = ACTIONS(4920), - [anon_sym_infix] = ACTIONS(4920), - [anon_sym_inline] = ACTIONS(4920), - [anon_sym_external] = ACTIONS(4920), - [sym_property_modifier] = ACTIONS(4920), - [anon_sym_abstract] = ACTIONS(4920), - [anon_sym_final] = ACTIONS(4920), - [anon_sym_open] = ACTIONS(4920), - [anon_sym_vararg] = ACTIONS(4920), - [anon_sym_noinline] = ACTIONS(4920), - [anon_sym_crossinline] = ACTIONS(4920), - [anon_sym_expect] = ACTIONS(4920), - [anon_sym_actual] = ACTIONS(4920), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4922), - [sym_safe_nav] = ACTIONS(4922), + [3487] = { + [sym_class_body] = STATE(3990), + [sym_type_constraints] = STATE(3818), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6838), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, - [3466] = { - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(1822), - [anon_sym_set] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_DASH_GT] = ACTIONS(1824), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), - [anon_sym_suspend] = ACTIONS(1822), - [anon_sym_sealed] = ACTIONS(1822), - [anon_sym_annotation] = ACTIONS(1822), - [anon_sym_data] = ACTIONS(1822), - [anon_sym_inner] = ACTIONS(1822), - [anon_sym_value] = ACTIONS(1822), - [anon_sym_override] = ACTIONS(1822), - [anon_sym_lateinit] = ACTIONS(1822), - [anon_sym_public] = ACTIONS(1822), - [anon_sym_private] = ACTIONS(1822), - [anon_sym_internal] = ACTIONS(1822), - [anon_sym_protected] = ACTIONS(1822), - [anon_sym_tailrec] = ACTIONS(1822), - [anon_sym_operator] = ACTIONS(1822), - [anon_sym_infix] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_external] = ACTIONS(1822), - [sym_property_modifier] = ACTIONS(1822), - [anon_sym_abstract] = ACTIONS(1822), - [anon_sym_final] = ACTIONS(1822), - [anon_sym_open] = ACTIONS(1822), - [anon_sym_vararg] = ACTIONS(1822), - [anon_sym_noinline] = ACTIONS(1822), - [anon_sym_crossinline] = ACTIONS(1822), - [anon_sym_expect] = ACTIONS(1822), - [anon_sym_actual] = ACTIONS(1822), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [3488] = { + [sym_type_constraints] = STATE(3743), + [sym_enum_class_body] = STATE(3876), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(5864), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [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), }, - [3467] = { - [sym__alpha_identifier] = ACTIONS(4900), - [anon_sym_AT] = ACTIONS(4902), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_RBRACK] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4900), - [anon_sym_as] = ACTIONS(4900), - [anon_sym_EQ] = ACTIONS(4900), - [anon_sym_LBRACE] = ACTIONS(4902), - [anon_sym_RBRACE] = ACTIONS(4902), - [anon_sym_LPAREN] = ACTIONS(4902), - [anon_sym_COMMA] = ACTIONS(4902), - [anon_sym_RPAREN] = ACTIONS(4902), - [anon_sym_LT] = ACTIONS(4900), - [anon_sym_GT] = ACTIONS(4900), - [anon_sym_where] = ACTIONS(4900), - [anon_sym_SEMI] = ACTIONS(4902), - [anon_sym_get] = ACTIONS(4900), - [anon_sym_set] = ACTIONS(4900), - [anon_sym_STAR] = ACTIONS(4900), - [anon_sym_DASH_GT] = ACTIONS(4902), - [sym_label] = ACTIONS(4902), - [anon_sym_in] = ACTIONS(4900), - [anon_sym_while] = ACTIONS(4900), - [anon_sym_DOT_DOT] = ACTIONS(4902), - [anon_sym_QMARK_COLON] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_else] = ACTIONS(4900), - [anon_sym_COLON_COLON] = ACTIONS(4902), - [anon_sym_PLUS_EQ] = ACTIONS(4902), - [anon_sym_DASH_EQ] = ACTIONS(4902), - [anon_sym_STAR_EQ] = ACTIONS(4902), - [anon_sym_SLASH_EQ] = ACTIONS(4902), - [anon_sym_PERCENT_EQ] = ACTIONS(4902), - [anon_sym_BANG_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4902), - [anon_sym_EQ_EQ] = ACTIONS(4900), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4902), - [anon_sym_LT_EQ] = ACTIONS(4902), - [anon_sym_GT_EQ] = ACTIONS(4902), - [anon_sym_BANGin] = ACTIONS(4902), - [anon_sym_is] = ACTIONS(4900), - [anon_sym_BANGis] = ACTIONS(4902), - [anon_sym_PLUS] = ACTIONS(4900), - [anon_sym_DASH] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_PERCENT] = ACTIONS(4900), - [anon_sym_as_QMARK] = ACTIONS(4902), - [anon_sym_PLUS_PLUS] = ACTIONS(4902), - [anon_sym_DASH_DASH] = ACTIONS(4902), - [anon_sym_BANG_BANG] = ACTIONS(4902), - [anon_sym_suspend] = ACTIONS(4900), - [anon_sym_sealed] = ACTIONS(4900), - [anon_sym_annotation] = ACTIONS(4900), - [anon_sym_data] = ACTIONS(4900), - [anon_sym_inner] = ACTIONS(4900), - [anon_sym_value] = ACTIONS(4900), - [anon_sym_override] = ACTIONS(4900), - [anon_sym_lateinit] = ACTIONS(4900), - [anon_sym_public] = ACTIONS(4900), - [anon_sym_private] = ACTIONS(4900), - [anon_sym_internal] = ACTIONS(4900), - [anon_sym_protected] = ACTIONS(4900), - [anon_sym_tailrec] = ACTIONS(4900), - [anon_sym_operator] = ACTIONS(4900), - [anon_sym_infix] = ACTIONS(4900), - [anon_sym_inline] = ACTIONS(4900), - [anon_sym_external] = ACTIONS(4900), - [sym_property_modifier] = ACTIONS(4900), - [anon_sym_abstract] = ACTIONS(4900), - [anon_sym_final] = ACTIONS(4900), - [anon_sym_open] = ACTIONS(4900), - [anon_sym_vararg] = ACTIONS(4900), - [anon_sym_noinline] = ACTIONS(4900), - [anon_sym_crossinline] = ACTIONS(4900), - [anon_sym_expect] = ACTIONS(4900), - [anon_sym_actual] = ACTIONS(4900), + [3489] = { + [sym__alpha_identifier] = ACTIONS(4924), + [anon_sym_AT] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_RBRACK] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_RPAREN] = ACTIONS(4926), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_where] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_get] = ACTIONS(4924), + [anon_sym_set] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_DASH_GT] = ACTIONS(4926), + [sym_label] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4924), + [anon_sym_while] = ACTIONS(4924), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_QMARK_COLON] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4926), + [anon_sym_PIPE_PIPE] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4924), + [anon_sym_COLON_COLON] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4926), + [anon_sym_DASH_EQ] = ACTIONS(4926), + [anon_sym_STAR_EQ] = ACTIONS(4926), + [anon_sym_SLASH_EQ] = ACTIONS(4926), + [anon_sym_PERCENT_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4926), + [anon_sym_BANGin] = ACTIONS(4926), + [anon_sym_is] = ACTIONS(4924), + [anon_sym_BANGis] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_as_QMARK] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4926), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_BANG_BANG] = ACTIONS(4926), + [anon_sym_suspend] = ACTIONS(4924), + [anon_sym_sealed] = ACTIONS(4924), + [anon_sym_annotation] = ACTIONS(4924), + [anon_sym_data] = ACTIONS(4924), + [anon_sym_inner] = ACTIONS(4924), + [anon_sym_value] = ACTIONS(4924), + [anon_sym_override] = ACTIONS(4924), + [anon_sym_lateinit] = ACTIONS(4924), + [anon_sym_public] = ACTIONS(4924), + [anon_sym_private] = ACTIONS(4924), + [anon_sym_internal] = ACTIONS(4924), + [anon_sym_protected] = ACTIONS(4924), + [anon_sym_tailrec] = ACTIONS(4924), + [anon_sym_operator] = ACTIONS(4924), + [anon_sym_infix] = ACTIONS(4924), + [anon_sym_inline] = ACTIONS(4924), + [anon_sym_external] = ACTIONS(4924), + [sym_property_modifier] = ACTIONS(4924), + [anon_sym_abstract] = ACTIONS(4924), + [anon_sym_final] = ACTIONS(4924), + [anon_sym_open] = ACTIONS(4924), + [anon_sym_vararg] = ACTIONS(4924), + [anon_sym_noinline] = ACTIONS(4924), + [anon_sym_crossinline] = ACTIONS(4924), + [anon_sym_expect] = ACTIONS(4924), + [anon_sym_actual] = ACTIONS(4924), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4902), - [sym_safe_nav] = ACTIONS(4902), - [sym_multiline_comment] = ACTIONS(3), - }, - [3468] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4766), - [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_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_value] = ACTIONS(4766), - [anon_sym_override] = ACTIONS(4766), - [anon_sym_lateinit] = ACTIONS(4766), - [anon_sym_public] = ACTIONS(4766), - [anon_sym_private] = ACTIONS(4766), - [anon_sym_internal] = ACTIONS(4766), - [anon_sym_protected] = ACTIONS(4766), - [anon_sym_tailrec] = ACTIONS(4766), - [anon_sym_operator] = ACTIONS(4766), - [anon_sym_infix] = ACTIONS(4766), - [anon_sym_inline] = ACTIONS(4766), - [anon_sym_external] = ACTIONS(4766), - [sym_property_modifier] = ACTIONS(4766), - [anon_sym_abstract] = ACTIONS(4766), - [anon_sym_final] = ACTIONS(4766), - [anon_sym_open] = ACTIONS(4766), - [anon_sym_vararg] = ACTIONS(4766), - [anon_sym_noinline] = ACTIONS(4766), - [anon_sym_crossinline] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4768), - [sym_safe_nav] = ACTIONS(4768), - [sym_multiline_comment] = ACTIONS(3), - }, - [3469] = { - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_RBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [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_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_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_value] = 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__backtick_identifier] = ACTIONS(4926), + [sym_safe_nav] = ACTIONS(4926), [sym_multiline_comment] = ACTIONS(3), }, - [3470] = { - [sym__alpha_identifier] = ACTIONS(4826), - [anon_sym_AT] = ACTIONS(4828), - [anon_sym_LBRACK] = ACTIONS(4828), - [anon_sym_RBRACK] = ACTIONS(4828), - [anon_sym_DOT] = ACTIONS(4826), - [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_SEMI] = ACTIONS(4828), - [anon_sym_get] = ACTIONS(4826), - [anon_sym_set] = ACTIONS(4826), - [anon_sym_STAR] = ACTIONS(4826), - [anon_sym_DASH_GT] = ACTIONS(4828), - [sym_label] = ACTIONS(4828), - [anon_sym_in] = ACTIONS(4826), - [anon_sym_while] = ACTIONS(4826), - [anon_sym_DOT_DOT] = ACTIONS(4828), - [anon_sym_QMARK_COLON] = ACTIONS(4828), - [anon_sym_AMP_AMP] = ACTIONS(4828), - [anon_sym_PIPE_PIPE] = ACTIONS(4828), - [anon_sym_else] = ACTIONS(4826), - [anon_sym_COLON_COLON] = ACTIONS(4828), - [anon_sym_PLUS_EQ] = ACTIONS(4828), - [anon_sym_DASH_EQ] = ACTIONS(4828), - [anon_sym_STAR_EQ] = ACTIONS(4828), - [anon_sym_SLASH_EQ] = ACTIONS(4828), - [anon_sym_PERCENT_EQ] = ACTIONS(4828), - [anon_sym_BANG_EQ] = ACTIONS(4826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), - [anon_sym_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4828), - [anon_sym_is] = ACTIONS(4826), - [anon_sym_BANGis] = ACTIONS(4828), - [anon_sym_PLUS] = ACTIONS(4826), - [anon_sym_DASH] = ACTIONS(4826), - [anon_sym_SLASH] = ACTIONS(4826), - [anon_sym_PERCENT] = ACTIONS(4826), - [anon_sym_as_QMARK] = ACTIONS(4828), - [anon_sym_PLUS_PLUS] = ACTIONS(4828), - [anon_sym_DASH_DASH] = ACTIONS(4828), - [anon_sym_BANG_BANG] = ACTIONS(4828), - [anon_sym_suspend] = ACTIONS(4826), - [anon_sym_sealed] = ACTIONS(4826), - [anon_sym_annotation] = ACTIONS(4826), - [anon_sym_data] = ACTIONS(4826), - [anon_sym_inner] = ACTIONS(4826), - [anon_sym_value] = ACTIONS(4826), - [anon_sym_override] = ACTIONS(4826), - [anon_sym_lateinit] = ACTIONS(4826), - [anon_sym_public] = ACTIONS(4826), - [anon_sym_private] = ACTIONS(4826), - [anon_sym_internal] = ACTIONS(4826), - [anon_sym_protected] = ACTIONS(4826), - [anon_sym_tailrec] = ACTIONS(4826), - [anon_sym_operator] = ACTIONS(4826), - [anon_sym_infix] = ACTIONS(4826), - [anon_sym_inline] = ACTIONS(4826), - [anon_sym_external] = ACTIONS(4826), - [sym_property_modifier] = ACTIONS(4826), - [anon_sym_abstract] = ACTIONS(4826), - [anon_sym_final] = ACTIONS(4826), - [anon_sym_open] = ACTIONS(4826), - [anon_sym_vararg] = ACTIONS(4826), - [anon_sym_noinline] = ACTIONS(4826), - [anon_sym_crossinline] = ACTIONS(4826), - [anon_sym_expect] = ACTIONS(4826), - [anon_sym_actual] = ACTIONS(4826), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4828), - [sym_safe_nav] = ACTIONS(4828), + [3490] = { + [sym_type_constraints] = STATE(3729), + [sym_enum_class_body] = STATE(3841), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(6840), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), [sym_multiline_comment] = ACTIONS(3), }, - [3471] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_RBRACK] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5075), - [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_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [anon_sym_DASH_GT] = ACTIONS(5077), - [sym_label] = ACTIONS(5077), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_while] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_suspend] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_value] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_lateinit] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_tailrec] = ACTIONS(5075), - [anon_sym_operator] = ACTIONS(5075), - [anon_sym_infix] = ACTIONS(5075), - [anon_sym_inline] = ACTIONS(5075), - [anon_sym_external] = ACTIONS(5075), - [sym_property_modifier] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_final] = ACTIONS(5075), - [anon_sym_open] = ACTIONS(5075), - [anon_sym_vararg] = ACTIONS(5075), - [anon_sym_noinline] = ACTIONS(5075), - [anon_sym_crossinline] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), + [3491] = { + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4232), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_while] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, - [3472] = { + [3492] = { + [sym_type_constraints] = STATE(3705), + [sym_function_body] = STATE(3108), + [sym__block] = STATE(3227), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(4260), - [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4260), + [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), [anon_sym_get] = ACTIONS(4260), [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_DASH_GT] = ACTIONS(4262), - [sym_label] = ACTIONS(4262), + [anon_sym_this] = ACTIONS(4260), + [anon_sym_super] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4260), [anon_sym_in] = ACTIONS(4260), - [anon_sym_while] = ACTIONS(4260), [anon_sym_DOT_DOT] = ACTIONS(4262), [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), + [anon_sym_when] = ACTIONS(4260), + [anon_sym_try] = ACTIONS(4260), + [anon_sym_throw] = ACTIONS(4260), + [anon_sym_return] = ACTIONS(4260), + [anon_sym_continue] = ACTIONS(4260), + [anon_sym_break] = ACTIONS(4260), [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_PLUS_EQ] = ACTIONS(4262), - [anon_sym_DASH_EQ] = ACTIONS(4262), - [anon_sym_STAR_EQ] = ACTIONS(4262), - [anon_sym_SLASH_EQ] = ACTIONS(4262), - [anon_sym_PERCENT_EQ] = ACTIONS(4262), [anon_sym_BANG_EQ] = ACTIONS(4260), [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), [anon_sym_EQ_EQ] = ACTIONS(4260), @@ -398416,790 +400351,784 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4260), [anon_sym_DASH] = ACTIONS(4260), [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4262), [anon_sym_as_QMARK] = ACTIONS(4262), [anon_sym_PLUS_PLUS] = ACTIONS(4262), [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4260), [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), [anon_sym_data] = ACTIONS(4260), [anon_sym_inner] = ACTIONS(4260), [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), [anon_sym_expect] = ACTIONS(4260), [anon_sym_actual] = ACTIONS(4260), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4260), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4260), + [anon_sym_false] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4262), [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [3473] = { - [sym__alpha_identifier] = ACTIONS(5059), - [anon_sym_AT] = ACTIONS(5061), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_RBRACK] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5059), - [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_SEMI] = ACTIONS(5061), - [anon_sym_get] = ACTIONS(5059), - [anon_sym_set] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [anon_sym_DASH_GT] = ACTIONS(5061), - [sym_label] = ACTIONS(5061), - [anon_sym_in] = ACTIONS(5059), - [anon_sym_while] = ACTIONS(5059), - [anon_sym_DOT_DOT] = ACTIONS(5061), - [anon_sym_QMARK_COLON] = ACTIONS(5061), - [anon_sym_AMP_AMP] = ACTIONS(5061), - [anon_sym_PIPE_PIPE] = ACTIONS(5061), - [anon_sym_else] = ACTIONS(5059), - [anon_sym_COLON_COLON] = ACTIONS(5061), - [anon_sym_PLUS_EQ] = ACTIONS(5061), - [anon_sym_DASH_EQ] = ACTIONS(5061), - [anon_sym_STAR_EQ] = ACTIONS(5061), - [anon_sym_SLASH_EQ] = ACTIONS(5061), - [anon_sym_PERCENT_EQ] = ACTIONS(5061), - [anon_sym_BANG_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), - [anon_sym_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), - [anon_sym_LT_EQ] = ACTIONS(5061), - [anon_sym_GT_EQ] = ACTIONS(5061), - [anon_sym_BANGin] = ACTIONS(5061), - [anon_sym_is] = ACTIONS(5059), - [anon_sym_BANGis] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_as_QMARK] = ACTIONS(5061), - [anon_sym_PLUS_PLUS] = ACTIONS(5061), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_BANG_BANG] = ACTIONS(5061), - [anon_sym_suspend] = ACTIONS(5059), - [anon_sym_sealed] = ACTIONS(5059), - [anon_sym_annotation] = ACTIONS(5059), - [anon_sym_data] = ACTIONS(5059), - [anon_sym_inner] = ACTIONS(5059), - [anon_sym_value] = ACTIONS(5059), - [anon_sym_override] = ACTIONS(5059), - [anon_sym_lateinit] = ACTIONS(5059), - [anon_sym_public] = ACTIONS(5059), - [anon_sym_private] = ACTIONS(5059), - [anon_sym_internal] = ACTIONS(5059), - [anon_sym_protected] = ACTIONS(5059), - [anon_sym_tailrec] = ACTIONS(5059), - [anon_sym_operator] = ACTIONS(5059), - [anon_sym_infix] = ACTIONS(5059), - [anon_sym_inline] = ACTIONS(5059), - [anon_sym_external] = ACTIONS(5059), - [sym_property_modifier] = ACTIONS(5059), - [anon_sym_abstract] = ACTIONS(5059), - [anon_sym_final] = ACTIONS(5059), - [anon_sym_open] = ACTIONS(5059), - [anon_sym_vararg] = ACTIONS(5059), - [anon_sym_noinline] = ACTIONS(5059), - [anon_sym_crossinline] = ACTIONS(5059), - [anon_sym_expect] = ACTIONS(5059), - [anon_sym_actual] = ACTIONS(5059), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5061), - [sym_safe_nav] = ACTIONS(5061), - [sym_multiline_comment] = ACTIONS(3), + [3493] = { + [sym_function_body] = STATE(3067), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(6842), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_where] = ACTIONS(4250), + [anon_sym_object] = ACTIONS(4250), + [anon_sym_fun] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_this] = ACTIONS(4250), + [anon_sym_super] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_null] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_when] = ACTIONS(4250), + [anon_sym_try] = ACTIONS(4250), + [anon_sym_throw] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4252), + [anon_sym_continue_AT] = ACTIONS(4252), + [anon_sym_break_AT] = ACTIONS(4252), + [anon_sym_this_AT] = ACTIONS(4252), + [anon_sym_super_AT] = ACTIONS(4252), + [sym_real_literal] = ACTIONS(4252), + [sym_integer_literal] = ACTIONS(4250), + [sym_hex_literal] = ACTIONS(4252), + [sym_bin_literal] = ACTIONS(4252), + [anon_sym_true] = ACTIONS(4250), + [anon_sym_false] = ACTIONS(4250), + [anon_sym_SQUOTE] = ACTIONS(4252), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4252), }, - [3474] = { - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_RPAREN] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(1734), - [anon_sym_set] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_DASH_GT] = ACTIONS(1736), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_while] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), - [anon_sym_suspend] = ACTIONS(1734), - [anon_sym_sealed] = ACTIONS(1734), - [anon_sym_annotation] = ACTIONS(1734), - [anon_sym_data] = ACTIONS(1734), - [anon_sym_inner] = ACTIONS(1734), - [anon_sym_value] = ACTIONS(1734), - [anon_sym_override] = ACTIONS(1734), - [anon_sym_lateinit] = ACTIONS(1734), - [anon_sym_public] = ACTIONS(1734), - [anon_sym_private] = ACTIONS(1734), - [anon_sym_internal] = ACTIONS(1734), - [anon_sym_protected] = ACTIONS(1734), - [anon_sym_tailrec] = ACTIONS(1734), - [anon_sym_operator] = ACTIONS(1734), - [anon_sym_infix] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [anon_sym_external] = ACTIONS(1734), - [sym_property_modifier] = ACTIONS(1734), - [anon_sym_abstract] = ACTIONS(1734), - [anon_sym_final] = ACTIONS(1734), - [anon_sym_open] = ACTIONS(1734), - [anon_sym_vararg] = ACTIONS(1734), - [anon_sym_noinline] = ACTIONS(1734), - [anon_sym_crossinline] = ACTIONS(1734), - [anon_sym_expect] = ACTIONS(1734), - [anon_sym_actual] = ACTIONS(1734), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [3494] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_RBRACK] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4718), + [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_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_DASH_GT] = ACTIONS(4720), + [sym_label] = ACTIONS(4720), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_while] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_QMARK_COLON] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_PERCENT_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_BANGin] = ACTIONS(4720), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_as_QMARK] = ACTIONS(4720), + [anon_sym_PLUS_PLUS] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_BANG_BANG] = ACTIONS(4720), + [anon_sym_suspend] = ACTIONS(4718), + [anon_sym_sealed] = ACTIONS(4718), + [anon_sym_annotation] = ACTIONS(4718), + [anon_sym_data] = ACTIONS(4718), + [anon_sym_inner] = ACTIONS(4718), + [anon_sym_value] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_lateinit] = ACTIONS(4718), + [anon_sym_public] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4718), + [anon_sym_internal] = ACTIONS(4718), + [anon_sym_protected] = ACTIONS(4718), + [anon_sym_tailrec] = ACTIONS(4718), + [anon_sym_operator] = ACTIONS(4718), + [anon_sym_infix] = ACTIONS(4718), + [anon_sym_inline] = ACTIONS(4718), + [anon_sym_external] = ACTIONS(4718), + [sym_property_modifier] = ACTIONS(4718), + [anon_sym_abstract] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_open] = ACTIONS(4718), + [anon_sym_vararg] = ACTIONS(4718), + [anon_sym_noinline] = ACTIONS(4718), + [anon_sym_crossinline] = ACTIONS(4718), + [anon_sym_expect] = ACTIONS(4718), + [anon_sym_actual] = ACTIONS(4718), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4720), + [sym_safe_nav] = ACTIONS(4720), [sym_multiline_comment] = ACTIONS(3), }, - [3475] = { - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_RBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_RPAREN] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [anon_sym_DASH_GT] = ACTIONS(4756), - [sym_label] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_while] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), + [3495] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(4654), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_by] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_object] = ACTIONS(4652), + [anon_sym_fun] = 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_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_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_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4652), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4654), + [anon_sym_continue_AT] = ACTIONS(4654), + [anon_sym_break_AT] = ACTIONS(4654), + [anon_sym_this_AT] = ACTIONS(4654), + [anon_sym_super_AT] = ACTIONS(4654), + [sym_real_literal] = ACTIONS(4654), + [sym_integer_literal] = ACTIONS(4652), + [sym_hex_literal] = ACTIONS(4654), + [sym_bin_literal] = ACTIONS(4654), + [anon_sym_true] = ACTIONS(4652), + [anon_sym_false] = ACTIONS(4652), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4654), }, - [3476] = { - [sym__alpha_identifier] = ACTIONS(4882), - [anon_sym_AT] = ACTIONS(4884), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_RBRACK] = ACTIONS(4884), - [anon_sym_DOT] = ACTIONS(4882), - [anon_sym_as] = ACTIONS(4882), - [anon_sym_EQ] = ACTIONS(4882), - [anon_sym_LBRACE] = ACTIONS(4884), - [anon_sym_RBRACE] = ACTIONS(4884), - [anon_sym_LPAREN] = ACTIONS(4884), - [anon_sym_COMMA] = ACTIONS(4884), - [anon_sym_RPAREN] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4882), - [anon_sym_GT] = ACTIONS(4882), - [anon_sym_where] = ACTIONS(4882), - [anon_sym_SEMI] = ACTIONS(4884), - [anon_sym_get] = ACTIONS(4882), - [anon_sym_set] = ACTIONS(4882), - [anon_sym_STAR] = ACTIONS(4882), - [anon_sym_DASH_GT] = ACTIONS(4884), - [sym_label] = ACTIONS(4884), - [anon_sym_in] = ACTIONS(4882), - [anon_sym_while] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4884), - [anon_sym_QMARK_COLON] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [anon_sym_else] = ACTIONS(4882), - [anon_sym_COLON_COLON] = ACTIONS(4884), - [anon_sym_PLUS_EQ] = ACTIONS(4884), - [anon_sym_DASH_EQ] = ACTIONS(4884), - [anon_sym_STAR_EQ] = ACTIONS(4884), - [anon_sym_SLASH_EQ] = ACTIONS(4884), - [anon_sym_PERCENT_EQ] = ACTIONS(4884), - [anon_sym_BANG_EQ] = ACTIONS(4882), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4884), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4884), - [anon_sym_BANGin] = ACTIONS(4884), - [anon_sym_is] = ACTIONS(4882), - [anon_sym_BANGis] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4882), - [anon_sym_DASH] = ACTIONS(4882), - [anon_sym_SLASH] = ACTIONS(4882), - [anon_sym_PERCENT] = ACTIONS(4882), - [anon_sym_as_QMARK] = ACTIONS(4884), - [anon_sym_PLUS_PLUS] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4884), - [anon_sym_BANG_BANG] = ACTIONS(4884), - [anon_sym_suspend] = ACTIONS(4882), - [anon_sym_sealed] = ACTIONS(4882), - [anon_sym_annotation] = ACTIONS(4882), - [anon_sym_data] = ACTIONS(4882), - [anon_sym_inner] = ACTIONS(4882), - [anon_sym_value] = ACTIONS(4882), - [anon_sym_override] = ACTIONS(4882), - [anon_sym_lateinit] = ACTIONS(4882), - [anon_sym_public] = ACTIONS(4882), - [anon_sym_private] = ACTIONS(4882), - [anon_sym_internal] = ACTIONS(4882), - [anon_sym_protected] = ACTIONS(4882), - [anon_sym_tailrec] = ACTIONS(4882), - [anon_sym_operator] = ACTIONS(4882), - [anon_sym_infix] = ACTIONS(4882), - [anon_sym_inline] = ACTIONS(4882), - [anon_sym_external] = ACTIONS(4882), - [sym_property_modifier] = ACTIONS(4882), - [anon_sym_abstract] = ACTIONS(4882), - [anon_sym_final] = ACTIONS(4882), - [anon_sym_open] = ACTIONS(4882), - [anon_sym_vararg] = ACTIONS(4882), - [anon_sym_noinline] = ACTIONS(4882), - [anon_sym_crossinline] = ACTIONS(4882), - [anon_sym_expect] = ACTIONS(4882), - [anon_sym_actual] = ACTIONS(4882), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4884), - [sym_safe_nav] = ACTIONS(4884), - [sym_multiline_comment] = ACTIONS(3), + [3496] = { + [sym__alpha_identifier] = ACTIONS(4656), + [anon_sym_AT] = ACTIONS(4659), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_EQ] = ACTIONS(4659), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_by] = ACTIONS(4656), + [anon_sym_where] = ACTIONS(4656), + [anon_sym_object] = ACTIONS(4656), + [anon_sym_fun] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4659), + [anon_sym_get] = ACTIONS(4656), + [anon_sym_set] = ACTIONS(4656), + [anon_sym_this] = ACTIONS(4656), + [anon_sym_super] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4659), + [sym_label] = ACTIONS(4656), + [anon_sym_in] = ACTIONS(4656), + [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(4659), + [anon_sym_BANGin] = ACTIONS(4659), + [anon_sym_is] = ACTIONS(4656), + [anon_sym_BANGis] = ACTIONS(4659), + [anon_sym_PLUS] = ACTIONS(4656), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_PLUS_PLUS] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4659), + [anon_sym_BANG] = ACTIONS(4656), + [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_value] = 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(4659), + [anon_sym_continue_AT] = ACTIONS(4659), + [anon_sym_break_AT] = ACTIONS(4659), + [anon_sym_this_AT] = ACTIONS(4659), + [anon_sym_super_AT] = ACTIONS(4659), + [sym_real_literal] = ACTIONS(4659), + [sym_integer_literal] = ACTIONS(4656), + [sym_hex_literal] = ACTIONS(4659), + [sym_bin_literal] = ACTIONS(4659), + [anon_sym_true] = ACTIONS(4656), + [anon_sym_false] = ACTIONS(4656), + [anon_sym_SQUOTE] = ACTIONS(4659), + [sym__backtick_identifier] = ACTIONS(4659), + [sym__automatic_semicolon] = ACTIONS(4659), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4659), }, - [3477] = { - [sym__alpha_identifier] = ACTIONS(4940), - [anon_sym_AT] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_RBRACK] = ACTIONS(4942), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_as] = ACTIONS(4940), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_where] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_get] = ACTIONS(4940), - [anon_sym_set] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4940), - [anon_sym_DASH_GT] = ACTIONS(4942), - [sym_label] = ACTIONS(4942), - [anon_sym_in] = ACTIONS(4940), - [anon_sym_while] = ACTIONS(4940), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_QMARK_COLON] = ACTIONS(4942), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_else] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(4942), - [anon_sym_PLUS_EQ] = ACTIONS(4942), - [anon_sym_DASH_EQ] = ACTIONS(4942), - [anon_sym_STAR_EQ] = ACTIONS(4942), - [anon_sym_SLASH_EQ] = ACTIONS(4942), - [anon_sym_PERCENT_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4940), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_BANGin] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4940), - [anon_sym_BANGis] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_as_QMARK] = ACTIONS(4942), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_BANG_BANG] = ACTIONS(4942), - [anon_sym_suspend] = ACTIONS(4940), - [anon_sym_sealed] = ACTIONS(4940), - [anon_sym_annotation] = ACTIONS(4940), - [anon_sym_data] = ACTIONS(4940), - [anon_sym_inner] = ACTIONS(4940), - [anon_sym_value] = ACTIONS(4940), - [anon_sym_override] = ACTIONS(4940), - [anon_sym_lateinit] = ACTIONS(4940), - [anon_sym_public] = ACTIONS(4940), - [anon_sym_private] = ACTIONS(4940), - [anon_sym_internal] = ACTIONS(4940), - [anon_sym_protected] = ACTIONS(4940), - [anon_sym_tailrec] = ACTIONS(4940), - [anon_sym_operator] = ACTIONS(4940), - [anon_sym_infix] = ACTIONS(4940), - [anon_sym_inline] = ACTIONS(4940), - [anon_sym_external] = ACTIONS(4940), - [sym_property_modifier] = ACTIONS(4940), - [anon_sym_abstract] = ACTIONS(4940), - [anon_sym_final] = ACTIONS(4940), - [anon_sym_open] = ACTIONS(4940), - [anon_sym_vararg] = ACTIONS(4940), - [anon_sym_noinline] = ACTIONS(4940), - [anon_sym_crossinline] = ACTIONS(4940), - [anon_sym_expect] = ACTIONS(4940), - [anon_sym_actual] = ACTIONS(4940), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4942), - [sym_safe_nav] = ACTIONS(4942), + [3497] = { + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_RBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [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_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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, - [3478] = { - [sym__alpha_identifier] = ACTIONS(5015), - [anon_sym_AT] = ACTIONS(5017), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_RBRACK] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_COMMA] = ACTIONS(5017), - [anon_sym_RPAREN] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_where] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_get] = ACTIONS(5015), - [anon_sym_set] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_DASH_GT] = ACTIONS(5017), - [sym_label] = ACTIONS(5017), - [anon_sym_in] = ACTIONS(5015), - [anon_sym_while] = ACTIONS(5015), - [anon_sym_DOT_DOT] = ACTIONS(5017), - [anon_sym_QMARK_COLON] = ACTIONS(5017), - [anon_sym_AMP_AMP] = ACTIONS(5017), - [anon_sym_PIPE_PIPE] = ACTIONS(5017), - [anon_sym_else] = ACTIONS(5015), - [anon_sym_COLON_COLON] = ACTIONS(5017), - [anon_sym_PLUS_EQ] = ACTIONS(5017), - [anon_sym_DASH_EQ] = ACTIONS(5017), - [anon_sym_STAR_EQ] = ACTIONS(5017), - [anon_sym_SLASH_EQ] = ACTIONS(5017), - [anon_sym_PERCENT_EQ] = ACTIONS(5017), - [anon_sym_BANG_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5017), - [anon_sym_EQ_EQ] = ACTIONS(5015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5017), - [anon_sym_LT_EQ] = ACTIONS(5017), - [anon_sym_GT_EQ] = ACTIONS(5017), - [anon_sym_BANGin] = ACTIONS(5017), - [anon_sym_is] = ACTIONS(5015), - [anon_sym_BANGis] = ACTIONS(5017), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_as_QMARK] = ACTIONS(5017), - [anon_sym_PLUS_PLUS] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_BANG_BANG] = ACTIONS(5017), - [anon_sym_suspend] = ACTIONS(5015), - [anon_sym_sealed] = ACTIONS(5015), - [anon_sym_annotation] = ACTIONS(5015), - [anon_sym_data] = ACTIONS(5015), - [anon_sym_inner] = ACTIONS(5015), - [anon_sym_value] = ACTIONS(5015), - [anon_sym_override] = ACTIONS(5015), - [anon_sym_lateinit] = ACTIONS(5015), - [anon_sym_public] = ACTIONS(5015), - [anon_sym_private] = ACTIONS(5015), - [anon_sym_internal] = ACTIONS(5015), - [anon_sym_protected] = ACTIONS(5015), - [anon_sym_tailrec] = ACTIONS(5015), - [anon_sym_operator] = ACTIONS(5015), - [anon_sym_infix] = ACTIONS(5015), - [anon_sym_inline] = ACTIONS(5015), - [anon_sym_external] = ACTIONS(5015), - [sym_property_modifier] = ACTIONS(5015), - [anon_sym_abstract] = ACTIONS(5015), - [anon_sym_final] = ACTIONS(5015), - [anon_sym_open] = ACTIONS(5015), - [anon_sym_vararg] = ACTIONS(5015), - [anon_sym_noinline] = ACTIONS(5015), - [anon_sym_crossinline] = ACTIONS(5015), - [anon_sym_expect] = ACTIONS(5015), - [anon_sym_actual] = ACTIONS(5015), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5017), - [sym_safe_nav] = ACTIONS(5017), - [sym_multiline_comment] = ACTIONS(3), + [3498] = { + [sym_type_constraints] = STATE(3701), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, - [3479] = { - [sym__alpha_identifier] = ACTIONS(5051), - [anon_sym_AT] = ACTIONS(5053), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_RBRACK] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5051), - [anon_sym_as] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5053), - [anon_sym_RBRACE] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5053), - [anon_sym_COMMA] = ACTIONS(5053), - [anon_sym_RPAREN] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5051), - [anon_sym_GT] = ACTIONS(5051), - [anon_sym_where] = ACTIONS(5051), - [anon_sym_SEMI] = ACTIONS(5053), - [anon_sym_get] = ACTIONS(5051), - [anon_sym_set] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [anon_sym_DASH_GT] = ACTIONS(5053), - [sym_label] = ACTIONS(5053), - [anon_sym_in] = ACTIONS(5051), - [anon_sym_while] = ACTIONS(5051), - [anon_sym_DOT_DOT] = ACTIONS(5053), - [anon_sym_QMARK_COLON] = ACTIONS(5053), - [anon_sym_AMP_AMP] = ACTIONS(5053), - [anon_sym_PIPE_PIPE] = ACTIONS(5053), - [anon_sym_else] = ACTIONS(5051), - [anon_sym_COLON_COLON] = ACTIONS(5053), - [anon_sym_PLUS_EQ] = ACTIONS(5053), - [anon_sym_DASH_EQ] = ACTIONS(5053), - [anon_sym_STAR_EQ] = ACTIONS(5053), - [anon_sym_SLASH_EQ] = ACTIONS(5053), - [anon_sym_PERCENT_EQ] = ACTIONS(5053), - [anon_sym_BANG_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), - [anon_sym_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), - [anon_sym_LT_EQ] = ACTIONS(5053), - [anon_sym_GT_EQ] = ACTIONS(5053), - [anon_sym_BANGin] = ACTIONS(5053), - [anon_sym_is] = ACTIONS(5051), - [anon_sym_BANGis] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_as_QMARK] = ACTIONS(5053), - [anon_sym_PLUS_PLUS] = ACTIONS(5053), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_BANG_BANG] = ACTIONS(5053), - [anon_sym_suspend] = ACTIONS(5051), - [anon_sym_sealed] = ACTIONS(5051), - [anon_sym_annotation] = ACTIONS(5051), - [anon_sym_data] = ACTIONS(5051), - [anon_sym_inner] = ACTIONS(5051), - [anon_sym_value] = ACTIONS(5051), - [anon_sym_override] = ACTIONS(5051), - [anon_sym_lateinit] = ACTIONS(5051), - [anon_sym_public] = ACTIONS(5051), - [anon_sym_private] = ACTIONS(5051), - [anon_sym_internal] = ACTIONS(5051), - [anon_sym_protected] = ACTIONS(5051), - [anon_sym_tailrec] = ACTIONS(5051), - [anon_sym_operator] = ACTIONS(5051), - [anon_sym_infix] = ACTIONS(5051), - [anon_sym_inline] = ACTIONS(5051), - [anon_sym_external] = ACTIONS(5051), - [sym_property_modifier] = ACTIONS(5051), - [anon_sym_abstract] = ACTIONS(5051), - [anon_sym_final] = ACTIONS(5051), - [anon_sym_open] = ACTIONS(5051), - [anon_sym_vararg] = ACTIONS(5051), - [anon_sym_noinline] = ACTIONS(5051), - [anon_sym_crossinline] = ACTIONS(5051), - [anon_sym_expect] = ACTIONS(5051), - [anon_sym_actual] = ACTIONS(5051), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5053), - [sym_safe_nav] = ACTIONS(5053), + [3499] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, - [3480] = { - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_RBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4202), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [anon_sym_DASH_GT] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), + [3500] = { + [sym_type_constraints] = STATE(3706), + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3164), + [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_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_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(4144), + [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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), }, - [3481] = { - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_RBRACK] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_RPAREN] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(211), - [anon_sym_set] = ACTIONS(211), - [anon_sym_STAR] = ACTIONS(211), - [anon_sym_DASH_GT] = ACTIONS(209), - [sym_label] = ACTIONS(209), - [anon_sym_in] = ACTIONS(211), - [anon_sym_while] = ACTIONS(211), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_else] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [anon_sym_BANG_BANG] = ACTIONS(209), - [anon_sym_suspend] = ACTIONS(211), - [anon_sym_sealed] = ACTIONS(211), - [anon_sym_annotation] = ACTIONS(211), - [anon_sym_data] = ACTIONS(211), - [anon_sym_inner] = ACTIONS(211), - [anon_sym_value] = ACTIONS(211), - [anon_sym_override] = ACTIONS(211), - [anon_sym_lateinit] = ACTIONS(211), - [anon_sym_public] = ACTIONS(211), - [anon_sym_private] = ACTIONS(211), - [anon_sym_internal] = ACTIONS(211), - [anon_sym_protected] = ACTIONS(211), - [anon_sym_tailrec] = ACTIONS(211), - [anon_sym_operator] = ACTIONS(211), - [anon_sym_infix] = ACTIONS(211), - [anon_sym_inline] = ACTIONS(211), - [anon_sym_external] = ACTIONS(211), - [sym_property_modifier] = ACTIONS(211), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_final] = ACTIONS(211), - [anon_sym_open] = ACTIONS(211), - [anon_sym_vararg] = ACTIONS(211), - [anon_sym_noinline] = ACTIONS(211), - [anon_sym_crossinline] = ACTIONS(211), - [anon_sym_expect] = ACTIONS(211), - [anon_sym_actual] = ACTIONS(211), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), + [3501] = { + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, - [3482] = { + [3502] = { [sym__alpha_identifier] = ACTIONS(5089), [anon_sym_AT] = ACTIONS(5091), [anon_sym_LBRACK] = ACTIONS(5091), @@ -399282,1086 +401211,1750 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5091), [sym_multiline_comment] = ACTIONS(3), }, - [3483] = { - [sym__alpha_identifier] = ACTIONS(4559), - [anon_sym_AT] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [anon_sym_EQ] = ACTIONS(4561), - [anon_sym_LBRACE] = ACTIONS(4561), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym_COMMA] = ACTIONS(4561), - [anon_sym_by] = ACTIONS(4559), - [anon_sym_where] = ACTIONS(4559), - [anon_sym_object] = ACTIONS(4559), - [anon_sym_fun] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_this] = ACTIONS(4559), - [anon_sym_super] = ACTIONS(4559), - [anon_sym_STAR] = ACTIONS(4561), - [sym_label] = ACTIONS(4559), - [anon_sym_in] = ACTIONS(4559), - [anon_sym_null] = ACTIONS(4559), - [anon_sym_if] = ACTIONS(4559), - [anon_sym_else] = ACTIONS(4559), - [anon_sym_when] = ACTIONS(4559), - [anon_sym_try] = ACTIONS(4559), - [anon_sym_throw] = ACTIONS(4559), - [anon_sym_return] = ACTIONS(4559), - [anon_sym_continue] = ACTIONS(4559), - [anon_sym_break] = ACTIONS(4559), - [anon_sym_COLON_COLON] = ACTIONS(4561), - [anon_sym_BANGin] = ACTIONS(4561), - [anon_sym_is] = ACTIONS(4559), - [anon_sym_BANGis] = ACTIONS(4561), - [anon_sym_PLUS] = ACTIONS(4559), - [anon_sym_DASH] = ACTIONS(4559), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_suspend] = ACTIONS(4559), - [anon_sym_sealed] = ACTIONS(4559), - [anon_sym_annotation] = ACTIONS(4559), - [anon_sym_data] = ACTIONS(4559), - [anon_sym_inner] = ACTIONS(4559), - [anon_sym_value] = ACTIONS(4559), - [anon_sym_override] = ACTIONS(4559), - [anon_sym_lateinit] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_internal] = ACTIONS(4559), - [anon_sym_protected] = ACTIONS(4559), - [anon_sym_tailrec] = ACTIONS(4559), - [anon_sym_operator] = ACTIONS(4559), - [anon_sym_infix] = ACTIONS(4559), - [anon_sym_inline] = ACTIONS(4559), - [anon_sym_external] = ACTIONS(4559), - [sym_property_modifier] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_open] = ACTIONS(4559), - [anon_sym_vararg] = ACTIONS(4559), - [anon_sym_noinline] = ACTIONS(4559), - [anon_sym_crossinline] = ACTIONS(4559), - [anon_sym_expect] = ACTIONS(4559), - [anon_sym_actual] = ACTIONS(4559), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4561), - [anon_sym_continue_AT] = ACTIONS(4561), - [anon_sym_break_AT] = ACTIONS(4561), - [anon_sym_this_AT] = ACTIONS(4561), - [anon_sym_super_AT] = ACTIONS(4561), - [sym_real_literal] = ACTIONS(4561), - [sym_integer_literal] = ACTIONS(4559), - [sym_hex_literal] = ACTIONS(4561), - [sym_bin_literal] = ACTIONS(4561), - [anon_sym_true] = ACTIONS(4559), - [anon_sym_false] = ACTIONS(4559), - [anon_sym_SQUOTE] = ACTIONS(4561), - [sym__backtick_identifier] = ACTIONS(4561), - [sym__automatic_semicolon] = ACTIONS(4561), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4561), - }, - [3484] = { - [sym__alpha_identifier] = ACTIONS(5047), - [anon_sym_AT] = ACTIONS(5049), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_RBRACK] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_RBRACE] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(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_SEMI] = ACTIONS(5049), - [anon_sym_get] = ACTIONS(5047), - [anon_sym_set] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [anon_sym_DASH_GT] = ACTIONS(5049), - [sym_label] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5047), - [anon_sym_while] = ACTIONS(5047), - [anon_sym_DOT_DOT] = ACTIONS(5049), - [anon_sym_QMARK_COLON] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_else] = ACTIONS(5047), - [anon_sym_COLON_COLON] = ACTIONS(5049), - [anon_sym_PLUS_EQ] = ACTIONS(5049), - [anon_sym_DASH_EQ] = ACTIONS(5049), - [anon_sym_STAR_EQ] = ACTIONS(5049), - [anon_sym_SLASH_EQ] = ACTIONS(5049), - [anon_sym_PERCENT_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), - [anon_sym_LT_EQ] = ACTIONS(5049), - [anon_sym_GT_EQ] = ACTIONS(5049), - [anon_sym_BANGin] = ACTIONS(5049), - [anon_sym_is] = ACTIONS(5047), - [anon_sym_BANGis] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_as_QMARK] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_BANG_BANG] = ACTIONS(5049), - [anon_sym_suspend] = ACTIONS(5047), - [anon_sym_sealed] = ACTIONS(5047), - [anon_sym_annotation] = ACTIONS(5047), - [anon_sym_data] = ACTIONS(5047), - [anon_sym_inner] = ACTIONS(5047), - [anon_sym_value] = ACTIONS(5047), - [anon_sym_override] = ACTIONS(5047), - [anon_sym_lateinit] = ACTIONS(5047), - [anon_sym_public] = ACTIONS(5047), - [anon_sym_private] = ACTIONS(5047), - [anon_sym_internal] = ACTIONS(5047), - [anon_sym_protected] = ACTIONS(5047), - [anon_sym_tailrec] = ACTIONS(5047), - [anon_sym_operator] = ACTIONS(5047), - [anon_sym_infix] = ACTIONS(5047), - [anon_sym_inline] = ACTIONS(5047), - [anon_sym_external] = ACTIONS(5047), - [sym_property_modifier] = ACTIONS(5047), - [anon_sym_abstract] = ACTIONS(5047), - [anon_sym_final] = ACTIONS(5047), - [anon_sym_open] = ACTIONS(5047), - [anon_sym_vararg] = ACTIONS(5047), - [anon_sym_noinline] = ACTIONS(5047), - [anon_sym_crossinline] = ACTIONS(5047), - [anon_sym_expect] = ACTIONS(5047), - [anon_sym_actual] = ACTIONS(5047), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5049), - [sym_safe_nav] = ACTIONS(5049), + [3503] = { + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_RBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_RPAREN] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(4414), + [sym_label] = ACTIONS(4414), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_while] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_suspend] = ACTIONS(4412), + [anon_sym_sealed] = ACTIONS(4412), + [anon_sym_annotation] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_override] = ACTIONS(4412), + [anon_sym_lateinit] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_internal] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_tailrec] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_infix] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym_external] = ACTIONS(4412), + [sym_property_modifier] = ACTIONS(4412), + [anon_sym_abstract] = ACTIONS(4412), + [anon_sym_final] = ACTIONS(4412), + [anon_sym_open] = ACTIONS(4412), + [anon_sym_vararg] = ACTIONS(4412), + [anon_sym_noinline] = ACTIONS(4412), + [anon_sym_crossinline] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), [sym_multiline_comment] = ACTIONS(3), }, - [3485] = { - [sym__alpha_identifier] = ACTIONS(4553), - [anon_sym_AT] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_EQ] = ACTIONS(4556), - [anon_sym_LBRACE] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(4553), - [anon_sym_object] = ACTIONS(4553), - [anon_sym_fun] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4553), - [anon_sym_set] = ACTIONS(4553), - [anon_sym_this] = ACTIONS(4553), - [anon_sym_super] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4556), - [sym_label] = ACTIONS(4553), - [anon_sym_in] = ACTIONS(4553), - [anon_sym_null] = ACTIONS(4553), - [anon_sym_if] = ACTIONS(4553), - [anon_sym_else] = ACTIONS(4553), - [anon_sym_when] = ACTIONS(4553), - [anon_sym_try] = ACTIONS(4553), - [anon_sym_throw] = ACTIONS(4553), - [anon_sym_return] = ACTIONS(4553), - [anon_sym_continue] = ACTIONS(4553), - [anon_sym_break] = ACTIONS(4553), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_BANGin] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4553), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_BANG] = ACTIONS(4553), - [anon_sym_suspend] = ACTIONS(4553), - [anon_sym_sealed] = ACTIONS(4553), - [anon_sym_annotation] = ACTIONS(4553), - [anon_sym_data] = ACTIONS(4553), - [anon_sym_inner] = ACTIONS(4553), - [anon_sym_value] = ACTIONS(4553), - [anon_sym_override] = ACTIONS(4553), - [anon_sym_lateinit] = ACTIONS(4553), - [anon_sym_public] = ACTIONS(4553), - [anon_sym_private] = ACTIONS(4553), - [anon_sym_internal] = ACTIONS(4553), - [anon_sym_protected] = ACTIONS(4553), - [anon_sym_tailrec] = ACTIONS(4553), - [anon_sym_operator] = ACTIONS(4553), - [anon_sym_infix] = ACTIONS(4553), - [anon_sym_inline] = ACTIONS(4553), - [anon_sym_external] = ACTIONS(4553), - [sym_property_modifier] = ACTIONS(4553), - [anon_sym_abstract] = ACTIONS(4553), - [anon_sym_final] = ACTIONS(4553), - [anon_sym_open] = ACTIONS(4553), - [anon_sym_vararg] = ACTIONS(4553), - [anon_sym_noinline] = ACTIONS(4553), - [anon_sym_crossinline] = ACTIONS(4553), - [anon_sym_expect] = ACTIONS(4553), - [anon_sym_actual] = ACTIONS(4553), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4556), - [anon_sym_continue_AT] = ACTIONS(4556), - [anon_sym_break_AT] = ACTIONS(4556), - [anon_sym_this_AT] = ACTIONS(4556), - [anon_sym_super_AT] = ACTIONS(4556), - [sym_real_literal] = ACTIONS(4556), - [sym_integer_literal] = ACTIONS(4553), - [sym_hex_literal] = ACTIONS(4556), - [sym_bin_literal] = ACTIONS(4556), - [anon_sym_true] = ACTIONS(4553), - [anon_sym_false] = ACTIONS(4553), - [anon_sym_SQUOTE] = ACTIONS(4556), - [sym__backtick_identifier] = ACTIONS(4556), - [sym__automatic_semicolon] = ACTIONS(4556), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4556), + [3504] = { + [aux_sym_type_constraints_repeat1] = STATE(3504), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(6844), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), }, - [3486] = { - [sym__alpha_identifier] = ACTIONS(3986), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_RBRACK] = ACTIONS(3988), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_RPAREN] = ACTIONS(3988), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(3986), - [anon_sym_set] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_DASH_GT] = ACTIONS(3988), - [sym_label] = ACTIONS(3988), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_while] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3988), - [anon_sym_QMARK_COLON] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_PIPE_PIPE] = ACTIONS(3988), - [anon_sym_else] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_PLUS_EQ] = ACTIONS(3988), - [anon_sym_DASH_EQ] = ACTIONS(3988), - [anon_sym_STAR_EQ] = ACTIONS(3988), - [anon_sym_SLASH_EQ] = ACTIONS(3988), - [anon_sym_PERCENT_EQ] = ACTIONS(3988), - [anon_sym_BANG_EQ] = ACTIONS(3986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3988), - [anon_sym_EQ_EQ] = ACTIONS(3986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3988), - [anon_sym_LT_EQ] = ACTIONS(3988), - [anon_sym_GT_EQ] = ACTIONS(3988), - [anon_sym_BANGin] = ACTIONS(3988), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_BANGis] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3986), - [anon_sym_sealed] = ACTIONS(3986), - [anon_sym_annotation] = ACTIONS(3986), - [anon_sym_data] = ACTIONS(3986), - [anon_sym_inner] = ACTIONS(3986), - [anon_sym_value] = ACTIONS(3986), - [anon_sym_override] = ACTIONS(3986), - [anon_sym_lateinit] = ACTIONS(3986), - [anon_sym_public] = ACTIONS(3986), - [anon_sym_private] = ACTIONS(3986), - [anon_sym_internal] = ACTIONS(3986), - [anon_sym_protected] = ACTIONS(3986), - [anon_sym_tailrec] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_infix] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym_external] = ACTIONS(3986), - [sym_property_modifier] = ACTIONS(3986), - [anon_sym_abstract] = ACTIONS(3986), - [anon_sym_final] = ACTIONS(3986), - [anon_sym_open] = ACTIONS(3986), - [anon_sym_vararg] = ACTIONS(3986), - [anon_sym_noinline] = ACTIONS(3986), - [anon_sym_crossinline] = ACTIONS(3986), - [anon_sym_expect] = ACTIONS(3986), - [anon_sym_actual] = ACTIONS(3986), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3988), - [sym_safe_nav] = ACTIONS(3988), + [3505] = { + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(6847), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4240), + [anon_sym_continue_AT] = ACTIONS(4240), + [anon_sym_break_AT] = ACTIONS(4240), + [anon_sym_this_AT] = ACTIONS(4240), + [anon_sym_super_AT] = ACTIONS(4240), + [sym_real_literal] = ACTIONS(4240), + [sym_integer_literal] = ACTIONS(4238), + [sym_hex_literal] = ACTIONS(4240), + [sym_bin_literal] = ACTIONS(4240), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4240), }, - [3487] = { - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_RBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4175), - [anon_sym_LBRACE] = ACTIONS(4177), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [anon_sym_DASH_GT] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [3506] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_RBRACK] = ACTIONS(4724), + [anon_sym_DOT] = ACTIONS(4722), + [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_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(4724), + [sym_label] = ACTIONS(4724), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_while] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), [sym_multiline_comment] = ACTIONS(3), }, - [3488] = { - [sym__alpha_identifier] = ACTIONS(5035), - [anon_sym_AT] = ACTIONS(5037), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_RBRACK] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5037), - [anon_sym_RBRACE] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5037), - [anon_sym_COMMA] = ACTIONS(5037), - [anon_sym_RPAREN] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5035), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_where] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5037), - [anon_sym_get] = ACTIONS(5035), - [anon_sym_set] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [anon_sym_DASH_GT] = ACTIONS(5037), - [sym_label] = ACTIONS(5037), - [anon_sym_in] = ACTIONS(5035), - [anon_sym_while] = ACTIONS(5035), - [anon_sym_DOT_DOT] = ACTIONS(5037), - [anon_sym_QMARK_COLON] = ACTIONS(5037), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE_PIPE] = ACTIONS(5037), - [anon_sym_else] = ACTIONS(5035), - [anon_sym_COLON_COLON] = ACTIONS(5037), - [anon_sym_PLUS_EQ] = ACTIONS(5037), - [anon_sym_DASH_EQ] = ACTIONS(5037), - [anon_sym_STAR_EQ] = ACTIONS(5037), - [anon_sym_SLASH_EQ] = ACTIONS(5037), - [anon_sym_PERCENT_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), - [anon_sym_LT_EQ] = ACTIONS(5037), - [anon_sym_GT_EQ] = ACTIONS(5037), - [anon_sym_BANGin] = ACTIONS(5037), - [anon_sym_is] = ACTIONS(5035), - [anon_sym_BANGis] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_as_QMARK] = ACTIONS(5037), - [anon_sym_PLUS_PLUS] = ACTIONS(5037), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_BANG_BANG] = ACTIONS(5037), - [anon_sym_suspend] = ACTIONS(5035), - [anon_sym_sealed] = ACTIONS(5035), - [anon_sym_annotation] = ACTIONS(5035), - [anon_sym_data] = ACTIONS(5035), - [anon_sym_inner] = ACTIONS(5035), - [anon_sym_value] = ACTIONS(5035), - [anon_sym_override] = ACTIONS(5035), - [anon_sym_lateinit] = ACTIONS(5035), - [anon_sym_public] = ACTIONS(5035), - [anon_sym_private] = ACTIONS(5035), - [anon_sym_internal] = ACTIONS(5035), - [anon_sym_protected] = ACTIONS(5035), - [anon_sym_tailrec] = ACTIONS(5035), - [anon_sym_operator] = ACTIONS(5035), - [anon_sym_infix] = ACTIONS(5035), - [anon_sym_inline] = ACTIONS(5035), - [anon_sym_external] = ACTIONS(5035), - [sym_property_modifier] = ACTIONS(5035), - [anon_sym_abstract] = ACTIONS(5035), - [anon_sym_final] = ACTIONS(5035), - [anon_sym_open] = ACTIONS(5035), - [anon_sym_vararg] = ACTIONS(5035), - [anon_sym_noinline] = ACTIONS(5035), - [anon_sym_crossinline] = ACTIONS(5035), - [anon_sym_expect] = ACTIONS(5035), - [anon_sym_actual] = ACTIONS(5035), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5037), - [sym_safe_nav] = ACTIONS(5037), - [sym_multiline_comment] = ACTIONS(3), + [3507] = { + [sym_type_constraints] = STATE(3998), + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(6849), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), }, - [3489] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_DASH_GT] = ACTIONS(1792), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_while] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(1790), - [anon_sym_sealed] = ACTIONS(1790), - [anon_sym_annotation] = ACTIONS(1790), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_override] = ACTIONS(1790), - [anon_sym_lateinit] = ACTIONS(1790), - [anon_sym_public] = ACTIONS(1790), - [anon_sym_private] = ACTIONS(1790), - [anon_sym_internal] = ACTIONS(1790), - [anon_sym_protected] = ACTIONS(1790), - [anon_sym_tailrec] = ACTIONS(1790), - [anon_sym_operator] = ACTIONS(1790), - [anon_sym_infix] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_external] = ACTIONS(1790), - [sym_property_modifier] = ACTIONS(1790), - [anon_sym_abstract] = ACTIONS(1790), - [anon_sym_final] = ACTIONS(1790), - [anon_sym_open] = ACTIONS(1790), - [anon_sym_vararg] = ACTIONS(1790), - [anon_sym_noinline] = ACTIONS(1790), - [anon_sym_crossinline] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), + [3508] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_RPAREN] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_DASH_GT] = ACTIONS(5087), + [sym_label] = ACTIONS(5087), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_while] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_suspend] = ACTIONS(5085), + [anon_sym_sealed] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_override] = ACTIONS(5085), + [anon_sym_lateinit] = ACTIONS(5085), + [anon_sym_public] = ACTIONS(5085), + [anon_sym_private] = ACTIONS(5085), + [anon_sym_internal] = ACTIONS(5085), + [anon_sym_protected] = ACTIONS(5085), + [anon_sym_tailrec] = ACTIONS(5085), + [anon_sym_operator] = ACTIONS(5085), + [anon_sym_infix] = ACTIONS(5085), + [anon_sym_inline] = ACTIONS(5085), + [anon_sym_external] = ACTIONS(5085), + [sym_property_modifier] = ACTIONS(5085), + [anon_sym_abstract] = ACTIONS(5085), + [anon_sym_final] = ACTIONS(5085), + [anon_sym_open] = ACTIONS(5085), + [anon_sym_vararg] = ACTIONS(5085), + [anon_sym_noinline] = ACTIONS(5085), + [anon_sym_crossinline] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), [sym_multiline_comment] = ACTIONS(3), }, - [3490] = { - [sym__alpha_identifier] = ACTIONS(5133), - [anon_sym_AT] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5135), - [anon_sym_RBRACK] = ACTIONS(5135), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_as] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_RBRACE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_RPAREN] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5133), - [anon_sym_where] = ACTIONS(5133), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_get] = ACTIONS(5133), - [anon_sym_set] = ACTIONS(5133), - [anon_sym_STAR] = ACTIONS(5133), - [anon_sym_DASH_GT] = ACTIONS(5135), - [sym_label] = ACTIONS(5135), - [anon_sym_in] = ACTIONS(5133), - [anon_sym_while] = ACTIONS(5133), - [anon_sym_DOT_DOT] = ACTIONS(5135), - [anon_sym_QMARK_COLON] = ACTIONS(5135), - [anon_sym_AMP_AMP] = ACTIONS(5135), - [anon_sym_PIPE_PIPE] = ACTIONS(5135), - [anon_sym_else] = ACTIONS(5133), - [anon_sym_COLON_COLON] = ACTIONS(5135), - [anon_sym_PLUS_EQ] = ACTIONS(5135), - [anon_sym_DASH_EQ] = ACTIONS(5135), - [anon_sym_STAR_EQ] = ACTIONS(5135), - [anon_sym_SLASH_EQ] = ACTIONS(5135), - [anon_sym_PERCENT_EQ] = ACTIONS(5135), - [anon_sym_BANG_EQ] = ACTIONS(5133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5135), - [anon_sym_EQ_EQ] = ACTIONS(5133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5135), - [anon_sym_LT_EQ] = ACTIONS(5135), - [anon_sym_GT_EQ] = ACTIONS(5135), - [anon_sym_BANGin] = ACTIONS(5135), - [anon_sym_is] = ACTIONS(5133), - [anon_sym_BANGis] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5133), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5133), - [anon_sym_PERCENT] = ACTIONS(5133), - [anon_sym_as_QMARK] = ACTIONS(5135), - [anon_sym_PLUS_PLUS] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5135), - [anon_sym_BANG_BANG] = ACTIONS(5135), - [anon_sym_suspend] = ACTIONS(5133), - [anon_sym_sealed] = ACTIONS(5133), - [anon_sym_annotation] = ACTIONS(5133), - [anon_sym_data] = ACTIONS(5133), - [anon_sym_inner] = ACTIONS(5133), - [anon_sym_value] = ACTIONS(5133), - [anon_sym_override] = ACTIONS(5133), - [anon_sym_lateinit] = ACTIONS(5133), - [anon_sym_public] = ACTIONS(5133), - [anon_sym_private] = ACTIONS(5133), - [anon_sym_internal] = ACTIONS(5133), - [anon_sym_protected] = ACTIONS(5133), - [anon_sym_tailrec] = ACTIONS(5133), - [anon_sym_operator] = ACTIONS(5133), - [anon_sym_infix] = ACTIONS(5133), - [anon_sym_inline] = ACTIONS(5133), - [anon_sym_external] = ACTIONS(5133), - [sym_property_modifier] = ACTIONS(5133), - [anon_sym_abstract] = ACTIONS(5133), - [anon_sym_final] = ACTIONS(5133), - [anon_sym_open] = ACTIONS(5133), - [anon_sym_vararg] = ACTIONS(5133), - [anon_sym_noinline] = ACTIONS(5133), - [anon_sym_crossinline] = ACTIONS(5133), - [anon_sym_expect] = ACTIONS(5133), - [anon_sym_actual] = ACTIONS(5133), + [3509] = { + [sym_type_constraints] = STATE(3702), + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [3510] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6851), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [3511] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6855), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [3512] = { + [sym_type_constraints] = STATE(3689), + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [3513] = { + [sym__alpha_identifier] = ACTIONS(5081), + [anon_sym_AT] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_RBRACK] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_as] = ACTIONS(5081), + [anon_sym_EQ] = ACTIONS(5081), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_where] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [anon_sym_get] = ACTIONS(5081), + [anon_sym_set] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [anon_sym_DASH_GT] = ACTIONS(5083), + [sym_label] = ACTIONS(5083), + [anon_sym_in] = ACTIONS(5081), + [anon_sym_while] = ACTIONS(5081), + [anon_sym_DOT_DOT] = ACTIONS(5083), + [anon_sym_QMARK_COLON] = ACTIONS(5083), + [anon_sym_AMP_AMP] = ACTIONS(5083), + [anon_sym_PIPE_PIPE] = ACTIONS(5083), + [anon_sym_else] = ACTIONS(5081), + [anon_sym_COLON_COLON] = ACTIONS(5083), + [anon_sym_PLUS_EQ] = ACTIONS(5083), + [anon_sym_DASH_EQ] = ACTIONS(5083), + [anon_sym_STAR_EQ] = ACTIONS(5083), + [anon_sym_SLASH_EQ] = ACTIONS(5083), + [anon_sym_PERCENT_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ] = ACTIONS(5081), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ] = ACTIONS(5081), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5083), + [anon_sym_LT_EQ] = ACTIONS(5083), + [anon_sym_GT_EQ] = ACTIONS(5083), + [anon_sym_BANGin] = ACTIONS(5083), + [anon_sym_is] = ACTIONS(5081), + [anon_sym_BANGis] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_PERCENT] = ACTIONS(5081), + [anon_sym_as_QMARK] = ACTIONS(5083), + [anon_sym_PLUS_PLUS] = ACTIONS(5083), + [anon_sym_DASH_DASH] = ACTIONS(5083), + [anon_sym_BANG_BANG] = ACTIONS(5083), + [anon_sym_suspend] = ACTIONS(5081), + [anon_sym_sealed] = ACTIONS(5081), + [anon_sym_annotation] = ACTIONS(5081), + [anon_sym_data] = ACTIONS(5081), + [anon_sym_inner] = ACTIONS(5081), + [anon_sym_value] = ACTIONS(5081), + [anon_sym_override] = ACTIONS(5081), + [anon_sym_lateinit] = ACTIONS(5081), + [anon_sym_public] = ACTIONS(5081), + [anon_sym_private] = ACTIONS(5081), + [anon_sym_internal] = ACTIONS(5081), + [anon_sym_protected] = ACTIONS(5081), + [anon_sym_tailrec] = ACTIONS(5081), + [anon_sym_operator] = ACTIONS(5081), + [anon_sym_infix] = ACTIONS(5081), + [anon_sym_inline] = ACTIONS(5081), + [anon_sym_external] = ACTIONS(5081), + [sym_property_modifier] = ACTIONS(5081), + [anon_sym_abstract] = ACTIONS(5081), + [anon_sym_final] = ACTIONS(5081), + [anon_sym_open] = ACTIONS(5081), + [anon_sym_vararg] = ACTIONS(5081), + [anon_sym_noinline] = ACTIONS(5081), + [anon_sym_crossinline] = ACTIONS(5081), + [anon_sym_expect] = ACTIONS(5081), + [anon_sym_actual] = ACTIONS(5081), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5135), - [sym_safe_nav] = ACTIONS(5135), + [sym__backtick_identifier] = ACTIONS(5083), + [sym_safe_nav] = ACTIONS(5083), [sym_multiline_comment] = ACTIONS(3), }, - [3491] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_RBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_RPAREN] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_DASH_GT] = ACTIONS(4425), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_while] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [3514] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_RBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [anon_sym_DASH_GT] = ACTIONS(4728), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_while] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), [sym_multiline_comment] = ACTIONS(3), }, - [3492] = { - [sym__alpha_identifier] = ACTIONS(4672), - [anon_sym_AT] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(4674), - [anon_sym_RBRACK] = ACTIONS(4674), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_LBRACE] = ACTIONS(4674), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_COMMA] = ACTIONS(4674), - [anon_sym_RPAREN] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4672), - [anon_sym_GT] = ACTIONS(4672), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_SEMI] = ACTIONS(4674), - [anon_sym_get] = ACTIONS(4672), - [anon_sym_set] = ACTIONS(4672), - [anon_sym_STAR] = ACTIONS(4672), - [anon_sym_DASH_GT] = ACTIONS(4674), - [sym_label] = ACTIONS(4674), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_while] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(4674), - [anon_sym_QMARK_COLON] = ACTIONS(4674), - [anon_sym_AMP_AMP] = ACTIONS(4674), - [anon_sym_PIPE_PIPE] = ACTIONS(4674), - [anon_sym_else] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_PLUS_EQ] = ACTIONS(4674), - [anon_sym_DASH_EQ] = ACTIONS(4674), - [anon_sym_STAR_EQ] = ACTIONS(4674), - [anon_sym_SLASH_EQ] = ACTIONS(4674), - [anon_sym_PERCENT_EQ] = ACTIONS(4674), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), - [anon_sym_LT_EQ] = ACTIONS(4674), - [anon_sym_GT_EQ] = ACTIONS(4674), - [anon_sym_BANGin] = ACTIONS(4674), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_BANGis] = ACTIONS(4674), - [anon_sym_PLUS] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_as_QMARK] = ACTIONS(4674), - [anon_sym_PLUS_PLUS] = ACTIONS(4674), - [anon_sym_DASH_DASH] = ACTIONS(4674), - [anon_sym_BANG_BANG] = ACTIONS(4674), - [anon_sym_suspend] = ACTIONS(4672), - [anon_sym_sealed] = ACTIONS(4672), - [anon_sym_annotation] = ACTIONS(4672), - [anon_sym_data] = ACTIONS(4672), - [anon_sym_inner] = ACTIONS(4672), - [anon_sym_value] = ACTIONS(4672), - [anon_sym_override] = ACTIONS(4672), - [anon_sym_lateinit] = ACTIONS(4672), - [anon_sym_public] = ACTIONS(4672), - [anon_sym_private] = ACTIONS(4672), - [anon_sym_internal] = ACTIONS(4672), - [anon_sym_protected] = ACTIONS(4672), - [anon_sym_tailrec] = ACTIONS(4672), - [anon_sym_operator] = ACTIONS(4672), - [anon_sym_infix] = ACTIONS(4672), - [anon_sym_inline] = ACTIONS(4672), - [anon_sym_external] = ACTIONS(4672), - [sym_property_modifier] = ACTIONS(4672), - [anon_sym_abstract] = ACTIONS(4672), - [anon_sym_final] = ACTIONS(4672), - [anon_sym_open] = ACTIONS(4672), - [anon_sym_vararg] = ACTIONS(4672), - [anon_sym_noinline] = ACTIONS(4672), - [anon_sym_crossinline] = ACTIONS(4672), - [anon_sym_expect] = ACTIONS(4672), - [anon_sym_actual] = ACTIONS(4672), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4674), - [sym_safe_nav] = ACTIONS(4674), + [3515] = { + [sym__alpha_identifier] = ACTIONS(5033), + [anon_sym_AT] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5033), + [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_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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, - [3493] = { - [sym__alpha_identifier] = ACTIONS(5031), - [anon_sym_AT] = ACTIONS(5033), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_RBRACK] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5031), - [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_SEMI] = ACTIONS(5033), - [anon_sym_get] = ACTIONS(5031), - [anon_sym_set] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [anon_sym_DASH_GT] = ACTIONS(5033), - [sym_label] = ACTIONS(5033), - [anon_sym_in] = ACTIONS(5031), - [anon_sym_while] = ACTIONS(5031), - [anon_sym_DOT_DOT] = ACTIONS(5033), - [anon_sym_QMARK_COLON] = ACTIONS(5033), - [anon_sym_AMP_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5033), - [anon_sym_else] = ACTIONS(5031), - [anon_sym_COLON_COLON] = ACTIONS(5033), - [anon_sym_PLUS_EQ] = ACTIONS(5033), - [anon_sym_DASH_EQ] = ACTIONS(5033), - [anon_sym_STAR_EQ] = ACTIONS(5033), - [anon_sym_SLASH_EQ] = ACTIONS(5033), - [anon_sym_PERCENT_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ] = ACTIONS(5031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5033), - [anon_sym_BANGin] = ACTIONS(5033), - [anon_sym_is] = ACTIONS(5031), - [anon_sym_BANGis] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_as_QMARK] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_BANG_BANG] = ACTIONS(5033), - [anon_sym_suspend] = ACTIONS(5031), - [anon_sym_sealed] = ACTIONS(5031), - [anon_sym_annotation] = ACTIONS(5031), - [anon_sym_data] = ACTIONS(5031), - [anon_sym_inner] = ACTIONS(5031), - [anon_sym_value] = ACTIONS(5031), - [anon_sym_override] = ACTIONS(5031), - [anon_sym_lateinit] = ACTIONS(5031), - [anon_sym_public] = ACTIONS(5031), - [anon_sym_private] = ACTIONS(5031), - [anon_sym_internal] = ACTIONS(5031), - [anon_sym_protected] = ACTIONS(5031), - [anon_sym_tailrec] = ACTIONS(5031), - [anon_sym_operator] = ACTIONS(5031), - [anon_sym_infix] = ACTIONS(5031), - [anon_sym_inline] = ACTIONS(5031), - [anon_sym_external] = ACTIONS(5031), - [sym_property_modifier] = ACTIONS(5031), - [anon_sym_abstract] = ACTIONS(5031), - [anon_sym_final] = ACTIONS(5031), - [anon_sym_open] = ACTIONS(5031), - [anon_sym_vararg] = ACTIONS(5031), - [anon_sym_noinline] = ACTIONS(5031), - [anon_sym_crossinline] = ACTIONS(5031), - [anon_sym_expect] = ACTIONS(5031), - [anon_sym_actual] = ACTIONS(5031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5033), - [sym_safe_nav] = ACTIONS(5033), + [3516] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_RBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_RPAREN] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [anon_sym_DASH_GT] = ACTIONS(4333), + [sym_label] = ACTIONS(4333), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_while] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), [sym_multiline_comment] = ACTIONS(3), }, - [3494] = { - [sym__alpha_identifier] = ACTIONS(5173), - [anon_sym_AT] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5175), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_RBRACE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_RPAREN] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5173), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_get] = ACTIONS(5173), - [anon_sym_set] = ACTIONS(5173), - [anon_sym_STAR] = ACTIONS(5173), - [anon_sym_DASH_GT] = ACTIONS(5175), - [sym_label] = ACTIONS(5175), - [anon_sym_in] = ACTIONS(5173), - [anon_sym_while] = ACTIONS(5173), - [anon_sym_DOT_DOT] = ACTIONS(5175), - [anon_sym_QMARK_COLON] = ACTIONS(5175), - [anon_sym_AMP_AMP] = ACTIONS(5175), - [anon_sym_PIPE_PIPE] = ACTIONS(5175), - [anon_sym_else] = ACTIONS(5173), - [anon_sym_COLON_COLON] = ACTIONS(5175), - [anon_sym_PLUS_EQ] = ACTIONS(5175), - [anon_sym_DASH_EQ] = ACTIONS(5175), - [anon_sym_STAR_EQ] = ACTIONS(5175), - [anon_sym_SLASH_EQ] = ACTIONS(5175), - [anon_sym_PERCENT_EQ] = ACTIONS(5175), - [anon_sym_BANG_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5175), - [anon_sym_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5175), - [anon_sym_LT_EQ] = ACTIONS(5175), - [anon_sym_GT_EQ] = ACTIONS(5175), - [anon_sym_BANGin] = ACTIONS(5175), - [anon_sym_is] = ACTIONS(5173), - [anon_sym_BANGis] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5173), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5173), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5175), - [anon_sym_PLUS_PLUS] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5175), - [anon_sym_BANG_BANG] = ACTIONS(5175), - [anon_sym_suspend] = ACTIONS(5173), - [anon_sym_sealed] = ACTIONS(5173), - [anon_sym_annotation] = ACTIONS(5173), - [anon_sym_data] = ACTIONS(5173), - [anon_sym_inner] = ACTIONS(5173), - [anon_sym_value] = ACTIONS(5173), - [anon_sym_override] = ACTIONS(5173), - [anon_sym_lateinit] = ACTIONS(5173), - [anon_sym_public] = ACTIONS(5173), - [anon_sym_private] = ACTIONS(5173), - [anon_sym_internal] = ACTIONS(5173), - [anon_sym_protected] = ACTIONS(5173), - [anon_sym_tailrec] = ACTIONS(5173), - [anon_sym_operator] = ACTIONS(5173), - [anon_sym_infix] = ACTIONS(5173), - [anon_sym_inline] = ACTIONS(5173), - [anon_sym_external] = ACTIONS(5173), - [sym_property_modifier] = ACTIONS(5173), - [anon_sym_abstract] = ACTIONS(5173), - [anon_sym_final] = ACTIONS(5173), - [anon_sym_open] = ACTIONS(5173), - [anon_sym_vararg] = ACTIONS(5173), - [anon_sym_noinline] = ACTIONS(5173), - [anon_sym_crossinline] = ACTIONS(5173), - [anon_sym_expect] = ACTIONS(5173), - [anon_sym_actual] = ACTIONS(5173), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5175), - [sym_safe_nav] = ACTIONS(5175), + [3517] = { + [sym_type_constraints] = STATE(4011), + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(6859), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [3518] = { + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_RBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(4416), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [anon_sym_DASH_GT] = ACTIONS(4418), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_while] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), [sym_multiline_comment] = ACTIONS(3), }, - [3495] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [anon_sym_DASH_GT] = ACTIONS(5179), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_while] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), + [3519] = { + [sym__alpha_identifier] = ACTIONS(4136), + [anon_sym_AT] = ACTIONS(4138), + [anon_sym_COLON] = ACTIONS(6452), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_EQ] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_object] = ACTIONS(4136), + [anon_sym_fun] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(4136), + [anon_sym_set] = ACTIONS(4136), + [anon_sym_this] = ACTIONS(4136), + [anon_sym_super] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4138), + [sym_label] = ACTIONS(4136), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_null] = ACTIONS(4136), + [anon_sym_if] = ACTIONS(4136), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_when] = ACTIONS(4136), + [anon_sym_try] = ACTIONS(4136), + [anon_sym_throw] = ACTIONS(4136), + [anon_sym_return] = ACTIONS(4136), + [anon_sym_continue] = ACTIONS(4136), + [anon_sym_break] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_BANGin] = ACTIONS(4138), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_BANGis] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_suspend] = ACTIONS(4136), + [anon_sym_sealed] = ACTIONS(4136), + [anon_sym_annotation] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4136), + [anon_sym_inner] = ACTIONS(4136), + [anon_sym_value] = ACTIONS(4136), + [anon_sym_override] = ACTIONS(4136), + [anon_sym_lateinit] = ACTIONS(4136), + [anon_sym_public] = ACTIONS(4136), + [anon_sym_private] = ACTIONS(4136), + [anon_sym_internal] = ACTIONS(4136), + [anon_sym_protected] = ACTIONS(4136), + [anon_sym_tailrec] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_infix] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym_external] = ACTIONS(4136), + [sym_property_modifier] = ACTIONS(4136), + [anon_sym_abstract] = ACTIONS(4136), + [anon_sym_final] = ACTIONS(4136), + [anon_sym_open] = ACTIONS(4136), + [anon_sym_vararg] = ACTIONS(4136), + [anon_sym_noinline] = ACTIONS(4136), + [anon_sym_crossinline] = ACTIONS(4136), + [anon_sym_expect] = ACTIONS(4136), + [anon_sym_actual] = ACTIONS(4136), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4138), + [anon_sym_continue_AT] = ACTIONS(4138), + [anon_sym_break_AT] = ACTIONS(4138), + [anon_sym_this_AT] = ACTIONS(4138), + [anon_sym_super_AT] = ACTIONS(4138), + [sym_real_literal] = ACTIONS(4138), + [sym_integer_literal] = ACTIONS(4136), + [sym_hex_literal] = ACTIONS(4138), + [sym_bin_literal] = ACTIONS(4138), + [anon_sym_true] = ACTIONS(4136), + [anon_sym_false] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4138), + [sym__backtick_identifier] = ACTIONS(4138), + [sym__automatic_semicolon] = ACTIONS(4138), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4138), + }, + [3520] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6861), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), }, - [3496] = { + [3521] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_RBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6863), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(4188), + [sym_label] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + }, + [3522] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_RBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(6865), + [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_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [anon_sym_DASH_GT] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_while] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + }, + [3523] = { + [sym_type_constraints] = STATE(3933), + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [3524] = { [sym__alpha_identifier] = ACTIONS(5023), [anon_sym_AT] = ACTIONS(5025), [anon_sym_LBRACK] = ACTIONS(5025), @@ -400444,671 +403037,3493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5025), [sym_multiline_comment] = ACTIONS(3), }, - [3497] = { - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_RBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_RPAREN] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_DASH_GT] = ACTIONS(1818), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_while] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(1816), - [anon_sym_sealed] = ACTIONS(1816), - [anon_sym_annotation] = ACTIONS(1816), - [anon_sym_data] = ACTIONS(1816), - [anon_sym_inner] = ACTIONS(1816), - [anon_sym_value] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_lateinit] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_internal] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_tailrec] = ACTIONS(1816), - [anon_sym_operator] = ACTIONS(1816), - [anon_sym_infix] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1816), - [anon_sym_external] = ACTIONS(1816), - [sym_property_modifier] = ACTIONS(1816), - [anon_sym_abstract] = ACTIONS(1816), - [anon_sym_final] = ACTIONS(1816), - [anon_sym_open] = ACTIONS(1816), - [anon_sym_vararg] = ACTIONS(1816), - [anon_sym_noinline] = ACTIONS(1816), - [anon_sym_crossinline] = ACTIONS(1816), - [anon_sym_expect] = ACTIONS(1816), - [anon_sym_actual] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [3525] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_RBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(6869), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [anon_sym_DASH_GT] = ACTIONS(4852), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), [sym_multiline_comment] = ACTIONS(3), }, - [3498] = { - [sym_type_arguments] = STATE(3767), - [sym__alpha_identifier] = ACTIONS(4169), - [anon_sym_AT] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4171), - [anon_sym_DOT] = ACTIONS(4169), - [anon_sym_typealias] = ACTIONS(4169), - [anon_sym_class] = ACTIONS(4169), - [anon_sym_interface] = ACTIONS(4169), - [anon_sym_enum] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(4171), - [anon_sym_LPAREN] = ACTIONS(4171), - [anon_sym_val] = ACTIONS(4169), - [anon_sym_var] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(6884), - [anon_sym_object] = ACTIONS(4169), - [anon_sym_fun] = ACTIONS(4169), - [anon_sym_get] = ACTIONS(4169), - [anon_sym_set] = ACTIONS(4169), - [anon_sym_this] = ACTIONS(4169), - [anon_sym_super] = ACTIONS(4169), - [anon_sym_STAR] = ACTIONS(4171), - [sym_label] = ACTIONS(4169), - [anon_sym_for] = ACTIONS(4169), - [anon_sym_while] = ACTIONS(4169), - [anon_sym_do] = ACTIONS(4169), - [anon_sym_null] = ACTIONS(4169), - [anon_sym_if] = ACTIONS(4169), - [anon_sym_when] = ACTIONS(4169), - [anon_sym_try] = ACTIONS(4169), - [anon_sym_throw] = ACTIONS(4169), - [anon_sym_return] = ACTIONS(4169), - [anon_sym_continue] = ACTIONS(4169), - [anon_sym_break] = ACTIONS(4169), - [anon_sym_COLON_COLON] = ACTIONS(4171), - [anon_sym_PLUS] = ACTIONS(4169), - [anon_sym_DASH] = ACTIONS(4169), - [anon_sym_PLUS_PLUS] = ACTIONS(4171), - [anon_sym_DASH_DASH] = ACTIONS(4171), - [anon_sym_BANG] = ACTIONS(4171), - [anon_sym_suspend] = ACTIONS(4169), - [anon_sym_sealed] = ACTIONS(4169), - [anon_sym_annotation] = ACTIONS(4169), - [anon_sym_data] = ACTIONS(4169), - [anon_sym_inner] = ACTIONS(4169), - [anon_sym_value] = ACTIONS(4169), - [anon_sym_override] = ACTIONS(4169), - [anon_sym_lateinit] = ACTIONS(4169), - [anon_sym_public] = ACTIONS(4169), - [anon_sym_private] = ACTIONS(4169), - [anon_sym_internal] = ACTIONS(4169), - [anon_sym_protected] = ACTIONS(4169), - [anon_sym_tailrec] = ACTIONS(4169), - [anon_sym_operator] = ACTIONS(4169), - [anon_sym_infix] = ACTIONS(4169), - [anon_sym_inline] = ACTIONS(4169), - [anon_sym_external] = ACTIONS(4169), - [sym_property_modifier] = ACTIONS(4169), - [anon_sym_abstract] = ACTIONS(4169), - [anon_sym_final] = ACTIONS(4169), - [anon_sym_open] = ACTIONS(4169), - [anon_sym_vararg] = ACTIONS(4169), - [anon_sym_noinline] = ACTIONS(4169), - [anon_sym_crossinline] = ACTIONS(4169), - [anon_sym_expect] = ACTIONS(4169), - [anon_sym_actual] = ACTIONS(4169), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4171), - [anon_sym_continue_AT] = ACTIONS(4171), - [anon_sym_break_AT] = ACTIONS(4171), - [anon_sym_this_AT] = ACTIONS(4171), - [anon_sym_super_AT] = ACTIONS(4171), - [sym_real_literal] = ACTIONS(4171), - [sym_integer_literal] = ACTIONS(4169), - [sym_hex_literal] = ACTIONS(4171), - [sym_bin_literal] = ACTIONS(4171), - [anon_sym_true] = ACTIONS(4169), - [anon_sym_false] = ACTIONS(4169), - [anon_sym_SQUOTE] = ACTIONS(4171), - [sym__backtick_identifier] = ACTIONS(4171), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4171), + [3526] = { + [sym_type_constraints] = STATE(4013), + [sym_function_body] = STATE(3233), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(6871), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), }, - [3499] = { - [sym__alpha_identifier] = ACTIONS(5197), - [anon_sym_AT] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_DOT] = ACTIONS(5197), - [anon_sym_as] = ACTIONS(5197), - [anon_sym_EQ] = ACTIONS(5197), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_where] = ACTIONS(5197), - [anon_sym_SEMI] = ACTIONS(5199), - [anon_sym_get] = ACTIONS(5197), - [anon_sym_set] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_DASH_GT] = ACTIONS(5199), - [sym_label] = ACTIONS(5199), - [anon_sym_in] = ACTIONS(5197), - [anon_sym_while] = ACTIONS(5197), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_QMARK_COLON] = ACTIONS(5199), - [anon_sym_AMP_AMP] = ACTIONS(5199), - [anon_sym_PIPE_PIPE] = ACTIONS(5199), - [anon_sym_else] = ACTIONS(5197), - [anon_sym_COLON_COLON] = ACTIONS(5199), - [anon_sym_PLUS_EQ] = ACTIONS(5199), - [anon_sym_DASH_EQ] = ACTIONS(5199), - [anon_sym_STAR_EQ] = ACTIONS(5199), - [anon_sym_SLASH_EQ] = ACTIONS(5199), - [anon_sym_PERCENT_EQ] = ACTIONS(5199), - [anon_sym_BANG_EQ] = ACTIONS(5197), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), - [anon_sym_EQ_EQ] = ACTIONS(5197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), - [anon_sym_LT_EQ] = ACTIONS(5199), - [anon_sym_GT_EQ] = ACTIONS(5199), - [anon_sym_BANGin] = ACTIONS(5199), - [anon_sym_is] = ACTIONS(5197), - [anon_sym_BANGis] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_PERCENT] = ACTIONS(5197), - [anon_sym_as_QMARK] = ACTIONS(5199), - [anon_sym_PLUS_PLUS] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_BANG_BANG] = ACTIONS(5199), - [anon_sym_suspend] = ACTIONS(5197), - [anon_sym_sealed] = ACTIONS(5197), - [anon_sym_annotation] = ACTIONS(5197), - [anon_sym_data] = ACTIONS(5197), - [anon_sym_inner] = ACTIONS(5197), - [anon_sym_value] = ACTIONS(5197), - [anon_sym_override] = ACTIONS(5197), - [anon_sym_lateinit] = ACTIONS(5197), - [anon_sym_public] = ACTIONS(5197), - [anon_sym_private] = ACTIONS(5197), - [anon_sym_internal] = ACTIONS(5197), - [anon_sym_protected] = ACTIONS(5197), - [anon_sym_tailrec] = ACTIONS(5197), - [anon_sym_operator] = ACTIONS(5197), - [anon_sym_infix] = ACTIONS(5197), - [anon_sym_inline] = ACTIONS(5197), - [anon_sym_external] = ACTIONS(5197), - [sym_property_modifier] = ACTIONS(5197), - [anon_sym_abstract] = ACTIONS(5197), - [anon_sym_final] = ACTIONS(5197), - [anon_sym_open] = ACTIONS(5197), - [anon_sym_vararg] = ACTIONS(5197), - [anon_sym_noinline] = ACTIONS(5197), - [anon_sym_crossinline] = ACTIONS(5197), - [anon_sym_expect] = ACTIONS(5197), - [anon_sym_actual] = ACTIONS(5197), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5199), - [sym_safe_nav] = ACTIONS(5199), + [3527] = { + [sym__alpha_identifier] = ACTIONS(4599), + [anon_sym_AT] = ACTIONS(4601), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4601), + [anon_sym_LBRACE] = ACTIONS(4601), + [anon_sym_RBRACE] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4601), + [anon_sym_by] = ACTIONS(4599), + [anon_sym_where] = ACTIONS(4599), + [anon_sym_object] = ACTIONS(4599), + [anon_sym_fun] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4601), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), + [anon_sym_this] = ACTIONS(4599), + [anon_sym_super] = ACTIONS(4599), + [anon_sym_STAR] = ACTIONS(4601), + [sym_label] = ACTIONS(4599), + [anon_sym_in] = ACTIONS(4599), + [anon_sym_null] = ACTIONS(4599), + [anon_sym_if] = ACTIONS(4599), + [anon_sym_else] = ACTIONS(4599), + [anon_sym_when] = ACTIONS(4599), + [anon_sym_try] = ACTIONS(4599), + [anon_sym_throw] = ACTIONS(4599), + [anon_sym_return] = ACTIONS(4599), + [anon_sym_continue] = ACTIONS(4599), + [anon_sym_break] = ACTIONS(4599), + [anon_sym_COLON_COLON] = ACTIONS(4601), + [anon_sym_BANGin] = ACTIONS(4601), + [anon_sym_is] = ACTIONS(4599), + [anon_sym_BANGis] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_BANG] = ACTIONS(4599), + [anon_sym_suspend] = ACTIONS(4599), + [anon_sym_sealed] = ACTIONS(4599), + [anon_sym_annotation] = ACTIONS(4599), + [anon_sym_data] = ACTIONS(4599), + [anon_sym_inner] = ACTIONS(4599), + [anon_sym_value] = ACTIONS(4599), + [anon_sym_override] = ACTIONS(4599), + [anon_sym_lateinit] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_internal] = ACTIONS(4599), + [anon_sym_protected] = ACTIONS(4599), + [anon_sym_tailrec] = ACTIONS(4599), + [anon_sym_operator] = ACTIONS(4599), + [anon_sym_infix] = ACTIONS(4599), + [anon_sym_inline] = ACTIONS(4599), + [anon_sym_external] = ACTIONS(4599), + [sym_property_modifier] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_open] = ACTIONS(4599), + [anon_sym_vararg] = ACTIONS(4599), + [anon_sym_noinline] = ACTIONS(4599), + [anon_sym_crossinline] = ACTIONS(4599), + [anon_sym_expect] = ACTIONS(4599), + [anon_sym_actual] = ACTIONS(4599), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4601), + [anon_sym_continue_AT] = ACTIONS(4601), + [anon_sym_break_AT] = ACTIONS(4601), + [anon_sym_this_AT] = ACTIONS(4601), + [anon_sym_super_AT] = ACTIONS(4601), + [sym_real_literal] = ACTIONS(4601), + [sym_integer_literal] = ACTIONS(4599), + [sym_hex_literal] = ACTIONS(4601), + [sym_bin_literal] = ACTIONS(4601), + [anon_sym_true] = ACTIONS(4599), + [anon_sym_false] = ACTIONS(4599), + [anon_sym_SQUOTE] = ACTIONS(4601), + [sym__backtick_identifier] = ACTIONS(4601), + [sym__automatic_semicolon] = ACTIONS(4601), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4601), + }, + [3528] = { + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4673), + [anon_sym_LBRACK] = ACTIONS(4673), + [anon_sym_EQ] = ACTIONS(4673), + [anon_sym_LBRACE] = ACTIONS(4673), + [anon_sym_RBRACE] = ACTIONS(4673), + [anon_sym_LPAREN] = ACTIONS(4673), + [anon_sym_COMMA] = ACTIONS(4673), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_object] = ACTIONS(4670), + [anon_sym_fun] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_this] = ACTIONS(4670), + [anon_sym_super] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4673), + [sym_label] = ACTIONS(4670), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_null] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_when] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4673), + [anon_sym_BANGin] = ACTIONS(4673), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4673), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_PLUS_PLUS] = ACTIONS(4673), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4673), + [anon_sym_continue_AT] = ACTIONS(4673), + [anon_sym_break_AT] = ACTIONS(4673), + [anon_sym_this_AT] = ACTIONS(4673), + [anon_sym_super_AT] = ACTIONS(4673), + [sym_real_literal] = ACTIONS(4673), + [sym_integer_literal] = ACTIONS(4670), + [sym_hex_literal] = ACTIONS(4673), + [sym_bin_literal] = ACTIONS(4673), + [anon_sym_true] = ACTIONS(4670), + [anon_sym_false] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4673), + [sym__backtick_identifier] = ACTIONS(4673), + [sym__automatic_semicolon] = ACTIONS(4673), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4673), + }, + [3529] = { + [sym_type_constraints] = STATE(3724), + [sym_function_body] = STATE(3387), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_while] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [3500] = { - [sym__alpha_identifier] = ACTIONS(4762), - [anon_sym_AT] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4762), - [anon_sym_as] = ACTIONS(4762), - [anon_sym_EQ] = ACTIONS(4762), - [anon_sym_LBRACE] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4762), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_get] = ACTIONS(4762), - [anon_sym_set] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4762), - [anon_sym_DASH_GT] = ACTIONS(4764), - [sym_label] = ACTIONS(4764), - [anon_sym_in] = ACTIONS(4762), - [anon_sym_while] = ACTIONS(4762), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_QMARK_COLON] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [anon_sym_else] = ACTIONS(4762), - [anon_sym_COLON_COLON] = ACTIONS(4764), - [anon_sym_PLUS_EQ] = ACTIONS(4764), - [anon_sym_DASH_EQ] = ACTIONS(4764), - [anon_sym_STAR_EQ] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(4764), - [anon_sym_PERCENT_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4762), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_BANGin] = ACTIONS(4764), - [anon_sym_is] = ACTIONS(4762), - [anon_sym_BANGis] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4762), - [anon_sym_as_QMARK] = ACTIONS(4764), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_BANG_BANG] = ACTIONS(4764), - [anon_sym_suspend] = ACTIONS(4762), - [anon_sym_sealed] = ACTIONS(4762), - [anon_sym_annotation] = ACTIONS(4762), - [anon_sym_data] = ACTIONS(4762), - [anon_sym_inner] = ACTIONS(4762), - [anon_sym_value] = ACTIONS(4762), - [anon_sym_override] = ACTIONS(4762), - [anon_sym_lateinit] = ACTIONS(4762), - [anon_sym_public] = ACTIONS(4762), - [anon_sym_private] = ACTIONS(4762), - [anon_sym_internal] = ACTIONS(4762), - [anon_sym_protected] = ACTIONS(4762), - [anon_sym_tailrec] = ACTIONS(4762), - [anon_sym_operator] = ACTIONS(4762), - [anon_sym_infix] = ACTIONS(4762), - [anon_sym_inline] = ACTIONS(4762), - [anon_sym_external] = ACTIONS(4762), - [sym_property_modifier] = ACTIONS(4762), - [anon_sym_abstract] = ACTIONS(4762), - [anon_sym_final] = ACTIONS(4762), - [anon_sym_open] = ACTIONS(4762), - [anon_sym_vararg] = ACTIONS(4762), - [anon_sym_noinline] = ACTIONS(4762), - [anon_sym_crossinline] = ACTIONS(4762), - [anon_sym_expect] = ACTIONS(4762), - [anon_sym_actual] = ACTIONS(4762), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4764), - [sym_safe_nav] = ACTIONS(4764), + [3530] = { + [sym_type_constraints] = STATE(4027), + [sym_function_body] = STATE(3195), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(6873), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4123), + [anon_sym_fun] = ACTIONS(4123), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_this] = ACTIONS(4123), + [anon_sym_super] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [sym_label] = ACTIONS(4123), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_null] = ACTIONS(4123), + [anon_sym_if] = ACTIONS(4123), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_when] = ACTIONS(4123), + [anon_sym_try] = ACTIONS(4123), + [anon_sym_throw] = ACTIONS(4123), + [anon_sym_return] = ACTIONS(4123), + [anon_sym_continue] = ACTIONS(4123), + [anon_sym_break] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG] = ACTIONS(4123), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4125), + [anon_sym_continue_AT] = ACTIONS(4125), + [anon_sym_break_AT] = ACTIONS(4125), + [anon_sym_this_AT] = ACTIONS(4125), + [anon_sym_super_AT] = ACTIONS(4125), + [sym_real_literal] = ACTIONS(4125), + [sym_integer_literal] = ACTIONS(4123), + [sym_hex_literal] = ACTIONS(4125), + [sym_bin_literal] = ACTIONS(4125), + [anon_sym_true] = ACTIONS(4123), + [anon_sym_false] = ACTIONS(4123), + [anon_sym_SQUOTE] = ACTIONS(4125), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4125), + }, + [3531] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_RBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [anon_sym_DASH_GT] = ACTIONS(4734), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_while] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), [sym_multiline_comment] = ACTIONS(3), }, - [3501] = { - [sym__alpha_identifier] = ACTIONS(5201), - [anon_sym_AT] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_DOT] = ACTIONS(5201), - [anon_sym_as] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_where] = ACTIONS(5201), - [anon_sym_SEMI] = ACTIONS(5203), - [anon_sym_get] = ACTIONS(5201), - [anon_sym_set] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_DASH_GT] = ACTIONS(5203), - [sym_label] = ACTIONS(5203), - [anon_sym_in] = ACTIONS(5201), - [anon_sym_while] = ACTIONS(5201), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_QMARK_COLON] = ACTIONS(5203), - [anon_sym_AMP_AMP] = ACTIONS(5203), - [anon_sym_PIPE_PIPE] = ACTIONS(5203), - [anon_sym_else] = ACTIONS(5201), - [anon_sym_COLON_COLON] = ACTIONS(5203), - [anon_sym_PLUS_EQ] = ACTIONS(5203), - [anon_sym_DASH_EQ] = ACTIONS(5203), - [anon_sym_STAR_EQ] = ACTIONS(5203), - [anon_sym_SLASH_EQ] = ACTIONS(5203), - [anon_sym_PERCENT_EQ] = ACTIONS(5203), - [anon_sym_BANG_EQ] = ACTIONS(5201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5203), - [anon_sym_EQ_EQ] = ACTIONS(5201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5203), - [anon_sym_LT_EQ] = ACTIONS(5203), - [anon_sym_GT_EQ] = ACTIONS(5203), - [anon_sym_BANGin] = ACTIONS(5203), - [anon_sym_is] = ACTIONS(5201), - [anon_sym_BANGis] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_PERCENT] = ACTIONS(5201), - [anon_sym_as_QMARK] = ACTIONS(5203), - [anon_sym_PLUS_PLUS] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_BANG_BANG] = ACTIONS(5203), - [anon_sym_suspend] = ACTIONS(5201), - [anon_sym_sealed] = ACTIONS(5201), - [anon_sym_annotation] = ACTIONS(5201), - [anon_sym_data] = ACTIONS(5201), - [anon_sym_inner] = ACTIONS(5201), - [anon_sym_value] = ACTIONS(5201), - [anon_sym_override] = ACTIONS(5201), - [anon_sym_lateinit] = ACTIONS(5201), - [anon_sym_public] = ACTIONS(5201), - [anon_sym_private] = ACTIONS(5201), - [anon_sym_internal] = ACTIONS(5201), - [anon_sym_protected] = ACTIONS(5201), - [anon_sym_tailrec] = ACTIONS(5201), - [anon_sym_operator] = ACTIONS(5201), - [anon_sym_infix] = ACTIONS(5201), - [anon_sym_inline] = ACTIONS(5201), - [anon_sym_external] = ACTIONS(5201), - [sym_property_modifier] = ACTIONS(5201), - [anon_sym_abstract] = ACTIONS(5201), - [anon_sym_final] = ACTIONS(5201), - [anon_sym_open] = ACTIONS(5201), - [anon_sym_vararg] = ACTIONS(5201), - [anon_sym_noinline] = ACTIONS(5201), - [anon_sym_crossinline] = ACTIONS(5201), - [anon_sym_expect] = ACTIONS(5201), - [anon_sym_actual] = ACTIONS(5201), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5203), - [sym_safe_nav] = ACTIONS(5203), + [3532] = { + [sym_type_constraints] = STATE(3682), + [sym_function_body] = STATE(3956), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [3502] = { - [sym__alpha_identifier] = ACTIONS(5205), - [anon_sym_AT] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_as] = ACTIONS(5205), - [anon_sym_EQ] = ACTIONS(5205), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_where] = ACTIONS(5205), - [anon_sym_SEMI] = ACTIONS(5207), - [anon_sym_get] = ACTIONS(5205), - [anon_sym_set] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_DASH_GT] = ACTIONS(5207), - [sym_label] = ACTIONS(5207), - [anon_sym_in] = ACTIONS(5205), - [anon_sym_while] = ACTIONS(5205), - [anon_sym_DOT_DOT] = ACTIONS(5207), - [anon_sym_QMARK_COLON] = ACTIONS(5207), - [anon_sym_AMP_AMP] = ACTIONS(5207), - [anon_sym_PIPE_PIPE] = ACTIONS(5207), - [anon_sym_else] = ACTIONS(5205), - [anon_sym_COLON_COLON] = ACTIONS(5207), - [anon_sym_PLUS_EQ] = ACTIONS(5207), - [anon_sym_DASH_EQ] = ACTIONS(5207), - [anon_sym_STAR_EQ] = ACTIONS(5207), - [anon_sym_SLASH_EQ] = ACTIONS(5207), - [anon_sym_PERCENT_EQ] = ACTIONS(5207), - [anon_sym_BANG_EQ] = ACTIONS(5205), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), - [anon_sym_EQ_EQ] = ACTIONS(5205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), - [anon_sym_LT_EQ] = ACTIONS(5207), - [anon_sym_GT_EQ] = ACTIONS(5207), - [anon_sym_BANGin] = ACTIONS(5207), - [anon_sym_is] = ACTIONS(5205), - [anon_sym_BANGis] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_PERCENT] = ACTIONS(5205), - [anon_sym_as_QMARK] = ACTIONS(5207), - [anon_sym_PLUS_PLUS] = ACTIONS(5207), - [anon_sym_DASH_DASH] = ACTIONS(5207), - [anon_sym_BANG_BANG] = ACTIONS(5207), - [anon_sym_suspend] = ACTIONS(5205), - [anon_sym_sealed] = ACTIONS(5205), - [anon_sym_annotation] = ACTIONS(5205), - [anon_sym_data] = ACTIONS(5205), - [anon_sym_inner] = ACTIONS(5205), - [anon_sym_value] = ACTIONS(5205), - [anon_sym_override] = ACTIONS(5205), - [anon_sym_lateinit] = ACTIONS(5205), - [anon_sym_public] = ACTIONS(5205), - [anon_sym_private] = ACTIONS(5205), - [anon_sym_internal] = ACTIONS(5205), - [anon_sym_protected] = ACTIONS(5205), - [anon_sym_tailrec] = ACTIONS(5205), - [anon_sym_operator] = ACTIONS(5205), - [anon_sym_infix] = ACTIONS(5205), - [anon_sym_inline] = ACTIONS(5205), - [anon_sym_external] = ACTIONS(5205), - [sym_property_modifier] = ACTIONS(5205), - [anon_sym_abstract] = ACTIONS(5205), - [anon_sym_final] = ACTIONS(5205), - [anon_sym_open] = ACTIONS(5205), - [anon_sym_vararg] = ACTIONS(5205), - [anon_sym_noinline] = ACTIONS(5205), - [anon_sym_crossinline] = ACTIONS(5205), - [anon_sym_expect] = ACTIONS(5205), - [anon_sym_actual] = ACTIONS(5205), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5207), - [sym_safe_nav] = ACTIONS(5207), + [3533] = { + [sym_type_constraints] = STATE(3725), + [sym_function_body] = STATE(3378), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_while] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, - [3503] = { - [sym__alpha_identifier] = ACTIONS(5011), - [anon_sym_AT] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_where] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5013), - [anon_sym_get] = ACTIONS(5011), - [anon_sym_set] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_DASH_GT] = ACTIONS(5013), - [sym_label] = ACTIONS(5013), - [anon_sym_in] = ACTIONS(5011), - [anon_sym_while] = ACTIONS(5011), - [anon_sym_DOT_DOT] = ACTIONS(5013), - [anon_sym_QMARK_COLON] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_PIPE_PIPE] = ACTIONS(5013), - [anon_sym_else] = ACTIONS(5011), - [anon_sym_COLON_COLON] = ACTIONS(5013), - [anon_sym_PLUS_EQ] = ACTIONS(5013), - [anon_sym_DASH_EQ] = ACTIONS(5013), - [anon_sym_STAR_EQ] = ACTIONS(5013), - [anon_sym_SLASH_EQ] = ACTIONS(5013), - [anon_sym_PERCENT_EQ] = ACTIONS(5013), - [anon_sym_BANG_EQ] = ACTIONS(5011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5013), - [anon_sym_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5013), - [anon_sym_LT_EQ] = ACTIONS(5013), - [anon_sym_GT_EQ] = ACTIONS(5013), - [anon_sym_BANGin] = ACTIONS(5013), - [anon_sym_is] = ACTIONS(5011), - [anon_sym_BANGis] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_as_QMARK] = ACTIONS(5013), - [anon_sym_PLUS_PLUS] = ACTIONS(5013), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_BANG_BANG] = ACTIONS(5013), - [anon_sym_suspend] = ACTIONS(5011), - [anon_sym_sealed] = ACTIONS(5011), - [anon_sym_annotation] = ACTIONS(5011), - [anon_sym_data] = ACTIONS(5011), - [anon_sym_inner] = ACTIONS(5011), - [anon_sym_value] = ACTIONS(5011), - [anon_sym_override] = ACTIONS(5011), - [anon_sym_lateinit] = ACTIONS(5011), - [anon_sym_public] = ACTIONS(5011), - [anon_sym_private] = ACTIONS(5011), - [anon_sym_internal] = ACTIONS(5011), - [anon_sym_protected] = ACTIONS(5011), - [anon_sym_tailrec] = ACTIONS(5011), - [anon_sym_operator] = ACTIONS(5011), - [anon_sym_infix] = ACTIONS(5011), - [anon_sym_inline] = ACTIONS(5011), - [anon_sym_external] = ACTIONS(5011), - [sym_property_modifier] = ACTIONS(5011), - [anon_sym_abstract] = ACTIONS(5011), - [anon_sym_final] = ACTIONS(5011), - [anon_sym_open] = ACTIONS(5011), - [anon_sym_vararg] = ACTIONS(5011), - [anon_sym_noinline] = ACTIONS(5011), - [anon_sym_crossinline] = ACTIONS(5011), - [anon_sym_expect] = ACTIONS(5011), - [anon_sym_actual] = ACTIONS(5011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5013), - [sym_safe_nav] = ACTIONS(5013), + [3534] = { + [sym_type_constraints] = STATE(3733), + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5448), + [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_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_value] = 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), }, - [3504] = { - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_RBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACE] = ACTIONS(4196), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_DASH_GT] = ACTIONS(4196), + [3535] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6875), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4188), + [anon_sym_continue_AT] = ACTIONS(4188), + [anon_sym_break_AT] = ACTIONS(4188), + [anon_sym_this_AT] = ACTIONS(4188), + [anon_sym_super_AT] = ACTIONS(4188), + [sym_real_literal] = ACTIONS(4188), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4188), + [sym_bin_literal] = ACTIONS(4188), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4188), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4188), + }, + [3536] = { + [sym__alpha_identifier] = ACTIONS(4999), + [anon_sym_AT] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [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_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_value] = 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), + }, + [3537] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6877), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), + }, + [3538] = { + [sym_type_constraints] = STATE(3734), + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + }, + [3539] = { + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_RBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_RPAREN] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [anon_sym_DASH_GT] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_while] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_PLUS_EQ] = ACTIONS(4240), + [anon_sym_DASH_EQ] = ACTIONS(4240), + [anon_sym_STAR_EQ] = ACTIONS(4240), + [anon_sym_SLASH_EQ] = ACTIONS(4240), + [anon_sym_PERCENT_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), + [sym_multiline_comment] = ACTIONS(3), + }, + [3540] = { + [sym_type_constraints] = STATE(3736), + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [3541] = { + [sym__alpha_identifier] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_RBRACK] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4770), + [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_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_value] = 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(4772), + [sym_safe_nav] = ACTIONS(4772), + [sym_multiline_comment] = ACTIONS(3), + }, + [3542] = { + [sym__alpha_identifier] = ACTIONS(4776), + [anon_sym_AT] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_RBRACK] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(4776), + [anon_sym_LBRACE] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_RPAREN] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_where] = ACTIONS(4776), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym_get] = ACTIONS(4776), + [anon_sym_set] = ACTIONS(4776), + [anon_sym_STAR] = ACTIONS(4776), + [anon_sym_DASH_GT] = ACTIONS(4778), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4776), + [anon_sym_while] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4778), + [anon_sym_QMARK_COLON] = ACTIONS(4778), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE_PIPE] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_COLON_COLON] = ACTIONS(4778), + [anon_sym_PLUS_EQ] = ACTIONS(4778), + [anon_sym_DASH_EQ] = ACTIONS(4778), + [anon_sym_STAR_EQ] = ACTIONS(4778), + [anon_sym_SLASH_EQ] = ACTIONS(4778), + [anon_sym_PERCENT_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4778), + [anon_sym_LT_EQ] = ACTIONS(4778), + [anon_sym_GT_EQ] = ACTIONS(4778), + [anon_sym_BANGin] = ACTIONS(4778), + [anon_sym_is] = ACTIONS(4776), + [anon_sym_BANGis] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4776), + [anon_sym_DASH] = ACTIONS(4776), + [anon_sym_SLASH] = ACTIONS(4776), + [anon_sym_PERCENT] = ACTIONS(4776), + [anon_sym_as_QMARK] = ACTIONS(4778), + [anon_sym_PLUS_PLUS] = ACTIONS(4778), + [anon_sym_DASH_DASH] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4778), + [anon_sym_suspend] = ACTIONS(4776), + [anon_sym_sealed] = ACTIONS(4776), + [anon_sym_annotation] = ACTIONS(4776), + [anon_sym_data] = ACTIONS(4776), + [anon_sym_inner] = ACTIONS(4776), + [anon_sym_value] = ACTIONS(4776), + [anon_sym_override] = ACTIONS(4776), + [anon_sym_lateinit] = ACTIONS(4776), + [anon_sym_public] = ACTIONS(4776), + [anon_sym_private] = ACTIONS(4776), + [anon_sym_internal] = ACTIONS(4776), + [anon_sym_protected] = ACTIONS(4776), + [anon_sym_tailrec] = ACTIONS(4776), + [anon_sym_operator] = ACTIONS(4776), + [anon_sym_infix] = ACTIONS(4776), + [anon_sym_inline] = ACTIONS(4776), + [anon_sym_external] = ACTIONS(4776), + [sym_property_modifier] = ACTIONS(4776), + [anon_sym_abstract] = ACTIONS(4776), + [anon_sym_final] = ACTIONS(4776), + [anon_sym_open] = ACTIONS(4776), + [anon_sym_vararg] = ACTIONS(4776), + [anon_sym_noinline] = ACTIONS(4776), + [anon_sym_crossinline] = ACTIONS(4776), + [anon_sym_expect] = ACTIONS(4776), + [anon_sym_actual] = ACTIONS(4776), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4778), + [sym_safe_nav] = ACTIONS(4778), + [sym_multiline_comment] = ACTIONS(3), + }, + [3543] = { + [sym__alpha_identifier] = ACTIONS(4780), + [anon_sym_AT] = ACTIONS(4782), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_RBRACK] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4780), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_COMMA] = ACTIONS(4782), + [anon_sym_RPAREN] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_where] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4782), + [anon_sym_get] = ACTIONS(4780), + [anon_sym_set] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4780), + [anon_sym_DASH_GT] = ACTIONS(4782), + [sym_label] = ACTIONS(4782), + [anon_sym_in] = ACTIONS(4780), + [anon_sym_while] = ACTIONS(4780), + [anon_sym_DOT_DOT] = ACTIONS(4782), + [anon_sym_QMARK_COLON] = ACTIONS(4782), + [anon_sym_AMP_AMP] = ACTIONS(4782), + [anon_sym_PIPE_PIPE] = ACTIONS(4782), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_COLON_COLON] = ACTIONS(4782), + [anon_sym_PLUS_EQ] = ACTIONS(4782), + [anon_sym_DASH_EQ] = ACTIONS(4782), + [anon_sym_STAR_EQ] = ACTIONS(4782), + [anon_sym_SLASH_EQ] = ACTIONS(4782), + [anon_sym_PERCENT_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4782), + [anon_sym_LT_EQ] = ACTIONS(4782), + [anon_sym_GT_EQ] = ACTIONS(4782), + [anon_sym_BANGin] = ACTIONS(4782), + [anon_sym_is] = ACTIONS(4780), + [anon_sym_BANGis] = ACTIONS(4782), + [anon_sym_PLUS] = ACTIONS(4780), + [anon_sym_DASH] = ACTIONS(4780), + [anon_sym_SLASH] = ACTIONS(4780), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4782), + [anon_sym_PLUS_PLUS] = ACTIONS(4782), + [anon_sym_DASH_DASH] = ACTIONS(4782), + [anon_sym_BANG_BANG] = ACTIONS(4782), + [anon_sym_suspend] = ACTIONS(4780), + [anon_sym_sealed] = ACTIONS(4780), + [anon_sym_annotation] = ACTIONS(4780), + [anon_sym_data] = ACTIONS(4780), + [anon_sym_inner] = ACTIONS(4780), + [anon_sym_value] = ACTIONS(4780), + [anon_sym_override] = ACTIONS(4780), + [anon_sym_lateinit] = ACTIONS(4780), + [anon_sym_public] = ACTIONS(4780), + [anon_sym_private] = ACTIONS(4780), + [anon_sym_internal] = ACTIONS(4780), + [anon_sym_protected] = ACTIONS(4780), + [anon_sym_tailrec] = ACTIONS(4780), + [anon_sym_operator] = ACTIONS(4780), + [anon_sym_infix] = ACTIONS(4780), + [anon_sym_inline] = ACTIONS(4780), + [anon_sym_external] = ACTIONS(4780), + [sym_property_modifier] = ACTIONS(4780), + [anon_sym_abstract] = ACTIONS(4780), + [anon_sym_final] = ACTIONS(4780), + [anon_sym_open] = ACTIONS(4780), + [anon_sym_vararg] = ACTIONS(4780), + [anon_sym_noinline] = ACTIONS(4780), + [anon_sym_crossinline] = ACTIONS(4780), + [anon_sym_expect] = ACTIONS(4780), + [anon_sym_actual] = ACTIONS(4780), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4782), + [sym_safe_nav] = ACTIONS(4782), + [sym_multiline_comment] = ACTIONS(3), + }, + [3544] = { + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_RBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_RPAREN] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(1738), + [anon_sym_set] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_DASH_GT] = ACTIONS(1740), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_while] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), + [anon_sym_suspend] = ACTIONS(1738), + [anon_sym_sealed] = ACTIONS(1738), + [anon_sym_annotation] = ACTIONS(1738), + [anon_sym_data] = ACTIONS(1738), + [anon_sym_inner] = ACTIONS(1738), + [anon_sym_value] = ACTIONS(1738), + [anon_sym_override] = ACTIONS(1738), + [anon_sym_lateinit] = ACTIONS(1738), + [anon_sym_public] = ACTIONS(1738), + [anon_sym_private] = ACTIONS(1738), + [anon_sym_internal] = ACTIONS(1738), + [anon_sym_protected] = ACTIONS(1738), + [anon_sym_tailrec] = ACTIONS(1738), + [anon_sym_operator] = ACTIONS(1738), + [anon_sym_infix] = ACTIONS(1738), + [anon_sym_inline] = ACTIONS(1738), + [anon_sym_external] = ACTIONS(1738), + [sym_property_modifier] = ACTIONS(1738), + [anon_sym_abstract] = ACTIONS(1738), + [anon_sym_final] = ACTIONS(1738), + [anon_sym_open] = ACTIONS(1738), + [anon_sym_vararg] = ACTIONS(1738), + [anon_sym_noinline] = ACTIONS(1738), + [anon_sym_crossinline] = ACTIONS(1738), + [anon_sym_expect] = ACTIONS(1738), + [anon_sym_actual] = ACTIONS(1738), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), + [sym_multiline_comment] = ACTIONS(3), + }, + [3545] = { + [sym__alpha_identifier] = ACTIONS(4788), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_RBRACK] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_RPAREN] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_where] = ACTIONS(4788), + [anon_sym_SEMI] = ACTIONS(4790), + [anon_sym_get] = ACTIONS(4788), + [anon_sym_set] = ACTIONS(4788), + [anon_sym_STAR] = ACTIONS(4788), + [anon_sym_DASH_GT] = ACTIONS(4790), + [sym_label] = ACTIONS(4790), + [anon_sym_in] = ACTIONS(4788), + [anon_sym_while] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4790), + [anon_sym_QMARK_COLON] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_COLON_COLON] = ACTIONS(4790), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4790), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_BANGin] = ACTIONS(4790), + [anon_sym_is] = ACTIONS(4788), + [anon_sym_BANGis] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_as_QMARK] = ACTIONS(4790), + [anon_sym_PLUS_PLUS] = ACTIONS(4790), + [anon_sym_DASH_DASH] = ACTIONS(4790), + [anon_sym_BANG_BANG] = ACTIONS(4790), + [anon_sym_suspend] = ACTIONS(4788), + [anon_sym_sealed] = ACTIONS(4788), + [anon_sym_annotation] = ACTIONS(4788), + [anon_sym_data] = ACTIONS(4788), + [anon_sym_inner] = ACTIONS(4788), + [anon_sym_value] = ACTIONS(4788), + [anon_sym_override] = ACTIONS(4788), + [anon_sym_lateinit] = ACTIONS(4788), + [anon_sym_public] = ACTIONS(4788), + [anon_sym_private] = ACTIONS(4788), + [anon_sym_internal] = ACTIONS(4788), + [anon_sym_protected] = ACTIONS(4788), + [anon_sym_tailrec] = ACTIONS(4788), + [anon_sym_operator] = ACTIONS(4788), + [anon_sym_infix] = ACTIONS(4788), + [anon_sym_inline] = ACTIONS(4788), + [anon_sym_external] = ACTIONS(4788), + [sym_property_modifier] = ACTIONS(4788), + [anon_sym_abstract] = ACTIONS(4788), + [anon_sym_final] = ACTIONS(4788), + [anon_sym_open] = ACTIONS(4788), + [anon_sym_vararg] = ACTIONS(4788), + [anon_sym_noinline] = ACTIONS(4788), + [anon_sym_crossinline] = ACTIONS(4788), + [anon_sym_expect] = ACTIONS(4788), + [anon_sym_actual] = ACTIONS(4788), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4790), + [sym_safe_nav] = ACTIONS(4790), + [sym_multiline_comment] = ACTIONS(3), + }, + [3546] = { + [sym__alpha_identifier] = ACTIONS(4792), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_RBRACK] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_RPAREN] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_where] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_get] = ACTIONS(4792), + [anon_sym_set] = ACTIONS(4792), + [anon_sym_STAR] = ACTIONS(4792), + [anon_sym_DASH_GT] = ACTIONS(4794), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_while] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4794), + [anon_sym_QMARK_COLON] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_COLON_COLON] = ACTIONS(4794), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_PERCENT_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4794), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_BANGin] = ACTIONS(4794), + [anon_sym_is] = ACTIONS(4792), + [anon_sym_BANGis] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_PERCENT] = ACTIONS(4792), + [anon_sym_as_QMARK] = ACTIONS(4794), + [anon_sym_PLUS_PLUS] = ACTIONS(4794), + [anon_sym_DASH_DASH] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4794), + [anon_sym_suspend] = ACTIONS(4792), + [anon_sym_sealed] = ACTIONS(4792), + [anon_sym_annotation] = ACTIONS(4792), + [anon_sym_data] = ACTIONS(4792), + [anon_sym_inner] = ACTIONS(4792), + [anon_sym_value] = ACTIONS(4792), + [anon_sym_override] = ACTIONS(4792), + [anon_sym_lateinit] = ACTIONS(4792), + [anon_sym_public] = ACTIONS(4792), + [anon_sym_private] = ACTIONS(4792), + [anon_sym_internal] = ACTIONS(4792), + [anon_sym_protected] = ACTIONS(4792), + [anon_sym_tailrec] = ACTIONS(4792), + [anon_sym_operator] = ACTIONS(4792), + [anon_sym_infix] = ACTIONS(4792), + [anon_sym_inline] = ACTIONS(4792), + [anon_sym_external] = ACTIONS(4792), + [sym_property_modifier] = ACTIONS(4792), + [anon_sym_abstract] = ACTIONS(4792), + [anon_sym_final] = ACTIONS(4792), + [anon_sym_open] = ACTIONS(4792), + [anon_sym_vararg] = ACTIONS(4792), + [anon_sym_noinline] = ACTIONS(4792), + [anon_sym_crossinline] = ACTIONS(4792), + [anon_sym_expect] = ACTIONS(4792), + [anon_sym_actual] = ACTIONS(4792), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4794), + [sym_safe_nav] = ACTIONS(4794), + [sym_multiline_comment] = ACTIONS(3), + }, + [3547] = { + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_RBRACK] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4804), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4804), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4802), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_get] = ACTIONS(4802), + [anon_sym_set] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [anon_sym_DASH_GT] = ACTIONS(4804), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_while] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_QMARK_COLON] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_COLON_COLON] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4804), + [anon_sym_DASH_EQ] = ACTIONS(4804), + [anon_sym_STAR_EQ] = ACTIONS(4804), + [anon_sym_SLASH_EQ] = ACTIONS(4804), + [anon_sym_PERCENT_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4804), + [anon_sym_BANGin] = ACTIONS(4804), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_BANGis] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_as_QMARK] = ACTIONS(4804), + [anon_sym_PLUS_PLUS] = ACTIONS(4804), + [anon_sym_DASH_DASH] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4804), + [anon_sym_suspend] = ACTIONS(4802), + [anon_sym_sealed] = ACTIONS(4802), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_data] = ACTIONS(4802), + [anon_sym_inner] = ACTIONS(4802), + [anon_sym_value] = ACTIONS(4802), + [anon_sym_override] = ACTIONS(4802), + [anon_sym_lateinit] = ACTIONS(4802), + [anon_sym_public] = ACTIONS(4802), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_internal] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_tailrec] = ACTIONS(4802), + [anon_sym_operator] = ACTIONS(4802), + [anon_sym_infix] = ACTIONS(4802), + [anon_sym_inline] = ACTIONS(4802), + [anon_sym_external] = ACTIONS(4802), + [sym_property_modifier] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_final] = ACTIONS(4802), + [anon_sym_open] = ACTIONS(4802), + [anon_sym_vararg] = ACTIONS(4802), + [anon_sym_noinline] = ACTIONS(4802), + [anon_sym_crossinline] = ACTIONS(4802), + [anon_sym_expect] = ACTIONS(4802), + [anon_sym_actual] = ACTIONS(4802), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4804), + [sym_safe_nav] = ACTIONS(4804), + [sym_multiline_comment] = ACTIONS(3), + }, + [3548] = { + [sym_type_constraints] = STATE(3668), + [sym_function_body] = STATE(3909), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3549] = { + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [anon_sym_DASH_GT] = ACTIONS(4276), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + }, + [3550] = { + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(4678), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_object] = ACTIONS(4676), + [anon_sym_fun] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_this] = ACTIONS(4676), + [anon_sym_super] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [sym_label] = ACTIONS(4676), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_null] = ACTIONS(4676), + [anon_sym_if] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_when] = ACTIONS(4676), + [anon_sym_try] = ACTIONS(4676), + [anon_sym_throw] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4676), + [anon_sym_continue] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4676), + [anon_sym_suspend] = ACTIONS(4676), + [anon_sym_sealed] = ACTIONS(4676), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_override] = ACTIONS(4676), + [anon_sym_lateinit] = ACTIONS(4676), + [anon_sym_public] = ACTIONS(4676), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_internal] = ACTIONS(4676), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_tailrec] = ACTIONS(4676), + [anon_sym_operator] = ACTIONS(4676), + [anon_sym_infix] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym_external] = ACTIONS(4676), + [sym_property_modifier] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_final] = ACTIONS(4676), + [anon_sym_open] = ACTIONS(4676), + [anon_sym_vararg] = ACTIONS(4676), + [anon_sym_noinline] = ACTIONS(4676), + [anon_sym_crossinline] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4678), + [anon_sym_continue_AT] = ACTIONS(4678), + [anon_sym_break_AT] = ACTIONS(4678), + [anon_sym_this_AT] = ACTIONS(4678), + [anon_sym_super_AT] = ACTIONS(4678), + [sym_real_literal] = ACTIONS(4678), + [sym_integer_literal] = ACTIONS(4676), + [sym_hex_literal] = ACTIONS(4678), + [sym_bin_literal] = ACTIONS(4678), + [anon_sym_true] = ACTIONS(4676), + [anon_sym_false] = ACTIONS(4676), + [anon_sym_SQUOTE] = ACTIONS(4678), + [sym__backtick_identifier] = ACTIONS(4678), + [sym__automatic_semicolon] = ACTIONS(4678), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4678), + }, + [3551] = { + [sym_function_body] = STATE(3123), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(6879), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [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_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(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [3552] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_RBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_as] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_RPAREN] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_DASH_GT] = ACTIONS(4990), + [sym_label] = ACTIONS(4990), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_while] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4990), + [anon_sym_AMP_AMP] = ACTIONS(4990), + [anon_sym_PIPE_PIPE] = ACTIONS(4990), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4990), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_PERCENT_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_BANGin] = ACTIONS(4990), + [anon_sym_is] = ACTIONS(4988), + [anon_sym_BANGis] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_as_QMARK] = ACTIONS(4990), + [anon_sym_PLUS_PLUS] = ACTIONS(4990), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_BANG_BANG] = ACTIONS(4990), + [anon_sym_suspend] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_annotation] = ACTIONS(4988), + [anon_sym_data] = ACTIONS(4988), + [anon_sym_inner] = ACTIONS(4988), + [anon_sym_value] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_lateinit] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_tailrec] = ACTIONS(4988), + [anon_sym_operator] = ACTIONS(4988), + [anon_sym_infix] = ACTIONS(4988), + [anon_sym_inline] = ACTIONS(4988), + [anon_sym_external] = ACTIONS(4988), + [sym_property_modifier] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(4988), + [anon_sym_open] = ACTIONS(4988), + [anon_sym_vararg] = ACTIONS(4988), + [anon_sym_noinline] = ACTIONS(4988), + [anon_sym_crossinline] = ACTIONS(4988), + [anon_sym_expect] = ACTIONS(4988), + [anon_sym_actual] = ACTIONS(4988), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4990), + [sym_safe_nav] = ACTIONS(4990), [sym_multiline_comment] = ACTIONS(3), }, - [3505] = { + [3553] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_RBRACK] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4810), + [anon_sym_as] = ACTIONS(4810), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_where] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_get] = ACTIONS(4810), + [anon_sym_set] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4810), + [anon_sym_DASH_GT] = ACTIONS(4812), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4810), + [anon_sym_while] = ACTIONS(4810), + [anon_sym_DOT_DOT] = ACTIONS(4812), + [anon_sym_QMARK_COLON] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4810), + [anon_sym_COLON_COLON] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_BANGin] = ACTIONS(4812), + [anon_sym_is] = ACTIONS(4810), + [anon_sym_BANGis] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_SLASH] = ACTIONS(4810), + [anon_sym_PERCENT] = ACTIONS(4810), + [anon_sym_as_QMARK] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4812), + [anon_sym_suspend] = ACTIONS(4810), + [anon_sym_sealed] = ACTIONS(4810), + [anon_sym_annotation] = ACTIONS(4810), + [anon_sym_data] = ACTIONS(4810), + [anon_sym_inner] = ACTIONS(4810), + [anon_sym_value] = ACTIONS(4810), + [anon_sym_override] = ACTIONS(4810), + [anon_sym_lateinit] = ACTIONS(4810), + [anon_sym_public] = ACTIONS(4810), + [anon_sym_private] = ACTIONS(4810), + [anon_sym_internal] = ACTIONS(4810), + [anon_sym_protected] = ACTIONS(4810), + [anon_sym_tailrec] = ACTIONS(4810), + [anon_sym_operator] = ACTIONS(4810), + [anon_sym_infix] = ACTIONS(4810), + [anon_sym_inline] = ACTIONS(4810), + [anon_sym_external] = ACTIONS(4810), + [sym_property_modifier] = ACTIONS(4810), + [anon_sym_abstract] = ACTIONS(4810), + [anon_sym_final] = ACTIONS(4810), + [anon_sym_open] = ACTIONS(4810), + [anon_sym_vararg] = ACTIONS(4810), + [anon_sym_noinline] = ACTIONS(4810), + [anon_sym_crossinline] = ACTIONS(4810), + [anon_sym_expect] = ACTIONS(4810), + [anon_sym_actual] = ACTIONS(4810), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4812), + [sym_safe_nav] = ACTIONS(4812), + [sym_multiline_comment] = ACTIONS(3), + }, + [3554] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_RBRACK] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_RPAREN] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_where] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_get] = ACTIONS(4814), + [anon_sym_set] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_DASH_GT] = ACTIONS(4816), + [sym_label] = ACTIONS(4816), + [anon_sym_in] = ACTIONS(4814), + [anon_sym_while] = ACTIONS(4814), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_QMARK_COLON] = ACTIONS(4816), + [anon_sym_AMP_AMP] = ACTIONS(4816), + [anon_sym_PIPE_PIPE] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4814), + [anon_sym_COLON_COLON] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4816), + [anon_sym_DASH_EQ] = ACTIONS(4816), + [anon_sym_STAR_EQ] = ACTIONS(4816), + [anon_sym_SLASH_EQ] = ACTIONS(4816), + [anon_sym_PERCENT_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4816), + [anon_sym_BANGin] = ACTIONS(4816), + [anon_sym_is] = ACTIONS(4814), + [anon_sym_BANGis] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_as_QMARK] = ACTIONS(4816), + [anon_sym_PLUS_PLUS] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4816), + [anon_sym_BANG_BANG] = ACTIONS(4816), + [anon_sym_suspend] = ACTIONS(4814), + [anon_sym_sealed] = ACTIONS(4814), + [anon_sym_annotation] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4814), + [anon_sym_inner] = ACTIONS(4814), + [anon_sym_value] = ACTIONS(4814), + [anon_sym_override] = ACTIONS(4814), + [anon_sym_lateinit] = ACTIONS(4814), + [anon_sym_public] = ACTIONS(4814), + [anon_sym_private] = ACTIONS(4814), + [anon_sym_internal] = ACTIONS(4814), + [anon_sym_protected] = ACTIONS(4814), + [anon_sym_tailrec] = ACTIONS(4814), + [anon_sym_operator] = ACTIONS(4814), + [anon_sym_infix] = ACTIONS(4814), + [anon_sym_inline] = ACTIONS(4814), + [anon_sym_external] = ACTIONS(4814), + [sym_property_modifier] = ACTIONS(4814), + [anon_sym_abstract] = ACTIONS(4814), + [anon_sym_final] = ACTIONS(4814), + [anon_sym_open] = ACTIONS(4814), + [anon_sym_vararg] = ACTIONS(4814), + [anon_sym_noinline] = ACTIONS(4814), + [anon_sym_crossinline] = ACTIONS(4814), + [anon_sym_expect] = ACTIONS(4814), + [anon_sym_actual] = ACTIONS(4814), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4816), + [sym_safe_nav] = ACTIONS(4816), + [sym_multiline_comment] = ACTIONS(3), + }, + [3555] = { + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [3556] = { + [sym_type_constraints] = STATE(3943), + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6881), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5742), + [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_value] = 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), + }, + [3557] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_RBRACK] = ACTIONS(4824), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_as] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_where] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_get] = ACTIONS(4822), + [anon_sym_set] = ACTIONS(4822), + [anon_sym_STAR] = ACTIONS(4822), + [anon_sym_DASH_GT] = ACTIONS(4824), + [sym_label] = ACTIONS(4824), + [anon_sym_in] = ACTIONS(4822), + [anon_sym_while] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_QMARK_COLON] = ACTIONS(4824), + [anon_sym_AMP_AMP] = ACTIONS(4824), + [anon_sym_PIPE_PIPE] = ACTIONS(4824), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_COLON_COLON] = ACTIONS(4824), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_PERCENT_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4824), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_BANGin] = ACTIONS(4824), + [anon_sym_is] = ACTIONS(4822), + [anon_sym_BANGis] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_as_QMARK] = ACTIONS(4824), + [anon_sym_PLUS_PLUS] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4824), + [anon_sym_BANG_BANG] = ACTIONS(4824), + [anon_sym_suspend] = ACTIONS(4822), + [anon_sym_sealed] = ACTIONS(4822), + [anon_sym_annotation] = ACTIONS(4822), + [anon_sym_data] = ACTIONS(4822), + [anon_sym_inner] = ACTIONS(4822), + [anon_sym_value] = ACTIONS(4822), + [anon_sym_override] = ACTIONS(4822), + [anon_sym_lateinit] = ACTIONS(4822), + [anon_sym_public] = ACTIONS(4822), + [anon_sym_private] = ACTIONS(4822), + [anon_sym_internal] = ACTIONS(4822), + [anon_sym_protected] = ACTIONS(4822), + [anon_sym_tailrec] = ACTIONS(4822), + [anon_sym_operator] = ACTIONS(4822), + [anon_sym_infix] = ACTIONS(4822), + [anon_sym_inline] = ACTIONS(4822), + [anon_sym_external] = ACTIONS(4822), + [sym_property_modifier] = ACTIONS(4822), + [anon_sym_abstract] = ACTIONS(4822), + [anon_sym_final] = ACTIONS(4822), + [anon_sym_open] = ACTIONS(4822), + [anon_sym_vararg] = ACTIONS(4822), + [anon_sym_noinline] = ACTIONS(4822), + [anon_sym_crossinline] = ACTIONS(4822), + [anon_sym_expect] = ACTIONS(4822), + [anon_sym_actual] = ACTIONS(4822), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4824), + [sym_safe_nav] = ACTIONS(4824), + [sym_multiline_comment] = ACTIONS(3), + }, + [3558] = { + [sym__alpha_identifier] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_RBRACK] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4832), + [anon_sym_as] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4834), + [anon_sym_RBRACE] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4834), + [anon_sym_COMMA] = ACTIONS(4834), + [anon_sym_RPAREN] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_where] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4834), + [anon_sym_get] = ACTIONS(4832), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [anon_sym_DASH_GT] = ACTIONS(4834), + [sym_label] = ACTIONS(4834), + [anon_sym_in] = ACTIONS(4832), + [anon_sym_while] = ACTIONS(4832), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_QMARK_COLON] = ACTIONS(4834), + [anon_sym_AMP_AMP] = ACTIONS(4834), + [anon_sym_PIPE_PIPE] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4832), + [anon_sym_COLON_COLON] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4834), + [anon_sym_DASH_EQ] = ACTIONS(4834), + [anon_sym_STAR_EQ] = ACTIONS(4834), + [anon_sym_SLASH_EQ] = ACTIONS(4834), + [anon_sym_PERCENT_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4834), + [anon_sym_BANGin] = ACTIONS(4834), + [anon_sym_is] = ACTIONS(4832), + [anon_sym_BANGis] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_as_QMARK] = ACTIONS(4834), + [anon_sym_PLUS_PLUS] = ACTIONS(4834), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_BANG_BANG] = ACTIONS(4834), + [anon_sym_suspend] = ACTIONS(4832), + [anon_sym_sealed] = ACTIONS(4832), + [anon_sym_annotation] = ACTIONS(4832), + [anon_sym_data] = ACTIONS(4832), + [anon_sym_inner] = ACTIONS(4832), + [anon_sym_value] = ACTIONS(4832), + [anon_sym_override] = ACTIONS(4832), + [anon_sym_lateinit] = ACTIONS(4832), + [anon_sym_public] = ACTIONS(4832), + [anon_sym_private] = ACTIONS(4832), + [anon_sym_internal] = ACTIONS(4832), + [anon_sym_protected] = ACTIONS(4832), + [anon_sym_tailrec] = ACTIONS(4832), + [anon_sym_operator] = ACTIONS(4832), + [anon_sym_infix] = ACTIONS(4832), + [anon_sym_inline] = ACTIONS(4832), + [anon_sym_external] = ACTIONS(4832), + [sym_property_modifier] = ACTIONS(4832), + [anon_sym_abstract] = ACTIONS(4832), + [anon_sym_final] = ACTIONS(4832), + [anon_sym_open] = ACTIONS(4832), + [anon_sym_vararg] = ACTIONS(4832), + [anon_sym_noinline] = ACTIONS(4832), + [anon_sym_crossinline] = ACTIONS(4832), + [anon_sym_expect] = ACTIONS(4832), + [anon_sym_actual] = ACTIONS(4832), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4834), + [sym_safe_nav] = ACTIONS(4834), + [sym_multiline_comment] = ACTIONS(3), + }, + [3559] = { + [sym_type_constraints] = STATE(3657), + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5742), + [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_value] = 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), + }, + [3560] = { + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_RBRACK] = ACTIONS(4848), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [anon_sym_DASH_GT] = ACTIONS(4848), + [sym_label] = ACTIONS(4848), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_while] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_suspend] = ACTIONS(4846), + [anon_sym_sealed] = ACTIONS(4846), + [anon_sym_annotation] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_override] = ACTIONS(4846), + [anon_sym_lateinit] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_internal] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_tailrec] = ACTIONS(4846), + [anon_sym_operator] = ACTIONS(4846), + [anon_sym_infix] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_external] = ACTIONS(4846), + [sym_property_modifier] = ACTIONS(4846), + [anon_sym_abstract] = ACTIONS(4846), + [anon_sym_final] = ACTIONS(4846), + [anon_sym_open] = ACTIONS(4846), + [anon_sym_vararg] = ACTIONS(4846), + [anon_sym_noinline] = ACTIONS(4846), + [anon_sym_crossinline] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), + [sym_multiline_comment] = ACTIONS(3), + }, + [3561] = { + [sym__alpha_identifier] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3065), + [anon_sym_set] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3067), + [anon_sym_QMARK_COLON] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_as_QMARK] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_BANG_BANG] = ACTIONS(3067), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3065), + [anon_sym_inner] = ACTIONS(3065), + [anon_sym_value] = ACTIONS(3065), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3065), + [anon_sym_actual] = ACTIONS(3065), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3067), + [sym_multiline_comment] = ACTIONS(3), + }, + [3562] = { + [sym__alpha_identifier] = ACTIONS(3932), + [anon_sym_AT] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_RBRACK] = ACTIONS(3934), + [anon_sym_DOT] = ACTIONS(3932), + [anon_sym_as] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3934), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_where] = ACTIONS(3932), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3932), + [anon_sym_set] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_DASH_GT] = ACTIONS(3934), + [sym_label] = ACTIONS(3934), + [anon_sym_in] = ACTIONS(3932), + [anon_sym_while] = ACTIONS(3932), + [anon_sym_DOT_DOT] = ACTIONS(3934), + [anon_sym_QMARK_COLON] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3934), + [anon_sym_SLASH_EQ] = ACTIONS(3934), + [anon_sym_PERCENT_EQ] = ACTIONS(3934), + [anon_sym_BANG_EQ] = ACTIONS(3932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_BANGin] = ACTIONS(3934), + [anon_sym_is] = ACTIONS(3932), + [anon_sym_BANGis] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_as_QMARK] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [anon_sym_BANG_BANG] = ACTIONS(3934), + [anon_sym_suspend] = ACTIONS(3932), + [anon_sym_sealed] = ACTIONS(3932), + [anon_sym_annotation] = ACTIONS(3932), + [anon_sym_data] = ACTIONS(3932), + [anon_sym_inner] = ACTIONS(3932), + [anon_sym_value] = ACTIONS(3932), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_lateinit] = ACTIONS(3932), + [anon_sym_public] = ACTIONS(3932), + [anon_sym_private] = ACTIONS(3932), + [anon_sym_internal] = ACTIONS(3932), + [anon_sym_protected] = ACTIONS(3932), + [anon_sym_tailrec] = ACTIONS(3932), + [anon_sym_operator] = ACTIONS(3932), + [anon_sym_infix] = ACTIONS(3932), + [anon_sym_inline] = ACTIONS(3932), + [anon_sym_external] = ACTIONS(3932), + [sym_property_modifier] = ACTIONS(3932), + [anon_sym_abstract] = ACTIONS(3932), + [anon_sym_final] = ACTIONS(3932), + [anon_sym_open] = ACTIONS(3932), + [anon_sym_vararg] = ACTIONS(3932), + [anon_sym_noinline] = ACTIONS(3932), + [anon_sym_crossinline] = ACTIONS(3932), + [anon_sym_expect] = ACTIONS(3932), + [anon_sym_actual] = ACTIONS(3932), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3934), + [sym_safe_nav] = ACTIONS(3934), + [sym_multiline_comment] = ACTIONS(3), + }, + [3563] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_RBRACK] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_RPAREN] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_DASH_GT] = ACTIONS(4894), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_while] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), + [sym_multiline_comment] = ACTIONS(3), + }, + [3564] = { + [sym_function_body] = STATE(3913), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(6883), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_where] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_PLUS_EQ] = ACTIONS(4252), + [anon_sym_DASH_EQ] = ACTIONS(4252), + [anon_sym_STAR_EQ] = ACTIONS(4252), + [anon_sym_SLASH_EQ] = ACTIONS(4252), + [anon_sym_PERCENT_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + }, + [3565] = { + [sym__alpha_identifier] = ACTIONS(4900), + [anon_sym_AT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_RBRACK] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4902), + [anon_sym_RBRACE] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_RPAREN] = ACTIONS(4902), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4902), + [anon_sym_get] = ACTIONS(4900), + [anon_sym_set] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_DASH_GT] = ACTIONS(4902), + [sym_label] = ACTIONS(4902), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_while] = ACTIONS(4900), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_QMARK_COLON] = ACTIONS(4902), + [anon_sym_AMP_AMP] = ACTIONS(4902), + [anon_sym_PIPE_PIPE] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(4902), + [anon_sym_PLUS_EQ] = ACTIONS(4902), + [anon_sym_DASH_EQ] = ACTIONS(4902), + [anon_sym_STAR_EQ] = ACTIONS(4902), + [anon_sym_SLASH_EQ] = ACTIONS(4902), + [anon_sym_PERCENT_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4902), + [anon_sym_BANGin] = ACTIONS(4902), + [anon_sym_is] = ACTIONS(4900), + [anon_sym_BANGis] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_as_QMARK] = ACTIONS(4902), + [anon_sym_PLUS_PLUS] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_BANG_BANG] = ACTIONS(4902), + [anon_sym_suspend] = ACTIONS(4900), + [anon_sym_sealed] = ACTIONS(4900), + [anon_sym_annotation] = ACTIONS(4900), + [anon_sym_data] = ACTIONS(4900), + [anon_sym_inner] = ACTIONS(4900), + [anon_sym_value] = ACTIONS(4900), + [anon_sym_override] = ACTIONS(4900), + [anon_sym_lateinit] = ACTIONS(4900), + [anon_sym_public] = ACTIONS(4900), + [anon_sym_private] = ACTIONS(4900), + [anon_sym_internal] = ACTIONS(4900), + [anon_sym_protected] = ACTIONS(4900), + [anon_sym_tailrec] = ACTIONS(4900), + [anon_sym_operator] = ACTIONS(4900), + [anon_sym_infix] = ACTIONS(4900), + [anon_sym_inline] = ACTIONS(4900), + [anon_sym_external] = ACTIONS(4900), + [sym_property_modifier] = ACTIONS(4900), + [anon_sym_abstract] = ACTIONS(4900), + [anon_sym_final] = ACTIONS(4900), + [anon_sym_open] = ACTIONS(4900), + [anon_sym_vararg] = ACTIONS(4900), + [anon_sym_noinline] = ACTIONS(4900), + [anon_sym_crossinline] = ACTIONS(4900), + [anon_sym_expect] = ACTIONS(4900), + [anon_sym_actual] = ACTIONS(4900), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4902), + [sym_safe_nav] = ACTIONS(4902), + [sym_multiline_comment] = ACTIONS(3), + }, + [3566] = { + [sym__alpha_identifier] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_where] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_get] = ACTIONS(5029), + [anon_sym_set] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_DASH_GT] = ACTIONS(5031), + [sym_label] = ACTIONS(5031), + [anon_sym_in] = ACTIONS(5029), + [anon_sym_while] = ACTIONS(5029), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_QMARK_COLON] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym_PLUS_EQ] = ACTIONS(5031), + [anon_sym_DASH_EQ] = ACTIONS(5031), + [anon_sym_STAR_EQ] = ACTIONS(5031), + [anon_sym_SLASH_EQ] = ACTIONS(5031), + [anon_sym_PERCENT_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_BANGin] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5029), + [anon_sym_BANGis] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_as_QMARK] = ACTIONS(5031), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_BANG_BANG] = ACTIONS(5031), + [anon_sym_suspend] = ACTIONS(5029), + [anon_sym_sealed] = ACTIONS(5029), + [anon_sym_annotation] = ACTIONS(5029), + [anon_sym_data] = ACTIONS(5029), + [anon_sym_inner] = ACTIONS(5029), + [anon_sym_value] = ACTIONS(5029), + [anon_sym_override] = ACTIONS(5029), + [anon_sym_lateinit] = ACTIONS(5029), + [anon_sym_public] = ACTIONS(5029), + [anon_sym_private] = ACTIONS(5029), + [anon_sym_internal] = ACTIONS(5029), + [anon_sym_protected] = ACTIONS(5029), + [anon_sym_tailrec] = ACTIONS(5029), + [anon_sym_operator] = ACTIONS(5029), + [anon_sym_infix] = ACTIONS(5029), + [anon_sym_inline] = ACTIONS(5029), + [anon_sym_external] = ACTIONS(5029), + [sym_property_modifier] = ACTIONS(5029), + [anon_sym_abstract] = ACTIONS(5029), + [anon_sym_final] = ACTIONS(5029), + [anon_sym_open] = ACTIONS(5029), + [anon_sym_vararg] = ACTIONS(5029), + [anon_sym_noinline] = ACTIONS(5029), + [anon_sym_crossinline] = ACTIONS(5029), + [anon_sym_expect] = ACTIONS(5029), + [anon_sym_actual] = ACTIONS(5029), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5031), + [sym_safe_nav] = ACTIONS(5031), + [sym_multiline_comment] = ACTIONS(3), + }, + [3567] = { [sym__alpha_identifier] = ACTIONS(5007), [anon_sym_AT] = ACTIONS(5009), [anon_sym_LBRACK] = ACTIONS(5009), @@ -401121,7 +406536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(5009), [anon_sym_COMMA] = ACTIONS(5009), [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LT] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(6885), [anon_sym_GT] = ACTIONS(5007), [anon_sym_where] = ACTIONS(5007), [anon_sym_SEMI] = ACTIONS(5009), @@ -401191,7 +406606,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5009), [sym_multiline_comment] = ACTIONS(3), }, - [3506] = { + [3568] = { + [sym__alpha_identifier] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_RBRACK] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1580), + [anon_sym_set] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [anon_sym_DASH_GT] = ACTIONS(1578), + [sym_label] = ACTIONS(1578), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_while] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1578), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1580), + [anon_sym_inner] = ACTIONS(1580), + [anon_sym_value] = ACTIONS(1580), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1580), + [anon_sym_actual] = ACTIONS(1580), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), + [sym_multiline_comment] = ACTIONS(3), + }, + [3569] = { + [sym__alpha_identifier] = ACTIONS(5019), + [anon_sym_AT] = ACTIONS(5021), + [anon_sym_LBRACK] = ACTIONS(5021), + [anon_sym_RBRACK] = ACTIONS(5021), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_as] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5021), + [anon_sym_RBRACE] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5021), + [anon_sym_COMMA] = ACTIONS(5021), + [anon_sym_RPAREN] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5019), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_SEMI] = ACTIONS(5021), + [anon_sym_get] = ACTIONS(5019), + [anon_sym_set] = ACTIONS(5019), + [anon_sym_STAR] = ACTIONS(5019), + [anon_sym_DASH_GT] = ACTIONS(5021), + [sym_label] = ACTIONS(5021), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_while] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5021), + [anon_sym_QMARK_COLON] = ACTIONS(5021), + [anon_sym_AMP_AMP] = ACTIONS(5021), + [anon_sym_PIPE_PIPE] = ACTIONS(5021), + [anon_sym_else] = ACTIONS(5019), + [anon_sym_COLON_COLON] = ACTIONS(5021), + [anon_sym_PLUS_EQ] = ACTIONS(5021), + [anon_sym_DASH_EQ] = ACTIONS(5021), + [anon_sym_STAR_EQ] = ACTIONS(5021), + [anon_sym_SLASH_EQ] = ACTIONS(5021), + [anon_sym_PERCENT_EQ] = ACTIONS(5021), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5021), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5021), + [anon_sym_LT_EQ] = ACTIONS(5021), + [anon_sym_GT_EQ] = ACTIONS(5021), + [anon_sym_BANGin] = ACTIONS(5021), + [anon_sym_is] = ACTIONS(5019), + [anon_sym_BANGis] = ACTIONS(5021), + [anon_sym_PLUS] = ACTIONS(5019), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_SLASH] = ACTIONS(5019), + [anon_sym_PERCENT] = ACTIONS(5019), + [anon_sym_as_QMARK] = ACTIONS(5021), + [anon_sym_PLUS_PLUS] = ACTIONS(5021), + [anon_sym_DASH_DASH] = ACTIONS(5021), + [anon_sym_BANG_BANG] = ACTIONS(5021), + [anon_sym_suspend] = ACTIONS(5019), + [anon_sym_sealed] = ACTIONS(5019), + [anon_sym_annotation] = ACTIONS(5019), + [anon_sym_data] = ACTIONS(5019), + [anon_sym_inner] = ACTIONS(5019), + [anon_sym_value] = ACTIONS(5019), + [anon_sym_override] = ACTIONS(5019), + [anon_sym_lateinit] = ACTIONS(5019), + [anon_sym_public] = ACTIONS(5019), + [anon_sym_private] = ACTIONS(5019), + [anon_sym_internal] = ACTIONS(5019), + [anon_sym_protected] = ACTIONS(5019), + [anon_sym_tailrec] = ACTIONS(5019), + [anon_sym_operator] = ACTIONS(5019), + [anon_sym_infix] = ACTIONS(5019), + [anon_sym_inline] = ACTIONS(5019), + [anon_sym_external] = ACTIONS(5019), + [sym_property_modifier] = ACTIONS(5019), + [anon_sym_abstract] = ACTIONS(5019), + [anon_sym_final] = ACTIONS(5019), + [anon_sym_open] = ACTIONS(5019), + [anon_sym_vararg] = ACTIONS(5019), + [anon_sym_noinline] = ACTIONS(5019), + [anon_sym_crossinline] = ACTIONS(5019), + [anon_sym_expect] = ACTIONS(5019), + [anon_sym_actual] = ACTIONS(5019), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5021), + [sym_safe_nav] = ACTIONS(5021), + [sym_multiline_comment] = ACTIONS(3), + }, + [3570] = { + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3952), + [anon_sym_RBRACK] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_RPAREN] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [anon_sym_DASH_GT] = ACTIONS(3952), + [sym_label] = ACTIONS(3952), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_PLUS_EQ] = ACTIONS(3952), + [anon_sym_DASH_EQ] = ACTIONS(3952), + [anon_sym_STAR_EQ] = ACTIONS(3952), + [anon_sym_SLASH_EQ] = ACTIONS(3952), + [anon_sym_PERCENT_EQ] = ACTIONS(3952), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_BANG_BANG] = ACTIONS(3952), + [anon_sym_suspend] = ACTIONS(3950), + [anon_sym_sealed] = ACTIONS(3950), + [anon_sym_annotation] = ACTIONS(3950), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [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(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3952), + [sym_multiline_comment] = ACTIONS(3), + }, + [3571] = { + [aux_sym_nullable_type_repeat1] = STATE(3455), + [sym__alpha_identifier] = ACTIONS(4270), + [anon_sym_AT] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [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_SEMI] = ACTIONS(4272), + [anon_sym_get] = ACTIONS(4270), + [anon_sym_set] = ACTIONS(4270), + [sym__quest] = ACTIONS(6809), + [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_value] = 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), + }, + [3572] = { + [sym_type_constraints] = STATE(3968), + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(6887), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + }, + [3573] = { [sym__alpha_identifier] = ACTIONS(5003), [anon_sym_AT] = ACTIONS(5005), [anon_sym_LBRACK] = ACTIONS(5005), @@ -401274,1059 +407104,1474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5005), [sym_multiline_comment] = ACTIONS(3), }, - [3507] = { - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_RBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_RPAREN] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_DASH_GT] = ACTIONS(1798), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_while] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(1796), - [anon_sym_sealed] = ACTIONS(1796), - [anon_sym_annotation] = ACTIONS(1796), - [anon_sym_data] = ACTIONS(1796), - [anon_sym_inner] = ACTIONS(1796), - [anon_sym_value] = ACTIONS(1796), - [anon_sym_override] = ACTIONS(1796), - [anon_sym_lateinit] = ACTIONS(1796), - [anon_sym_public] = ACTIONS(1796), - [anon_sym_private] = ACTIONS(1796), - [anon_sym_internal] = ACTIONS(1796), - [anon_sym_protected] = ACTIONS(1796), - [anon_sym_tailrec] = ACTIONS(1796), - [anon_sym_operator] = ACTIONS(1796), - [anon_sym_infix] = ACTIONS(1796), - [anon_sym_inline] = ACTIONS(1796), - [anon_sym_external] = ACTIONS(1796), - [sym_property_modifier] = ACTIONS(1796), - [anon_sym_abstract] = ACTIONS(1796), - [anon_sym_final] = ACTIONS(1796), - [anon_sym_open] = ACTIONS(1796), - [anon_sym_vararg] = ACTIONS(1796), - [anon_sym_noinline] = ACTIONS(1796), - [anon_sym_crossinline] = ACTIONS(1796), - [anon_sym_expect] = ACTIONS(1796), - [anon_sym_actual] = ACTIONS(1796), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [3574] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_RBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_RPAREN] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [anon_sym_DASH_GT] = ACTIONS(4994), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_while] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(6827), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_PERCENT_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_suspend] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_annotation] = ACTIONS(4992), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_lateinit] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_tailrec] = ACTIONS(4992), + [anon_sym_operator] = ACTIONS(4992), + [anon_sym_infix] = ACTIONS(4992), + [anon_sym_inline] = ACTIONS(4992), + [anon_sym_external] = ACTIONS(4992), + [sym_property_modifier] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_final] = ACTIONS(4992), + [anon_sym_open] = ACTIONS(4992), + [anon_sym_vararg] = ACTIONS(4992), + [anon_sym_noinline] = ACTIONS(4992), + [anon_sym_crossinline] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), [sym_multiline_comment] = ACTIONS(3), }, - [3508] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4995), - [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_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_value] = 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), + [3575] = { + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_RBRACK] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_RPAREN] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [anon_sym_DASH_GT] = ACTIONS(4890), + [sym_label] = ACTIONS(4890), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_while] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_suspend] = ACTIONS(4888), + [anon_sym_sealed] = ACTIONS(4888), + [anon_sym_annotation] = ACTIONS(4888), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_override] = ACTIONS(4888), + [anon_sym_lateinit] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_internal] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_tailrec] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_infix] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym_external] = ACTIONS(4888), + [sym_property_modifier] = ACTIONS(4888), + [anon_sym_abstract] = ACTIONS(4888), + [anon_sym_final] = ACTIONS(4888), + [anon_sym_open] = ACTIONS(4888), + [anon_sym_vararg] = ACTIONS(4888), + [anon_sym_noinline] = ACTIONS(4888), + [anon_sym_crossinline] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), [sym_multiline_comment] = ACTIONS(3), }, - [3509] = { - [sym__alpha_identifier] = ACTIONS(5157), - [anon_sym_AT] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5159), - [anon_sym_RBRACK] = ACTIONS(5159), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_as] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_where] = ACTIONS(5157), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_get] = ACTIONS(5157), - [anon_sym_set] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [anon_sym_DASH_GT] = ACTIONS(5159), - [sym_label] = ACTIONS(5159), - [anon_sym_in] = ACTIONS(5157), - [anon_sym_while] = ACTIONS(5157), - [anon_sym_DOT_DOT] = ACTIONS(5159), - [anon_sym_QMARK_COLON] = ACTIONS(5159), - [anon_sym_AMP_AMP] = ACTIONS(5159), - [anon_sym_PIPE_PIPE] = ACTIONS(5159), - [anon_sym_else] = ACTIONS(5157), - [anon_sym_COLON_COLON] = ACTIONS(5159), - [anon_sym_PLUS_EQ] = ACTIONS(5159), - [anon_sym_DASH_EQ] = ACTIONS(5159), - [anon_sym_STAR_EQ] = ACTIONS(5159), - [anon_sym_SLASH_EQ] = ACTIONS(5159), - [anon_sym_PERCENT_EQ] = ACTIONS(5159), - [anon_sym_BANG_EQ] = ACTIONS(5157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5159), - [anon_sym_EQ_EQ] = ACTIONS(5157), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5159), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5159), - [anon_sym_BANGin] = ACTIONS(5159), - [anon_sym_is] = ACTIONS(5157), - [anon_sym_BANGis] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_PERCENT] = ACTIONS(5157), - [anon_sym_as_QMARK] = ACTIONS(5159), - [anon_sym_PLUS_PLUS] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5159), - [anon_sym_BANG_BANG] = ACTIONS(5159), - [anon_sym_suspend] = ACTIONS(5157), - [anon_sym_sealed] = ACTIONS(5157), - [anon_sym_annotation] = ACTIONS(5157), - [anon_sym_data] = ACTIONS(5157), - [anon_sym_inner] = ACTIONS(5157), - [anon_sym_value] = ACTIONS(5157), - [anon_sym_override] = ACTIONS(5157), - [anon_sym_lateinit] = ACTIONS(5157), - [anon_sym_public] = ACTIONS(5157), - [anon_sym_private] = ACTIONS(5157), - [anon_sym_internal] = ACTIONS(5157), - [anon_sym_protected] = ACTIONS(5157), - [anon_sym_tailrec] = ACTIONS(5157), - [anon_sym_operator] = ACTIONS(5157), - [anon_sym_infix] = ACTIONS(5157), - [anon_sym_inline] = ACTIONS(5157), - [anon_sym_external] = ACTIONS(5157), - [sym_property_modifier] = ACTIONS(5157), - [anon_sym_abstract] = ACTIONS(5157), - [anon_sym_final] = ACTIONS(5157), - [anon_sym_open] = ACTIONS(5157), - [anon_sym_vararg] = ACTIONS(5157), - [anon_sym_noinline] = ACTIONS(5157), - [anon_sym_crossinline] = ACTIONS(5157), - [anon_sym_expect] = ACTIONS(5157), - [anon_sym_actual] = ACTIONS(5157), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5159), - [sym_safe_nav] = ACTIONS(5159), + [3576] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_as] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_RPAREN] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_where] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_get] = ACTIONS(4984), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_DASH_GT] = ACTIONS(4986), + [sym_label] = ACTIONS(4986), + [anon_sym_in] = ACTIONS(4984), + [anon_sym_while] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4986), + [anon_sym_QMARK_COLON] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_BANGin] = ACTIONS(4986), + [anon_sym_is] = ACTIONS(4984), + [anon_sym_BANGis] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_as_QMARK] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_BANG_BANG] = ACTIONS(4986), + [anon_sym_suspend] = ACTIONS(4984), + [anon_sym_sealed] = ACTIONS(4984), + [anon_sym_annotation] = ACTIONS(4984), + [anon_sym_data] = ACTIONS(4984), + [anon_sym_inner] = ACTIONS(4984), + [anon_sym_value] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_lateinit] = ACTIONS(4984), + [anon_sym_public] = ACTIONS(4984), + [anon_sym_private] = ACTIONS(4984), + [anon_sym_internal] = ACTIONS(4984), + [anon_sym_protected] = ACTIONS(4984), + [anon_sym_tailrec] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + [anon_sym_infix] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym_external] = ACTIONS(4984), + [sym_property_modifier] = ACTIONS(4984), + [anon_sym_abstract] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_open] = ACTIONS(4984), + [anon_sym_vararg] = ACTIONS(4984), + [anon_sym_noinline] = ACTIONS(4984), + [anon_sym_crossinline] = ACTIONS(4984), + [anon_sym_expect] = ACTIONS(4984), + [anon_sym_actual] = ACTIONS(4984), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4986), + [sym_safe_nav] = ACTIONS(4986), [sym_multiline_comment] = ACTIONS(3), }, - [3510] = { - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_RBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(4429), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_RPAREN] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_DASH_GT] = ACTIONS(4429), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_while] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [3577] = { + [sym__alpha_identifier] = ACTIONS(4980), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_RBRACK] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_as] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_RPAREN] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_where] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(4980), + [anon_sym_set] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_DASH_GT] = ACTIONS(4982), + [sym_label] = ACTIONS(4982), + [anon_sym_in] = ACTIONS(4980), + [anon_sym_while] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4982), + [anon_sym_QMARK_COLON] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_BANGin] = ACTIONS(4982), + [anon_sym_is] = ACTIONS(4980), + [anon_sym_BANGis] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_as_QMARK] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_BANG_BANG] = ACTIONS(4982), + [anon_sym_suspend] = ACTIONS(4980), + [anon_sym_sealed] = ACTIONS(4980), + [anon_sym_annotation] = ACTIONS(4980), + [anon_sym_data] = ACTIONS(4980), + [anon_sym_inner] = ACTIONS(4980), + [anon_sym_value] = ACTIONS(4980), + [anon_sym_override] = ACTIONS(4980), + [anon_sym_lateinit] = ACTIONS(4980), + [anon_sym_public] = ACTIONS(4980), + [anon_sym_private] = ACTIONS(4980), + [anon_sym_internal] = ACTIONS(4980), + [anon_sym_protected] = ACTIONS(4980), + [anon_sym_tailrec] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4980), + [anon_sym_infix] = ACTIONS(4980), + [anon_sym_inline] = ACTIONS(4980), + [anon_sym_external] = ACTIONS(4980), + [sym_property_modifier] = ACTIONS(4980), + [anon_sym_abstract] = ACTIONS(4980), + [anon_sym_final] = ACTIONS(4980), + [anon_sym_open] = ACTIONS(4980), + [anon_sym_vararg] = ACTIONS(4980), + [anon_sym_noinline] = ACTIONS(4980), + [anon_sym_crossinline] = ACTIONS(4980), + [anon_sym_expect] = ACTIONS(4980), + [anon_sym_actual] = ACTIONS(4980), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4982), + [sym_safe_nav] = ACTIONS(4982), [sym_multiline_comment] = ACTIONS(3), }, - [3511] = { - [sym__alpha_identifier] = ACTIONS(4991), - [anon_sym_AT] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4993), - [anon_sym_RBRACE] = ACTIONS(4993), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_where] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4993), - [anon_sym_get] = ACTIONS(4991), - [anon_sym_set] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_DASH_GT] = ACTIONS(4993), - [sym_label] = ACTIONS(4993), - [anon_sym_in] = ACTIONS(4991), - [anon_sym_while] = ACTIONS(4991), - [anon_sym_DOT_DOT] = ACTIONS(4993), - [anon_sym_QMARK_COLON] = ACTIONS(4993), - [anon_sym_AMP_AMP] = ACTIONS(4993), - [anon_sym_PIPE_PIPE] = ACTIONS(4993), - [anon_sym_else] = ACTIONS(4991), - [anon_sym_COLON_COLON] = ACTIONS(4993), - [anon_sym_PLUS_EQ] = ACTIONS(4993), - [anon_sym_DASH_EQ] = ACTIONS(4993), - [anon_sym_STAR_EQ] = ACTIONS(4993), - [anon_sym_SLASH_EQ] = ACTIONS(4993), - [anon_sym_PERCENT_EQ] = ACTIONS(4993), - [anon_sym_BANG_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4993), - [anon_sym_EQ_EQ] = ACTIONS(4991), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4993), - [anon_sym_LT_EQ] = ACTIONS(4993), - [anon_sym_GT_EQ] = ACTIONS(4993), - [anon_sym_BANGin] = ACTIONS(4993), - [anon_sym_is] = ACTIONS(4991), - [anon_sym_BANGis] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_as_QMARK] = ACTIONS(4993), - [anon_sym_PLUS_PLUS] = ACTIONS(4993), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_BANG_BANG] = ACTIONS(4993), - [anon_sym_suspend] = ACTIONS(4991), - [anon_sym_sealed] = ACTIONS(4991), - [anon_sym_annotation] = ACTIONS(4991), - [anon_sym_data] = ACTIONS(4991), - [anon_sym_inner] = ACTIONS(4991), - [anon_sym_value] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_lateinit] = ACTIONS(4991), - [anon_sym_public] = ACTIONS(4991), - [anon_sym_private] = ACTIONS(4991), - [anon_sym_internal] = ACTIONS(4991), - [anon_sym_protected] = ACTIONS(4991), - [anon_sym_tailrec] = ACTIONS(4991), - [anon_sym_operator] = ACTIONS(4991), - [anon_sym_infix] = ACTIONS(4991), - [anon_sym_inline] = ACTIONS(4991), - [anon_sym_external] = ACTIONS(4991), - [sym_property_modifier] = ACTIONS(4991), - [anon_sym_abstract] = ACTIONS(4991), - [anon_sym_final] = ACTIONS(4991), - [anon_sym_open] = ACTIONS(4991), - [anon_sym_vararg] = ACTIONS(4991), - [anon_sym_noinline] = ACTIONS(4991), - [anon_sym_crossinline] = ACTIONS(4991), - [anon_sym_expect] = ACTIONS(4991), - [anon_sym_actual] = ACTIONS(4991), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4993), - [sym_safe_nav] = ACTIONS(4993), + [3578] = { + [sym__alpha_identifier] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_where] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_get] = ACTIONS(4976), + [anon_sym_set] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_DASH_GT] = ACTIONS(4978), + [sym_label] = ACTIONS(4978), + [anon_sym_in] = ACTIONS(4976), + [anon_sym_while] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4978), + [anon_sym_QMARK_COLON] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_BANGin] = ACTIONS(4978), + [anon_sym_is] = ACTIONS(4976), + [anon_sym_BANGis] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_as_QMARK] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_BANG_BANG] = ACTIONS(4978), + [anon_sym_suspend] = ACTIONS(4976), + [anon_sym_sealed] = ACTIONS(4976), + [anon_sym_annotation] = ACTIONS(4976), + [anon_sym_data] = ACTIONS(4976), + [anon_sym_inner] = ACTIONS(4976), + [anon_sym_value] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_lateinit] = ACTIONS(4976), + [anon_sym_public] = ACTIONS(4976), + [anon_sym_private] = ACTIONS(4976), + [anon_sym_internal] = ACTIONS(4976), + [anon_sym_protected] = ACTIONS(4976), + [anon_sym_tailrec] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_infix] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym_external] = ACTIONS(4976), + [sym_property_modifier] = ACTIONS(4976), + [anon_sym_abstract] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_open] = ACTIONS(4976), + [anon_sym_vararg] = ACTIONS(4976), + [anon_sym_noinline] = ACTIONS(4976), + [anon_sym_crossinline] = ACTIONS(4976), + [anon_sym_expect] = ACTIONS(4976), + [anon_sym_actual] = ACTIONS(4976), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4978), + [sym_safe_nav] = ACTIONS(4978), [sym_multiline_comment] = ACTIONS(3), }, - [3512] = { - [sym__alpha_identifier] = ACTIONS(4975), - [anon_sym_AT] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_RBRACK] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4977), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_RPAREN] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_where] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4977), - [anon_sym_get] = ACTIONS(4975), - [anon_sym_set] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_DASH_GT] = ACTIONS(4977), - [sym_label] = ACTIONS(4977), - [anon_sym_in] = ACTIONS(4975), - [anon_sym_while] = ACTIONS(4975), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_QMARK_COLON] = ACTIONS(4977), - [anon_sym_AMP_AMP] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4977), - [anon_sym_else] = ACTIONS(4975), - [anon_sym_COLON_COLON] = ACTIONS(4977), - [anon_sym_PLUS_EQ] = ACTIONS(4977), - [anon_sym_DASH_EQ] = ACTIONS(4977), - [anon_sym_STAR_EQ] = ACTIONS(4977), - [anon_sym_SLASH_EQ] = ACTIONS(4977), - [anon_sym_PERCENT_EQ] = ACTIONS(4977), - [anon_sym_BANG_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4977), - [anon_sym_EQ_EQ] = ACTIONS(4975), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4977), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4977), - [anon_sym_BANGin] = ACTIONS(4977), - [anon_sym_is] = ACTIONS(4975), - [anon_sym_BANGis] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_as_QMARK] = ACTIONS(4977), - [anon_sym_PLUS_PLUS] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_BANG_BANG] = ACTIONS(4977), - [anon_sym_suspend] = ACTIONS(4975), - [anon_sym_sealed] = ACTIONS(4975), - [anon_sym_annotation] = ACTIONS(4975), - [anon_sym_data] = ACTIONS(4975), - [anon_sym_inner] = ACTIONS(4975), - [anon_sym_value] = ACTIONS(4975), - [anon_sym_override] = ACTIONS(4975), - [anon_sym_lateinit] = ACTIONS(4975), - [anon_sym_public] = ACTIONS(4975), - [anon_sym_private] = ACTIONS(4975), - [anon_sym_internal] = ACTIONS(4975), - [anon_sym_protected] = ACTIONS(4975), - [anon_sym_tailrec] = ACTIONS(4975), - [anon_sym_operator] = ACTIONS(4975), - [anon_sym_infix] = ACTIONS(4975), - [anon_sym_inline] = ACTIONS(4975), - [anon_sym_external] = ACTIONS(4975), - [sym_property_modifier] = ACTIONS(4975), - [anon_sym_abstract] = ACTIONS(4975), - [anon_sym_final] = ACTIONS(4975), - [anon_sym_open] = ACTIONS(4975), - [anon_sym_vararg] = ACTIONS(4975), - [anon_sym_noinline] = ACTIONS(4975), - [anon_sym_crossinline] = ACTIONS(4975), - [anon_sym_expect] = ACTIONS(4975), - [anon_sym_actual] = ACTIONS(4975), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4977), - [sym_safe_nav] = ACTIONS(4977), + [3579] = { + [sym__alpha_identifier] = ACTIONS(4972), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_RBRACK] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_RPAREN] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_where] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_get] = ACTIONS(4972), + [anon_sym_set] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_DASH_GT] = ACTIONS(4974), + [sym_label] = ACTIONS(4974), + [anon_sym_in] = ACTIONS(4972), + [anon_sym_while] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4974), + [anon_sym_QMARK_COLON] = ACTIONS(4974), + [anon_sym_AMP_AMP] = ACTIONS(4974), + [anon_sym_PIPE_PIPE] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_COLON_COLON] = ACTIONS(4974), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_PERCENT_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_BANGin] = ACTIONS(4974), + [anon_sym_is] = ACTIONS(4972), + [anon_sym_BANGis] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_as_QMARK] = ACTIONS(4974), + [anon_sym_PLUS_PLUS] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_BANG_BANG] = ACTIONS(4974), + [anon_sym_suspend] = ACTIONS(4972), + [anon_sym_sealed] = ACTIONS(4972), + [anon_sym_annotation] = ACTIONS(4972), + [anon_sym_data] = ACTIONS(4972), + [anon_sym_inner] = ACTIONS(4972), + [anon_sym_value] = ACTIONS(4972), + [anon_sym_override] = ACTIONS(4972), + [anon_sym_lateinit] = ACTIONS(4972), + [anon_sym_public] = ACTIONS(4972), + [anon_sym_private] = ACTIONS(4972), + [anon_sym_internal] = ACTIONS(4972), + [anon_sym_protected] = ACTIONS(4972), + [anon_sym_tailrec] = ACTIONS(4972), + [anon_sym_operator] = ACTIONS(4972), + [anon_sym_infix] = ACTIONS(4972), + [anon_sym_inline] = ACTIONS(4972), + [anon_sym_external] = ACTIONS(4972), + [sym_property_modifier] = ACTIONS(4972), + [anon_sym_abstract] = ACTIONS(4972), + [anon_sym_final] = ACTIONS(4972), + [anon_sym_open] = ACTIONS(4972), + [anon_sym_vararg] = ACTIONS(4972), + [anon_sym_noinline] = ACTIONS(4972), + [anon_sym_crossinline] = ACTIONS(4972), + [anon_sym_expect] = ACTIONS(4972), + [anon_sym_actual] = ACTIONS(4972), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4974), + [sym_safe_nav] = ACTIONS(4974), [sym_multiline_comment] = ACTIONS(3), }, - [3513] = { - [sym__alpha_identifier] = ACTIONS(4967), - [anon_sym_AT] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4967), - [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_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_value] = 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), + [3580] = { + [sym__alpha_identifier] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_RBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_COMMA] = ACTIONS(4046), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_get] = ACTIONS(4044), + [anon_sym_set] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_DASH_GT] = ACTIONS(4046), + [sym_label] = ACTIONS(4046), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4046), + [anon_sym_QMARK_COLON] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_PLUS_EQ] = ACTIONS(4046), + [anon_sym_DASH_EQ] = ACTIONS(4046), + [anon_sym_STAR_EQ] = ACTIONS(4046), + [anon_sym_SLASH_EQ] = ACTIONS(4046), + [anon_sym_PERCENT_EQ] = ACTIONS(4046), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4046), + [anon_sym_LT_EQ] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4046), + [anon_sym_BANGin] = ACTIONS(4046), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_BANGis] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_as_QMARK] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_BANG_BANG] = ACTIONS(4046), + [anon_sym_suspend] = ACTIONS(4044), + [anon_sym_sealed] = ACTIONS(4044), + [anon_sym_annotation] = ACTIONS(4044), + [anon_sym_data] = ACTIONS(4044), + [anon_sym_inner] = ACTIONS(4044), + [anon_sym_value] = ACTIONS(4044), + [anon_sym_override] = ACTIONS(4044), + [anon_sym_lateinit] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_internal] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_tailrec] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_infix] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym_external] = ACTIONS(4044), + [sym_property_modifier] = ACTIONS(4044), + [anon_sym_abstract] = ACTIONS(4044), + [anon_sym_final] = ACTIONS(4044), + [anon_sym_open] = ACTIONS(4044), + [anon_sym_vararg] = ACTIONS(4044), + [anon_sym_noinline] = ACTIONS(4044), + [anon_sym_crossinline] = ACTIONS(4044), + [anon_sym_expect] = ACTIONS(4044), + [anon_sym_actual] = ACTIONS(4044), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4046), + [sym_safe_nav] = ACTIONS(4046), [sym_multiline_comment] = ACTIONS(3), }, - [3514] = { - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_RBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(4470), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_RPAREN] = ACTIONS(4470), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [anon_sym_DASH_GT] = ACTIONS(4470), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_while] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_suspend] = ACTIONS(4468), - [anon_sym_sealed] = ACTIONS(4468), - [anon_sym_annotation] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_lateinit] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_tailrec] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_infix] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym_external] = ACTIONS(4468), - [sym_property_modifier] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_final] = ACTIONS(4468), - [anon_sym_open] = ACTIONS(4468), - [anon_sym_vararg] = ACTIONS(4468), - [anon_sym_noinline] = ACTIONS(4468), - [anon_sym_crossinline] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), + [3581] = { + [sym__alpha_identifier] = ACTIONS(4968), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_RBRACK] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_RPAREN] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_where] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_get] = ACTIONS(4968), + [anon_sym_set] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_DASH_GT] = ACTIONS(4970), + [sym_label] = ACTIONS(4970), + [anon_sym_in] = ACTIONS(4968), + [anon_sym_while] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_QMARK_COLON] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_PIPE_PIPE] = ACTIONS(4970), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4970), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_PERCENT_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_BANGin] = ACTIONS(4970), + [anon_sym_is] = ACTIONS(4968), + [anon_sym_BANGis] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_as_QMARK] = ACTIONS(4970), + [anon_sym_PLUS_PLUS] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_BANG_BANG] = ACTIONS(4970), + [anon_sym_suspend] = ACTIONS(4968), + [anon_sym_sealed] = ACTIONS(4968), + [anon_sym_annotation] = ACTIONS(4968), + [anon_sym_data] = ACTIONS(4968), + [anon_sym_inner] = ACTIONS(4968), + [anon_sym_value] = ACTIONS(4968), + [anon_sym_override] = ACTIONS(4968), + [anon_sym_lateinit] = ACTIONS(4968), + [anon_sym_public] = ACTIONS(4968), + [anon_sym_private] = ACTIONS(4968), + [anon_sym_internal] = ACTIONS(4968), + [anon_sym_protected] = ACTIONS(4968), + [anon_sym_tailrec] = ACTIONS(4968), + [anon_sym_operator] = ACTIONS(4968), + [anon_sym_infix] = ACTIONS(4968), + [anon_sym_inline] = ACTIONS(4968), + [anon_sym_external] = ACTIONS(4968), + [sym_property_modifier] = ACTIONS(4968), + [anon_sym_abstract] = ACTIONS(4968), + [anon_sym_final] = ACTIONS(4968), + [anon_sym_open] = ACTIONS(4968), + [anon_sym_vararg] = ACTIONS(4968), + [anon_sym_noinline] = ACTIONS(4968), + [anon_sym_crossinline] = ACTIONS(4968), + [anon_sym_expect] = ACTIONS(4968), + [anon_sym_actual] = ACTIONS(4968), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4970), + [sym_safe_nav] = ACTIONS(4970), [sym_multiline_comment] = ACTIONS(3), }, - [3515] = { - [sym__alpha_identifier] = ACTIONS(5071), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_as] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(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_SEMI] = ACTIONS(5073), - [anon_sym_get] = ACTIONS(5071), - [anon_sym_set] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [anon_sym_DASH_GT] = ACTIONS(5073), - [sym_label] = ACTIONS(5073), - [anon_sym_in] = ACTIONS(5071), - [anon_sym_while] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(5073), - [anon_sym_QMARK_COLON] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_else] = ACTIONS(5071), - [anon_sym_COLON_COLON] = ACTIONS(5073), - [anon_sym_PLUS_EQ] = ACTIONS(5073), - [anon_sym_DASH_EQ] = ACTIONS(5073), - [anon_sym_STAR_EQ] = ACTIONS(5073), - [anon_sym_SLASH_EQ] = ACTIONS(5073), - [anon_sym_PERCENT_EQ] = ACTIONS(5073), - [anon_sym_BANG_EQ] = ACTIONS(5071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), - [anon_sym_EQ_EQ] = ACTIONS(5071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), - [anon_sym_LT_EQ] = ACTIONS(5073), - [anon_sym_GT_EQ] = ACTIONS(5073), - [anon_sym_BANGin] = ACTIONS(5073), - [anon_sym_is] = ACTIONS(5071), - [anon_sym_BANGis] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_as_QMARK] = ACTIONS(5073), - [anon_sym_PLUS_PLUS] = ACTIONS(5073), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_BANG_BANG] = ACTIONS(5073), - [anon_sym_suspend] = ACTIONS(5071), - [anon_sym_sealed] = ACTIONS(5071), - [anon_sym_annotation] = ACTIONS(5071), - [anon_sym_data] = ACTIONS(5071), - [anon_sym_inner] = ACTIONS(5071), - [anon_sym_value] = ACTIONS(5071), - [anon_sym_override] = ACTIONS(5071), - [anon_sym_lateinit] = ACTIONS(5071), - [anon_sym_public] = ACTIONS(5071), - [anon_sym_private] = ACTIONS(5071), - [anon_sym_internal] = ACTIONS(5071), - [anon_sym_protected] = ACTIONS(5071), - [anon_sym_tailrec] = ACTIONS(5071), - [anon_sym_operator] = ACTIONS(5071), - [anon_sym_infix] = ACTIONS(5071), - [anon_sym_inline] = ACTIONS(5071), - [anon_sym_external] = ACTIONS(5071), - [sym_property_modifier] = ACTIONS(5071), - [anon_sym_abstract] = ACTIONS(5071), - [anon_sym_final] = ACTIONS(5071), - [anon_sym_open] = ACTIONS(5071), - [anon_sym_vararg] = ACTIONS(5071), - [anon_sym_noinline] = ACTIONS(5071), - [anon_sym_crossinline] = ACTIONS(5071), - [anon_sym_expect] = ACTIONS(5071), - [anon_sym_actual] = ACTIONS(5071), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5073), - [sym_safe_nav] = ACTIONS(5073), + [3582] = { + [sym__alpha_identifier] = ACTIONS(4964), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_RBRACK] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_RPAREN] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_where] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_get] = ACTIONS(4964), + [anon_sym_set] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_DASH_GT] = ACTIONS(4966), + [sym_label] = ACTIONS(4966), + [anon_sym_in] = ACTIONS(4964), + [anon_sym_while] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4966), + [anon_sym_QMARK_COLON] = ACTIONS(4966), + [anon_sym_AMP_AMP] = ACTIONS(4966), + [anon_sym_PIPE_PIPE] = ACTIONS(4966), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_COLON_COLON] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_PERCENT_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_BANGin] = ACTIONS(4966), + [anon_sym_is] = ACTIONS(4964), + [anon_sym_BANGis] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_as_QMARK] = ACTIONS(4966), + [anon_sym_PLUS_PLUS] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_BANG_BANG] = ACTIONS(4966), + [anon_sym_suspend] = ACTIONS(4964), + [anon_sym_sealed] = ACTIONS(4964), + [anon_sym_annotation] = ACTIONS(4964), + [anon_sym_data] = ACTIONS(4964), + [anon_sym_inner] = ACTIONS(4964), + [anon_sym_value] = ACTIONS(4964), + [anon_sym_override] = ACTIONS(4964), + [anon_sym_lateinit] = ACTIONS(4964), + [anon_sym_public] = ACTIONS(4964), + [anon_sym_private] = ACTIONS(4964), + [anon_sym_internal] = ACTIONS(4964), + [anon_sym_protected] = ACTIONS(4964), + [anon_sym_tailrec] = ACTIONS(4964), + [anon_sym_operator] = ACTIONS(4964), + [anon_sym_infix] = ACTIONS(4964), + [anon_sym_inline] = ACTIONS(4964), + [anon_sym_external] = ACTIONS(4964), + [sym_property_modifier] = ACTIONS(4964), + [anon_sym_abstract] = ACTIONS(4964), + [anon_sym_final] = ACTIONS(4964), + [anon_sym_open] = ACTIONS(4964), + [anon_sym_vararg] = ACTIONS(4964), + [anon_sym_noinline] = ACTIONS(4964), + [anon_sym_crossinline] = ACTIONS(4964), + [anon_sym_expect] = ACTIONS(4964), + [anon_sym_actual] = ACTIONS(4964), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4966), + [sym_safe_nav] = ACTIONS(4966), [sym_multiline_comment] = ACTIONS(3), }, - [3516] = { - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_RBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [anon_sym_DASH_GT] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [3583] = { + [sym__alpha_identifier] = ACTIONS(4960), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_RBRACK] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_RPAREN] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_get] = ACTIONS(4960), + [anon_sym_set] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_DASH_GT] = ACTIONS(4962), + [sym_label] = ACTIONS(4962), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_while] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4962), + [anon_sym_QMARK_COLON] = ACTIONS(4962), + [anon_sym_AMP_AMP] = ACTIONS(4962), + [anon_sym_PIPE_PIPE] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_COLON_COLON] = ACTIONS(4962), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_PERCENT_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_BANGin] = ACTIONS(4962), + [anon_sym_is] = ACTIONS(4960), + [anon_sym_BANGis] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_as_QMARK] = ACTIONS(4962), + [anon_sym_PLUS_PLUS] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_BANG_BANG] = ACTIONS(4962), + [anon_sym_suspend] = ACTIONS(4960), + [anon_sym_sealed] = ACTIONS(4960), + [anon_sym_annotation] = ACTIONS(4960), + [anon_sym_data] = ACTIONS(4960), + [anon_sym_inner] = ACTIONS(4960), + [anon_sym_value] = ACTIONS(4960), + [anon_sym_override] = ACTIONS(4960), + [anon_sym_lateinit] = ACTIONS(4960), + [anon_sym_public] = ACTIONS(4960), + [anon_sym_private] = ACTIONS(4960), + [anon_sym_internal] = ACTIONS(4960), + [anon_sym_protected] = ACTIONS(4960), + [anon_sym_tailrec] = ACTIONS(4960), + [anon_sym_operator] = ACTIONS(4960), + [anon_sym_infix] = ACTIONS(4960), + [anon_sym_inline] = ACTIONS(4960), + [anon_sym_external] = ACTIONS(4960), + [sym_property_modifier] = ACTIONS(4960), + [anon_sym_abstract] = ACTIONS(4960), + [anon_sym_final] = ACTIONS(4960), + [anon_sym_open] = ACTIONS(4960), + [anon_sym_vararg] = ACTIONS(4960), + [anon_sym_noinline] = ACTIONS(4960), + [anon_sym_crossinline] = ACTIONS(4960), + [anon_sym_expect] = ACTIONS(4960), + [anon_sym_actual] = ACTIONS(4960), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4962), + [sym_safe_nav] = ACTIONS(4962), [sym_multiline_comment] = ACTIONS(3), }, - [3517] = { - [sym__alpha_identifier] = ACTIONS(4545), - [anon_sym_AT] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_EQ] = ACTIONS(4547), - [anon_sym_LBRACE] = ACTIONS(4547), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym_COMMA] = ACTIONS(4547), - [anon_sym_by] = ACTIONS(4545), - [anon_sym_where] = ACTIONS(4545), - [anon_sym_object] = ACTIONS(4545), - [anon_sym_fun] = ACTIONS(4545), - [anon_sym_SEMI] = ACTIONS(4547), - [anon_sym_get] = ACTIONS(4545), - [anon_sym_set] = ACTIONS(4545), - [anon_sym_this] = ACTIONS(4545), - [anon_sym_super] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4547), - [sym_label] = ACTIONS(4545), - [anon_sym_in] = ACTIONS(4545), - [anon_sym_null] = ACTIONS(4545), - [anon_sym_if] = ACTIONS(4545), - [anon_sym_else] = ACTIONS(4545), - [anon_sym_when] = ACTIONS(4545), - [anon_sym_try] = ACTIONS(4545), - [anon_sym_throw] = ACTIONS(4545), - [anon_sym_return] = ACTIONS(4545), - [anon_sym_continue] = ACTIONS(4545), - [anon_sym_break] = ACTIONS(4545), - [anon_sym_COLON_COLON] = ACTIONS(4547), - [anon_sym_BANGin] = ACTIONS(4547), - [anon_sym_is] = ACTIONS(4545), - [anon_sym_BANGis] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_PLUS_PLUS] = ACTIONS(4547), - [anon_sym_DASH_DASH] = ACTIONS(4547), - [anon_sym_BANG] = ACTIONS(4545), - [anon_sym_suspend] = ACTIONS(4545), - [anon_sym_sealed] = ACTIONS(4545), - [anon_sym_annotation] = ACTIONS(4545), - [anon_sym_data] = ACTIONS(4545), - [anon_sym_inner] = ACTIONS(4545), - [anon_sym_value] = ACTIONS(4545), - [anon_sym_override] = ACTIONS(4545), - [anon_sym_lateinit] = ACTIONS(4545), - [anon_sym_public] = ACTIONS(4545), - [anon_sym_private] = ACTIONS(4545), - [anon_sym_internal] = ACTIONS(4545), - [anon_sym_protected] = ACTIONS(4545), - [anon_sym_tailrec] = ACTIONS(4545), - [anon_sym_operator] = ACTIONS(4545), - [anon_sym_infix] = ACTIONS(4545), - [anon_sym_inline] = ACTIONS(4545), - [anon_sym_external] = ACTIONS(4545), - [sym_property_modifier] = ACTIONS(4545), - [anon_sym_abstract] = ACTIONS(4545), - [anon_sym_final] = ACTIONS(4545), - [anon_sym_open] = ACTIONS(4545), - [anon_sym_vararg] = ACTIONS(4545), - [anon_sym_noinline] = ACTIONS(4545), - [anon_sym_crossinline] = ACTIONS(4545), - [anon_sym_expect] = ACTIONS(4545), - [anon_sym_actual] = ACTIONS(4545), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4547), - [anon_sym_continue_AT] = ACTIONS(4547), - [anon_sym_break_AT] = ACTIONS(4547), - [anon_sym_this_AT] = ACTIONS(4547), - [anon_sym_super_AT] = ACTIONS(4547), - [sym_real_literal] = ACTIONS(4547), - [sym_integer_literal] = ACTIONS(4545), - [sym_hex_literal] = ACTIONS(4547), - [sym_bin_literal] = ACTIONS(4547), - [anon_sym_true] = ACTIONS(4545), - [anon_sym_false] = ACTIONS(4545), - [anon_sym_SQUOTE] = ACTIONS(4547), - [sym__backtick_identifier] = ACTIONS(4547), - [sym__automatic_semicolon] = ACTIONS(4547), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4547), + [3584] = { + [sym__alpha_identifier] = ACTIONS(4956), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_RBRACK] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_RPAREN] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_where] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_get] = ACTIONS(4956), + [anon_sym_set] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_DASH_GT] = ACTIONS(4958), + [sym_label] = ACTIONS(4958), + [anon_sym_in] = ACTIONS(4956), + [anon_sym_while] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_QMARK_COLON] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4958), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_PERCENT_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_BANGin] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4956), + [anon_sym_BANGis] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_as_QMARK] = ACTIONS(4958), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_BANG_BANG] = ACTIONS(4958), + [anon_sym_suspend] = ACTIONS(4956), + [anon_sym_sealed] = ACTIONS(4956), + [anon_sym_annotation] = ACTIONS(4956), + [anon_sym_data] = ACTIONS(4956), + [anon_sym_inner] = ACTIONS(4956), + [anon_sym_value] = ACTIONS(4956), + [anon_sym_override] = ACTIONS(4956), + [anon_sym_lateinit] = ACTIONS(4956), + [anon_sym_public] = ACTIONS(4956), + [anon_sym_private] = ACTIONS(4956), + [anon_sym_internal] = ACTIONS(4956), + [anon_sym_protected] = ACTIONS(4956), + [anon_sym_tailrec] = ACTIONS(4956), + [anon_sym_operator] = ACTIONS(4956), + [anon_sym_infix] = ACTIONS(4956), + [anon_sym_inline] = ACTIONS(4956), + [anon_sym_external] = ACTIONS(4956), + [sym_property_modifier] = ACTIONS(4956), + [anon_sym_abstract] = ACTIONS(4956), + [anon_sym_final] = ACTIONS(4956), + [anon_sym_open] = ACTIONS(4956), + [anon_sym_vararg] = ACTIONS(4956), + [anon_sym_noinline] = ACTIONS(4956), + [anon_sym_crossinline] = ACTIONS(4956), + [anon_sym_expect] = ACTIONS(4956), + [anon_sym_actual] = ACTIONS(4956), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4958), + [sym_safe_nav] = ACTIONS(4958), + [sym_multiline_comment] = ACTIONS(3), }, - [3518] = { - [sym__alpha_identifier] = ACTIONS(4529), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_EQ] = ACTIONS(4532), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_by] = ACTIONS(4529), - [anon_sym_where] = ACTIONS(4529), - [anon_sym_object] = ACTIONS(4529), - [anon_sym_fun] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4529), - [anon_sym_set] = ACTIONS(4529), - [anon_sym_this] = ACTIONS(4529), - [anon_sym_super] = ACTIONS(4529), - [anon_sym_STAR] = ACTIONS(4532), - [sym_label] = ACTIONS(4529), - [anon_sym_in] = ACTIONS(4529), - [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(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4529), - [anon_sym_BANGis] = ACTIONS(4532), - [anon_sym_PLUS] = ACTIONS(4529), - [anon_sym_DASH] = ACTIONS(4529), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4529), - [anon_sym_suspend] = ACTIONS(4529), - [anon_sym_sealed] = ACTIONS(4529), - [anon_sym_annotation] = ACTIONS(4529), - [anon_sym_data] = ACTIONS(4529), - [anon_sym_inner] = ACTIONS(4529), - [anon_sym_value] = ACTIONS(4529), - [anon_sym_override] = ACTIONS(4529), - [anon_sym_lateinit] = ACTIONS(4529), - [anon_sym_public] = ACTIONS(4529), - [anon_sym_private] = ACTIONS(4529), - [anon_sym_internal] = ACTIONS(4529), - [anon_sym_protected] = ACTIONS(4529), - [anon_sym_tailrec] = ACTIONS(4529), - [anon_sym_operator] = ACTIONS(4529), - [anon_sym_infix] = ACTIONS(4529), - [anon_sym_inline] = ACTIONS(4529), - [anon_sym_external] = ACTIONS(4529), - [sym_property_modifier] = ACTIONS(4529), - [anon_sym_abstract] = ACTIONS(4529), - [anon_sym_final] = ACTIONS(4529), - [anon_sym_open] = ACTIONS(4529), - [anon_sym_vararg] = ACTIONS(4529), - [anon_sym_noinline] = ACTIONS(4529), - [anon_sym_crossinline] = ACTIONS(4529), - [anon_sym_expect] = ACTIONS(4529), - [anon_sym_actual] = ACTIONS(4529), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4532), - [anon_sym_continue_AT] = ACTIONS(4532), - [anon_sym_break_AT] = ACTIONS(4532), - [anon_sym_this_AT] = ACTIONS(4532), - [anon_sym_super_AT] = ACTIONS(4532), - [sym_real_literal] = ACTIONS(4532), - [sym_integer_literal] = ACTIONS(4529), - [sym_hex_literal] = ACTIONS(4532), - [sym_bin_literal] = ACTIONS(4532), - [anon_sym_true] = ACTIONS(4529), - [anon_sym_false] = ACTIONS(4529), - [anon_sym_SQUOTE] = ACTIONS(4532), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4532), + [3585] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_RBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_RPAREN] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_get] = ACTIONS(4952), + [anon_sym_set] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4954), + [sym_label] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4952), + [anon_sym_while] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_QMARK_COLON] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4954), + [anon_sym_PIPE_PIPE] = ACTIONS(4954), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_PERCENT_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_BANGin] = ACTIONS(4954), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_BANGis] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_as_QMARK] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_BANG_BANG] = ACTIONS(4954), + [anon_sym_suspend] = ACTIONS(4952), + [anon_sym_sealed] = ACTIONS(4952), + [anon_sym_annotation] = ACTIONS(4952), + [anon_sym_data] = ACTIONS(4952), + [anon_sym_inner] = ACTIONS(4952), + [anon_sym_value] = ACTIONS(4952), + [anon_sym_override] = ACTIONS(4952), + [anon_sym_lateinit] = ACTIONS(4952), + [anon_sym_public] = ACTIONS(4952), + [anon_sym_private] = ACTIONS(4952), + [anon_sym_internal] = ACTIONS(4952), + [anon_sym_protected] = ACTIONS(4952), + [anon_sym_tailrec] = ACTIONS(4952), + [anon_sym_operator] = ACTIONS(4952), + [anon_sym_infix] = ACTIONS(4952), + [anon_sym_inline] = ACTIONS(4952), + [anon_sym_external] = ACTIONS(4952), + [sym_property_modifier] = ACTIONS(4952), + [anon_sym_abstract] = ACTIONS(4952), + [anon_sym_final] = ACTIONS(4952), + [anon_sym_open] = ACTIONS(4952), + [anon_sym_vararg] = ACTIONS(4952), + [anon_sym_noinline] = ACTIONS(4952), + [anon_sym_crossinline] = ACTIONS(4952), + [anon_sym_expect] = ACTIONS(4952), + [anon_sym_actual] = ACTIONS(4952), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4954), + [sym_safe_nav] = ACTIONS(4954), + [sym_multiline_comment] = ACTIONS(3), }, - [3519] = { - [sym__alpha_identifier] = ACTIONS(4908), - [anon_sym_AT] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_RBRACK] = ACTIONS(4910), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(4908), - [anon_sym_LBRACE] = ACTIONS(4910), - [anon_sym_RBRACE] = ACTIONS(4910), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4908), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_get] = ACTIONS(4908), - [anon_sym_set] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [anon_sym_DASH_GT] = ACTIONS(4910), - [sym_label] = ACTIONS(4910), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_while] = ACTIONS(4908), - [anon_sym_DOT_DOT] = ACTIONS(4910), - [anon_sym_QMARK_COLON] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_else] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(4910), - [anon_sym_PLUS_EQ] = ACTIONS(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [anon_sym_BANG_EQ] = ACTIONS(4908), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), - [anon_sym_LT_EQ] = ACTIONS(4910), - [anon_sym_GT_EQ] = ACTIONS(4910), - [anon_sym_BANGin] = ACTIONS(4910), - [anon_sym_is] = ACTIONS(4908), - [anon_sym_BANGis] = ACTIONS(4910), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_as_QMARK] = ACTIONS(4910), - [anon_sym_PLUS_PLUS] = ACTIONS(4910), - [anon_sym_DASH_DASH] = ACTIONS(4910), - [anon_sym_BANG_BANG] = ACTIONS(4910), - [anon_sym_suspend] = ACTIONS(4908), - [anon_sym_sealed] = ACTIONS(4908), - [anon_sym_annotation] = ACTIONS(4908), - [anon_sym_data] = ACTIONS(4908), - [anon_sym_inner] = ACTIONS(4908), + [3586] = { + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_RBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_RPAREN] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_where] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_get] = ACTIONS(4948), + [anon_sym_set] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_DASH_GT] = ACTIONS(4950), + [sym_label] = ACTIONS(4950), + [anon_sym_in] = ACTIONS(4948), + [anon_sym_while] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4950), + [anon_sym_QMARK_COLON] = ACTIONS(4950), + [anon_sym_AMP_AMP] = ACTIONS(4950), + [anon_sym_PIPE_PIPE] = ACTIONS(4950), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_COLON_COLON] = ACTIONS(4950), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_PERCENT_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_BANGin] = ACTIONS(4950), + [anon_sym_is] = ACTIONS(4948), + [anon_sym_BANGis] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_as_QMARK] = ACTIONS(4950), + [anon_sym_PLUS_PLUS] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_BANG_BANG] = ACTIONS(4950), + [anon_sym_suspend] = ACTIONS(4948), + [anon_sym_sealed] = ACTIONS(4948), + [anon_sym_annotation] = ACTIONS(4948), + [anon_sym_data] = ACTIONS(4948), + [anon_sym_inner] = ACTIONS(4948), + [anon_sym_value] = ACTIONS(4948), + [anon_sym_override] = ACTIONS(4948), + [anon_sym_lateinit] = ACTIONS(4948), + [anon_sym_public] = ACTIONS(4948), + [anon_sym_private] = ACTIONS(4948), + [anon_sym_internal] = ACTIONS(4948), + [anon_sym_protected] = ACTIONS(4948), + [anon_sym_tailrec] = ACTIONS(4948), + [anon_sym_operator] = ACTIONS(4948), + [anon_sym_infix] = ACTIONS(4948), + [anon_sym_inline] = ACTIONS(4948), + [anon_sym_external] = ACTIONS(4948), + [sym_property_modifier] = ACTIONS(4948), + [anon_sym_abstract] = ACTIONS(4948), + [anon_sym_final] = ACTIONS(4948), + [anon_sym_open] = ACTIONS(4948), + [anon_sym_vararg] = ACTIONS(4948), + [anon_sym_noinline] = ACTIONS(4948), + [anon_sym_crossinline] = ACTIONS(4948), + [anon_sym_expect] = ACTIONS(4948), + [anon_sym_actual] = ACTIONS(4948), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4950), + [sym_safe_nav] = ACTIONS(4950), + [sym_multiline_comment] = ACTIONS(3), + }, + [3587] = { + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), + [sym_multiline_comment] = ACTIONS(3), + }, + [3588] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_RBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_RPAREN] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_where] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4942), + [anon_sym_get] = ACTIONS(4940), + [anon_sym_set] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_DASH_GT] = ACTIONS(4942), + [sym_label] = ACTIONS(4942), + [anon_sym_in] = ACTIONS(4940), + [anon_sym_while] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_QMARK_COLON] = ACTIONS(4942), + [anon_sym_AMP_AMP] = ACTIONS(4942), + [anon_sym_PIPE_PIPE] = ACTIONS(4942), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_PERCENT_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_BANGin] = ACTIONS(4942), + [anon_sym_is] = ACTIONS(4940), + [anon_sym_BANGis] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_as_QMARK] = ACTIONS(4942), + [anon_sym_PLUS_PLUS] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_BANG_BANG] = ACTIONS(4942), + [anon_sym_suspend] = ACTIONS(4940), + [anon_sym_sealed] = ACTIONS(4940), + [anon_sym_annotation] = ACTIONS(4940), + [anon_sym_data] = ACTIONS(4940), + [anon_sym_inner] = ACTIONS(4940), + [anon_sym_value] = ACTIONS(4940), + [anon_sym_override] = ACTIONS(4940), + [anon_sym_lateinit] = ACTIONS(4940), + [anon_sym_public] = ACTIONS(4940), + [anon_sym_private] = ACTIONS(4940), + [anon_sym_internal] = ACTIONS(4940), + [anon_sym_protected] = ACTIONS(4940), + [anon_sym_tailrec] = ACTIONS(4940), + [anon_sym_operator] = ACTIONS(4940), + [anon_sym_infix] = ACTIONS(4940), + [anon_sym_inline] = ACTIONS(4940), + [anon_sym_external] = ACTIONS(4940), + [sym_property_modifier] = ACTIONS(4940), + [anon_sym_abstract] = ACTIONS(4940), + [anon_sym_final] = ACTIONS(4940), + [anon_sym_open] = ACTIONS(4940), + [anon_sym_vararg] = ACTIONS(4940), + [anon_sym_noinline] = ACTIONS(4940), + [anon_sym_crossinline] = ACTIONS(4940), + [anon_sym_expect] = ACTIONS(4940), + [anon_sym_actual] = ACTIONS(4940), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4942), + [sym_safe_nav] = ACTIONS(4942), + [sym_multiline_comment] = ACTIONS(3), + }, + [3589] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_RBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_RPAREN] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_DASH_GT] = ACTIONS(4938), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_while] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_suspend] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_lateinit] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_tailrec] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4936), + [anon_sym_infix] = ACTIONS(4936), + [anon_sym_inline] = ACTIONS(4936), + [anon_sym_external] = ACTIONS(4936), + [sym_property_modifier] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_final] = ACTIONS(4936), + [anon_sym_open] = ACTIONS(4936), + [anon_sym_vararg] = ACTIONS(4936), + [anon_sym_noinline] = ACTIONS(4936), + [anon_sym_crossinline] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), + [sym_multiline_comment] = ACTIONS(3), + }, + [3590] = { + [aux_sym_nullable_type_repeat1] = STATE(3590), + [sym__alpha_identifier] = ACTIONS(4280), + [anon_sym_AT] = ACTIONS(4282), + [anon_sym_LBRACK] = ACTIONS(4282), + [anon_sym_DOT] = ACTIONS(4280), + [anon_sym_as] = ACTIONS(4280), + [anon_sym_EQ] = ACTIONS(4280), + [anon_sym_LBRACE] = ACTIONS(4282), + [anon_sym_RBRACE] = ACTIONS(4282), + [anon_sym_LPAREN] = ACTIONS(4282), + [anon_sym_COMMA] = ACTIONS(4282), + [anon_sym_by] = ACTIONS(4280), + [anon_sym_LT] = ACTIONS(4280), + [anon_sym_GT] = ACTIONS(4280), + [anon_sym_where] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4282), + [anon_sym_get] = ACTIONS(4280), + [anon_sym_set] = ACTIONS(4280), + [sym__quest] = ACTIONS(6889), + [anon_sym_STAR] = ACTIONS(4280), + [sym_label] = ACTIONS(4282), + [anon_sym_in] = ACTIONS(4280), + [anon_sym_DOT_DOT] = ACTIONS(4282), + [anon_sym_QMARK_COLON] = ACTIONS(4282), + [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_else] = ACTIONS(4280), + [anon_sym_COLON_COLON] = ACTIONS(4282), + [anon_sym_PLUS_EQ] = ACTIONS(4282), + [anon_sym_DASH_EQ] = ACTIONS(4282), + [anon_sym_STAR_EQ] = ACTIONS(4282), + [anon_sym_SLASH_EQ] = ACTIONS(4282), + [anon_sym_PERCENT_EQ] = ACTIONS(4282), + [anon_sym_BANG_EQ] = ACTIONS(4280), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4282), + [anon_sym_EQ_EQ] = ACTIONS(4280), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4282), + [anon_sym_LT_EQ] = ACTIONS(4282), + [anon_sym_GT_EQ] = ACTIONS(4282), + [anon_sym_BANGin] = ACTIONS(4282), + [anon_sym_is] = ACTIONS(4280), + [anon_sym_BANGis] = ACTIONS(4282), + [anon_sym_PLUS] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4280), + [anon_sym_SLASH] = ACTIONS(4280), + [anon_sym_PERCENT] = ACTIONS(4280), + [anon_sym_as_QMARK] = ACTIONS(4282), + [anon_sym_PLUS_PLUS] = ACTIONS(4282), + [anon_sym_DASH_DASH] = ACTIONS(4282), + [anon_sym_BANG_BANG] = ACTIONS(4282), + [anon_sym_suspend] = ACTIONS(4280), + [anon_sym_sealed] = ACTIONS(4280), + [anon_sym_annotation] = ACTIONS(4280), + [anon_sym_data] = ACTIONS(4280), + [anon_sym_inner] = ACTIONS(4280), + [anon_sym_value] = ACTIONS(4280), + [anon_sym_override] = ACTIONS(4280), + [anon_sym_lateinit] = ACTIONS(4280), + [anon_sym_public] = ACTIONS(4280), + [anon_sym_private] = ACTIONS(4280), + [anon_sym_internal] = ACTIONS(4280), + [anon_sym_protected] = ACTIONS(4280), + [anon_sym_tailrec] = ACTIONS(4280), + [anon_sym_operator] = ACTIONS(4280), + [anon_sym_infix] = ACTIONS(4280), + [anon_sym_inline] = ACTIONS(4280), + [anon_sym_external] = ACTIONS(4280), + [sym_property_modifier] = ACTIONS(4280), + [anon_sym_abstract] = ACTIONS(4280), + [anon_sym_final] = ACTIONS(4280), + [anon_sym_open] = ACTIONS(4280), + [anon_sym_vararg] = ACTIONS(4280), + [anon_sym_noinline] = ACTIONS(4280), + [anon_sym_crossinline] = ACTIONS(4280), + [anon_sym_expect] = ACTIONS(4280), + [anon_sym_actual] = ACTIONS(4280), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4282), + [sym__automatic_semicolon] = ACTIONS(4282), + [sym_safe_nav] = ACTIONS(4282), + [sym_multiline_comment] = ACTIONS(3), + }, + [3591] = { + [sym__alpha_identifier] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_RBRACK] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_RPAREN] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4910), + [anon_sym_get] = ACTIONS(4908), + [anon_sym_set] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4910), + [sym_label] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_while] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_QMARK_COLON] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4910), + [anon_sym_PIPE_PIPE] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4910), + [anon_sym_DASH_EQ] = ACTIONS(4910), + [anon_sym_STAR_EQ] = ACTIONS(4910), + [anon_sym_SLASH_EQ] = ACTIONS(4910), + [anon_sym_PERCENT_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4910), + [anon_sym_BANGin] = ACTIONS(4910), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_BANGis] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_as_QMARK] = ACTIONS(4910), + [anon_sym_PLUS_PLUS] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_BANG_BANG] = ACTIONS(4910), + [anon_sym_suspend] = ACTIONS(4908), + [anon_sym_sealed] = ACTIONS(4908), + [anon_sym_annotation] = ACTIONS(4908), + [anon_sym_data] = ACTIONS(4908), + [anon_sym_inner] = ACTIONS(4908), [anon_sym_value] = ACTIONS(4908), [anon_sym_override] = ACTIONS(4908), [anon_sym_lateinit] = ACTIONS(4908), @@ -402353,754 +408598,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4910), [sym_multiline_comment] = ACTIONS(3), }, - [3520] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_RBRACK] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [anon_sym_DASH_GT] = ACTIONS(4946), - [sym_label] = ACTIONS(4946), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_while] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(6813), - [anon_sym_PLUS_EQ] = ACTIONS(4946), - [anon_sym_DASH_EQ] = ACTIONS(4946), - [anon_sym_STAR_EQ] = ACTIONS(4946), - [anon_sym_SLASH_EQ] = ACTIONS(4946), - [anon_sym_PERCENT_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_suspend] = ACTIONS(4944), - [anon_sym_sealed] = ACTIONS(4944), - [anon_sym_annotation] = ACTIONS(4944), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_override] = ACTIONS(4944), - [anon_sym_lateinit] = ACTIONS(4944), - [anon_sym_public] = ACTIONS(4944), - [anon_sym_private] = ACTIONS(4944), - [anon_sym_internal] = ACTIONS(4944), - [anon_sym_protected] = ACTIONS(4944), - [anon_sym_tailrec] = ACTIONS(4944), - [anon_sym_operator] = ACTIONS(4944), - [anon_sym_infix] = ACTIONS(4944), - [anon_sym_inline] = ACTIONS(4944), - [anon_sym_external] = ACTIONS(4944), - [sym_property_modifier] = ACTIONS(4944), - [anon_sym_abstract] = ACTIONS(4944), - [anon_sym_final] = ACTIONS(4944), - [anon_sym_open] = ACTIONS(4944), - [anon_sym_vararg] = ACTIONS(4944), - [anon_sym_noinline] = ACTIONS(4944), - [anon_sym_crossinline] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), - [sym_multiline_comment] = ACTIONS(3), - }, - [3521] = { - [sym__alpha_identifier] = ACTIONS(5043), - [anon_sym_AT] = ACTIONS(5045), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_RBRACK] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5045), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5045), - [anon_sym_COMMA] = ACTIONS(5045), - [anon_sym_RPAREN] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5043), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_where] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5045), - [anon_sym_get] = ACTIONS(5043), - [anon_sym_set] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [anon_sym_DASH_GT] = ACTIONS(5045), - [sym_label] = ACTIONS(5045), - [anon_sym_in] = ACTIONS(5043), - [anon_sym_while] = ACTIONS(5043), - [anon_sym_DOT_DOT] = ACTIONS(5045), - [anon_sym_QMARK_COLON] = ACTIONS(5045), - [anon_sym_AMP_AMP] = ACTIONS(5045), - [anon_sym_PIPE_PIPE] = ACTIONS(5045), - [anon_sym_else] = ACTIONS(5043), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_PLUS_EQ] = ACTIONS(5045), - [anon_sym_DASH_EQ] = ACTIONS(5045), - [anon_sym_STAR_EQ] = ACTIONS(5045), - [anon_sym_SLASH_EQ] = ACTIONS(5045), - [anon_sym_PERCENT_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5045), - [anon_sym_GT_EQ] = ACTIONS(5045), - [anon_sym_BANGin] = ACTIONS(5045), - [anon_sym_is] = ACTIONS(5043), - [anon_sym_BANGis] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_as_QMARK] = ACTIONS(5045), - [anon_sym_PLUS_PLUS] = ACTIONS(5045), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_BANG_BANG] = ACTIONS(5045), - [anon_sym_suspend] = ACTIONS(5043), - [anon_sym_sealed] = ACTIONS(5043), - [anon_sym_annotation] = ACTIONS(5043), - [anon_sym_data] = ACTIONS(5043), - [anon_sym_inner] = ACTIONS(5043), - [anon_sym_value] = ACTIONS(5043), - [anon_sym_override] = ACTIONS(5043), - [anon_sym_lateinit] = ACTIONS(5043), - [anon_sym_public] = ACTIONS(5043), - [anon_sym_private] = ACTIONS(5043), - [anon_sym_internal] = ACTIONS(5043), - [anon_sym_protected] = ACTIONS(5043), - [anon_sym_tailrec] = ACTIONS(5043), - [anon_sym_operator] = ACTIONS(5043), - [anon_sym_infix] = ACTIONS(5043), - [anon_sym_inline] = ACTIONS(5043), - [anon_sym_external] = ACTIONS(5043), - [sym_property_modifier] = ACTIONS(5043), - [anon_sym_abstract] = ACTIONS(5043), - [anon_sym_final] = ACTIONS(5043), - [anon_sym_open] = ACTIONS(5043), - [anon_sym_vararg] = ACTIONS(5043), - [anon_sym_noinline] = ACTIONS(5043), - [anon_sym_crossinline] = ACTIONS(5043), - [anon_sym_expect] = ACTIONS(5043), - [anon_sym_actual] = ACTIONS(5043), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5045), - [sym_safe_nav] = ACTIONS(5045), - [sym_multiline_comment] = ACTIONS(3), - }, - [3522] = { - [sym__alpha_identifier] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_where] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4957), - [anon_sym_get] = ACTIONS(4955), - [anon_sym_set] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [anon_sym_DASH_GT] = ACTIONS(4957), - [sym_label] = ACTIONS(4957), - [anon_sym_in] = ACTIONS(4955), - [anon_sym_while] = ACTIONS(4955), - [anon_sym_DOT_DOT] = ACTIONS(4957), - [anon_sym_QMARK_COLON] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_else] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4957), - [anon_sym_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_BANGin] = ACTIONS(4957), - [anon_sym_is] = ACTIONS(4955), - [anon_sym_BANGis] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_BANG_BANG] = ACTIONS(4957), - [anon_sym_suspend] = ACTIONS(4955), - [anon_sym_sealed] = ACTIONS(4955), - [anon_sym_annotation] = ACTIONS(4955), - [anon_sym_data] = ACTIONS(4955), - [anon_sym_inner] = ACTIONS(4955), - [anon_sym_value] = ACTIONS(4955), - [anon_sym_override] = ACTIONS(4955), - [anon_sym_lateinit] = ACTIONS(4955), - [anon_sym_public] = ACTIONS(4955), - [anon_sym_private] = ACTIONS(4955), - [anon_sym_internal] = ACTIONS(4955), - [anon_sym_protected] = ACTIONS(4955), - [anon_sym_tailrec] = ACTIONS(4955), - [anon_sym_operator] = ACTIONS(4955), - [anon_sym_infix] = ACTIONS(4955), - [anon_sym_inline] = ACTIONS(4955), - [anon_sym_external] = ACTIONS(4955), - [sym_property_modifier] = ACTIONS(4955), - [anon_sym_abstract] = ACTIONS(4955), - [anon_sym_final] = ACTIONS(4955), - [anon_sym_open] = ACTIONS(4955), - [anon_sym_vararg] = ACTIONS(4955), - [anon_sym_noinline] = ACTIONS(4955), - [anon_sym_crossinline] = ACTIONS(4955), - [anon_sym_expect] = ACTIONS(4955), - [anon_sym_actual] = ACTIONS(4955), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4957), - [sym_safe_nav] = ACTIONS(4957), - [sym_multiline_comment] = ACTIONS(3), - }, - [3523] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_RBRACK] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_DASH_GT] = ACTIONS(4896), - [sym_label] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_while] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_suspend] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_annotation] = ACTIONS(4894), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_lateinit] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_tailrec] = ACTIONS(4894), - [anon_sym_operator] = ACTIONS(4894), - [anon_sym_infix] = ACTIONS(4894), - [anon_sym_inline] = ACTIONS(4894), - [anon_sym_external] = ACTIONS(4894), - [sym_property_modifier] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_final] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_vararg] = ACTIONS(4894), - [anon_sym_noinline] = ACTIONS(4894), - [anon_sym_crossinline] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), - }, - [3524] = { - [sym__alpha_identifier] = ACTIONS(5039), - [anon_sym_AT] = ACTIONS(5041), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_RBRACK] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5041), - [anon_sym_RBRACE] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5041), - [anon_sym_COMMA] = ACTIONS(5041), - [anon_sym_RPAREN] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5039), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_where] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5041), - [anon_sym_get] = ACTIONS(5039), - [anon_sym_set] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [anon_sym_DASH_GT] = ACTIONS(5041), - [sym_label] = ACTIONS(5041), - [anon_sym_in] = ACTIONS(5039), - [anon_sym_while] = ACTIONS(5039), - [anon_sym_DOT_DOT] = ACTIONS(5041), - [anon_sym_QMARK_COLON] = ACTIONS(5041), - [anon_sym_AMP_AMP] = ACTIONS(5041), - [anon_sym_PIPE_PIPE] = ACTIONS(5041), - [anon_sym_else] = ACTIONS(5039), - [anon_sym_COLON_COLON] = ACTIONS(5041), - [anon_sym_PLUS_EQ] = ACTIONS(5041), - [anon_sym_DASH_EQ] = ACTIONS(5041), - [anon_sym_STAR_EQ] = ACTIONS(5041), - [anon_sym_SLASH_EQ] = ACTIONS(5041), - [anon_sym_PERCENT_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), - [anon_sym_LT_EQ] = ACTIONS(5041), - [anon_sym_GT_EQ] = ACTIONS(5041), - [anon_sym_BANGin] = ACTIONS(5041), - [anon_sym_is] = ACTIONS(5039), - [anon_sym_BANGis] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_as_QMARK] = ACTIONS(5041), - [anon_sym_PLUS_PLUS] = ACTIONS(5041), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_BANG_BANG] = ACTIONS(5041), - [anon_sym_suspend] = ACTIONS(5039), - [anon_sym_sealed] = ACTIONS(5039), - [anon_sym_annotation] = ACTIONS(5039), - [anon_sym_data] = ACTIONS(5039), - [anon_sym_inner] = ACTIONS(5039), - [anon_sym_value] = ACTIONS(5039), - [anon_sym_override] = ACTIONS(5039), - [anon_sym_lateinit] = ACTIONS(5039), - [anon_sym_public] = ACTIONS(5039), - [anon_sym_private] = ACTIONS(5039), - [anon_sym_internal] = ACTIONS(5039), - [anon_sym_protected] = ACTIONS(5039), - [anon_sym_tailrec] = ACTIONS(5039), - [anon_sym_operator] = ACTIONS(5039), - [anon_sym_infix] = ACTIONS(5039), - [anon_sym_inline] = ACTIONS(5039), - [anon_sym_external] = ACTIONS(5039), - [sym_property_modifier] = ACTIONS(5039), - [anon_sym_abstract] = ACTIONS(5039), - [anon_sym_final] = ACTIONS(5039), - [anon_sym_open] = ACTIONS(5039), - [anon_sym_vararg] = ACTIONS(5039), - [anon_sym_noinline] = ACTIONS(5039), - [anon_sym_crossinline] = ACTIONS(5039), - [anon_sym_expect] = ACTIONS(5039), - [anon_sym_actual] = ACTIONS(5039), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5041), - [sym_safe_nav] = ACTIONS(5041), - [sym_multiline_comment] = ACTIONS(3), - }, - [3525] = { - [sym__alpha_identifier] = ACTIONS(5027), - [anon_sym_AT] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5027), - [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_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_value] = 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), - }, - [3526] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_RBRACK] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_RPAREN] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(6886), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_DASH_GT] = ACTIONS(4896), - [sym_label] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_while] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_suspend] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_annotation] = ACTIONS(4894), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_lateinit] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_tailrec] = ACTIONS(4894), - [anon_sym_operator] = ACTIONS(4894), - [anon_sym_infix] = ACTIONS(4894), - [anon_sym_inline] = ACTIONS(4894), - [anon_sym_external] = ACTIONS(4894), - [sym_property_modifier] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_final] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_vararg] = ACTIONS(4894), - [anon_sym_noinline] = ACTIONS(4894), - [anon_sym_crossinline] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), - }, - [3527] = { - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [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_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_value] = 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), - }, - [3528] = { - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_RBRACK] = ACTIONS(4020), - [anon_sym_DOT] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_RPAREN] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4020), - [sym_label] = ACTIONS(4020), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_while] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_PLUS_EQ] = ACTIONS(4020), - [anon_sym_DASH_EQ] = ACTIONS(4020), - [anon_sym_STAR_EQ] = ACTIONS(4020), - [anon_sym_SLASH_EQ] = ACTIONS(4020), - [anon_sym_PERCENT_EQ] = ACTIONS(4020), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4020), - [anon_sym_DASH_DASH] = ACTIONS(4020), - [anon_sym_BANG_BANG] = ACTIONS(4020), - [anon_sym_suspend] = ACTIONS(4018), - [anon_sym_sealed] = ACTIONS(4018), - [anon_sym_annotation] = ACTIONS(4018), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_override] = ACTIONS(4018), - [anon_sym_lateinit] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_internal] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_tailrec] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_infix] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym_external] = ACTIONS(4018), - [sym_property_modifier] = ACTIONS(4018), - [anon_sym_abstract] = ACTIONS(4018), - [anon_sym_final] = ACTIONS(4018), - [anon_sym_open] = ACTIONS(4018), - [anon_sym_vararg] = ACTIONS(4018), - [anon_sym_noinline] = ACTIONS(4018), - [anon_sym_crossinline] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4020), + [3592] = { + [sym_type_constraints] = STATE(3607), + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, - [3529] = { + [3593] = { [sym__alpha_identifier] = ACTIONS(4932), [anon_sym_AT] = ACTIONS(4934), [anon_sym_LBRACK] = ACTIONS(4934), @@ -403183,1683 +408764,3063 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4934), [sym_multiline_comment] = ACTIONS(3), }, - [3530] = { - [sym__alpha_identifier] = ACTIONS(4983), - [anon_sym_AT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_where] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_get] = ACTIONS(4983), - [anon_sym_set] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_DASH_GT] = ACTIONS(4985), - [sym_label] = ACTIONS(4985), - [anon_sym_in] = ACTIONS(4983), - [anon_sym_while] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4985), - [anon_sym_QMARK_COLON] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_else] = ACTIONS(4983), - [anon_sym_COLON_COLON] = ACTIONS(4985), - [anon_sym_PLUS_EQ] = ACTIONS(4985), - [anon_sym_DASH_EQ] = ACTIONS(4985), - [anon_sym_STAR_EQ] = ACTIONS(4985), - [anon_sym_SLASH_EQ] = ACTIONS(4985), - [anon_sym_PERCENT_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_BANGin] = ACTIONS(4985), - [anon_sym_is] = ACTIONS(4983), - [anon_sym_BANGis] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_as_QMARK] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_BANG_BANG] = ACTIONS(4985), - [anon_sym_suspend] = ACTIONS(4983), - [anon_sym_sealed] = ACTIONS(4983), - [anon_sym_annotation] = ACTIONS(4983), - [anon_sym_data] = ACTIONS(4983), - [anon_sym_inner] = ACTIONS(4983), - [anon_sym_value] = ACTIONS(4983), - [anon_sym_override] = ACTIONS(4983), - [anon_sym_lateinit] = ACTIONS(4983), - [anon_sym_public] = ACTIONS(4983), - [anon_sym_private] = ACTIONS(4983), - [anon_sym_internal] = ACTIONS(4983), - [anon_sym_protected] = ACTIONS(4983), - [anon_sym_tailrec] = ACTIONS(4983), - [anon_sym_operator] = ACTIONS(4983), - [anon_sym_infix] = ACTIONS(4983), - [anon_sym_inline] = ACTIONS(4983), - [anon_sym_external] = ACTIONS(4983), - [sym_property_modifier] = ACTIONS(4983), - [anon_sym_abstract] = ACTIONS(4983), - [anon_sym_final] = ACTIONS(4983), - [anon_sym_open] = ACTIONS(4983), - [anon_sym_vararg] = ACTIONS(4983), - [anon_sym_noinline] = ACTIONS(4983), - [anon_sym_crossinline] = ACTIONS(4983), - [anon_sym_expect] = ACTIONS(4983), - [anon_sym_actual] = ACTIONS(4983), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4985), - [sym_safe_nav] = ACTIONS(4985), + [3594] = { + [sym__alpha_identifier] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_RBRACK] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4930), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_RPAREN] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_where] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4930), + [anon_sym_get] = ACTIONS(4928), + [anon_sym_set] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_DASH_GT] = ACTIONS(4930), + [sym_label] = ACTIONS(4930), + [anon_sym_in] = ACTIONS(4928), + [anon_sym_while] = ACTIONS(4928), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_QMARK_COLON] = ACTIONS(4930), + [anon_sym_AMP_AMP] = ACTIONS(4930), + [anon_sym_PIPE_PIPE] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4928), + [anon_sym_COLON_COLON] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4930), + [anon_sym_DASH_EQ] = ACTIONS(4930), + [anon_sym_STAR_EQ] = ACTIONS(4930), + [anon_sym_SLASH_EQ] = ACTIONS(4930), + [anon_sym_PERCENT_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4930), + [anon_sym_BANGin] = ACTIONS(4930), + [anon_sym_is] = ACTIONS(4928), + [anon_sym_BANGis] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_as_QMARK] = ACTIONS(4930), + [anon_sym_PLUS_PLUS] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_BANG_BANG] = ACTIONS(4930), + [anon_sym_suspend] = ACTIONS(4928), + [anon_sym_sealed] = ACTIONS(4928), + [anon_sym_annotation] = ACTIONS(4928), + [anon_sym_data] = ACTIONS(4928), + [anon_sym_inner] = ACTIONS(4928), + [anon_sym_value] = ACTIONS(4928), + [anon_sym_override] = ACTIONS(4928), + [anon_sym_lateinit] = ACTIONS(4928), + [anon_sym_public] = ACTIONS(4928), + [anon_sym_private] = ACTIONS(4928), + [anon_sym_internal] = ACTIONS(4928), + [anon_sym_protected] = ACTIONS(4928), + [anon_sym_tailrec] = ACTIONS(4928), + [anon_sym_operator] = ACTIONS(4928), + [anon_sym_infix] = ACTIONS(4928), + [anon_sym_inline] = ACTIONS(4928), + [anon_sym_external] = ACTIONS(4928), + [sym_property_modifier] = ACTIONS(4928), + [anon_sym_abstract] = ACTIONS(4928), + [anon_sym_final] = ACTIONS(4928), + [anon_sym_open] = ACTIONS(4928), + [anon_sym_vararg] = ACTIONS(4928), + [anon_sym_noinline] = ACTIONS(4928), + [anon_sym_crossinline] = ACTIONS(4928), + [anon_sym_expect] = ACTIONS(4928), + [anon_sym_actual] = ACTIONS(4928), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4930), + [sym_safe_nav] = ACTIONS(4930), [sym_multiline_comment] = ACTIONS(3), }, - [3531] = { - [sym__alpha_identifier] = ACTIONS(1429), - [anon_sym_AT] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_RBRACK] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_RPAREN] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1429), - [anon_sym_set] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [anon_sym_DASH_GT] = ACTIONS(1427), - [sym_label] = ACTIONS(1427), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_while] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1429), - [anon_sym_inner] = ACTIONS(1429), - [anon_sym_value] = ACTIONS(1429), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1429), - [anon_sym_actual] = ACTIONS(1429), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), + [3595] = { + [sym__alpha_identifier] = ACTIONS(5049), + [anon_sym_AT] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5049), + [anon_sym_EQ] = ACTIONS(5049), + [anon_sym_LBRACE] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_where] = ACTIONS(5049), + [anon_sym_SEMI] = ACTIONS(5051), + [anon_sym_get] = ACTIONS(5049), + [anon_sym_set] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [anon_sym_DASH_GT] = ACTIONS(5051), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5049), + [anon_sym_while] = ACTIONS(5049), + [anon_sym_DOT_DOT] = ACTIONS(5051), + [anon_sym_QMARK_COLON] = ACTIONS(5051), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE_PIPE] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5049), + [anon_sym_COLON_COLON] = ACTIONS(5051), + [anon_sym_PLUS_EQ] = ACTIONS(5051), + [anon_sym_DASH_EQ] = ACTIONS(5051), + [anon_sym_STAR_EQ] = ACTIONS(5051), + [anon_sym_SLASH_EQ] = ACTIONS(5051), + [anon_sym_PERCENT_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_BANGin] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5049), + [anon_sym_BANGis] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_PERCENT] = ACTIONS(5049), + [anon_sym_as_QMARK] = ACTIONS(5051), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5051), + [anon_sym_suspend] = ACTIONS(5049), + [anon_sym_sealed] = ACTIONS(5049), + [anon_sym_annotation] = ACTIONS(5049), + [anon_sym_data] = ACTIONS(5049), + [anon_sym_inner] = ACTIONS(5049), + [anon_sym_value] = ACTIONS(5049), + [anon_sym_override] = ACTIONS(5049), + [anon_sym_lateinit] = ACTIONS(5049), + [anon_sym_public] = ACTIONS(5049), + [anon_sym_private] = ACTIONS(5049), + [anon_sym_internal] = ACTIONS(5049), + [anon_sym_protected] = ACTIONS(5049), + [anon_sym_tailrec] = ACTIONS(5049), + [anon_sym_operator] = ACTIONS(5049), + [anon_sym_infix] = ACTIONS(5049), + [anon_sym_inline] = ACTIONS(5049), + [anon_sym_external] = ACTIONS(5049), + [sym_property_modifier] = ACTIONS(5049), + [anon_sym_abstract] = ACTIONS(5049), + [anon_sym_final] = ACTIONS(5049), + [anon_sym_open] = ACTIONS(5049), + [anon_sym_vararg] = ACTIONS(5049), + [anon_sym_noinline] = ACTIONS(5049), + [anon_sym_crossinline] = ACTIONS(5049), + [anon_sym_expect] = ACTIONS(5049), + [anon_sym_actual] = ACTIONS(5049), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5051), + [sym_safe_nav] = ACTIONS(5051), [sym_multiline_comment] = ACTIONS(3), }, - [3532] = { - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_RBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_RPAREN] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_DASH_GT] = ACTIONS(4639), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_while] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), + [3596] = { + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_RBRACK] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_RPAREN] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_DASH_GT] = ACTIONS(4886), + [sym_label] = ACTIONS(4886), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_while] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_suspend] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_annotation] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_lateinit] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_tailrec] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_infix] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym_external] = ACTIONS(4884), + [sym_property_modifier] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_final] = ACTIONS(4884), + [anon_sym_open] = ACTIONS(4884), + [anon_sym_vararg] = ACTIONS(4884), + [anon_sym_noinline] = ACTIONS(4884), + [anon_sym_crossinline] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), [sym_multiline_comment] = ACTIONS(3), }, - [3533] = { - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_RPAREN] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(1808), - [anon_sym_set] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [anon_sym_DASH_GT] = ACTIONS(1810), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_while] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(1808), - [anon_sym_sealed] = ACTIONS(1808), - [anon_sym_annotation] = ACTIONS(1808), - [anon_sym_data] = ACTIONS(1808), - [anon_sym_inner] = ACTIONS(1808), - [anon_sym_value] = ACTIONS(1808), - [anon_sym_override] = ACTIONS(1808), - [anon_sym_lateinit] = ACTIONS(1808), - [anon_sym_public] = ACTIONS(1808), - [anon_sym_private] = ACTIONS(1808), - [anon_sym_internal] = ACTIONS(1808), - [anon_sym_protected] = ACTIONS(1808), - [anon_sym_tailrec] = ACTIONS(1808), - [anon_sym_operator] = ACTIONS(1808), - [anon_sym_infix] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym_external] = ACTIONS(1808), - [sym_property_modifier] = ACTIONS(1808), - [anon_sym_abstract] = ACTIONS(1808), - [anon_sym_final] = ACTIONS(1808), - [anon_sym_open] = ACTIONS(1808), - [anon_sym_vararg] = ACTIONS(1808), - [anon_sym_noinline] = ACTIONS(1808), - [anon_sym_crossinline] = ACTIONS(1808), - [anon_sym_expect] = ACTIONS(1808), - [anon_sym_actual] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [3597] = { + [sym__alpha_identifier] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym_get] = ACTIONS(4920), + [anon_sym_set] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4922), + [sym_label] = ACTIONS(4922), + [anon_sym_in] = ACTIONS(4920), + [anon_sym_while] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_QMARK_COLON] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4920), + [anon_sym_COLON_COLON] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4922), + [anon_sym_DASH_EQ] = ACTIONS(4922), + [anon_sym_STAR_EQ] = ACTIONS(4922), + [anon_sym_SLASH_EQ] = ACTIONS(4922), + [anon_sym_PERCENT_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4922), + [anon_sym_BANGin] = ACTIONS(4922), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_BANGis] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_as_QMARK] = ACTIONS(4922), + [anon_sym_PLUS_PLUS] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_BANG_BANG] = ACTIONS(4922), + [anon_sym_suspend] = ACTIONS(4920), + [anon_sym_sealed] = ACTIONS(4920), + [anon_sym_annotation] = ACTIONS(4920), + [anon_sym_data] = ACTIONS(4920), + [anon_sym_inner] = ACTIONS(4920), + [anon_sym_value] = ACTIONS(4920), + [anon_sym_override] = ACTIONS(4920), + [anon_sym_lateinit] = ACTIONS(4920), + [anon_sym_public] = ACTIONS(4920), + [anon_sym_private] = ACTIONS(4920), + [anon_sym_internal] = ACTIONS(4920), + [anon_sym_protected] = ACTIONS(4920), + [anon_sym_tailrec] = ACTIONS(4920), + [anon_sym_operator] = ACTIONS(4920), + [anon_sym_infix] = ACTIONS(4920), + [anon_sym_inline] = ACTIONS(4920), + [anon_sym_external] = ACTIONS(4920), + [sym_property_modifier] = ACTIONS(4920), + [anon_sym_abstract] = ACTIONS(4920), + [anon_sym_final] = ACTIONS(4920), + [anon_sym_open] = ACTIONS(4920), + [anon_sym_vararg] = ACTIONS(4920), + [anon_sym_noinline] = ACTIONS(4920), + [anon_sym_crossinline] = ACTIONS(4920), + [anon_sym_expect] = ACTIONS(4920), + [anon_sym_actual] = ACTIONS(4920), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4922), + [sym_safe_nav] = ACTIONS(4922), [sym_multiline_comment] = ACTIONS(3), }, - [3534] = { - [sym__alpha_identifier] = ACTIONS(4890), - [anon_sym_AT] = ACTIONS(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_RBRACK] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4890), - [anon_sym_EQ] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_RPAREN] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_where] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_get] = ACTIONS(4890), - [anon_sym_set] = ACTIONS(4890), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4892), - [sym_label] = ACTIONS(4892), - [anon_sym_in] = ACTIONS(4890), - [anon_sym_while] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_QMARK_COLON] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_else] = ACTIONS(4890), - [anon_sym_COLON_COLON] = ACTIONS(4892), - [anon_sym_PLUS_EQ] = ACTIONS(4892), - [anon_sym_DASH_EQ] = ACTIONS(4892), - [anon_sym_STAR_EQ] = ACTIONS(4892), - [anon_sym_SLASH_EQ] = ACTIONS(4892), - [anon_sym_PERCENT_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_BANGin] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4890), - [anon_sym_BANGis] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4890), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_as_QMARK] = ACTIONS(4892), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_BANG_BANG] = ACTIONS(4892), - [anon_sym_suspend] = ACTIONS(4890), - [anon_sym_sealed] = ACTIONS(4890), - [anon_sym_annotation] = ACTIONS(4890), - [anon_sym_data] = ACTIONS(4890), - [anon_sym_inner] = ACTIONS(4890), - [anon_sym_value] = ACTIONS(4890), - [anon_sym_override] = ACTIONS(4890), - [anon_sym_lateinit] = ACTIONS(4890), - [anon_sym_public] = ACTIONS(4890), - [anon_sym_private] = ACTIONS(4890), - [anon_sym_internal] = ACTIONS(4890), - [anon_sym_protected] = ACTIONS(4890), - [anon_sym_tailrec] = ACTIONS(4890), - [anon_sym_operator] = ACTIONS(4890), - [anon_sym_infix] = ACTIONS(4890), - [anon_sym_inline] = ACTIONS(4890), - [anon_sym_external] = ACTIONS(4890), - [sym_property_modifier] = ACTIONS(4890), - [anon_sym_abstract] = ACTIONS(4890), - [anon_sym_final] = ACTIONS(4890), - [anon_sym_open] = ACTIONS(4890), - [anon_sym_vararg] = ACTIONS(4890), - [anon_sym_noinline] = ACTIONS(4890), - [anon_sym_crossinline] = ACTIONS(4890), - [anon_sym_expect] = ACTIONS(4890), - [anon_sym_actual] = ACTIONS(4890), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4892), - [sym_safe_nav] = ACTIONS(4892), + [3598] = { + [sym__alpha_identifier] = ACTIONS(4912), + [anon_sym_AT] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_RBRACK] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_where] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_get] = ACTIONS(4912), + [anon_sym_set] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_DASH_GT] = ACTIONS(4914), + [sym_label] = ACTIONS(4914), + [anon_sym_in] = ACTIONS(4912), + [anon_sym_while] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(4914), + [anon_sym_QMARK_COLON] = ACTIONS(4914), + [anon_sym_AMP_AMP] = ACTIONS(4914), + [anon_sym_PIPE_PIPE] = ACTIONS(4914), + [anon_sym_else] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4914), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_PERCENT_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_BANGin] = ACTIONS(4914), + [anon_sym_is] = ACTIONS(4912), + [anon_sym_BANGis] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_as_QMARK] = ACTIONS(4914), + [anon_sym_PLUS_PLUS] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_BANG_BANG] = ACTIONS(4914), + [anon_sym_suspend] = ACTIONS(4912), + [anon_sym_sealed] = ACTIONS(4912), + [anon_sym_annotation] = ACTIONS(4912), + [anon_sym_data] = ACTIONS(4912), + [anon_sym_inner] = ACTIONS(4912), + [anon_sym_value] = ACTIONS(4912), + [anon_sym_override] = ACTIONS(4912), + [anon_sym_lateinit] = ACTIONS(4912), + [anon_sym_public] = ACTIONS(4912), + [anon_sym_private] = ACTIONS(4912), + [anon_sym_internal] = ACTIONS(4912), + [anon_sym_protected] = ACTIONS(4912), + [anon_sym_tailrec] = ACTIONS(4912), + [anon_sym_operator] = ACTIONS(4912), + [anon_sym_infix] = ACTIONS(4912), + [anon_sym_inline] = ACTIONS(4912), + [anon_sym_external] = ACTIONS(4912), + [sym_property_modifier] = ACTIONS(4912), + [anon_sym_abstract] = ACTIONS(4912), + [anon_sym_final] = ACTIONS(4912), + [anon_sym_open] = ACTIONS(4912), + [anon_sym_vararg] = ACTIONS(4912), + [anon_sym_noinline] = ACTIONS(4912), + [anon_sym_crossinline] = ACTIONS(4912), + [anon_sym_expect] = ACTIONS(4912), + [anon_sym_actual] = ACTIONS(4912), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4914), + [sym_safe_nav] = ACTIONS(4914), [sym_multiline_comment] = ACTIONS(3), }, - [3535] = { - [aux_sym_type_constraints_repeat1] = STATE(3535), - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(6888), - [anon_sym_by] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_fun] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_this] = ACTIONS(4431), - [anon_sym_super] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4433), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_null] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_try] = ACTIONS(4431), - [anon_sym_throw] = ACTIONS(4431), - [anon_sym_return] = ACTIONS(4431), - [anon_sym_continue] = ACTIONS(4431), - [anon_sym_break] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4431), - [anon_sym_sealed] = ACTIONS(4431), - [anon_sym_annotation] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_override] = ACTIONS(4431), - [anon_sym_lateinit] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4431), - [anon_sym_internal] = ACTIONS(4431), - [anon_sym_protected] = ACTIONS(4431), - [anon_sym_tailrec] = ACTIONS(4431), - [anon_sym_operator] = ACTIONS(4431), - [anon_sym_infix] = ACTIONS(4431), - [anon_sym_inline] = ACTIONS(4431), - [anon_sym_external] = ACTIONS(4431), - [sym_property_modifier] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(4431), - [anon_sym_final] = ACTIONS(4431), - [anon_sym_open] = ACTIONS(4431), - [anon_sym_vararg] = ACTIONS(4431), - [anon_sym_noinline] = ACTIONS(4431), - [anon_sym_crossinline] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4433), - [anon_sym_continue_AT] = ACTIONS(4433), - [anon_sym_break_AT] = ACTIONS(4433), - [anon_sym_this_AT] = ACTIONS(4433), - [anon_sym_super_AT] = ACTIONS(4433), - [sym_real_literal] = ACTIONS(4433), - [sym_integer_literal] = ACTIONS(4431), - [sym_hex_literal] = ACTIONS(4433), - [sym_bin_literal] = ACTIONS(4433), - [anon_sym_true] = ACTIONS(4431), - [anon_sym_false] = ACTIONS(4431), - [anon_sym_SQUOTE] = ACTIONS(4433), - [sym__backtick_identifier] = ACTIONS(4433), - [sym__automatic_semicolon] = ACTIONS(4433), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4433), + [3599] = { + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_RBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4077), + [anon_sym_LBRACE] = ACTIONS(4079), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [anon_sym_DASH_GT] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_while] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), }, - [3536] = { - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_RBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(4270), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_DASH_GT] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [3600] = { + [sym_type_constraints] = STATE(3604), + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), [sym_multiline_comment] = ACTIONS(3), }, - [3537] = { - [sym_type_constraints] = STATE(3734), - [sym_enum_class_body] = STATE(3964), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [3601] = { + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), [sym_multiline_comment] = ACTIONS(3), }, - [3538] = { - [ts_builtin_sym_end] = ACTIONS(6891), - [sym__alpha_identifier] = ACTIONS(6893), - [anon_sym_AT] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_package] = ACTIONS(6893), - [anon_sym_import] = ACTIONS(6893), - [anon_sym_typealias] = ACTIONS(6893), - [anon_sym_class] = ACTIONS(6893), - [anon_sym_interface] = ACTIONS(6893), - [anon_sym_enum] = ACTIONS(6893), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_LPAREN] = ACTIONS(6891), - [anon_sym_val] = ACTIONS(6893), - [anon_sym_var] = ACTIONS(6893), - [anon_sym_object] = ACTIONS(6893), - [anon_sym_fun] = ACTIONS(6893), - [anon_sym_get] = ACTIONS(6893), - [anon_sym_set] = ACTIONS(6893), - [anon_sym_this] = ACTIONS(6893), - [anon_sym_super] = ACTIONS(6893), - [anon_sym_STAR] = ACTIONS(6891), - [sym_label] = ACTIONS(6893), - [anon_sym_for] = ACTIONS(6893), - [anon_sym_while] = ACTIONS(6893), - [anon_sym_do] = ACTIONS(6893), - [anon_sym_null] = ACTIONS(6893), - [anon_sym_if] = ACTIONS(6893), - [anon_sym_when] = ACTIONS(6893), - [anon_sym_try] = ACTIONS(6893), - [anon_sym_throw] = ACTIONS(6893), - [anon_sym_return] = ACTIONS(6893), - [anon_sym_continue] = ACTIONS(6893), - [anon_sym_break] = ACTIONS(6893), - [anon_sym_COLON_COLON] = ACTIONS(6891), - [anon_sym_PLUS] = ACTIONS(6893), - [anon_sym_DASH] = ACTIONS(6893), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_BANG] = ACTIONS(6891), - [anon_sym_suspend] = ACTIONS(6893), - [anon_sym_sealed] = ACTIONS(6893), - [anon_sym_annotation] = ACTIONS(6893), - [anon_sym_data] = ACTIONS(6893), - [anon_sym_inner] = ACTIONS(6893), - [anon_sym_value] = ACTIONS(6893), - [anon_sym_override] = ACTIONS(6893), - [anon_sym_lateinit] = ACTIONS(6893), - [anon_sym_public] = ACTIONS(6893), - [anon_sym_private] = ACTIONS(6893), - [anon_sym_internal] = ACTIONS(6893), - [anon_sym_protected] = ACTIONS(6893), - [anon_sym_tailrec] = ACTIONS(6893), - [anon_sym_operator] = ACTIONS(6893), - [anon_sym_infix] = ACTIONS(6893), - [anon_sym_inline] = ACTIONS(6893), - [anon_sym_external] = ACTIONS(6893), - [sym_property_modifier] = ACTIONS(6893), - [anon_sym_abstract] = ACTIONS(6893), - [anon_sym_final] = ACTIONS(6893), - [anon_sym_open] = ACTIONS(6893), - [anon_sym_vararg] = ACTIONS(6893), - [anon_sym_noinline] = ACTIONS(6893), - [anon_sym_crossinline] = ACTIONS(6893), - [anon_sym_expect] = ACTIONS(6893), - [anon_sym_actual] = ACTIONS(6893), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6891), - [anon_sym_continue_AT] = ACTIONS(6891), - [anon_sym_break_AT] = ACTIONS(6891), - [anon_sym_this_AT] = ACTIONS(6891), - [anon_sym_super_AT] = ACTIONS(6891), - [sym_real_literal] = ACTIONS(6891), - [sym_integer_literal] = ACTIONS(6893), - [sym_hex_literal] = ACTIONS(6891), - [sym_bin_literal] = ACTIONS(6891), - [anon_sym_true] = ACTIONS(6893), - [anon_sym_false] = ACTIONS(6893), - [anon_sym_SQUOTE] = ACTIONS(6891), - [sym__backtick_identifier] = ACTIONS(6891), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6891), + [3602] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4333), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_catch] = ACTIONS(4331), + [anon_sym_finally] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), }, - [3539] = { - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_RBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(4509), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_RPAREN] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_DASH_GT] = ACTIONS(4509), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_while] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_suspend] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_annotation] = ACTIONS(4507), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_lateinit] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_tailrec] = ACTIONS(4507), - [anon_sym_operator] = ACTIONS(4507), - [anon_sym_infix] = ACTIONS(4507), - [anon_sym_inline] = ACTIONS(4507), - [anon_sym_external] = ACTIONS(4507), - [sym_property_modifier] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_final] = ACTIONS(4507), - [anon_sym_open] = ACTIONS(4507), - [anon_sym_vararg] = ACTIONS(4507), - [anon_sym_noinline] = ACTIONS(4507), - [anon_sym_crossinline] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), + [3603] = { + [sym_function_body] = STATE(3991), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, - [3540] = { - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4595), - [anon_sym_super_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), + [3604] = { + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), }, - [3541] = { - [sym__alpha_identifier] = ACTIONS(4886), - [anon_sym_AT] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_RBRACK] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4888), - [anon_sym_RBRACE] = ACTIONS(4888), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_COMMA] = ACTIONS(4888), - [anon_sym_RPAREN] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4888), - [anon_sym_get] = ACTIONS(4886), - [anon_sym_set] = ACTIONS(4886), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4888), - [sym_label] = ACTIONS(4888), - [anon_sym_in] = ACTIONS(4886), - [anon_sym_while] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4888), - [anon_sym_QMARK_COLON] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [anon_sym_else] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(4888), - [anon_sym_PLUS_EQ] = ACTIONS(4888), - [anon_sym_DASH_EQ] = ACTIONS(4888), - [anon_sym_STAR_EQ] = ACTIONS(4888), - [anon_sym_SLASH_EQ] = ACTIONS(4888), - [anon_sym_PERCENT_EQ] = ACTIONS(4888), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4888), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4888), - [anon_sym_BANGin] = ACTIONS(4888), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_BANGis] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4886), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_as_QMARK] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_BANG_BANG] = ACTIONS(4888), - [anon_sym_suspend] = ACTIONS(4886), - [anon_sym_sealed] = ACTIONS(4886), - [anon_sym_annotation] = ACTIONS(4886), - [anon_sym_data] = ACTIONS(4886), - [anon_sym_inner] = ACTIONS(4886), - [anon_sym_value] = ACTIONS(4886), - [anon_sym_override] = ACTIONS(4886), - [anon_sym_lateinit] = ACTIONS(4886), - [anon_sym_public] = ACTIONS(4886), - [anon_sym_private] = ACTIONS(4886), - [anon_sym_internal] = ACTIONS(4886), - [anon_sym_protected] = ACTIONS(4886), - [anon_sym_tailrec] = ACTIONS(4886), - [anon_sym_operator] = ACTIONS(4886), - [anon_sym_infix] = ACTIONS(4886), - [anon_sym_inline] = ACTIONS(4886), - [anon_sym_external] = ACTIONS(4886), - [sym_property_modifier] = ACTIONS(4886), - [anon_sym_abstract] = ACTIONS(4886), - [anon_sym_final] = ACTIONS(4886), - [anon_sym_open] = ACTIONS(4886), - [anon_sym_vararg] = ACTIONS(4886), - [anon_sym_noinline] = ACTIONS(4886), - [anon_sym_crossinline] = ACTIONS(4886), - [anon_sym_expect] = ACTIONS(4886), - [anon_sym_actual] = ACTIONS(4886), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4888), - [sym_safe_nav] = ACTIONS(4888), + [3605] = { + [sym_function_body] = STATE(3826), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, - [3542] = { - [sym_type_constraints] = STATE(3899), - [sym_function_body] = STATE(3969), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(6895), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4133), - [sym_label] = ACTIONS(4135), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_PLUS_EQ] = ACTIONS(4135), - [anon_sym_DASH_EQ] = ACTIONS(4135), - [anon_sym_STAR_EQ] = ACTIONS(4135), - [anon_sym_SLASH_EQ] = ACTIONS(4135), - [anon_sym_PERCENT_EQ] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4133), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), + [3606] = { + [sym_type_constraints] = STATE(3717), + [sym_enum_class_body] = STATE(3990), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, - [3543] = { - [sym__alpha_identifier] = ACTIONS(4878), - [anon_sym_AT] = ACTIONS(4880), - [anon_sym_LBRACK] = ACTIONS(4880), - [anon_sym_RBRACK] = ACTIONS(4880), - [anon_sym_DOT] = ACTIONS(4878), - [anon_sym_as] = ACTIONS(4878), - [anon_sym_EQ] = ACTIONS(4878), - [anon_sym_LBRACE] = ACTIONS(4880), - [anon_sym_RBRACE] = ACTIONS(4880), - [anon_sym_LPAREN] = ACTIONS(4880), - [anon_sym_COMMA] = ACTIONS(4880), - [anon_sym_RPAREN] = ACTIONS(4880), - [anon_sym_LT] = ACTIONS(4878), - [anon_sym_GT] = ACTIONS(4878), - [anon_sym_where] = ACTIONS(4878), - [anon_sym_SEMI] = ACTIONS(4880), - [anon_sym_get] = ACTIONS(4878), - [anon_sym_set] = ACTIONS(4878), - [anon_sym_STAR] = ACTIONS(4878), - [anon_sym_DASH_GT] = ACTIONS(4880), - [sym_label] = ACTIONS(4880), - [anon_sym_in] = ACTIONS(4878), - [anon_sym_while] = ACTIONS(4878), - [anon_sym_DOT_DOT] = ACTIONS(4880), - [anon_sym_QMARK_COLON] = ACTIONS(4880), - [anon_sym_AMP_AMP] = ACTIONS(4880), - [anon_sym_PIPE_PIPE] = ACTIONS(4880), - [anon_sym_else] = ACTIONS(4878), - [anon_sym_COLON_COLON] = ACTIONS(4880), - [anon_sym_PLUS_EQ] = ACTIONS(4880), - [anon_sym_DASH_EQ] = ACTIONS(4880), - [anon_sym_STAR_EQ] = ACTIONS(4880), - [anon_sym_SLASH_EQ] = ACTIONS(4880), - [anon_sym_PERCENT_EQ] = ACTIONS(4880), - [anon_sym_BANG_EQ] = ACTIONS(4878), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4880), - [anon_sym_EQ_EQ] = ACTIONS(4878), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4880), - [anon_sym_LT_EQ] = ACTIONS(4880), - [anon_sym_GT_EQ] = ACTIONS(4880), - [anon_sym_BANGin] = ACTIONS(4880), - [anon_sym_is] = ACTIONS(4878), - [anon_sym_BANGis] = ACTIONS(4880), - [anon_sym_PLUS] = ACTIONS(4878), - [anon_sym_DASH] = ACTIONS(4878), - [anon_sym_SLASH] = ACTIONS(4878), - [anon_sym_PERCENT] = ACTIONS(4878), - [anon_sym_as_QMARK] = ACTIONS(4880), - [anon_sym_PLUS_PLUS] = ACTIONS(4880), - [anon_sym_DASH_DASH] = ACTIONS(4880), - [anon_sym_BANG_BANG] = ACTIONS(4880), - [anon_sym_suspend] = ACTIONS(4878), - [anon_sym_sealed] = ACTIONS(4878), - [anon_sym_annotation] = ACTIONS(4878), - [anon_sym_data] = ACTIONS(4878), - [anon_sym_inner] = ACTIONS(4878), - [anon_sym_value] = ACTIONS(4878), - [anon_sym_override] = ACTIONS(4878), - [anon_sym_lateinit] = ACTIONS(4878), - [anon_sym_public] = ACTIONS(4878), - [anon_sym_private] = ACTIONS(4878), - [anon_sym_internal] = ACTIONS(4878), - [anon_sym_protected] = ACTIONS(4878), - [anon_sym_tailrec] = ACTIONS(4878), - [anon_sym_operator] = ACTIONS(4878), - [anon_sym_infix] = ACTIONS(4878), - [anon_sym_inline] = ACTIONS(4878), - [anon_sym_external] = ACTIONS(4878), - [sym_property_modifier] = ACTIONS(4878), - [anon_sym_abstract] = ACTIONS(4878), - [anon_sym_final] = ACTIONS(4878), - [anon_sym_open] = ACTIONS(4878), - [anon_sym_vararg] = ACTIONS(4878), - [anon_sym_noinline] = ACTIONS(4878), - [anon_sym_crossinline] = ACTIONS(4878), - [anon_sym_expect] = ACTIONS(4878), - [anon_sym_actual] = ACTIONS(4878), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4880), - [sym_safe_nav] = ACTIONS(4880), + [3607] = { + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = 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_value] = 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), }, - [3544] = { - [sym_type_constraints] = STATE(3916), - [sym_function_body] = STATE(3889), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(6899), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_where] = ACTIONS(5816), - [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_value] = 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), + [3608] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_object] = ACTIONS(4331), + [anon_sym_fun] = ACTIONS(4331), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_this] = ACTIONS(4331), + [anon_sym_super] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4331), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_null] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_when] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4331), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4333), + [anon_sym_continue_AT] = ACTIONS(4333), + [anon_sym_break_AT] = ACTIONS(4333), + [anon_sym_this_AT] = ACTIONS(4333), + [anon_sym_super_AT] = ACTIONS(4333), + [sym_real_literal] = ACTIONS(4333), + [sym_integer_literal] = ACTIONS(4331), + [sym_hex_literal] = ACTIONS(4333), + [sym_bin_literal] = ACTIONS(4333), + [anon_sym_true] = ACTIONS(4331), + [anon_sym_false] = ACTIONS(4331), + [anon_sym_SQUOTE] = ACTIONS(4333), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4890), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4333), + }, + [3609] = { + [sym_function_body] = STATE(3962), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), [sym_multiline_comment] = ACTIONS(3), }, - [3545] = { - [sym_type_constraints] = STATE(3850), - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(5816), - [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_value] = 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), + [3610] = { + [sym_class_body] = STATE(3976), + [sym_type_constraints] = STATE(3716), + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [sym_label] = ACTIONS(4414), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_suspend] = ACTIONS(4412), + [anon_sym_sealed] = ACTIONS(4412), + [anon_sym_annotation] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_override] = ACTIONS(4412), + [anon_sym_lateinit] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_internal] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_tailrec] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_infix] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym_external] = ACTIONS(4412), + [sym_property_modifier] = ACTIONS(4412), + [anon_sym_abstract] = ACTIONS(4412), + [anon_sym_final] = ACTIONS(4412), + [anon_sym_open] = ACTIONS(4412), + [anon_sym_vararg] = ACTIONS(4412), + [anon_sym_noinline] = ACTIONS(4412), + [anon_sym_crossinline] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4414), + [sym__automatic_semicolon] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), [sym_multiline_comment] = ACTIONS(3), }, - [3546] = { - [sym_type_constraints] = STATE(3649), - [sym_function_body] = STATE(3890), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [3611] = { + [sym_class_body] = STATE(3866), + [sym_type_constraints] = STATE(3789), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), [sym_multiline_comment] = ACTIONS(3), }, - [3547] = { - [sym_type_constraints] = STATE(3994), - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(6903), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [3612] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(6892), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), + }, + [3613] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_catch] = ACTIONS(4343), + [anon_sym_finally] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), [sym_multiline_comment] = ACTIONS(3), }, - [3548] = { - [sym__alpha_identifier] = ACTIONS(4864), - [anon_sym_AT] = ACTIONS(4866), - [anon_sym_LBRACK] = ACTIONS(4866), - [anon_sym_RBRACK] = ACTIONS(4866), - [anon_sym_DOT] = ACTIONS(4864), - [anon_sym_as] = ACTIONS(4864), - [anon_sym_EQ] = ACTIONS(4864), - [anon_sym_LBRACE] = ACTIONS(4866), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_LPAREN] = ACTIONS(4866), - [anon_sym_COMMA] = ACTIONS(4866), - [anon_sym_RPAREN] = ACTIONS(4866), - [anon_sym_LT] = ACTIONS(4864), - [anon_sym_GT] = ACTIONS(4864), - [anon_sym_where] = ACTIONS(4864), - [anon_sym_SEMI] = ACTIONS(4866), - [anon_sym_get] = ACTIONS(4864), - [anon_sym_set] = ACTIONS(4864), - [anon_sym_STAR] = ACTIONS(4864), - [anon_sym_DASH_GT] = ACTIONS(4866), - [sym_label] = ACTIONS(4866), - [anon_sym_in] = ACTIONS(4864), - [anon_sym_while] = ACTIONS(4864), - [anon_sym_DOT_DOT] = ACTIONS(4866), - [anon_sym_QMARK_COLON] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_PIPE_PIPE] = ACTIONS(4866), - [anon_sym_else] = ACTIONS(4864), - [anon_sym_COLON_COLON] = ACTIONS(4866), - [anon_sym_PLUS_EQ] = ACTIONS(4866), - [anon_sym_DASH_EQ] = ACTIONS(4866), - [anon_sym_STAR_EQ] = ACTIONS(4866), - [anon_sym_SLASH_EQ] = ACTIONS(4866), - [anon_sym_PERCENT_EQ] = ACTIONS(4866), - [anon_sym_BANG_EQ] = ACTIONS(4864), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4866), - [anon_sym_EQ_EQ] = ACTIONS(4864), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4866), - [anon_sym_LT_EQ] = ACTIONS(4866), - [anon_sym_GT_EQ] = ACTIONS(4866), - [anon_sym_BANGin] = ACTIONS(4866), - [anon_sym_is] = ACTIONS(4864), - [anon_sym_BANGis] = ACTIONS(4866), - [anon_sym_PLUS] = ACTIONS(4864), - [anon_sym_DASH] = ACTIONS(4864), - [anon_sym_SLASH] = ACTIONS(4864), - [anon_sym_PERCENT] = ACTIONS(4864), - [anon_sym_as_QMARK] = ACTIONS(4866), - [anon_sym_PLUS_PLUS] = ACTIONS(4866), - [anon_sym_DASH_DASH] = ACTIONS(4866), - [anon_sym_BANG_BANG] = ACTIONS(4866), - [anon_sym_suspend] = ACTIONS(4864), - [anon_sym_sealed] = ACTIONS(4864), - [anon_sym_annotation] = ACTIONS(4864), - [anon_sym_data] = ACTIONS(4864), - [anon_sym_inner] = ACTIONS(4864), - [anon_sym_value] = ACTIONS(4864), - [anon_sym_override] = ACTIONS(4864), - [anon_sym_lateinit] = ACTIONS(4864), - [anon_sym_public] = ACTIONS(4864), - [anon_sym_private] = ACTIONS(4864), - [anon_sym_internal] = ACTIONS(4864), - [anon_sym_protected] = ACTIONS(4864), - [anon_sym_tailrec] = ACTIONS(4864), - [anon_sym_operator] = ACTIONS(4864), - [anon_sym_infix] = ACTIONS(4864), - [anon_sym_inline] = ACTIONS(4864), - [anon_sym_external] = ACTIONS(4864), - [sym_property_modifier] = ACTIONS(4864), - [anon_sym_abstract] = ACTIONS(4864), - [anon_sym_final] = ACTIONS(4864), - [anon_sym_open] = ACTIONS(4864), - [anon_sym_vararg] = ACTIONS(4864), - [anon_sym_noinline] = ACTIONS(4864), - [anon_sym_crossinline] = ACTIONS(4864), - [anon_sym_expect] = ACTIONS(4864), - [anon_sym_actual] = ACTIONS(4864), + [3614] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(6896), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [3615] = { + [sym_type_constraints] = STATE(3968), + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + }, + [3616] = { + [sym_function_body] = STATE(3859), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + }, + [3617] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3359), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [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(6900), + [anon_sym_RPAREN] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4513), + [anon_sym_where] = ACTIONS(4513), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = ACTIONS(4513), + [anon_sym_STAR] = ACTIONS(4513), + [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_value] = 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_multiline_comment] = ACTIONS(3), + }, + [3618] = { + [sym_type_constraints] = STATE(3752), + [sym_enum_class_body] = STATE(3945), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(5736), + [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(5742), + [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_value] = 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), + }, + [3619] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3617), + [sym__alpha_identifier] = ACTIONS(4587), + [anon_sym_AT] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4589), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(6900), + [anon_sym_RPAREN] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4587), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_where] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4587), + [sym_label] = ACTIONS(4589), + [anon_sym_in] = ACTIONS(4587), + [anon_sym_while] = ACTIONS(4587), + [anon_sym_DOT_DOT] = ACTIONS(4589), + [anon_sym_QMARK_COLON] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_else] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_BANGin] = ACTIONS(4589), + [anon_sym_is] = ACTIONS(4587), + [anon_sym_BANGis] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_as_QMARK] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_BANG_BANG] = ACTIONS(4589), + [anon_sym_suspend] = ACTIONS(4587), + [anon_sym_sealed] = ACTIONS(4587), + [anon_sym_annotation] = ACTIONS(4587), + [anon_sym_data] = ACTIONS(4587), + [anon_sym_inner] = ACTIONS(4587), + [anon_sym_value] = ACTIONS(4587), + [anon_sym_override] = ACTIONS(4587), + [anon_sym_lateinit] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_internal] = ACTIONS(4587), + [anon_sym_protected] = ACTIONS(4587), + [anon_sym_tailrec] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), + [anon_sym_infix] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym_external] = ACTIONS(4587), + [sym_property_modifier] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_open] = ACTIONS(4587), + [anon_sym_vararg] = ACTIONS(4587), + [anon_sym_noinline] = ACTIONS(4587), + [anon_sym_crossinline] = ACTIONS(4587), + [anon_sym_expect] = ACTIONS(4587), + [anon_sym_actual] = ACTIONS(4587), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4589), + [sym_safe_nav] = ACTIONS(4589), + [sym_multiline_comment] = ACTIONS(3), + }, + [3620] = { + [sym_type_constraints] = STATE(3714), + [sym_enum_class_body] = STATE(4025), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), + }, + [3621] = { + [aux_sym_user_type_repeat1] = STATE(3654), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(6902), + [anon_sym_typealias] = ACTIONS(4103), + [anon_sym_class] = ACTIONS(4103), + [anon_sym_interface] = ACTIONS(4103), + [anon_sym_enum] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_val] = ACTIONS(4103), + [anon_sym_var] = ACTIONS(4103), + [anon_sym_object] = ACTIONS(4103), + [anon_sym_fun] = ACTIONS(4103), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_this] = ACTIONS(4103), + [anon_sym_super] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4105), + [sym_label] = ACTIONS(4103), + [anon_sym_for] = ACTIONS(4103), + [anon_sym_while] = ACTIONS(4103), + [anon_sym_do] = ACTIONS(4103), + [anon_sym_null] = ACTIONS(4103), + [anon_sym_if] = ACTIONS(4103), + [anon_sym_when] = ACTIONS(4103), + [anon_sym_try] = ACTIONS(4103), + [anon_sym_throw] = ACTIONS(4103), + [anon_sym_return] = ACTIONS(4103), + [anon_sym_continue] = ACTIONS(4103), + [anon_sym_break] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG] = ACTIONS(4105), + [anon_sym_suspend] = ACTIONS(4103), + [anon_sym_sealed] = ACTIONS(4103), + [anon_sym_annotation] = ACTIONS(4103), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4103), + [anon_sym_lateinit] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_internal] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_tailrec] = ACTIONS(4103), + [anon_sym_operator] = ACTIONS(4103), + [anon_sym_infix] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_external] = ACTIONS(4103), + [sym_property_modifier] = ACTIONS(4103), + [anon_sym_abstract] = ACTIONS(4103), + [anon_sym_final] = ACTIONS(4103), + [anon_sym_open] = ACTIONS(4103), + [anon_sym_vararg] = ACTIONS(4103), + [anon_sym_noinline] = ACTIONS(4103), + [anon_sym_crossinline] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4105), + [anon_sym_continue_AT] = ACTIONS(4105), + [anon_sym_break_AT] = ACTIONS(4105), + [anon_sym_this_AT] = ACTIONS(4105), + [anon_sym_super_AT] = ACTIONS(4105), + [sym_real_literal] = ACTIONS(4105), + [sym_integer_literal] = ACTIONS(4103), + [sym_hex_literal] = ACTIONS(4105), + [sym_bin_literal] = ACTIONS(4105), + [anon_sym_true] = ACTIONS(4103), + [anon_sym_false] = ACTIONS(4103), + [anon_sym_SQUOTE] = ACTIONS(4105), + [sym__backtick_identifier] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4105), + }, + [3622] = { + [aux_sym_user_type_repeat1] = STATE(3336), + [sym__alpha_identifier] = ACTIONS(4103), + [anon_sym_AT] = ACTIONS(4105), + [anon_sym_LBRACK] = ACTIONS(4105), + [anon_sym_DOT] = ACTIONS(6904), + [anon_sym_as] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(4103), + [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_LPAREN] = ACTIONS(4105), + [anon_sym_COMMA] = ACTIONS(4105), + [anon_sym_by] = ACTIONS(4103), + [anon_sym_LT] = ACTIONS(4103), + [anon_sym_GT] = ACTIONS(4103), + [anon_sym_where] = ACTIONS(4103), + [anon_sym_SEMI] = ACTIONS(4105), + [anon_sym_get] = ACTIONS(4103), + [anon_sym_set] = ACTIONS(4103), + [anon_sym_STAR] = ACTIONS(4103), + [sym_label] = ACTIONS(4105), + [anon_sym_in] = ACTIONS(4103), + [anon_sym_DOT_DOT] = ACTIONS(4105), + [anon_sym_QMARK_COLON] = ACTIONS(4105), + [anon_sym_AMP_AMP] = ACTIONS(4105), + [anon_sym_PIPE_PIPE] = ACTIONS(4105), + [anon_sym_else] = ACTIONS(4103), + [anon_sym_COLON_COLON] = ACTIONS(4105), + [anon_sym_PLUS_EQ] = ACTIONS(4105), + [anon_sym_DASH_EQ] = ACTIONS(4105), + [anon_sym_STAR_EQ] = ACTIONS(4105), + [anon_sym_SLASH_EQ] = ACTIONS(4105), + [anon_sym_PERCENT_EQ] = ACTIONS(4105), + [anon_sym_BANG_EQ] = ACTIONS(4103), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4105), + [anon_sym_EQ_EQ] = ACTIONS(4103), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4105), + [anon_sym_LT_EQ] = ACTIONS(4105), + [anon_sym_GT_EQ] = ACTIONS(4105), + [anon_sym_BANGin] = ACTIONS(4105), + [anon_sym_is] = ACTIONS(4103), + [anon_sym_BANGis] = ACTIONS(4105), + [anon_sym_PLUS] = ACTIONS(4103), + [anon_sym_DASH] = ACTIONS(4103), + [anon_sym_SLASH] = ACTIONS(4103), + [anon_sym_PERCENT] = ACTIONS(4103), + [anon_sym_as_QMARK] = ACTIONS(4105), + [anon_sym_PLUS_PLUS] = ACTIONS(4105), + [anon_sym_DASH_DASH] = ACTIONS(4105), + [anon_sym_BANG_BANG] = ACTIONS(4105), + [anon_sym_suspend] = ACTIONS(4103), + [anon_sym_sealed] = ACTIONS(4103), + [anon_sym_annotation] = ACTIONS(4103), + [anon_sym_data] = ACTIONS(4103), + [anon_sym_inner] = ACTIONS(4103), + [anon_sym_value] = ACTIONS(4103), + [anon_sym_override] = ACTIONS(4103), + [anon_sym_lateinit] = ACTIONS(4103), + [anon_sym_public] = ACTIONS(4103), + [anon_sym_private] = ACTIONS(4103), + [anon_sym_internal] = ACTIONS(4103), + [anon_sym_protected] = ACTIONS(4103), + [anon_sym_tailrec] = ACTIONS(4103), + [anon_sym_operator] = ACTIONS(4103), + [anon_sym_infix] = ACTIONS(4103), + [anon_sym_inline] = ACTIONS(4103), + [anon_sym_external] = ACTIONS(4103), + [sym_property_modifier] = ACTIONS(4103), + [anon_sym_abstract] = ACTIONS(4103), + [anon_sym_final] = ACTIONS(4103), + [anon_sym_open] = ACTIONS(4103), + [anon_sym_vararg] = ACTIONS(4103), + [anon_sym_noinline] = ACTIONS(4103), + [anon_sym_crossinline] = ACTIONS(4103), + [anon_sym_expect] = ACTIONS(4103), + [anon_sym_actual] = ACTIONS(4103), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4105), + [sym__automatic_semicolon] = ACTIONS(4105), + [sym_safe_nav] = ACTIONS(4105), + [sym_multiline_comment] = ACTIONS(3), + }, + [3623] = { + [aux_sym_type_constraints_repeat1] = STATE(3656), + [sym__alpha_identifier] = ACTIONS(4394), + [anon_sym_AT] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4396), + [anon_sym_DOT] = ACTIONS(4394), + [anon_sym_as] = ACTIONS(4394), + [anon_sym_EQ] = ACTIONS(4394), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym_COMMA] = ACTIONS(6907), + [anon_sym_by] = ACTIONS(4394), + [anon_sym_LT] = ACTIONS(4394), + [anon_sym_GT] = ACTIONS(4394), + [anon_sym_where] = 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_value] = 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_multiline_comment] = ACTIONS(3), + }, + [3624] = { + [sym_type_constraints] = STATE(3943), + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5742), + [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_value] = 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), + }, + [3625] = { + [sym_type_constraints] = STATE(3729), + [sym_enum_class_body] = STATE(3841), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(6909), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + }, + [3626] = { + [sym_type_constraints] = STATE(3925), + [sym_function_body] = STATE(3909), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + }, + [3627] = { + [sym__alpha_identifier] = ACTIONS(4662), + [anon_sym_AT] = ACTIONS(4664), + [anon_sym_LBRACK] = ACTIONS(4664), + [anon_sym_EQ] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4664), + [anon_sym_RBRACE] = ACTIONS(4664), + [anon_sym_LPAREN] = ACTIONS(4664), + [anon_sym_by] = ACTIONS(4662), + [anon_sym_where] = ACTIONS(4662), + [anon_sym_object] = ACTIONS(4662), + [anon_sym_fun] = 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_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_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_PLUS_PLUS] = ACTIONS(4664), + [anon_sym_DASH_DASH] = ACTIONS(4664), + [anon_sym_BANG] = ACTIONS(4662), + [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_value] = 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(4866), - [sym_safe_nav] = ACTIONS(4866), + [anon_sym_return_AT] = ACTIONS(4664), + [anon_sym_continue_AT] = ACTIONS(4664), + [anon_sym_break_AT] = ACTIONS(4664), + [anon_sym_this_AT] = ACTIONS(4664), + [anon_sym_super_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4664), }, - [3549] = { - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_RBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(4150), - [anon_sym_LBRACE] = ACTIONS(4152), - [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_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_value] = 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), + [3628] = { + [sym_type_constraints] = STATE(3743), + [sym_enum_class_body] = STATE(3876), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [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), }, - [3550] = { - [sym_type_constraints] = STATE(3647), - [sym_function_body] = STATE(3988), - [sym__block] = STATE(3975), + [3629] = { + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(4708), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_object] = ACTIONS(4706), + [anon_sym_fun] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_this] = ACTIONS(4706), + [anon_sym_super] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4708), + [sym_label] = ACTIONS(4706), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(4706), + [anon_sym_if] = ACTIONS(4706), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_when] = ACTIONS(4706), + [anon_sym_try] = ACTIONS(4706), + [anon_sym_throw] = ACTIONS(4706), + [anon_sym_return] = ACTIONS(4706), + [anon_sym_continue] = ACTIONS(4706), + [anon_sym_break] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4708), + [anon_sym_continue_AT] = ACTIONS(4708), + [anon_sym_break_AT] = ACTIONS(4708), + [anon_sym_this_AT] = ACTIONS(4708), + [anon_sym_super_AT] = ACTIONS(4708), + [sym_real_literal] = ACTIONS(4708), + [sym_integer_literal] = ACTIONS(4706), + [sym_hex_literal] = ACTIONS(4708), + [sym_bin_literal] = ACTIONS(4708), + [anon_sym_true] = ACTIONS(4706), + [anon_sym_false] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4708), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4708), + }, + [3630] = { + [sym_class_body] = STATE(3990), + [sym_type_constraints] = STATE(3818), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6911), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + }, + [3631] = { + [sym_type_constraints] = STATE(3892), + [sym_function_body] = STATE(3956), + [sym__block] = STATE(3874), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(5816), + [anon_sym_where] = ACTIONS(5742), [anon_sym_SEMI] = ACTIONS(4262), [anon_sym_get] = ACTIONS(4260), [anon_sym_set] = ACTIONS(4260), @@ -404926,3367 +411887,2991 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [3551] = { - [sym__alpha_identifier] = ACTIONS(4860), - [anon_sym_AT] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_RBRACK] = ACTIONS(4862), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_RPAREN] = ACTIONS(4862), - [anon_sym_LT] = ACTIONS(4860), - [anon_sym_GT] = ACTIONS(4860), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_SEMI] = ACTIONS(4862), - [anon_sym_get] = ACTIONS(4860), - [anon_sym_set] = ACTIONS(4860), - [anon_sym_STAR] = ACTIONS(4860), - [anon_sym_DASH_GT] = ACTIONS(4862), - [sym_label] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_while] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_QMARK_COLON] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_else] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4862), - [anon_sym_DASH_EQ] = ACTIONS(4862), - [anon_sym_STAR_EQ] = ACTIONS(4862), - [anon_sym_SLASH_EQ] = ACTIONS(4862), - [anon_sym_PERCENT_EQ] = ACTIONS(4862), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4862), - [anon_sym_LT_EQ] = ACTIONS(4862), - [anon_sym_GT_EQ] = ACTIONS(4862), - [anon_sym_BANGin] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_BANGis] = ACTIONS(4862), - [anon_sym_PLUS] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_as_QMARK] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4862), - [anon_sym_BANG_BANG] = ACTIONS(4862), - [anon_sym_suspend] = ACTIONS(4860), - [anon_sym_sealed] = ACTIONS(4860), - [anon_sym_annotation] = ACTIONS(4860), - [anon_sym_data] = ACTIONS(4860), - [anon_sym_inner] = ACTIONS(4860), - [anon_sym_value] = ACTIONS(4860), - [anon_sym_override] = ACTIONS(4860), - [anon_sym_lateinit] = ACTIONS(4860), - [anon_sym_public] = ACTIONS(4860), - [anon_sym_private] = ACTIONS(4860), - [anon_sym_internal] = ACTIONS(4860), - [anon_sym_protected] = ACTIONS(4860), - [anon_sym_tailrec] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - [anon_sym_infix] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym_external] = ACTIONS(4860), - [sym_property_modifier] = ACTIONS(4860), - [anon_sym_abstract] = ACTIONS(4860), - [anon_sym_final] = ACTIONS(4860), - [anon_sym_open] = ACTIONS(4860), - [anon_sym_vararg] = ACTIONS(4860), - [anon_sym_noinline] = ACTIONS(4860), - [anon_sym_crossinline] = ACTIONS(4860), - [anon_sym_expect] = ACTIONS(4860), - [anon_sym_actual] = ACTIONS(4860), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4862), - [sym_safe_nav] = ACTIONS(4862), - [sym_multiline_comment] = ACTIONS(3), + [3632] = { + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), }, - [3552] = { - [sym_type_constraints] = STATE(3926), - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(6905), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [3633] = { + [sym_type_constraints] = STATE(3850), + [sym_function_body] = STATE(3599), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(6913), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_RBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [anon_sym_DASH_GT] = ACTIONS(4125), + [sym_label] = ACTIONS(4125), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_while] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), [sym_multiline_comment] = ACTIONS(3), }, - [3553] = { - [aux_sym_nullable_type_repeat1] = STATE(3553), - [sym__alpha_identifier] = ACTIONS(4282), - [anon_sym_AT] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4284), - [anon_sym_DOT] = ACTIONS(4282), - [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_by] = ACTIONS(4282), - [anon_sym_LT] = ACTIONS(4282), - [anon_sym_GT] = ACTIONS(4282), - [anon_sym_where] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym_get] = ACTIONS(4282), - [anon_sym_set] = ACTIONS(4282), - [sym__quest] = ACTIONS(6907), - [anon_sym_STAR] = ACTIONS(4282), - [sym_label] = ACTIONS(4284), - [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_else] = 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_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_value] = 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), - [sym__backtick_identifier] = ACTIONS(4284), - [sym__automatic_semicolon] = ACTIONS(4284), - [sym_safe_nav] = ACTIONS(4284), + [3634] = { + [sym_type_constraints] = STATE(3717), + [sym_enum_class_body] = STATE(3990), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6917), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, - [3554] = { - [sym_type_constraints] = STATE(3646), - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [3635] = { + [sym_type_constraints] = STATE(3851), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(6919), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_RBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [anon_sym_DASH_GT] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_while] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, - [3555] = { - [aux_sym_nullable_type_repeat1] = STATE(3598), - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_as] = ACTIONS(4276), - [anon_sym_EQ] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [sym__quest] = ACTIONS(6811), - [anon_sym_STAR] = ACTIONS(4276), - [sym_label] = ACTIONS(4278), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_DOT_DOT] = ACTIONS(4278), - [anon_sym_QMARK_COLON] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ] = ACTIONS(4276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_as_QMARK] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG_BANG] = ACTIONS(4278), - [anon_sym_suspend] = ACTIONS(4276), - [anon_sym_sealed] = ACTIONS(4276), - [anon_sym_annotation] = ACTIONS(4276), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_override] = ACTIONS(4276), - [anon_sym_lateinit] = ACTIONS(4276), - [anon_sym_public] = ACTIONS(4276), - [anon_sym_private] = ACTIONS(4276), - [anon_sym_internal] = ACTIONS(4276), - [anon_sym_protected] = ACTIONS(4276), - [anon_sym_tailrec] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [anon_sym_infix] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym_external] = ACTIONS(4276), - [sym_property_modifier] = ACTIONS(4276), - [anon_sym_abstract] = ACTIONS(4276), - [anon_sym_final] = ACTIONS(4276), - [anon_sym_open] = ACTIONS(4276), - [anon_sym_vararg] = ACTIONS(4276), - [anon_sym_noinline] = ACTIONS(4276), - [anon_sym_crossinline] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4278), - [sym__automatic_semicolon] = ACTIONS(4278), - [sym_safe_nav] = ACTIONS(4278), + [3636] = { + [sym_function_body] = STATE(3137), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4418), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), + }, + [3637] = { + [sym__alpha_identifier] = ACTIONS(4666), + [anon_sym_AT] = ACTIONS(4668), + [anon_sym_LBRACK] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4668), + [anon_sym_LBRACE] = ACTIONS(4668), + [anon_sym_RBRACE] = ACTIONS(4668), + [anon_sym_LPAREN] = ACTIONS(4668), + [anon_sym_COMMA] = ACTIONS(4668), + [anon_sym_by] = ACTIONS(4666), + [anon_sym_object] = ACTIONS(4666), + [anon_sym_fun] = 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(4668), + [sym_label] = ACTIONS(4666), + [anon_sym_in] = ACTIONS(4666), + [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_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_PLUS_PLUS] = ACTIONS(4668), + [anon_sym_DASH_DASH] = ACTIONS(4668), + [anon_sym_BANG] = ACTIONS(4666), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4668), + [anon_sym_super_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4668), + }, + [3638] = { + [sym_class_body] = STATE(3893), + [sym_type_constraints] = STATE(3712), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [3556] = { - [sym_type_constraints] = STATE(3641), - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), + [3639] = { + [sym_function_body] = STATE(3123), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [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_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(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [3640] = { + [sym_type_constraints] = STATE(3860), + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(6921), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_RBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [anon_sym_DASH_GT] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), [sym_multiline_comment] = ACTIONS(3), }, - [3557] = { - [sym_type_constraints] = STATE(3639), - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [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(5816), - [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_value] = 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), + [3641] = { + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_COLON] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_DOT] = ACTIONS(4382), + [anon_sym_as] = ACTIONS(4382), + [anon_sym_EQ] = ACTIONS(4382), + [anon_sym_constructor] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_COMMA] = ACTIONS(4384), + [anon_sym_LT] = ACTIONS(4382), + [anon_sym_GT] = ACTIONS(4382), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(4384), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4382), + [sym_label] = ACTIONS(4384), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_DOT_DOT] = ACTIONS(4384), + [anon_sym_QMARK_COLON] = ACTIONS(4384), + [anon_sym_AMP_AMP] = ACTIONS(4384), + [anon_sym_PIPE_PIPE] = ACTIONS(4384), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_PLUS_EQ] = ACTIONS(4384), + [anon_sym_DASH_EQ] = ACTIONS(4384), + [anon_sym_STAR_EQ] = ACTIONS(4384), + [anon_sym_SLASH_EQ] = ACTIONS(4384), + [anon_sym_PERCENT_EQ] = ACTIONS(4384), + [anon_sym_BANG_EQ] = ACTIONS(4382), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4384), + [anon_sym_EQ_EQ] = ACTIONS(4382), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4384), + [anon_sym_LT_EQ] = ACTIONS(4384), + [anon_sym_GT_EQ] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_SLASH] = ACTIONS(4382), + [anon_sym_PERCENT] = ACTIONS(4382), + [anon_sym_as_QMARK] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG_BANG] = ACTIONS(4384), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_safe_nav] = ACTIONS(4384), [sym_multiline_comment] = ACTIONS(3), }, - [3558] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_RPAREN] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_DASH_GT] = ACTIONS(4421), - [sym_label] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), + [3642] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_as] = ACTIONS(3938), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_constructor] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_COMMA] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3938), + [anon_sym_GT] = ACTIONS(3938), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(3943), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3938), + [sym_label] = ACTIONS(3943), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_DOT_DOT] = ACTIONS(3943), + [anon_sym_QMARK_COLON] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3938), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3943), + [anon_sym_EQ_EQ] = ACTIONS(3938), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_SLASH] = ACTIONS(3938), + [anon_sym_PERCENT] = ACTIONS(3938), + [anon_sym_as_QMARK] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_safe_nav] = ACTIONS(3943), [sym_multiline_comment] = ACTIONS(3), }, - [3559] = { - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [3643] = { + [sym_type_constraints] = STATE(3711), + [sym_enum_class_body] = STATE(3893), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(6004), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [3560] = { - [aux_sym_type_constraints_repeat1] = STATE(3535), - [sym__alpha_identifier] = ACTIONS(4389), - [anon_sym_AT] = ACTIONS(4391), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_EQ] = ACTIONS(4391), - [anon_sym_LBRACE] = ACTIONS(4391), - [anon_sym_RBRACE] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(6910), - [anon_sym_by] = ACTIONS(4389), - [anon_sym_object] = ACTIONS(4389), - [anon_sym_fun] = ACTIONS(4389), - [anon_sym_SEMI] = ACTIONS(4391), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), - [anon_sym_this] = ACTIONS(4389), - [anon_sym_super] = ACTIONS(4389), - [anon_sym_STAR] = ACTIONS(4391), - [sym_label] = ACTIONS(4389), - [anon_sym_in] = ACTIONS(4389), - [anon_sym_null] = ACTIONS(4389), - [anon_sym_if] = ACTIONS(4389), - [anon_sym_else] = ACTIONS(4389), - [anon_sym_when] = ACTIONS(4389), - [anon_sym_try] = ACTIONS(4389), - [anon_sym_throw] = ACTIONS(4389), - [anon_sym_return] = ACTIONS(4389), - [anon_sym_continue] = ACTIONS(4389), - [anon_sym_break] = ACTIONS(4389), - [anon_sym_COLON_COLON] = ACTIONS(4391), - [anon_sym_BANGin] = ACTIONS(4391), - [anon_sym_is] = ACTIONS(4389), - [anon_sym_BANGis] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4389), - [anon_sym_DASH] = ACTIONS(4389), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4389), - [anon_sym_suspend] = ACTIONS(4389), - [anon_sym_sealed] = ACTIONS(4389), - [anon_sym_annotation] = ACTIONS(4389), - [anon_sym_data] = ACTIONS(4389), - [anon_sym_inner] = ACTIONS(4389), - [anon_sym_value] = ACTIONS(4389), - [anon_sym_override] = ACTIONS(4389), - [anon_sym_lateinit] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_internal] = ACTIONS(4389), - [anon_sym_protected] = ACTIONS(4389), - [anon_sym_tailrec] = ACTIONS(4389), - [anon_sym_operator] = ACTIONS(4389), - [anon_sym_infix] = ACTIONS(4389), - [anon_sym_inline] = ACTIONS(4389), - [anon_sym_external] = ACTIONS(4389), - [sym_property_modifier] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_open] = ACTIONS(4389), - [anon_sym_vararg] = ACTIONS(4389), - [anon_sym_noinline] = ACTIONS(4389), - [anon_sym_crossinline] = ACTIONS(4389), - [anon_sym_expect] = ACTIONS(4389), - [anon_sym_actual] = ACTIONS(4389), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4391), - [anon_sym_continue_AT] = ACTIONS(4391), - [anon_sym_break_AT] = ACTIONS(4391), - [anon_sym_this_AT] = ACTIONS(4391), - [anon_sym_super_AT] = ACTIONS(4391), - [sym_real_literal] = ACTIONS(4391), - [sym_integer_literal] = ACTIONS(4389), - [sym_hex_literal] = ACTIONS(4391), - [sym_bin_literal] = ACTIONS(4391), - [anon_sym_true] = ACTIONS(4389), - [anon_sym_false] = ACTIONS(4389), - [anon_sym_SQUOTE] = ACTIONS(4391), - [sym__backtick_identifier] = ACTIONS(4391), - [sym__automatic_semicolon] = ACTIONS(4391), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4391), + [3644] = { + [sym_class_body] = STATE(3923), + [sym_type_constraints] = STATE(3784), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(6923), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), }, - [3561] = { - [sym_function_body] = STATE(3833), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(6912), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), + [3645] = { + [sym_type_constraints] = STATE(3881), + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_RBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_DASH_GT] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, - [3562] = { - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_RBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(4301), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_while] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), + [3646] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_object] = ACTIONS(4343), + [anon_sym_fun] = ACTIONS(4343), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_this] = ACTIONS(4343), + [anon_sym_super] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4343), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_null] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_when] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4343), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4345), + [anon_sym_continue_AT] = ACTIONS(4345), + [anon_sym_break_AT] = ACTIONS(4345), + [anon_sym_this_AT] = ACTIONS(4345), + [anon_sym_super_AT] = ACTIONS(4345), + [sym_real_literal] = ACTIONS(4345), + [sym_integer_literal] = ACTIONS(4343), + [sym_hex_literal] = ACTIONS(4345), + [sym_bin_literal] = ACTIONS(4345), + [anon_sym_true] = ACTIONS(4343), + [anon_sym_false] = ACTIONS(4343), + [anon_sym_SQUOTE] = ACTIONS(4345), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4886), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4345), + }, + [3647] = { + [sym_class_body] = STATE(3947), + [sym_type_constraints] = STATE(3738), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(5992), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, - [3563] = { - [sym_function_body] = STATE(3897), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(6914), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [3648] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_constructor] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_LT] = ACTIONS(4095), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_object] = ACTIONS(4093), + [anon_sym_fun] = ACTIONS(4093), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_this] = ACTIONS(4093), + [anon_sym_super] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4095), + [sym_label] = ACTIONS(4093), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4093), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_when] = ACTIONS(4093), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG] = ACTIONS(4093), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4095), + [anon_sym_continue_AT] = ACTIONS(4095), + [anon_sym_break_AT] = ACTIONS(4095), + [anon_sym_this_AT] = ACTIONS(4095), + [anon_sym_super_AT] = ACTIONS(4095), + [sym_real_literal] = ACTIONS(4095), + [sym_integer_literal] = ACTIONS(4093), + [sym_hex_literal] = ACTIONS(4095), + [sym_bin_literal] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4093), + [anon_sym_false] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(4095), + [sym__backtick_identifier] = ACTIONS(4095), + [sym__automatic_semicolon] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4095), + }, + [3649] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6927), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4217), + [anon_sym_DASH_GT] = ACTIONS(4220), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [3650] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_RBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6931), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4185), + [anon_sym_DASH_GT] = ACTIONS(4188), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [3651] = { + [sym__alpha_identifier] = ACTIONS(4136), + [anon_sym_AT] = ACTIONS(4138), + [anon_sym_COLON] = ACTIONS(6720), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_DOT] = ACTIONS(4136), + [anon_sym_as] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_LBRACE] = ACTIONS(4138), + [anon_sym_RBRACE] = ACTIONS(4138), + [anon_sym_LPAREN] = ACTIONS(4138), + [anon_sym_COMMA] = ACTIONS(4138), + [anon_sym_by] = ACTIONS(4136), + [anon_sym_LT] = ACTIONS(4136), + [anon_sym_GT] = ACTIONS(4136), + [anon_sym_where] = ACTIONS(4136), + [anon_sym_SEMI] = ACTIONS(4138), + [anon_sym_get] = ACTIONS(4136), + [anon_sym_set] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [sym_label] = ACTIONS(4138), + [anon_sym_in] = ACTIONS(4136), + [anon_sym_DOT_DOT] = ACTIONS(4138), + [anon_sym_QMARK_COLON] = ACTIONS(4138), + [anon_sym_AMP_AMP] = ACTIONS(4138), + [anon_sym_PIPE_PIPE] = ACTIONS(4138), + [anon_sym_else] = ACTIONS(4136), + [anon_sym_COLON_COLON] = ACTIONS(4138), + [anon_sym_PLUS_EQ] = ACTIONS(4138), + [anon_sym_DASH_EQ] = ACTIONS(4138), + [anon_sym_STAR_EQ] = ACTIONS(4138), + [anon_sym_SLASH_EQ] = ACTIONS(4138), + [anon_sym_PERCENT_EQ] = ACTIONS(4138), + [anon_sym_BANG_EQ] = ACTIONS(4136), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4138), + [anon_sym_EQ_EQ] = ACTIONS(4136), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4138), + [anon_sym_LT_EQ] = ACTIONS(4138), + [anon_sym_GT_EQ] = ACTIONS(4138), + [anon_sym_BANGin] = ACTIONS(4138), + [anon_sym_is] = ACTIONS(4136), + [anon_sym_BANGis] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4136), + [anon_sym_SLASH] = ACTIONS(4136), + [anon_sym_PERCENT] = ACTIONS(4136), + [anon_sym_as_QMARK] = ACTIONS(4138), + [anon_sym_PLUS_PLUS] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4138), + [anon_sym_BANG_BANG] = ACTIONS(4138), + [anon_sym_suspend] = ACTIONS(4136), + [anon_sym_sealed] = ACTIONS(4136), + [anon_sym_annotation] = ACTIONS(4136), + [anon_sym_data] = ACTIONS(4136), + [anon_sym_inner] = ACTIONS(4136), + [anon_sym_value] = ACTIONS(4136), + [anon_sym_override] = ACTIONS(4136), + [anon_sym_lateinit] = ACTIONS(4136), + [anon_sym_public] = ACTIONS(4136), + [anon_sym_private] = ACTIONS(4136), + [anon_sym_internal] = ACTIONS(4136), + [anon_sym_protected] = ACTIONS(4136), + [anon_sym_tailrec] = ACTIONS(4136), + [anon_sym_operator] = ACTIONS(4136), + [anon_sym_infix] = ACTIONS(4136), + [anon_sym_inline] = ACTIONS(4136), + [anon_sym_external] = ACTIONS(4136), + [sym_property_modifier] = ACTIONS(4136), + [anon_sym_abstract] = ACTIONS(4136), + [anon_sym_final] = ACTIONS(4136), + [anon_sym_open] = ACTIONS(4136), + [anon_sym_vararg] = ACTIONS(4136), + [anon_sym_noinline] = ACTIONS(4136), + [anon_sym_crossinline] = ACTIONS(4136), + [anon_sym_expect] = ACTIONS(4136), + [anon_sym_actual] = ACTIONS(4136), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4138), + [sym__automatic_semicolon] = ACTIONS(4138), + [sym_safe_nav] = ACTIONS(4138), [sym_multiline_comment] = ACTIONS(3), }, - [3564] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(4999), - [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_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_value] = 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), + [3652] = { + [sym__alpha_identifier] = ACTIONS(4402), + [anon_sym_AT] = ACTIONS(4404), + [anon_sym_LBRACK] = ACTIONS(4404), + [anon_sym_DOT] = ACTIONS(4402), + [anon_sym_as] = ACTIONS(4402), + [anon_sym_EQ] = ACTIONS(4402), + [anon_sym_LBRACE] = ACTIONS(4404), + [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_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_value] = 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), + [aux_sym_unsigned_literal_token1] = ACTIONS(6935), + [anon_sym_L] = ACTIONS(6937), + [sym__backtick_identifier] = ACTIONS(4404), + [sym__automatic_semicolon] = ACTIONS(4404), + [sym_safe_nav] = ACTIONS(4404), [sym_multiline_comment] = ACTIONS(3), }, - [3565] = { - [sym_type_constraints] = STATE(4012), - [sym_function_body] = STATE(3194), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(6916), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4133), - [anon_sym_fun] = ACTIONS(4133), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_this] = ACTIONS(4133), - [anon_sym_super] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4135), - [sym_label] = ACTIONS(4133), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_null] = ACTIONS(4133), - [anon_sym_if] = ACTIONS(4133), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_when] = ACTIONS(4133), - [anon_sym_try] = ACTIONS(4133), - [anon_sym_throw] = ACTIONS(4133), - [anon_sym_return] = ACTIONS(4133), - [anon_sym_continue] = ACTIONS(4133), - [anon_sym_break] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4135), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4133), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4135), - [anon_sym_continue_AT] = ACTIONS(4135), - [anon_sym_break_AT] = ACTIONS(4135), - [anon_sym_this_AT] = ACTIONS(4135), - [anon_sym_super_AT] = ACTIONS(4135), - [sym_real_literal] = ACTIONS(4135), - [sym_integer_literal] = ACTIONS(4133), - [sym_hex_literal] = ACTIONS(4135), - [sym_bin_literal] = ACTIONS(4135), - [anon_sym_true] = ACTIONS(4133), - [anon_sym_false] = ACTIONS(4133), - [anon_sym_SQUOTE] = ACTIONS(4135), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4135), + [3653] = { + [ts_builtin_sym_end] = ACTIONS(6939), + [sym__alpha_identifier] = ACTIONS(6941), + [anon_sym_AT] = ACTIONS(6939), + [anon_sym_LBRACK] = ACTIONS(6939), + [anon_sym_import] = ACTIONS(6941), + [anon_sym_typealias] = ACTIONS(6941), + [anon_sym_class] = ACTIONS(6941), + [anon_sym_interface] = ACTIONS(6941), + [anon_sym_enum] = ACTIONS(6941), + [anon_sym_LBRACE] = ACTIONS(6939), + [anon_sym_LPAREN] = ACTIONS(6939), + [anon_sym_val] = ACTIONS(6941), + [anon_sym_var] = ACTIONS(6941), + [anon_sym_object] = ACTIONS(6941), + [anon_sym_fun] = ACTIONS(6941), + [anon_sym_get] = ACTIONS(6941), + [anon_sym_set] = ACTIONS(6941), + [anon_sym_this] = ACTIONS(6941), + [anon_sym_super] = ACTIONS(6941), + [anon_sym_STAR] = ACTIONS(6939), + [sym_label] = ACTIONS(6941), + [anon_sym_for] = ACTIONS(6941), + [anon_sym_while] = ACTIONS(6941), + [anon_sym_do] = ACTIONS(6941), + [anon_sym_null] = ACTIONS(6941), + [anon_sym_if] = ACTIONS(6941), + [anon_sym_when] = ACTIONS(6941), + [anon_sym_try] = ACTIONS(6941), + [anon_sym_throw] = ACTIONS(6941), + [anon_sym_return] = ACTIONS(6941), + [anon_sym_continue] = ACTIONS(6941), + [anon_sym_break] = ACTIONS(6941), + [anon_sym_COLON_COLON] = ACTIONS(6939), + [anon_sym_PLUS] = ACTIONS(6941), + [anon_sym_DASH] = ACTIONS(6941), + [anon_sym_PLUS_PLUS] = ACTIONS(6939), + [anon_sym_DASH_DASH] = ACTIONS(6939), + [anon_sym_BANG] = ACTIONS(6939), + [anon_sym_suspend] = ACTIONS(6941), + [anon_sym_sealed] = ACTIONS(6941), + [anon_sym_annotation] = ACTIONS(6941), + [anon_sym_data] = ACTIONS(6941), + [anon_sym_inner] = ACTIONS(6941), + [anon_sym_value] = ACTIONS(6941), + [anon_sym_override] = ACTIONS(6941), + [anon_sym_lateinit] = ACTIONS(6941), + [anon_sym_public] = ACTIONS(6941), + [anon_sym_private] = ACTIONS(6941), + [anon_sym_internal] = ACTIONS(6941), + [anon_sym_protected] = ACTIONS(6941), + [anon_sym_tailrec] = ACTIONS(6941), + [anon_sym_operator] = ACTIONS(6941), + [anon_sym_infix] = ACTIONS(6941), + [anon_sym_inline] = ACTIONS(6941), + [anon_sym_external] = ACTIONS(6941), + [sym_property_modifier] = ACTIONS(6941), + [anon_sym_abstract] = ACTIONS(6941), + [anon_sym_final] = ACTIONS(6941), + [anon_sym_open] = ACTIONS(6941), + [anon_sym_vararg] = ACTIONS(6941), + [anon_sym_noinline] = ACTIONS(6941), + [anon_sym_crossinline] = ACTIONS(6941), + [anon_sym_expect] = ACTIONS(6941), + [anon_sym_actual] = ACTIONS(6941), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6939), + [anon_sym_continue_AT] = ACTIONS(6939), + [anon_sym_break_AT] = ACTIONS(6939), + [anon_sym_this_AT] = ACTIONS(6939), + [anon_sym_super_AT] = ACTIONS(6939), + [sym_real_literal] = ACTIONS(6939), + [sym_integer_literal] = ACTIONS(6941), + [sym_hex_literal] = ACTIONS(6939), + [sym_bin_literal] = ACTIONS(6939), + [anon_sym_true] = ACTIONS(6941), + [anon_sym_false] = ACTIONS(6941), + [anon_sym_SQUOTE] = ACTIONS(6939), + [sym__backtick_identifier] = ACTIONS(6939), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6939), }, - [3566] = { - [sym_type_constraints] = STATE(4010), - [sym_function_body] = STATE(3231), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(6920), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4150), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [3654] = { + [aux_sym_user_type_repeat1] = STATE(3699), + [sym__alpha_identifier] = ACTIONS(4070), + [anon_sym_AT] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_DOT] = ACTIONS(6902), + [anon_sym_typealias] = ACTIONS(4070), + [anon_sym_class] = ACTIONS(4070), + [anon_sym_interface] = ACTIONS(4070), + [anon_sym_enum] = ACTIONS(4070), + [anon_sym_LBRACE] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_val] = ACTIONS(4070), + [anon_sym_var] = ACTIONS(4070), + [anon_sym_object] = ACTIONS(4070), + [anon_sym_fun] = ACTIONS(4070), + [anon_sym_get] = ACTIONS(4070), + [anon_sym_set] = ACTIONS(4070), + [anon_sym_this] = ACTIONS(4070), + [anon_sym_super] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4072), + [sym_label] = ACTIONS(4070), + [anon_sym_for] = ACTIONS(4070), + [anon_sym_while] = ACTIONS(4070), + [anon_sym_do] = ACTIONS(4070), + [anon_sym_null] = ACTIONS(4070), + [anon_sym_if] = ACTIONS(4070), + [anon_sym_when] = ACTIONS(4070), + [anon_sym_try] = ACTIONS(4070), + [anon_sym_throw] = ACTIONS(4070), + [anon_sym_return] = ACTIONS(4070), + [anon_sym_continue] = ACTIONS(4070), + [anon_sym_break] = ACTIONS(4070), + [anon_sym_COLON_COLON] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4072), + [anon_sym_BANG] = ACTIONS(4072), + [anon_sym_suspend] = ACTIONS(4070), + [anon_sym_sealed] = ACTIONS(4070), + [anon_sym_annotation] = ACTIONS(4070), + [anon_sym_data] = ACTIONS(4070), + [anon_sym_inner] = ACTIONS(4070), + [anon_sym_value] = ACTIONS(4070), + [anon_sym_override] = ACTIONS(4070), + [anon_sym_lateinit] = ACTIONS(4070), + [anon_sym_public] = ACTIONS(4070), + [anon_sym_private] = ACTIONS(4070), + [anon_sym_internal] = ACTIONS(4070), + [anon_sym_protected] = ACTIONS(4070), + [anon_sym_tailrec] = ACTIONS(4070), + [anon_sym_operator] = ACTIONS(4070), + [anon_sym_infix] = ACTIONS(4070), + [anon_sym_inline] = ACTIONS(4070), + [anon_sym_external] = ACTIONS(4070), + [sym_property_modifier] = ACTIONS(4070), + [anon_sym_abstract] = ACTIONS(4070), + [anon_sym_final] = ACTIONS(4070), + [anon_sym_open] = ACTIONS(4070), + [anon_sym_vararg] = ACTIONS(4070), + [anon_sym_noinline] = ACTIONS(4070), + [anon_sym_crossinline] = ACTIONS(4070), + [anon_sym_expect] = ACTIONS(4070), + [anon_sym_actual] = ACTIONS(4070), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4072), + [anon_sym_continue_AT] = ACTIONS(4072), + [anon_sym_break_AT] = ACTIONS(4072), + [anon_sym_this_AT] = ACTIONS(4072), + [anon_sym_super_AT] = ACTIONS(4072), + [sym_real_literal] = ACTIONS(4072), + [sym_integer_literal] = ACTIONS(4070), + [sym_hex_literal] = ACTIONS(4072), + [sym_bin_literal] = ACTIONS(4072), + [anon_sym_true] = ACTIONS(4070), + [anon_sym_false] = ACTIONS(4070), + [anon_sym_SQUOTE] = ACTIONS(4072), + [sym__backtick_identifier] = ACTIONS(4072), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4072), }, - [3567] = { - [sym_type_constraints] = STATE(3995), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(6922), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [3655] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_COLON] = ACTIONS(4093), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_as] = ACTIONS(4093), + [anon_sym_EQ] = ACTIONS(4093), + [anon_sym_constructor] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_LT] = ACTIONS(4093), + [anon_sym_GT] = ACTIONS(4093), + [anon_sym_where] = ACTIONS(4093), + [anon_sym_SEMI] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4093), + [sym_label] = ACTIONS(4095), + [anon_sym_in] = ACTIONS(4093), + [anon_sym_DOT_DOT] = ACTIONS(4095), + [anon_sym_QMARK_COLON] = ACTIONS(4095), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_PIPE_PIPE] = ACTIONS(4095), + [anon_sym_else] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS_EQ] = ACTIONS(4095), + [anon_sym_DASH_EQ] = ACTIONS(4095), + [anon_sym_STAR_EQ] = ACTIONS(4095), + [anon_sym_SLASH_EQ] = ACTIONS(4095), + [anon_sym_PERCENT_EQ] = ACTIONS(4095), + [anon_sym_BANG_EQ] = ACTIONS(4093), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4095), + [anon_sym_EQ_EQ] = ACTIONS(4093), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4095), + [anon_sym_LT_EQ] = ACTIONS(4095), + [anon_sym_GT_EQ] = ACTIONS(4095), + [anon_sym_BANGin] = ACTIONS(4095), + [anon_sym_is] = ACTIONS(4093), + [anon_sym_BANGis] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_SLASH] = ACTIONS(4093), + [anon_sym_PERCENT] = ACTIONS(4093), + [anon_sym_as_QMARK] = ACTIONS(4095), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG_BANG] = ACTIONS(4095), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4095), + [sym__automatic_semicolon] = ACTIONS(4095), + [sym_safe_nav] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), }, - [3568] = { - [sym__alpha_identifier] = ACTIONS(5181), - [anon_sym_AT] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_as] = ACTIONS(5181), - [anon_sym_EQ] = ACTIONS(5181), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_where] = ACTIONS(5181), - [anon_sym_SEMI] = ACTIONS(5183), - [anon_sym_get] = ACTIONS(5181), - [anon_sym_set] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [anon_sym_DASH_GT] = ACTIONS(5183), - [sym_label] = ACTIONS(5183), - [anon_sym_in] = ACTIONS(5181), - [anon_sym_while] = ACTIONS(5181), - [anon_sym_DOT_DOT] = ACTIONS(5183), - [anon_sym_QMARK_COLON] = ACTIONS(5183), - [anon_sym_AMP_AMP] = ACTIONS(5183), - [anon_sym_PIPE_PIPE] = ACTIONS(5183), - [anon_sym_else] = ACTIONS(5181), - [anon_sym_COLON_COLON] = ACTIONS(5183), - [anon_sym_PLUS_EQ] = ACTIONS(5183), - [anon_sym_DASH_EQ] = ACTIONS(5183), - [anon_sym_STAR_EQ] = ACTIONS(5183), - [anon_sym_SLASH_EQ] = ACTIONS(5183), - [anon_sym_PERCENT_EQ] = ACTIONS(5183), - [anon_sym_BANG_EQ] = ACTIONS(5181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5183), - [anon_sym_EQ_EQ] = ACTIONS(5181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5183), - [anon_sym_LT_EQ] = ACTIONS(5183), - [anon_sym_GT_EQ] = ACTIONS(5183), - [anon_sym_BANGin] = ACTIONS(5183), - [anon_sym_is] = ACTIONS(5181), - [anon_sym_BANGis] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_PERCENT] = ACTIONS(5181), - [anon_sym_as_QMARK] = ACTIONS(5183), - [anon_sym_PLUS_PLUS] = ACTIONS(5183), - [anon_sym_DASH_DASH] = ACTIONS(5183), - [anon_sym_BANG_BANG] = ACTIONS(5183), - [anon_sym_suspend] = ACTIONS(5181), - [anon_sym_sealed] = ACTIONS(5181), - [anon_sym_annotation] = ACTIONS(5181), - [anon_sym_data] = ACTIONS(5181), - [anon_sym_inner] = ACTIONS(5181), - [anon_sym_value] = ACTIONS(5181), - [anon_sym_override] = ACTIONS(5181), - [anon_sym_lateinit] = ACTIONS(5181), - [anon_sym_public] = ACTIONS(5181), - [anon_sym_private] = ACTIONS(5181), - [anon_sym_internal] = ACTIONS(5181), - [anon_sym_protected] = ACTIONS(5181), - [anon_sym_tailrec] = ACTIONS(5181), - [anon_sym_operator] = ACTIONS(5181), - [anon_sym_infix] = ACTIONS(5181), - [anon_sym_inline] = ACTIONS(5181), - [anon_sym_external] = ACTIONS(5181), - [sym_property_modifier] = ACTIONS(5181), - [anon_sym_abstract] = ACTIONS(5181), - [anon_sym_final] = ACTIONS(5181), - [anon_sym_open] = ACTIONS(5181), - [anon_sym_vararg] = ACTIONS(5181), - [anon_sym_noinline] = ACTIONS(5181), - [anon_sym_crossinline] = ACTIONS(5181), - [anon_sym_expect] = ACTIONS(5181), - [anon_sym_actual] = ACTIONS(5181), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5183), - [sym_safe_nav] = ACTIONS(5183), + [3656] = { + [aux_sym_type_constraints_repeat1] = STATE(3677), + [sym__alpha_identifier] = ACTIONS(4388), + [anon_sym_AT] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_as] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4390), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(6907), + [anon_sym_by] = ACTIONS(4388), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_where] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_get] = ACTIONS(4388), + [anon_sym_set] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4388), + [sym_label] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4388), + [anon_sym_DOT_DOT] = ACTIONS(4390), + [anon_sym_QMARK_COLON] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4388), + [anon_sym_COLON_COLON] = ACTIONS(4390), + [anon_sym_PLUS_EQ] = ACTIONS(4390), + [anon_sym_DASH_EQ] = ACTIONS(4390), + [anon_sym_STAR_EQ] = ACTIONS(4390), + [anon_sym_SLASH_EQ] = ACTIONS(4390), + [anon_sym_PERCENT_EQ] = ACTIONS(4390), + [anon_sym_BANG_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4390), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_BANGin] = ACTIONS(4390), + [anon_sym_is] = ACTIONS(4388), + [anon_sym_BANGis] = ACTIONS(4390), + [anon_sym_PLUS] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4388), + [anon_sym_SLASH] = ACTIONS(4388), + [anon_sym_PERCENT] = ACTIONS(4388), + [anon_sym_as_QMARK] = ACTIONS(4390), + [anon_sym_PLUS_PLUS] = ACTIONS(4390), + [anon_sym_DASH_DASH] = ACTIONS(4390), + [anon_sym_BANG_BANG] = ACTIONS(4390), + [anon_sym_suspend] = ACTIONS(4388), + [anon_sym_sealed] = ACTIONS(4388), + [anon_sym_annotation] = ACTIONS(4388), + [anon_sym_data] = ACTIONS(4388), + [anon_sym_inner] = ACTIONS(4388), + [anon_sym_value] = ACTIONS(4388), + [anon_sym_override] = ACTIONS(4388), + [anon_sym_lateinit] = ACTIONS(4388), + [anon_sym_public] = ACTIONS(4388), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_internal] = ACTIONS(4388), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_tailrec] = ACTIONS(4388), + [anon_sym_operator] = ACTIONS(4388), + [anon_sym_infix] = ACTIONS(4388), + [anon_sym_inline] = ACTIONS(4388), + [anon_sym_external] = ACTIONS(4388), + [sym_property_modifier] = ACTIONS(4388), + [anon_sym_abstract] = ACTIONS(4388), + [anon_sym_final] = ACTIONS(4388), + [anon_sym_open] = ACTIONS(4388), + [anon_sym_vararg] = ACTIONS(4388), + [anon_sym_noinline] = ACTIONS(4388), + [anon_sym_crossinline] = ACTIONS(4388), + [anon_sym_expect] = ACTIONS(4388), + [anon_sym_actual] = ACTIONS(4388), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4390), + [sym__automatic_semicolon] = ACTIONS(4390), + [sym_safe_nav] = ACTIONS(4390), [sym_multiline_comment] = ACTIONS(3), }, - [3569] = { - [sym_type_constraints] = STATE(3941), - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(6924), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [3657] = { + [sym_function_body] = STATE(3909), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), }, - [3570] = { - [sym__alpha_identifier] = ACTIONS(5093), - [anon_sym_AT] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_DOT] = ACTIONS(5093), - [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_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_value] = 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), - }, - [3571] = { - [sym__alpha_identifier] = ACTIONS(4916), - [anon_sym_AT] = ACTIONS(4918), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_RBRACK] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_as] = ACTIONS(4916), - [anon_sym_EQ] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_COMMA] = ACTIONS(4918), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_where] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4918), - [anon_sym_get] = ACTIONS(4916), - [anon_sym_set] = ACTIONS(4916), - [anon_sym_STAR] = ACTIONS(4916), - [anon_sym_DASH_GT] = ACTIONS(4918), - [sym_label] = ACTIONS(4918), - [anon_sym_in] = ACTIONS(4916), - [anon_sym_while] = ACTIONS(4916), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_QMARK_COLON] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_else] = ACTIONS(4916), - [anon_sym_COLON_COLON] = ACTIONS(4918), - [anon_sym_PLUS_EQ] = ACTIONS(4918), - [anon_sym_DASH_EQ] = ACTIONS(4918), - [anon_sym_STAR_EQ] = ACTIONS(4918), - [anon_sym_SLASH_EQ] = ACTIONS(4918), - [anon_sym_PERCENT_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4916), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), - [anon_sym_LT_EQ] = ACTIONS(4918), - [anon_sym_GT_EQ] = ACTIONS(4918), - [anon_sym_BANGin] = ACTIONS(4918), - [anon_sym_is] = ACTIONS(4916), - [anon_sym_BANGis] = ACTIONS(4918), - [anon_sym_PLUS] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4916), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_as_QMARK] = ACTIONS(4918), - [anon_sym_PLUS_PLUS] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(4918), - [anon_sym_BANG_BANG] = ACTIONS(4918), - [anon_sym_suspend] = ACTIONS(4916), - [anon_sym_sealed] = ACTIONS(4916), - [anon_sym_annotation] = ACTIONS(4916), - [anon_sym_data] = ACTIONS(4916), - [anon_sym_inner] = ACTIONS(4916), - [anon_sym_value] = ACTIONS(4916), - [anon_sym_override] = ACTIONS(4916), - [anon_sym_lateinit] = ACTIONS(4916), - [anon_sym_public] = ACTIONS(4916), - [anon_sym_private] = ACTIONS(4916), - [anon_sym_internal] = ACTIONS(4916), - [anon_sym_protected] = ACTIONS(4916), - [anon_sym_tailrec] = ACTIONS(4916), - [anon_sym_operator] = ACTIONS(4916), - [anon_sym_infix] = ACTIONS(4916), - [anon_sym_inline] = ACTIONS(4916), - [anon_sym_external] = ACTIONS(4916), - [sym_property_modifier] = ACTIONS(4916), - [anon_sym_abstract] = ACTIONS(4916), - [anon_sym_final] = ACTIONS(4916), - [anon_sym_open] = ACTIONS(4916), - [anon_sym_vararg] = ACTIONS(4916), - [anon_sym_noinline] = ACTIONS(4916), - [anon_sym_crossinline] = ACTIONS(4916), - [anon_sym_expect] = ACTIONS(4916), - [anon_sym_actual] = ACTIONS(4916), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4918), - [sym_safe_nav] = ACTIONS(4918), - [sym_multiline_comment] = ACTIONS(3), - }, - [3572] = { - [sym_type_constraints] = STATE(3914), - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(6926), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [3658] = { + [sym__alpha_identifier] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [anon_sym_by] = ACTIONS(4680), + [anon_sym_where] = ACTIONS(4680), + [anon_sym_object] = ACTIONS(4680), + [anon_sym_fun] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_get] = ACTIONS(4680), + [anon_sym_set] = ACTIONS(4680), + [anon_sym_this] = ACTIONS(4680), + [anon_sym_super] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4682), + [sym_label] = ACTIONS(4680), + [anon_sym_in] = ACTIONS(4680), + [anon_sym_null] = ACTIONS(4680), + [anon_sym_if] = ACTIONS(4680), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_when] = ACTIONS(4680), + [anon_sym_try] = ACTIONS(4680), + [anon_sym_throw] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4680), + [anon_sym_continue] = ACTIONS(4680), + [anon_sym_break] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_BANGin] = ACTIONS(4682), + [anon_sym_is] = ACTIONS(4680), + [anon_sym_BANGis] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_PLUS_PLUS] = ACTIONS(4682), + [anon_sym_DASH_DASH] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4680), + [anon_sym_suspend] = ACTIONS(4680), + [anon_sym_sealed] = ACTIONS(4680), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_data] = ACTIONS(4680), + [anon_sym_inner] = ACTIONS(4680), + [anon_sym_value] = ACTIONS(4680), + [anon_sym_override] = ACTIONS(4680), + [anon_sym_lateinit] = ACTIONS(4680), + [anon_sym_public] = ACTIONS(4680), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_internal] = ACTIONS(4680), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_tailrec] = ACTIONS(4680), + [anon_sym_operator] = ACTIONS(4680), + [anon_sym_infix] = ACTIONS(4680), + [anon_sym_inline] = ACTIONS(4680), + [anon_sym_external] = ACTIONS(4680), + [sym_property_modifier] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_final] = ACTIONS(4680), + [anon_sym_open] = ACTIONS(4680), + [anon_sym_vararg] = ACTIONS(4680), + [anon_sym_noinline] = ACTIONS(4680), + [anon_sym_crossinline] = ACTIONS(4680), + [anon_sym_expect] = ACTIONS(4680), + [anon_sym_actual] = ACTIONS(4680), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4682), + [anon_sym_continue_AT] = ACTIONS(4682), + [anon_sym_break_AT] = ACTIONS(4682), + [anon_sym_this_AT] = ACTIONS(4682), + [anon_sym_super_AT] = ACTIONS(4682), + [sym_real_literal] = ACTIONS(4682), + [sym_integer_literal] = ACTIONS(4680), + [sym_hex_literal] = ACTIONS(4682), + [sym_bin_literal] = ACTIONS(4682), + [anon_sym_true] = ACTIONS(4680), + [anon_sym_false] = ACTIONS(4680), + [anon_sym_SQUOTE] = ACTIONS(4682), + [sym__backtick_identifier] = ACTIONS(4682), + [sym__automatic_semicolon] = ACTIONS(4682), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4682), }, - [3573] = { - [aux_sym_type_constraints_repeat1] = STATE(3560), - [sym__alpha_identifier] = ACTIONS(4371), - [anon_sym_AT] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_LBRACE] = ACTIONS(4373), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_LPAREN] = ACTIONS(4373), - [anon_sym_COMMA] = ACTIONS(6910), - [anon_sym_by] = ACTIONS(4371), - [anon_sym_object] = ACTIONS(4371), - [anon_sym_fun] = ACTIONS(4371), - [anon_sym_SEMI] = ACTIONS(4373), - [anon_sym_get] = ACTIONS(4371), - [anon_sym_set] = ACTIONS(4371), - [anon_sym_this] = ACTIONS(4371), - [anon_sym_super] = ACTIONS(4371), - [anon_sym_STAR] = ACTIONS(4373), + [3659] = { + [sym__alpha_identifier] = ACTIONS(4369), + [anon_sym_AT] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4369), + [anon_sym_as] = ACTIONS(4369), + [anon_sym_EQ] = ACTIONS(4369), + [anon_sym_LBRACE] = ACTIONS(4371), + [anon_sym_RBRACE] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4371), + [anon_sym_COMMA] = ACTIONS(4371), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_GT] = ACTIONS(4369), + [anon_sym_where] = ACTIONS(4369), + [anon_sym_SEMI] = ACTIONS(4371), + [anon_sym_get] = ACTIONS(4369), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4369), [sym_label] = ACTIONS(4371), - [anon_sym_in] = ACTIONS(4371), - [anon_sym_null] = ACTIONS(4371), - [anon_sym_if] = ACTIONS(4371), - [anon_sym_else] = ACTIONS(4371), - [anon_sym_when] = ACTIONS(4371), - [anon_sym_try] = ACTIONS(4371), - [anon_sym_throw] = ACTIONS(4371), - [anon_sym_return] = ACTIONS(4371), - [anon_sym_continue] = ACTIONS(4371), - [anon_sym_break] = ACTIONS(4371), - [anon_sym_COLON_COLON] = ACTIONS(4373), - [anon_sym_BANGin] = ACTIONS(4373), - [anon_sym_is] = ACTIONS(4371), - [anon_sym_BANGis] = ACTIONS(4373), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_PLUS_PLUS] = ACTIONS(4373), - [anon_sym_DASH_DASH] = ACTIONS(4373), - [anon_sym_BANG] = ACTIONS(4371), - [anon_sym_suspend] = ACTIONS(4371), - [anon_sym_sealed] = ACTIONS(4371), - [anon_sym_annotation] = ACTIONS(4371), - [anon_sym_data] = ACTIONS(4371), - [anon_sym_inner] = ACTIONS(4371), - [anon_sym_value] = ACTIONS(4371), - [anon_sym_override] = ACTIONS(4371), - [anon_sym_lateinit] = ACTIONS(4371), - [anon_sym_public] = ACTIONS(4371), - [anon_sym_private] = ACTIONS(4371), - [anon_sym_internal] = ACTIONS(4371), - [anon_sym_protected] = ACTIONS(4371), - [anon_sym_tailrec] = ACTIONS(4371), - [anon_sym_operator] = ACTIONS(4371), - [anon_sym_infix] = ACTIONS(4371), - [anon_sym_inline] = ACTIONS(4371), - [anon_sym_external] = ACTIONS(4371), - [sym_property_modifier] = ACTIONS(4371), - [anon_sym_abstract] = ACTIONS(4371), - [anon_sym_final] = ACTIONS(4371), - [anon_sym_open] = ACTIONS(4371), - [anon_sym_vararg] = ACTIONS(4371), - [anon_sym_noinline] = ACTIONS(4371), - [anon_sym_crossinline] = ACTIONS(4371), - [anon_sym_expect] = ACTIONS(4371), - [anon_sym_actual] = ACTIONS(4371), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4373), - [anon_sym_continue_AT] = ACTIONS(4373), - [anon_sym_break_AT] = ACTIONS(4373), - [anon_sym_this_AT] = ACTIONS(4373), - [anon_sym_super_AT] = ACTIONS(4373), - [sym_real_literal] = ACTIONS(4373), - [sym_integer_literal] = ACTIONS(4371), - [sym_hex_literal] = ACTIONS(4373), - [sym_bin_literal] = ACTIONS(4373), - [anon_sym_true] = ACTIONS(4371), - [anon_sym_false] = ACTIONS(4371), - [anon_sym_SQUOTE] = ACTIONS(4373), - [sym__backtick_identifier] = ACTIONS(4373), - [sym__automatic_semicolon] = ACTIONS(4373), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4373), - }, - [3574] = { - [sym__alpha_identifier] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3189), - [anon_sym_set] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_DASH_GT] = ACTIONS(3191), - [sym_label] = ACTIONS(3191), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_QMARK_COLON] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3191), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_as_QMARK] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_BANG_BANG] = ACTIONS(3191), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3189), - [anon_sym_inner] = ACTIONS(3189), - [anon_sym_value] = ACTIONS(3189), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3189), - [anon_sym_actual] = ACTIONS(3189), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(3191), - [sym_multiline_comment] = ACTIONS(3), - }, - [3575] = { - [sym__alpha_identifier] = ACTIONS(4838), - [anon_sym_AT] = ACTIONS(4840), - [anon_sym_LBRACK] = ACTIONS(4840), - [anon_sym_RBRACK] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4838), - [anon_sym_as] = ACTIONS(4838), - [anon_sym_EQ] = ACTIONS(4838), - [anon_sym_LBRACE] = ACTIONS(4840), - [anon_sym_RBRACE] = ACTIONS(4840), - [anon_sym_LPAREN] = ACTIONS(4840), - [anon_sym_COMMA] = ACTIONS(4840), - [anon_sym_RPAREN] = ACTIONS(4840), - [anon_sym_LT] = ACTIONS(4838), - [anon_sym_GT] = ACTIONS(4838), - [anon_sym_where] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(4840), - [anon_sym_get] = ACTIONS(4838), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4838), - [anon_sym_DASH_GT] = ACTIONS(4840), - [sym_label] = ACTIONS(4840), - [anon_sym_in] = ACTIONS(4838), - [anon_sym_while] = ACTIONS(4838), - [anon_sym_DOT_DOT] = ACTIONS(4840), - [anon_sym_QMARK_COLON] = ACTIONS(4840), - [anon_sym_AMP_AMP] = ACTIONS(4840), - [anon_sym_PIPE_PIPE] = ACTIONS(4840), - [anon_sym_else] = ACTIONS(4838), - [anon_sym_COLON_COLON] = ACTIONS(4840), - [anon_sym_PLUS_EQ] = ACTIONS(4840), - [anon_sym_DASH_EQ] = ACTIONS(4840), - [anon_sym_STAR_EQ] = ACTIONS(4840), - [anon_sym_SLASH_EQ] = ACTIONS(4840), - [anon_sym_PERCENT_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ] = ACTIONS(4838), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ] = ACTIONS(4838), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), - [anon_sym_LT_EQ] = ACTIONS(4840), - [anon_sym_GT_EQ] = ACTIONS(4840), - [anon_sym_BANGin] = ACTIONS(4840), - [anon_sym_is] = ACTIONS(4838), - [anon_sym_BANGis] = ACTIONS(4840), - [anon_sym_PLUS] = ACTIONS(4838), - [anon_sym_DASH] = ACTIONS(4838), - [anon_sym_SLASH] = ACTIONS(4838), - [anon_sym_PERCENT] = ACTIONS(4838), - [anon_sym_as_QMARK] = ACTIONS(4840), - [anon_sym_PLUS_PLUS] = ACTIONS(4840), - [anon_sym_DASH_DASH] = ACTIONS(4840), - [anon_sym_BANG_BANG] = ACTIONS(4840), - [anon_sym_suspend] = ACTIONS(4838), - [anon_sym_sealed] = ACTIONS(4838), - [anon_sym_annotation] = ACTIONS(4838), - [anon_sym_data] = ACTIONS(4838), - [anon_sym_inner] = ACTIONS(4838), - [anon_sym_value] = ACTIONS(4838), - [anon_sym_override] = ACTIONS(4838), - [anon_sym_lateinit] = ACTIONS(4838), - [anon_sym_public] = ACTIONS(4838), - [anon_sym_private] = ACTIONS(4838), - [anon_sym_internal] = ACTIONS(4838), - [anon_sym_protected] = ACTIONS(4838), - [anon_sym_tailrec] = ACTIONS(4838), - [anon_sym_operator] = ACTIONS(4838), - [anon_sym_infix] = ACTIONS(4838), - [anon_sym_inline] = ACTIONS(4838), - [anon_sym_external] = ACTIONS(4838), - [sym_property_modifier] = ACTIONS(4838), - [anon_sym_abstract] = ACTIONS(4838), - [anon_sym_final] = ACTIONS(4838), - [anon_sym_open] = ACTIONS(4838), - [anon_sym_vararg] = ACTIONS(4838), - [anon_sym_noinline] = ACTIONS(4838), - [anon_sym_crossinline] = ACTIONS(4838), - [anon_sym_expect] = ACTIONS(4838), - [anon_sym_actual] = ACTIONS(4838), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4840), - [sym_safe_nav] = ACTIONS(4840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3576] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_value] = 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), + [anon_sym_in] = ACTIONS(4369), + [anon_sym_DOT_DOT] = ACTIONS(4371), + [anon_sym_QMARK_COLON] = ACTIONS(4371), + [anon_sym_AMP_AMP] = ACTIONS(4371), + [anon_sym_PIPE_PIPE] = ACTIONS(4371), + [anon_sym_else] = ACTIONS(4369), + [anon_sym_catch] = ACTIONS(4369), + [anon_sym_finally] = ACTIONS(4369), + [anon_sym_COLON_COLON] = ACTIONS(4371), + [anon_sym_PLUS_EQ] = ACTIONS(4371), + [anon_sym_DASH_EQ] = ACTIONS(4371), + [anon_sym_STAR_EQ] = ACTIONS(4371), + [anon_sym_SLASH_EQ] = ACTIONS(4371), + [anon_sym_PERCENT_EQ] = ACTIONS(4371), + [anon_sym_BANG_EQ] = ACTIONS(4369), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4371), + [anon_sym_EQ_EQ] = ACTIONS(4369), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4371), + [anon_sym_LT_EQ] = ACTIONS(4371), + [anon_sym_GT_EQ] = ACTIONS(4371), + [anon_sym_BANGin] = ACTIONS(4371), + [anon_sym_is] = ACTIONS(4369), + [anon_sym_BANGis] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_PERCENT] = ACTIONS(4369), + [anon_sym_as_QMARK] = ACTIONS(4371), + [anon_sym_PLUS_PLUS] = ACTIONS(4371), + [anon_sym_DASH_DASH] = ACTIONS(4371), + [anon_sym_BANG_BANG] = ACTIONS(4371), + [anon_sym_suspend] = ACTIONS(4369), + [anon_sym_sealed] = ACTIONS(4369), + [anon_sym_annotation] = ACTIONS(4369), + [anon_sym_data] = ACTIONS(4369), + [anon_sym_inner] = ACTIONS(4369), + [anon_sym_value] = ACTIONS(4369), + [anon_sym_override] = ACTIONS(4369), + [anon_sym_lateinit] = ACTIONS(4369), + [anon_sym_public] = ACTIONS(4369), + [anon_sym_private] = ACTIONS(4369), + [anon_sym_internal] = ACTIONS(4369), + [anon_sym_protected] = ACTIONS(4369), + [anon_sym_tailrec] = ACTIONS(4369), + [anon_sym_operator] = ACTIONS(4369), + [anon_sym_infix] = ACTIONS(4369), + [anon_sym_inline] = ACTIONS(4369), + [anon_sym_external] = ACTIONS(4369), + [sym_property_modifier] = ACTIONS(4369), + [anon_sym_abstract] = ACTIONS(4369), + [anon_sym_final] = ACTIONS(4369), + [anon_sym_open] = ACTIONS(4369), + [anon_sym_vararg] = ACTIONS(4369), + [anon_sym_noinline] = ACTIONS(4369), + [anon_sym_crossinline] = ACTIONS(4369), + [anon_sym_expect] = ACTIONS(4369), + [anon_sym_actual] = ACTIONS(4369), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4371), + [sym__automatic_semicolon] = ACTIONS(4371), + [sym_safe_nav] = ACTIONS(4371), [sym_multiline_comment] = ACTIONS(3), }, - [3577] = { - [sym__alpha_identifier] = ACTIONS(4987), - [anon_sym_AT] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_where] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_get] = ACTIONS(4987), - [anon_sym_set] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_DASH_GT] = ACTIONS(4989), - [sym_label] = ACTIONS(4989), - [anon_sym_in] = ACTIONS(4987), - [anon_sym_while] = ACTIONS(4987), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_QMARK_COLON] = ACTIONS(4989), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_else] = ACTIONS(4987), - [anon_sym_COLON_COLON] = ACTIONS(4989), - [anon_sym_PLUS_EQ] = ACTIONS(4989), - [anon_sym_DASH_EQ] = ACTIONS(4989), - [anon_sym_STAR_EQ] = ACTIONS(4989), - [anon_sym_SLASH_EQ] = ACTIONS(4989), - [anon_sym_PERCENT_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4989), - [anon_sym_EQ_EQ] = ACTIONS(4987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4989), - [anon_sym_GT_EQ] = ACTIONS(4989), - [anon_sym_BANGin] = ACTIONS(4989), - [anon_sym_is] = ACTIONS(4987), - [anon_sym_BANGis] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_as_QMARK] = ACTIONS(4989), - [anon_sym_PLUS_PLUS] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_BANG_BANG] = ACTIONS(4989), - [anon_sym_suspend] = ACTIONS(4987), - [anon_sym_sealed] = ACTIONS(4987), - [anon_sym_annotation] = ACTIONS(4987), - [anon_sym_data] = ACTIONS(4987), - [anon_sym_inner] = ACTIONS(4987), - [anon_sym_value] = ACTIONS(4987), - [anon_sym_override] = ACTIONS(4987), - [anon_sym_lateinit] = ACTIONS(4987), - [anon_sym_public] = ACTIONS(4987), - [anon_sym_private] = ACTIONS(4987), - [anon_sym_internal] = ACTIONS(4987), - [anon_sym_protected] = ACTIONS(4987), - [anon_sym_tailrec] = ACTIONS(4987), - [anon_sym_operator] = ACTIONS(4987), - [anon_sym_infix] = ACTIONS(4987), - [anon_sym_inline] = ACTIONS(4987), - [anon_sym_external] = ACTIONS(4987), - [sym_property_modifier] = ACTIONS(4987), - [anon_sym_abstract] = ACTIONS(4987), - [anon_sym_final] = ACTIONS(4987), - [anon_sym_open] = ACTIONS(4987), - [anon_sym_vararg] = ACTIONS(4987), - [anon_sym_noinline] = ACTIONS(4987), - [anon_sym_crossinline] = ACTIONS(4987), - [anon_sym_expect] = ACTIONS(4987), - [anon_sym_actual] = ACTIONS(4987), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4989), - [sym_safe_nav] = ACTIONS(4989), + [3660] = { + [sym_type_constraints] = STATE(3729), + [sym_enum_class_body] = STATE(3841), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), [sym_multiline_comment] = ACTIONS(3), }, - [3578] = { - [sym__alpha_identifier] = ACTIONS(4874), - [anon_sym_AT] = ACTIONS(4876), - [anon_sym_LBRACK] = ACTIONS(4876), - [anon_sym_RBRACK] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_as] = ACTIONS(4874), - [anon_sym_EQ] = ACTIONS(4874), - [anon_sym_LBRACE] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(4876), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_RPAREN] = ACTIONS(4876), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(4874), - [anon_sym_where] = ACTIONS(4874), - [anon_sym_SEMI] = ACTIONS(4876), - [anon_sym_get] = ACTIONS(4874), - [anon_sym_set] = ACTIONS(4874), - [anon_sym_STAR] = ACTIONS(4874), - [anon_sym_DASH_GT] = ACTIONS(4876), - [sym_label] = ACTIONS(4876), - [anon_sym_in] = ACTIONS(4874), - [anon_sym_while] = ACTIONS(4874), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_QMARK_COLON] = ACTIONS(4876), - [anon_sym_AMP_AMP] = ACTIONS(4876), - [anon_sym_PIPE_PIPE] = ACTIONS(4876), - [anon_sym_else] = ACTIONS(4874), - [anon_sym_COLON_COLON] = ACTIONS(4876), - [anon_sym_PLUS_EQ] = ACTIONS(4876), - [anon_sym_DASH_EQ] = ACTIONS(4876), - [anon_sym_STAR_EQ] = ACTIONS(4876), - [anon_sym_SLASH_EQ] = ACTIONS(4876), - [anon_sym_PERCENT_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), - [anon_sym_EQ_EQ] = ACTIONS(4874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), - [anon_sym_LT_EQ] = ACTIONS(4876), - [anon_sym_GT_EQ] = ACTIONS(4876), - [anon_sym_BANGin] = ACTIONS(4876), - [anon_sym_is] = ACTIONS(4874), - [anon_sym_BANGis] = ACTIONS(4876), - [anon_sym_PLUS] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_SLASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4874), - [anon_sym_as_QMARK] = ACTIONS(4876), - [anon_sym_PLUS_PLUS] = ACTIONS(4876), - [anon_sym_DASH_DASH] = ACTIONS(4876), - [anon_sym_BANG_BANG] = ACTIONS(4876), - [anon_sym_suspend] = ACTIONS(4874), - [anon_sym_sealed] = ACTIONS(4874), - [anon_sym_annotation] = ACTIONS(4874), - [anon_sym_data] = ACTIONS(4874), - [anon_sym_inner] = ACTIONS(4874), - [anon_sym_value] = ACTIONS(4874), - [anon_sym_override] = ACTIONS(4874), - [anon_sym_lateinit] = ACTIONS(4874), - [anon_sym_public] = ACTIONS(4874), - [anon_sym_private] = ACTIONS(4874), - [anon_sym_internal] = ACTIONS(4874), - [anon_sym_protected] = ACTIONS(4874), - [anon_sym_tailrec] = ACTIONS(4874), - [anon_sym_operator] = ACTIONS(4874), - [anon_sym_infix] = ACTIONS(4874), - [anon_sym_inline] = ACTIONS(4874), - [anon_sym_external] = ACTIONS(4874), - [sym_property_modifier] = ACTIONS(4874), - [anon_sym_abstract] = ACTIONS(4874), - [anon_sym_final] = ACTIONS(4874), - [anon_sym_open] = ACTIONS(4874), - [anon_sym_vararg] = ACTIONS(4874), - [anon_sym_noinline] = ACTIONS(4874), - [anon_sym_crossinline] = ACTIONS(4874), - [anon_sym_expect] = ACTIONS(4874), - [anon_sym_actual] = ACTIONS(4874), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4876), - [sym_safe_nav] = ACTIONS(4876), - [sym_multiline_comment] = ACTIONS(3), + [3661] = { + [ts_builtin_sym_end] = ACTIONS(6943), + [sym__alpha_identifier] = ACTIONS(6945), + [anon_sym_AT] = ACTIONS(6943), + [anon_sym_LBRACK] = ACTIONS(6943), + [anon_sym_import] = ACTIONS(6945), + [anon_sym_typealias] = ACTIONS(6945), + [anon_sym_class] = ACTIONS(6945), + [anon_sym_interface] = ACTIONS(6945), + [anon_sym_enum] = ACTIONS(6945), + [anon_sym_LBRACE] = ACTIONS(6943), + [anon_sym_LPAREN] = ACTIONS(6943), + [anon_sym_val] = ACTIONS(6945), + [anon_sym_var] = ACTIONS(6945), + [anon_sym_object] = ACTIONS(6945), + [anon_sym_fun] = ACTIONS(6945), + [anon_sym_get] = ACTIONS(6945), + [anon_sym_set] = ACTIONS(6945), + [anon_sym_this] = ACTIONS(6945), + [anon_sym_super] = ACTIONS(6945), + [anon_sym_STAR] = ACTIONS(6943), + [sym_label] = ACTIONS(6945), + [anon_sym_for] = ACTIONS(6945), + [anon_sym_while] = ACTIONS(6945), + [anon_sym_do] = ACTIONS(6945), + [anon_sym_null] = ACTIONS(6945), + [anon_sym_if] = ACTIONS(6945), + [anon_sym_when] = ACTIONS(6945), + [anon_sym_try] = ACTIONS(6945), + [anon_sym_throw] = ACTIONS(6945), + [anon_sym_return] = ACTIONS(6945), + [anon_sym_continue] = ACTIONS(6945), + [anon_sym_break] = ACTIONS(6945), + [anon_sym_COLON_COLON] = ACTIONS(6943), + [anon_sym_PLUS] = ACTIONS(6945), + [anon_sym_DASH] = ACTIONS(6945), + [anon_sym_PLUS_PLUS] = ACTIONS(6943), + [anon_sym_DASH_DASH] = ACTIONS(6943), + [anon_sym_BANG] = ACTIONS(6943), + [anon_sym_suspend] = ACTIONS(6945), + [anon_sym_sealed] = ACTIONS(6945), + [anon_sym_annotation] = ACTIONS(6945), + [anon_sym_data] = ACTIONS(6945), + [anon_sym_inner] = ACTIONS(6945), + [anon_sym_value] = ACTIONS(6945), + [anon_sym_override] = ACTIONS(6945), + [anon_sym_lateinit] = ACTIONS(6945), + [anon_sym_public] = ACTIONS(6945), + [anon_sym_private] = ACTIONS(6945), + [anon_sym_internal] = ACTIONS(6945), + [anon_sym_protected] = ACTIONS(6945), + [anon_sym_tailrec] = ACTIONS(6945), + [anon_sym_operator] = ACTIONS(6945), + [anon_sym_infix] = ACTIONS(6945), + [anon_sym_inline] = ACTIONS(6945), + [anon_sym_external] = ACTIONS(6945), + [sym_property_modifier] = ACTIONS(6945), + [anon_sym_abstract] = ACTIONS(6945), + [anon_sym_final] = ACTIONS(6945), + [anon_sym_open] = ACTIONS(6945), + [anon_sym_vararg] = ACTIONS(6945), + [anon_sym_noinline] = ACTIONS(6945), + [anon_sym_crossinline] = ACTIONS(6945), + [anon_sym_expect] = ACTIONS(6945), + [anon_sym_actual] = ACTIONS(6945), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(6943), + [anon_sym_continue_AT] = ACTIONS(6943), + [anon_sym_break_AT] = ACTIONS(6943), + [anon_sym_this_AT] = ACTIONS(6943), + [anon_sym_super_AT] = ACTIONS(6943), + [sym_real_literal] = ACTIONS(6943), + [sym_integer_literal] = ACTIONS(6945), + [sym_hex_literal] = ACTIONS(6943), + [sym_bin_literal] = ACTIONS(6943), + [anon_sym_true] = ACTIONS(6945), + [anon_sym_false] = ACTIONS(6945), + [anon_sym_SQUOTE] = ACTIONS(6943), + [sym__backtick_identifier] = ACTIONS(6943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(6943), }, - [3579] = { - [sym__alpha_identifier] = ACTIONS(4242), + [3662] = { + [sym_function_body] = STATE(3518), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4238), [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(6947), [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_RBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6928), - [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_DASH_GT] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), [sym_label] = ACTIONS(4240), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_while] = ACTIONS(4238), [anon_sym_DOT_DOT] = ACTIONS(4240), [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_else] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4238), [anon_sym_COLON_COLON] = ACTIONS(4240), [anon_sym_PLUS_EQ] = ACTIONS(4240), [anon_sym_DASH_EQ] = ACTIONS(4240), [anon_sym_STAR_EQ] = ACTIONS(4240), [anon_sym_SLASH_EQ] = ACTIONS(4240), [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4238), [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4238), [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), [anon_sym_LT_EQ] = ACTIONS(4240), [anon_sym_GT_EQ] = ACTIONS(4240), [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4238), [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), [anon_sym_as_QMARK] = ACTIONS(4240), [anon_sym_PLUS_PLUS] = ACTIONS(4240), [anon_sym_DASH_DASH] = ACTIONS(4240), [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), }, - [3580] = { - [sym_function_body] = STATE(3886), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(6930), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_where] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_PLUS_EQ] = ACTIONS(4291), - [anon_sym_DASH_EQ] = ACTIONS(4291), - [anon_sym_STAR_EQ] = ACTIONS(4291), - [anon_sym_SLASH_EQ] = ACTIONS(4291), - [anon_sym_PERCENT_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - }, - [3581] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_RBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6932), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [anon_sym_DASH_GT] = ACTIONS(4226), - [sym_label] = ACTIONS(4226), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - }, - [3582] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_RBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(6934), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [anon_sym_DASH_GT] = ACTIONS(4846), - [sym_label] = ACTIONS(4846), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - }, - [3583] = { - [sym_function_body] = STATE(3077), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(6936), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), - }, - [3584] = { - [sym__alpha_identifier] = ACTIONS(4770), - [anon_sym_AT] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(4772), - [anon_sym_RBRACK] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4770), - [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_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_value] = 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(4772), - [sym_safe_nav] = ACTIONS(4772), + [3663] = { + [sym_function_body] = STATE(3539), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(6949), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), }, - [3585] = { - [sym_function_body] = STATE(3071), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(6938), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), - }, - [3586] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(6940), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [anon_sym_DASH_GT] = ACTIONS(4854), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_while] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), + [3664] = { + [sym__alpha_identifier] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4095), + [anon_sym_LBRACK] = ACTIONS(4095), + [anon_sym_DOT] = ACTIONS(4093), + [anon_sym_typealias] = ACTIONS(4093), + [anon_sym_class] = ACTIONS(4093), + [anon_sym_interface] = ACTIONS(4093), + [anon_sym_enum] = ACTIONS(4093), + [anon_sym_LBRACE] = ACTIONS(4095), + [anon_sym_LPAREN] = ACTIONS(4095), + [anon_sym_val] = ACTIONS(4093), + [anon_sym_var] = ACTIONS(4093), + [anon_sym_LT] = ACTIONS(4095), + [anon_sym_object] = ACTIONS(4093), + [anon_sym_fun] = ACTIONS(4093), + [anon_sym_get] = ACTIONS(4093), + [anon_sym_set] = ACTIONS(4093), + [anon_sym_this] = ACTIONS(4093), + [anon_sym_super] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4095), + [sym_label] = ACTIONS(4093), + [anon_sym_for] = ACTIONS(4093), + [anon_sym_while] = ACTIONS(4093), + [anon_sym_do] = ACTIONS(4093), + [anon_sym_null] = ACTIONS(4093), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_when] = ACTIONS(4093), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4095), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_PLUS_PLUS] = ACTIONS(4095), + [anon_sym_DASH_DASH] = ACTIONS(4095), + [anon_sym_BANG] = ACTIONS(4095), + [anon_sym_suspend] = ACTIONS(4093), + [anon_sym_sealed] = ACTIONS(4093), + [anon_sym_annotation] = ACTIONS(4093), + [anon_sym_data] = ACTIONS(4093), + [anon_sym_inner] = ACTIONS(4093), + [anon_sym_value] = ACTIONS(4093), + [anon_sym_override] = ACTIONS(4093), + [anon_sym_lateinit] = ACTIONS(4093), + [anon_sym_public] = ACTIONS(4093), + [anon_sym_private] = ACTIONS(4093), + [anon_sym_internal] = ACTIONS(4093), + [anon_sym_protected] = ACTIONS(4093), + [anon_sym_tailrec] = ACTIONS(4093), + [anon_sym_operator] = ACTIONS(4093), + [anon_sym_infix] = ACTIONS(4093), + [anon_sym_inline] = ACTIONS(4093), + [anon_sym_external] = ACTIONS(4093), + [sym_property_modifier] = ACTIONS(4093), + [anon_sym_abstract] = ACTIONS(4093), + [anon_sym_final] = ACTIONS(4093), + [anon_sym_open] = ACTIONS(4093), + [anon_sym_vararg] = ACTIONS(4093), + [anon_sym_noinline] = ACTIONS(4093), + [anon_sym_crossinline] = ACTIONS(4093), + [anon_sym_expect] = ACTIONS(4093), + [anon_sym_actual] = ACTIONS(4093), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4095), + [anon_sym_continue_AT] = ACTIONS(4095), + [anon_sym_break_AT] = ACTIONS(4095), + [anon_sym_this_AT] = ACTIONS(4095), + [anon_sym_super_AT] = ACTIONS(4095), + [sym_real_literal] = ACTIONS(4095), + [sym_integer_literal] = ACTIONS(4093), + [sym_hex_literal] = ACTIONS(4095), + [sym_bin_literal] = ACTIONS(4095), + [anon_sym_true] = ACTIONS(4093), + [anon_sym_false] = ACTIONS(4093), + [anon_sym_SQUOTE] = ACTIONS(4095), + [sym__backtick_identifier] = ACTIONS(4095), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4095), }, - [3587] = { - [sym__alpha_identifier] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4183), - [anon_sym_COLON] = ACTIONS(6550), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_EQ] = ACTIONS(4183), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_RBRACE] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_by] = ACTIONS(4181), - [anon_sym_where] = ACTIONS(4181), - [anon_sym_object] = ACTIONS(4181), - [anon_sym_fun] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_get] = ACTIONS(4181), - [anon_sym_set] = ACTIONS(4181), - [anon_sym_this] = ACTIONS(4181), - [anon_sym_super] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4183), - [sym_label] = ACTIONS(4181), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4181), - [anon_sym_if] = ACTIONS(4181), - [anon_sym_else] = ACTIONS(4181), - [anon_sym_when] = ACTIONS(4181), - [anon_sym_try] = ACTIONS(4181), - [anon_sym_throw] = ACTIONS(4181), - [anon_sym_return] = ACTIONS(4181), - [anon_sym_continue] = ACTIONS(4181), - [anon_sym_break] = ACTIONS(4181), - [anon_sym_COLON_COLON] = ACTIONS(4183), - [anon_sym_BANGin] = ACTIONS(4183), - [anon_sym_is] = ACTIONS(4181), - [anon_sym_BANGis] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_PLUS_PLUS] = ACTIONS(4183), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_suspend] = ACTIONS(4181), - [anon_sym_sealed] = ACTIONS(4181), - [anon_sym_annotation] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4181), - [anon_sym_inner] = ACTIONS(4181), - [anon_sym_value] = ACTIONS(4181), - [anon_sym_override] = ACTIONS(4181), - [anon_sym_lateinit] = ACTIONS(4181), - [anon_sym_public] = ACTIONS(4181), - [anon_sym_private] = ACTIONS(4181), - [anon_sym_internal] = ACTIONS(4181), - [anon_sym_protected] = ACTIONS(4181), - [anon_sym_tailrec] = ACTIONS(4181), - [anon_sym_operator] = ACTIONS(4181), - [anon_sym_infix] = ACTIONS(4181), - [anon_sym_inline] = ACTIONS(4181), - [anon_sym_external] = ACTIONS(4181), - [sym_property_modifier] = ACTIONS(4181), - [anon_sym_abstract] = ACTIONS(4181), - [anon_sym_final] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4181), - [anon_sym_vararg] = ACTIONS(4181), - [anon_sym_noinline] = ACTIONS(4181), - [anon_sym_crossinline] = ACTIONS(4181), - [anon_sym_expect] = ACTIONS(4181), - [anon_sym_actual] = ACTIONS(4181), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4183), - [anon_sym_continue_AT] = ACTIONS(4183), - [anon_sym_break_AT] = ACTIONS(4183), - [anon_sym_this_AT] = ACTIONS(4183), - [anon_sym_super_AT] = ACTIONS(4183), - [sym_real_literal] = ACTIONS(4183), - [sym_integer_literal] = ACTIONS(4181), - [sym_hex_literal] = ACTIONS(4183), - [sym_bin_literal] = ACTIONS(4183), - [anon_sym_true] = ACTIONS(4181), - [anon_sym_false] = ACTIONS(4181), - [anon_sym_SQUOTE] = ACTIONS(4183), - [sym__backtick_identifier] = ACTIONS(4183), - [sym__automatic_semicolon] = ACTIONS(4183), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4183), + [3665] = { + [sym_class_body] = STATE(3178), + [sym_type_constraints] = STATE(3009), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, - [3588] = { - [sym_type_constraints] = STATE(3612), - [sym_function_body] = STATE(3104), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [3666] = { + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_DOT] = ACTIONS(4321), + [anon_sym_as] = ACTIONS(4321), + [anon_sym_EQ] = ACTIONS(4321), + [anon_sym_constructor] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_COMMA] = ACTIONS(4323), + [anon_sym_LT] = ACTIONS(4321), + [anon_sym_GT] = ACTIONS(4321), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4321), + [sym_label] = ACTIONS(4323), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_DOT_DOT] = ACTIONS(4323), + [anon_sym_QMARK_COLON] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_PIPE_PIPE] = ACTIONS(4323), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_PLUS_EQ] = ACTIONS(4323), + [anon_sym_DASH_EQ] = ACTIONS(4323), + [anon_sym_STAR_EQ] = ACTIONS(4323), + [anon_sym_SLASH_EQ] = ACTIONS(4323), + [anon_sym_PERCENT_EQ] = ACTIONS(4323), + [anon_sym_BANG_EQ] = ACTIONS(4321), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4323), + [anon_sym_EQ_EQ] = ACTIONS(4321), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4323), + [anon_sym_LT_EQ] = ACTIONS(4323), + [anon_sym_GT_EQ] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_SLASH] = ACTIONS(4321), + [anon_sym_PERCENT] = ACTIONS(4321), + [anon_sym_as_QMARK] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG_BANG] = ACTIONS(4323), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), - }, - [3589] = { - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [anon_sym_DASH_GT] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), + [sym_safe_nav] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), }, - [3590] = { - [sym_type_constraints] = STATE(3769), - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_where] = ACTIONS(5512), - [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_value] = 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), + [3667] = { + [sym_class_body] = STATE(3059), + [sym_type_constraints] = STATE(2977), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(6951), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), }, - [3591] = { - [sym_type_constraints] = STATE(3609), - [sym_function_body] = STATE(3113), - [sym__block] = STATE(3072), + [3668] = { + [sym_function_body] = STATE(3956), + [sym__block] = STATE(3874), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4260), - [anon_sym_fun] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), [anon_sym_get] = ACTIONS(4260), [anon_sym_set] = ACTIONS(4260), - [anon_sym_this] = ACTIONS(4260), - [anon_sym_super] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [sym_label] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [sym_label] = ACTIONS(4262), [anon_sym_in] = ACTIONS(4260), [anon_sym_DOT_DOT] = ACTIONS(4262), [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [anon_sym_try] = ACTIONS(4260), - [anon_sym_throw] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), [anon_sym_BANG_EQ] = ACTIONS(4260), [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), [anon_sym_EQ_EQ] = ACTIONS(4260), @@ -408299,154 +414884,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4260), [anon_sym_DASH] = ACTIONS(4260), [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_PERCENT] = ACTIONS(4260), [anon_sym_as_QMARK] = ACTIONS(4262), [anon_sym_PLUS_PLUS] = ACTIONS(4262), [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4260), [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), [anon_sym_data] = ACTIONS(4260), [anon_sym_inner] = ACTIONS(4260), [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), [anon_sym_expect] = ACTIONS(4260), [anon_sym_actual] = ACTIONS(4260), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4262), - [anon_sym_continue_AT] = ACTIONS(4262), - [anon_sym_break_AT] = ACTIONS(4262), - [anon_sym_this_AT] = ACTIONS(4262), - [anon_sym_super_AT] = ACTIONS(4262), - [sym_real_literal] = ACTIONS(4262), - [sym_integer_literal] = ACTIONS(4260), - [sym_hex_literal] = ACTIONS(4262), - [sym_bin_literal] = ACTIONS(4262), - [anon_sym_true] = ACTIONS(4260), - [anon_sym_false] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4262), [sym__backtick_identifier] = ACTIONS(4262), [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4262), }, - [3592] = { - [sym_type_constraints] = STATE(3765), - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [3669] = { + [sym_class_body] = STATE(4025), + [sym_type_constraints] = STATE(3777), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, - [3593] = { - [sym_type_constraints] = STATE(3764), - [sym_function_body] = STATE(3464), - [sym__block] = STATE(3577), + [3670] = { + [sym__alpha_identifier] = ACTIONS(4398), + [anon_sym_AT] = ACTIONS(4400), + [anon_sym_LBRACK] = ACTIONS(4400), + [anon_sym_DOT] = ACTIONS(4398), + [anon_sym_as] = ACTIONS(4398), + [anon_sym_EQ] = ACTIONS(4398), + [anon_sym_LBRACE] = ACTIONS(4400), + [anon_sym_RBRACE] = ACTIONS(4400), + [anon_sym_LPAREN] = ACTIONS(4400), + [anon_sym_COMMA] = ACTIONS(4400), + [anon_sym_LT] = ACTIONS(4398), + [anon_sym_GT] = ACTIONS(4398), + [anon_sym_where] = ACTIONS(4398), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_get] = ACTIONS(4398), + [anon_sym_set] = ACTIONS(4398), + [anon_sym_STAR] = ACTIONS(4398), + [sym_label] = ACTIONS(4400), + [anon_sym_in] = ACTIONS(4398), + [anon_sym_DOT_DOT] = ACTIONS(4400), + [anon_sym_QMARK_COLON] = ACTIONS(4400), + [anon_sym_AMP_AMP] = ACTIONS(4400), + [anon_sym_PIPE_PIPE] = ACTIONS(4400), + [anon_sym_else] = ACTIONS(4398), + [anon_sym_catch] = ACTIONS(4398), + [anon_sym_finally] = ACTIONS(4398), + [anon_sym_COLON_COLON] = ACTIONS(4400), + [anon_sym_PLUS_EQ] = ACTIONS(4400), + [anon_sym_DASH_EQ] = ACTIONS(4400), + [anon_sym_STAR_EQ] = ACTIONS(4400), + [anon_sym_SLASH_EQ] = ACTIONS(4400), + [anon_sym_PERCENT_EQ] = ACTIONS(4400), + [anon_sym_BANG_EQ] = ACTIONS(4398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4400), + [anon_sym_EQ_EQ] = ACTIONS(4398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4400), + [anon_sym_LT_EQ] = ACTIONS(4400), + [anon_sym_GT_EQ] = ACTIONS(4400), + [anon_sym_BANGin] = ACTIONS(4400), + [anon_sym_is] = ACTIONS(4398), + [anon_sym_BANGis] = ACTIONS(4400), + [anon_sym_PLUS] = ACTIONS(4398), + [anon_sym_DASH] = ACTIONS(4398), + [anon_sym_SLASH] = ACTIONS(4398), + [anon_sym_PERCENT] = ACTIONS(4398), + [anon_sym_as_QMARK] = ACTIONS(4400), + [anon_sym_PLUS_PLUS] = ACTIONS(4400), + [anon_sym_DASH_DASH] = ACTIONS(4400), + [anon_sym_BANG_BANG] = ACTIONS(4400), + [anon_sym_suspend] = ACTIONS(4398), + [anon_sym_sealed] = ACTIONS(4398), + [anon_sym_annotation] = ACTIONS(4398), + [anon_sym_data] = ACTIONS(4398), + [anon_sym_inner] = ACTIONS(4398), + [anon_sym_value] = ACTIONS(4398), + [anon_sym_override] = ACTIONS(4398), + [anon_sym_lateinit] = ACTIONS(4398), + [anon_sym_public] = ACTIONS(4398), + [anon_sym_private] = ACTIONS(4398), + [anon_sym_internal] = ACTIONS(4398), + [anon_sym_protected] = ACTIONS(4398), + [anon_sym_tailrec] = ACTIONS(4398), + [anon_sym_operator] = ACTIONS(4398), + [anon_sym_infix] = ACTIONS(4398), + [anon_sym_inline] = ACTIONS(4398), + [anon_sym_external] = ACTIONS(4398), + [sym_property_modifier] = ACTIONS(4398), + [anon_sym_abstract] = ACTIONS(4398), + [anon_sym_final] = ACTIONS(4398), + [anon_sym_open] = ACTIONS(4398), + [anon_sym_vararg] = ACTIONS(4398), + [anon_sym_noinline] = ACTIONS(4398), + [anon_sym_crossinline] = ACTIONS(4398), + [anon_sym_expect] = ACTIONS(4398), + [anon_sym_actual] = ACTIONS(4398), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4400), + [sym__automatic_semicolon] = ACTIONS(4400), + [sym_safe_nav] = ACTIONS(4400), + [sym_multiline_comment] = ACTIONS(3), + }, + [3671] = { + [sym_type_constraints] = STATE(2969), + [sym_enum_class_body] = STATE(3221), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [3672] = { + [sym_type_constraints] = STATE(4033), + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(6953), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + }, + [3673] = { + [sym_type_constraints] = STATE(3792), + [sym_enum_class_body] = STATE(3862), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + }, + [3674] = { + [sym_class_body] = STATE(3221), + [sym_type_constraints] = STATE(2990), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), + }, + [3675] = { + [sym_type_constraints] = STATE(3933), + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [3676] = { + [sym_type_constraints] = STATE(3960), + [sym_function_body] = STATE(3108), + [sym__block] = STATE(3227), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(5512), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4260), + [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), [anon_sym_get] = ACTIONS(4260), [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4262), + [anon_sym_this] = ACTIONS(4260), + [anon_sym_super] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4260), [anon_sym_in] = ACTIONS(4260), - [anon_sym_while] = ACTIONS(4260), [anon_sym_DOT_DOT] = ACTIONS(4262), [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), [anon_sym_else] = ACTIONS(4260), + [anon_sym_when] = ACTIONS(4260), + [anon_sym_try] = ACTIONS(4260), + [anon_sym_throw] = ACTIONS(4260), + [anon_sym_return] = ACTIONS(4260), + [anon_sym_continue] = ACTIONS(4260), + [anon_sym_break] = ACTIONS(4260), [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_PLUS_EQ] = ACTIONS(4262), - [anon_sym_DASH_EQ] = ACTIONS(4262), - [anon_sym_STAR_EQ] = ACTIONS(4262), - [anon_sym_SLASH_EQ] = ACTIONS(4262), - [anon_sym_PERCENT_EQ] = ACTIONS(4262), [anon_sym_BANG_EQ] = ACTIONS(4260), [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), [anon_sym_EQ_EQ] = ACTIONS(4260), @@ -408459,1207 +415547,2014 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4260), [anon_sym_DASH] = ACTIONS(4260), [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4262), [anon_sym_as_QMARK] = ACTIONS(4262), [anon_sym_PLUS_PLUS] = ACTIONS(4262), [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4260), [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), [anon_sym_data] = ACTIONS(4260), [anon_sym_inner] = ACTIONS(4260), [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), [anon_sym_expect] = ACTIONS(4260), [anon_sym_actual] = ACTIONS(4260), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4260), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4260), + [anon_sym_false] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4262), [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), }, - [3594] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_RBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_RPAREN] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [anon_sym_DASH_GT] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_while] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), + [3677] = { + [aux_sym_type_constraints_repeat1] = STATE(3677), + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(6955), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), [sym_multiline_comment] = ACTIONS(3), }, - [3595] = { - [sym_type_constraints] = STATE(3763), - [sym_function_body] = STATE(3458), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [3678] = { + [sym_class_body] = STATE(4005), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(6958), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_PLUS_EQ] = ACTIONS(4355), + [anon_sym_DASH_EQ] = ACTIONS(4355), + [anon_sym_STAR_EQ] = ACTIONS(4355), + [anon_sym_SLASH_EQ] = ACTIONS(4355), + [anon_sym_PERCENT_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), [sym_multiline_comment] = ACTIONS(3), }, - [3596] = { - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_RBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_RPAREN] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [anon_sym_DASH_GT] = ACTIONS(3316), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), - [anon_sym_suspend] = ACTIONS(3312), - [anon_sym_sealed] = ACTIONS(3312), - [anon_sym_annotation] = ACTIONS(3312), - [anon_sym_data] = ACTIONS(3312), - [anon_sym_inner] = ACTIONS(3312), - [anon_sym_value] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_lateinit] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_internal] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_tailrec] = ACTIONS(3312), - [anon_sym_operator] = ACTIONS(3312), - [anon_sym_infix] = ACTIONS(3312), - [anon_sym_inline] = ACTIONS(3312), - [anon_sym_external] = ACTIONS(3312), - [sym_property_modifier] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_final] = ACTIONS(3312), - [anon_sym_open] = ACTIONS(3312), - [anon_sym_vararg] = ACTIONS(3312), - [anon_sym_noinline] = ACTIONS(3312), - [anon_sym_crossinline] = ACTIONS(3312), - [anon_sym_expect] = ACTIONS(3312), - [anon_sym_actual] = ACTIONS(3312), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [3679] = { + [sym_type_constraints] = STATE(3817), + [sym_enum_class_body] = STATE(4031), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, - [3597] = { - [sym_type_constraints] = STATE(3608), - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [3680] = { + [sym_type_constraints] = STATE(3961), + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), }, - [3598] = { - [aux_sym_nullable_type_repeat1] = STATE(3553), - [sym__alpha_identifier] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4250), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_DOT] = ACTIONS(4248), - [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_SEMI] = ACTIONS(4250), - [anon_sym_get] = ACTIONS(4248), - [anon_sym_set] = ACTIONS(4248), - [sym__quest] = ACTIONS(6942), - [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_value] = 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), + [3681] = { + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6960), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [3682] = { + [sym_function_body] = STATE(3828), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6646), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [3599] = { - [sym_type_constraints] = STATE(3601), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [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(3258), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [3683] = { + [sym_function_body] = STATE(3233), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), }, - [3600] = { - [sym_type_constraints] = STATE(3603), - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [3684] = { + [sym_class_body] = STATE(3923), + [sym_type_constraints] = STATE(3784), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), }, - [3601] = { - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [3685] = { + [sym_value_arguments] = STATE(3865), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(6962), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), }, - [3602] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_catch] = ACTIONS(4419), - [anon_sym_finally] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), + [3686] = { + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [3687] = { + [sym_type_constraints] = STATE(4011), + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [3688] = { + [sym_class_body] = STATE(3261), + [sym_type_constraints] = STATE(3012), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(6964), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), + }, + [3689] = { + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [3690] = { + [sym_class_body] = STATE(3928), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_COMMA] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_where] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_PLUS_EQ] = ACTIONS(4327), + [anon_sym_DASH_EQ] = ACTIONS(4327), + [anon_sym_STAR_EQ] = ACTIONS(4327), + [anon_sym_SLASH_EQ] = ACTIONS(4327), + [anon_sym_PERCENT_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4325), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), [sym_multiline_comment] = ACTIONS(3), }, - [3603] = { - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), + [3691] = { + [sym_function_body] = STATE(3598), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(6968), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_RPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_while] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_PLUS_EQ] = ACTIONS(4252), + [anon_sym_DASH_EQ] = ACTIONS(4252), + [anon_sym_STAR_EQ] = ACTIONS(4252), + [anon_sym_SLASH_EQ] = ACTIONS(4252), + [anon_sym_PERCENT_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), }, - [3604] = { - [ts_builtin_sym_end] = ACTIONS(6944), - [sym__alpha_identifier] = ACTIONS(6946), - [anon_sym_AT] = ACTIONS(6944), - [anon_sym_LBRACK] = ACTIONS(6944), - [anon_sym_import] = ACTIONS(6946), - [anon_sym_typealias] = ACTIONS(6946), - [anon_sym_class] = ACTIONS(6946), - [anon_sym_interface] = ACTIONS(6946), - [anon_sym_enum] = ACTIONS(6946), - [anon_sym_LBRACE] = ACTIONS(6944), - [anon_sym_LPAREN] = ACTIONS(6944), - [anon_sym_val] = ACTIONS(6946), - [anon_sym_var] = ACTIONS(6946), - [anon_sym_object] = ACTIONS(6946), - [anon_sym_fun] = ACTIONS(6946), - [anon_sym_get] = ACTIONS(6946), - [anon_sym_set] = ACTIONS(6946), - [anon_sym_this] = ACTIONS(6946), - [anon_sym_super] = ACTIONS(6946), - [anon_sym_STAR] = ACTIONS(6944), - [sym_label] = ACTIONS(6946), - [anon_sym_for] = ACTIONS(6946), - [anon_sym_while] = ACTIONS(6946), - [anon_sym_do] = ACTIONS(6946), - [anon_sym_null] = ACTIONS(6946), - [anon_sym_if] = ACTIONS(6946), - [anon_sym_when] = ACTIONS(6946), - [anon_sym_try] = ACTIONS(6946), - [anon_sym_throw] = ACTIONS(6946), - [anon_sym_return] = ACTIONS(6946), - [anon_sym_continue] = ACTIONS(6946), - [anon_sym_break] = ACTIONS(6946), - [anon_sym_COLON_COLON] = ACTIONS(6944), - [anon_sym_PLUS] = ACTIONS(6946), - [anon_sym_DASH] = ACTIONS(6946), - [anon_sym_PLUS_PLUS] = ACTIONS(6944), - [anon_sym_DASH_DASH] = ACTIONS(6944), - [anon_sym_BANG] = ACTIONS(6944), - [anon_sym_suspend] = ACTIONS(6946), - [anon_sym_sealed] = ACTIONS(6946), - [anon_sym_annotation] = ACTIONS(6946), - [anon_sym_data] = ACTIONS(6946), - [anon_sym_inner] = ACTIONS(6946), - [anon_sym_value] = ACTIONS(6946), - [anon_sym_override] = ACTIONS(6946), - [anon_sym_lateinit] = ACTIONS(6946), - [anon_sym_public] = ACTIONS(6946), - [anon_sym_private] = ACTIONS(6946), - [anon_sym_internal] = ACTIONS(6946), - [anon_sym_protected] = ACTIONS(6946), - [anon_sym_tailrec] = ACTIONS(6946), - [anon_sym_operator] = ACTIONS(6946), - [anon_sym_infix] = ACTIONS(6946), - [anon_sym_inline] = ACTIONS(6946), - [anon_sym_external] = ACTIONS(6946), - [sym_property_modifier] = ACTIONS(6946), - [anon_sym_abstract] = ACTIONS(6946), - [anon_sym_final] = ACTIONS(6946), - [anon_sym_open] = ACTIONS(6946), - [anon_sym_vararg] = ACTIONS(6946), - [anon_sym_noinline] = ACTIONS(6946), - [anon_sym_crossinline] = ACTIONS(6946), - [anon_sym_expect] = ACTIONS(6946), - [anon_sym_actual] = ACTIONS(6946), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6944), - [anon_sym_continue_AT] = ACTIONS(6944), - [anon_sym_break_AT] = ACTIONS(6944), - [anon_sym_this_AT] = ACTIONS(6944), - [anon_sym_super_AT] = ACTIONS(6944), - [sym_real_literal] = ACTIONS(6944), - [sym_integer_literal] = ACTIONS(6946), - [sym_hex_literal] = ACTIONS(6944), - [sym_bin_literal] = ACTIONS(6944), - [anon_sym_true] = ACTIONS(6946), - [anon_sym_false] = ACTIONS(6946), - [anon_sym_SQUOTE] = ACTIONS(6944), - [sym__backtick_identifier] = ACTIONS(6944), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6944), + [3692] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_COLON] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_constructor] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_where] = ACTIONS(3938), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3943), + [sym_label] = ACTIONS(3938), + [anon_sym_in] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_BANGin] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3938), + [anon_sym_BANGis] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym__automatic_semicolon] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [3605] = { - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), + [3693] = { + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3251), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, - [3606] = { - [sym_function_body] = STATE(3231), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), + [3694] = { + [sym_type_constraints] = STATE(3028), + [sym_enum_class_body] = STATE(3188), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(6970), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, - [3607] = { - [aux_sym_user_type_repeat1] = STATE(3686), - [sym__alpha_identifier] = ACTIONS(4143), - [anon_sym_AT] = ACTIONS(4145), - [anon_sym_LBRACK] = ACTIONS(4145), - [anon_sym_DOT] = ACTIONS(6948), - [anon_sym_typealias] = ACTIONS(4143), - [anon_sym_class] = ACTIONS(4143), - [anon_sym_interface] = ACTIONS(4143), - [anon_sym_enum] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(4145), - [anon_sym_val] = ACTIONS(4143), - [anon_sym_var] = ACTIONS(4143), - [anon_sym_object] = ACTIONS(4143), - [anon_sym_fun] = ACTIONS(4143), - [anon_sym_get] = ACTIONS(4143), - [anon_sym_set] = ACTIONS(4143), - [anon_sym_this] = ACTIONS(4143), - [anon_sym_super] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(4145), - [sym_label] = ACTIONS(4143), - [anon_sym_for] = ACTIONS(4143), - [anon_sym_while] = ACTIONS(4143), - [anon_sym_do] = ACTIONS(4143), - [anon_sym_null] = ACTIONS(4143), - [anon_sym_if] = ACTIONS(4143), - [anon_sym_when] = ACTIONS(4143), - [anon_sym_try] = ACTIONS(4143), - [anon_sym_throw] = ACTIONS(4143), - [anon_sym_return] = ACTIONS(4143), - [anon_sym_continue] = ACTIONS(4143), - [anon_sym_break] = ACTIONS(4143), - [anon_sym_COLON_COLON] = ACTIONS(4145), - [anon_sym_PLUS] = ACTIONS(4143), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_PLUS_PLUS] = ACTIONS(4145), - [anon_sym_DASH_DASH] = ACTIONS(4145), - [anon_sym_BANG] = ACTIONS(4145), - [anon_sym_suspend] = ACTIONS(4143), - [anon_sym_sealed] = ACTIONS(4143), - [anon_sym_annotation] = ACTIONS(4143), - [anon_sym_data] = ACTIONS(4143), - [anon_sym_inner] = ACTIONS(4143), - [anon_sym_value] = ACTIONS(4143), - [anon_sym_override] = ACTIONS(4143), - [anon_sym_lateinit] = ACTIONS(4143), - [anon_sym_public] = ACTIONS(4143), - [anon_sym_private] = ACTIONS(4143), - [anon_sym_internal] = ACTIONS(4143), - [anon_sym_protected] = ACTIONS(4143), - [anon_sym_tailrec] = ACTIONS(4143), - [anon_sym_operator] = ACTIONS(4143), - [anon_sym_infix] = ACTIONS(4143), - [anon_sym_inline] = ACTIONS(4143), - [anon_sym_external] = ACTIONS(4143), - [sym_property_modifier] = ACTIONS(4143), - [anon_sym_abstract] = ACTIONS(4143), - [anon_sym_final] = ACTIONS(4143), - [anon_sym_open] = ACTIONS(4143), - [anon_sym_vararg] = ACTIONS(4143), - [anon_sym_noinline] = ACTIONS(4143), - [anon_sym_crossinline] = ACTIONS(4143), - [anon_sym_expect] = ACTIONS(4143), - [anon_sym_actual] = ACTIONS(4143), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4145), - [anon_sym_continue_AT] = ACTIONS(4145), - [anon_sym_break_AT] = ACTIONS(4145), - [anon_sym_this_AT] = ACTIONS(4145), - [anon_sym_super_AT] = ACTIONS(4145), - [sym_real_literal] = ACTIONS(4145), - [sym_integer_literal] = ACTIONS(4143), - [sym_hex_literal] = ACTIONS(4145), - [sym_bin_literal] = ACTIONS(4145), - [anon_sym_true] = ACTIONS(4143), - [anon_sym_false] = ACTIONS(4143), - [anon_sym_SQUOTE] = ACTIONS(4145), - [sym__backtick_identifier] = ACTIONS(4145), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4145), + [3695] = { + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4648), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_LPAREN] = ACTIONS(4648), + [anon_sym_COMMA] = ACTIONS(4648), + [anon_sym_by] = ACTIONS(4646), + [anon_sym_object] = ACTIONS(4646), + [anon_sym_fun] = 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_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_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_PLUS_PLUS] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4648), + [anon_sym_BANG] = ACTIONS(4646), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4648), + [anon_sym_super_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4648), }, - [3608] = { - [sym_function_body] = STATE(3113), - [sym__block] = STATE(3072), + [3696] = { + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_EQ] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_fun] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_this] = ACTIONS(4373), + [anon_sym_super] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4375), + [sym_label] = ACTIONS(4373), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_null] = ACTIONS(4373), + [anon_sym_if] = ACTIONS(4373), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_when] = ACTIONS(4373), + [anon_sym_try] = ACTIONS(4373), + [anon_sym_throw] = ACTIONS(4373), + [anon_sym_return] = ACTIONS(4373), + [anon_sym_continue] = ACTIONS(4373), + [anon_sym_break] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4375), + [anon_sym_continue_AT] = ACTIONS(4375), + [anon_sym_break_AT] = ACTIONS(4375), + [anon_sym_this_AT] = ACTIONS(4375), + [anon_sym_super_AT] = ACTIONS(4375), + [sym_real_literal] = ACTIONS(4375), + [sym_integer_literal] = ACTIONS(4373), + [sym_hex_literal] = ACTIONS(4375), + [sym_bin_literal] = ACTIONS(4375), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4375), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4375), + }, + [3697] = { + [sym_class_body] = STATE(3862), + [sym_type_constraints] = STATE(3750), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + }, + [3698] = { + [sym_class_body] = STATE(3990), + [sym_type_constraints] = STATE(3818), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + }, + [3699] = { + [aux_sym_user_type_repeat1] = STATE(3699), + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(6972), + [anon_sym_typealias] = ACTIONS(4129), + [anon_sym_class] = ACTIONS(4129), + [anon_sym_interface] = ACTIONS(4129), + [anon_sym_enum] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_val] = ACTIONS(4129), + [anon_sym_var] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_for] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_do] = ACTIONS(4129), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [3700] = { + [sym_type_constraints] = STATE(3998), + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [3701] = { + [sym_function_body] = STATE(3108), + [sym__block] = STATE(3227), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_COMMA] = ACTIONS(4262), @@ -409732,747 +417627,1716 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_multiline_comment] = ACTIONS(3), [sym__string_start] = ACTIONS(4262), }, - [3609] = { - [sym_function_body] = STATE(3104), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [3702] = { + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [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_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_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_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(4144), + [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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [3703] = { + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_DOT] = ACTIONS(3938), + [anon_sym_typealias] = ACTIONS(3938), + [anon_sym_class] = ACTIONS(3938), + [anon_sym_interface] = ACTIONS(3938), + [anon_sym_enum] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_val] = ACTIONS(3938), + [anon_sym_var] = ACTIONS(3938), + [anon_sym_LT] = ACTIONS(3943), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(3938), + [anon_sym_set] = ACTIONS(3938), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3943), + [sym_label] = ACTIONS(3938), + [anon_sym_for] = ACTIONS(3938), + [anon_sym_while] = ACTIONS(3938), + [anon_sym_do] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3938), + [anon_sym_sealed] = ACTIONS(3938), + [anon_sym_annotation] = ACTIONS(3938), + [anon_sym_data] = ACTIONS(3938), + [anon_sym_inner] = ACTIONS(3938), + [anon_sym_value] = ACTIONS(3938), + [anon_sym_override] = ACTIONS(3938), + [anon_sym_lateinit] = ACTIONS(3938), + [anon_sym_public] = ACTIONS(3938), + [anon_sym_private] = ACTIONS(3938), + [anon_sym_internal] = ACTIONS(3938), + [anon_sym_protected] = ACTIONS(3938), + [anon_sym_tailrec] = ACTIONS(3938), + [anon_sym_operator] = ACTIONS(3938), + [anon_sym_infix] = ACTIONS(3938), + [anon_sym_inline] = ACTIONS(3938), + [anon_sym_external] = ACTIONS(3938), + [sym_property_modifier] = ACTIONS(3938), + [anon_sym_abstract] = ACTIONS(3938), + [anon_sym_final] = ACTIONS(3938), + [anon_sym_open] = ACTIONS(3938), + [anon_sym_vararg] = ACTIONS(3938), + [anon_sym_noinline] = ACTIONS(3938), + [anon_sym_crossinline] = ACTIONS(3938), + [anon_sym_expect] = ACTIONS(3938), + [anon_sym_actual] = ACTIONS(3938), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [3704] = { + [sym_type_constraints] = STATE(3963), + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(3164), + [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_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_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(4144), + [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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [3705] = { + [sym_function_body] = STATE(3098), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [3706] = { + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6702), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), + }, + [3707] = { + [sym__alpha_identifier] = ACTIONS(4670), + [anon_sym_AT] = ACTIONS(4673), + [anon_sym_LBRACK] = ACTIONS(4673), + [anon_sym_DOT] = ACTIONS(4670), + [anon_sym_as] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4673), + [anon_sym_RBRACE] = ACTIONS(4673), + [anon_sym_LPAREN] = ACTIONS(4673), + [anon_sym_COMMA] = ACTIONS(4673), + [anon_sym_by] = ACTIONS(4670), + [anon_sym_LT] = ACTIONS(4670), + [anon_sym_GT] = ACTIONS(4670), + [anon_sym_where] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_get] = ACTIONS(4670), + [anon_sym_set] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4670), + [sym_label] = ACTIONS(4673), + [anon_sym_in] = ACTIONS(4670), + [anon_sym_DOT_DOT] = ACTIONS(4673), + [anon_sym_QMARK_COLON] = ACTIONS(4673), + [anon_sym_AMP_AMP] = ACTIONS(4673), + [anon_sym_PIPE_PIPE] = ACTIONS(4673), + [anon_sym_else] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4673), + [anon_sym_PLUS_EQ] = ACTIONS(4673), + [anon_sym_DASH_EQ] = ACTIONS(4673), + [anon_sym_STAR_EQ] = ACTIONS(4673), + [anon_sym_SLASH_EQ] = ACTIONS(4673), + [anon_sym_PERCENT_EQ] = ACTIONS(4673), + [anon_sym_BANG_EQ] = ACTIONS(4670), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4673), + [anon_sym_EQ_EQ] = ACTIONS(4670), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4673), + [anon_sym_LT_EQ] = ACTIONS(4673), + [anon_sym_GT_EQ] = ACTIONS(4673), + [anon_sym_BANGin] = ACTIONS(4673), + [anon_sym_is] = ACTIONS(4670), + [anon_sym_BANGis] = ACTIONS(4673), + [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(4673), + [anon_sym_PLUS_PLUS] = ACTIONS(4673), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_BANG_BANG] = ACTIONS(4673), + [anon_sym_suspend] = ACTIONS(4670), + [anon_sym_sealed] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4670), + [anon_sym_data] = ACTIONS(4670), + [anon_sym_inner] = ACTIONS(4670), + [anon_sym_value] = ACTIONS(4670), + [anon_sym_override] = ACTIONS(4670), + [anon_sym_lateinit] = ACTIONS(4670), + [anon_sym_public] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4670), + [anon_sym_internal] = ACTIONS(4670), + [anon_sym_protected] = ACTIONS(4670), + [anon_sym_tailrec] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_infix] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym_external] = ACTIONS(4670), + [sym_property_modifier] = ACTIONS(4670), + [anon_sym_abstract] = ACTIONS(4670), + [anon_sym_final] = ACTIONS(4670), + [anon_sym_open] = ACTIONS(4670), + [anon_sym_vararg] = ACTIONS(4670), + [anon_sym_noinline] = ACTIONS(4670), + [anon_sym_crossinline] = ACTIONS(4670), + [anon_sym_expect] = ACTIONS(4670), + [anon_sym_actual] = ACTIONS(4670), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4673), + [sym__automatic_semicolon] = ACTIONS(4673), + [sym_safe_nav] = ACTIONS(4673), + [sym_multiline_comment] = ACTIONS(3), + }, + [3708] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), }, - [3610] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_catch] = ACTIONS(4442), - [anon_sym_finally] = 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_value] = 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), + [3709] = { + [sym_class_body] = STATE(3873), + [sym__alpha_identifier] = ACTIONS(4591), + [anon_sym_AT] = ACTIONS(4593), + [anon_sym_LBRACK] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(4591), + [anon_sym_as] = ACTIONS(4591), + [anon_sym_EQ] = ACTIONS(4591), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4593), + [anon_sym_LPAREN] = ACTIONS(4593), + [anon_sym_COMMA] = ACTIONS(4593), + [anon_sym_LT] = ACTIONS(4591), + [anon_sym_GT] = ACTIONS(4591), + [anon_sym_where] = ACTIONS(4591), + [anon_sym_SEMI] = ACTIONS(4593), + [anon_sym_get] = ACTIONS(4591), + [anon_sym_set] = ACTIONS(4591), + [anon_sym_STAR] = ACTIONS(4591), + [sym_label] = ACTIONS(4593), + [anon_sym_in] = ACTIONS(4591), + [anon_sym_DOT_DOT] = ACTIONS(4593), + [anon_sym_QMARK_COLON] = ACTIONS(4593), + [anon_sym_AMP_AMP] = ACTIONS(4593), + [anon_sym_PIPE_PIPE] = ACTIONS(4593), + [anon_sym_else] = ACTIONS(4591), + [anon_sym_COLON_COLON] = ACTIONS(4593), + [anon_sym_PLUS_EQ] = ACTIONS(4593), + [anon_sym_DASH_EQ] = ACTIONS(4593), + [anon_sym_STAR_EQ] = ACTIONS(4593), + [anon_sym_SLASH_EQ] = ACTIONS(4593), + [anon_sym_PERCENT_EQ] = ACTIONS(4593), + [anon_sym_BANG_EQ] = ACTIONS(4591), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4593), + [anon_sym_EQ_EQ] = ACTIONS(4591), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4593), + [anon_sym_LT_EQ] = ACTIONS(4593), + [anon_sym_GT_EQ] = ACTIONS(4593), + [anon_sym_BANGin] = ACTIONS(4593), + [anon_sym_is] = ACTIONS(4591), + [anon_sym_BANGis] = ACTIONS(4593), + [anon_sym_PLUS] = ACTIONS(4591), + [anon_sym_DASH] = ACTIONS(4591), + [anon_sym_SLASH] = ACTIONS(4591), + [anon_sym_PERCENT] = ACTIONS(4591), + [anon_sym_as_QMARK] = ACTIONS(4593), + [anon_sym_PLUS_PLUS] = ACTIONS(4593), + [anon_sym_DASH_DASH] = ACTIONS(4593), + [anon_sym_BANG_BANG] = ACTIONS(4593), + [anon_sym_suspend] = ACTIONS(4591), + [anon_sym_sealed] = ACTIONS(4591), + [anon_sym_annotation] = ACTIONS(4591), + [anon_sym_data] = ACTIONS(4591), + [anon_sym_inner] = ACTIONS(4591), + [anon_sym_value] = ACTIONS(4591), + [anon_sym_override] = ACTIONS(4591), + [anon_sym_lateinit] = ACTIONS(4591), + [anon_sym_public] = ACTIONS(4591), + [anon_sym_private] = ACTIONS(4591), + [anon_sym_internal] = ACTIONS(4591), + [anon_sym_protected] = ACTIONS(4591), + [anon_sym_tailrec] = ACTIONS(4591), + [anon_sym_operator] = ACTIONS(4591), + [anon_sym_infix] = ACTIONS(4591), + [anon_sym_inline] = ACTIONS(4591), + [anon_sym_external] = ACTIONS(4591), + [sym_property_modifier] = ACTIONS(4591), + [anon_sym_abstract] = ACTIONS(4591), + [anon_sym_final] = ACTIONS(4591), + [anon_sym_open] = ACTIONS(4591), + [anon_sym_vararg] = ACTIONS(4591), + [anon_sym_noinline] = ACTIONS(4591), + [anon_sym_crossinline] = ACTIONS(4591), + [anon_sym_expect] = ACTIONS(4591), + [anon_sym_actual] = ACTIONS(4591), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4593), + [sym__automatic_semicolon] = ACTIONS(4593), + [sym_safe_nav] = ACTIONS(4593), [sym_multiline_comment] = ACTIONS(3), }, - [3611] = { - [sym_function_body] = STATE(3084), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4395), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4395), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), + [3710] = { + [sym_enum_class_body] = STATE(3876), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [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), }, - [3612] = { - [sym_function_body] = STATE(3093), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), + [3711] = { + [sym_enum_class_body] = STATE(3990), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), }, - [3613] = { - [sym_function_body] = STATE(3147), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4387), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4387), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), + [3712] = { + [sym_class_body] = STATE(3990), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), }, - [3614] = { - [sym_function_body] = STATE(3077), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6789), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), + [3713] = { + [sym_function_body] = STATE(3518), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(7011), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_RBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_RPAREN] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4240), + [anon_sym_DASH_GT] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_while] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), + [sym_multiline_comment] = ACTIONS(3), }, - [3615] = { - [sym_function_body] = STATE(3392), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(6950), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_while] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), + [3714] = { + [sym_enum_class_body] = STATE(3901), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [sym_label] = ACTIONS(4620), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_suspend] = ACTIONS(4618), + [anon_sym_sealed] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4618), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_override] = ACTIONS(4618), + [anon_sym_lateinit] = ACTIONS(4618), + [anon_sym_public] = ACTIONS(4618), + [anon_sym_private] = ACTIONS(4618), + [anon_sym_internal] = ACTIONS(4618), + [anon_sym_protected] = ACTIONS(4618), + [anon_sym_tailrec] = ACTIONS(4618), + [anon_sym_operator] = ACTIONS(4618), + [anon_sym_infix] = ACTIONS(4618), + [anon_sym_inline] = ACTIONS(4618), + [anon_sym_external] = ACTIONS(4618), + [sym_property_modifier] = ACTIONS(4618), + [anon_sym_abstract] = ACTIONS(4618), + [anon_sym_final] = ACTIONS(4618), + [anon_sym_open] = ACTIONS(4618), + [anon_sym_vararg] = ACTIONS(4618), + [anon_sym_noinline] = ACTIONS(4618), + [anon_sym_crossinline] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4620), + [sym__automatic_semicolon] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), [sym_multiline_comment] = ACTIONS(3), }, - [3616] = { - [sym_function_body] = STATE(3396), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(6952), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [3715] = { + [sym__alpha_identifier] = ACTIONS(4129), + [anon_sym_AT] = ACTIONS(4131), + [anon_sym_LBRACK] = ACTIONS(4131), + [anon_sym_DOT] = ACTIONS(4129), + [anon_sym_typealias] = ACTIONS(4129), + [anon_sym_class] = ACTIONS(4129), + [anon_sym_interface] = ACTIONS(4129), + [anon_sym_enum] = ACTIONS(4129), + [anon_sym_LBRACE] = ACTIONS(4131), + [anon_sym_LPAREN] = ACTIONS(4131), + [anon_sym_val] = ACTIONS(4129), + [anon_sym_var] = ACTIONS(4129), + [anon_sym_object] = ACTIONS(4129), + [anon_sym_fun] = ACTIONS(4129), + [anon_sym_get] = ACTIONS(4129), + [anon_sym_set] = ACTIONS(4129), + [anon_sym_this] = ACTIONS(4129), + [anon_sym_super] = ACTIONS(4129), + [anon_sym_STAR] = ACTIONS(4131), + [sym_label] = ACTIONS(4129), + [anon_sym_for] = ACTIONS(4129), + [anon_sym_while] = ACTIONS(4129), + [anon_sym_do] = ACTIONS(4129), + [anon_sym_null] = ACTIONS(4129), + [anon_sym_if] = ACTIONS(4129), + [anon_sym_when] = ACTIONS(4129), + [anon_sym_try] = ACTIONS(4129), + [anon_sym_throw] = ACTIONS(4129), + [anon_sym_return] = ACTIONS(4129), + [anon_sym_continue] = ACTIONS(4129), + [anon_sym_break] = ACTIONS(4129), + [anon_sym_COLON_COLON] = ACTIONS(4131), + [anon_sym_PLUS] = ACTIONS(4129), + [anon_sym_DASH] = ACTIONS(4129), + [anon_sym_PLUS_PLUS] = ACTIONS(4131), + [anon_sym_DASH_DASH] = ACTIONS(4131), + [anon_sym_BANG] = ACTIONS(4131), + [anon_sym_suspend] = ACTIONS(4129), + [anon_sym_sealed] = ACTIONS(4129), + [anon_sym_annotation] = ACTIONS(4129), + [anon_sym_data] = ACTIONS(4129), + [anon_sym_inner] = ACTIONS(4129), + [anon_sym_value] = ACTIONS(4129), + [anon_sym_override] = ACTIONS(4129), + [anon_sym_lateinit] = ACTIONS(4129), + [anon_sym_public] = ACTIONS(4129), + [anon_sym_private] = ACTIONS(4129), + [anon_sym_internal] = ACTIONS(4129), + [anon_sym_protected] = ACTIONS(4129), + [anon_sym_tailrec] = ACTIONS(4129), + [anon_sym_operator] = ACTIONS(4129), + [anon_sym_infix] = ACTIONS(4129), + [anon_sym_inline] = ACTIONS(4129), + [anon_sym_external] = ACTIONS(4129), + [sym_property_modifier] = ACTIONS(4129), + [anon_sym_abstract] = ACTIONS(4129), + [anon_sym_final] = ACTIONS(4129), + [anon_sym_open] = ACTIONS(4129), + [anon_sym_vararg] = ACTIONS(4129), + [anon_sym_noinline] = ACTIONS(4129), + [anon_sym_crossinline] = ACTIONS(4129), + [anon_sym_expect] = ACTIONS(4129), + [anon_sym_actual] = ACTIONS(4129), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4131), + [anon_sym_continue_AT] = ACTIONS(4131), + [anon_sym_break_AT] = ACTIONS(4131), + [anon_sym_this_AT] = ACTIONS(4131), + [anon_sym_super_AT] = ACTIONS(4131), + [sym_real_literal] = ACTIONS(4131), + [sym_integer_literal] = ACTIONS(4129), + [sym_hex_literal] = ACTIONS(4131), + [sym_bin_literal] = ACTIONS(4131), + [anon_sym_true] = ACTIONS(4129), + [anon_sym_false] = ACTIONS(4129), + [anon_sym_SQUOTE] = ACTIONS(4131), + [sym__backtick_identifier] = ACTIONS(4131), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4131), + }, + [3716] = { + [sym_class_body] = STATE(3866), + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), [sym_multiline_comment] = ACTIONS(3), }, - [3617] = { - [ts_builtin_sym_end] = ACTIONS(6954), - [sym__alpha_identifier] = ACTIONS(6956), - [anon_sym_AT] = ACTIONS(6954), - [anon_sym_LBRACK] = ACTIONS(6954), - [anon_sym_import] = ACTIONS(6956), - [anon_sym_typealias] = ACTIONS(6956), - [anon_sym_class] = ACTIONS(6956), - [anon_sym_interface] = ACTIONS(6956), - [anon_sym_enum] = ACTIONS(6956), - [anon_sym_LBRACE] = ACTIONS(6954), - [anon_sym_LPAREN] = ACTIONS(6954), - [anon_sym_val] = ACTIONS(6956), - [anon_sym_var] = ACTIONS(6956), - [anon_sym_object] = ACTIONS(6956), - [anon_sym_fun] = ACTIONS(6956), - [anon_sym_get] = ACTIONS(6956), - [anon_sym_set] = ACTIONS(6956), - [anon_sym_this] = ACTIONS(6956), - [anon_sym_super] = ACTIONS(6956), - [anon_sym_STAR] = ACTIONS(6954), - [sym_label] = ACTIONS(6956), - [anon_sym_for] = ACTIONS(6956), - [anon_sym_while] = ACTIONS(6956), - [anon_sym_do] = ACTIONS(6956), - [anon_sym_null] = ACTIONS(6956), - [anon_sym_if] = ACTIONS(6956), - [anon_sym_when] = ACTIONS(6956), - [anon_sym_try] = ACTIONS(6956), - [anon_sym_throw] = ACTIONS(6956), - [anon_sym_return] = ACTIONS(6956), - [anon_sym_continue] = ACTIONS(6956), - [anon_sym_break] = ACTIONS(6956), - [anon_sym_COLON_COLON] = ACTIONS(6954), - [anon_sym_PLUS] = ACTIONS(6956), - [anon_sym_DASH] = ACTIONS(6956), - [anon_sym_PLUS_PLUS] = ACTIONS(6954), - [anon_sym_DASH_DASH] = ACTIONS(6954), - [anon_sym_BANG] = ACTIONS(6954), - [anon_sym_suspend] = ACTIONS(6956), - [anon_sym_sealed] = ACTIONS(6956), - [anon_sym_annotation] = ACTIONS(6956), - [anon_sym_data] = ACTIONS(6956), - [anon_sym_inner] = ACTIONS(6956), - [anon_sym_value] = ACTIONS(6956), - [anon_sym_override] = ACTIONS(6956), - [anon_sym_lateinit] = ACTIONS(6956), - [anon_sym_public] = ACTIONS(6956), - [anon_sym_private] = ACTIONS(6956), - [anon_sym_internal] = ACTIONS(6956), - [anon_sym_protected] = ACTIONS(6956), - [anon_sym_tailrec] = ACTIONS(6956), - [anon_sym_operator] = ACTIONS(6956), - [anon_sym_infix] = ACTIONS(6956), - [anon_sym_inline] = ACTIONS(6956), - [anon_sym_external] = ACTIONS(6956), - [sym_property_modifier] = ACTIONS(6956), - [anon_sym_abstract] = ACTIONS(6956), - [anon_sym_final] = ACTIONS(6956), - [anon_sym_open] = ACTIONS(6956), - [anon_sym_vararg] = ACTIONS(6956), - [anon_sym_noinline] = ACTIONS(6956), - [anon_sym_crossinline] = ACTIONS(6956), - [anon_sym_expect] = ACTIONS(6956), - [anon_sym_actual] = ACTIONS(6956), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(6954), - [anon_sym_continue_AT] = ACTIONS(6954), - [anon_sym_break_AT] = ACTIONS(6954), - [anon_sym_this_AT] = ACTIONS(6954), - [anon_sym_super_AT] = ACTIONS(6954), - [sym_real_literal] = ACTIONS(6954), - [sym_integer_literal] = ACTIONS(6956), - [sym_hex_literal] = ACTIONS(6954), - [sym_bin_literal] = ACTIONS(6954), - [anon_sym_true] = ACTIONS(6956), - [anon_sym_false] = ACTIONS(6956), - [anon_sym_SQUOTE] = ACTIONS(6954), - [sym__backtick_identifier] = ACTIONS(6954), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(6954), + [3717] = { + [sym_enum_class_body] = STATE(3862), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), }, - [3618] = { + [3718] = { + [sym_function_body] = STATE(3859), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(7013), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_LPAREN] = ACTIONS(4198), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + }, + [3719] = { + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(6962), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + }, + [3720] = { + [sym__alpha_identifier] = ACTIONS(4503), + [anon_sym_AT] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_DOT] = ACTIONS(4503), + [anon_sym_as] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4505), + [anon_sym_COMMA] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4503), + [anon_sym_GT] = ACTIONS(4503), + [anon_sym_where] = ACTIONS(4503), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_get] = ACTIONS(4503), + [anon_sym_set] = ACTIONS(4503), + [anon_sym_STAR] = ACTIONS(4503), + [sym_label] = ACTIONS(4505), + [anon_sym_in] = ACTIONS(4503), + [anon_sym_DOT_DOT] = ACTIONS(4505), + [anon_sym_QMARK_COLON] = ACTIONS(4505), + [anon_sym_AMP_AMP] = ACTIONS(4505), + [anon_sym_PIPE_PIPE] = ACTIONS(4505), + [anon_sym_else] = ACTIONS(4503), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_PLUS_EQ] = ACTIONS(4505), + [anon_sym_DASH_EQ] = ACTIONS(4505), + [anon_sym_STAR_EQ] = ACTIONS(4505), + [anon_sym_SLASH_EQ] = ACTIONS(4505), + [anon_sym_PERCENT_EQ] = ACTIONS(4505), + [anon_sym_BANG_EQ] = ACTIONS(4503), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4505), + [anon_sym_EQ_EQ] = ACTIONS(4503), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4505), + [anon_sym_LT_EQ] = ACTIONS(4505), + [anon_sym_GT_EQ] = ACTIONS(4505), + [anon_sym_BANGin] = ACTIONS(4505), + [anon_sym_is] = ACTIONS(4503), + [anon_sym_BANGis] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4503), + [anon_sym_DASH] = ACTIONS(4503), + [anon_sym_SLASH] = ACTIONS(4503), + [anon_sym_PERCENT] = ACTIONS(4503), + [anon_sym_as_QMARK] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_BANG_BANG] = ACTIONS(4505), + [anon_sym_suspend] = ACTIONS(4503), + [anon_sym_sealed] = ACTIONS(4503), + [anon_sym_annotation] = ACTIONS(4503), + [anon_sym_data] = ACTIONS(4503), + [anon_sym_inner] = ACTIONS(4503), + [anon_sym_value] = ACTIONS(4503), + [anon_sym_override] = ACTIONS(4503), + [anon_sym_lateinit] = ACTIONS(4503), + [anon_sym_public] = ACTIONS(4503), + [anon_sym_private] = ACTIONS(4503), + [anon_sym_internal] = ACTIONS(4503), + [anon_sym_protected] = ACTIONS(4503), + [anon_sym_tailrec] = ACTIONS(4503), + [anon_sym_operator] = ACTIONS(4503), + [anon_sym_infix] = ACTIONS(4503), + [anon_sym_inline] = ACTIONS(4503), + [anon_sym_external] = ACTIONS(4503), + [sym_property_modifier] = ACTIONS(4503), + [anon_sym_abstract] = ACTIONS(4503), + [anon_sym_final] = ACTIONS(4503), + [anon_sym_open] = ACTIONS(4503), + [anon_sym_vararg] = ACTIONS(4503), + [anon_sym_noinline] = ACTIONS(4503), + [anon_sym_crossinline] = ACTIONS(4503), + [anon_sym_expect] = ACTIONS(4503), + [anon_sym_actual] = ACTIONS(4503), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4505), + [sym__automatic_semicolon] = ACTIONS(4505), + [sym_safe_nav] = ACTIONS(4505), + [sym_multiline_comment] = ACTIONS(3), + }, + [3721] = { + [sym__alpha_identifier] = ACTIONS(4666), + [anon_sym_AT] = ACTIONS(4668), + [anon_sym_LBRACK] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4666), + [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_by] = ACTIONS(4666), + [anon_sym_LT] = ACTIONS(4666), + [anon_sym_GT] = ACTIONS(4666), + [anon_sym_where] = 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_value] = 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), + }, + [3722] = { + [sym_function_body] = STATE(3913), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(7015), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4250), + [sym_label] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_PLUS_EQ] = ACTIONS(4252), + [anon_sym_DASH_EQ] = ACTIONS(4252), + [anon_sym_STAR_EQ] = ACTIONS(4252), + [anon_sym_SLASH_EQ] = ACTIONS(4252), + [anon_sym_PERCENT_EQ] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4250), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + }, + [3723] = { [sym__alpha_identifier] = ACTIONS(4499), [anon_sym_AT] = ACTIONS(4501), + [anon_sym_COLON] = ACTIONS(4499), [anon_sym_LBRACK] = ACTIONS(4501), [anon_sym_DOT] = ACTIONS(4499), [anon_sym_as] = ACTIONS(4499), @@ -410545,1921 +419409,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4499), [anon_sym_actual] = ACTIONS(4499), [sym_line_comment] = ACTIONS(3), - [aux_sym_unsigned_literal_token1] = ACTIONS(6958), - [anon_sym_L] = ACTIONS(6960), [sym__backtick_identifier] = ACTIONS(4501), [sym__automatic_semicolon] = ACTIONS(4501), [sym_safe_nav] = ACTIONS(4501), [sym_multiline_comment] = ACTIONS(3), }, - [3619] = { - [sym_class_body] = STATE(3856), - [sym_type_constraints] = STATE(3803), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - }, - [3620] = { - [sym_type_constraints] = STATE(3903), - [sym_function_body] = STATE(3104), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [3724] = { + [sym_function_body] = STATE(3396), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), }, - [3621] = { - [sym_type_constraints] = STATE(3908), - [sym_function_body] = STATE(3113), - [sym__block] = STATE(3072), + [3725] = { + [sym_function_body] = STATE(3387), + [sym__block] = STATE(3524), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4260), - [anon_sym_fun] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), [anon_sym_get] = ACTIONS(4260), [anon_sym_set] = ACTIONS(4260), - [anon_sym_this] = ACTIONS(4260), - [anon_sym_super] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [anon_sym_try] = ACTIONS(4260), - [anon_sym_throw] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4262), - [anon_sym_continue_AT] = ACTIONS(4262), - [anon_sym_break_AT] = ACTIONS(4262), - [anon_sym_this_AT] = ACTIONS(4262), - [anon_sym_super_AT] = ACTIONS(4262), - [sym_real_literal] = ACTIONS(4262), - [sym_integer_literal] = ACTIONS(4260), - [sym_hex_literal] = ACTIONS(4262), - [sym_bin_literal] = ACTIONS(4262), - [anon_sym_true] = ACTIONS(4260), - [anon_sym_false] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4262), - [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4262), - }, - [3622] = { - [sym_type_constraints] = STATE(3914), - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [3623] = { - [sym_type_constraints] = STATE(3941), - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), - }, - [3624] = { - [sym_type_constraints] = STATE(3995), - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4156), - [anon_sym_fun] = 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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [3625] = { - [sym_function_body] = STATE(3897), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - }, - [3626] = { - [sym_type_constraints] = STATE(4037), - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(6962), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_RBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [anon_sym_DASH_GT] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - }, - [3627] = { - [sym_type_constraints] = STATE(4039), - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(6966), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_RBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_DASH_GT] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - }, - [3628] = { - [sym_function_body] = STATE(3861), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3629] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_constructor] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_COMMA] = ACTIONS(3995), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [sym_label] = ACTIONS(3995), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - }, - [3630] = { - [sym_function_body] = STATE(3878), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - }, - [3631] = { - [sym_type_constraints] = STATE(4006), - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(6968), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [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(5512), - [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_value] = 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), - }, - [3632] = { - [sym_class_body] = STATE(3898), - [sym_type_constraints] = STATE(3809), - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_suspend] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_annotation] = ACTIONS(4507), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_lateinit] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_tailrec] = ACTIONS(4507), - [anon_sym_operator] = ACTIONS(4507), - [anon_sym_infix] = ACTIONS(4507), - [anon_sym_inline] = ACTIONS(4507), - [anon_sym_external] = ACTIONS(4507), - [sym_property_modifier] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_final] = ACTIONS(4507), - [anon_sym_open] = ACTIONS(4507), - [anon_sym_vararg] = ACTIONS(4507), - [anon_sym_noinline] = ACTIONS(4507), - [anon_sym_crossinline] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4509), - [sym__automatic_semicolon] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), - [sym_multiline_comment] = ACTIONS(3), - }, - [3633] = { - [sym_type_constraints] = STATE(3811), - [sym_enum_class_body] = STATE(3853), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - }, - [3634] = { - [sym_type_constraints] = STATE(3990), - [sym_function_body] = STATE(3527), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(6970), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_RBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [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(5512), - [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_value] = 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), - }, - [3635] = { - [sym_function_body] = STATE(3889), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [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_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_value] = 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), - }, - [3636] = { - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [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_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_value] = 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), - }, - [3637] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_typealias] = ACTIONS(3990), - [anon_sym_class] = ACTIONS(3990), - [anon_sym_interface] = ACTIONS(3990), - [anon_sym_enum] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_val] = ACTIONS(3990), - [anon_sym_var] = ACTIONS(3990), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3995), - [sym_label] = ACTIONS(3990), - [anon_sym_for] = ACTIONS(3990), - [anon_sym_while] = ACTIONS(3990), - [anon_sym_do] = ACTIONS(3990), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [3638] = { - [sym_type_constraints] = STATE(3982), - [sym_function_body] = STATE(3549), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(6972), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_RBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_COMMA] = ACTIONS(4135), - [anon_sym_RPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4135), - [anon_sym_DASH_GT] = ACTIONS(4135), - [sym_label] = ACTIONS(4135), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_while] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4135), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - }, - [3639] = { - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - }, - [3640] = { - [sym_type_constraints] = STATE(3949), - [sym_function_body] = STATE(3890), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - }, - [3641] = { - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - }, - [3642] = { - [sym_type_constraints] = STATE(3937), - [sym_function_body] = STATE(3988), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4262), + [anon_sym_STAR] = ACTIONS(4260), + [sym_label] = ACTIONS(4262), [anon_sym_in] = ACTIONS(4260), + [anon_sym_while] = ACTIONS(4260), [anon_sym_DOT_DOT] = ACTIONS(4262), [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), @@ -412516,289 +419573,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4260), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [3643] = { - [sym_type_constraints] = STATE(3926), - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - }, - [3644] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_typealias] = ACTIONS(4122), - [anon_sym_class] = ACTIONS(4122), - [anon_sym_interface] = ACTIONS(4122), - [anon_sym_enum] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_val] = ACTIONS(4122), - [anon_sym_var] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4124), - [sym_label] = ACTIONS(4122), - [anon_sym_for] = ACTIONS(4122), - [anon_sym_while] = ACTIONS(4122), - [anon_sym_do] = ACTIONS(4122), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_throw] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_AT] = ACTIONS(4124), - [anon_sym_this_AT] = ACTIONS(4124), - [anon_sym_super_AT] = ACTIONS(4124), - [sym_real_literal] = ACTIONS(4124), - [sym_integer_literal] = ACTIONS(4122), - [sym_hex_literal] = ACTIONS(4124), - [sym_bin_literal] = ACTIONS(4124), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym__backtick_identifier] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), - }, - [3645] = { - [sym_type_constraints] = STATE(3994), - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [3726] = { + [sym__alpha_identifier] = ACTIONS(4646), + [anon_sym_AT] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4646), + [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(4648), + [anon_sym_by] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_where] = 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_value] = 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), }, - [3646] = { - [sym_function_body] = STATE(3988), - [sym__block] = STATE(3975), + [3727] = { + [sym_type_constraints] = STATE(4029), + [sym_function_body] = STATE(3387), + [sym__block] = STATE(3524), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_RBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(5448), [anon_sym_SEMI] = ACTIONS(4262), [anon_sym_get] = ACTIONS(4260), [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4262), + [anon_sym_DASH_GT] = ACTIONS(4262), [sym_label] = ACTIONS(4262), [anon_sym_in] = ACTIONS(4260), + [anon_sym_while] = ACTIONS(4260), [anon_sym_DOT_DOT] = ACTIONS(4262), [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), [anon_sym_PIPE_PIPE] = ACTIONS(4262), [anon_sym_else] = ACTIONS(4260), [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_PLUS_EQ] = ACTIONS(4262), - [anon_sym_DASH_EQ] = ACTIONS(4262), - [anon_sym_STAR_EQ] = ACTIONS(4262), - [anon_sym_SLASH_EQ] = ACTIONS(4262), - [anon_sym_PERCENT_EQ] = ACTIONS(4262), [anon_sym_BANG_EQ] = ACTIONS(4260), [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), [anon_sym_EQ_EQ] = ACTIONS(4260), @@ -412811,7 +419702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(4260), [anon_sym_DASH] = ACTIONS(4260), [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4262), [anon_sym_as_QMARK] = ACTIONS(4262), [anon_sym_PLUS_PLUS] = ACTIONS(4262), [anon_sym_DASH_DASH] = ACTIONS(4262), @@ -412844,14695 +419735,8942 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4260), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [3647] = { - [sym_function_body] = STATE(3890), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - }, - [3648] = { - [sym_type_constraints] = STATE(3850), - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(5816), - [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_value] = 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), - }, - [3649] = { - [sym_function_body] = STATE(4005), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(6757), - [anon_sym_LBRACE] = ACTIONS(6759), - [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_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_value] = 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), - }, - [3650] = { - [sym__alpha_identifier] = ACTIONS(4401), - [anon_sym_AT] = ACTIONS(4403), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_DOT] = ACTIONS(4401), - [anon_sym_as] = ACTIONS(4401), - [anon_sym_EQ] = ACTIONS(4401), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_COMMA] = ACTIONS(4403), - [anon_sym_LT] = ACTIONS(4401), - [anon_sym_GT] = ACTIONS(4401), - [anon_sym_where] = ACTIONS(4401), - [anon_sym_SEMI] = ACTIONS(4403), - [anon_sym_get] = ACTIONS(4401), - [anon_sym_set] = ACTIONS(4401), - [anon_sym_STAR] = ACTIONS(4401), - [sym_label] = ACTIONS(4403), - [anon_sym_in] = ACTIONS(4401), - [anon_sym_DOT_DOT] = ACTIONS(4403), - [anon_sym_QMARK_COLON] = ACTIONS(4403), - [anon_sym_AMP_AMP] = ACTIONS(4403), - [anon_sym_PIPE_PIPE] = ACTIONS(4403), - [anon_sym_else] = ACTIONS(4401), - [anon_sym_catch] = ACTIONS(4401), - [anon_sym_finally] = ACTIONS(4401), - [anon_sym_COLON_COLON] = ACTIONS(4403), - [anon_sym_PLUS_EQ] = ACTIONS(4403), - [anon_sym_DASH_EQ] = ACTIONS(4403), - [anon_sym_STAR_EQ] = ACTIONS(4403), - [anon_sym_SLASH_EQ] = ACTIONS(4403), - [anon_sym_PERCENT_EQ] = ACTIONS(4403), - [anon_sym_BANG_EQ] = ACTIONS(4401), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4403), - [anon_sym_EQ_EQ] = ACTIONS(4401), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4403), - [anon_sym_LT_EQ] = ACTIONS(4403), - [anon_sym_GT_EQ] = ACTIONS(4403), - [anon_sym_BANGin] = ACTIONS(4403), - [anon_sym_is] = ACTIONS(4401), - [anon_sym_BANGis] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4401), - [anon_sym_DASH] = ACTIONS(4401), - [anon_sym_SLASH] = ACTIONS(4401), - [anon_sym_PERCENT] = ACTIONS(4401), - [anon_sym_as_QMARK] = ACTIONS(4403), - [anon_sym_PLUS_PLUS] = ACTIONS(4403), - [anon_sym_DASH_DASH] = ACTIONS(4403), - [anon_sym_BANG_BANG] = ACTIONS(4403), - [anon_sym_suspend] = ACTIONS(4401), - [anon_sym_sealed] = ACTIONS(4401), - [anon_sym_annotation] = ACTIONS(4401), - [anon_sym_data] = ACTIONS(4401), - [anon_sym_inner] = ACTIONS(4401), - [anon_sym_value] = ACTIONS(4401), - [anon_sym_override] = ACTIONS(4401), - [anon_sym_lateinit] = ACTIONS(4401), - [anon_sym_public] = ACTIONS(4401), - [anon_sym_private] = ACTIONS(4401), - [anon_sym_internal] = ACTIONS(4401), - [anon_sym_protected] = ACTIONS(4401), - [anon_sym_tailrec] = ACTIONS(4401), - [anon_sym_operator] = ACTIONS(4401), - [anon_sym_infix] = ACTIONS(4401), - [anon_sym_inline] = ACTIONS(4401), - [anon_sym_external] = ACTIONS(4401), - [sym_property_modifier] = ACTIONS(4401), - [anon_sym_abstract] = ACTIONS(4401), - [anon_sym_final] = ACTIONS(4401), - [anon_sym_open] = ACTIONS(4401), - [anon_sym_vararg] = ACTIONS(4401), - [anon_sym_noinline] = ACTIONS(4401), - [anon_sym_crossinline] = ACTIONS(4401), - [anon_sym_expect] = ACTIONS(4401), - [anon_sym_actual] = ACTIONS(4401), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4403), - [sym__automatic_semicolon] = ACTIONS(4403), - [sym_safe_nav] = ACTIONS(4403), - [sym_multiline_comment] = ACTIONS(3), - }, - [3651] = { - [sym_class_body] = STATE(3853), - [sym_type_constraints] = STATE(3820), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - }, - [3652] = { - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_EQ] = ACTIONS(4433), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(4433), - [anon_sym_by] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_fun] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_this] = ACTIONS(4431), - [anon_sym_super] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4433), - [sym_label] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_null] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_try] = ACTIONS(4431), - [anon_sym_throw] = ACTIONS(4431), - [anon_sym_return] = ACTIONS(4431), - [anon_sym_continue] = ACTIONS(4431), - [anon_sym_break] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_suspend] = ACTIONS(4431), - [anon_sym_sealed] = ACTIONS(4431), - [anon_sym_annotation] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_override] = ACTIONS(4431), - [anon_sym_lateinit] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4431), - [anon_sym_internal] = ACTIONS(4431), - [anon_sym_protected] = ACTIONS(4431), - [anon_sym_tailrec] = ACTIONS(4431), - [anon_sym_operator] = ACTIONS(4431), - [anon_sym_infix] = ACTIONS(4431), - [anon_sym_inline] = ACTIONS(4431), - [anon_sym_external] = ACTIONS(4431), - [sym_property_modifier] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(4431), - [anon_sym_final] = ACTIONS(4431), - [anon_sym_open] = ACTIONS(4431), - [anon_sym_vararg] = ACTIONS(4431), - [anon_sym_noinline] = ACTIONS(4431), - [anon_sym_crossinline] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4433), - [anon_sym_continue_AT] = ACTIONS(4433), - [anon_sym_break_AT] = ACTIONS(4433), - [anon_sym_this_AT] = ACTIONS(4433), - [anon_sym_super_AT] = ACTIONS(4433), - [sym_real_literal] = ACTIONS(4433), - [sym_integer_literal] = ACTIONS(4431), - [sym_hex_literal] = ACTIONS(4433), - [sym_bin_literal] = ACTIONS(4433), - [anon_sym_true] = ACTIONS(4431), - [anon_sym_false] = ACTIONS(4431), - [anon_sym_SQUOTE] = ACTIONS(4433), - [sym__backtick_identifier] = ACTIONS(4433), - [sym__automatic_semicolon] = ACTIONS(4433), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4433), - }, - [3653] = { - [sym_value_arguments] = STATE(3989), - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(6974), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - }, - [3654] = { - [sym__alpha_identifier] = ACTIONS(4446), - [anon_sym_AT] = ACTIONS(4448), - [anon_sym_LBRACK] = ACTIONS(4448), - [anon_sym_DOT] = ACTIONS(4446), - [anon_sym_as] = ACTIONS(4446), - [anon_sym_EQ] = ACTIONS(4446), - [anon_sym_LBRACE] = ACTIONS(4448), - [anon_sym_RBRACE] = ACTIONS(4448), - [anon_sym_LPAREN] = ACTIONS(4448), - [anon_sym_COMMA] = ACTIONS(4448), - [anon_sym_LT] = ACTIONS(4446), - [anon_sym_GT] = ACTIONS(4446), - [anon_sym_where] = ACTIONS(4446), - [anon_sym_SEMI] = ACTIONS(4448), - [anon_sym_get] = ACTIONS(4446), - [anon_sym_set] = ACTIONS(4446), - [anon_sym_STAR] = ACTIONS(4446), - [sym_label] = ACTIONS(4448), - [anon_sym_in] = ACTIONS(4446), - [anon_sym_DOT_DOT] = ACTIONS(4448), - [anon_sym_QMARK_COLON] = ACTIONS(4448), - [anon_sym_AMP_AMP] = ACTIONS(4448), - [anon_sym_PIPE_PIPE] = ACTIONS(4448), - [anon_sym_else] = ACTIONS(4446), - [anon_sym_catch] = ACTIONS(4446), - [anon_sym_finally] = ACTIONS(4446), - [anon_sym_COLON_COLON] = ACTIONS(4448), - [anon_sym_PLUS_EQ] = ACTIONS(4448), - [anon_sym_DASH_EQ] = ACTIONS(4448), - [anon_sym_STAR_EQ] = ACTIONS(4448), - [anon_sym_SLASH_EQ] = ACTIONS(4448), - [anon_sym_PERCENT_EQ] = ACTIONS(4448), - [anon_sym_BANG_EQ] = ACTIONS(4446), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4448), - [anon_sym_EQ_EQ] = ACTIONS(4446), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4448), - [anon_sym_LT_EQ] = ACTIONS(4448), - [anon_sym_GT_EQ] = ACTIONS(4448), - [anon_sym_BANGin] = ACTIONS(4448), - [anon_sym_is] = ACTIONS(4446), - [anon_sym_BANGis] = ACTIONS(4448), - [anon_sym_PLUS] = ACTIONS(4446), - [anon_sym_DASH] = ACTIONS(4446), - [anon_sym_SLASH] = ACTIONS(4446), - [anon_sym_PERCENT] = ACTIONS(4446), - [anon_sym_as_QMARK] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4448), - [anon_sym_DASH_DASH] = ACTIONS(4448), - [anon_sym_BANG_BANG] = ACTIONS(4448), - [anon_sym_suspend] = ACTIONS(4446), - [anon_sym_sealed] = ACTIONS(4446), - [anon_sym_annotation] = ACTIONS(4446), - [anon_sym_data] = ACTIONS(4446), - [anon_sym_inner] = ACTIONS(4446), - [anon_sym_value] = ACTIONS(4446), - [anon_sym_override] = ACTIONS(4446), - [anon_sym_lateinit] = ACTIONS(4446), - [anon_sym_public] = ACTIONS(4446), - [anon_sym_private] = ACTIONS(4446), - [anon_sym_internal] = ACTIONS(4446), - [anon_sym_protected] = ACTIONS(4446), - [anon_sym_tailrec] = ACTIONS(4446), - [anon_sym_operator] = ACTIONS(4446), - [anon_sym_infix] = ACTIONS(4446), - [anon_sym_inline] = ACTIONS(4446), - [anon_sym_external] = ACTIONS(4446), - [sym_property_modifier] = ACTIONS(4446), - [anon_sym_abstract] = ACTIONS(4446), - [anon_sym_final] = ACTIONS(4446), - [anon_sym_open] = ACTIONS(4446), - [anon_sym_vararg] = ACTIONS(4446), - [anon_sym_noinline] = ACTIONS(4446), - [anon_sym_crossinline] = ACTIONS(4446), - [anon_sym_expect] = ACTIONS(4446), - [anon_sym_actual] = ACTIONS(4446), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4448), - [sym__automatic_semicolon] = ACTIONS(4448), - [sym_safe_nav] = ACTIONS(4448), - [sym_multiline_comment] = ACTIONS(3), - }, - [3655] = { - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4591), - [anon_sym_super_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), - }, - [3656] = { - [sym_class_body] = STATE(3826), - [sym_type_constraints] = STATE(3810), - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(5812), - [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(5816), - [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_value] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_lateinit] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_tailrec] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_infix] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym_external] = ACTIONS(4468), - [sym_property_modifier] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_final] = ACTIONS(4468), - [anon_sym_open] = ACTIONS(4468), - [anon_sym_vararg] = ACTIONS(4468), - [anon_sym_noinline] = ACTIONS(4468), - [anon_sym_crossinline] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4470), - [sym__automatic_semicolon] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), - }, - [3657] = { - [aux_sym_user_type_repeat1] = STATE(3607), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(6948), - [anon_sym_typealias] = ACTIONS(4162), - [anon_sym_class] = ACTIONS(4162), - [anon_sym_interface] = ACTIONS(4162), - [anon_sym_enum] = ACTIONS(4162), - [anon_sym_LBRACE] = ACTIONS(4164), - [anon_sym_LPAREN] = ACTIONS(4164), - [anon_sym_val] = ACTIONS(4162), - [anon_sym_var] = ACTIONS(4162), - [anon_sym_object] = ACTIONS(4162), - [anon_sym_fun] = ACTIONS(4162), - [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_for] = ACTIONS(4162), - [anon_sym_while] = ACTIONS(4162), - [anon_sym_do] = ACTIONS(4162), - [anon_sym_null] = ACTIONS(4162), - [anon_sym_if] = 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] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4164), - [anon_sym_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4164), - [anon_sym_super_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_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4164), - }, - [3658] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(4908), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_object] = ACTIONS(4442), - [anon_sym_fun] = ACTIONS(4442), - [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(4910), - [anon_sym_QMARK_COLON] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [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(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [anon_sym_BANG_EQ] = ACTIONS(4908), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), - [anon_sym_LT_EQ] = ACTIONS(4910), - [anon_sym_GT_EQ] = ACTIONS(4910), - [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(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_as_QMARK] = ACTIONS(4910), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_BANG_BANG] = ACTIONS(4910), - [anon_sym_data] = ACTIONS(4442), - [anon_sym_inner] = ACTIONS(4442), - [anon_sym_value] = 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), - [anon_sym_this_AT] = ACTIONS(4444), - [anon_sym_super_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(4910), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4444), - }, - [3659] = { - [sym_type_constraints] = STATE(3805), - [sym_enum_class_body] = STATE(3871), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - }, - [3660] = { - [sym_class_body] = STATE(3871), - [sym_type_constraints] = STATE(3707), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - }, - [3661] = { - [sym_type_constraints] = STATE(3787), - [sym_enum_class_body] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - }, - [3662] = { - [sym__alpha_identifier] = ACTIONS(4549), - [anon_sym_AT] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_EQ] = ACTIONS(4551), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_by] = ACTIONS(4549), - [anon_sym_object] = ACTIONS(4549), - [anon_sym_fun] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4549), - [anon_sym_set] = ACTIONS(4549), - [anon_sym_this] = ACTIONS(4549), - [anon_sym_super] = ACTIONS(4549), - [anon_sym_STAR] = ACTIONS(4551), - [sym_label] = ACTIONS(4549), - [anon_sym_in] = ACTIONS(4549), - [anon_sym_null] = ACTIONS(4549), - [anon_sym_if] = ACTIONS(4549), - [anon_sym_else] = ACTIONS(4549), - [anon_sym_when] = ACTIONS(4549), - [anon_sym_try] = ACTIONS(4549), - [anon_sym_throw] = ACTIONS(4549), - [anon_sym_return] = ACTIONS(4549), - [anon_sym_continue] = ACTIONS(4549), - [anon_sym_break] = ACTIONS(4549), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym_BANGin] = ACTIONS(4551), - [anon_sym_is] = ACTIONS(4549), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_PLUS_PLUS] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4551), - [anon_sym_BANG] = ACTIONS(4549), - [anon_sym_suspend] = ACTIONS(4549), - [anon_sym_sealed] = ACTIONS(4549), - [anon_sym_annotation] = ACTIONS(4549), - [anon_sym_data] = ACTIONS(4549), - [anon_sym_inner] = ACTIONS(4549), - [anon_sym_value] = ACTIONS(4549), - [anon_sym_override] = ACTIONS(4549), - [anon_sym_lateinit] = ACTIONS(4549), - [anon_sym_public] = ACTIONS(4549), - [anon_sym_private] = ACTIONS(4549), - [anon_sym_internal] = ACTIONS(4549), - [anon_sym_protected] = ACTIONS(4549), - [anon_sym_tailrec] = ACTIONS(4549), - [anon_sym_operator] = ACTIONS(4549), - [anon_sym_infix] = ACTIONS(4549), - [anon_sym_inline] = ACTIONS(4549), - [anon_sym_external] = ACTIONS(4549), - [sym_property_modifier] = ACTIONS(4549), - [anon_sym_abstract] = ACTIONS(4549), - [anon_sym_final] = ACTIONS(4549), - [anon_sym_open] = ACTIONS(4549), - [anon_sym_vararg] = ACTIONS(4549), - [anon_sym_noinline] = ACTIONS(4549), - [anon_sym_crossinline] = ACTIONS(4549), - [anon_sym_expect] = ACTIONS(4549), - [anon_sym_actual] = ACTIONS(4549), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4551), - [anon_sym_continue_AT] = ACTIONS(4551), - [anon_sym_break_AT] = ACTIONS(4551), - [anon_sym_this_AT] = ACTIONS(4551), - [anon_sym_super_AT] = ACTIONS(4551), - [sym_real_literal] = ACTIONS(4551), - [sym_integer_literal] = ACTIONS(4549), - [sym_hex_literal] = ACTIONS(4551), - [sym_bin_literal] = ACTIONS(4551), - [anon_sym_true] = ACTIONS(4549), - [anon_sym_false] = ACTIONS(4549), - [anon_sym_SQUOTE] = ACTIONS(4551), - [sym__backtick_identifier] = ACTIONS(4551), - [sym__automatic_semicolon] = ACTIONS(4551), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4551), - }, - [3663] = { - [sym_class_body] = STATE(4033), - [sym_type_constraints] = STATE(3742), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(6028), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - }, - [3664] = { - [sym_class_body] = STATE(3856), - [sym_type_constraints] = STATE(3803), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(6976), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - }, - [3665] = { - [sym_type_constraints] = STATE(3779), - [sym_enum_class_body] = STATE(3970), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3666] = { - [sym_type_constraints] = STATE(3734), - [sym_enum_class_body] = STATE(3964), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6036), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [3667] = { - [sym_class_body] = STATE(3970), - [sym_type_constraints] = STATE(3771), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3668] = { - [sym_class_body] = STATE(3964), - [sym_type_constraints] = STATE(3783), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6010), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [3669] = { - [sym_function_body] = STATE(3460), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(6978), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_while] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_PLUS_EQ] = ACTIONS(4291), - [anon_sym_DASH_EQ] = ACTIONS(4291), - [anon_sym_STAR_EQ] = ACTIONS(4291), - [anon_sym_SLASH_EQ] = ACTIONS(4291), - [anon_sym_PERCENT_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - }, - [3670] = { - [sym_type_constraints] = STATE(3762), - [sym_enum_class_body] = STATE(4017), - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [sym_label] = ACTIONS(4417), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_suspend] = ACTIONS(4415), - [anon_sym_sealed] = ACTIONS(4415), - [anon_sym_annotation] = ACTIONS(4415), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_override] = ACTIONS(4415), - [anon_sym_lateinit] = ACTIONS(4415), - [anon_sym_public] = ACTIONS(4415), - [anon_sym_private] = ACTIONS(4415), - [anon_sym_internal] = ACTIONS(4415), - [anon_sym_protected] = ACTIONS(4415), - [anon_sym_tailrec] = ACTIONS(4415), - [anon_sym_operator] = ACTIONS(4415), - [anon_sym_infix] = ACTIONS(4415), - [anon_sym_inline] = ACTIONS(4415), - [anon_sym_external] = ACTIONS(4415), - [sym_property_modifier] = ACTIONS(4415), - [anon_sym_abstract] = ACTIONS(4415), - [anon_sym_final] = ACTIONS(4415), - [anon_sym_open] = ACTIONS(4415), - [anon_sym_vararg] = ACTIONS(4415), - [anon_sym_noinline] = ACTIONS(4415), - [anon_sym_crossinline] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4417), - [sym__automatic_semicolon] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), - }, - [3671] = { - [aux_sym_user_type_repeat1] = STATE(3293), - [sym__alpha_identifier] = ACTIONS(4162), - [anon_sym_AT] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_DOT] = ACTIONS(6980), - [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_by] = ACTIONS(4162), - [anon_sym_LT] = ACTIONS(4162), - [anon_sym_GT] = ACTIONS(4162), - [anon_sym_where] = 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_value] = 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), - }, - [3672] = { - [sym_type_constraints] = STATE(3811), - [sym_enum_class_body] = STATE(3853), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6983), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - }, - [3673] = { - [sym_class_body] = STATE(3853), - [sym_type_constraints] = STATE(3820), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(6985), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - }, - [3674] = { - [sym_type_constraints] = STATE(3823), - [sym_enum_class_body] = STATE(3831), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(5990), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [3675] = { - [sym_type_constraints] = STATE(3787), - [sym_enum_class_body] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(6987), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - }, - [3676] = { - [aux_sym_type_constraints_repeat1] = STATE(3683), - [sym__alpha_identifier] = ACTIONS(4371), - [anon_sym_AT] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4371), - [anon_sym_as] = ACTIONS(4371), - [anon_sym_EQ] = ACTIONS(4371), - [anon_sym_LBRACE] = ACTIONS(4373), - [anon_sym_RBRACE] = ACTIONS(4373), - [anon_sym_LPAREN] = ACTIONS(4373), - [anon_sym_COMMA] = ACTIONS(6989), - [anon_sym_by] = ACTIONS(4371), - [anon_sym_LT] = ACTIONS(4371), - [anon_sym_GT] = ACTIONS(4371), - [anon_sym_where] = ACTIONS(4371), - [anon_sym_SEMI] = ACTIONS(4373), - [anon_sym_get] = ACTIONS(4371), - [anon_sym_set] = ACTIONS(4371), - [anon_sym_STAR] = ACTIONS(4371), - [sym_label] = ACTIONS(4373), - [anon_sym_in] = ACTIONS(4371), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_QMARK_COLON] = ACTIONS(4373), - [anon_sym_AMP_AMP] = ACTIONS(4373), - [anon_sym_PIPE_PIPE] = ACTIONS(4373), - [anon_sym_else] = ACTIONS(4371), - [anon_sym_COLON_COLON] = ACTIONS(4373), - [anon_sym_PLUS_EQ] = ACTIONS(4373), - [anon_sym_DASH_EQ] = ACTIONS(4373), - [anon_sym_STAR_EQ] = ACTIONS(4373), - [anon_sym_SLASH_EQ] = ACTIONS(4373), - [anon_sym_PERCENT_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4373), - [anon_sym_EQ_EQ] = ACTIONS(4371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4373), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4373), - [anon_sym_BANGin] = ACTIONS(4373), - [anon_sym_is] = ACTIONS(4371), - [anon_sym_BANGis] = ACTIONS(4373), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_SLASH] = ACTIONS(4371), - [anon_sym_PERCENT] = ACTIONS(4371), - [anon_sym_as_QMARK] = ACTIONS(4373), - [anon_sym_PLUS_PLUS] = ACTIONS(4373), - [anon_sym_DASH_DASH] = ACTIONS(4373), - [anon_sym_BANG_BANG] = ACTIONS(4373), - [anon_sym_suspend] = ACTIONS(4371), - [anon_sym_sealed] = ACTIONS(4371), - [anon_sym_annotation] = ACTIONS(4371), - [anon_sym_data] = ACTIONS(4371), - [anon_sym_inner] = ACTIONS(4371), - [anon_sym_value] = ACTIONS(4371), - [anon_sym_override] = ACTIONS(4371), - [anon_sym_lateinit] = ACTIONS(4371), - [anon_sym_public] = ACTIONS(4371), - [anon_sym_private] = ACTIONS(4371), - [anon_sym_internal] = ACTIONS(4371), - [anon_sym_protected] = ACTIONS(4371), - [anon_sym_tailrec] = ACTIONS(4371), - [anon_sym_operator] = ACTIONS(4371), - [anon_sym_infix] = ACTIONS(4371), - [anon_sym_inline] = ACTIONS(4371), - [anon_sym_external] = ACTIONS(4371), - [sym_property_modifier] = ACTIONS(4371), - [anon_sym_abstract] = ACTIONS(4371), - [anon_sym_final] = ACTIONS(4371), - [anon_sym_open] = ACTIONS(4371), - [anon_sym_vararg] = ACTIONS(4371), - [anon_sym_noinline] = ACTIONS(4371), - [anon_sym_crossinline] = ACTIONS(4371), - [anon_sym_expect] = ACTIONS(4371), - [anon_sym_actual] = ACTIONS(4371), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4373), - [sym__automatic_semicolon] = ACTIONS(4373), - [sym_safe_nav] = ACTIONS(4373), - [sym_multiline_comment] = ACTIONS(3), - }, - [3677] = { - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_EQ] = ACTIONS(4627), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_by] = ACTIONS(4625), - [anon_sym_where] = ACTIONS(4625), - [anon_sym_object] = ACTIONS(4625), - [anon_sym_fun] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_get] = ACTIONS(4625), - [anon_sym_set] = ACTIONS(4625), - [anon_sym_this] = ACTIONS(4625), - [anon_sym_super] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4627), - [sym_label] = ACTIONS(4625), - [anon_sym_in] = ACTIONS(4625), - [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_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_PLUS_PLUS] = ACTIONS(4627), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_suspend] = ACTIONS(4625), - [anon_sym_sealed] = ACTIONS(4625), - [anon_sym_annotation] = ACTIONS(4625), - [anon_sym_data] = ACTIONS(4625), - [anon_sym_inner] = ACTIONS(4625), - [anon_sym_value] = ACTIONS(4625), - [anon_sym_override] = ACTIONS(4625), - [anon_sym_lateinit] = ACTIONS(4625), - [anon_sym_public] = ACTIONS(4625), - [anon_sym_private] = ACTIONS(4625), - [anon_sym_internal] = ACTIONS(4625), - [anon_sym_protected] = ACTIONS(4625), - [anon_sym_tailrec] = ACTIONS(4625), - [anon_sym_operator] = ACTIONS(4625), - [anon_sym_infix] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_external] = ACTIONS(4625), - [sym_property_modifier] = ACTIONS(4625), - [anon_sym_abstract] = ACTIONS(4625), - [anon_sym_final] = ACTIONS(4625), - [anon_sym_open] = ACTIONS(4625), - [anon_sym_vararg] = ACTIONS(4625), - [anon_sym_noinline] = ACTIONS(4625), - [anon_sym_crossinline] = ACTIONS(4625), - [anon_sym_expect] = ACTIONS(4625), - [anon_sym_actual] = ACTIONS(4625), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4627), - [anon_sym_continue_AT] = ACTIONS(4627), - [anon_sym_break_AT] = ACTIONS(4627), - [anon_sym_this_AT] = ACTIONS(4627), - [anon_sym_super_AT] = ACTIONS(4627), - [sym_real_literal] = ACTIONS(4627), - [sym_integer_literal] = ACTIONS(4625), - [sym_hex_literal] = ACTIONS(4627), - [sym_bin_literal] = ACTIONS(4627), - [anon_sym_true] = ACTIONS(4625), - [anon_sym_false] = ACTIONS(4625), - [anon_sym_SQUOTE] = ACTIONS(4627), - [sym__backtick_identifier] = ACTIONS(4627), - [sym__automatic_semicolon] = ACTIONS(4627), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4627), - }, - [3678] = { - [sym__alpha_identifier] = ACTIONS(4617), - [anon_sym_AT] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(4619), - [anon_sym_LBRACE] = ACTIONS(4619), - [anon_sym_RBRACE] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_by] = ACTIONS(4617), - [anon_sym_where] = ACTIONS(4617), - [anon_sym_object] = ACTIONS(4617), - [anon_sym_fun] = ACTIONS(4617), - [anon_sym_SEMI] = ACTIONS(4619), - [anon_sym_get] = ACTIONS(4617), - [anon_sym_set] = ACTIONS(4617), - [anon_sym_this] = ACTIONS(4617), - [anon_sym_super] = ACTIONS(4617), - [anon_sym_STAR] = ACTIONS(4619), - [sym_label] = ACTIONS(4617), - [anon_sym_in] = ACTIONS(4617), - [anon_sym_null] = ACTIONS(4617), - [anon_sym_if] = ACTIONS(4617), - [anon_sym_else] = ACTIONS(4617), - [anon_sym_when] = ACTIONS(4617), - [anon_sym_try] = ACTIONS(4617), - [anon_sym_throw] = ACTIONS(4617), - [anon_sym_return] = ACTIONS(4617), - [anon_sym_continue] = ACTIONS(4617), - [anon_sym_break] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(4619), - [anon_sym_BANGin] = ACTIONS(4619), - [anon_sym_is] = ACTIONS(4617), - [anon_sym_BANGis] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4617), - [anon_sym_PLUS_PLUS] = ACTIONS(4619), - [anon_sym_DASH_DASH] = ACTIONS(4619), - [anon_sym_BANG] = ACTIONS(4617), - [anon_sym_suspend] = ACTIONS(4617), - [anon_sym_sealed] = ACTIONS(4617), - [anon_sym_annotation] = ACTIONS(4617), - [anon_sym_data] = ACTIONS(4617), - [anon_sym_inner] = ACTIONS(4617), - [anon_sym_value] = ACTIONS(4617), - [anon_sym_override] = ACTIONS(4617), - [anon_sym_lateinit] = ACTIONS(4617), - [anon_sym_public] = ACTIONS(4617), - [anon_sym_private] = ACTIONS(4617), - [anon_sym_internal] = ACTIONS(4617), - [anon_sym_protected] = ACTIONS(4617), - [anon_sym_tailrec] = ACTIONS(4617), - [anon_sym_operator] = ACTIONS(4617), - [anon_sym_infix] = ACTIONS(4617), - [anon_sym_inline] = ACTIONS(4617), - [anon_sym_external] = ACTIONS(4617), - [sym_property_modifier] = ACTIONS(4617), - [anon_sym_abstract] = ACTIONS(4617), - [anon_sym_final] = ACTIONS(4617), - [anon_sym_open] = ACTIONS(4617), - [anon_sym_vararg] = ACTIONS(4617), - [anon_sym_noinline] = ACTIONS(4617), - [anon_sym_crossinline] = ACTIONS(4617), - [anon_sym_expect] = ACTIONS(4617), - [anon_sym_actual] = ACTIONS(4617), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4619), - [anon_sym_continue_AT] = ACTIONS(4619), - [anon_sym_break_AT] = ACTIONS(4619), - [anon_sym_this_AT] = ACTIONS(4619), - [anon_sym_super_AT] = ACTIONS(4619), - [sym_real_literal] = ACTIONS(4619), - [sym_integer_literal] = ACTIONS(4617), - [sym_hex_literal] = ACTIONS(4619), - [sym_bin_literal] = ACTIONS(4619), - [anon_sym_true] = ACTIONS(4617), - [anon_sym_false] = ACTIONS(4617), - [anon_sym_SQUOTE] = ACTIONS(4619), - [sym__backtick_identifier] = ACTIONS(4619), - [sym__automatic_semicolon] = ACTIONS(4619), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4619), - }, - [3679] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_COLON] = ACTIONS(3990), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_constructor] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_RBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_LT] = ACTIONS(3995), - [anon_sym_where] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_get] = ACTIONS(3990), - [anon_sym_set] = ACTIONS(3990), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3995), - [sym_label] = ACTIONS(3990), - [anon_sym_in] = ACTIONS(3990), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(3995), - [anon_sym_is] = ACTIONS(3990), - [anon_sym_BANGis] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_suspend] = ACTIONS(3990), - [anon_sym_sealed] = ACTIONS(3990), - [anon_sym_annotation] = ACTIONS(3990), - [anon_sym_data] = ACTIONS(3990), - [anon_sym_inner] = ACTIONS(3990), - [anon_sym_value] = ACTIONS(3990), - [anon_sym_override] = ACTIONS(3990), - [anon_sym_lateinit] = ACTIONS(3990), - [anon_sym_public] = ACTIONS(3990), - [anon_sym_private] = ACTIONS(3990), - [anon_sym_internal] = ACTIONS(3990), - [anon_sym_protected] = ACTIONS(3990), - [anon_sym_tailrec] = ACTIONS(3990), - [anon_sym_operator] = ACTIONS(3990), - [anon_sym_infix] = ACTIONS(3990), - [anon_sym_inline] = ACTIONS(3990), - [anon_sym_external] = ACTIONS(3990), - [sym_property_modifier] = ACTIONS(3990), - [anon_sym_abstract] = ACTIONS(3990), - [anon_sym_final] = ACTIONS(3990), - [anon_sym_open] = ACTIONS(3990), - [anon_sym_vararg] = ACTIONS(3990), - [anon_sym_noinline] = ACTIONS(3990), - [anon_sym_crossinline] = ACTIONS(3990), - [anon_sym_expect] = ACTIONS(3990), - [anon_sym_actual] = ACTIONS(3990), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym__automatic_semicolon] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [3680] = { - [sym__alpha_identifier] = ACTIONS(4456), - [anon_sym_AT] = ACTIONS(4458), - [anon_sym_COLON] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_DOT] = ACTIONS(4456), - [anon_sym_as] = ACTIONS(4456), - [anon_sym_EQ] = ACTIONS(4456), - [anon_sym_constructor] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4458), - [anon_sym_RBRACE] = ACTIONS(4458), - [anon_sym_LPAREN] = ACTIONS(4458), - [anon_sym_COMMA] = ACTIONS(4458), - [anon_sym_LT] = ACTIONS(4456), - [anon_sym_GT] = ACTIONS(4456), - [anon_sym_where] = ACTIONS(4456), - [anon_sym_SEMI] = ACTIONS(4458), - [anon_sym_get] = ACTIONS(4456), - [anon_sym_set] = ACTIONS(4456), - [anon_sym_STAR] = ACTIONS(4456), - [sym_label] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4456), - [anon_sym_DOT_DOT] = ACTIONS(4458), - [anon_sym_QMARK_COLON] = ACTIONS(4458), - [anon_sym_AMP_AMP] = ACTIONS(4458), - [anon_sym_PIPE_PIPE] = ACTIONS(4458), - [anon_sym_else] = ACTIONS(4456), - [anon_sym_COLON_COLON] = ACTIONS(4458), - [anon_sym_PLUS_EQ] = ACTIONS(4458), - [anon_sym_DASH_EQ] = ACTIONS(4458), - [anon_sym_STAR_EQ] = ACTIONS(4458), - [anon_sym_SLASH_EQ] = ACTIONS(4458), - [anon_sym_PERCENT_EQ] = ACTIONS(4458), - [anon_sym_BANG_EQ] = ACTIONS(4456), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4458), - [anon_sym_EQ_EQ] = ACTIONS(4456), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4458), - [anon_sym_LT_EQ] = ACTIONS(4458), - [anon_sym_GT_EQ] = ACTIONS(4458), - [anon_sym_BANGin] = ACTIONS(4458), - [anon_sym_is] = ACTIONS(4456), - [anon_sym_BANGis] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4456), - [anon_sym_DASH] = ACTIONS(4456), - [anon_sym_SLASH] = ACTIONS(4456), - [anon_sym_PERCENT] = ACTIONS(4456), - [anon_sym_as_QMARK] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4458), - [anon_sym_DASH_DASH] = ACTIONS(4458), - [anon_sym_BANG_BANG] = ACTIONS(4458), - [anon_sym_suspend] = ACTIONS(4456), - [anon_sym_sealed] = ACTIONS(4456), - [anon_sym_annotation] = ACTIONS(4456), - [anon_sym_data] = ACTIONS(4456), - [anon_sym_inner] = ACTIONS(4456), - [anon_sym_value] = ACTIONS(4456), - [anon_sym_override] = ACTIONS(4456), - [anon_sym_lateinit] = ACTIONS(4456), - [anon_sym_public] = ACTIONS(4456), - [anon_sym_private] = ACTIONS(4456), - [anon_sym_internal] = ACTIONS(4456), - [anon_sym_protected] = ACTIONS(4456), - [anon_sym_tailrec] = ACTIONS(4456), - [anon_sym_operator] = ACTIONS(4456), - [anon_sym_infix] = ACTIONS(4456), - [anon_sym_inline] = ACTIONS(4456), - [anon_sym_external] = ACTIONS(4456), - [sym_property_modifier] = ACTIONS(4456), - [anon_sym_abstract] = ACTIONS(4456), - [anon_sym_final] = ACTIONS(4456), - [anon_sym_open] = ACTIONS(4456), - [anon_sym_vararg] = ACTIONS(4456), - [anon_sym_noinline] = ACTIONS(4456), - [anon_sym_crossinline] = ACTIONS(4456), - [anon_sym_expect] = ACTIONS(4456), - [anon_sym_actual] = ACTIONS(4456), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4458), - [sym__automatic_semicolon] = ACTIONS(4458), - [sym_safe_nav] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(3), - }, - [3681] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4920), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_object] = ACTIONS(4419), - [anon_sym_fun] = ACTIONS(4419), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_this] = ACTIONS(4419), - [anon_sym_super] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4419), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_QMARK_COLON] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_null] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_when] = ACTIONS(4419), - [anon_sym_try] = ACTIONS(4419), - [anon_sym_throw] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4922), - [anon_sym_DASH_EQ] = ACTIONS(4922), - [anon_sym_STAR_EQ] = ACTIONS(4922), - [anon_sym_SLASH_EQ] = ACTIONS(4922), - [anon_sym_PERCENT_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_as_QMARK] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_BANG_BANG] = ACTIONS(4922), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4421), - [anon_sym_continue_AT] = ACTIONS(4421), - [anon_sym_break_AT] = ACTIONS(4421), - [anon_sym_this_AT] = ACTIONS(4421), - [anon_sym_super_AT] = ACTIONS(4421), - [sym_real_literal] = ACTIONS(4421), - [sym_integer_literal] = ACTIONS(4419), - [sym_hex_literal] = ACTIONS(4421), - [sym_bin_literal] = ACTIONS(4421), - [anon_sym_true] = ACTIONS(4419), - [anon_sym_false] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4421), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4922), + [3728] = { + [sym__alpha_identifier] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4373), + [anon_sym_as] = ACTIONS(4373), + [anon_sym_EQ] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4375), + [anon_sym_RBRACE] = ACTIONS(4375), + [anon_sym_LPAREN] = ACTIONS(4375), + [anon_sym_COMMA] = ACTIONS(4375), + [anon_sym_by] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_GT] = ACTIONS(4373), + [anon_sym_where] = ACTIONS(4373), + [anon_sym_SEMI] = ACTIONS(4375), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_STAR] = ACTIONS(4373), + [sym_label] = ACTIONS(4375), + [anon_sym_in] = ACTIONS(4373), + [anon_sym_DOT_DOT] = ACTIONS(4375), + [anon_sym_QMARK_COLON] = ACTIONS(4375), + [anon_sym_AMP_AMP] = ACTIONS(4375), + [anon_sym_PIPE_PIPE] = ACTIONS(4375), + [anon_sym_else] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4375), + [anon_sym_PLUS_EQ] = ACTIONS(4375), + [anon_sym_DASH_EQ] = ACTIONS(4375), + [anon_sym_STAR_EQ] = ACTIONS(4375), + [anon_sym_SLASH_EQ] = ACTIONS(4375), + [anon_sym_PERCENT_EQ] = ACTIONS(4375), + [anon_sym_BANG_EQ] = ACTIONS(4373), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4375), + [anon_sym_EQ_EQ] = ACTIONS(4373), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), + [anon_sym_LT_EQ] = ACTIONS(4375), + [anon_sym_GT_EQ] = ACTIONS(4375), + [anon_sym_BANGin] = ACTIONS(4375), + [anon_sym_is] = ACTIONS(4373), + [anon_sym_BANGis] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_PERCENT] = ACTIONS(4373), + [anon_sym_as_QMARK] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_BANG_BANG] = ACTIONS(4375), + [anon_sym_suspend] = ACTIONS(4373), + [anon_sym_sealed] = ACTIONS(4373), + [anon_sym_annotation] = ACTIONS(4373), + [anon_sym_data] = ACTIONS(4373), + [anon_sym_inner] = ACTIONS(4373), + [anon_sym_value] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_lateinit] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_internal] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_tailrec] = ACTIONS(4373), + [anon_sym_operator] = ACTIONS(4373), + [anon_sym_infix] = ACTIONS(4373), + [anon_sym_inline] = ACTIONS(4373), + [anon_sym_external] = ACTIONS(4373), + [sym_property_modifier] = ACTIONS(4373), + [anon_sym_abstract] = ACTIONS(4373), + [anon_sym_final] = ACTIONS(4373), + [anon_sym_open] = ACTIONS(4373), + [anon_sym_vararg] = ACTIONS(4373), + [anon_sym_noinline] = ACTIONS(4373), + [anon_sym_crossinline] = ACTIONS(4373), + [anon_sym_expect] = ACTIONS(4373), + [anon_sym_actual] = ACTIONS(4373), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4375), + [sym__automatic_semicolon] = ACTIONS(4375), + [sym_safe_nav] = ACTIONS(4375), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4421), }, - [3682] = { - [sym_type_constraints] = STATE(3728), - [sym_enum_class_body] = STATE(3921), - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_EQ] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(5826), - [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(5816), - [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_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_value] = 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), + [3729] = { + [sym_enum_class_body] = STATE(4031), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, - [3683] = { - [aux_sym_type_constraints_repeat1] = STATE(3688), - [sym__alpha_identifier] = ACTIONS(4389), - [anon_sym_AT] = ACTIONS(4391), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_DOT] = ACTIONS(4389), - [anon_sym_as] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4391), - [anon_sym_RBRACE] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(6989), - [anon_sym_by] = ACTIONS(4389), - [anon_sym_LT] = ACTIONS(4389), - [anon_sym_GT] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(4389), - [anon_sym_SEMI] = ACTIONS(4391), - [anon_sym_get] = ACTIONS(4389), - [anon_sym_set] = ACTIONS(4389), - [anon_sym_STAR] = ACTIONS(4389), - [sym_label] = ACTIONS(4391), - [anon_sym_in] = ACTIONS(4389), - [anon_sym_DOT_DOT] = ACTIONS(4391), - [anon_sym_QMARK_COLON] = ACTIONS(4391), - [anon_sym_AMP_AMP] = ACTIONS(4391), - [anon_sym_PIPE_PIPE] = ACTIONS(4391), - [anon_sym_else] = ACTIONS(4389), - [anon_sym_COLON_COLON] = ACTIONS(4391), - [anon_sym_PLUS_EQ] = ACTIONS(4391), - [anon_sym_DASH_EQ] = ACTIONS(4391), - [anon_sym_STAR_EQ] = ACTIONS(4391), - [anon_sym_SLASH_EQ] = ACTIONS(4391), - [anon_sym_PERCENT_EQ] = ACTIONS(4391), - [anon_sym_BANG_EQ] = ACTIONS(4389), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4391), - [anon_sym_EQ_EQ] = ACTIONS(4389), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4391), - [anon_sym_LT_EQ] = ACTIONS(4391), - [anon_sym_GT_EQ] = ACTIONS(4391), - [anon_sym_BANGin] = ACTIONS(4391), - [anon_sym_is] = ACTIONS(4389), - [anon_sym_BANGis] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4389), - [anon_sym_DASH] = ACTIONS(4389), - [anon_sym_SLASH] = ACTIONS(4389), - [anon_sym_PERCENT] = ACTIONS(4389), - [anon_sym_as_QMARK] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), - [anon_sym_BANG_BANG] = ACTIONS(4391), - [anon_sym_suspend] = ACTIONS(4389), - [anon_sym_sealed] = ACTIONS(4389), - [anon_sym_annotation] = ACTIONS(4389), - [anon_sym_data] = ACTIONS(4389), - [anon_sym_inner] = ACTIONS(4389), - [anon_sym_value] = ACTIONS(4389), - [anon_sym_override] = ACTIONS(4389), - [anon_sym_lateinit] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_internal] = ACTIONS(4389), - [anon_sym_protected] = ACTIONS(4389), - [anon_sym_tailrec] = ACTIONS(4389), - [anon_sym_operator] = ACTIONS(4389), - [anon_sym_infix] = ACTIONS(4389), - [anon_sym_inline] = ACTIONS(4389), - [anon_sym_external] = ACTIONS(4389), - [sym_property_modifier] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_final] = ACTIONS(4389), - [anon_sym_open] = ACTIONS(4389), - [anon_sym_vararg] = ACTIONS(4389), - [anon_sym_noinline] = ACTIONS(4389), - [anon_sym_crossinline] = ACTIONS(4389), - [anon_sym_expect] = ACTIONS(4389), - [anon_sym_actual] = ACTIONS(4389), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4391), - [sym__automatic_semicolon] = ACTIONS(4391), - [sym_safe_nav] = ACTIONS(4391), + [3730] = { + [sym__alpha_identifier] = ACTIONS(4676), + [anon_sym_AT] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_DOT] = ACTIONS(4676), + [anon_sym_as] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4678), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_by] = ACTIONS(4676), + [anon_sym_LT] = ACTIONS(4676), + [anon_sym_GT] = ACTIONS(4676), + [anon_sym_where] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_get] = ACTIONS(4676), + [anon_sym_set] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4676), + [sym_label] = ACTIONS(4678), + [anon_sym_in] = ACTIONS(4676), + [anon_sym_DOT_DOT] = ACTIONS(4678), + [anon_sym_QMARK_COLON] = ACTIONS(4678), + [anon_sym_AMP_AMP] = ACTIONS(4678), + [anon_sym_PIPE_PIPE] = ACTIONS(4678), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym_PLUS_EQ] = ACTIONS(4678), + [anon_sym_DASH_EQ] = ACTIONS(4678), + [anon_sym_STAR_EQ] = ACTIONS(4678), + [anon_sym_SLASH_EQ] = ACTIONS(4678), + [anon_sym_PERCENT_EQ] = ACTIONS(4678), + [anon_sym_BANG_EQ] = ACTIONS(4676), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4678), + [anon_sym_EQ_EQ] = ACTIONS(4676), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4678), + [anon_sym_LT_EQ] = ACTIONS(4678), + [anon_sym_GT_EQ] = ACTIONS(4678), + [anon_sym_BANGin] = ACTIONS(4678), + [anon_sym_is] = ACTIONS(4676), + [anon_sym_BANGis] = ACTIONS(4678), + [anon_sym_PLUS] = ACTIONS(4676), + [anon_sym_DASH] = ACTIONS(4676), + [anon_sym_SLASH] = ACTIONS(4676), + [anon_sym_PERCENT] = ACTIONS(4676), + [anon_sym_as_QMARK] = ACTIONS(4678), + [anon_sym_PLUS_PLUS] = ACTIONS(4678), + [anon_sym_DASH_DASH] = ACTIONS(4678), + [anon_sym_BANG_BANG] = ACTIONS(4678), + [anon_sym_suspend] = ACTIONS(4676), + [anon_sym_sealed] = ACTIONS(4676), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_data] = ACTIONS(4676), + [anon_sym_inner] = ACTIONS(4676), + [anon_sym_value] = ACTIONS(4676), + [anon_sym_override] = ACTIONS(4676), + [anon_sym_lateinit] = ACTIONS(4676), + [anon_sym_public] = ACTIONS(4676), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_internal] = ACTIONS(4676), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_tailrec] = ACTIONS(4676), + [anon_sym_operator] = ACTIONS(4676), + [anon_sym_infix] = ACTIONS(4676), + [anon_sym_inline] = ACTIONS(4676), + [anon_sym_external] = ACTIONS(4676), + [sym_property_modifier] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_final] = ACTIONS(4676), + [anon_sym_open] = ACTIONS(4676), + [anon_sym_vararg] = ACTIONS(4676), + [anon_sym_noinline] = ACTIONS(4676), + [anon_sym_crossinline] = ACTIONS(4676), + [anon_sym_expect] = ACTIONS(4676), + [anon_sym_actual] = ACTIONS(4676), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4678), + [sym__automatic_semicolon] = ACTIONS(4678), + [sym_safe_nav] = ACTIONS(4678), [sym_multiline_comment] = ACTIONS(3), }, - [3684] = { - [sym__alpha_identifier] = ACTIONS(4708), - [anon_sym_AT] = ACTIONS(4710), - [anon_sym_LBRACK] = ACTIONS(4710), - [anon_sym_EQ] = ACTIONS(4710), - [anon_sym_LBRACE] = ACTIONS(4710), - [anon_sym_RBRACE] = ACTIONS(4710), - [anon_sym_LPAREN] = ACTIONS(4710), - [anon_sym_by] = ACTIONS(4708), - [anon_sym_where] = ACTIONS(4708), - [anon_sym_object] = ACTIONS(4708), - [anon_sym_fun] = 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(4710), - [sym_label] = ACTIONS(4708), - [anon_sym_in] = ACTIONS(4708), - [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_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_PLUS_PLUS] = ACTIONS(4710), - [anon_sym_DASH_DASH] = ACTIONS(4710), - [anon_sym_BANG] = ACTIONS(4708), - [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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4710), - [anon_sym_super_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_true] = ACTIONS(4708), - [anon_sym_false] = ACTIONS(4708), - [anon_sym_SQUOTE] = ACTIONS(4710), - [sym__backtick_identifier] = ACTIONS(4710), - [sym__automatic_semicolon] = ACTIONS(4710), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4710), - }, - [3685] = { - [sym__alpha_identifier] = ACTIONS(4411), - [anon_sym_AT] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4411), - [anon_sym_LBRACK] = ACTIONS(4413), - [anon_sym_DOT] = ACTIONS(4411), - [anon_sym_as] = ACTIONS(4411), - [anon_sym_EQ] = ACTIONS(4411), - [anon_sym_constructor] = ACTIONS(4411), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_RBRACE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_COMMA] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4411), - [anon_sym_GT] = ACTIONS(4411), - [anon_sym_where] = ACTIONS(4411), - [anon_sym_SEMI] = ACTIONS(4413), - [anon_sym_get] = ACTIONS(4411), - [anon_sym_set] = ACTIONS(4411), - [anon_sym_STAR] = ACTIONS(4411), - [sym_label] = ACTIONS(4413), - [anon_sym_in] = ACTIONS(4411), - [anon_sym_DOT_DOT] = ACTIONS(4413), - [anon_sym_QMARK_COLON] = ACTIONS(4413), - [anon_sym_AMP_AMP] = ACTIONS(4413), - [anon_sym_PIPE_PIPE] = ACTIONS(4413), - [anon_sym_else] = ACTIONS(4411), - [anon_sym_COLON_COLON] = ACTIONS(4413), - [anon_sym_PLUS_EQ] = ACTIONS(4413), - [anon_sym_DASH_EQ] = ACTIONS(4413), - [anon_sym_STAR_EQ] = ACTIONS(4413), - [anon_sym_SLASH_EQ] = ACTIONS(4413), - [anon_sym_PERCENT_EQ] = ACTIONS(4413), - [anon_sym_BANG_EQ] = ACTIONS(4411), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4413), - [anon_sym_EQ_EQ] = ACTIONS(4411), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4413), - [anon_sym_LT_EQ] = ACTIONS(4413), - [anon_sym_GT_EQ] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4413), - [anon_sym_is] = ACTIONS(4411), - [anon_sym_BANGis] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4411), - [anon_sym_DASH] = ACTIONS(4411), - [anon_sym_SLASH] = ACTIONS(4411), - [anon_sym_PERCENT] = ACTIONS(4411), - [anon_sym_as_QMARK] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_BANG_BANG] = ACTIONS(4413), - [anon_sym_suspend] = ACTIONS(4411), - [anon_sym_sealed] = ACTIONS(4411), - [anon_sym_annotation] = ACTIONS(4411), - [anon_sym_data] = ACTIONS(4411), - [anon_sym_inner] = ACTIONS(4411), - [anon_sym_value] = ACTIONS(4411), - [anon_sym_override] = ACTIONS(4411), - [anon_sym_lateinit] = ACTIONS(4411), - [anon_sym_public] = ACTIONS(4411), - [anon_sym_private] = ACTIONS(4411), - [anon_sym_internal] = ACTIONS(4411), - [anon_sym_protected] = ACTIONS(4411), - [anon_sym_tailrec] = ACTIONS(4411), - [anon_sym_operator] = ACTIONS(4411), - [anon_sym_infix] = ACTIONS(4411), - [anon_sym_inline] = ACTIONS(4411), - [anon_sym_external] = ACTIONS(4411), - [sym_property_modifier] = ACTIONS(4411), - [anon_sym_abstract] = ACTIONS(4411), - [anon_sym_final] = ACTIONS(4411), - [anon_sym_open] = ACTIONS(4411), - [anon_sym_vararg] = ACTIONS(4411), - [anon_sym_noinline] = ACTIONS(4411), - [anon_sym_crossinline] = ACTIONS(4411), - [anon_sym_expect] = ACTIONS(4411), - [anon_sym_actual] = ACTIONS(4411), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4413), - [sym__automatic_semicolon] = ACTIONS(4413), - [sym_safe_nav] = ACTIONS(4413), + [3731] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [3686] = { - [aux_sym_user_type_repeat1] = STATE(3686), - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(6991), - [anon_sym_typealias] = ACTIONS(4187), - [anon_sym_class] = ACTIONS(4187), - [anon_sym_interface] = ACTIONS(4187), - [anon_sym_enum] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_val] = ACTIONS(4187), - [anon_sym_var] = ACTIONS(4187), - [anon_sym_object] = ACTIONS(4187), - [anon_sym_fun] = ACTIONS(4187), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_this] = ACTIONS(4187), - [anon_sym_super] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4187), - [anon_sym_for] = ACTIONS(4187), - [anon_sym_while] = ACTIONS(4187), - [anon_sym_do] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4187), - [anon_sym_if] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_try] = ACTIONS(4187), - [anon_sym_throw] = ACTIONS(4187), - [anon_sym_return] = ACTIONS(4187), - [anon_sym_continue] = ACTIONS(4187), - [anon_sym_break] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4189), - [anon_sym_continue_AT] = ACTIONS(4189), - [anon_sym_break_AT] = ACTIONS(4189), - [anon_sym_this_AT] = ACTIONS(4189), - [anon_sym_super_AT] = ACTIONS(4189), - [sym_real_literal] = ACTIONS(4189), - [sym_integer_literal] = ACTIONS(4187), - [sym_hex_literal] = ACTIONS(4189), - [sym_bin_literal] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [anon_sym_SQUOTE] = ACTIONS(4189), - [sym__backtick_identifier] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4189), - }, - [3687] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3692), - [sym__alpha_identifier] = ACTIONS(4621), - [anon_sym_AT] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4621), - [anon_sym_EQ] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(6994), - [anon_sym_RPAREN] = ACTIONS(4623), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4621), - [anon_sym_where] = ACTIONS(4621), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_get] = ACTIONS(4621), - [anon_sym_set] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4621), - [sym_label] = ACTIONS(4623), - [anon_sym_in] = ACTIONS(4621), - [anon_sym_while] = ACTIONS(4621), - [anon_sym_DOT_DOT] = ACTIONS(4623), - [anon_sym_QMARK_COLON] = ACTIONS(4623), - [anon_sym_AMP_AMP] = ACTIONS(4623), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_else] = ACTIONS(4621), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_PLUS_EQ] = ACTIONS(4623), - [anon_sym_DASH_EQ] = ACTIONS(4623), - [anon_sym_STAR_EQ] = ACTIONS(4623), - [anon_sym_SLASH_EQ] = ACTIONS(4623), - [anon_sym_PERCENT_EQ] = ACTIONS(4623), - [anon_sym_BANG_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), - [anon_sym_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4623), - [anon_sym_is] = ACTIONS(4621), - [anon_sym_BANGis] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4621), - [anon_sym_PERCENT] = ACTIONS(4621), - [anon_sym_as_QMARK] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_BANG_BANG] = ACTIONS(4623), - [anon_sym_suspend] = ACTIONS(4621), - [anon_sym_sealed] = ACTIONS(4621), - [anon_sym_annotation] = ACTIONS(4621), - [anon_sym_data] = ACTIONS(4621), - [anon_sym_inner] = ACTIONS(4621), - [anon_sym_value] = ACTIONS(4621), - [anon_sym_override] = ACTIONS(4621), - [anon_sym_lateinit] = ACTIONS(4621), - [anon_sym_public] = ACTIONS(4621), - [anon_sym_private] = ACTIONS(4621), - [anon_sym_internal] = ACTIONS(4621), - [anon_sym_protected] = ACTIONS(4621), - [anon_sym_tailrec] = ACTIONS(4621), - [anon_sym_operator] = ACTIONS(4621), - [anon_sym_infix] = ACTIONS(4621), - [anon_sym_inline] = ACTIONS(4621), - [anon_sym_external] = ACTIONS(4621), - [sym_property_modifier] = ACTIONS(4621), - [anon_sym_abstract] = ACTIONS(4621), - [anon_sym_final] = ACTIONS(4621), - [anon_sym_open] = ACTIONS(4621), - [anon_sym_vararg] = ACTIONS(4621), - [anon_sym_noinline] = ACTIONS(4621), - [anon_sym_crossinline] = ACTIONS(4621), - [anon_sym_expect] = ACTIONS(4621), - [anon_sym_actual] = ACTIONS(4621), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4623), - [sym_safe_nav] = ACTIONS(4623), + [3732] = { + [sym_type_constraints] = STATE(4030), + [sym_function_body] = STATE(3378), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_DASH_GT] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_while] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, - [3688] = { - [aux_sym_type_constraints_repeat1] = STATE(3688), - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(6996), - [anon_sym_by] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4431), - [anon_sym_where] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [sym_label] = ACTIONS(4433), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_QMARK_COLON] = ACTIONS(4433), - [anon_sym_AMP_AMP] = ACTIONS(4433), - [anon_sym_PIPE_PIPE] = ACTIONS(4433), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_PLUS_EQ] = ACTIONS(4433), - [anon_sym_DASH_EQ] = ACTIONS(4433), - [anon_sym_STAR_EQ] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4433), - [anon_sym_PERCENT_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_as_QMARK] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG_BANG] = ACTIONS(4433), - [anon_sym_suspend] = ACTIONS(4431), - [anon_sym_sealed] = ACTIONS(4431), - [anon_sym_annotation] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_override] = ACTIONS(4431), - [anon_sym_lateinit] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4431), - [anon_sym_internal] = ACTIONS(4431), - [anon_sym_protected] = ACTIONS(4431), - [anon_sym_tailrec] = ACTIONS(4431), - [anon_sym_operator] = ACTIONS(4431), - [anon_sym_infix] = ACTIONS(4431), - [anon_sym_inline] = ACTIONS(4431), - [anon_sym_external] = ACTIONS(4431), - [sym_property_modifier] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(4431), - [anon_sym_final] = ACTIONS(4431), - [anon_sym_open] = ACTIONS(4431), - [anon_sym_vararg] = ACTIONS(4431), - [anon_sym_noinline] = ACTIONS(4431), - [anon_sym_crossinline] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4433), - [sym__automatic_semicolon] = ACTIONS(4433), - [sym_safe_nav] = ACTIONS(4433), + [3733] = { + [sym_function_body] = STATE(3378), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_while] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, - [3689] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4122), - [anon_sym_constructor] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_COMMA] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4122), - [anon_sym_GT] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_SEMI] = ACTIONS(4124), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [sym_label] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4124), - [anon_sym_QMARK_COLON] = ACTIONS(4124), - [anon_sym_AMP_AMP] = ACTIONS(4124), - [anon_sym_PIPE_PIPE] = ACTIONS(4124), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4124), - [anon_sym_DASH_EQ] = ACTIONS(4124), - [anon_sym_STAR_EQ] = ACTIONS(4124), - [anon_sym_SLASH_EQ] = ACTIONS(4124), - [anon_sym_PERCENT_EQ] = ACTIONS(4124), - [anon_sym_BANG_EQ] = ACTIONS(4122), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4124), - [anon_sym_EQ_EQ] = ACTIONS(4122), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4124), - [anon_sym_LT_EQ] = ACTIONS(4124), - [anon_sym_GT_EQ] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_SLASH] = ACTIONS(4122), - [anon_sym_PERCENT] = ACTIONS(4122), - [anon_sym_as_QMARK] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG_BANG] = ACTIONS(4124), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_safe_nav] = ACTIONS(4124), + [3734] = { + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = 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_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_value] = 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), }, - [3690] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_RBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6999), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4223), - [anon_sym_DASH_GT] = ACTIONS(4226), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [3735] = { + [sym_class_body] = STATE(3209), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(7017), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_COMMA] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_where] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_fun] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_this] = ACTIONS(4325), + [anon_sym_super] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_when] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4327), + [anon_sym_continue_AT] = ACTIONS(4327), + [anon_sym_break_AT] = ACTIONS(4327), + [anon_sym_this_AT] = ACTIONS(4327), + [anon_sym_super_AT] = ACTIONS(4327), + [sym_real_literal] = ACTIONS(4327), + [sym_integer_literal] = ACTIONS(4325), + [sym_hex_literal] = ACTIONS(4327), + [sym_bin_literal] = ACTIONS(4327), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4327), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4327), }, - [3691] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_RBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7003), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4237), - [anon_sym_DASH_GT] = ACTIONS(4240), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4240), + [3736] = { + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), }, - [3692] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3319), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(6994), - [anon_sym_RPAREN] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4539), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_while] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_PLUS_EQ] = ACTIONS(4541), - [anon_sym_DASH_EQ] = ACTIONS(4541), - [anon_sym_STAR_EQ] = ACTIONS(4541), - [anon_sym_SLASH_EQ] = ACTIONS(4541), - [anon_sym_PERCENT_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), + [3737] = { + [sym_function_body] = STATE(3539), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4196), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_PLUS_EQ] = ACTIONS(4198), + [anon_sym_DASH_EQ] = ACTIONS(4198), + [anon_sym_STAR_EQ] = ACTIONS(4198), + [anon_sym_SLASH_EQ] = ACTIONS(4198), + [anon_sym_PERCENT_EQ] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4196), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), }, - [3693] = { - [sym_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(7007), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_EQ] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_where] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4405), - [sym_label] = ACTIONS(4407), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_PLUS_EQ] = ACTIONS(4407), - [anon_sym_DASH_EQ] = ACTIONS(4407), - [anon_sym_STAR_EQ] = ACTIONS(4407), - [anon_sym_SLASH_EQ] = ACTIONS(4407), - [anon_sym_PERCENT_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4405), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), + [3738] = { + [sym_class_body] = STATE(3923), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), [sym_multiline_comment] = ACTIONS(3), }, - [3694] = { - [sym_type_constraints] = STATE(2986), - [sym_enum_class_body] = STATE(3158), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(7009), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), - }, - [3695] = { - [sym_class_body] = STATE(4030), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(7011), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), + [3739] = { + [sym_class_body] = STATE(3151), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(7019), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_object] = ACTIONS(4353), + [anon_sym_fun] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_this] = ACTIONS(4353), + [anon_sym_super] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4353), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_null] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_try] = ACTIONS(4353), + [anon_sym_throw] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4355), + [anon_sym_continue_AT] = ACTIONS(4355), + [anon_sym_break_AT] = ACTIONS(4355), + [anon_sym_this_AT] = ACTIONS(4355), + [anon_sym_super_AT] = ACTIONS(4355), + [sym_real_literal] = ACTIONS(4355), + [sym_integer_literal] = ACTIONS(4353), + [sym_hex_literal] = ACTIONS(4355), + [sym_bin_literal] = ACTIONS(4355), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4355), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4355), }, - [3696] = { - [sym_type_constraints] = STATE(2999), - [sym_enum_class_body] = STATE(3248), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [3740] = { + [sym_type_constraints] = STATE(4033), + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), - [sym__string_start] = ACTIONS(3298), - }, - [3697] = { - [sym_class_body] = STATE(3254), - [sym_type_constraints] = STATE(3001), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7013), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), - }, - [3698] = { - [sym_type_constraints] = STATE(3008), - [sym_enum_class_body] = STATE(3254), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7015), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), - }, - [3699] = { - [sym_class_body] = STATE(3214), - [sym_type_constraints] = STATE(3014), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [3700] = { - [sym__alpha_identifier] = ACTIONS(4122), - [anon_sym_AT] = ACTIONS(4124), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_constructor] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4124), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_LPAREN] = ACTIONS(4124), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_object] = ACTIONS(4122), - [anon_sym_fun] = ACTIONS(4122), - [anon_sym_get] = ACTIONS(4122), - [anon_sym_set] = ACTIONS(4122), - [anon_sym_this] = ACTIONS(4122), - [anon_sym_super] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4124), - [sym_label] = ACTIONS(4122), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_null] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_else] = ACTIONS(4122), - [anon_sym_when] = ACTIONS(4122), - [anon_sym_try] = ACTIONS(4122), - [anon_sym_throw] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_COLON_COLON] = ACTIONS(4124), - [anon_sym_BANGin] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_BANGis] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_suspend] = ACTIONS(4122), - [anon_sym_sealed] = ACTIONS(4122), - [anon_sym_annotation] = ACTIONS(4122), - [anon_sym_data] = ACTIONS(4122), - [anon_sym_inner] = ACTIONS(4122), - [anon_sym_value] = ACTIONS(4122), - [anon_sym_override] = ACTIONS(4122), - [anon_sym_lateinit] = ACTIONS(4122), - [anon_sym_public] = ACTIONS(4122), - [anon_sym_private] = ACTIONS(4122), - [anon_sym_internal] = ACTIONS(4122), - [anon_sym_protected] = ACTIONS(4122), - [anon_sym_tailrec] = ACTIONS(4122), - [anon_sym_operator] = ACTIONS(4122), - [anon_sym_infix] = ACTIONS(4122), - [anon_sym_inline] = ACTIONS(4122), - [anon_sym_external] = ACTIONS(4122), - [sym_property_modifier] = ACTIONS(4122), - [anon_sym_abstract] = ACTIONS(4122), - [anon_sym_final] = ACTIONS(4122), - [anon_sym_open] = ACTIONS(4122), - [anon_sym_vararg] = ACTIONS(4122), - [anon_sym_noinline] = ACTIONS(4122), - [anon_sym_crossinline] = ACTIONS(4122), - [anon_sym_expect] = ACTIONS(4122), - [anon_sym_actual] = ACTIONS(4122), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4124), - [anon_sym_continue_AT] = ACTIONS(4124), - [anon_sym_break_AT] = ACTIONS(4124), - [anon_sym_this_AT] = ACTIONS(4124), - [anon_sym_super_AT] = ACTIONS(4124), - [sym_real_literal] = ACTIONS(4124), - [sym_integer_literal] = ACTIONS(4122), - [sym_hex_literal] = ACTIONS(4124), - [sym_bin_literal] = ACTIONS(4124), - [anon_sym_true] = ACTIONS(4122), - [anon_sym_false] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4124), - [sym__backtick_identifier] = ACTIONS(4124), - [sym__automatic_semicolon] = ACTIONS(4124), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4124), - }, - [3701] = { - [sym_type_constraints] = STATE(3022), - [sym_enum_class_body] = STATE(3214), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), - }, - [3702] = { - [sym_class_body] = STATE(3205), - [sym_type_constraints] = STATE(3024), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(7017), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), - }, - [3703] = { - [sym_class_body] = STATE(3172), - [sym_type_constraints] = STATE(3037), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, - [3704] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(7019), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), - [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(4223), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(3995), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), }, - [3705] = { + [3741] = { [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_as] = ACTIONS(3990), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(7023), - [anon_sym_LT] = ACTIONS(3990), - [anon_sym_GT] = ACTIONS(3990), + [anon_sym_AT] = ACTIONS(4236), + [anon_sym_LBRACK] = ACTIONS(4236), + [anon_sym_DOT] = ACTIONS(4234), + [anon_sym_typealias] = ACTIONS(4234), + [anon_sym_class] = ACTIONS(4234), + [anon_sym_interface] = ACTIONS(4234), + [anon_sym_enum] = ACTIONS(4234), + [anon_sym_LBRACE] = ACTIONS(4236), + [anon_sym_LPAREN] = ACTIONS(4236), + [anon_sym_val] = ACTIONS(4234), + [anon_sym_var] = ACTIONS(4234), [anon_sym_object] = ACTIONS(4234), [anon_sym_fun] = ACTIONS(4234), [anon_sym_get] = ACTIONS(4234), [anon_sym_set] = ACTIONS(4234), [anon_sym_this] = ACTIONS(4234), [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), + [anon_sym_STAR] = ACTIONS(4236), [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4234), - [anon_sym_DOT_DOT] = ACTIONS(3995), - [anon_sym_QMARK_COLON] = ACTIONS(3995), - [anon_sym_AMP_AMP] = ACTIONS(3995), - [anon_sym_PIPE_PIPE] = ACTIONS(3995), + [anon_sym_for] = ACTIONS(4234), + [anon_sym_while] = ACTIONS(4234), + [anon_sym_do] = ACTIONS(4234), [anon_sym_null] = ACTIONS(4234), [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4234), [anon_sym_when] = ACTIONS(4234), [anon_sym_try] = ACTIONS(4234), [anon_sym_throw] = ACTIONS(4234), [anon_sym_return] = ACTIONS(4234), [anon_sym_continue] = ACTIONS(4234), [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(3990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3995), - [anon_sym_EQ_EQ] = ACTIONS(3990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3995), - [anon_sym_LT_EQ] = ACTIONS(3995), - [anon_sym_GT_EQ] = ACTIONS(3995), - [anon_sym_BANGin] = ACTIONS(4237), - [anon_sym_is] = ACTIONS(4234), - [anon_sym_BANGis] = ACTIONS(4237), + [anon_sym_COLON_COLON] = ACTIONS(4236), [anon_sym_PLUS] = ACTIONS(4234), [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(3990), - [anon_sym_PERCENT] = ACTIONS(3990), - [anon_sym_as_QMARK] = ACTIONS(3995), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(3995), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_BANG] = ACTIONS(4236), + [anon_sym_suspend] = ACTIONS(4234), + [anon_sym_sealed] = ACTIONS(4234), + [anon_sym_annotation] = ACTIONS(4234), [anon_sym_data] = ACTIONS(4234), [anon_sym_inner] = ACTIONS(4234), [anon_sym_value] = ACTIONS(4234), + [anon_sym_override] = ACTIONS(4234), + [anon_sym_lateinit] = ACTIONS(4234), + [anon_sym_public] = ACTIONS(4234), + [anon_sym_private] = ACTIONS(4234), + [anon_sym_internal] = ACTIONS(4234), + [anon_sym_protected] = ACTIONS(4234), + [anon_sym_tailrec] = ACTIONS(4234), + [anon_sym_operator] = ACTIONS(4234), + [anon_sym_infix] = ACTIONS(4234), + [anon_sym_inline] = ACTIONS(4234), + [anon_sym_external] = ACTIONS(4234), + [sym_property_modifier] = ACTIONS(4234), + [anon_sym_abstract] = ACTIONS(4234), + [anon_sym_final] = ACTIONS(4234), + [anon_sym_open] = ACTIONS(4234), + [anon_sym_vararg] = ACTIONS(4234), + [anon_sym_noinline] = ACTIONS(4234), + [anon_sym_crossinline] = ACTIONS(4234), [anon_sym_expect] = ACTIONS(4234), [anon_sym_actual] = ACTIONS(4234), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), + [anon_sym_return_AT] = ACTIONS(4236), + [anon_sym_continue_AT] = ACTIONS(4236), + [anon_sym_break_AT] = ACTIONS(4236), + [anon_sym_this_AT] = ACTIONS(4236), + [anon_sym_super_AT] = ACTIONS(4236), + [sym_real_literal] = ACTIONS(4236), [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), + [sym_hex_literal] = ACTIONS(4236), + [sym_bin_literal] = ACTIONS(4236), [anon_sym_true] = ACTIONS(4234), [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(3995), + [anon_sym_SQUOTE] = ACTIONS(4236), + [sym__backtick_identifier] = ACTIONS(4236), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), + [sym__string_start] = ACTIONS(4236), }, - [3706] = { - [sym__alpha_identifier] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4183), - [anon_sym_COLON] = ACTIONS(6773), - [anon_sym_LBRACK] = ACTIONS(4183), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_as] = ACTIONS(4181), - [anon_sym_EQ] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4183), - [anon_sym_RBRACE] = ACTIONS(4183), - [anon_sym_LPAREN] = ACTIONS(4183), - [anon_sym_COMMA] = ACTIONS(4183), - [anon_sym_by] = ACTIONS(4181), - [anon_sym_LT] = ACTIONS(4181), - [anon_sym_GT] = ACTIONS(4181), - [anon_sym_where] = ACTIONS(4181), - [anon_sym_SEMI] = ACTIONS(4183), - [anon_sym_get] = ACTIONS(4181), - [anon_sym_set] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [sym_label] = ACTIONS(4183), - [anon_sym_in] = ACTIONS(4181), - [anon_sym_DOT_DOT] = ACTIONS(4183), - [anon_sym_QMARK_COLON] = ACTIONS(4183), - [anon_sym_AMP_AMP] = ACTIONS(4183), - [anon_sym_PIPE_PIPE] = ACTIONS(4183), - [anon_sym_else] = ACTIONS(4181), - [anon_sym_COLON_COLON] = ACTIONS(4183), - [anon_sym_PLUS_EQ] = ACTIONS(4183), - [anon_sym_DASH_EQ] = ACTIONS(4183), - [anon_sym_STAR_EQ] = ACTIONS(4183), - [anon_sym_SLASH_EQ] = ACTIONS(4183), - [anon_sym_PERCENT_EQ] = ACTIONS(4183), - [anon_sym_BANG_EQ] = ACTIONS(4181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4183), - [anon_sym_EQ_EQ] = ACTIONS(4181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4183), - [anon_sym_LT_EQ] = ACTIONS(4183), - [anon_sym_GT_EQ] = ACTIONS(4183), - [anon_sym_BANGin] = ACTIONS(4183), - [anon_sym_is] = ACTIONS(4181), - [anon_sym_BANGis] = ACTIONS(4183), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_SLASH] = ACTIONS(4181), - [anon_sym_PERCENT] = ACTIONS(4181), - [anon_sym_as_QMARK] = ACTIONS(4183), - [anon_sym_PLUS_PLUS] = ACTIONS(4183), - [anon_sym_DASH_DASH] = ACTIONS(4183), - [anon_sym_BANG_BANG] = ACTIONS(4183), - [anon_sym_suspend] = ACTIONS(4181), - [anon_sym_sealed] = ACTIONS(4181), - [anon_sym_annotation] = ACTIONS(4181), - [anon_sym_data] = ACTIONS(4181), - [anon_sym_inner] = ACTIONS(4181), - [anon_sym_value] = ACTIONS(4181), - [anon_sym_override] = ACTIONS(4181), - [anon_sym_lateinit] = ACTIONS(4181), - [anon_sym_public] = ACTIONS(4181), - [anon_sym_private] = ACTIONS(4181), - [anon_sym_internal] = ACTIONS(4181), - [anon_sym_protected] = ACTIONS(4181), - [anon_sym_tailrec] = ACTIONS(4181), - [anon_sym_operator] = ACTIONS(4181), - [anon_sym_infix] = ACTIONS(4181), - [anon_sym_inline] = ACTIONS(4181), - [anon_sym_external] = ACTIONS(4181), - [sym_property_modifier] = ACTIONS(4181), - [anon_sym_abstract] = ACTIONS(4181), - [anon_sym_final] = ACTIONS(4181), - [anon_sym_open] = ACTIONS(4181), - [anon_sym_vararg] = ACTIONS(4181), - [anon_sym_noinline] = ACTIONS(4181), - [anon_sym_crossinline] = ACTIONS(4181), - [anon_sym_expect] = ACTIONS(4181), - [anon_sym_actual] = ACTIONS(4181), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4183), - [sym__automatic_semicolon] = ACTIONS(4183), - [sym_safe_nav] = ACTIONS(4183), + [3742] = { + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_while] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), [sym_multiline_comment] = ACTIONS(3), }, - [3707] = { - [sym_class_body] = STATE(3970), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), + [3743] = { + [sym_enum_class_body] = STATE(3841), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), [sym_multiline_comment] = ACTIONS(3), }, - [3708] = { - [sym_function_body] = STATE(3077), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(7027), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), - }, - [3709] = { - [sym__alpha_identifier] = ACTIONS(4633), - [anon_sym_AT] = ACTIONS(4635), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_LBRACK] = ACTIONS(4635), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_as] = ACTIONS(4633), - [anon_sym_EQ] = ACTIONS(4633), - [anon_sym_LBRACE] = ACTIONS(4635), - [anon_sym_RBRACE] = ACTIONS(4635), - [anon_sym_LPAREN] = ACTIONS(4635), - [anon_sym_COMMA] = ACTIONS(4635), - [anon_sym_LT] = ACTIONS(4633), - [anon_sym_GT] = ACTIONS(4633), - [anon_sym_where] = ACTIONS(4633), - [anon_sym_SEMI] = ACTIONS(4635), - [anon_sym_get] = ACTIONS(4633), - [anon_sym_set] = ACTIONS(4633), - [anon_sym_STAR] = ACTIONS(4633), - [sym_label] = ACTIONS(4635), - [anon_sym_in] = ACTIONS(4633), - [anon_sym_DOT_DOT] = ACTIONS(4635), - [anon_sym_QMARK_COLON] = ACTIONS(4635), - [anon_sym_AMP_AMP] = ACTIONS(4635), - [anon_sym_PIPE_PIPE] = ACTIONS(4635), - [anon_sym_else] = ACTIONS(4633), - [anon_sym_COLON_COLON] = ACTIONS(4635), - [anon_sym_PLUS_EQ] = ACTIONS(4635), - [anon_sym_DASH_EQ] = ACTIONS(4635), - [anon_sym_STAR_EQ] = ACTIONS(4635), - [anon_sym_SLASH_EQ] = ACTIONS(4635), - [anon_sym_PERCENT_EQ] = ACTIONS(4635), - [anon_sym_BANG_EQ] = ACTIONS(4633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4635), - [anon_sym_EQ_EQ] = ACTIONS(4633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4635), - [anon_sym_LT_EQ] = ACTIONS(4635), - [anon_sym_GT_EQ] = ACTIONS(4635), - [anon_sym_BANGin] = ACTIONS(4635), - [anon_sym_is] = ACTIONS(4633), - [anon_sym_BANGis] = ACTIONS(4635), - [anon_sym_PLUS] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_SLASH] = ACTIONS(4633), - [anon_sym_PERCENT] = ACTIONS(4633), - [anon_sym_as_QMARK] = ACTIONS(4635), - [anon_sym_PLUS_PLUS] = ACTIONS(4635), - [anon_sym_DASH_DASH] = ACTIONS(4635), - [anon_sym_BANG_BANG] = ACTIONS(4635), - [anon_sym_suspend] = ACTIONS(4633), - [anon_sym_sealed] = ACTIONS(4633), - [anon_sym_annotation] = ACTIONS(4633), - [anon_sym_data] = ACTIONS(4633), - [anon_sym_inner] = ACTIONS(4633), - [anon_sym_value] = ACTIONS(4633), - [anon_sym_override] = ACTIONS(4633), - [anon_sym_lateinit] = ACTIONS(4633), - [anon_sym_public] = ACTIONS(4633), - [anon_sym_private] = ACTIONS(4633), - [anon_sym_internal] = ACTIONS(4633), - [anon_sym_protected] = ACTIONS(4633), - [anon_sym_tailrec] = ACTIONS(4633), - [anon_sym_operator] = ACTIONS(4633), - [anon_sym_infix] = ACTIONS(4633), - [anon_sym_inline] = ACTIONS(4633), - [anon_sym_external] = ACTIONS(4633), - [sym_property_modifier] = ACTIONS(4633), - [anon_sym_abstract] = ACTIONS(4633), - [anon_sym_final] = ACTIONS(4633), - [anon_sym_open] = ACTIONS(4633), - [anon_sym_vararg] = ACTIONS(4633), - [anon_sym_noinline] = ACTIONS(4633), - [anon_sym_crossinline] = ACTIONS(4633), - [anon_sym_expect] = ACTIONS(4633), - [anon_sym_actual] = ACTIONS(4633), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4635), - [sym__automatic_semicolon] = ACTIONS(4635), - [sym_safe_nav] = ACTIONS(4635), + [3744] = { + [sym_function_body] = STATE(3367), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, - [3710] = { - [sym__alpha_identifier] = ACTIONS(4601), - [anon_sym_AT] = ACTIONS(4603), - [anon_sym_COLON] = ACTIONS(4601), - [anon_sym_LBRACK] = ACTIONS(4603), - [anon_sym_DOT] = ACTIONS(4601), - [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_SEMI] = ACTIONS(4603), - [anon_sym_get] = ACTIONS(4601), - [anon_sym_set] = ACTIONS(4601), - [anon_sym_STAR] = ACTIONS(4601), - [sym_label] = ACTIONS(4603), - [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_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_value] = 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__automatic_semicolon] = ACTIONS(4603), - [sym_safe_nav] = ACTIONS(4603), + [3745] = { + [sym_enum_class_body] = STATE(3893), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [3711] = { - [sym_type_constraints] = STATE(3022), - [sym_enum_class_body] = STATE(3214), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [3746] = { + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), }, - [3712] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(7049), - [anon_sym_PIPE_PIPE] = ACTIONS(7051), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(7053), + [3747] = { + [sym__alpha_identifier] = ACTIONS(4656), + [anon_sym_AT] = ACTIONS(4659), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_DOT] = ACTIONS(4656), + [anon_sym_as] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4659), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_COMMA] = ACTIONS(4659), + [anon_sym_by] = ACTIONS(4656), + [anon_sym_LT] = ACTIONS(4656), + [anon_sym_GT] = ACTIONS(4656), + [anon_sym_where] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4659), + [anon_sym_get] = ACTIONS(4656), + [anon_sym_set] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4656), + [sym_label] = ACTIONS(4659), + [anon_sym_in] = ACTIONS(4656), + [anon_sym_DOT_DOT] = ACTIONS(4659), + [anon_sym_QMARK_COLON] = ACTIONS(4659), + [anon_sym_AMP_AMP] = ACTIONS(4659), + [anon_sym_PIPE_PIPE] = ACTIONS(4659), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_COLON_COLON] = ACTIONS(4659), + [anon_sym_PLUS_EQ] = ACTIONS(4659), + [anon_sym_DASH_EQ] = ACTIONS(4659), + [anon_sym_STAR_EQ] = ACTIONS(4659), + [anon_sym_SLASH_EQ] = ACTIONS(4659), + [anon_sym_PERCENT_EQ] = ACTIONS(4659), + [anon_sym_BANG_EQ] = ACTIONS(4656), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4659), + [anon_sym_EQ_EQ] = ACTIONS(4656), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4659), + [anon_sym_LT_EQ] = ACTIONS(4659), + [anon_sym_GT_EQ] = ACTIONS(4659), + [anon_sym_BANGin] = ACTIONS(4659), + [anon_sym_is] = ACTIONS(4656), + [anon_sym_BANGis] = ACTIONS(4659), + [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(4659), + [anon_sym_PLUS_PLUS] = ACTIONS(4659), + [anon_sym_DASH_DASH] = ACTIONS(4659), + [anon_sym_BANG_BANG] = ACTIONS(4659), + [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_value] = 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(4659), + [sym__automatic_semicolon] = ACTIONS(4659), + [sym_safe_nav] = ACTIONS(4659), [sym_multiline_comment] = ACTIONS(3), }, - [3713] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(7053), + [3748] = { + [sym__alpha_identifier] = ACTIONS(4652), + [anon_sym_AT] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_DOT] = ACTIONS(4652), + [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_by] = ACTIONS(4652), + [anon_sym_LT] = ACTIONS(4652), + [anon_sym_GT] = ACTIONS(4652), + [anon_sym_where] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_get] = ACTIONS(4652), + [anon_sym_set] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4652), + [sym_label] = ACTIONS(4654), + [anon_sym_in] = ACTIONS(4652), + [anon_sym_DOT_DOT] = ACTIONS(4654), + [anon_sym_QMARK_COLON] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_PIPE_PIPE] = ACTIONS(4654), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_PLUS_EQ] = ACTIONS(4654), + [anon_sym_DASH_EQ] = ACTIONS(4654), + [anon_sym_STAR_EQ] = ACTIONS(4654), + [anon_sym_SLASH_EQ] = ACTIONS(4654), + [anon_sym_PERCENT_EQ] = ACTIONS(4654), + [anon_sym_BANG_EQ] = ACTIONS(4652), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), + [anon_sym_EQ_EQ] = ACTIONS(4652), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), + [anon_sym_LT_EQ] = ACTIONS(4654), + [anon_sym_GT_EQ] = ACTIONS(4654), + [anon_sym_BANGin] = ACTIONS(4654), + [anon_sym_is] = ACTIONS(4652), + [anon_sym_BANGis] = ACTIONS(4654), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_SLASH] = ACTIONS(4652), + [anon_sym_PERCENT] = ACTIONS(4652), + [anon_sym_as_QMARK] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_BANG_BANG] = ACTIONS(4654), + [anon_sym_suspend] = ACTIONS(4652), + [anon_sym_sealed] = ACTIONS(4652), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_data] = ACTIONS(4652), + [anon_sym_inner] = ACTIONS(4652), + [anon_sym_value] = ACTIONS(4652), + [anon_sym_override] = ACTIONS(4652), + [anon_sym_lateinit] = ACTIONS(4652), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_internal] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_tailrec] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_infix] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym_external] = ACTIONS(4652), + [sym_property_modifier] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_final] = ACTIONS(4652), + [anon_sym_open] = ACTIONS(4652), + [anon_sym_vararg] = ACTIONS(4652), + [anon_sym_noinline] = ACTIONS(4652), + [anon_sym_crossinline] = ACTIONS(4652), + [anon_sym_expect] = ACTIONS(4652), + [anon_sym_actual] = ACTIONS(4652), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4654), + [sym__automatic_semicolon] = ACTIONS(4654), + [sym_safe_nav] = ACTIONS(4654), [sym_multiline_comment] = ACTIONS(3), }, - [3714] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(7053), + [3749] = { + [sym__alpha_identifier] = ACTIONS(4525), + [anon_sym_AT] = ACTIONS(4527), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_LBRACK] = ACTIONS(4527), + [anon_sym_DOT] = ACTIONS(4525), + [anon_sym_as] = ACTIONS(4525), + [anon_sym_EQ] = ACTIONS(4525), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LPAREN] = ACTIONS(4527), + [anon_sym_COMMA] = ACTIONS(4527), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_where] = ACTIONS(4525), + [anon_sym_SEMI] = ACTIONS(4527), + [anon_sym_get] = ACTIONS(4525), + [anon_sym_set] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [sym_label] = ACTIONS(4527), + [anon_sym_in] = ACTIONS(4525), + [anon_sym_DOT_DOT] = ACTIONS(4527), + [anon_sym_QMARK_COLON] = ACTIONS(4527), + [anon_sym_AMP_AMP] = ACTIONS(4527), + [anon_sym_PIPE_PIPE] = ACTIONS(4527), + [anon_sym_else] = ACTIONS(4525), + [anon_sym_COLON_COLON] = ACTIONS(4527), + [anon_sym_PLUS_EQ] = ACTIONS(4527), + [anon_sym_DASH_EQ] = ACTIONS(4527), + [anon_sym_STAR_EQ] = ACTIONS(4527), + [anon_sym_SLASH_EQ] = ACTIONS(4527), + [anon_sym_PERCENT_EQ] = ACTIONS(4527), + [anon_sym_BANG_EQ] = ACTIONS(4525), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4527), + [anon_sym_EQ_EQ] = ACTIONS(4525), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4527), + [anon_sym_LT_EQ] = ACTIONS(4527), + [anon_sym_GT_EQ] = ACTIONS(4527), + [anon_sym_BANGin] = ACTIONS(4527), + [anon_sym_is] = ACTIONS(4525), + [anon_sym_BANGis] = ACTIONS(4527), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_as_QMARK] = ACTIONS(4527), + [anon_sym_PLUS_PLUS] = ACTIONS(4527), + [anon_sym_DASH_DASH] = ACTIONS(4527), + [anon_sym_BANG_BANG] = ACTIONS(4527), + [anon_sym_suspend] = ACTIONS(4525), + [anon_sym_sealed] = ACTIONS(4525), + [anon_sym_annotation] = ACTIONS(4525), + [anon_sym_data] = ACTIONS(4525), + [anon_sym_inner] = ACTIONS(4525), + [anon_sym_value] = ACTIONS(4525), + [anon_sym_override] = ACTIONS(4525), + [anon_sym_lateinit] = ACTIONS(4525), + [anon_sym_public] = ACTIONS(4525), + [anon_sym_private] = ACTIONS(4525), + [anon_sym_internal] = ACTIONS(4525), + [anon_sym_protected] = ACTIONS(4525), + [anon_sym_tailrec] = ACTIONS(4525), + [anon_sym_operator] = ACTIONS(4525), + [anon_sym_infix] = ACTIONS(4525), + [anon_sym_inline] = ACTIONS(4525), + [anon_sym_external] = ACTIONS(4525), + [sym_property_modifier] = ACTIONS(4525), + [anon_sym_abstract] = ACTIONS(4525), + [anon_sym_final] = ACTIONS(4525), + [anon_sym_open] = ACTIONS(4525), + [anon_sym_vararg] = ACTIONS(4525), + [anon_sym_noinline] = ACTIONS(4525), + [anon_sym_crossinline] = ACTIONS(4525), + [anon_sym_expect] = ACTIONS(4525), + [anon_sym_actual] = ACTIONS(4525), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4527), + [sym__automatic_semicolon] = ACTIONS(4527), + [sym_safe_nav] = ACTIONS(4527), [sym_multiline_comment] = ACTIONS(3), }, - [3715] = { - [sym_class_body] = STATE(3214), - [sym_type_constraints] = STATE(3014), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_fun] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_this] = ACTIONS(3276), - [anon_sym_super] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3276), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_null] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_when] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3280), - [anon_sym_continue_AT] = ACTIONS(3280), - [anon_sym_break_AT] = ACTIONS(3280), - [anon_sym_this_AT] = ACTIONS(3280), - [anon_sym_super_AT] = ACTIONS(3280), - [sym_real_literal] = ACTIONS(3280), - [sym_integer_literal] = ACTIONS(3276), - [sym_hex_literal] = ACTIONS(3280), - [sym_bin_literal] = ACTIONS(3280), - [anon_sym_true] = ACTIONS(3276), - [anon_sym_false] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3280), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3280), + [3750] = { + [sym_class_body] = STATE(4025), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), + [sym_multiline_comment] = ACTIONS(3), }, - [3716] = { - [sym_class_body] = STATE(3964), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [3751] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(7021), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [3717] = { - [sym_type_constraints] = STATE(3008), - [sym_enum_class_body] = STATE(3254), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7073), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [3752] = { + [sym_enum_class_body] = STATE(3878), + [sym__alpha_identifier] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4630), + [anon_sym_as] = ACTIONS(4630), + [anon_sym_EQ] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_where] = ACTIONS(4630), + [anon_sym_SEMI] = ACTIONS(4632), + [anon_sym_get] = ACTIONS(4630), + [anon_sym_set] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4630), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_QMARK_COLON] = ACTIONS(4632), + [anon_sym_AMP_AMP] = ACTIONS(4632), + [anon_sym_PIPE_PIPE] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4630), + [anon_sym_COLON_COLON] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4632), + [anon_sym_DASH_EQ] = ACTIONS(4632), + [anon_sym_STAR_EQ] = ACTIONS(4632), + [anon_sym_SLASH_EQ] = ACTIONS(4632), + [anon_sym_PERCENT_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4632), + [anon_sym_BANGin] = ACTIONS(4632), + [anon_sym_is] = ACTIONS(4630), + [anon_sym_BANGis] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_as_QMARK] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4632), + [anon_sym_suspend] = ACTIONS(4630), + [anon_sym_sealed] = ACTIONS(4630), + [anon_sym_annotation] = ACTIONS(4630), + [anon_sym_data] = ACTIONS(4630), + [anon_sym_inner] = ACTIONS(4630), + [anon_sym_value] = ACTIONS(4630), + [anon_sym_override] = ACTIONS(4630), + [anon_sym_lateinit] = ACTIONS(4630), + [anon_sym_public] = ACTIONS(4630), + [anon_sym_private] = ACTIONS(4630), + [anon_sym_internal] = ACTIONS(4630), + [anon_sym_protected] = ACTIONS(4630), + [anon_sym_tailrec] = ACTIONS(4630), + [anon_sym_operator] = ACTIONS(4630), + [anon_sym_infix] = ACTIONS(4630), + [anon_sym_inline] = ACTIONS(4630), + [anon_sym_external] = ACTIONS(4630), + [sym_property_modifier] = ACTIONS(4630), + [anon_sym_abstract] = ACTIONS(4630), + [anon_sym_final] = ACTIONS(4630), + [anon_sym_open] = ACTIONS(4630), + [anon_sym_vararg] = ACTIONS(4630), + [anon_sym_noinline] = ACTIONS(4630), + [anon_sym_crossinline] = ACTIONS(4630), + [anon_sym_expect] = ACTIONS(4630), + [anon_sym_actual] = ACTIONS(4630), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4632), + [sym__automatic_semicolon] = ACTIONS(4632), + [sym_safe_nav] = ACTIONS(4632), + [sym_multiline_comment] = ACTIONS(3), }, - [3718] = { - [sym_class_body] = STATE(3254), - [sym_type_constraints] = STATE(3001), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7075), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4268), - [anon_sym_fun] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_this] = ACTIONS(4268), - [anon_sym_super] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4268), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_try] = ACTIONS(4268), - [anon_sym_throw] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4270), - [anon_sym_continue_AT] = ACTIONS(4270), - [anon_sym_break_AT] = ACTIONS(4270), - [anon_sym_this_AT] = ACTIONS(4270), - [anon_sym_super_AT] = ACTIONS(4270), - [sym_real_literal] = ACTIONS(4270), - [sym_integer_literal] = ACTIONS(4268), - [sym_hex_literal] = ACTIONS(4270), - [sym_bin_literal] = ACTIONS(4270), - [anon_sym_true] = ACTIONS(4268), - [anon_sym_false] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4270), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4270), + [3753] = { + [sym__alpha_identifier] = ACTIONS(4680), + [anon_sym_AT] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_DOT] = ACTIONS(4680), + [anon_sym_as] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_by] = ACTIONS(4680), + [anon_sym_LT] = ACTIONS(4680), + [anon_sym_GT] = ACTIONS(4680), + [anon_sym_where] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_get] = ACTIONS(4680), + [anon_sym_set] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4680), + [sym_label] = ACTIONS(4682), + [anon_sym_in] = ACTIONS(4680), + [anon_sym_DOT_DOT] = ACTIONS(4682), + [anon_sym_QMARK_COLON] = ACTIONS(4682), + [anon_sym_AMP_AMP] = ACTIONS(4682), + [anon_sym_PIPE_PIPE] = ACTIONS(4682), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_PLUS_EQ] = ACTIONS(4682), + [anon_sym_DASH_EQ] = ACTIONS(4682), + [anon_sym_STAR_EQ] = ACTIONS(4682), + [anon_sym_SLASH_EQ] = ACTIONS(4682), + [anon_sym_PERCENT_EQ] = ACTIONS(4682), + [anon_sym_BANG_EQ] = ACTIONS(4680), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4682), + [anon_sym_EQ_EQ] = ACTIONS(4680), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4682), + [anon_sym_LT_EQ] = ACTIONS(4682), + [anon_sym_GT_EQ] = ACTIONS(4682), + [anon_sym_BANGin] = ACTIONS(4682), + [anon_sym_is] = ACTIONS(4680), + [anon_sym_BANGis] = ACTIONS(4682), + [anon_sym_PLUS] = ACTIONS(4680), + [anon_sym_DASH] = ACTIONS(4680), + [anon_sym_SLASH] = ACTIONS(4680), + [anon_sym_PERCENT] = ACTIONS(4680), + [anon_sym_as_QMARK] = ACTIONS(4682), + [anon_sym_PLUS_PLUS] = ACTIONS(4682), + [anon_sym_DASH_DASH] = ACTIONS(4682), + [anon_sym_BANG_BANG] = ACTIONS(4682), + [anon_sym_suspend] = ACTIONS(4680), + [anon_sym_sealed] = ACTIONS(4680), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_data] = ACTIONS(4680), + [anon_sym_inner] = ACTIONS(4680), + [anon_sym_value] = ACTIONS(4680), + [anon_sym_override] = ACTIONS(4680), + [anon_sym_lateinit] = ACTIONS(4680), + [anon_sym_public] = ACTIONS(4680), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_internal] = ACTIONS(4680), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_tailrec] = ACTIONS(4680), + [anon_sym_operator] = ACTIONS(4680), + [anon_sym_infix] = ACTIONS(4680), + [anon_sym_inline] = ACTIONS(4680), + [anon_sym_external] = ACTIONS(4680), + [sym_property_modifier] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_final] = ACTIONS(4680), + [anon_sym_open] = ACTIONS(4680), + [anon_sym_vararg] = ACTIONS(4680), + [anon_sym_noinline] = ACTIONS(4680), + [anon_sym_crossinline] = ACTIONS(4680), + [anon_sym_expect] = ACTIONS(4680), + [anon_sym_actual] = ACTIONS(4680), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4682), + [sym__automatic_semicolon] = ACTIONS(4682), + [sym_safe_nav] = ACTIONS(4682), + [sym_multiline_comment] = ACTIONS(3), }, - [3719] = { - [sym_class_body] = STATE(3202), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_where] = ACTIONS(4405), - [anon_sym_object] = ACTIONS(4405), - [anon_sym_fun] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_this] = ACTIONS(4405), - [anon_sym_super] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4407), - [sym_label] = ACTIONS(4405), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_when] = ACTIONS(4405), - [anon_sym_try] = ACTIONS(4405), - [anon_sym_throw] = ACTIONS(4405), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_continue] = ACTIONS(4405), - [anon_sym_break] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4407), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4405), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4407), - [anon_sym_continue_AT] = ACTIONS(4407), - [anon_sym_break_AT] = ACTIONS(4407), - [anon_sym_this_AT] = ACTIONS(4407), - [anon_sym_super_AT] = ACTIONS(4407), - [sym_real_literal] = ACTIONS(4407), - [sym_integer_literal] = ACTIONS(4405), - [sym_hex_literal] = ACTIONS(4407), - [sym_bin_literal] = ACTIONS(4407), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4407), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4407), + [3754] = { + [sym__alpha_identifier] = ACTIONS(4509), + [anon_sym_AT] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(4509), + [anon_sym_LBRACK] = ACTIONS(4511), + [anon_sym_DOT] = ACTIONS(4509), + [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_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_value] = 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), }, - [3720] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3141), + [3755] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3115), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [3721] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(7053), + [3756] = { + [sym_function_body] = STATE(3885), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(7029), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_PLUS_EQ] = ACTIONS(4240), + [anon_sym_DASH_EQ] = ACTIONS(4240), + [anon_sym_STAR_EQ] = ACTIONS(4240), + [anon_sym_SLASH_EQ] = ACTIONS(4240), + [anon_sym_PERCENT_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), }, - [3722] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(7053), + [3757] = { + [ts_builtin_sym_end] = ACTIONS(1361), + [sym__alpha_identifier] = ACTIONS(7031), + [anon_sym_AT] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_typealias] = ACTIONS(7031), + [anon_sym_class] = ACTIONS(7031), + [anon_sym_interface] = ACTIONS(7031), + [anon_sym_enum] = ACTIONS(7031), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_val] = ACTIONS(7031), + [anon_sym_var] = ACTIONS(7031), + [anon_sym_object] = ACTIONS(7031), + [anon_sym_fun] = ACTIONS(7031), + [anon_sym_get] = ACTIONS(7031), + [anon_sym_set] = ACTIONS(7031), + [anon_sym_this] = ACTIONS(7031), + [anon_sym_super] = ACTIONS(7031), + [anon_sym_STAR] = ACTIONS(1361), + [sym_label] = ACTIONS(7031), + [anon_sym_for] = ACTIONS(7031), + [anon_sym_while] = ACTIONS(7031), + [anon_sym_do] = ACTIONS(7031), + [anon_sym_null] = ACTIONS(7031), + [anon_sym_if] = ACTIONS(7031), + [anon_sym_when] = ACTIONS(7031), + [anon_sym_try] = ACTIONS(7031), + [anon_sym_throw] = ACTIONS(7031), + [anon_sym_return] = ACTIONS(7031), + [anon_sym_continue] = ACTIONS(7031), + [anon_sym_break] = ACTIONS(7031), + [anon_sym_COLON_COLON] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(7031), + [anon_sym_DASH] = ACTIONS(7031), + [anon_sym_PLUS_PLUS] = ACTIONS(1361), + [anon_sym_DASH_DASH] = ACTIONS(1361), + [anon_sym_BANG] = ACTIONS(1361), + [anon_sym_suspend] = ACTIONS(7031), + [anon_sym_sealed] = ACTIONS(7031), + [anon_sym_annotation] = ACTIONS(7031), + [anon_sym_data] = ACTIONS(7031), + [anon_sym_inner] = ACTIONS(7031), + [anon_sym_value] = ACTIONS(7031), + [anon_sym_override] = ACTIONS(7031), + [anon_sym_lateinit] = ACTIONS(7031), + [anon_sym_public] = ACTIONS(7031), + [anon_sym_private] = ACTIONS(7031), + [anon_sym_internal] = ACTIONS(7031), + [anon_sym_protected] = ACTIONS(7031), + [anon_sym_tailrec] = ACTIONS(7031), + [anon_sym_operator] = ACTIONS(7031), + [anon_sym_infix] = ACTIONS(7031), + [anon_sym_inline] = ACTIONS(7031), + [anon_sym_external] = ACTIONS(7031), + [sym_property_modifier] = ACTIONS(7031), + [anon_sym_abstract] = ACTIONS(7031), + [anon_sym_final] = ACTIONS(7031), + [anon_sym_open] = ACTIONS(7031), + [anon_sym_vararg] = ACTIONS(7031), + [anon_sym_noinline] = ACTIONS(7031), + [anon_sym_crossinline] = ACTIONS(7031), + [anon_sym_expect] = ACTIONS(7031), + [anon_sym_actual] = ACTIONS(7031), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(1361), + [anon_sym_continue_AT] = ACTIONS(1361), + [anon_sym_break_AT] = ACTIONS(1361), + [anon_sym_this_AT] = ACTIONS(1361), + [anon_sym_super_AT] = ACTIONS(1361), + [sym_real_literal] = ACTIONS(1361), + [sym_integer_literal] = ACTIONS(7031), + [sym_hex_literal] = ACTIONS(1361), + [sym_bin_literal] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(7031), + [anon_sym_false] = ACTIONS(7031), + [anon_sym_SQUOTE] = ACTIONS(1361), + [sym__backtick_identifier] = ACTIONS(1361), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(1361), + }, + [3758] = { + [sym__alpha_identifier] = ACTIONS(4698), + [anon_sym_AT] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4698), + [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_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_value] = 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), + [anon_sym_AT2] = ACTIONS(7033), + [sym__backtick_identifier] = ACTIONS(4700), + [sym__automatic_semicolon] = ACTIONS(4700), + [sym_safe_nav] = ACTIONS(4700), [sym_multiline_comment] = ACTIONS(3), }, - [3723] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3125), + [3759] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3107), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(7021), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [3724] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3129), + [3760] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3080), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(7049), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(7021), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [3725] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3133), + [3761] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3130), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [3726] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3152), + [3762] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3076), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3154), - [anon_sym_DASH_EQ] = ACTIONS(3154), - [anon_sym_STAR_EQ] = ACTIONS(3154), - [anon_sym_SLASH_EQ] = ACTIONS(3154), - [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [3727] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3193), + [3763] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3137), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(7021), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [anon_sym_DASH_EQ] = ACTIONS(3139), + [anon_sym_STAR_EQ] = ACTIONS(3139), + [anon_sym_SLASH_EQ] = ACTIONS(3139), + [anon_sym_PERCENT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [3728] = { - [sym_enum_class_body] = STATE(3849), - [sym__alpha_identifier] = ACTIONS(4716), - [anon_sym_AT] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4716), - [anon_sym_as] = ACTIONS(4716), - [anon_sym_EQ] = ACTIONS(4716), - [anon_sym_LBRACE] = ACTIONS(5826), - [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_SEMI] = ACTIONS(4718), - [anon_sym_get] = ACTIONS(4716), - [anon_sym_set] = ACTIONS(4716), - [anon_sym_STAR] = ACTIONS(4716), - [sym_label] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4716), - [anon_sym_DOT_DOT] = ACTIONS(4718), - [anon_sym_QMARK_COLON] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_else] = ACTIONS(4716), - [anon_sym_COLON_COLON] = ACTIONS(4718), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_STAR_EQ] = ACTIONS(4718), - [anon_sym_SLASH_EQ] = ACTIONS(4718), - [anon_sym_PERCENT_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_BANGin] = ACTIONS(4718), - [anon_sym_is] = ACTIONS(4716), - [anon_sym_BANGis] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_SLASH] = ACTIONS(4716), - [anon_sym_PERCENT] = ACTIONS(4716), - [anon_sym_as_QMARK] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [anon_sym_BANG_BANG] = ACTIONS(4718), - [anon_sym_suspend] = ACTIONS(4716), - [anon_sym_sealed] = ACTIONS(4716), - [anon_sym_annotation] = ACTIONS(4716), - [anon_sym_data] = ACTIONS(4716), - [anon_sym_inner] = ACTIONS(4716), - [anon_sym_value] = ACTIONS(4716), - [anon_sym_override] = ACTIONS(4716), - [anon_sym_lateinit] = ACTIONS(4716), - [anon_sym_public] = ACTIONS(4716), - [anon_sym_private] = ACTIONS(4716), - [anon_sym_internal] = ACTIONS(4716), - [anon_sym_protected] = ACTIONS(4716), - [anon_sym_tailrec] = ACTIONS(4716), - [anon_sym_operator] = ACTIONS(4716), - [anon_sym_infix] = ACTIONS(4716), - [anon_sym_inline] = ACTIONS(4716), - [anon_sym_external] = ACTIONS(4716), - [sym_property_modifier] = ACTIONS(4716), - [anon_sym_abstract] = ACTIONS(4716), - [anon_sym_final] = ACTIONS(4716), - [anon_sym_open] = ACTIONS(4716), - [anon_sym_vararg] = ACTIONS(4716), - [anon_sym_noinline] = ACTIONS(4716), - [anon_sym_crossinline] = ACTIONS(4716), - [anon_sym_expect] = ACTIONS(4716), - [anon_sym_actual] = ACTIONS(4716), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4718), - [sym__automatic_semicolon] = ACTIONS(4718), - [sym_safe_nav] = ACTIONS(4718), + [3764] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3072), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(7021), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3074), + [anon_sym_DASH_EQ] = ACTIONS(3074), + [anon_sym_STAR_EQ] = ACTIONS(3074), + [anon_sym_SLASH_EQ] = ACTIONS(3074), + [anon_sym_PERCENT_EQ] = ACTIONS(3074), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3074), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [3729] = { - [sym__alpha_identifier] = ACTIONS(4613), - [anon_sym_AT] = ACTIONS(4615), - [anon_sym_COLON] = ACTIONS(4613), - [anon_sym_LBRACK] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4613), - [anon_sym_as] = ACTIONS(4613), - [anon_sym_EQ] = ACTIONS(4613), - [anon_sym_LBRACE] = ACTIONS(4615), - [anon_sym_RBRACE] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(4615), - [anon_sym_COMMA] = ACTIONS(4615), - [anon_sym_LT] = ACTIONS(4613), - [anon_sym_GT] = ACTIONS(4613), - [anon_sym_where] = ACTIONS(4613), - [anon_sym_SEMI] = ACTIONS(4615), - [anon_sym_get] = ACTIONS(4613), - [anon_sym_set] = ACTIONS(4613), - [anon_sym_STAR] = ACTIONS(4613), - [sym_label] = ACTIONS(4615), - [anon_sym_in] = ACTIONS(4613), - [anon_sym_DOT_DOT] = ACTIONS(4615), - [anon_sym_QMARK_COLON] = ACTIONS(4615), - [anon_sym_AMP_AMP] = ACTIONS(4615), - [anon_sym_PIPE_PIPE] = ACTIONS(4615), - [anon_sym_else] = ACTIONS(4613), - [anon_sym_COLON_COLON] = ACTIONS(4615), - [anon_sym_PLUS_EQ] = ACTIONS(4615), - [anon_sym_DASH_EQ] = ACTIONS(4615), - [anon_sym_STAR_EQ] = ACTIONS(4615), - [anon_sym_SLASH_EQ] = ACTIONS(4615), - [anon_sym_PERCENT_EQ] = ACTIONS(4615), - [anon_sym_BANG_EQ] = ACTIONS(4613), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4615), - [anon_sym_EQ_EQ] = ACTIONS(4613), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4615), - [anon_sym_LT_EQ] = ACTIONS(4615), - [anon_sym_GT_EQ] = ACTIONS(4615), - [anon_sym_BANGin] = ACTIONS(4615), - [anon_sym_is] = ACTIONS(4613), - [anon_sym_BANGis] = ACTIONS(4615), - [anon_sym_PLUS] = ACTIONS(4613), - [anon_sym_DASH] = ACTIONS(4613), - [anon_sym_SLASH] = ACTIONS(4613), - [anon_sym_PERCENT] = ACTIONS(4613), - [anon_sym_as_QMARK] = ACTIONS(4615), - [anon_sym_PLUS_PLUS] = ACTIONS(4615), - [anon_sym_DASH_DASH] = ACTIONS(4615), - [anon_sym_BANG_BANG] = ACTIONS(4615), - [anon_sym_suspend] = ACTIONS(4613), - [anon_sym_sealed] = ACTIONS(4613), - [anon_sym_annotation] = ACTIONS(4613), - [anon_sym_data] = ACTIONS(4613), - [anon_sym_inner] = ACTIONS(4613), - [anon_sym_value] = ACTIONS(4613), - [anon_sym_override] = ACTIONS(4613), - [anon_sym_lateinit] = ACTIONS(4613), - [anon_sym_public] = ACTIONS(4613), - [anon_sym_private] = ACTIONS(4613), - [anon_sym_internal] = ACTIONS(4613), - [anon_sym_protected] = ACTIONS(4613), - [anon_sym_tailrec] = ACTIONS(4613), - [anon_sym_operator] = ACTIONS(4613), - [anon_sym_infix] = ACTIONS(4613), - [anon_sym_inline] = ACTIONS(4613), - [anon_sym_external] = ACTIONS(4613), - [sym_property_modifier] = ACTIONS(4613), - [anon_sym_abstract] = ACTIONS(4613), - [anon_sym_final] = ACTIONS(4613), - [anon_sym_open] = ACTIONS(4613), - [anon_sym_vararg] = ACTIONS(4613), - [anon_sym_noinline] = ACTIONS(4613), - [anon_sym_crossinline] = ACTIONS(4613), - [anon_sym_expect] = ACTIONS(4613), - [anon_sym_actual] = ACTIONS(4613), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4615), - [sym__automatic_semicolon] = ACTIONS(4615), - [sym_safe_nav] = ACTIONS(4615), + [3765] = { + [sym__alpha_identifier] = ACTIONS(4706), + [anon_sym_AT] = ACTIONS(4708), + [anon_sym_LBRACK] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_as] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(4706), + [anon_sym_LBRACE] = ACTIONS(4708), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_LPAREN] = ACTIONS(4708), + [anon_sym_COMMA] = ACTIONS(4708), + [anon_sym_by] = ACTIONS(4706), + [anon_sym_LT] = ACTIONS(4706), + [anon_sym_GT] = ACTIONS(4706), + [anon_sym_where] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4708), + [anon_sym_get] = ACTIONS(4706), + [anon_sym_set] = ACTIONS(4706), + [anon_sym_STAR] = ACTIONS(4706), + [sym_label] = ACTIONS(4708), + [anon_sym_in] = ACTIONS(4706), + [anon_sym_DOT_DOT] = ACTIONS(4708), + [anon_sym_QMARK_COLON] = ACTIONS(4708), + [anon_sym_AMP_AMP] = ACTIONS(4708), + [anon_sym_PIPE_PIPE] = ACTIONS(4708), + [anon_sym_else] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4708), + [anon_sym_PLUS_EQ] = ACTIONS(4708), + [anon_sym_DASH_EQ] = ACTIONS(4708), + [anon_sym_STAR_EQ] = ACTIONS(4708), + [anon_sym_SLASH_EQ] = ACTIONS(4708), + [anon_sym_PERCENT_EQ] = ACTIONS(4708), + [anon_sym_BANG_EQ] = ACTIONS(4706), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4708), + [anon_sym_EQ_EQ] = ACTIONS(4706), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4708), + [anon_sym_LT_EQ] = ACTIONS(4708), + [anon_sym_GT_EQ] = ACTIONS(4708), + [anon_sym_BANGin] = ACTIONS(4708), + [anon_sym_is] = ACTIONS(4706), + [anon_sym_BANGis] = ACTIONS(4708), + [anon_sym_PLUS] = ACTIONS(4706), + [anon_sym_DASH] = ACTIONS(4706), + [anon_sym_SLASH] = ACTIONS(4706), + [anon_sym_PERCENT] = ACTIONS(4706), + [anon_sym_as_QMARK] = ACTIONS(4708), + [anon_sym_PLUS_PLUS] = ACTIONS(4708), + [anon_sym_DASH_DASH] = ACTIONS(4708), + [anon_sym_BANG_BANG] = ACTIONS(4708), + [anon_sym_suspend] = ACTIONS(4706), + [anon_sym_sealed] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4706), + [anon_sym_data] = ACTIONS(4706), + [anon_sym_inner] = ACTIONS(4706), + [anon_sym_value] = ACTIONS(4706), + [anon_sym_override] = ACTIONS(4706), + [anon_sym_lateinit] = ACTIONS(4706), + [anon_sym_public] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4706), + [anon_sym_internal] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4706), + [anon_sym_tailrec] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(4706), + [anon_sym_infix] = ACTIONS(4706), + [anon_sym_inline] = ACTIONS(4706), + [anon_sym_external] = ACTIONS(4706), + [sym_property_modifier] = ACTIONS(4706), + [anon_sym_abstract] = ACTIONS(4706), + [anon_sym_final] = ACTIONS(4706), + [anon_sym_open] = ACTIONS(4706), + [anon_sym_vararg] = ACTIONS(4706), + [anon_sym_noinline] = ACTIONS(4706), + [anon_sym_crossinline] = ACTIONS(4706), + [anon_sym_expect] = ACTIONS(4706), + [anon_sym_actual] = ACTIONS(4706), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4708), + [sym__automatic_semicolon] = ACTIONS(4708), + [sym_safe_nav] = ACTIONS(4708), [sym_multiline_comment] = ACTIONS(3), }, - [3730] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(7049), - [anon_sym_PIPE_PIPE] = ACTIONS(7051), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(7053), + [3766] = { + [sym__alpha_identifier] = ACTIONS(4595), + [anon_sym_AT] = ACTIONS(4597), + [anon_sym_COLON] = ACTIONS(4595), + [anon_sym_LBRACK] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_as] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4595), + [anon_sym_LBRACE] = ACTIONS(4597), + [anon_sym_RBRACE] = ACTIONS(4597), + [anon_sym_LPAREN] = ACTIONS(4597), + [anon_sym_COMMA] = ACTIONS(4597), + [anon_sym_LT] = ACTIONS(4595), + [anon_sym_GT] = ACTIONS(4595), + [anon_sym_where] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4597), + [anon_sym_get] = ACTIONS(4595), + [anon_sym_set] = ACTIONS(4595), + [anon_sym_STAR] = ACTIONS(4595), + [sym_label] = ACTIONS(4597), + [anon_sym_in] = ACTIONS(4595), + [anon_sym_DOT_DOT] = ACTIONS(4597), + [anon_sym_QMARK_COLON] = ACTIONS(4597), + [anon_sym_AMP_AMP] = ACTIONS(4597), + [anon_sym_PIPE_PIPE] = ACTIONS(4597), + [anon_sym_else] = ACTIONS(4595), + [anon_sym_COLON_COLON] = ACTIONS(4597), + [anon_sym_PLUS_EQ] = ACTIONS(4597), + [anon_sym_DASH_EQ] = ACTIONS(4597), + [anon_sym_STAR_EQ] = ACTIONS(4597), + [anon_sym_SLASH_EQ] = ACTIONS(4597), + [anon_sym_PERCENT_EQ] = ACTIONS(4597), + [anon_sym_BANG_EQ] = ACTIONS(4595), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4597), + [anon_sym_EQ_EQ] = ACTIONS(4595), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4597), + [anon_sym_LT_EQ] = ACTIONS(4597), + [anon_sym_GT_EQ] = ACTIONS(4597), + [anon_sym_BANGin] = ACTIONS(4597), + [anon_sym_is] = ACTIONS(4595), + [anon_sym_BANGis] = ACTIONS(4597), + [anon_sym_PLUS] = ACTIONS(4595), + [anon_sym_DASH] = ACTIONS(4595), + [anon_sym_SLASH] = ACTIONS(4595), + [anon_sym_PERCENT] = ACTIONS(4595), + [anon_sym_as_QMARK] = ACTIONS(4597), + [anon_sym_PLUS_PLUS] = ACTIONS(4597), + [anon_sym_DASH_DASH] = ACTIONS(4597), + [anon_sym_BANG_BANG] = ACTIONS(4597), + [anon_sym_suspend] = ACTIONS(4595), + [anon_sym_sealed] = ACTIONS(4595), + [anon_sym_annotation] = ACTIONS(4595), + [anon_sym_data] = ACTIONS(4595), + [anon_sym_inner] = ACTIONS(4595), + [anon_sym_value] = ACTIONS(4595), + [anon_sym_override] = ACTIONS(4595), + [anon_sym_lateinit] = ACTIONS(4595), + [anon_sym_public] = ACTIONS(4595), + [anon_sym_private] = ACTIONS(4595), + [anon_sym_internal] = ACTIONS(4595), + [anon_sym_protected] = ACTIONS(4595), + [anon_sym_tailrec] = ACTIONS(4595), + [anon_sym_operator] = ACTIONS(4595), + [anon_sym_infix] = ACTIONS(4595), + [anon_sym_inline] = ACTIONS(4595), + [anon_sym_external] = ACTIONS(4595), + [sym_property_modifier] = ACTIONS(4595), + [anon_sym_abstract] = ACTIONS(4595), + [anon_sym_final] = ACTIONS(4595), + [anon_sym_open] = ACTIONS(4595), + [anon_sym_vararg] = ACTIONS(4595), + [anon_sym_noinline] = ACTIONS(4595), + [anon_sym_crossinline] = ACTIONS(4595), + [anon_sym_expect] = ACTIONS(4595), + [anon_sym_actual] = ACTIONS(4595), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4597), + [sym__automatic_semicolon] = ACTIONS(4597), + [sym_safe_nav] = ACTIONS(4597), [sym_multiline_comment] = ACTIONS(3), }, - [3731] = { - [sym_type_constraints] = STATE(2999), - [sym_enum_class_body] = STATE(3248), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_fun] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_this] = ACTIONS(3294), - [anon_sym_super] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3294), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_null] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_when] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3298), - [anon_sym_continue_AT] = ACTIONS(3298), - [anon_sym_break_AT] = ACTIONS(3298), - [anon_sym_this_AT] = ACTIONS(3298), - [anon_sym_super_AT] = ACTIONS(3298), - [sym_real_literal] = ACTIONS(3298), - [sym_integer_literal] = ACTIONS(3294), - [sym_hex_literal] = ACTIONS(3298), - [sym_bin_literal] = ACTIONS(3298), - [anon_sym_true] = ACTIONS(3294), - [anon_sym_false] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3298), - }, - [3732] = { - [sym_class_body] = STATE(3156), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(7079), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4379), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [3733] = { - [sym__alpha_identifier] = ACTIONS(4549), - [anon_sym_AT] = ACTIONS(4551), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_as] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(4549), - [anon_sym_LBRACE] = ACTIONS(4551), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_COMMA] = ACTIONS(4551), - [anon_sym_by] = ACTIONS(4549), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_where] = ACTIONS(4549), - [anon_sym_SEMI] = ACTIONS(4551), - [anon_sym_get] = ACTIONS(4549), - [anon_sym_set] = ACTIONS(4549), - [anon_sym_STAR] = ACTIONS(4549), - [sym_label] = ACTIONS(4551), - [anon_sym_in] = ACTIONS(4549), - [anon_sym_DOT_DOT] = ACTIONS(4551), - [anon_sym_QMARK_COLON] = ACTIONS(4551), - [anon_sym_AMP_AMP] = ACTIONS(4551), - [anon_sym_PIPE_PIPE] = ACTIONS(4551), - [anon_sym_else] = ACTIONS(4549), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym_PLUS_EQ] = ACTIONS(4551), - [anon_sym_DASH_EQ] = ACTIONS(4551), - [anon_sym_STAR_EQ] = ACTIONS(4551), - [anon_sym_SLASH_EQ] = ACTIONS(4551), - [anon_sym_PERCENT_EQ] = ACTIONS(4551), - [anon_sym_BANG_EQ] = ACTIONS(4549), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4551), - [anon_sym_EQ_EQ] = ACTIONS(4549), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4551), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_BANGin] = ACTIONS(4551), - [anon_sym_is] = ACTIONS(4549), - [anon_sym_BANGis] = ACTIONS(4551), - [anon_sym_PLUS] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_SLASH] = ACTIONS(4549), - [anon_sym_PERCENT] = ACTIONS(4549), - [anon_sym_as_QMARK] = ACTIONS(4551), - [anon_sym_PLUS_PLUS] = ACTIONS(4551), - [anon_sym_DASH_DASH] = ACTIONS(4551), - [anon_sym_BANG_BANG] = ACTIONS(4551), - [anon_sym_suspend] = ACTIONS(4549), - [anon_sym_sealed] = ACTIONS(4549), - [anon_sym_annotation] = ACTIONS(4549), - [anon_sym_data] = ACTIONS(4549), - [anon_sym_inner] = ACTIONS(4549), - [anon_sym_value] = ACTIONS(4549), - [anon_sym_override] = ACTIONS(4549), - [anon_sym_lateinit] = ACTIONS(4549), - [anon_sym_public] = ACTIONS(4549), - [anon_sym_private] = ACTIONS(4549), - [anon_sym_internal] = ACTIONS(4549), - [anon_sym_protected] = ACTIONS(4549), - [anon_sym_tailrec] = ACTIONS(4549), - [anon_sym_operator] = ACTIONS(4549), - [anon_sym_infix] = ACTIONS(4549), - [anon_sym_inline] = ACTIONS(4549), - [anon_sym_external] = ACTIONS(4549), - [sym_property_modifier] = ACTIONS(4549), - [anon_sym_abstract] = ACTIONS(4549), - [anon_sym_final] = ACTIONS(4549), - [anon_sym_open] = ACTIONS(4549), - [anon_sym_vararg] = ACTIONS(4549), - [anon_sym_noinline] = ACTIONS(4549), - [anon_sym_crossinline] = ACTIONS(4549), - [anon_sym_expect] = ACTIONS(4549), - [anon_sym_actual] = ACTIONS(4549), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4551), - [sym__automatic_semicolon] = ACTIONS(4551), - [sym_safe_nav] = ACTIONS(4551), - [sym_multiline_comment] = ACTIONS(3), - }, - [3734] = { - [sym_enum_class_body] = STATE(3853), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), - [sym_multiline_comment] = ACTIONS(3), - }, - [3735] = { - [sym_class_body] = STATE(4035), - [sym__alpha_identifier] = ACTIONS(4668), - [anon_sym_AT] = ACTIONS(4670), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_DOT] = ACTIONS(4668), - [anon_sym_as] = ACTIONS(4668), - [anon_sym_EQ] = ACTIONS(4668), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4670), - [anon_sym_LPAREN] = ACTIONS(4670), - [anon_sym_COMMA] = ACTIONS(4670), - [anon_sym_LT] = ACTIONS(4668), - [anon_sym_GT] = ACTIONS(4668), - [anon_sym_where] = 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_value] = 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), - }, - [3736] = { - [sym__alpha_identifier] = ACTIONS(4589), - [anon_sym_AT] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4591), - [anon_sym_DOT] = ACTIONS(4589), - [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_by] = ACTIONS(4589), - [anon_sym_LT] = ACTIONS(4589), - [anon_sym_GT] = ACTIONS(4589), - [anon_sym_where] = ACTIONS(4589), - [anon_sym_SEMI] = ACTIONS(4591), - [anon_sym_get] = ACTIONS(4589), - [anon_sym_set] = ACTIONS(4589), - [anon_sym_STAR] = ACTIONS(4589), - [sym_label] = ACTIONS(4591), - [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_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_value] = 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(4591), - [sym__automatic_semicolon] = ACTIONS(4591), - [sym_safe_nav] = ACTIONS(4591), - [sym_multiline_comment] = ACTIONS(3), - }, - [3737] = { - [sym__alpha_identifier] = ACTIONS(4431), - [anon_sym_AT] = ACTIONS(4433), - [anon_sym_LBRACK] = ACTIONS(4433), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_as] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_RBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4433), - [anon_sym_COMMA] = ACTIONS(4433), - [anon_sym_by] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4431), - [anon_sym_GT] = ACTIONS(4431), - [anon_sym_where] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4433), - [anon_sym_get] = ACTIONS(4431), - [anon_sym_set] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [sym_label] = ACTIONS(4433), - [anon_sym_in] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4433), - [anon_sym_QMARK_COLON] = ACTIONS(4433), - [anon_sym_AMP_AMP] = ACTIONS(4433), - [anon_sym_PIPE_PIPE] = ACTIONS(4433), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_COLON_COLON] = ACTIONS(4433), - [anon_sym_PLUS_EQ] = ACTIONS(4433), - [anon_sym_DASH_EQ] = ACTIONS(4433), - [anon_sym_STAR_EQ] = ACTIONS(4433), - [anon_sym_SLASH_EQ] = ACTIONS(4433), - [anon_sym_PERCENT_EQ] = ACTIONS(4433), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4433), - [anon_sym_EQ_EQ] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4433), - [anon_sym_LT_EQ] = ACTIONS(4433), - [anon_sym_GT_EQ] = ACTIONS(4433), - [anon_sym_BANGin] = ACTIONS(4433), - [anon_sym_is] = ACTIONS(4431), - [anon_sym_BANGis] = ACTIONS(4433), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_SLASH] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_as_QMARK] = ACTIONS(4433), - [anon_sym_PLUS_PLUS] = ACTIONS(4433), - [anon_sym_DASH_DASH] = ACTIONS(4433), - [anon_sym_BANG_BANG] = ACTIONS(4433), - [anon_sym_suspend] = ACTIONS(4431), - [anon_sym_sealed] = ACTIONS(4431), - [anon_sym_annotation] = ACTIONS(4431), - [anon_sym_data] = ACTIONS(4431), - [anon_sym_inner] = ACTIONS(4431), - [anon_sym_value] = ACTIONS(4431), - [anon_sym_override] = ACTIONS(4431), - [anon_sym_lateinit] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4431), - [anon_sym_internal] = ACTIONS(4431), - [anon_sym_protected] = ACTIONS(4431), - [anon_sym_tailrec] = ACTIONS(4431), - [anon_sym_operator] = ACTIONS(4431), - [anon_sym_infix] = ACTIONS(4431), - [anon_sym_inline] = ACTIONS(4431), - [anon_sym_external] = ACTIONS(4431), - [sym_property_modifier] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(4431), - [anon_sym_final] = ACTIONS(4431), - [anon_sym_open] = ACTIONS(4431), - [anon_sym_vararg] = ACTIONS(4431), - [anon_sym_noinline] = ACTIONS(4431), - [anon_sym_crossinline] = ACTIONS(4431), - [anon_sym_expect] = ACTIONS(4431), - [anon_sym_actual] = ACTIONS(4431), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4433), - [sym__automatic_semicolon] = ACTIONS(4433), - [sym_safe_nav] = ACTIONS(4433), - [sym_multiline_comment] = ACTIONS(3), - }, - [3738] = { - [sym__alpha_identifier] = ACTIONS(4708), - [anon_sym_AT] = ACTIONS(4710), - [anon_sym_LBRACK] = ACTIONS(4710), - [anon_sym_DOT] = ACTIONS(4708), - [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_by] = ACTIONS(4708), - [anon_sym_LT] = ACTIONS(4708), - [anon_sym_GT] = ACTIONS(4708), - [anon_sym_where] = 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_value] = 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), - [sym__backtick_identifier] = ACTIONS(4710), - [sym__automatic_semicolon] = ACTIONS(4710), - [sym_safe_nav] = ACTIONS(4710), - [sym_multiline_comment] = ACTIONS(3), - }, - [3739] = { - [sym_class_body] = STATE(3172), - [sym_type_constraints] = STATE(3037), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_fun] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_this] = ACTIONS(3288), - [anon_sym_super] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3288), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_null] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_when] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3292), - [anon_sym_continue_AT] = ACTIONS(3292), - [anon_sym_break_AT] = ACTIONS(3292), - [anon_sym_this_AT] = ACTIONS(3292), - [anon_sym_super_AT] = ACTIONS(3292), - [sym_real_literal] = ACTIONS(3292), - [sym_integer_literal] = ACTIONS(3288), - [sym_hex_literal] = ACTIONS(3292), - [sym_bin_literal] = ACTIONS(3292), - [anon_sym_true] = ACTIONS(3288), - [anon_sym_false] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3292), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3292), - }, - [3740] = { - [sym_type_constraints] = STATE(4006), - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [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(5512), - [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_value] = 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), - }, - [3741] = { - [sym_enum_class_body] = STATE(3964), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [3742] = { - [sym_class_body] = STATE(3856), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - }, - [3743] = { - [sym__alpha_identifier] = ACTIONS(4720), - [anon_sym_AT] = ACTIONS(4722), - [anon_sym_COLON] = ACTIONS(4720), - [anon_sym_LBRACK] = ACTIONS(4722), - [anon_sym_DOT] = ACTIONS(4720), - [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_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_value] = 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), - }, - [3744] = { - [sym_type_constraints] = STATE(4039), - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_RBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_DASH_GT] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - }, - [3745] = { - [sym__alpha_identifier] = ACTIONS(4309), - [anon_sym_AT] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_typealias] = ACTIONS(4309), - [anon_sym_class] = ACTIONS(4309), - [anon_sym_interface] = ACTIONS(4309), - [anon_sym_enum] = ACTIONS(4309), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_val] = ACTIONS(4309), - [anon_sym_var] = ACTIONS(4309), - [anon_sym_object] = ACTIONS(4309), - [anon_sym_fun] = ACTIONS(4309), - [anon_sym_get] = ACTIONS(4309), - [anon_sym_set] = ACTIONS(4309), - [anon_sym_this] = ACTIONS(4309), - [anon_sym_super] = ACTIONS(4309), - [anon_sym_STAR] = ACTIONS(4311), - [sym_label] = ACTIONS(4309), - [anon_sym_for] = ACTIONS(4309), - [anon_sym_while] = ACTIONS(4309), - [anon_sym_do] = ACTIONS(4309), - [anon_sym_null] = ACTIONS(4309), - [anon_sym_if] = ACTIONS(4309), - [anon_sym_when] = ACTIONS(4309), - [anon_sym_try] = ACTIONS(4309), - [anon_sym_throw] = ACTIONS(4309), - [anon_sym_return] = ACTIONS(4309), - [anon_sym_continue] = ACTIONS(4309), - [anon_sym_break] = ACTIONS(4309), - [anon_sym_COLON_COLON] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4309), - [anon_sym_DASH] = ACTIONS(4309), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_suspend] = ACTIONS(4309), - [anon_sym_sealed] = ACTIONS(4309), - [anon_sym_annotation] = ACTIONS(4309), - [anon_sym_data] = ACTIONS(4309), - [anon_sym_inner] = ACTIONS(4309), - [anon_sym_value] = ACTIONS(4309), - [anon_sym_override] = ACTIONS(4309), - [anon_sym_lateinit] = ACTIONS(4309), - [anon_sym_public] = ACTIONS(4309), - [anon_sym_private] = ACTIONS(4309), - [anon_sym_internal] = ACTIONS(4309), - [anon_sym_protected] = ACTIONS(4309), - [anon_sym_tailrec] = ACTIONS(4309), - [anon_sym_operator] = ACTIONS(4309), - [anon_sym_infix] = ACTIONS(4309), - [anon_sym_inline] = ACTIONS(4309), - [anon_sym_external] = ACTIONS(4309), - [sym_property_modifier] = ACTIONS(4309), - [anon_sym_abstract] = ACTIONS(4309), - [anon_sym_final] = ACTIONS(4309), - [anon_sym_open] = ACTIONS(4309), - [anon_sym_vararg] = ACTIONS(4309), - [anon_sym_noinline] = ACTIONS(4309), - [anon_sym_crossinline] = ACTIONS(4309), - [anon_sym_expect] = ACTIONS(4309), - [anon_sym_actual] = ACTIONS(4309), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4311), - [anon_sym_continue_AT] = ACTIONS(4311), - [anon_sym_break_AT] = ACTIONS(4311), - [anon_sym_this_AT] = ACTIONS(4311), - [anon_sym_super_AT] = ACTIONS(4311), - [sym_real_literal] = ACTIONS(4311), - [sym_integer_literal] = ACTIONS(4309), - [sym_hex_literal] = ACTIONS(4311), - [sym_bin_literal] = ACTIONS(4311), - [anon_sym_true] = ACTIONS(4309), - [anon_sym_false] = ACTIONS(4309), - [anon_sym_SQUOTE] = ACTIONS(4311), - [sym__backtick_identifier] = ACTIONS(4311), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4311), - }, - [3746] = { - [sym__alpha_identifier] = ACTIONS(4724), - [anon_sym_AT] = ACTIONS(4726), - [anon_sym_COLON] = ACTIONS(4724), - [anon_sym_LBRACK] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4724), - [anon_sym_as] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4724), - [anon_sym_LBRACE] = ACTIONS(4726), - [anon_sym_RBRACE] = ACTIONS(4726), - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_COMMA] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4724), - [anon_sym_GT] = ACTIONS(4724), - [anon_sym_where] = ACTIONS(4724), - [anon_sym_SEMI] = ACTIONS(4726), - [anon_sym_get] = ACTIONS(4724), - [anon_sym_set] = ACTIONS(4724), - [anon_sym_STAR] = ACTIONS(4724), - [sym_label] = ACTIONS(4726), - [anon_sym_in] = ACTIONS(4724), - [anon_sym_DOT_DOT] = ACTIONS(4726), - [anon_sym_QMARK_COLON] = ACTIONS(4726), - [anon_sym_AMP_AMP] = ACTIONS(4726), - [anon_sym_PIPE_PIPE] = ACTIONS(4726), - [anon_sym_else] = ACTIONS(4724), - [anon_sym_COLON_COLON] = ACTIONS(4726), - [anon_sym_PLUS_EQ] = ACTIONS(4726), - [anon_sym_DASH_EQ] = ACTIONS(4726), - [anon_sym_STAR_EQ] = ACTIONS(4726), - [anon_sym_SLASH_EQ] = ACTIONS(4726), - [anon_sym_PERCENT_EQ] = ACTIONS(4726), - [anon_sym_BANG_EQ] = ACTIONS(4724), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4726), - [anon_sym_EQ_EQ] = ACTIONS(4724), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4726), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_GT_EQ] = ACTIONS(4726), - [anon_sym_BANGin] = ACTIONS(4726), - [anon_sym_is] = ACTIONS(4724), - [anon_sym_BANGis] = ACTIONS(4726), - [anon_sym_PLUS] = ACTIONS(4724), - [anon_sym_DASH] = ACTIONS(4724), - [anon_sym_SLASH] = ACTIONS(4724), - [anon_sym_PERCENT] = ACTIONS(4724), - [anon_sym_as_QMARK] = ACTIONS(4726), - [anon_sym_PLUS_PLUS] = ACTIONS(4726), - [anon_sym_DASH_DASH] = ACTIONS(4726), - [anon_sym_BANG_BANG] = ACTIONS(4726), - [anon_sym_suspend] = ACTIONS(4724), - [anon_sym_sealed] = ACTIONS(4724), - [anon_sym_annotation] = ACTIONS(4724), - [anon_sym_data] = ACTIONS(4724), - [anon_sym_inner] = ACTIONS(4724), - [anon_sym_value] = ACTIONS(4724), - [anon_sym_override] = ACTIONS(4724), - [anon_sym_lateinit] = ACTIONS(4724), - [anon_sym_public] = ACTIONS(4724), - [anon_sym_private] = ACTIONS(4724), - [anon_sym_internal] = ACTIONS(4724), - [anon_sym_protected] = ACTIONS(4724), - [anon_sym_tailrec] = ACTIONS(4724), - [anon_sym_operator] = ACTIONS(4724), - [anon_sym_infix] = ACTIONS(4724), - [anon_sym_inline] = ACTIONS(4724), - [anon_sym_external] = ACTIONS(4724), - [sym_property_modifier] = ACTIONS(4724), - [anon_sym_abstract] = ACTIONS(4724), - [anon_sym_final] = ACTIONS(4724), - [anon_sym_open] = ACTIONS(4724), - [anon_sym_vararg] = ACTIONS(4724), - [anon_sym_noinline] = ACTIONS(4724), - [anon_sym_crossinline] = ACTIONS(4724), - [anon_sym_expect] = ACTIONS(4724), - [anon_sym_actual] = ACTIONS(4724), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4726), - [sym__automatic_semicolon] = ACTIONS(4726), - [sym_safe_nav] = ACTIONS(4726), - [sym_multiline_comment] = ACTIONS(3), - }, - [3747] = { - [sym_type_constraints] = STATE(4037), - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_RBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [anon_sym_DASH_GT] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - }, - [3748] = { - [sym_type_constraints] = STATE(4034), - [sym_function_body] = STATE(3464), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_RBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [anon_sym_DASH_GT] = ACTIONS(4262), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_while] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), - [sym_multiline_comment] = ACTIONS(3), - }, - [3749] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3776), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4539), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_PLUS_EQ] = ACTIONS(4541), - [anon_sym_DASH_EQ] = ACTIONS(4541), - [anon_sym_STAR_EQ] = ACTIONS(4541), - [anon_sym_SLASH_EQ] = ACTIONS(4541), - [anon_sym_PERCENT_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), - [sym_multiline_comment] = ACTIONS(3), - }, - [3750] = { - [sym_class_body] = STATE(3543), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(7083), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_EQ] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4405), - [sym_label] = ACTIONS(4407), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_PLUS_EQ] = ACTIONS(4407), - [anon_sym_DASH_EQ] = ACTIONS(4407), - [anon_sym_STAR_EQ] = ACTIONS(4407), - [anon_sym_SLASH_EQ] = ACTIONS(4407), - [anon_sym_PERCENT_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4405), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - }, - [3751] = { - [sym_type_constraints] = STATE(2986), - [sym_enum_class_body] = STATE(3158), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4200), - [anon_sym_fun] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_this] = ACTIONS(4200), - [anon_sym_super] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4200), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_null] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_when] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4200), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4202), - [anon_sym_continue_AT] = ACTIONS(4202), - [anon_sym_break_AT] = ACTIONS(4202), - [anon_sym_this_AT] = ACTIONS(4202), - [anon_sym_super_AT] = ACTIONS(4202), - [sym_real_literal] = ACTIONS(4202), - [sym_integer_literal] = ACTIONS(4200), - [sym_hex_literal] = ACTIONS(4202), - [sym_bin_literal] = ACTIONS(4202), - [anon_sym_true] = ACTIONS(4200), - [anon_sym_false] = ACTIONS(4200), - [anon_sym_SQUOTE] = ACTIONS(4202), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4202), - }, - [3752] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3749), - [sym__alpha_identifier] = ACTIONS(4621), - [anon_sym_AT] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4621), - [anon_sym_EQ] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(7081), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4621), - [anon_sym_where] = ACTIONS(4621), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_get] = ACTIONS(4621), - [anon_sym_set] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4621), - [sym_label] = ACTIONS(4623), - [anon_sym_in] = ACTIONS(4621), - [anon_sym_DOT_DOT] = ACTIONS(4623), - [anon_sym_QMARK_COLON] = ACTIONS(4623), - [anon_sym_AMP_AMP] = ACTIONS(4623), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_else] = ACTIONS(4621), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_PLUS_EQ] = ACTIONS(4623), - [anon_sym_DASH_EQ] = ACTIONS(4623), - [anon_sym_STAR_EQ] = ACTIONS(4623), - [anon_sym_SLASH_EQ] = ACTIONS(4623), - [anon_sym_PERCENT_EQ] = ACTIONS(4623), - [anon_sym_BANG_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), - [anon_sym_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4623), - [anon_sym_is] = ACTIONS(4621), - [anon_sym_BANGis] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4621), - [anon_sym_PERCENT] = ACTIONS(4621), - [anon_sym_as_QMARK] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_BANG_BANG] = ACTIONS(4623), - [anon_sym_suspend] = ACTIONS(4621), - [anon_sym_sealed] = ACTIONS(4621), - [anon_sym_annotation] = ACTIONS(4621), - [anon_sym_data] = ACTIONS(4621), - [anon_sym_inner] = ACTIONS(4621), - [anon_sym_value] = ACTIONS(4621), - [anon_sym_override] = ACTIONS(4621), - [anon_sym_lateinit] = ACTIONS(4621), - [anon_sym_public] = ACTIONS(4621), - [anon_sym_private] = ACTIONS(4621), - [anon_sym_internal] = ACTIONS(4621), - [anon_sym_protected] = ACTIONS(4621), - [anon_sym_tailrec] = ACTIONS(4621), - [anon_sym_operator] = ACTIONS(4621), - [anon_sym_infix] = ACTIONS(4621), - [anon_sym_inline] = ACTIONS(4621), - [anon_sym_external] = ACTIONS(4621), - [sym_property_modifier] = ACTIONS(4621), - [anon_sym_abstract] = ACTIONS(4621), - [anon_sym_final] = ACTIONS(4621), - [anon_sym_open] = ACTIONS(4621), - [anon_sym_vararg] = ACTIONS(4621), - [anon_sym_noinline] = ACTIONS(4621), - [anon_sym_crossinline] = ACTIONS(4621), - [anon_sym_expect] = ACTIONS(4621), - [anon_sym_actual] = ACTIONS(4621), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4623), - [sym__automatic_semicolon] = ACTIONS(4623), - [sym_safe_nav] = ACTIONS(4623), - [sym_multiline_comment] = ACTIONS(3), - }, - [3753] = { - [sym_type_constraints] = STATE(4025), - [sym_function_body] = STATE(3458), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_RBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - }, - [3754] = { - [sym_class_body] = STATE(3584), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(7087), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_RPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_while] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - }, - [3755] = { - [sym_class_body] = STATE(4033), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - }, - [3756] = { - [sym__alpha_identifier] = ACTIONS(4652), - [anon_sym_AT] = ACTIONS(4654), - [anon_sym_COLON] = ACTIONS(4652), - [anon_sym_LBRACK] = ACTIONS(4654), - [anon_sym_DOT] = ACTIONS(4652), - [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_SEMI] = ACTIONS(4654), - [anon_sym_get] = ACTIONS(4652), - [anon_sym_set] = ACTIONS(4652), - [anon_sym_STAR] = ACTIONS(4652), - [sym_label] = ACTIONS(4654), - [anon_sym_in] = ACTIONS(4652), - [anon_sym_DOT_DOT] = ACTIONS(4654), - [anon_sym_QMARK_COLON] = ACTIONS(4654), - [anon_sym_AMP_AMP] = ACTIONS(4654), - [anon_sym_PIPE_PIPE] = ACTIONS(4654), - [anon_sym_else] = ACTIONS(4652), - [anon_sym_COLON_COLON] = ACTIONS(4654), - [anon_sym_PLUS_EQ] = ACTIONS(4654), - [anon_sym_DASH_EQ] = ACTIONS(4654), - [anon_sym_STAR_EQ] = ACTIONS(4654), - [anon_sym_SLASH_EQ] = ACTIONS(4654), - [anon_sym_PERCENT_EQ] = ACTIONS(4654), - [anon_sym_BANG_EQ] = ACTIONS(4652), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4654), - [anon_sym_EQ_EQ] = ACTIONS(4652), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4654), - [anon_sym_LT_EQ] = ACTIONS(4654), - [anon_sym_GT_EQ] = ACTIONS(4654), - [anon_sym_BANGin] = ACTIONS(4654), - [anon_sym_is] = ACTIONS(4652), - [anon_sym_BANGis] = ACTIONS(4654), - [anon_sym_PLUS] = ACTIONS(4652), - [anon_sym_DASH] = ACTIONS(4652), - [anon_sym_SLASH] = ACTIONS(4652), - [anon_sym_PERCENT] = ACTIONS(4652), - [anon_sym_as_QMARK] = ACTIONS(4654), - [anon_sym_PLUS_PLUS] = ACTIONS(4654), - [anon_sym_DASH_DASH] = ACTIONS(4654), - [anon_sym_BANG_BANG] = ACTIONS(4654), - [anon_sym_suspend] = ACTIONS(4652), - [anon_sym_sealed] = ACTIONS(4652), - [anon_sym_annotation] = ACTIONS(4652), - [anon_sym_data] = ACTIONS(4652), - [anon_sym_inner] = ACTIONS(4652), - [anon_sym_value] = ACTIONS(4652), - [anon_sym_override] = ACTIONS(4652), - [anon_sym_lateinit] = ACTIONS(4652), - [anon_sym_public] = ACTIONS(4652), - [anon_sym_private] = ACTIONS(4652), - [anon_sym_internal] = ACTIONS(4652), - [anon_sym_protected] = ACTIONS(4652), - [anon_sym_tailrec] = ACTIONS(4652), - [anon_sym_operator] = ACTIONS(4652), - [anon_sym_infix] = ACTIONS(4652), - [anon_sym_inline] = ACTIONS(4652), - [anon_sym_external] = ACTIONS(4652), - [sym_property_modifier] = ACTIONS(4652), - [anon_sym_abstract] = ACTIONS(4652), - [anon_sym_final] = ACTIONS(4652), - [anon_sym_open] = ACTIONS(4652), - [anon_sym_vararg] = ACTIONS(4652), - [anon_sym_noinline] = ACTIONS(4652), - [anon_sym_crossinline] = ACTIONS(4652), - [anon_sym_expect] = ACTIONS(4652), - [anon_sym_actual] = ACTIONS(4652), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4654), - [sym__automatic_semicolon] = ACTIONS(4654), - [sym_safe_nav] = ACTIONS(4654), - [sym_multiline_comment] = ACTIONS(3), - }, - [3757] = { - [sym__alpha_identifier] = ACTIONS(4411), - [anon_sym_AT] = ACTIONS(4413), - [anon_sym_COLON] = ACTIONS(4411), - [anon_sym_LBRACK] = ACTIONS(4413), - [anon_sym_constructor] = ACTIONS(4411), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_RBRACE] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_where] = ACTIONS(4411), - [anon_sym_object] = ACTIONS(4411), - [anon_sym_fun] = ACTIONS(4411), - [anon_sym_get] = ACTIONS(4411), - [anon_sym_set] = ACTIONS(4411), - [anon_sym_this] = ACTIONS(4411), - [anon_sym_super] = ACTIONS(4411), - [anon_sym_STAR] = ACTIONS(4413), - [sym_label] = ACTIONS(4411), - [anon_sym_in] = ACTIONS(4411), - [anon_sym_null] = ACTIONS(4411), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_else] = ACTIONS(4411), - [anon_sym_when] = ACTIONS(4411), - [anon_sym_try] = ACTIONS(4411), - [anon_sym_throw] = ACTIONS(4411), - [anon_sym_return] = ACTIONS(4411), - [anon_sym_continue] = ACTIONS(4411), - [anon_sym_break] = ACTIONS(4411), - [anon_sym_COLON_COLON] = ACTIONS(4413), - [anon_sym_BANGin] = ACTIONS(4413), - [anon_sym_is] = ACTIONS(4411), - [anon_sym_BANGis] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4411), - [anon_sym_DASH] = ACTIONS(4411), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4411), - [anon_sym_suspend] = ACTIONS(4411), - [anon_sym_sealed] = ACTIONS(4411), - [anon_sym_annotation] = ACTIONS(4411), - [anon_sym_data] = ACTIONS(4411), - [anon_sym_inner] = ACTIONS(4411), - [anon_sym_value] = ACTIONS(4411), - [anon_sym_override] = ACTIONS(4411), - [anon_sym_lateinit] = ACTIONS(4411), - [anon_sym_public] = ACTIONS(4411), - [anon_sym_private] = ACTIONS(4411), - [anon_sym_internal] = ACTIONS(4411), - [anon_sym_protected] = ACTIONS(4411), - [anon_sym_tailrec] = ACTIONS(4411), - [anon_sym_operator] = ACTIONS(4411), - [anon_sym_infix] = ACTIONS(4411), - [anon_sym_inline] = ACTIONS(4411), - [anon_sym_external] = ACTIONS(4411), - [sym_property_modifier] = ACTIONS(4411), - [anon_sym_abstract] = ACTIONS(4411), - [anon_sym_final] = ACTIONS(4411), - [anon_sym_open] = ACTIONS(4411), - [anon_sym_vararg] = ACTIONS(4411), - [anon_sym_noinline] = ACTIONS(4411), - [anon_sym_crossinline] = ACTIONS(4411), - [anon_sym_expect] = ACTIONS(4411), - [anon_sym_actual] = ACTIONS(4411), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4413), - [anon_sym_continue_AT] = ACTIONS(4413), - [anon_sym_break_AT] = ACTIONS(4413), - [anon_sym_this_AT] = ACTIONS(4413), - [anon_sym_super_AT] = ACTIONS(4413), - [sym_real_literal] = ACTIONS(4413), - [sym_integer_literal] = ACTIONS(4411), - [sym_hex_literal] = ACTIONS(4413), - [sym_bin_literal] = ACTIONS(4413), - [anon_sym_true] = ACTIONS(4411), - [anon_sym_false] = ACTIONS(4411), - [anon_sym_SQUOTE] = ACTIONS(4413), - [sym__backtick_identifier] = ACTIONS(4413), - [sym__automatic_semicolon] = ACTIONS(4413), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4413), - }, - [3758] = { - [sym__alpha_identifier] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_typealias] = ACTIONS(4256), - [anon_sym_class] = ACTIONS(4256), - [anon_sym_interface] = ACTIONS(4256), - [anon_sym_enum] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4258), - [anon_sym_LPAREN] = ACTIONS(4258), - [anon_sym_val] = ACTIONS(4256), - [anon_sym_var] = ACTIONS(4256), - [anon_sym_object] = ACTIONS(4256), - [anon_sym_fun] = ACTIONS(4256), - [anon_sym_get] = ACTIONS(4256), - [anon_sym_set] = ACTIONS(4256), - [anon_sym_this] = ACTIONS(4256), - [anon_sym_super] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4258), - [sym_label] = ACTIONS(4256), - [anon_sym_for] = ACTIONS(4256), - [anon_sym_while] = ACTIONS(4256), - [anon_sym_do] = ACTIONS(4256), - [anon_sym_null] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_when] = ACTIONS(4256), - [anon_sym_try] = ACTIONS(4256), - [anon_sym_throw] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_COLON_COLON] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4258), - [anon_sym_BANG] = ACTIONS(4258), - [anon_sym_suspend] = ACTIONS(4256), - [anon_sym_sealed] = ACTIONS(4256), - [anon_sym_annotation] = ACTIONS(4256), - [anon_sym_data] = ACTIONS(4256), - [anon_sym_inner] = ACTIONS(4256), - [anon_sym_value] = ACTIONS(4256), - [anon_sym_override] = ACTIONS(4256), - [anon_sym_lateinit] = ACTIONS(4256), - [anon_sym_public] = ACTIONS(4256), - [anon_sym_private] = ACTIONS(4256), - [anon_sym_internal] = ACTIONS(4256), - [anon_sym_protected] = ACTIONS(4256), - [anon_sym_tailrec] = ACTIONS(4256), - [anon_sym_operator] = ACTIONS(4256), - [anon_sym_infix] = ACTIONS(4256), - [anon_sym_inline] = ACTIONS(4256), - [anon_sym_external] = ACTIONS(4256), - [sym_property_modifier] = ACTIONS(4256), - [anon_sym_abstract] = ACTIONS(4256), - [anon_sym_final] = ACTIONS(4256), - [anon_sym_open] = ACTIONS(4256), - [anon_sym_vararg] = ACTIONS(4256), - [anon_sym_noinline] = ACTIONS(4256), - [anon_sym_crossinline] = ACTIONS(4256), - [anon_sym_expect] = ACTIONS(4256), - [anon_sym_actual] = ACTIONS(4256), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4258), - [anon_sym_continue_AT] = ACTIONS(4258), - [anon_sym_break_AT] = ACTIONS(4258), - [anon_sym_this_AT] = ACTIONS(4258), - [anon_sym_super_AT] = ACTIONS(4258), - [sym_real_literal] = ACTIONS(4258), - [sym_integer_literal] = ACTIONS(4256), - [sym_hex_literal] = ACTIONS(4258), - [sym_bin_literal] = ACTIONS(4258), - [anon_sym_true] = ACTIONS(4256), - [anon_sym_false] = ACTIONS(4256), - [anon_sym_SQUOTE] = ACTIONS(4258), - [sym__backtick_identifier] = ACTIONS(4258), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4258), - }, - [3759] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(7049), - [anon_sym_PIPE_PIPE] = ACTIONS(7051), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [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(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [3760] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(7049), - [anon_sym_PIPE_PIPE] = ACTIONS(7051), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [3761] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(7049), - [anon_sym_PIPE_PIPE] = ACTIONS(7051), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [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(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [3762] = { - [sym_enum_class_body] = STATE(3921), - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_EQ] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(5826), - [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_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_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_value] = 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), - }, - [3763] = { - [sym_function_body] = STATE(3454), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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), - }, - [3764] = { - [sym_function_body] = STATE(3458), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - }, - [3765] = { - [sym_function_body] = STATE(3464), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_while] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_PLUS_EQ] = ACTIONS(4262), - [anon_sym_DASH_EQ] = ACTIONS(4262), - [anon_sym_STAR_EQ] = ACTIONS(4262), - [anon_sym_SLASH_EQ] = ACTIONS(4262), - [anon_sym_PERCENT_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), + [3767] = { + [sym__alpha_identifier] = ACTIONS(4662), + [anon_sym_AT] = ACTIONS(4664), + [anon_sym_LBRACK] = ACTIONS(4664), + [anon_sym_DOT] = ACTIONS(4662), + [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_by] = ACTIONS(4662), + [anon_sym_LT] = ACTIONS(4662), + [anon_sym_GT] = ACTIONS(4662), + [anon_sym_where] = 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_value] = 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(4262), - [sym_safe_nav] = ACTIONS(4262), - [sym_multiline_comment] = ACTIONS(3), - }, - [3766] = { - [sym__alpha_identifier] = ACTIONS(4605), - [anon_sym_AT] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4607), - [anon_sym_DOT] = ACTIONS(4605), - [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_by] = ACTIONS(4605), - [anon_sym_LT] = ACTIONS(4605), - [anon_sym_GT] = ACTIONS(4605), - [anon_sym_where] = 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_value] = 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__backtick_identifier] = ACTIONS(4664), + [sym__automatic_semicolon] = ACTIONS(4664), + [sym_safe_nav] = ACTIONS(4664), [sym_multiline_comment] = ACTIONS(3), }, - [3767] = { - [sym__alpha_identifier] = ACTIONS(4305), - [anon_sym_AT] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_typealias] = ACTIONS(4305), - [anon_sym_class] = ACTIONS(4305), - [anon_sym_interface] = ACTIONS(4305), - [anon_sym_enum] = ACTIONS(4305), - [anon_sym_LBRACE] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4307), - [anon_sym_val] = ACTIONS(4305), - [anon_sym_var] = ACTIONS(4305), - [anon_sym_object] = ACTIONS(4305), - [anon_sym_fun] = ACTIONS(4305), - [anon_sym_get] = ACTIONS(4305), - [anon_sym_set] = ACTIONS(4305), - [anon_sym_this] = ACTIONS(4305), - [anon_sym_super] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4307), - [sym_label] = ACTIONS(4305), - [anon_sym_for] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [anon_sym_do] = ACTIONS(4305), - [anon_sym_null] = ACTIONS(4305), - [anon_sym_if] = ACTIONS(4305), - [anon_sym_when] = ACTIONS(4305), - [anon_sym_try] = ACTIONS(4305), - [anon_sym_throw] = ACTIONS(4305), - [anon_sym_return] = ACTIONS(4305), - [anon_sym_continue] = ACTIONS(4305), - [anon_sym_break] = ACTIONS(4305), - [anon_sym_COLON_COLON] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4305), - [anon_sym_DASH] = ACTIONS(4305), - [anon_sym_PLUS_PLUS] = ACTIONS(4307), - [anon_sym_DASH_DASH] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4307), - [anon_sym_suspend] = ACTIONS(4305), - [anon_sym_sealed] = ACTIONS(4305), - [anon_sym_annotation] = ACTIONS(4305), - [anon_sym_data] = ACTIONS(4305), - [anon_sym_inner] = ACTIONS(4305), - [anon_sym_value] = ACTIONS(4305), - [anon_sym_override] = ACTIONS(4305), - [anon_sym_lateinit] = ACTIONS(4305), - [anon_sym_public] = ACTIONS(4305), - [anon_sym_private] = ACTIONS(4305), - [anon_sym_internal] = ACTIONS(4305), - [anon_sym_protected] = ACTIONS(4305), - [anon_sym_tailrec] = ACTIONS(4305), - [anon_sym_operator] = ACTIONS(4305), - [anon_sym_infix] = ACTIONS(4305), - [anon_sym_inline] = ACTIONS(4305), - [anon_sym_external] = ACTIONS(4305), - [sym_property_modifier] = ACTIONS(4305), - [anon_sym_abstract] = ACTIONS(4305), - [anon_sym_final] = ACTIONS(4305), - [anon_sym_open] = ACTIONS(4305), - [anon_sym_vararg] = ACTIONS(4305), - [anon_sym_noinline] = ACTIONS(4305), - [anon_sym_crossinline] = ACTIONS(4305), - [anon_sym_expect] = ACTIONS(4305), - [anon_sym_actual] = ACTIONS(4305), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4307), - [anon_sym_continue_AT] = ACTIONS(4307), - [anon_sym_break_AT] = ACTIONS(4307), - [anon_sym_this_AT] = ACTIONS(4307), - [anon_sym_super_AT] = ACTIONS(4307), - [sym_real_literal] = ACTIONS(4307), - [sym_integer_literal] = ACTIONS(4305), - [sym_hex_literal] = ACTIONS(4307), - [sym_bin_literal] = ACTIONS(4307), - [anon_sym_true] = ACTIONS(4305), - [anon_sym_false] = ACTIONS(4305), - [anon_sym_SQUOTE] = ACTIONS(4307), - [sym__backtick_identifier] = ACTIONS(4307), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4307), - }, [3768] = { - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [sym__alpha_identifier] = ACTIONS(4603), + [anon_sym_AT] = ACTIONS(4605), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_LBRACK] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4603), + [anon_sym_as] = ACTIONS(4603), + [anon_sym_EQ] = ACTIONS(4603), + [anon_sym_LBRACE] = ACTIONS(4605), + [anon_sym_RBRACE] = ACTIONS(4605), + [anon_sym_LPAREN] = ACTIONS(4605), + [anon_sym_COMMA] = ACTIONS(4605), + [anon_sym_LT] = ACTIONS(4603), + [anon_sym_GT] = ACTIONS(4603), + [anon_sym_where] = ACTIONS(4603), + [anon_sym_SEMI] = ACTIONS(4605), + [anon_sym_get] = ACTIONS(4603), + [anon_sym_set] = ACTIONS(4603), + [anon_sym_STAR] = ACTIONS(4603), + [sym_label] = ACTIONS(4605), + [anon_sym_in] = ACTIONS(4603), + [anon_sym_DOT_DOT] = ACTIONS(4605), + [anon_sym_QMARK_COLON] = ACTIONS(4605), + [anon_sym_AMP_AMP] = ACTIONS(4605), + [anon_sym_PIPE_PIPE] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(4603), + [anon_sym_COLON_COLON] = ACTIONS(4605), + [anon_sym_PLUS_EQ] = ACTIONS(4605), + [anon_sym_DASH_EQ] = ACTIONS(4605), + [anon_sym_STAR_EQ] = ACTIONS(4605), + [anon_sym_SLASH_EQ] = ACTIONS(4605), + [anon_sym_PERCENT_EQ] = ACTIONS(4605), + [anon_sym_BANG_EQ] = ACTIONS(4603), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4605), + [anon_sym_EQ_EQ] = ACTIONS(4603), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4605), + [anon_sym_LT_EQ] = ACTIONS(4605), + [anon_sym_GT_EQ] = ACTIONS(4605), + [anon_sym_BANGin] = ACTIONS(4605), + [anon_sym_is] = ACTIONS(4603), + [anon_sym_BANGis] = ACTIONS(4605), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4603), + [anon_sym_SLASH] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_as_QMARK] = ACTIONS(4605), + [anon_sym_PLUS_PLUS] = ACTIONS(4605), + [anon_sym_DASH_DASH] = ACTIONS(4605), + [anon_sym_BANG_BANG] = ACTIONS(4605), + [anon_sym_suspend] = ACTIONS(4603), + [anon_sym_sealed] = ACTIONS(4603), + [anon_sym_annotation] = ACTIONS(4603), + [anon_sym_data] = ACTIONS(4603), + [anon_sym_inner] = ACTIONS(4603), + [anon_sym_value] = ACTIONS(4603), + [anon_sym_override] = ACTIONS(4603), + [anon_sym_lateinit] = ACTIONS(4603), + [anon_sym_public] = ACTIONS(4603), + [anon_sym_private] = ACTIONS(4603), + [anon_sym_internal] = ACTIONS(4603), + [anon_sym_protected] = ACTIONS(4603), + [anon_sym_tailrec] = ACTIONS(4603), + [anon_sym_operator] = ACTIONS(4603), + [anon_sym_infix] = ACTIONS(4603), + [anon_sym_inline] = ACTIONS(4603), + [anon_sym_external] = ACTIONS(4603), + [sym_property_modifier] = ACTIONS(4603), + [anon_sym_abstract] = ACTIONS(4603), + [anon_sym_final] = ACTIONS(4603), + [anon_sym_open] = ACTIONS(4603), + [anon_sym_vararg] = ACTIONS(4603), + [anon_sym_noinline] = ACTIONS(4603), + [anon_sym_crossinline] = ACTIONS(4603), + [anon_sym_expect] = ACTIONS(4603), + [anon_sym_actual] = ACTIONS(4603), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4605), + [sym__automatic_semicolon] = ACTIONS(4605), + [sym_safe_nav] = ACTIONS(4605), [sym_multiline_comment] = ACTIONS(3), }, [3769] = { - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym__alpha_identifier] = ACTIONS(4321), + [anon_sym_AT] = ACTIONS(4323), + [anon_sym_COLON] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4323), + [anon_sym_constructor] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_where] = ACTIONS(4321), + [anon_sym_object] = ACTIONS(4321), + [anon_sym_fun] = ACTIONS(4321), + [anon_sym_get] = ACTIONS(4321), + [anon_sym_set] = ACTIONS(4321), + [anon_sym_this] = ACTIONS(4321), + [anon_sym_super] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [sym_label] = ACTIONS(4321), + [anon_sym_in] = ACTIONS(4321), + [anon_sym_null] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_else] = ACTIONS(4321), + [anon_sym_when] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_BANGin] = ACTIONS(4323), + [anon_sym_is] = ACTIONS(4321), + [anon_sym_BANGis] = ACTIONS(4323), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4321), + [anon_sym_suspend] = ACTIONS(4321), + [anon_sym_sealed] = ACTIONS(4321), + [anon_sym_annotation] = ACTIONS(4321), + [anon_sym_data] = ACTIONS(4321), + [anon_sym_inner] = ACTIONS(4321), + [anon_sym_value] = ACTIONS(4321), + [anon_sym_override] = ACTIONS(4321), + [anon_sym_lateinit] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_internal] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_tailrec] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_infix] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym_external] = ACTIONS(4321), + [sym_property_modifier] = ACTIONS(4321), + [anon_sym_abstract] = ACTIONS(4321), + [anon_sym_final] = ACTIONS(4321), + [anon_sym_open] = ACTIONS(4321), + [anon_sym_vararg] = ACTIONS(4321), + [anon_sym_noinline] = ACTIONS(4321), + [anon_sym_crossinline] = ACTIONS(4321), + [anon_sym_expect] = ACTIONS(4321), + [anon_sym_actual] = ACTIONS(4321), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4323), + [anon_sym_continue_AT] = ACTIONS(4323), + [anon_sym_break_AT] = ACTIONS(4323), + [anon_sym_this_AT] = ACTIONS(4323), + [anon_sym_super_AT] = ACTIONS(4323), + [sym_real_literal] = ACTIONS(4323), + [sym_integer_literal] = ACTIONS(4321), + [sym_hex_literal] = ACTIONS(4323), + [sym_bin_literal] = ACTIONS(4323), + [anon_sym_true] = ACTIONS(4321), + [anon_sym_false] = ACTIONS(4321), + [anon_sym_SQUOTE] = ACTIONS(4323), + [sym__backtick_identifier] = ACTIONS(4323), + [sym__automatic_semicolon] = ACTIONS(4323), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4323), }, [3770] = { - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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_type_constraints] = STATE(3881), + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_RBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_DASH_GT] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, [3771] = { - [sym_class_body] = STATE(3859), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(5812), - [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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), + [sym__alpha_identifier] = ACTIONS(4642), + [anon_sym_AT] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_DOT] = ACTIONS(4642), + [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_by] = ACTIONS(4642), + [anon_sym_LT] = ACTIONS(4642), + [anon_sym_GT] = ACTIONS(4642), + [anon_sym_where] = 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_value] = 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), }, [3772] = { - [sym_function_body] = STATE(3527), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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_type_constraints] = STATE(3860), + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_RBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [anon_sym_DASH_GT] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), [sym_multiline_comment] = ACTIONS(3), }, [3773] = { - [sym__alpha_identifier] = ACTIONS(4609), - [anon_sym_AT] = ACTIONS(4611), - [anon_sym_LBRACK] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4609), - [anon_sym_as] = ACTIONS(4609), - [anon_sym_EQ] = ACTIONS(4609), - [anon_sym_LBRACE] = ACTIONS(4611), - [anon_sym_RBRACE] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(4611), - [anon_sym_COMMA] = ACTIONS(4611), - [anon_sym_by] = ACTIONS(4609), - [anon_sym_LT] = ACTIONS(4609), - [anon_sym_GT] = ACTIONS(4609), - [anon_sym_where] = ACTIONS(4609), - [anon_sym_SEMI] = ACTIONS(4611), - [anon_sym_get] = ACTIONS(4609), - [anon_sym_set] = ACTIONS(4609), - [anon_sym_STAR] = ACTIONS(4609), - [sym_label] = ACTIONS(4611), - [anon_sym_in] = ACTIONS(4609), - [anon_sym_DOT_DOT] = ACTIONS(4611), - [anon_sym_QMARK_COLON] = ACTIONS(4611), - [anon_sym_AMP_AMP] = ACTIONS(4611), - [anon_sym_PIPE_PIPE] = ACTIONS(4611), - [anon_sym_else] = ACTIONS(4609), - [anon_sym_COLON_COLON] = ACTIONS(4611), - [anon_sym_PLUS_EQ] = ACTIONS(4611), - [anon_sym_DASH_EQ] = ACTIONS(4611), - [anon_sym_STAR_EQ] = ACTIONS(4611), - [anon_sym_SLASH_EQ] = ACTIONS(4611), - [anon_sym_PERCENT_EQ] = ACTIONS(4611), - [anon_sym_BANG_EQ] = ACTIONS(4609), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4611), - [anon_sym_EQ_EQ] = ACTIONS(4609), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4611), - [anon_sym_LT_EQ] = ACTIONS(4611), - [anon_sym_GT_EQ] = ACTIONS(4611), - [anon_sym_BANGin] = ACTIONS(4611), - [anon_sym_is] = ACTIONS(4609), - [anon_sym_BANGis] = ACTIONS(4611), - [anon_sym_PLUS] = ACTIONS(4609), - [anon_sym_DASH] = ACTIONS(4609), - [anon_sym_SLASH] = ACTIONS(4609), - [anon_sym_PERCENT] = ACTIONS(4609), - [anon_sym_as_QMARK] = ACTIONS(4611), - [anon_sym_PLUS_PLUS] = ACTIONS(4611), - [anon_sym_DASH_DASH] = ACTIONS(4611), - [anon_sym_BANG_BANG] = ACTIONS(4611), - [anon_sym_suspend] = ACTIONS(4609), - [anon_sym_sealed] = ACTIONS(4609), - [anon_sym_annotation] = ACTIONS(4609), - [anon_sym_data] = ACTIONS(4609), - [anon_sym_inner] = ACTIONS(4609), - [anon_sym_value] = ACTIONS(4609), - [anon_sym_override] = ACTIONS(4609), - [anon_sym_lateinit] = ACTIONS(4609), - [anon_sym_public] = ACTIONS(4609), - [anon_sym_private] = ACTIONS(4609), - [anon_sym_internal] = ACTIONS(4609), - [anon_sym_protected] = ACTIONS(4609), - [anon_sym_tailrec] = ACTIONS(4609), - [anon_sym_operator] = ACTIONS(4609), - [anon_sym_infix] = ACTIONS(4609), - [anon_sym_inline] = ACTIONS(4609), - [anon_sym_external] = ACTIONS(4609), - [sym_property_modifier] = ACTIONS(4609), - [anon_sym_abstract] = ACTIONS(4609), - [anon_sym_final] = ACTIONS(4609), - [anon_sym_open] = ACTIONS(4609), - [anon_sym_vararg] = ACTIONS(4609), - [anon_sym_noinline] = ACTIONS(4609), - [anon_sym_crossinline] = ACTIONS(4609), - [anon_sym_expect] = ACTIONS(4609), - [anon_sym_actual] = ACTIONS(4609), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4611), - [sym__automatic_semicolon] = ACTIONS(4611), - [sym_safe_nav] = ACTIONS(4611), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [3774] = { - [sym__alpha_identifier] = ACTIONS(4629), - [anon_sym_AT] = ACTIONS(4631), - [anon_sym_LBRACK] = ACTIONS(4631), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_as] = ACTIONS(4629), - [anon_sym_EQ] = ACTIONS(4629), - [anon_sym_LBRACE] = ACTIONS(4631), - [anon_sym_RBRACE] = ACTIONS(4631), - [anon_sym_LPAREN] = ACTIONS(4631), - [anon_sym_COMMA] = ACTIONS(4631), - [anon_sym_by] = ACTIONS(4629), - [anon_sym_LT] = ACTIONS(4629), - [anon_sym_GT] = ACTIONS(4629), - [anon_sym_where] = ACTIONS(4629), - [anon_sym_SEMI] = ACTIONS(4631), - [anon_sym_get] = ACTIONS(4629), - [anon_sym_set] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4629), - [sym_label] = ACTIONS(4631), - [anon_sym_in] = ACTIONS(4629), - [anon_sym_DOT_DOT] = ACTIONS(4631), - [anon_sym_QMARK_COLON] = ACTIONS(4631), - [anon_sym_AMP_AMP] = ACTIONS(4631), - [anon_sym_PIPE_PIPE] = ACTIONS(4631), - [anon_sym_else] = ACTIONS(4629), - [anon_sym_COLON_COLON] = ACTIONS(4631), - [anon_sym_PLUS_EQ] = ACTIONS(4631), - [anon_sym_DASH_EQ] = ACTIONS(4631), - [anon_sym_STAR_EQ] = ACTIONS(4631), - [anon_sym_SLASH_EQ] = ACTIONS(4631), - [anon_sym_PERCENT_EQ] = ACTIONS(4631), - [anon_sym_BANG_EQ] = ACTIONS(4629), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4631), - [anon_sym_EQ_EQ] = ACTIONS(4629), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4631), - [anon_sym_LT_EQ] = ACTIONS(4631), - [anon_sym_GT_EQ] = ACTIONS(4631), - [anon_sym_BANGin] = ACTIONS(4631), - [anon_sym_is] = ACTIONS(4629), - [anon_sym_BANGis] = ACTIONS(4631), - [anon_sym_PLUS] = ACTIONS(4629), - [anon_sym_DASH] = ACTIONS(4629), - [anon_sym_SLASH] = ACTIONS(4629), - [anon_sym_PERCENT] = ACTIONS(4629), - [anon_sym_as_QMARK] = ACTIONS(4631), - [anon_sym_PLUS_PLUS] = ACTIONS(4631), - [anon_sym_DASH_DASH] = ACTIONS(4631), - [anon_sym_BANG_BANG] = ACTIONS(4631), - [anon_sym_suspend] = ACTIONS(4629), - [anon_sym_sealed] = ACTIONS(4629), - [anon_sym_annotation] = ACTIONS(4629), - [anon_sym_data] = ACTIONS(4629), - [anon_sym_inner] = ACTIONS(4629), - [anon_sym_value] = ACTIONS(4629), - [anon_sym_override] = ACTIONS(4629), - [anon_sym_lateinit] = ACTIONS(4629), - [anon_sym_public] = ACTIONS(4629), - [anon_sym_private] = ACTIONS(4629), - [anon_sym_internal] = ACTIONS(4629), - [anon_sym_protected] = ACTIONS(4629), - [anon_sym_tailrec] = ACTIONS(4629), - [anon_sym_operator] = ACTIONS(4629), - [anon_sym_infix] = ACTIONS(4629), - [anon_sym_inline] = ACTIONS(4629), - [anon_sym_external] = ACTIONS(4629), - [sym_property_modifier] = ACTIONS(4629), - [anon_sym_abstract] = ACTIONS(4629), - [anon_sym_final] = ACTIONS(4629), - [anon_sym_open] = ACTIONS(4629), - [anon_sym_vararg] = ACTIONS(4629), - [anon_sym_noinline] = ACTIONS(4629), - [anon_sym_crossinline] = ACTIONS(4629), - [anon_sym_expect] = ACTIONS(4629), - [anon_sym_actual] = ACTIONS(4629), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4631), - [sym__automatic_semicolon] = ACTIONS(4631), - [sym_safe_nav] = ACTIONS(4631), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [3775] = { - [sym_class_body] = STATE(3205), - [sym_type_constraints] = STATE(3024), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(7089), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(4299), - [anon_sym_fun] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_this] = ACTIONS(4299), - [anon_sym_super] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4299), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_null] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_when] = ACTIONS(4299), - [anon_sym_try] = ACTIONS(4299), - [anon_sym_throw] = ACTIONS(4299), - [anon_sym_return] = ACTIONS(4299), - [anon_sym_continue] = ACTIONS(4299), - [anon_sym_break] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG] = ACTIONS(4299), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4301), - [anon_sym_continue_AT] = ACTIONS(4301), - [anon_sym_break_AT] = ACTIONS(4301), - [anon_sym_this_AT] = ACTIONS(4301), - [anon_sym_super_AT] = ACTIONS(4301), - [sym_real_literal] = ACTIONS(4301), - [sym_integer_literal] = ACTIONS(4299), - [sym_hex_literal] = ACTIONS(4301), - [sym_bin_literal] = ACTIONS(4301), - [anon_sym_true] = ACTIONS(4299), - [anon_sym_false] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4301), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4301), + [sym__alpha_identifier] = ACTIONS(4583), + [anon_sym_AT] = ACTIONS(4585), + [anon_sym_COLON] = ACTIONS(4583), + [anon_sym_LBRACK] = ACTIONS(4585), + [anon_sym_DOT] = ACTIONS(4583), + [anon_sym_as] = ACTIONS(4583), + [anon_sym_EQ] = ACTIONS(4583), + [anon_sym_LBRACE] = ACTIONS(4585), + [anon_sym_RBRACE] = ACTIONS(4585), + [anon_sym_LPAREN] = ACTIONS(4585), + [anon_sym_COMMA] = ACTIONS(4585), + [anon_sym_LT] = ACTIONS(4583), + [anon_sym_GT] = ACTIONS(4583), + [anon_sym_where] = ACTIONS(4583), + [anon_sym_SEMI] = ACTIONS(4585), + [anon_sym_get] = ACTIONS(4583), + [anon_sym_set] = ACTIONS(4583), + [anon_sym_STAR] = ACTIONS(4583), + [sym_label] = ACTIONS(4585), + [anon_sym_in] = ACTIONS(4583), + [anon_sym_DOT_DOT] = ACTIONS(4585), + [anon_sym_QMARK_COLON] = ACTIONS(4585), + [anon_sym_AMP_AMP] = ACTIONS(4585), + [anon_sym_PIPE_PIPE] = ACTIONS(4585), + [anon_sym_else] = ACTIONS(4583), + [anon_sym_COLON_COLON] = ACTIONS(4585), + [anon_sym_PLUS_EQ] = ACTIONS(4585), + [anon_sym_DASH_EQ] = ACTIONS(4585), + [anon_sym_STAR_EQ] = ACTIONS(4585), + [anon_sym_SLASH_EQ] = ACTIONS(4585), + [anon_sym_PERCENT_EQ] = ACTIONS(4585), + [anon_sym_BANG_EQ] = ACTIONS(4583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4585), + [anon_sym_EQ_EQ] = ACTIONS(4583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4585), + [anon_sym_LT_EQ] = ACTIONS(4585), + [anon_sym_GT_EQ] = ACTIONS(4585), + [anon_sym_BANGin] = ACTIONS(4585), + [anon_sym_is] = ACTIONS(4583), + [anon_sym_BANGis] = ACTIONS(4585), + [anon_sym_PLUS] = ACTIONS(4583), + [anon_sym_DASH] = ACTIONS(4583), + [anon_sym_SLASH] = ACTIONS(4583), + [anon_sym_PERCENT] = ACTIONS(4583), + [anon_sym_as_QMARK] = ACTIONS(4585), + [anon_sym_PLUS_PLUS] = ACTIONS(4585), + [anon_sym_DASH_DASH] = ACTIONS(4585), + [anon_sym_BANG_BANG] = ACTIONS(4585), + [anon_sym_suspend] = ACTIONS(4583), + [anon_sym_sealed] = ACTIONS(4583), + [anon_sym_annotation] = ACTIONS(4583), + [anon_sym_data] = ACTIONS(4583), + [anon_sym_inner] = ACTIONS(4583), + [anon_sym_value] = ACTIONS(4583), + [anon_sym_override] = ACTIONS(4583), + [anon_sym_lateinit] = ACTIONS(4583), + [anon_sym_public] = ACTIONS(4583), + [anon_sym_private] = ACTIONS(4583), + [anon_sym_internal] = ACTIONS(4583), + [anon_sym_protected] = ACTIONS(4583), + [anon_sym_tailrec] = ACTIONS(4583), + [anon_sym_operator] = ACTIONS(4583), + [anon_sym_infix] = ACTIONS(4583), + [anon_sym_inline] = ACTIONS(4583), + [anon_sym_external] = ACTIONS(4583), + [sym_property_modifier] = ACTIONS(4583), + [anon_sym_abstract] = ACTIONS(4583), + [anon_sym_final] = ACTIONS(4583), + [anon_sym_open] = ACTIONS(4583), + [anon_sym_vararg] = ACTIONS(4583), + [anon_sym_noinline] = ACTIONS(4583), + [anon_sym_crossinline] = ACTIONS(4583), + [anon_sym_expect] = ACTIONS(4583), + [anon_sym_actual] = ACTIONS(4583), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4585), + [sym__automatic_semicolon] = ACTIONS(4585), + [sym_safe_nav] = ACTIONS(4585), + [sym_multiline_comment] = ACTIONS(3), }, [3776] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3776), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(7091), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), + [sym__alpha_identifier] = ACTIONS(4638), + [anon_sym_AT] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_DOT] = ACTIONS(4638), + [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_by] = ACTIONS(4638), + [anon_sym_LT] = ACTIONS(4638), + [anon_sym_GT] = ACTIONS(4638), + [anon_sym_where] = 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_value] = 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), + [sym__backtick_identifier] = ACTIONS(4640), + [sym__automatic_semicolon] = ACTIONS(4640), + [sym_safe_nav] = ACTIONS(4640), [sym_multiline_comment] = ACTIONS(3), }, [3777] = { - [sym__alpha_identifier] = ACTIONS(4597), - [anon_sym_AT] = ACTIONS(4599), - [anon_sym_COLON] = ACTIONS(4597), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_DOT] = ACTIONS(4597), - [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_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_value] = 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__automatic_semicolon] = ACTIONS(4599), - [sym_safe_nav] = ACTIONS(4599), + [sym_class_body] = STATE(3901), + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [sym_label] = ACTIONS(4620), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_suspend] = ACTIONS(4618), + [anon_sym_sealed] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4618), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_override] = ACTIONS(4618), + [anon_sym_lateinit] = ACTIONS(4618), + [anon_sym_public] = ACTIONS(4618), + [anon_sym_private] = ACTIONS(4618), + [anon_sym_internal] = ACTIONS(4618), + [anon_sym_protected] = ACTIONS(4618), + [anon_sym_tailrec] = ACTIONS(4618), + [anon_sym_operator] = ACTIONS(4618), + [anon_sym_infix] = ACTIONS(4618), + [anon_sym_inline] = ACTIONS(4618), + [anon_sym_external] = ACTIONS(4618), + [sym_property_modifier] = ACTIONS(4618), + [anon_sym_abstract] = ACTIONS(4618), + [anon_sym_final] = ACTIONS(4618), + [anon_sym_open] = ACTIONS(4618), + [anon_sym_vararg] = ACTIONS(4618), + [anon_sym_noinline] = ACTIONS(4618), + [anon_sym_crossinline] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4620), + [sym__automatic_semicolon] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), [sym_multiline_comment] = ACTIONS(3), }, [3778] = { - [sym_value_arguments] = STATE(3983), - [sym__alpha_identifier] = ACTIONS(7094), - [anon_sym_AT] = ACTIONS(7096), - [anon_sym_LBRACK] = ACTIONS(7096), - [anon_sym_typealias] = ACTIONS(7094), - [anon_sym_class] = ACTIONS(7094), - [anon_sym_interface] = ACTIONS(7094), - [anon_sym_enum] = ACTIONS(7094), - [anon_sym_LBRACE] = ACTIONS(7096), - [anon_sym_LPAREN] = ACTIONS(7098), - [anon_sym_val] = ACTIONS(7094), - [anon_sym_var] = ACTIONS(7094), - [anon_sym_object] = ACTIONS(7094), - [anon_sym_fun] = ACTIONS(7094), - [anon_sym_get] = ACTIONS(7094), - [anon_sym_set] = ACTIONS(7094), - [anon_sym_this] = ACTIONS(7094), - [anon_sym_super] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(7096), - [sym_label] = ACTIONS(7094), - [anon_sym_for] = ACTIONS(7094), - [anon_sym_while] = ACTIONS(7094), - [anon_sym_do] = ACTIONS(7094), - [anon_sym_null] = ACTIONS(7094), - [anon_sym_if] = ACTIONS(7094), - [anon_sym_when] = ACTIONS(7094), - [anon_sym_try] = ACTIONS(7094), - [anon_sym_throw] = ACTIONS(7094), - [anon_sym_return] = ACTIONS(7094), - [anon_sym_continue] = ACTIONS(7094), - [anon_sym_break] = ACTIONS(7094), - [anon_sym_COLON_COLON] = ACTIONS(7096), - [anon_sym_PLUS] = ACTIONS(7094), - [anon_sym_DASH] = ACTIONS(7094), - [anon_sym_PLUS_PLUS] = ACTIONS(7096), - [anon_sym_DASH_DASH] = ACTIONS(7096), - [anon_sym_BANG] = ACTIONS(7096), - [anon_sym_suspend] = ACTIONS(7094), - [anon_sym_sealed] = ACTIONS(7094), - [anon_sym_annotation] = ACTIONS(7094), - [anon_sym_data] = ACTIONS(7094), - [anon_sym_inner] = ACTIONS(7094), - [anon_sym_value] = ACTIONS(7094), - [anon_sym_override] = ACTIONS(7094), - [anon_sym_lateinit] = ACTIONS(7094), - [anon_sym_public] = ACTIONS(7094), - [anon_sym_private] = ACTIONS(7094), - [anon_sym_internal] = ACTIONS(7094), - [anon_sym_protected] = ACTIONS(7094), - [anon_sym_tailrec] = ACTIONS(7094), - [anon_sym_operator] = ACTIONS(7094), - [anon_sym_infix] = ACTIONS(7094), - [anon_sym_inline] = ACTIONS(7094), - [anon_sym_external] = ACTIONS(7094), - [sym_property_modifier] = ACTIONS(7094), - [anon_sym_abstract] = ACTIONS(7094), - [anon_sym_final] = ACTIONS(7094), - [anon_sym_open] = ACTIONS(7094), - [anon_sym_vararg] = ACTIONS(7094), - [anon_sym_noinline] = ACTIONS(7094), - [anon_sym_crossinline] = ACTIONS(7094), - [anon_sym_expect] = ACTIONS(7094), - [anon_sym_actual] = ACTIONS(7094), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7096), - [anon_sym_continue_AT] = ACTIONS(7096), - [anon_sym_break_AT] = ACTIONS(7096), - [anon_sym_this_AT] = ACTIONS(7096), - [anon_sym_super_AT] = ACTIONS(7096), - [sym_real_literal] = ACTIONS(7096), - [sym_integer_literal] = ACTIONS(7094), - [sym_hex_literal] = ACTIONS(7096), - [sym_bin_literal] = ACTIONS(7096), - [anon_sym_true] = ACTIONS(7094), - [anon_sym_false] = ACTIONS(7094), - [anon_sym_SQUOTE] = ACTIONS(7096), - [sym__backtick_identifier] = ACTIONS(7096), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7096), + [aux_sym__delegation_specifiers_repeat1] = STATE(3778), + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [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(7035), + [anon_sym_LT] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4611), + [anon_sym_where] = 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_value] = 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), + [sym_multiline_comment] = ACTIONS(3), }, [3779] = { - [sym_enum_class_body] = STATE(3859), - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(5826), - [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_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3143), + [anon_sym_DASH_EQ] = ACTIONS(3143), + [anon_sym_STAR_EQ] = ACTIONS(3143), + [anon_sym_SLASH_EQ] = ACTIONS(3143), + [anon_sym_PERCENT_EQ] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3143), + [sym__automatic_semicolon] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [3780] = { - [sym_function_body] = STATE(3387), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_RPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_while] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), + [sym_class_body] = STATE(3947), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, [3781] = { - [sym_function_body] = STATE(3389), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [3782] = { - [sym_function_body] = STATE(3396), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6698), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), + [sym_value_arguments] = STATE(3095), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), }, [3783] = { - [sym_class_body] = STATE(3853), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [sym_class_body] = STATE(3453), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(7040), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_while] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_PLUS_EQ] = ACTIONS(4355), + [anon_sym_DASH_EQ] = ACTIONS(4355), + [anon_sym_STAR_EQ] = ACTIONS(4355), + [anon_sym_SLASH_EQ] = ACTIONS(4355), + [anon_sym_PERCENT_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), [sym_multiline_comment] = ACTIONS(3), }, [3784] = { - [sym__alpha_identifier] = ACTIONS(4593), - [anon_sym_AT] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_DOT] = ACTIONS(4593), - [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_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_value] = 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_class_body] = STATE(3976), + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [sym_label] = ACTIONS(4414), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_suspend] = ACTIONS(4412), + [anon_sym_sealed] = ACTIONS(4412), + [anon_sym_annotation] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_override] = ACTIONS(4412), + [anon_sym_lateinit] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_internal] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_tailrec] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_infix] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym_external] = ACTIONS(4412), + [sym_property_modifier] = ACTIONS(4412), + [anon_sym_abstract] = ACTIONS(4412), + [anon_sym_final] = ACTIONS(4412), + [anon_sym_open] = ACTIONS(4412), + [anon_sym_vararg] = ACTIONS(4412), + [anon_sym_noinline] = ACTIONS(4412), + [anon_sym_crossinline] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4414), + [sym__automatic_semicolon] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), [sym_multiline_comment] = ACTIONS(3), }, [3785] = { - [sym_function_body] = STATE(3886), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(7101), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4289), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_PLUS_EQ] = ACTIONS(4291), - [anon_sym_DASH_EQ] = ACTIONS(4291), - [anon_sym_STAR_EQ] = ACTIONS(4291), - [anon_sym_SLASH_EQ] = ACTIONS(4291), - [anon_sym_PERCENT_EQ] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4289), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), + [aux_sym__delegation_specifiers_repeat1] = STATE(3790), + [sym__alpha_identifier] = ACTIONS(4587), + [anon_sym_AT] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4587), + [anon_sym_EQ] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4589), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(4587), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_where] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4587), + [sym_label] = ACTIONS(4589), + [anon_sym_in] = ACTIONS(4587), + [anon_sym_DOT_DOT] = ACTIONS(4589), + [anon_sym_QMARK_COLON] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_else] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4589), + [anon_sym_PLUS_EQ] = ACTIONS(4589), + [anon_sym_DASH_EQ] = ACTIONS(4589), + [anon_sym_STAR_EQ] = ACTIONS(4589), + [anon_sym_SLASH_EQ] = ACTIONS(4589), + [anon_sym_PERCENT_EQ] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_BANGin] = ACTIONS(4589), + [anon_sym_is] = ACTIONS(4587), + [anon_sym_BANGis] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4587), + [anon_sym_as_QMARK] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_BANG_BANG] = ACTIONS(4589), + [anon_sym_suspend] = ACTIONS(4587), + [anon_sym_sealed] = ACTIONS(4587), + [anon_sym_annotation] = ACTIONS(4587), + [anon_sym_data] = ACTIONS(4587), + [anon_sym_inner] = ACTIONS(4587), + [anon_sym_value] = ACTIONS(4587), + [anon_sym_override] = ACTIONS(4587), + [anon_sym_lateinit] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_internal] = ACTIONS(4587), + [anon_sym_protected] = ACTIONS(4587), + [anon_sym_tailrec] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), + [anon_sym_infix] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym_external] = ACTIONS(4587), + [sym_property_modifier] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_open] = ACTIONS(4587), + [anon_sym_vararg] = ACTIONS(4587), + [anon_sym_noinline] = ACTIONS(4587), + [anon_sym_crossinline] = ACTIONS(4587), + [anon_sym_expect] = ACTIONS(4587), + [anon_sym_actual] = ACTIONS(4587), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4589), + [sym__automatic_semicolon] = ACTIONS(4589), + [sym_safe_nav] = ACTIONS(4589), [sym_multiline_comment] = ACTIONS(3), }, [3786] = { - [sym__alpha_identifier] = ACTIONS(4276), - [anon_sym_AT] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_DOT] = ACTIONS(4276), - [anon_sym_as] = ACTIONS(4276), - [anon_sym_EQ] = ACTIONS(4276), - [anon_sym_LBRACE] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_LT] = ACTIONS(4276), - [anon_sym_GT] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_get] = ACTIONS(4276), - [anon_sym_set] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [sym_label] = ACTIONS(4278), - [anon_sym_in] = ACTIONS(4276), - [anon_sym_DOT_DOT] = ACTIONS(4278), - [anon_sym_QMARK_COLON] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_else] = ACTIONS(4276), - [anon_sym_COLON_COLON] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_BANG_EQ] = ACTIONS(4276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4278), - [anon_sym_EQ_EQ] = ACTIONS(4276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4278), - [anon_sym_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_EQ] = ACTIONS(4278), - [anon_sym_BANGin] = ACTIONS(4278), - [anon_sym_is] = ACTIONS(4276), - [anon_sym_BANGis] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4276), - [anon_sym_SLASH] = ACTIONS(4276), - [anon_sym_PERCENT] = ACTIONS(4276), - [anon_sym_as_QMARK] = ACTIONS(4278), - [anon_sym_PLUS_PLUS] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4278), - [anon_sym_BANG_BANG] = ACTIONS(4278), - [anon_sym_suspend] = ACTIONS(4276), - [anon_sym_sealed] = ACTIONS(4276), - [anon_sym_annotation] = ACTIONS(4276), - [anon_sym_data] = ACTIONS(4276), - [anon_sym_inner] = ACTIONS(4276), - [anon_sym_value] = ACTIONS(4276), - [anon_sym_override] = ACTIONS(4276), - [anon_sym_lateinit] = ACTIONS(4276), - [anon_sym_public] = ACTIONS(4276), - [anon_sym_private] = ACTIONS(4276), - [anon_sym_internal] = ACTIONS(4276), - [anon_sym_protected] = ACTIONS(4276), - [anon_sym_tailrec] = ACTIONS(4276), - [anon_sym_operator] = ACTIONS(4276), - [anon_sym_infix] = ACTIONS(4276), - [anon_sym_inline] = ACTIONS(4276), - [anon_sym_external] = ACTIONS(4276), - [sym_property_modifier] = ACTIONS(4276), - [anon_sym_abstract] = ACTIONS(4276), - [anon_sym_final] = ACTIONS(4276), - [anon_sym_open] = ACTIONS(4276), - [anon_sym_vararg] = ACTIONS(4276), - [anon_sym_noinline] = ACTIONS(4276), - [anon_sym_crossinline] = ACTIONS(4276), - [anon_sym_expect] = ACTIONS(4276), - [anon_sym_actual] = ACTIONS(4276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4278), - [sym__automatic_semicolon] = ACTIONS(4278), - [sym_safe_nav] = ACTIONS(4278), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(7021), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [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(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [3787] = { - [sym_enum_class_body] = STATE(4017), - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [sym_label] = ACTIONS(4417), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_suspend] = ACTIONS(4415), - [anon_sym_sealed] = ACTIONS(4415), - [anon_sym_annotation] = ACTIONS(4415), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_override] = ACTIONS(4415), - [anon_sym_lateinit] = ACTIONS(4415), - [anon_sym_public] = ACTIONS(4415), - [anon_sym_private] = ACTIONS(4415), - [anon_sym_internal] = ACTIONS(4415), - [anon_sym_protected] = ACTIONS(4415), - [anon_sym_tailrec] = ACTIONS(4415), - [anon_sym_operator] = ACTIONS(4415), - [anon_sym_infix] = ACTIONS(4415), - [anon_sym_inline] = ACTIONS(4415), - [anon_sym_external] = ACTIONS(4415), - [sym_property_modifier] = ACTIONS(4415), - [anon_sym_abstract] = ACTIONS(4415), - [anon_sym_final] = ACTIONS(4415), - [anon_sym_open] = ACTIONS(4415), - [anon_sym_vararg] = ACTIONS(4415), - [anon_sym_noinline] = ACTIONS(4415), - [anon_sym_crossinline] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4417), - [sym__automatic_semicolon] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), + [sym_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(7044), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_RPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_while] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_PLUS_EQ] = ACTIONS(4327), + [anon_sym_DASH_EQ] = ACTIONS(4327), + [anon_sym_STAR_EQ] = ACTIONS(4327), + [anon_sym_SLASH_EQ] = ACTIONS(4327), + [anon_sym_PERCENT_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4325), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), [sym_multiline_comment] = ACTIONS(3), }, [3788] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3776), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_EQ] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4539), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_PLUS_EQ] = ACTIONS(4541), - [anon_sym_DASH_EQ] = ACTIONS(4541), - [anon_sym_STAR_EQ] = ACTIONS(4541), - [anon_sym_SLASH_EQ] = ACTIONS(4541), - [anon_sym_PERCENT_EQ] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4539), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), + [sym_class_body] = STATE(3964), + [sym__alpha_identifier] = ACTIONS(4517), + [anon_sym_AT] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4519), + [anon_sym_DOT] = ACTIONS(4517), + [anon_sym_as] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(5746), + [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_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_value] = 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), }, [3789] = { - [ts_builtin_sym_end] = ACTIONS(1447), - [sym__alpha_identifier] = ACTIONS(7103), - [anon_sym_AT] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_typealias] = ACTIONS(7103), - [anon_sym_class] = ACTIONS(7103), - [anon_sym_interface] = ACTIONS(7103), - [anon_sym_enum] = ACTIONS(7103), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_val] = ACTIONS(7103), - [anon_sym_var] = ACTIONS(7103), - [anon_sym_object] = ACTIONS(7103), - [anon_sym_fun] = ACTIONS(7103), - [anon_sym_get] = ACTIONS(7103), - [anon_sym_set] = ACTIONS(7103), - [anon_sym_this] = ACTIONS(7103), - [anon_sym_super] = ACTIONS(7103), - [anon_sym_STAR] = ACTIONS(1447), - [sym_label] = ACTIONS(7103), - [anon_sym_for] = ACTIONS(7103), - [anon_sym_while] = ACTIONS(7103), - [anon_sym_do] = ACTIONS(7103), - [anon_sym_null] = ACTIONS(7103), - [anon_sym_if] = ACTIONS(7103), - [anon_sym_when] = ACTIONS(7103), - [anon_sym_try] = ACTIONS(7103), - [anon_sym_throw] = ACTIONS(7103), - [anon_sym_return] = ACTIONS(7103), - [anon_sym_continue] = ACTIONS(7103), - [anon_sym_break] = ACTIONS(7103), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(7103), - [anon_sym_DASH] = ACTIONS(7103), - [anon_sym_PLUS_PLUS] = ACTIONS(1447), - [anon_sym_DASH_DASH] = ACTIONS(1447), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_suspend] = ACTIONS(7103), - [anon_sym_sealed] = ACTIONS(7103), - [anon_sym_annotation] = ACTIONS(7103), - [anon_sym_data] = ACTIONS(7103), - [anon_sym_inner] = ACTIONS(7103), - [anon_sym_value] = ACTIONS(7103), - [anon_sym_override] = ACTIONS(7103), - [anon_sym_lateinit] = ACTIONS(7103), - [anon_sym_public] = ACTIONS(7103), - [anon_sym_private] = ACTIONS(7103), - [anon_sym_internal] = ACTIONS(7103), - [anon_sym_protected] = ACTIONS(7103), - [anon_sym_tailrec] = ACTIONS(7103), - [anon_sym_operator] = ACTIONS(7103), - [anon_sym_infix] = ACTIONS(7103), - [anon_sym_inline] = ACTIONS(7103), - [anon_sym_external] = ACTIONS(7103), - [sym_property_modifier] = ACTIONS(7103), - [anon_sym_abstract] = ACTIONS(7103), - [anon_sym_final] = ACTIONS(7103), - [anon_sym_open] = ACTIONS(7103), - [anon_sym_vararg] = ACTIONS(7103), - [anon_sym_noinline] = ACTIONS(7103), - [anon_sym_crossinline] = ACTIONS(7103), - [anon_sym_expect] = ACTIONS(7103), - [anon_sym_actual] = ACTIONS(7103), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(1447), - [anon_sym_continue_AT] = ACTIONS(1447), - [anon_sym_break_AT] = ACTIONS(1447), - [anon_sym_this_AT] = ACTIONS(1447), - [anon_sym_super_AT] = ACTIONS(1447), - [sym_real_literal] = ACTIONS(1447), - [sym_integer_literal] = ACTIONS(7103), - [sym_hex_literal] = ACTIONS(1447), - [sym_bin_literal] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(7103), - [anon_sym_false] = ACTIONS(7103), - [anon_sym_SQUOTE] = ACTIONS(1447), - [sym__backtick_identifier] = ACTIONS(1447), + [sym_class_body] = STATE(3974), + [sym__alpha_identifier] = ACTIONS(4607), + [anon_sym_AT] = ACTIONS(4609), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_where] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4609), + [anon_sym_get] = ACTIONS(4607), + [anon_sym_set] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [sym_label] = ACTIONS(4609), + [anon_sym_in] = ACTIONS(4607), + [anon_sym_DOT_DOT] = ACTIONS(4609), + [anon_sym_QMARK_COLON] = ACTIONS(4609), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4609), + [anon_sym_else] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4609), + [anon_sym_PLUS_EQ] = ACTIONS(4609), + [anon_sym_DASH_EQ] = ACTIONS(4609), + [anon_sym_STAR_EQ] = ACTIONS(4609), + [anon_sym_SLASH_EQ] = ACTIONS(4609), + [anon_sym_PERCENT_EQ] = ACTIONS(4609), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4609), + [anon_sym_BANGin] = ACTIONS(4609), + [anon_sym_is] = ACTIONS(4607), + [anon_sym_BANGis] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_as_QMARK] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4609), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_BANG_BANG] = ACTIONS(4609), + [anon_sym_suspend] = ACTIONS(4607), + [anon_sym_sealed] = ACTIONS(4607), + [anon_sym_annotation] = ACTIONS(4607), + [anon_sym_data] = ACTIONS(4607), + [anon_sym_inner] = ACTIONS(4607), + [anon_sym_value] = ACTIONS(4607), + [anon_sym_override] = ACTIONS(4607), + [anon_sym_lateinit] = ACTIONS(4607), + [anon_sym_public] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4607), + [anon_sym_internal] = ACTIONS(4607), + [anon_sym_protected] = ACTIONS(4607), + [anon_sym_tailrec] = ACTIONS(4607), + [anon_sym_operator] = ACTIONS(4607), + [anon_sym_infix] = ACTIONS(4607), + [anon_sym_inline] = ACTIONS(4607), + [anon_sym_external] = ACTIONS(4607), + [sym_property_modifier] = ACTIONS(4607), + [anon_sym_abstract] = ACTIONS(4607), + [anon_sym_final] = ACTIONS(4607), + [anon_sym_open] = ACTIONS(4607), + [anon_sym_vararg] = ACTIONS(4607), + [anon_sym_noinline] = ACTIONS(4607), + [anon_sym_crossinline] = ACTIONS(4607), + [anon_sym_expect] = ACTIONS(4607), + [anon_sym_actual] = ACTIONS(4607), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4609), + [sym__automatic_semicolon] = ACTIONS(4609), + [sym_safe_nav] = ACTIONS(4609), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(1447), }, [3790] = { - [sym_enum_class_body] = STATE(3831), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [aux_sym__delegation_specifiers_repeat1] = STATE(3778), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [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(7042), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4513), + [anon_sym_where] = ACTIONS(4513), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = 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_value] = 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), }, [3791] = { - [sym_class_body] = STATE(3829), - [sym__alpha_identifier] = ACTIONS(4644), - [anon_sym_AT] = ACTIONS(4646), - [anon_sym_LBRACK] = ACTIONS(4646), - [anon_sym_DOT] = ACTIONS(4644), - [anon_sym_as] = ACTIONS(4644), - [anon_sym_EQ] = ACTIONS(4644), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4646), - [anon_sym_LPAREN] = ACTIONS(4646), - [anon_sym_COMMA] = ACTIONS(4646), - [anon_sym_LT] = ACTIONS(4644), - [anon_sym_GT] = ACTIONS(4644), - [anon_sym_where] = ACTIONS(4644), - [anon_sym_SEMI] = ACTIONS(4646), - [anon_sym_get] = ACTIONS(4644), - [anon_sym_set] = ACTIONS(4644), - [anon_sym_STAR] = ACTIONS(4644), - [sym_label] = ACTIONS(4646), - [anon_sym_in] = ACTIONS(4644), - [anon_sym_DOT_DOT] = ACTIONS(4646), - [anon_sym_QMARK_COLON] = ACTIONS(4646), - [anon_sym_AMP_AMP] = ACTIONS(4646), - [anon_sym_PIPE_PIPE] = ACTIONS(4646), - [anon_sym_else] = ACTIONS(4644), - [anon_sym_COLON_COLON] = ACTIONS(4646), - [anon_sym_PLUS_EQ] = ACTIONS(4646), - [anon_sym_DASH_EQ] = ACTIONS(4646), - [anon_sym_STAR_EQ] = ACTIONS(4646), - [anon_sym_SLASH_EQ] = ACTIONS(4646), - [anon_sym_PERCENT_EQ] = ACTIONS(4646), - [anon_sym_BANG_EQ] = ACTIONS(4644), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4646), - [anon_sym_EQ_EQ] = ACTIONS(4644), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4646), - [anon_sym_LT_EQ] = ACTIONS(4646), - [anon_sym_GT_EQ] = ACTIONS(4646), - [anon_sym_BANGin] = ACTIONS(4646), - [anon_sym_is] = ACTIONS(4644), - [anon_sym_BANGis] = ACTIONS(4646), - [anon_sym_PLUS] = ACTIONS(4644), - [anon_sym_DASH] = ACTIONS(4644), - [anon_sym_SLASH] = ACTIONS(4644), - [anon_sym_PERCENT] = ACTIONS(4644), - [anon_sym_as_QMARK] = ACTIONS(4646), - [anon_sym_PLUS_PLUS] = ACTIONS(4646), - [anon_sym_DASH_DASH] = ACTIONS(4646), - [anon_sym_BANG_BANG] = ACTIONS(4646), - [anon_sym_suspend] = ACTIONS(4644), - [anon_sym_sealed] = ACTIONS(4644), - [anon_sym_annotation] = ACTIONS(4644), - [anon_sym_data] = ACTIONS(4644), - [anon_sym_inner] = ACTIONS(4644), - [anon_sym_value] = ACTIONS(4644), - [anon_sym_override] = ACTIONS(4644), - [anon_sym_lateinit] = ACTIONS(4644), - [anon_sym_public] = ACTIONS(4644), - [anon_sym_private] = ACTIONS(4644), - [anon_sym_internal] = ACTIONS(4644), - [anon_sym_protected] = ACTIONS(4644), - [anon_sym_tailrec] = ACTIONS(4644), - [anon_sym_operator] = ACTIONS(4644), - [anon_sym_infix] = ACTIONS(4644), - [anon_sym_inline] = ACTIONS(4644), - [anon_sym_external] = ACTIONS(4644), - [sym_property_modifier] = ACTIONS(4644), - [anon_sym_abstract] = ACTIONS(4644), - [anon_sym_final] = ACTIONS(4644), - [anon_sym_open] = ACTIONS(4644), - [anon_sym_vararg] = ACTIONS(4644), - [anon_sym_noinline] = ACTIONS(4644), - [anon_sym_crossinline] = ACTIONS(4644), - [anon_sym_expect] = ACTIONS(4644), - [anon_sym_actual] = ACTIONS(4644), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4646), - [sym__automatic_semicolon] = ACTIONS(4646), - [sym_safe_nav] = ACTIONS(4646), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6696), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_while] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, [3792] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(7049), - [anon_sym_PIPE_PIPE] = ACTIONS(7051), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(7053), + [sym_enum_class_body] = STATE(4025), + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, [3793] = { - [sym__alpha_identifier] = ACTIONS(4648), - [anon_sym_AT] = ACTIONS(4650), - [anon_sym_COLON] = ACTIONS(4648), - [anon_sym_LBRACK] = ACTIONS(4650), - [anon_sym_DOT] = ACTIONS(4648), - [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_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_value] = 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__alpha_identifier] = ACTIONS(4495), + [anon_sym_AT] = ACTIONS(4497), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4497), + [anon_sym_DOT] = ACTIONS(4495), + [anon_sym_as] = ACTIONS(4495), + [anon_sym_EQ] = ACTIONS(4495), + [anon_sym_LBRACE] = ACTIONS(4497), + [anon_sym_RBRACE] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4497), + [anon_sym_COMMA] = ACTIONS(4497), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_where] = ACTIONS(4495), + [anon_sym_SEMI] = ACTIONS(4497), + [anon_sym_get] = ACTIONS(4495), + [anon_sym_set] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [sym_label] = ACTIONS(4497), + [anon_sym_in] = ACTIONS(4495), + [anon_sym_DOT_DOT] = ACTIONS(4497), + [anon_sym_QMARK_COLON] = ACTIONS(4497), + [anon_sym_AMP_AMP] = ACTIONS(4497), + [anon_sym_PIPE_PIPE] = ACTIONS(4497), + [anon_sym_else] = ACTIONS(4495), + [anon_sym_COLON_COLON] = ACTIONS(4497), + [anon_sym_PLUS_EQ] = ACTIONS(4497), + [anon_sym_DASH_EQ] = ACTIONS(4497), + [anon_sym_STAR_EQ] = ACTIONS(4497), + [anon_sym_SLASH_EQ] = ACTIONS(4497), + [anon_sym_PERCENT_EQ] = ACTIONS(4497), + [anon_sym_BANG_EQ] = ACTIONS(4495), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4497), + [anon_sym_EQ_EQ] = ACTIONS(4495), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4497), + [anon_sym_LT_EQ] = ACTIONS(4497), + [anon_sym_GT_EQ] = ACTIONS(4497), + [anon_sym_BANGin] = ACTIONS(4497), + [anon_sym_is] = ACTIONS(4495), + [anon_sym_BANGis] = ACTIONS(4497), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_PERCENT] = ACTIONS(4495), + [anon_sym_as_QMARK] = ACTIONS(4497), + [anon_sym_PLUS_PLUS] = ACTIONS(4497), + [anon_sym_DASH_DASH] = ACTIONS(4497), + [anon_sym_BANG_BANG] = ACTIONS(4497), + [anon_sym_suspend] = ACTIONS(4495), + [anon_sym_sealed] = ACTIONS(4495), + [anon_sym_annotation] = ACTIONS(4495), + [anon_sym_data] = ACTIONS(4495), + [anon_sym_inner] = ACTIONS(4495), + [anon_sym_value] = ACTIONS(4495), + [anon_sym_override] = ACTIONS(4495), + [anon_sym_lateinit] = ACTIONS(4495), + [anon_sym_public] = ACTIONS(4495), + [anon_sym_private] = ACTIONS(4495), + [anon_sym_internal] = ACTIONS(4495), + [anon_sym_protected] = ACTIONS(4495), + [anon_sym_tailrec] = ACTIONS(4495), + [anon_sym_operator] = ACTIONS(4495), + [anon_sym_infix] = ACTIONS(4495), + [anon_sym_inline] = ACTIONS(4495), + [anon_sym_external] = ACTIONS(4495), + [sym_property_modifier] = ACTIONS(4495), + [anon_sym_abstract] = ACTIONS(4495), + [anon_sym_final] = ACTIONS(4495), + [anon_sym_open] = ACTIONS(4495), + [anon_sym_vararg] = ACTIONS(4495), + [anon_sym_noinline] = ACTIONS(4495), + [anon_sym_crossinline] = ACTIONS(4495), + [anon_sym_expect] = ACTIONS(4495), + [anon_sym_actual] = ACTIONS(4495), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4497), + [sym__automatic_semicolon] = ACTIONS(4497), + [sym_safe_nav] = ACTIONS(4497), [sym_multiline_comment] = ACTIONS(3), }, [3794] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(7049), - [anon_sym_PIPE_PIPE] = ACTIONS(7051), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), + [sym_value_arguments] = STATE(3919), + [sym__alpha_identifier] = ACTIONS(7046), + [anon_sym_AT] = ACTIONS(7048), + [anon_sym_LBRACK] = ACTIONS(7048), + [anon_sym_typealias] = ACTIONS(7046), + [anon_sym_class] = ACTIONS(7046), + [anon_sym_interface] = ACTIONS(7046), + [anon_sym_enum] = ACTIONS(7046), + [anon_sym_LBRACE] = ACTIONS(7048), + [anon_sym_LPAREN] = ACTIONS(7050), + [anon_sym_val] = ACTIONS(7046), + [anon_sym_var] = ACTIONS(7046), + [anon_sym_object] = ACTIONS(7046), + [anon_sym_fun] = ACTIONS(7046), + [anon_sym_get] = ACTIONS(7046), + [anon_sym_set] = ACTIONS(7046), + [anon_sym_this] = ACTIONS(7046), + [anon_sym_super] = ACTIONS(7046), + [anon_sym_STAR] = ACTIONS(7048), + [sym_label] = ACTIONS(7046), + [anon_sym_for] = ACTIONS(7046), + [anon_sym_while] = ACTIONS(7046), + [anon_sym_do] = ACTIONS(7046), + [anon_sym_null] = ACTIONS(7046), + [anon_sym_if] = ACTIONS(7046), + [anon_sym_when] = ACTIONS(7046), + [anon_sym_try] = ACTIONS(7046), + [anon_sym_throw] = ACTIONS(7046), + [anon_sym_return] = ACTIONS(7046), + [anon_sym_continue] = ACTIONS(7046), + [anon_sym_break] = ACTIONS(7046), + [anon_sym_COLON_COLON] = ACTIONS(7048), + [anon_sym_PLUS] = ACTIONS(7046), + [anon_sym_DASH] = ACTIONS(7046), + [anon_sym_PLUS_PLUS] = ACTIONS(7048), + [anon_sym_DASH_DASH] = ACTIONS(7048), + [anon_sym_BANG] = ACTIONS(7048), + [anon_sym_suspend] = ACTIONS(7046), + [anon_sym_sealed] = ACTIONS(7046), + [anon_sym_annotation] = ACTIONS(7046), + [anon_sym_data] = ACTIONS(7046), + [anon_sym_inner] = ACTIONS(7046), + [anon_sym_value] = ACTIONS(7046), + [anon_sym_override] = ACTIONS(7046), + [anon_sym_lateinit] = ACTIONS(7046), + [anon_sym_public] = ACTIONS(7046), + [anon_sym_private] = ACTIONS(7046), + [anon_sym_internal] = ACTIONS(7046), + [anon_sym_protected] = ACTIONS(7046), + [anon_sym_tailrec] = ACTIONS(7046), + [anon_sym_operator] = ACTIONS(7046), + [anon_sym_infix] = ACTIONS(7046), + [anon_sym_inline] = ACTIONS(7046), + [anon_sym_external] = ACTIONS(7046), + [sym_property_modifier] = ACTIONS(7046), + [anon_sym_abstract] = ACTIONS(7046), + [anon_sym_final] = ACTIONS(7046), + [anon_sym_open] = ACTIONS(7046), + [anon_sym_vararg] = ACTIONS(7046), + [anon_sym_noinline] = ACTIONS(7046), + [anon_sym_crossinline] = ACTIONS(7046), + [anon_sym_expect] = ACTIONS(7046), + [anon_sym_actual] = ACTIONS(7046), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7048), + [anon_sym_continue_AT] = ACTIONS(7048), + [anon_sym_break_AT] = ACTIONS(7048), + [anon_sym_this_AT] = ACTIONS(7048), + [anon_sym_super_AT] = ACTIONS(7048), + [sym_real_literal] = ACTIONS(7048), + [sym_integer_literal] = ACTIONS(7046), + [sym_hex_literal] = ACTIONS(7048), + [sym_bin_literal] = ACTIONS(7048), + [anon_sym_true] = ACTIONS(7046), + [anon_sym_false] = ACTIONS(7046), + [anon_sym_SQUOTE] = ACTIONS(7048), + [sym__backtick_identifier] = ACTIONS(7048), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7048), }, [3795] = { - [sym__alpha_identifier] = ACTIONS(4625), - [anon_sym_AT] = ACTIONS(4627), - [anon_sym_LBRACK] = ACTIONS(4627), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_as] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4627), - [anon_sym_RBRACE] = ACTIONS(4627), - [anon_sym_LPAREN] = ACTIONS(4627), - [anon_sym_COMMA] = ACTIONS(4627), - [anon_sym_by] = ACTIONS(4625), - [anon_sym_LT] = ACTIONS(4625), - [anon_sym_GT] = ACTIONS(4625), - [anon_sym_where] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4627), - [anon_sym_get] = ACTIONS(4625), - [anon_sym_set] = ACTIONS(4625), - [anon_sym_STAR] = ACTIONS(4625), - [sym_label] = ACTIONS(4627), - [anon_sym_in] = ACTIONS(4625), - [anon_sym_DOT_DOT] = ACTIONS(4627), - [anon_sym_QMARK_COLON] = ACTIONS(4627), - [anon_sym_AMP_AMP] = ACTIONS(4627), - [anon_sym_PIPE_PIPE] = ACTIONS(4627), - [anon_sym_else] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4627), - [anon_sym_PLUS_EQ] = ACTIONS(4627), - [anon_sym_DASH_EQ] = ACTIONS(4627), - [anon_sym_STAR_EQ] = ACTIONS(4627), - [anon_sym_SLASH_EQ] = ACTIONS(4627), - [anon_sym_PERCENT_EQ] = ACTIONS(4627), - [anon_sym_BANG_EQ] = ACTIONS(4625), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4627), - [anon_sym_EQ_EQ] = ACTIONS(4625), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4627), - [anon_sym_LT_EQ] = ACTIONS(4627), - [anon_sym_GT_EQ] = ACTIONS(4627), - [anon_sym_BANGin] = ACTIONS(4627), - [anon_sym_is] = ACTIONS(4625), - [anon_sym_BANGis] = ACTIONS(4627), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_SLASH] = ACTIONS(4625), - [anon_sym_PERCENT] = ACTIONS(4625), - [anon_sym_as_QMARK] = ACTIONS(4627), - [anon_sym_PLUS_PLUS] = ACTIONS(4627), - [anon_sym_DASH_DASH] = ACTIONS(4627), - [anon_sym_BANG_BANG] = ACTIONS(4627), - [anon_sym_suspend] = ACTIONS(4625), - [anon_sym_sealed] = ACTIONS(4625), - [anon_sym_annotation] = ACTIONS(4625), - [anon_sym_data] = ACTIONS(4625), - [anon_sym_inner] = ACTIONS(4625), - [anon_sym_value] = ACTIONS(4625), - [anon_sym_override] = ACTIONS(4625), - [anon_sym_lateinit] = ACTIONS(4625), - [anon_sym_public] = ACTIONS(4625), - [anon_sym_private] = ACTIONS(4625), - [anon_sym_internal] = ACTIONS(4625), - [anon_sym_protected] = ACTIONS(4625), - [anon_sym_tailrec] = ACTIONS(4625), - [anon_sym_operator] = ACTIONS(4625), - [anon_sym_infix] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_external] = ACTIONS(4625), - [sym_property_modifier] = ACTIONS(4625), - [anon_sym_abstract] = ACTIONS(4625), - [anon_sym_final] = ACTIONS(4625), - [anon_sym_open] = ACTIONS(4625), - [anon_sym_vararg] = ACTIONS(4625), - [anon_sym_noinline] = ACTIONS(4625), - [anon_sym_crossinline] = ACTIONS(4625), - [anon_sym_expect] = ACTIONS(4625), - [anon_sym_actual] = ACTIONS(4625), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4627), - [sym__automatic_semicolon] = ACTIONS(4627), - [sym_safe_nav] = ACTIONS(4627), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3178), + [sym_type_constraints] = STATE(3009), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_fun] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_this] = ACTIONS(3226), + [anon_sym_super] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3226), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_null] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_when] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3230), + [anon_sym_continue_AT] = ACTIONS(3230), + [anon_sym_break_AT] = ACTIONS(3230), + [anon_sym_this_AT] = ACTIONS(3230), + [anon_sym_super_AT] = ACTIONS(3230), + [sym_real_literal] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(3226), + [sym_hex_literal] = ACTIONS(3230), + [sym_bin_literal] = ACTIONS(3230), + [anon_sym_true] = ACTIONS(3226), + [anon_sym_false] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3230), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3230), }, [3796] = { - [sym_function_body] = STATE(3460), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(7105), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_RBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_where] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_while] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), + [sym_function_body] = STATE(3132), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(7053), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_object] = ACTIONS(4238), + [anon_sym_fun] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_this] = ACTIONS(4238), + [anon_sym_super] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4238), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_null] = ACTIONS(4238), + [anon_sym_if] = ACTIONS(4238), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_when] = ACTIONS(4238), + [anon_sym_try] = ACTIONS(4238), + [anon_sym_throw] = ACTIONS(4238), + [anon_sym_return] = ACTIONS(4238), + [anon_sym_continue] = ACTIONS(4238), + [anon_sym_break] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4238), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4240), + [anon_sym_continue_AT] = ACTIONS(4240), + [anon_sym_break_AT] = ACTIONS(4240), + [anon_sym_this_AT] = ACTIONS(4240), + [anon_sym_super_AT] = ACTIONS(4240), + [sym_real_literal] = ACTIONS(4240), + [sym_integer_literal] = ACTIONS(4238), + [sym_hex_literal] = ACTIONS(4240), + [sym_bin_literal] = ACTIONS(4240), + [anon_sym_true] = ACTIONS(4238), + [anon_sym_false] = ACTIONS(4238), + [anon_sym_SQUOTE] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4240), }, [3797] = { - [sym__alpha_identifier] = ACTIONS(4535), - [anon_sym_AT] = ACTIONS(4537), - [anon_sym_COLON] = ACTIONS(4535), - [anon_sym_LBRACK] = ACTIONS(4537), - [anon_sym_DOT] = ACTIONS(4535), - [anon_sym_as] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(4535), - [anon_sym_LBRACE] = ACTIONS(4537), - [anon_sym_RBRACE] = ACTIONS(4537), - [anon_sym_LPAREN] = ACTIONS(4537), - [anon_sym_COMMA] = ACTIONS(4537), - [anon_sym_LT] = ACTIONS(4535), - [anon_sym_GT] = ACTIONS(4535), - [anon_sym_where] = ACTIONS(4535), - [anon_sym_SEMI] = ACTIONS(4537), - [anon_sym_get] = ACTIONS(4535), - [anon_sym_set] = ACTIONS(4535), - [anon_sym_STAR] = ACTIONS(4535), - [sym_label] = ACTIONS(4537), - [anon_sym_in] = ACTIONS(4535), - [anon_sym_DOT_DOT] = ACTIONS(4537), - [anon_sym_QMARK_COLON] = ACTIONS(4537), - [anon_sym_AMP_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4537), - [anon_sym_else] = ACTIONS(4535), - [anon_sym_COLON_COLON] = ACTIONS(4537), - [anon_sym_PLUS_EQ] = ACTIONS(4537), - [anon_sym_DASH_EQ] = ACTIONS(4537), - [anon_sym_STAR_EQ] = ACTIONS(4537), - [anon_sym_SLASH_EQ] = ACTIONS(4537), - [anon_sym_PERCENT_EQ] = ACTIONS(4537), - [anon_sym_BANG_EQ] = ACTIONS(4535), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4537), - [anon_sym_EQ_EQ] = ACTIONS(4535), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4537), - [anon_sym_LT_EQ] = ACTIONS(4537), - [anon_sym_GT_EQ] = ACTIONS(4537), - [anon_sym_BANGin] = ACTIONS(4537), - [anon_sym_is] = ACTIONS(4535), - [anon_sym_BANGis] = ACTIONS(4537), - [anon_sym_PLUS] = ACTIONS(4535), - [anon_sym_DASH] = ACTIONS(4535), - [anon_sym_SLASH] = ACTIONS(4535), - [anon_sym_PERCENT] = ACTIONS(4535), - [anon_sym_as_QMARK] = ACTIONS(4537), - [anon_sym_PLUS_PLUS] = ACTIONS(4537), - [anon_sym_DASH_DASH] = ACTIONS(4537), - [anon_sym_BANG_BANG] = ACTIONS(4537), - [anon_sym_suspend] = ACTIONS(4535), - [anon_sym_sealed] = ACTIONS(4535), - [anon_sym_annotation] = ACTIONS(4535), - [anon_sym_data] = ACTIONS(4535), - [anon_sym_inner] = ACTIONS(4535), - [anon_sym_value] = ACTIONS(4535), - [anon_sym_override] = ACTIONS(4535), - [anon_sym_lateinit] = ACTIONS(4535), - [anon_sym_public] = ACTIONS(4535), - [anon_sym_private] = ACTIONS(4535), - [anon_sym_internal] = ACTIONS(4535), - [anon_sym_protected] = ACTIONS(4535), - [anon_sym_tailrec] = ACTIONS(4535), - [anon_sym_operator] = ACTIONS(4535), - [anon_sym_infix] = ACTIONS(4535), - [anon_sym_inline] = ACTIONS(4535), - [anon_sym_external] = ACTIONS(4535), - [sym_property_modifier] = ACTIONS(4535), - [anon_sym_abstract] = ACTIONS(4535), - [anon_sym_final] = ACTIONS(4535), - [anon_sym_open] = ACTIONS(4535), - [anon_sym_vararg] = ACTIONS(4535), - [anon_sym_noinline] = ACTIONS(4535), - [anon_sym_crossinline] = ACTIONS(4535), - [anon_sym_expect] = ACTIONS(4535), - [anon_sym_actual] = ACTIONS(4535), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4537), - [sym__automatic_semicolon] = ACTIONS(4537), - [sym_safe_nav] = ACTIONS(4537), - [sym_multiline_comment] = ACTIONS(3), + [sym_function_body] = STATE(3123), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(7055), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_this] = ACTIONS(4196), + [anon_sym_super] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), }, [3798] = { - [sym_function_body] = STATE(3160), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(7107), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_object] = ACTIONS(4289), - [anon_sym_fun] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_this] = ACTIONS(4289), - [anon_sym_super] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4289), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_null] = ACTIONS(4289), - [anon_sym_if] = ACTIONS(4289), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_when] = ACTIONS(4289), - [anon_sym_try] = ACTIONS(4289), - [anon_sym_throw] = ACTIONS(4289), - [anon_sym_return] = ACTIONS(4289), - [anon_sym_continue] = ACTIONS(4289), - [anon_sym_break] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4289), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4291), - [anon_sym_continue_AT] = ACTIONS(4291), - [anon_sym_break_AT] = ACTIONS(4291), - [anon_sym_this_AT] = ACTIONS(4291), - [anon_sym_super_AT] = ACTIONS(4291), - [sym_real_literal] = ACTIONS(4291), - [sym_integer_literal] = ACTIONS(4289), - [sym_hex_literal] = ACTIONS(4291), - [sym_bin_literal] = ACTIONS(4291), - [anon_sym_true] = ACTIONS(4289), - [anon_sym_false] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4291), + [sym_function_body] = STATE(3598), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(7057), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_RBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_RPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_where] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [anon_sym_DASH_GT] = ACTIONS(4252), + [sym_label] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_while] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), }, [3799] = { - [sym__alpha_identifier] = ACTIONS(4456), - [anon_sym_AT] = ACTIONS(4458), - [anon_sym_COLON] = ACTIONS(4456), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_constructor] = ACTIONS(4456), - [anon_sym_LBRACE] = ACTIONS(4458), - [anon_sym_RBRACE] = ACTIONS(4458), - [anon_sym_LPAREN] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4456), - [anon_sym_object] = ACTIONS(4456), - [anon_sym_fun] = ACTIONS(4456), - [anon_sym_get] = ACTIONS(4456), - [anon_sym_set] = ACTIONS(4456), - [anon_sym_this] = ACTIONS(4456), - [anon_sym_super] = ACTIONS(4456), - [anon_sym_STAR] = ACTIONS(4458), - [sym_label] = ACTIONS(4456), - [anon_sym_in] = ACTIONS(4456), - [anon_sym_null] = ACTIONS(4456), - [anon_sym_if] = ACTIONS(4456), - [anon_sym_else] = ACTIONS(4456), - [anon_sym_when] = ACTIONS(4456), - [anon_sym_try] = ACTIONS(4456), - [anon_sym_throw] = ACTIONS(4456), - [anon_sym_return] = ACTIONS(4456), - [anon_sym_continue] = ACTIONS(4456), - [anon_sym_break] = ACTIONS(4456), - [anon_sym_COLON_COLON] = ACTIONS(4458), - [anon_sym_BANGin] = ACTIONS(4458), - [anon_sym_is] = ACTIONS(4456), - [anon_sym_BANGis] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4456), - [anon_sym_DASH] = ACTIONS(4456), - [anon_sym_PLUS_PLUS] = ACTIONS(4458), - [anon_sym_DASH_DASH] = ACTIONS(4458), - [anon_sym_BANG] = ACTIONS(4456), - [anon_sym_suspend] = ACTIONS(4456), - [anon_sym_sealed] = ACTIONS(4456), - [anon_sym_annotation] = ACTIONS(4456), - [anon_sym_data] = ACTIONS(4456), - [anon_sym_inner] = ACTIONS(4456), - [anon_sym_value] = ACTIONS(4456), - [anon_sym_override] = ACTIONS(4456), - [anon_sym_lateinit] = ACTIONS(4456), - [anon_sym_public] = ACTIONS(4456), - [anon_sym_private] = ACTIONS(4456), - [anon_sym_internal] = ACTIONS(4456), - [anon_sym_protected] = ACTIONS(4456), - [anon_sym_tailrec] = ACTIONS(4456), - [anon_sym_operator] = ACTIONS(4456), - [anon_sym_infix] = ACTIONS(4456), - [anon_sym_inline] = ACTIONS(4456), - [anon_sym_external] = ACTIONS(4456), - [sym_property_modifier] = ACTIONS(4456), - [anon_sym_abstract] = ACTIONS(4456), - [anon_sym_final] = ACTIONS(4456), - [anon_sym_open] = ACTIONS(4456), - [anon_sym_vararg] = ACTIONS(4456), - [anon_sym_noinline] = ACTIONS(4456), - [anon_sym_crossinline] = ACTIONS(4456), - [anon_sym_expect] = ACTIONS(4456), - [anon_sym_actual] = ACTIONS(4456), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4458), - [anon_sym_continue_AT] = ACTIONS(4458), - [anon_sym_break_AT] = ACTIONS(4458), - [anon_sym_this_AT] = ACTIONS(4458), - [anon_sym_super_AT] = ACTIONS(4458), - [sym_real_literal] = ACTIONS(4458), - [sym_integer_literal] = ACTIONS(4456), - [sym_hex_literal] = ACTIONS(4458), - [sym_bin_literal] = ACTIONS(4458), - [anon_sym_true] = ACTIONS(4456), - [anon_sym_false] = ACTIONS(4456), - [anon_sym_SQUOTE] = ACTIONS(4458), - [sym__backtick_identifier] = ACTIONS(4458), - [sym__automatic_semicolon] = ACTIONS(4458), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4458), + [sym_function_body] = STATE(3067), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_object] = ACTIONS(4250), + [anon_sym_fun] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_this] = ACTIONS(4250), + [anon_sym_super] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [sym_label] = ACTIONS(4250), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_null] = ACTIONS(4250), + [anon_sym_if] = ACTIONS(4250), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_when] = ACTIONS(4250), + [anon_sym_try] = ACTIONS(4250), + [anon_sym_throw] = ACTIONS(4250), + [anon_sym_return] = ACTIONS(4250), + [anon_sym_continue] = ACTIONS(4250), + [anon_sym_break] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4252), + [anon_sym_continue_AT] = ACTIONS(4252), + [anon_sym_break_AT] = ACTIONS(4252), + [anon_sym_this_AT] = ACTIONS(4252), + [anon_sym_super_AT] = ACTIONS(4252), + [sym_real_literal] = ACTIONS(4252), + [sym_integer_literal] = ACTIONS(4250), + [sym_hex_literal] = ACTIONS(4252), + [sym_bin_literal] = ACTIONS(4252), + [anon_sym_true] = ACTIONS(4250), + [anon_sym_false] = ACTIONS(4250), + [anon_sym_SQUOTE] = ACTIONS(4252), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4252), }, [3800] = { - [sym__alpha_identifier] = ACTIONS(4529), - [anon_sym_AT] = ACTIONS(4532), - [anon_sym_LBRACK] = ACTIONS(4532), - [anon_sym_DOT] = ACTIONS(4529), - [anon_sym_as] = ACTIONS(4529), - [anon_sym_EQ] = ACTIONS(4529), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_RBRACE] = ACTIONS(4532), - [anon_sym_LPAREN] = ACTIONS(4532), - [anon_sym_COMMA] = ACTIONS(4532), - [anon_sym_by] = ACTIONS(4529), - [anon_sym_LT] = ACTIONS(4529), - [anon_sym_GT] = ACTIONS(4529), - [anon_sym_where] = ACTIONS(4529), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym_get] = ACTIONS(4529), - [anon_sym_set] = ACTIONS(4529), - [anon_sym_STAR] = ACTIONS(4529), - [sym_label] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4529), - [anon_sym_DOT_DOT] = ACTIONS(4532), - [anon_sym_QMARK_COLON] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_PIPE_PIPE] = ACTIONS(4532), - [anon_sym_else] = ACTIONS(4529), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_PLUS_EQ] = ACTIONS(4532), - [anon_sym_DASH_EQ] = ACTIONS(4532), - [anon_sym_STAR_EQ] = ACTIONS(4532), - [anon_sym_SLASH_EQ] = ACTIONS(4532), - [anon_sym_PERCENT_EQ] = ACTIONS(4532), - [anon_sym_BANG_EQ] = ACTIONS(4529), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4529), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4532), - [anon_sym_LT_EQ] = ACTIONS(4532), - [anon_sym_GT_EQ] = ACTIONS(4532), - [anon_sym_BANGin] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4529), - [anon_sym_BANGis] = ACTIONS(4532), - [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(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_BANG_BANG] = ACTIONS(4532), - [anon_sym_suspend] = ACTIONS(4529), - [anon_sym_sealed] = ACTIONS(4529), - [anon_sym_annotation] = ACTIONS(4529), - [anon_sym_data] = ACTIONS(4529), - [anon_sym_inner] = ACTIONS(4529), - [anon_sym_value] = ACTIONS(4529), - [anon_sym_override] = ACTIONS(4529), - [anon_sym_lateinit] = ACTIONS(4529), - [anon_sym_public] = ACTIONS(4529), - [anon_sym_private] = ACTIONS(4529), - [anon_sym_internal] = ACTIONS(4529), - [anon_sym_protected] = ACTIONS(4529), - [anon_sym_tailrec] = ACTIONS(4529), - [anon_sym_operator] = ACTIONS(4529), - [anon_sym_infix] = ACTIONS(4529), - [anon_sym_inline] = ACTIONS(4529), - [anon_sym_external] = ACTIONS(4529), - [sym_property_modifier] = ACTIONS(4529), - [anon_sym_abstract] = ACTIONS(4529), - [anon_sym_final] = ACTIONS(4529), - [anon_sym_open] = ACTIONS(4529), - [anon_sym_vararg] = ACTIONS(4529), - [anon_sym_noinline] = ACTIONS(4529), - [anon_sym_crossinline] = ACTIONS(4529), - [anon_sym_expect] = ACTIONS(4529), - [anon_sym_actual] = ACTIONS(4529), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4532), - [sym__automatic_semicolon] = ACTIONS(4532), - [sym_safe_nav] = ACTIONS(4532), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3059), + [sym_type_constraints] = STATE(2977), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(7061), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4274), + [anon_sym_fun] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_this] = ACTIONS(4274), + [anon_sym_super] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [sym_label] = ACTIONS(4274), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_null] = ACTIONS(4274), + [anon_sym_if] = ACTIONS(4274), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_when] = ACTIONS(4274), + [anon_sym_try] = ACTIONS(4274), + [anon_sym_throw] = ACTIONS(4274), + [anon_sym_return] = ACTIONS(4274), + [anon_sym_continue] = ACTIONS(4274), + [anon_sym_break] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG] = ACTIONS(4274), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4276), + [anon_sym_continue_AT] = ACTIONS(4276), + [anon_sym_break_AT] = ACTIONS(4276), + [anon_sym_this_AT] = ACTIONS(4276), + [anon_sym_super_AT] = ACTIONS(4276), + [sym_real_literal] = ACTIONS(4276), + [sym_integer_literal] = ACTIONS(4274), + [sym_hex_literal] = ACTIONS(4276), + [sym_bin_literal] = ACTIONS(4276), + [anon_sym_true] = ACTIONS(4274), + [anon_sym_false] = ACTIONS(4274), + [anon_sym_SQUOTE] = ACTIONS(4276), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4276), }, [3801] = { - [sym__alpha_identifier] = ACTIONS(4545), - [anon_sym_AT] = ACTIONS(4547), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_DOT] = ACTIONS(4545), - [anon_sym_as] = ACTIONS(4545), - [anon_sym_EQ] = ACTIONS(4545), - [anon_sym_LBRACE] = ACTIONS(4547), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym_COMMA] = ACTIONS(4547), - [anon_sym_by] = ACTIONS(4545), - [anon_sym_LT] = ACTIONS(4545), - [anon_sym_GT] = ACTIONS(4545), - [anon_sym_where] = ACTIONS(4545), - [anon_sym_SEMI] = ACTIONS(4547), - [anon_sym_get] = ACTIONS(4545), - [anon_sym_set] = ACTIONS(4545), - [anon_sym_STAR] = ACTIONS(4545), - [sym_label] = ACTIONS(4547), - [anon_sym_in] = ACTIONS(4545), - [anon_sym_DOT_DOT] = ACTIONS(4547), - [anon_sym_QMARK_COLON] = ACTIONS(4547), - [anon_sym_AMP_AMP] = ACTIONS(4547), - [anon_sym_PIPE_PIPE] = ACTIONS(4547), - [anon_sym_else] = ACTIONS(4545), - [anon_sym_COLON_COLON] = ACTIONS(4547), - [anon_sym_PLUS_EQ] = ACTIONS(4547), - [anon_sym_DASH_EQ] = ACTIONS(4547), - [anon_sym_STAR_EQ] = ACTIONS(4547), - [anon_sym_SLASH_EQ] = ACTIONS(4547), - [anon_sym_PERCENT_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4545), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4547), - [anon_sym_EQ_EQ] = ACTIONS(4545), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4547), - [anon_sym_LT_EQ] = ACTIONS(4547), - [anon_sym_GT_EQ] = ACTIONS(4547), - [anon_sym_BANGin] = ACTIONS(4547), - [anon_sym_is] = ACTIONS(4545), - [anon_sym_BANGis] = ACTIONS(4547), - [anon_sym_PLUS] = ACTIONS(4545), - [anon_sym_DASH] = ACTIONS(4545), - [anon_sym_SLASH] = ACTIONS(4545), - [anon_sym_PERCENT] = ACTIONS(4545), - [anon_sym_as_QMARK] = ACTIONS(4547), - [anon_sym_PLUS_PLUS] = ACTIONS(4547), - [anon_sym_DASH_DASH] = ACTIONS(4547), - [anon_sym_BANG_BANG] = ACTIONS(4547), - [anon_sym_suspend] = ACTIONS(4545), - [anon_sym_sealed] = ACTIONS(4545), - [anon_sym_annotation] = ACTIONS(4545), - [anon_sym_data] = ACTIONS(4545), - [anon_sym_inner] = ACTIONS(4545), - [anon_sym_value] = ACTIONS(4545), - [anon_sym_override] = ACTIONS(4545), - [anon_sym_lateinit] = ACTIONS(4545), - [anon_sym_public] = ACTIONS(4545), - [anon_sym_private] = ACTIONS(4545), - [anon_sym_internal] = ACTIONS(4545), - [anon_sym_protected] = ACTIONS(4545), - [anon_sym_tailrec] = ACTIONS(4545), - [anon_sym_operator] = ACTIONS(4545), - [anon_sym_infix] = ACTIONS(4545), - [anon_sym_inline] = ACTIONS(4545), - [anon_sym_external] = ACTIONS(4545), - [sym_property_modifier] = ACTIONS(4545), - [anon_sym_abstract] = ACTIONS(4545), - [anon_sym_final] = ACTIONS(4545), - [anon_sym_open] = ACTIONS(4545), - [anon_sym_vararg] = ACTIONS(4545), - [anon_sym_noinline] = ACTIONS(4545), - [anon_sym_crossinline] = ACTIONS(4545), - [anon_sym_expect] = ACTIONS(4545), - [anon_sym_actual] = ACTIONS(4545), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4547), - [sym__automatic_semicolon] = ACTIONS(4547), - [sym_safe_nav] = ACTIONS(4547), + [sym__alpha_identifier] = ACTIONS(4634), + [anon_sym_AT] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_DOT] = ACTIONS(4634), + [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_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_value] = 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), }, [3802] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1784), - [sym__comparison_operator] = STATE(1819), - [sym__in_operator] = STATE(1859), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1861), - [sym__multiplicative_operator] = STATE(1868), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1906), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7037), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7039), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7043), - [anon_sym_DOT_DOT] = ACTIONS(7045), - [anon_sym_QMARK_COLON] = ACTIONS(7047), - [anon_sym_AMP_AMP] = ACTIONS(7049), - [anon_sym_PIPE_PIPE] = ACTIONS(7051), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3187), - [anon_sym_DASH_EQ] = ACTIONS(3187), - [anon_sym_STAR_EQ] = ACTIONS(3187), - [anon_sym_SLASH_EQ] = ACTIONS(3187), - [anon_sym_PERCENT_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(7055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7059), - [anon_sym_GT_EQ] = ACTIONS(7059), - [anon_sym_BANGin] = ACTIONS(7061), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7067), - [anon_sym_DASH] = ACTIONS(7067), - [anon_sym_SLASH] = ACTIONS(7039), - [anon_sym_PERCENT] = ACTIONS(7039), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3187), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(2969), + [sym_enum_class_body] = STATE(3221), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3508), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [3803] = { - [sym_class_body] = STATE(3898), - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_suspend] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_annotation] = ACTIONS(4507), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_lateinit] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_tailrec] = ACTIONS(4507), - [anon_sym_operator] = ACTIONS(4507), - [anon_sym_infix] = ACTIONS(4507), - [anon_sym_inline] = ACTIONS(4507), - [anon_sym_external] = ACTIONS(4507), - [sym_property_modifier] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_final] = ACTIONS(4507), - [anon_sym_open] = ACTIONS(4507), - [anon_sym_vararg] = ACTIONS(4507), - [anon_sym_noinline] = ACTIONS(4507), - [anon_sym_crossinline] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4509), - [sym__automatic_semicolon] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(7021), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [3804] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(6974), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3221), + [sym_type_constraints] = STATE(2990), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_fun] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_this] = ACTIONS(3218), + [anon_sym_super] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3218), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_null] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_when] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3222), + [anon_sym_continue_AT] = ACTIONS(3222), + [anon_sym_break_AT] = ACTIONS(3222), + [anon_sym_this_AT] = ACTIONS(3222), + [anon_sym_super_AT] = ACTIONS(3222), + [sym_real_literal] = ACTIONS(3222), + [sym_integer_literal] = ACTIONS(3218), + [sym_hex_literal] = ACTIONS(3222), + [sym_bin_literal] = ACTIONS(3222), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3222), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3222), }, [3805] = { - [sym_enum_class_body] = STATE(3970), - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3007), + [sym_enum_class_body] = STATE(3261), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7063), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, [3806] = { - [sym__alpha_identifier] = ACTIONS(4187), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_LBRACK] = ACTIONS(4189), - [anon_sym_DOT] = ACTIONS(4187), - [anon_sym_typealias] = ACTIONS(4187), - [anon_sym_class] = ACTIONS(4187), - [anon_sym_interface] = ACTIONS(4187), - [anon_sym_enum] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym_val] = ACTIONS(4187), - [anon_sym_var] = ACTIONS(4187), - [anon_sym_object] = ACTIONS(4187), - [anon_sym_fun] = ACTIONS(4187), - [anon_sym_get] = ACTIONS(4187), - [anon_sym_set] = ACTIONS(4187), - [anon_sym_this] = ACTIONS(4187), - [anon_sym_super] = ACTIONS(4187), - [anon_sym_STAR] = ACTIONS(4189), - [sym_label] = ACTIONS(4187), - [anon_sym_for] = ACTIONS(4187), - [anon_sym_while] = ACTIONS(4187), - [anon_sym_do] = ACTIONS(4187), - [anon_sym_null] = ACTIONS(4187), - [anon_sym_if] = ACTIONS(4187), - [anon_sym_when] = ACTIONS(4187), - [anon_sym_try] = ACTIONS(4187), - [anon_sym_throw] = ACTIONS(4187), - [anon_sym_return] = ACTIONS(4187), - [anon_sym_continue] = ACTIONS(4187), - [anon_sym_break] = ACTIONS(4187), - [anon_sym_COLON_COLON] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4187), - [anon_sym_DASH] = ACTIONS(4187), - [anon_sym_PLUS_PLUS] = ACTIONS(4189), - [anon_sym_DASH_DASH] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_suspend] = ACTIONS(4187), - [anon_sym_sealed] = ACTIONS(4187), - [anon_sym_annotation] = ACTIONS(4187), - [anon_sym_data] = ACTIONS(4187), - [anon_sym_inner] = ACTIONS(4187), - [anon_sym_value] = ACTIONS(4187), - [anon_sym_override] = ACTIONS(4187), - [anon_sym_lateinit] = ACTIONS(4187), - [anon_sym_public] = ACTIONS(4187), - [anon_sym_private] = ACTIONS(4187), - [anon_sym_internal] = ACTIONS(4187), - [anon_sym_protected] = ACTIONS(4187), - [anon_sym_tailrec] = ACTIONS(4187), - [anon_sym_operator] = ACTIONS(4187), - [anon_sym_infix] = ACTIONS(4187), - [anon_sym_inline] = ACTIONS(4187), - [anon_sym_external] = ACTIONS(4187), - [sym_property_modifier] = ACTIONS(4187), - [anon_sym_abstract] = ACTIONS(4187), - [anon_sym_final] = ACTIONS(4187), - [anon_sym_open] = ACTIONS(4187), - [anon_sym_vararg] = ACTIONS(4187), - [anon_sym_noinline] = ACTIONS(4187), - [anon_sym_crossinline] = ACTIONS(4187), - [anon_sym_expect] = ACTIONS(4187), - [anon_sym_actual] = ACTIONS(4187), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4189), - [anon_sym_continue_AT] = ACTIONS(4189), - [anon_sym_break_AT] = ACTIONS(4189), - [anon_sym_this_AT] = ACTIONS(4189), - [anon_sym_super_AT] = ACTIONS(4189), - [sym_real_literal] = ACTIONS(4189), - [sym_integer_literal] = ACTIONS(4187), - [sym_hex_literal] = ACTIONS(4189), - [sym_bin_literal] = ACTIONS(4189), - [anon_sym_true] = ACTIONS(4187), - [anon_sym_false] = ACTIONS(4187), - [anon_sym_SQUOTE] = ACTIONS(4189), - [sym__backtick_identifier] = ACTIONS(4189), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4189), - }, + [sym_class_body] = STATE(3893), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, [3807] = { - [sym_function_body] = STATE(3897), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(7109), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(7021), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [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(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [3808] = { - [sym_function_body] = STATE(3833), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(7111), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4244), + [anon_sym_AT] = ACTIONS(4246), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4244), + [anon_sym_typealias] = ACTIONS(4244), + [anon_sym_class] = ACTIONS(4244), + [anon_sym_interface] = ACTIONS(4244), + [anon_sym_enum] = ACTIONS(4244), + [anon_sym_LBRACE] = ACTIONS(4246), + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_val] = ACTIONS(4244), + [anon_sym_var] = ACTIONS(4244), + [anon_sym_object] = ACTIONS(4244), + [anon_sym_fun] = ACTIONS(4244), + [anon_sym_get] = ACTIONS(4244), + [anon_sym_set] = ACTIONS(4244), + [anon_sym_this] = ACTIONS(4244), + [anon_sym_super] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(4246), + [sym_label] = ACTIONS(4244), + [anon_sym_for] = ACTIONS(4244), + [anon_sym_while] = ACTIONS(4244), + [anon_sym_do] = ACTIONS(4244), + [anon_sym_null] = ACTIONS(4244), + [anon_sym_if] = 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] = ACTIONS(4244), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_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_value] = ACTIONS(4244), + [anon_sym_override] = ACTIONS(4244), + [anon_sym_lateinit] = ACTIONS(4244), + [anon_sym_public] = ACTIONS(4244), + [anon_sym_private] = ACTIONS(4244), + [anon_sym_internal] = ACTIONS(4244), + [anon_sym_protected] = ACTIONS(4244), + [anon_sym_tailrec] = ACTIONS(4244), + [anon_sym_operator] = ACTIONS(4244), + [anon_sym_infix] = ACTIONS(4244), + [anon_sym_inline] = ACTIONS(4244), + [anon_sym_external] = ACTIONS(4244), + [sym_property_modifier] = ACTIONS(4244), + [anon_sym_abstract] = ACTIONS(4244), + [anon_sym_final] = ACTIONS(4244), + [anon_sym_open] = ACTIONS(4244), + [anon_sym_vararg] = ACTIONS(4244), + [anon_sym_noinline] = ACTIONS(4244), + [anon_sym_crossinline] = ACTIONS(4244), + [anon_sym_expect] = ACTIONS(4244), + [anon_sym_actual] = ACTIONS(4244), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4246), + [anon_sym_continue_AT] = ACTIONS(4246), + [anon_sym_break_AT] = ACTIONS(4246), + [anon_sym_this_AT] = ACTIONS(4246), + [anon_sym_super_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_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4246), }, [3809] = { - [sym_class_body] = STATE(3826), - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_suspend] = ACTIONS(4468), - [anon_sym_sealed] = ACTIONS(4468), - [anon_sym_annotation] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_lateinit] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_tailrec] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_infix] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym_external] = ACTIONS(4468), - [sym_property_modifier] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_final] = ACTIONS(4468), - [anon_sym_open] = ACTIONS(4468), - [anon_sym_vararg] = ACTIONS(4468), - [anon_sym_noinline] = ACTIONS(4468), - [anon_sym_crossinline] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4470), - [sym__automatic_semicolon] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), + [sym_class_body] = STATE(3261), + [sym_type_constraints] = STATE(3012), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7065), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4202), + [anon_sym_fun] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_this] = ACTIONS(4202), + [anon_sym_super] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4202), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_null] = ACTIONS(4202), + [anon_sym_if] = ACTIONS(4202), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_when] = ACTIONS(4202), + [anon_sym_try] = ACTIONS(4202), + [anon_sym_throw] = ACTIONS(4202), + [anon_sym_return] = ACTIONS(4202), + [anon_sym_continue] = ACTIONS(4202), + [anon_sym_break] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4204), + [anon_sym_continue_AT] = ACTIONS(4204), + [anon_sym_break_AT] = ACTIONS(4204), + [anon_sym_this_AT] = ACTIONS(4204), + [anon_sym_super_AT] = ACTIONS(4204), + [sym_real_literal] = ACTIONS(4204), + [sym_integer_literal] = ACTIONS(4202), + [sym_hex_literal] = ACTIONS(4204), + [sym_bin_literal] = ACTIONS(4204), + [anon_sym_true] = ACTIONS(4202), + [anon_sym_false] = ACTIONS(4202), + [anon_sym_SQUOTE] = ACTIONS(4204), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4204), }, [3810] = { - [sym_class_body] = STATE(3967), - [sym__alpha_identifier] = ACTIONS(4672), - [anon_sym_AT] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(4674), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_COMMA] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4672), - [anon_sym_GT] = ACTIONS(4672), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_SEMI] = ACTIONS(4674), - [anon_sym_get] = ACTIONS(4672), - [anon_sym_set] = ACTIONS(4672), - [anon_sym_STAR] = ACTIONS(4672), - [sym_label] = ACTIONS(4674), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(4674), - [anon_sym_QMARK_COLON] = ACTIONS(4674), - [anon_sym_AMP_AMP] = ACTIONS(4674), - [anon_sym_PIPE_PIPE] = ACTIONS(4674), - [anon_sym_else] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_PLUS_EQ] = ACTIONS(4674), - [anon_sym_DASH_EQ] = ACTIONS(4674), - [anon_sym_STAR_EQ] = ACTIONS(4674), - [anon_sym_SLASH_EQ] = ACTIONS(4674), - [anon_sym_PERCENT_EQ] = ACTIONS(4674), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), - [anon_sym_LT_EQ] = ACTIONS(4674), - [anon_sym_GT_EQ] = ACTIONS(4674), - [anon_sym_BANGin] = ACTIONS(4674), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_BANGis] = ACTIONS(4674), - [anon_sym_PLUS] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_as_QMARK] = ACTIONS(4674), - [anon_sym_PLUS_PLUS] = ACTIONS(4674), - [anon_sym_DASH_DASH] = ACTIONS(4674), - [anon_sym_BANG_BANG] = ACTIONS(4674), - [anon_sym_suspend] = ACTIONS(4672), - [anon_sym_sealed] = ACTIONS(4672), - [anon_sym_annotation] = ACTIONS(4672), - [anon_sym_data] = ACTIONS(4672), - [anon_sym_inner] = ACTIONS(4672), - [anon_sym_value] = ACTIONS(4672), - [anon_sym_override] = ACTIONS(4672), - [anon_sym_lateinit] = ACTIONS(4672), - [anon_sym_public] = ACTIONS(4672), - [anon_sym_private] = ACTIONS(4672), - [anon_sym_internal] = ACTIONS(4672), - [anon_sym_protected] = ACTIONS(4672), - [anon_sym_tailrec] = ACTIONS(4672), - [anon_sym_operator] = ACTIONS(4672), - [anon_sym_infix] = ACTIONS(4672), - [anon_sym_inline] = ACTIONS(4672), - [anon_sym_external] = ACTIONS(4672), - [sym_property_modifier] = ACTIONS(4672), - [anon_sym_abstract] = ACTIONS(4672), - [anon_sym_final] = ACTIONS(4672), - [anon_sym_open] = ACTIONS(4672), - [anon_sym_vararg] = ACTIONS(4672), - [anon_sym_noinline] = ACTIONS(4672), - [anon_sym_crossinline] = ACTIONS(4672), - [anon_sym_expect] = ACTIONS(4672), - [anon_sym_actual] = ACTIONS(4672), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4674), - [sym__automatic_semicolon] = ACTIONS(4674), - [sym_safe_nav] = ACTIONS(4674), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1696), + [sym__comparison_operator] = STATE(1697), + [sym__in_operator] = STATE(1698), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1700), + [sym__multiplicative_operator] = STATE(1702), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1704), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(6983), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(6985), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(6989), + [anon_sym_DOT_DOT] = ACTIONS(6991), + [anon_sym_QMARK_COLON] = ACTIONS(6993), + [anon_sym_AMP_AMP] = ACTIONS(7021), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(7025), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7027), + [anon_sym_EQ_EQ] = ACTIONS(7025), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7027), + [anon_sym_LT_EQ] = ACTIONS(6997), + [anon_sym_GT_EQ] = ACTIONS(6997), + [anon_sym_BANGin] = ACTIONS(6999), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7005), + [anon_sym_DASH] = ACTIONS(7005), + [anon_sym_SLASH] = ACTIONS(6985), + [anon_sym_PERCENT] = ACTIONS(6985), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [3811] = { - [sym_enum_class_body] = STATE(3871), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [sym__alpha_identifier] = ACTIONS(4563), + [anon_sym_AT] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4565), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_as] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4565), + [anon_sym_RBRACE] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4565), + [anon_sym_COMMA] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4563), + [anon_sym_GT] = ACTIONS(4563), + [anon_sym_where] = ACTIONS(4563), + [anon_sym_SEMI] = ACTIONS(4565), + [anon_sym_get] = ACTIONS(4563), + [anon_sym_set] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [sym_label] = ACTIONS(4565), + [anon_sym_in] = ACTIONS(4563), + [anon_sym_DOT_DOT] = ACTIONS(4565), + [anon_sym_QMARK_COLON] = ACTIONS(4565), + [anon_sym_AMP_AMP] = ACTIONS(4565), + [anon_sym_PIPE_PIPE] = ACTIONS(4565), + [anon_sym_else] = ACTIONS(4563), + [anon_sym_COLON_COLON] = ACTIONS(4565), + [anon_sym_PLUS_EQ] = ACTIONS(4565), + [anon_sym_DASH_EQ] = ACTIONS(4565), + [anon_sym_STAR_EQ] = ACTIONS(4565), + [anon_sym_SLASH_EQ] = ACTIONS(4565), + [anon_sym_PERCENT_EQ] = ACTIONS(4565), + [anon_sym_BANG_EQ] = ACTIONS(4563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4565), + [anon_sym_EQ_EQ] = ACTIONS(4563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4565), + [anon_sym_LT_EQ] = ACTIONS(4565), + [anon_sym_GT_EQ] = ACTIONS(4565), + [anon_sym_BANGin] = ACTIONS(4565), + [anon_sym_is] = ACTIONS(4563), + [anon_sym_BANGis] = ACTIONS(4565), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4563), + [anon_sym_PERCENT] = ACTIONS(4563), + [anon_sym_as_QMARK] = ACTIONS(4565), + [anon_sym_PLUS_PLUS] = ACTIONS(4565), + [anon_sym_DASH_DASH] = ACTIONS(4565), + [anon_sym_BANG_BANG] = ACTIONS(4565), + [anon_sym_suspend] = ACTIONS(4563), + [anon_sym_sealed] = ACTIONS(4563), + [anon_sym_annotation] = ACTIONS(4563), + [anon_sym_data] = ACTIONS(4563), + [anon_sym_inner] = ACTIONS(4563), + [anon_sym_value] = ACTIONS(4563), + [anon_sym_override] = ACTIONS(4563), + [anon_sym_lateinit] = ACTIONS(4563), + [anon_sym_public] = ACTIONS(4563), + [anon_sym_private] = ACTIONS(4563), + [anon_sym_internal] = ACTIONS(4563), + [anon_sym_protected] = ACTIONS(4563), + [anon_sym_tailrec] = ACTIONS(4563), + [anon_sym_operator] = ACTIONS(4563), + [anon_sym_infix] = ACTIONS(4563), + [anon_sym_inline] = ACTIONS(4563), + [anon_sym_external] = ACTIONS(4563), + [sym_property_modifier] = ACTIONS(4563), + [anon_sym_abstract] = ACTIONS(4563), + [anon_sym_final] = ACTIONS(4563), + [anon_sym_open] = ACTIONS(4563), + [anon_sym_vararg] = ACTIONS(4563), + [anon_sym_noinline] = ACTIONS(4563), + [anon_sym_crossinline] = ACTIONS(4563), + [anon_sym_expect] = ACTIONS(4563), + [anon_sym_actual] = ACTIONS(4563), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4565), + [sym__automatic_semicolon] = ACTIONS(4565), + [sym_safe_nav] = ACTIONS(4565), [sym_multiline_comment] = ACTIONS(3), }, [3812] = { - [sym__alpha_identifier] = ACTIONS(4617), - [anon_sym_AT] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4619), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_as] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(4617), - [anon_sym_LBRACE] = ACTIONS(4619), - [anon_sym_RBRACE] = ACTIONS(4619), - [anon_sym_LPAREN] = ACTIONS(4619), - [anon_sym_COMMA] = ACTIONS(4619), - [anon_sym_by] = ACTIONS(4617), - [anon_sym_LT] = ACTIONS(4617), - [anon_sym_GT] = ACTIONS(4617), - [anon_sym_where] = ACTIONS(4617), - [anon_sym_SEMI] = ACTIONS(4619), - [anon_sym_get] = ACTIONS(4617), - [anon_sym_set] = ACTIONS(4617), - [anon_sym_STAR] = ACTIONS(4617), - [sym_label] = ACTIONS(4619), - [anon_sym_in] = ACTIONS(4617), - [anon_sym_DOT_DOT] = ACTIONS(4619), - [anon_sym_QMARK_COLON] = ACTIONS(4619), - [anon_sym_AMP_AMP] = ACTIONS(4619), - [anon_sym_PIPE_PIPE] = ACTIONS(4619), - [anon_sym_else] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(4619), - [anon_sym_PLUS_EQ] = ACTIONS(4619), - [anon_sym_DASH_EQ] = ACTIONS(4619), - [anon_sym_STAR_EQ] = ACTIONS(4619), - [anon_sym_SLASH_EQ] = ACTIONS(4619), - [anon_sym_PERCENT_EQ] = ACTIONS(4619), - [anon_sym_BANG_EQ] = ACTIONS(4617), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4619), - [anon_sym_EQ_EQ] = ACTIONS(4617), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4619), - [anon_sym_LT_EQ] = ACTIONS(4619), - [anon_sym_GT_EQ] = ACTIONS(4619), - [anon_sym_BANGin] = ACTIONS(4619), - [anon_sym_is] = ACTIONS(4617), - [anon_sym_BANGis] = ACTIONS(4619), - [anon_sym_PLUS] = ACTIONS(4617), - [anon_sym_DASH] = ACTIONS(4617), - [anon_sym_SLASH] = ACTIONS(4617), - [anon_sym_PERCENT] = ACTIONS(4617), - [anon_sym_as_QMARK] = ACTIONS(4619), - [anon_sym_PLUS_PLUS] = ACTIONS(4619), - [anon_sym_DASH_DASH] = ACTIONS(4619), - [anon_sym_BANG_BANG] = ACTIONS(4619), - [anon_sym_suspend] = ACTIONS(4617), - [anon_sym_sealed] = ACTIONS(4617), - [anon_sym_annotation] = ACTIONS(4617), - [anon_sym_data] = ACTIONS(4617), - [anon_sym_inner] = ACTIONS(4617), - [anon_sym_value] = ACTIONS(4617), - [anon_sym_override] = ACTIONS(4617), - [anon_sym_lateinit] = ACTIONS(4617), - [anon_sym_public] = ACTIONS(4617), - [anon_sym_private] = ACTIONS(4617), - [anon_sym_internal] = ACTIONS(4617), - [anon_sym_protected] = ACTIONS(4617), - [anon_sym_tailrec] = ACTIONS(4617), - [anon_sym_operator] = ACTIONS(4617), - [anon_sym_infix] = ACTIONS(4617), - [anon_sym_inline] = ACTIONS(4617), - [anon_sym_external] = ACTIONS(4617), - [sym_property_modifier] = ACTIONS(4617), - [anon_sym_abstract] = ACTIONS(4617), - [anon_sym_final] = ACTIONS(4617), - [anon_sym_open] = ACTIONS(4617), - [anon_sym_vararg] = ACTIONS(4617), - [anon_sym_noinline] = ACTIONS(4617), - [anon_sym_crossinline] = ACTIONS(4617), - [anon_sym_expect] = ACTIONS(4617), - [anon_sym_actual] = ACTIONS(4617), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4619), - [sym__automatic_semicolon] = ACTIONS(4619), - [sym_safe_nav] = ACTIONS(4619), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3016), + [sym_enum_class_body] = STATE(3251), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_fun] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3240), + [anon_sym_continue_AT] = ACTIONS(3240), + [anon_sym_break_AT] = ACTIONS(3240), + [anon_sym_this_AT] = ACTIONS(3240), + [anon_sym_super_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), }, [3813] = { - [sym_value_arguments] = STATE(3256), - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(7113), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), + [sym__alpha_identifier] = ACTIONS(4148), + [anon_sym_AT] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_DOT] = ACTIONS(4148), + [anon_sym_typealias] = ACTIONS(4148), + [anon_sym_class] = ACTIONS(4148), + [anon_sym_interface] = ACTIONS(4148), + [anon_sym_enum] = ACTIONS(4148), + [anon_sym_LBRACE] = ACTIONS(4150), + [anon_sym_LPAREN] = ACTIONS(4150), + [anon_sym_val] = ACTIONS(4148), + [anon_sym_var] = ACTIONS(4148), + [anon_sym_object] = ACTIONS(4148), + [anon_sym_fun] = 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(4150), + [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(4150), + [anon_sym_PLUS] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4150), + [anon_sym_BANG] = ACTIONS(4150), + [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_value] = 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(4150), + [anon_sym_continue_AT] = ACTIONS(4150), + [anon_sym_break_AT] = ACTIONS(4150), + [anon_sym_this_AT] = ACTIONS(4150), + [anon_sym_super_AT] = ACTIONS(4150), + [sym_real_literal] = ACTIONS(4150), + [sym_integer_literal] = ACTIONS(4148), + [sym_hex_literal] = ACTIONS(4150), + [sym_bin_literal] = ACTIONS(4150), + [anon_sym_true] = ACTIONS(4148), + [anon_sym_false] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4150), + [sym__backtick_identifier] = ACTIONS(4150), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4150), }, [3814] = { - [sym__alpha_identifier] = ACTIONS(4662), - [anon_sym_AT] = ACTIONS(4662), - [anon_sym_LBRACK] = ACTIONS(4664), - [anon_sym_DOT] = ACTIONS(4662), - [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_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_value] = 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), - [anon_sym_AT2] = ACTIONS(7115), - [sym__backtick_identifier] = ACTIONS(4664), - [sym__automatic_semicolon] = ACTIONS(4664), - [sym_safe_nav] = ACTIONS(4664), - [sym_multiline_comment] = ACTIONS(3), + [sym_type_constraints] = STATE(3028), + [sym_enum_class_body] = STATE(3188), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(7067), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(3164), + [anon_sym_object] = ACTIONS(4152), + [anon_sym_fun] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_this] = ACTIONS(4152), + [anon_sym_super] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [sym_label] = ACTIONS(4152), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_null] = ACTIONS(4152), + [anon_sym_if] = ACTIONS(4152), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_when] = ACTIONS(4152), + [anon_sym_try] = ACTIONS(4152), + [anon_sym_throw] = ACTIONS(4152), + [anon_sym_return] = ACTIONS(4152), + [anon_sym_continue] = ACTIONS(4152), + [anon_sym_break] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4154), + [anon_sym_continue_AT] = ACTIONS(4154), + [anon_sym_break_AT] = ACTIONS(4154), + [anon_sym_this_AT] = ACTIONS(4154), + [anon_sym_super_AT] = ACTIONS(4154), + [sym_real_literal] = ACTIONS(4154), + [sym_integer_literal] = ACTIONS(4152), + [sym_hex_literal] = ACTIONS(4154), + [sym_bin_literal] = ACTIONS(4154), + [anon_sym_true] = ACTIONS(4152), + [anon_sym_false] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4154), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4154), }, [3815] = { - [sym__alpha_identifier] = ACTIONS(4658), - [anon_sym_AT] = ACTIONS(4660), - [anon_sym_COLON] = ACTIONS(4658), - [anon_sym_LBRACK] = ACTIONS(4660), - [anon_sym_DOT] = ACTIONS(4658), - [anon_sym_as] = ACTIONS(4658), - [anon_sym_EQ] = ACTIONS(4658), - [anon_sym_LBRACE] = ACTIONS(4660), - [anon_sym_RBRACE] = ACTIONS(4660), - [anon_sym_LPAREN] = ACTIONS(4660), - [anon_sym_COMMA] = ACTIONS(4660), - [anon_sym_LT] = ACTIONS(4658), - [anon_sym_GT] = ACTIONS(4658), - [anon_sym_where] = ACTIONS(4658), - [anon_sym_SEMI] = ACTIONS(4660), - [anon_sym_get] = ACTIONS(4658), - [anon_sym_set] = ACTIONS(4658), - [anon_sym_STAR] = ACTIONS(4658), - [sym_label] = ACTIONS(4660), - [anon_sym_in] = ACTIONS(4658), - [anon_sym_DOT_DOT] = ACTIONS(4660), - [anon_sym_QMARK_COLON] = ACTIONS(4660), - [anon_sym_AMP_AMP] = ACTIONS(4660), - [anon_sym_PIPE_PIPE] = ACTIONS(4660), - [anon_sym_else] = ACTIONS(4658), - [anon_sym_COLON_COLON] = ACTIONS(4660), - [anon_sym_PLUS_EQ] = ACTIONS(4660), - [anon_sym_DASH_EQ] = ACTIONS(4660), - [anon_sym_STAR_EQ] = ACTIONS(4660), - [anon_sym_SLASH_EQ] = ACTIONS(4660), - [anon_sym_PERCENT_EQ] = ACTIONS(4660), - [anon_sym_BANG_EQ] = ACTIONS(4658), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4660), - [anon_sym_EQ_EQ] = ACTIONS(4658), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4660), - [anon_sym_LT_EQ] = ACTIONS(4660), - [anon_sym_GT_EQ] = ACTIONS(4660), - [anon_sym_BANGin] = ACTIONS(4660), - [anon_sym_is] = ACTIONS(4658), - [anon_sym_BANGis] = ACTIONS(4660), - [anon_sym_PLUS] = ACTIONS(4658), - [anon_sym_DASH] = ACTIONS(4658), - [anon_sym_SLASH] = ACTIONS(4658), - [anon_sym_PERCENT] = ACTIONS(4658), - [anon_sym_as_QMARK] = ACTIONS(4660), - [anon_sym_PLUS_PLUS] = ACTIONS(4660), - [anon_sym_DASH_DASH] = ACTIONS(4660), - [anon_sym_BANG_BANG] = ACTIONS(4660), - [anon_sym_suspend] = ACTIONS(4658), - [anon_sym_sealed] = ACTIONS(4658), - [anon_sym_annotation] = ACTIONS(4658), - [anon_sym_data] = ACTIONS(4658), - [anon_sym_inner] = ACTIONS(4658), - [anon_sym_value] = ACTIONS(4658), - [anon_sym_override] = ACTIONS(4658), - [anon_sym_lateinit] = ACTIONS(4658), - [anon_sym_public] = ACTIONS(4658), - [anon_sym_private] = ACTIONS(4658), - [anon_sym_internal] = ACTIONS(4658), - [anon_sym_protected] = ACTIONS(4658), - [anon_sym_tailrec] = ACTIONS(4658), - [anon_sym_operator] = ACTIONS(4658), - [anon_sym_infix] = ACTIONS(4658), - [anon_sym_inline] = ACTIONS(4658), - [anon_sym_external] = ACTIONS(4658), - [sym_property_modifier] = ACTIONS(4658), - [anon_sym_abstract] = ACTIONS(4658), - [anon_sym_final] = ACTIONS(4658), - [anon_sym_open] = ACTIONS(4658), - [anon_sym_vararg] = ACTIONS(4658), - [anon_sym_noinline] = ACTIONS(4658), - [anon_sym_crossinline] = ACTIONS(4658), - [anon_sym_expect] = ACTIONS(4658), - [anon_sym_actual] = ACTIONS(4658), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4660), - [sym__automatic_semicolon] = ACTIONS(4660), - [sym_safe_nav] = ACTIONS(4660), + [sym__alpha_identifier] = ACTIONS(4521), + [anon_sym_AT] = ACTIONS(4523), + [anon_sym_COLON] = ACTIONS(4521), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_DOT] = ACTIONS(4521), + [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_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_value] = 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), }, [3816] = { - [sym__alpha_identifier] = ACTIONS(4559), - [anon_sym_AT] = ACTIONS(4561), - [anon_sym_LBRACK] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_as] = ACTIONS(4559), - [anon_sym_EQ] = ACTIONS(4559), - [anon_sym_LBRACE] = ACTIONS(4561), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym_COMMA] = ACTIONS(4561), - [anon_sym_by] = ACTIONS(4559), - [anon_sym_LT] = ACTIONS(4559), - [anon_sym_GT] = ACTIONS(4559), - [anon_sym_where] = ACTIONS(4559), - [anon_sym_SEMI] = ACTIONS(4561), - [anon_sym_get] = ACTIONS(4559), - [anon_sym_set] = ACTIONS(4559), - [anon_sym_STAR] = ACTIONS(4559), - [sym_label] = ACTIONS(4561), - [anon_sym_in] = ACTIONS(4559), - [anon_sym_DOT_DOT] = ACTIONS(4561), - [anon_sym_QMARK_COLON] = ACTIONS(4561), - [anon_sym_AMP_AMP] = ACTIONS(4561), - [anon_sym_PIPE_PIPE] = ACTIONS(4561), - [anon_sym_else] = ACTIONS(4559), - [anon_sym_COLON_COLON] = ACTIONS(4561), - [anon_sym_PLUS_EQ] = ACTIONS(4561), - [anon_sym_DASH_EQ] = ACTIONS(4561), - [anon_sym_STAR_EQ] = ACTIONS(4561), - [anon_sym_SLASH_EQ] = ACTIONS(4561), - [anon_sym_PERCENT_EQ] = ACTIONS(4561), - [anon_sym_BANG_EQ] = ACTIONS(4559), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4561), - [anon_sym_EQ_EQ] = ACTIONS(4559), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4561), - [anon_sym_LT_EQ] = ACTIONS(4561), - [anon_sym_GT_EQ] = ACTIONS(4561), - [anon_sym_BANGin] = ACTIONS(4561), - [anon_sym_is] = ACTIONS(4559), - [anon_sym_BANGis] = ACTIONS(4561), - [anon_sym_PLUS] = ACTIONS(4559), - [anon_sym_DASH] = ACTIONS(4559), - [anon_sym_SLASH] = ACTIONS(4559), - [anon_sym_PERCENT] = ACTIONS(4559), - [anon_sym_as_QMARK] = ACTIONS(4561), - [anon_sym_PLUS_PLUS] = ACTIONS(4561), - [anon_sym_DASH_DASH] = ACTIONS(4561), - [anon_sym_BANG_BANG] = ACTIONS(4561), - [anon_sym_suspend] = ACTIONS(4559), - [anon_sym_sealed] = ACTIONS(4559), - [anon_sym_annotation] = ACTIONS(4559), - [anon_sym_data] = ACTIONS(4559), - [anon_sym_inner] = ACTIONS(4559), - [anon_sym_value] = ACTIONS(4559), - [anon_sym_override] = ACTIONS(4559), - [anon_sym_lateinit] = ACTIONS(4559), - [anon_sym_public] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4559), - [anon_sym_internal] = ACTIONS(4559), - [anon_sym_protected] = ACTIONS(4559), - [anon_sym_tailrec] = ACTIONS(4559), - [anon_sym_operator] = ACTIONS(4559), - [anon_sym_infix] = ACTIONS(4559), - [anon_sym_inline] = ACTIONS(4559), - [anon_sym_external] = ACTIONS(4559), - [sym_property_modifier] = ACTIONS(4559), - [anon_sym_abstract] = ACTIONS(4559), - [anon_sym_final] = ACTIONS(4559), - [anon_sym_open] = ACTIONS(4559), - [anon_sym_vararg] = ACTIONS(4559), - [anon_sym_noinline] = ACTIONS(4559), - [anon_sym_crossinline] = ACTIONS(4559), - [anon_sym_expect] = ACTIONS(4559), - [anon_sym_actual] = ACTIONS(4559), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4561), - [sym__automatic_semicolon] = ACTIONS(4561), - [sym_safe_nav] = ACTIONS(4561), + [sym__alpha_identifier] = ACTIONS(4270), + [anon_sym_AT] = ACTIONS(4272), + [anon_sym_LBRACK] = ACTIONS(4272), + [anon_sym_DOT] = ACTIONS(4270), + [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_SEMI] = ACTIONS(4272), + [anon_sym_get] = ACTIONS(4270), + [anon_sym_set] = 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_value] = 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), }, [3817] = { - [sym_function_body] = STATE(3396), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(7117), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_RBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [sym_enum_class_body] = STATE(3945), + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_as] = ACTIONS(4420), + [anon_sym_EQ] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(5736), + [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_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_value] = 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), }, [3818] = { - [sym_function_body] = STATE(3392), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(7119), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_RBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4208), - [anon_sym_DASH_GT] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_while] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), + [sym_class_body] = STATE(3862), + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), [sym_multiline_comment] = ACTIONS(3), }, [3819] = { - [sym__alpha_identifier] = ACTIONS(4553), - [anon_sym_AT] = ACTIONS(4556), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4553), - [anon_sym_as] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4553), - [anon_sym_LBRACE] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4553), - [anon_sym_LT] = ACTIONS(4553), - [anon_sym_GT] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_get] = ACTIONS(4553), - [anon_sym_set] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4553), - [sym_label] = ACTIONS(4556), - [anon_sym_in] = ACTIONS(4553), - [anon_sym_DOT_DOT] = ACTIONS(4556), - [anon_sym_QMARK_COLON] = ACTIONS(4556), - [anon_sym_AMP_AMP] = ACTIONS(4556), - [anon_sym_PIPE_PIPE] = ACTIONS(4556), - [anon_sym_else] = ACTIONS(4553), - [anon_sym_COLON_COLON] = ACTIONS(4556), - [anon_sym_PLUS_EQ] = ACTIONS(4556), - [anon_sym_DASH_EQ] = ACTIONS(4556), - [anon_sym_STAR_EQ] = ACTIONS(4556), - [anon_sym_SLASH_EQ] = ACTIONS(4556), - [anon_sym_PERCENT_EQ] = ACTIONS(4556), - [anon_sym_BANG_EQ] = ACTIONS(4553), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4556), - [anon_sym_EQ_EQ] = ACTIONS(4553), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4556), - [anon_sym_LT_EQ] = ACTIONS(4556), - [anon_sym_GT_EQ] = ACTIONS(4556), - [anon_sym_BANGin] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4553), - [anon_sym_BANGis] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4553), - [anon_sym_DASH] = ACTIONS(4553), - [anon_sym_SLASH] = ACTIONS(4553), - [anon_sym_PERCENT] = ACTIONS(4553), - [anon_sym_as_QMARK] = ACTIONS(4556), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_BANG_BANG] = ACTIONS(4556), - [anon_sym_suspend] = ACTIONS(4553), - [anon_sym_sealed] = ACTIONS(4553), - [anon_sym_annotation] = ACTIONS(4553), - [anon_sym_data] = ACTIONS(4553), - [anon_sym_inner] = ACTIONS(4553), - [anon_sym_value] = ACTIONS(4553), - [anon_sym_override] = ACTIONS(4553), - [anon_sym_lateinit] = ACTIONS(4553), - [anon_sym_public] = ACTIONS(4553), - [anon_sym_private] = ACTIONS(4553), - [anon_sym_internal] = ACTIONS(4553), - [anon_sym_protected] = ACTIONS(4553), - [anon_sym_tailrec] = ACTIONS(4553), - [anon_sym_operator] = ACTIONS(4553), - [anon_sym_infix] = ACTIONS(4553), - [anon_sym_inline] = ACTIONS(4553), - [anon_sym_external] = ACTIONS(4553), - [sym_property_modifier] = ACTIONS(4553), - [anon_sym_abstract] = ACTIONS(4553), - [anon_sym_final] = ACTIONS(4553), - [anon_sym_open] = ACTIONS(4553), - [anon_sym_vararg] = ACTIONS(4553), - [anon_sym_noinline] = ACTIONS(4553), - [anon_sym_crossinline] = ACTIONS(4553), - [anon_sym_expect] = ACTIONS(4553), - [anon_sym_actual] = ACTIONS(4553), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4556), - [sym__automatic_semicolon] = ACTIONS(4556), - [sym_safe_nav] = ACTIONS(4556), + [sym__alpha_identifier] = ACTIONS(4567), + [anon_sym_AT] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4569), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_as] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4569), + [anon_sym_RBRACE] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4569), + [anon_sym_COMMA] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4567), + [anon_sym_GT] = ACTIONS(4567), + [anon_sym_where] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4569), + [anon_sym_get] = ACTIONS(4567), + [anon_sym_set] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [sym_label] = ACTIONS(4569), + [anon_sym_in] = ACTIONS(4567), + [anon_sym_DOT_DOT] = ACTIONS(4569), + [anon_sym_QMARK_COLON] = ACTIONS(4569), + [anon_sym_AMP_AMP] = ACTIONS(4569), + [anon_sym_PIPE_PIPE] = ACTIONS(4569), + [anon_sym_else] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(4569), + [anon_sym_PLUS_EQ] = ACTIONS(4569), + [anon_sym_DASH_EQ] = ACTIONS(4569), + [anon_sym_STAR_EQ] = ACTIONS(4569), + [anon_sym_SLASH_EQ] = ACTIONS(4569), + [anon_sym_PERCENT_EQ] = ACTIONS(4569), + [anon_sym_BANG_EQ] = ACTIONS(4567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4569), + [anon_sym_EQ_EQ] = ACTIONS(4567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4569), + [anon_sym_LT_EQ] = ACTIONS(4569), + [anon_sym_GT_EQ] = ACTIONS(4569), + [anon_sym_BANGin] = ACTIONS(4569), + [anon_sym_is] = ACTIONS(4567), + [anon_sym_BANGis] = ACTIONS(4569), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_SLASH] = ACTIONS(4567), + [anon_sym_PERCENT] = ACTIONS(4567), + [anon_sym_as_QMARK] = ACTIONS(4569), + [anon_sym_PLUS_PLUS] = ACTIONS(4569), + [anon_sym_DASH_DASH] = ACTIONS(4569), + [anon_sym_BANG_BANG] = ACTIONS(4569), + [anon_sym_suspend] = ACTIONS(4567), + [anon_sym_sealed] = ACTIONS(4567), + [anon_sym_annotation] = ACTIONS(4567), + [anon_sym_data] = ACTIONS(4567), + [anon_sym_inner] = ACTIONS(4567), + [anon_sym_value] = ACTIONS(4567), + [anon_sym_override] = ACTIONS(4567), + [anon_sym_lateinit] = ACTIONS(4567), + [anon_sym_public] = ACTIONS(4567), + [anon_sym_private] = ACTIONS(4567), + [anon_sym_internal] = ACTIONS(4567), + [anon_sym_protected] = ACTIONS(4567), + [anon_sym_tailrec] = ACTIONS(4567), + [anon_sym_operator] = ACTIONS(4567), + [anon_sym_infix] = ACTIONS(4567), + [anon_sym_inline] = ACTIONS(4567), + [anon_sym_external] = ACTIONS(4567), + [sym_property_modifier] = ACTIONS(4567), + [anon_sym_abstract] = ACTIONS(4567), + [anon_sym_final] = ACTIONS(4567), + [anon_sym_open] = ACTIONS(4567), + [anon_sym_vararg] = ACTIONS(4567), + [anon_sym_noinline] = ACTIONS(4567), + [anon_sym_crossinline] = ACTIONS(4567), + [anon_sym_expect] = ACTIONS(4567), + [anon_sym_actual] = ACTIONS(4567), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4569), + [sym__automatic_semicolon] = ACTIONS(4569), + [sym_safe_nav] = ACTIONS(4569), [sym_multiline_comment] = ACTIONS(3), }, [3820] = { - [sym_class_body] = STATE(3871), - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), + [sym__alpha_identifier] = ACTIONS(4599), + [anon_sym_AT] = ACTIONS(4601), + [anon_sym_LBRACK] = ACTIONS(4601), + [anon_sym_DOT] = ACTIONS(4599), + [anon_sym_as] = ACTIONS(4599), + [anon_sym_EQ] = ACTIONS(4599), + [anon_sym_LBRACE] = ACTIONS(4601), + [anon_sym_RBRACE] = ACTIONS(4601), + [anon_sym_LPAREN] = ACTIONS(4601), + [anon_sym_COMMA] = ACTIONS(4601), + [anon_sym_by] = ACTIONS(4599), + [anon_sym_LT] = ACTIONS(4599), + [anon_sym_GT] = ACTIONS(4599), + [anon_sym_where] = ACTIONS(4599), + [anon_sym_SEMI] = ACTIONS(4601), + [anon_sym_get] = ACTIONS(4599), + [anon_sym_set] = ACTIONS(4599), + [anon_sym_STAR] = ACTIONS(4599), + [sym_label] = ACTIONS(4601), + [anon_sym_in] = ACTIONS(4599), + [anon_sym_DOT_DOT] = ACTIONS(4601), + [anon_sym_QMARK_COLON] = ACTIONS(4601), + [anon_sym_AMP_AMP] = ACTIONS(4601), + [anon_sym_PIPE_PIPE] = ACTIONS(4601), + [anon_sym_else] = ACTIONS(4599), + [anon_sym_COLON_COLON] = ACTIONS(4601), + [anon_sym_PLUS_EQ] = ACTIONS(4601), + [anon_sym_DASH_EQ] = ACTIONS(4601), + [anon_sym_STAR_EQ] = ACTIONS(4601), + [anon_sym_SLASH_EQ] = ACTIONS(4601), + [anon_sym_PERCENT_EQ] = ACTIONS(4601), + [anon_sym_BANG_EQ] = ACTIONS(4599), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4601), + [anon_sym_EQ_EQ] = ACTIONS(4599), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4601), + [anon_sym_LT_EQ] = ACTIONS(4601), + [anon_sym_GT_EQ] = ACTIONS(4601), + [anon_sym_BANGin] = ACTIONS(4601), + [anon_sym_is] = ACTIONS(4599), + [anon_sym_BANGis] = ACTIONS(4601), + [anon_sym_PLUS] = ACTIONS(4599), + [anon_sym_DASH] = ACTIONS(4599), + [anon_sym_SLASH] = ACTIONS(4599), + [anon_sym_PERCENT] = ACTIONS(4599), + [anon_sym_as_QMARK] = ACTIONS(4601), + [anon_sym_PLUS_PLUS] = ACTIONS(4601), + [anon_sym_DASH_DASH] = ACTIONS(4601), + [anon_sym_BANG_BANG] = ACTIONS(4601), + [anon_sym_suspend] = ACTIONS(4599), + [anon_sym_sealed] = ACTIONS(4599), + [anon_sym_annotation] = ACTIONS(4599), + [anon_sym_data] = ACTIONS(4599), + [anon_sym_inner] = ACTIONS(4599), + [anon_sym_value] = ACTIONS(4599), + [anon_sym_override] = ACTIONS(4599), + [anon_sym_lateinit] = ACTIONS(4599), + [anon_sym_public] = ACTIONS(4599), + [anon_sym_private] = ACTIONS(4599), + [anon_sym_internal] = ACTIONS(4599), + [anon_sym_protected] = ACTIONS(4599), + [anon_sym_tailrec] = ACTIONS(4599), + [anon_sym_operator] = ACTIONS(4599), + [anon_sym_infix] = ACTIONS(4599), + [anon_sym_inline] = ACTIONS(4599), + [anon_sym_external] = ACTIONS(4599), + [sym_property_modifier] = ACTIONS(4599), + [anon_sym_abstract] = ACTIONS(4599), + [anon_sym_final] = ACTIONS(4599), + [anon_sym_open] = ACTIONS(4599), + [anon_sym_vararg] = ACTIONS(4599), + [anon_sym_noinline] = ACTIONS(4599), + [anon_sym_crossinline] = ACTIONS(4599), + [anon_sym_expect] = ACTIONS(4599), + [anon_sym_actual] = ACTIONS(4599), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4601), + [sym__automatic_semicolon] = ACTIONS(4601), + [sym_safe_nav] = ACTIONS(4601), [sym_multiline_comment] = ACTIONS(3), }, [3821] = { - [sym_function_body] = STATE(3071), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(7121), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_object] = ACTIONS(4206), - [anon_sym_fun] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_this] = ACTIONS(4206), - [anon_sym_super] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4206), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_null] = ACTIONS(4206), - [anon_sym_if] = ACTIONS(4206), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_when] = ACTIONS(4206), - [anon_sym_try] = ACTIONS(4206), - [anon_sym_throw] = ACTIONS(4206), - [anon_sym_return] = ACTIONS(4206), - [anon_sym_continue] = ACTIONS(4206), - [anon_sym_break] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4208), - [anon_sym_continue_AT] = ACTIONS(4208), - [anon_sym_break_AT] = ACTIONS(4208), - [anon_sym_this_AT] = ACTIONS(4208), - [anon_sym_super_AT] = ACTIONS(4208), - [sym_real_literal] = ACTIONS(4208), - [sym_integer_literal] = ACTIONS(4206), - [sym_hex_literal] = ACTIONS(4208), - [sym_bin_literal] = ACTIONS(4208), - [anon_sym_true] = ACTIONS(4206), - [anon_sym_false] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4208), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4208), + [sym__alpha_identifier] = ACTIONS(4382), + [anon_sym_AT] = ACTIONS(4384), + [anon_sym_COLON] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(4384), + [anon_sym_constructor] = ACTIONS(4382), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym_where] = ACTIONS(4382), + [anon_sym_object] = ACTIONS(4382), + [anon_sym_fun] = ACTIONS(4382), + [anon_sym_get] = ACTIONS(4382), + [anon_sym_set] = ACTIONS(4382), + [anon_sym_this] = ACTIONS(4382), + [anon_sym_super] = ACTIONS(4382), + [anon_sym_STAR] = ACTIONS(4384), + [sym_label] = ACTIONS(4382), + [anon_sym_in] = ACTIONS(4382), + [anon_sym_null] = ACTIONS(4382), + [anon_sym_if] = ACTIONS(4382), + [anon_sym_else] = ACTIONS(4382), + [anon_sym_when] = ACTIONS(4382), + [anon_sym_try] = ACTIONS(4382), + [anon_sym_throw] = ACTIONS(4382), + [anon_sym_return] = ACTIONS(4382), + [anon_sym_continue] = ACTIONS(4382), + [anon_sym_break] = ACTIONS(4382), + [anon_sym_COLON_COLON] = ACTIONS(4384), + [anon_sym_BANGin] = ACTIONS(4384), + [anon_sym_is] = ACTIONS(4382), + [anon_sym_BANGis] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4382), + [anon_sym_DASH] = ACTIONS(4382), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4382), + [anon_sym_suspend] = ACTIONS(4382), + [anon_sym_sealed] = ACTIONS(4382), + [anon_sym_annotation] = ACTIONS(4382), + [anon_sym_data] = ACTIONS(4382), + [anon_sym_inner] = ACTIONS(4382), + [anon_sym_value] = ACTIONS(4382), + [anon_sym_override] = ACTIONS(4382), + [anon_sym_lateinit] = ACTIONS(4382), + [anon_sym_public] = ACTIONS(4382), + [anon_sym_private] = ACTIONS(4382), + [anon_sym_internal] = ACTIONS(4382), + [anon_sym_protected] = ACTIONS(4382), + [anon_sym_tailrec] = ACTIONS(4382), + [anon_sym_operator] = ACTIONS(4382), + [anon_sym_infix] = ACTIONS(4382), + [anon_sym_inline] = ACTIONS(4382), + [anon_sym_external] = ACTIONS(4382), + [sym_property_modifier] = ACTIONS(4382), + [anon_sym_abstract] = ACTIONS(4382), + [anon_sym_final] = ACTIONS(4382), + [anon_sym_open] = ACTIONS(4382), + [anon_sym_vararg] = ACTIONS(4382), + [anon_sym_noinline] = ACTIONS(4382), + [anon_sym_crossinline] = ACTIONS(4382), + [anon_sym_expect] = ACTIONS(4382), + [anon_sym_actual] = ACTIONS(4382), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4384), + [anon_sym_continue_AT] = ACTIONS(4384), + [anon_sym_break_AT] = ACTIONS(4384), + [anon_sym_this_AT] = ACTIONS(4384), + [anon_sym_super_AT] = ACTIONS(4384), + [sym_real_literal] = ACTIONS(4384), + [sym_integer_literal] = ACTIONS(4382), + [sym_hex_literal] = ACTIONS(4384), + [sym_bin_literal] = ACTIONS(4384), + [anon_sym_true] = ACTIONS(4382), + [anon_sym_false] = ACTIONS(4382), + [anon_sym_SQUOTE] = ACTIONS(4384), + [sym__backtick_identifier] = ACTIONS(4384), + [sym__automatic_semicolon] = ACTIONS(4384), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4384), }, [3822] = { - [sym__alpha_identifier] = ACTIONS(4758), - [anon_sym_AT] = ACTIONS(4760), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4758), - [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_SEMI] = ACTIONS(4760), - [anon_sym_get] = ACTIONS(4758), - [anon_sym_set] = ACTIONS(4758), - [anon_sym_STAR] = ACTIONS(4758), - [sym_label] = ACTIONS(4760), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_QMARK_COLON] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [anon_sym_else] = ACTIONS(4758), - [anon_sym_COLON_COLON] = ACTIONS(4760), - [anon_sym_PLUS_EQ] = ACTIONS(4760), - [anon_sym_DASH_EQ] = ACTIONS(4760), - [anon_sym_STAR_EQ] = ACTIONS(4760), - [anon_sym_SLASH_EQ] = ACTIONS(4760), - [anon_sym_PERCENT_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4758), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_BANGin] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4758), - [anon_sym_BANGis] = ACTIONS(4760), - [anon_sym_PLUS] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_SLASH] = ACTIONS(4758), - [anon_sym_PERCENT] = ACTIONS(4758), - [anon_sym_as_QMARK] = ACTIONS(4760), - [anon_sym_PLUS_PLUS] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4760), - [anon_sym_BANG_BANG] = ACTIONS(4760), - [anon_sym_suspend] = ACTIONS(4758), - [anon_sym_sealed] = ACTIONS(4758), - [anon_sym_annotation] = ACTIONS(4758), - [anon_sym_data] = ACTIONS(4758), - [anon_sym_inner] = ACTIONS(4758), - [anon_sym_value] = ACTIONS(4758), - [anon_sym_override] = ACTIONS(4758), - [anon_sym_lateinit] = ACTIONS(4758), - [anon_sym_public] = ACTIONS(4758), - [anon_sym_private] = ACTIONS(4758), - [anon_sym_internal] = ACTIONS(4758), - [anon_sym_protected] = ACTIONS(4758), - [anon_sym_tailrec] = ACTIONS(4758), - [anon_sym_operator] = ACTIONS(4758), - [anon_sym_infix] = ACTIONS(4758), - [anon_sym_inline] = ACTIONS(4758), - [anon_sym_external] = ACTIONS(4758), - [sym_property_modifier] = ACTIONS(4758), - [anon_sym_abstract] = ACTIONS(4758), - [anon_sym_final] = ACTIONS(4758), - [anon_sym_open] = ACTIONS(4758), - [anon_sym_vararg] = ACTIONS(4758), - [anon_sym_noinline] = ACTIONS(4758), - [anon_sym_crossinline] = ACTIONS(4758), - [anon_sym_expect] = ACTIONS(4758), - [anon_sym_actual] = ACTIONS(4758), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4760), - [sym__automatic_semicolon] = ACTIONS(4760), - [sym_safe_nav] = ACTIONS(4760), + [sym_function_body] = STATE(3539), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(7069), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_RBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_DASH_GT] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), }, [3823] = { - [sym_enum_class_body] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), + [aux_sym__delegation_specifiers_repeat1] = STATE(3778), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [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_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4513), + [anon_sym_where] = ACTIONS(4513), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = 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_value] = 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), }, [3824] = { - [sym__alpha_identifier] = ACTIONS(4959), - [anon_sym_AT] = ACTIONS(4961), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_DOT] = ACTIONS(4959), - [anon_sym_as] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [anon_sym_LBRACE] = ACTIONS(4961), - [anon_sym_RBRACE] = ACTIONS(4961), - [anon_sym_LPAREN] = ACTIONS(4961), - [anon_sym_COMMA] = ACTIONS(4961), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_where] = 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_value] = 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_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [3825] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(7123), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [sym_label] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_suspend] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_annotation] = ACTIONS(4894), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_lateinit] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_tailrec] = ACTIONS(4894), - [anon_sym_operator] = ACTIONS(4894), - [anon_sym_infix] = ACTIONS(4894), - [anon_sym_inline] = ACTIONS(4894), - [anon_sym_external] = ACTIONS(4894), - [sym_property_modifier] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_final] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_vararg] = ACTIONS(4894), - [anon_sym_noinline] = ACTIONS(4894), - [anon_sym_crossinline] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4896), - [sym__automatic_semicolon] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), + [aux_sym__delegation_specifiers_repeat1] = STATE(3825), + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_as] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4613), + [anon_sym_RBRACE] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(7075), + [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_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(4613), + [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_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(4613), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4613), + [anon_sym_super_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), }, [3826] = { - [sym__alpha_identifier] = ACTIONS(4672), - [anon_sym_AT] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(4674), - [anon_sym_DOT] = ACTIONS(4672), - [anon_sym_as] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(4672), - [anon_sym_LBRACE] = ACTIONS(4674), - [anon_sym_RBRACE] = ACTIONS(4674), - [anon_sym_LPAREN] = ACTIONS(4674), - [anon_sym_COMMA] = ACTIONS(4674), - [anon_sym_LT] = ACTIONS(4672), - [anon_sym_GT] = ACTIONS(4672), - [anon_sym_where] = ACTIONS(4672), - [anon_sym_SEMI] = ACTIONS(4674), - [anon_sym_get] = ACTIONS(4672), - [anon_sym_set] = ACTIONS(4672), - [anon_sym_STAR] = ACTIONS(4672), - [sym_label] = ACTIONS(4674), - [anon_sym_in] = ACTIONS(4672), - [anon_sym_DOT_DOT] = ACTIONS(4674), - [anon_sym_QMARK_COLON] = ACTIONS(4674), - [anon_sym_AMP_AMP] = ACTIONS(4674), - [anon_sym_PIPE_PIPE] = ACTIONS(4674), - [anon_sym_else] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_PLUS_EQ] = ACTIONS(4674), - [anon_sym_DASH_EQ] = ACTIONS(4674), - [anon_sym_STAR_EQ] = ACTIONS(4674), - [anon_sym_SLASH_EQ] = ACTIONS(4674), - [anon_sym_PERCENT_EQ] = ACTIONS(4674), - [anon_sym_BANG_EQ] = ACTIONS(4672), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4674), - [anon_sym_EQ_EQ] = ACTIONS(4672), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4674), - [anon_sym_LT_EQ] = ACTIONS(4674), - [anon_sym_GT_EQ] = ACTIONS(4674), - [anon_sym_BANGin] = ACTIONS(4674), - [anon_sym_is] = ACTIONS(4672), - [anon_sym_BANGis] = ACTIONS(4674), - [anon_sym_PLUS] = ACTIONS(4672), - [anon_sym_DASH] = ACTIONS(4672), - [anon_sym_SLASH] = ACTIONS(4672), - [anon_sym_PERCENT] = ACTIONS(4672), - [anon_sym_as_QMARK] = ACTIONS(4674), - [anon_sym_PLUS_PLUS] = ACTIONS(4674), - [anon_sym_DASH_DASH] = ACTIONS(4674), - [anon_sym_BANG_BANG] = ACTIONS(4674), - [anon_sym_suspend] = ACTIONS(4672), - [anon_sym_sealed] = ACTIONS(4672), - [anon_sym_annotation] = ACTIONS(4672), - [anon_sym_data] = ACTIONS(4672), - [anon_sym_inner] = ACTIONS(4672), - [anon_sym_value] = ACTIONS(4672), - [anon_sym_override] = ACTIONS(4672), - [anon_sym_lateinit] = ACTIONS(4672), - [anon_sym_public] = ACTIONS(4672), - [anon_sym_private] = ACTIONS(4672), - [anon_sym_internal] = ACTIONS(4672), - [anon_sym_protected] = ACTIONS(4672), - [anon_sym_tailrec] = ACTIONS(4672), - [anon_sym_operator] = ACTIONS(4672), - [anon_sym_infix] = ACTIONS(4672), - [anon_sym_inline] = ACTIONS(4672), - [anon_sym_external] = ACTIONS(4672), - [sym_property_modifier] = ACTIONS(4672), - [anon_sym_abstract] = ACTIONS(4672), - [anon_sym_final] = ACTIONS(4672), - [anon_sym_open] = ACTIONS(4672), - [anon_sym_vararg] = ACTIONS(4672), - [anon_sym_noinline] = ACTIONS(4672), - [anon_sym_crossinline] = ACTIONS(4672), - [anon_sym_expect] = ACTIONS(4672), - [anon_sym_actual] = ACTIONS(4672), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4674), - [sym__automatic_semicolon] = ACTIONS(4674), - [sym_safe_nav] = ACTIONS(4674), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(4087), + [anon_sym_LBRACE] = ACTIONS(4089), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), [sym_multiline_comment] = ACTIONS(3), }, [3827] = { + [sym__alpha_identifier] = ACTIONS(4968), + [anon_sym_AT] = ACTIONS(4970), + [anon_sym_LBRACK] = ACTIONS(4970), + [anon_sym_DOT] = ACTIONS(4968), + [anon_sym_as] = ACTIONS(4968), + [anon_sym_EQ] = ACTIONS(4968), + [anon_sym_LBRACE] = ACTIONS(4970), + [anon_sym_RBRACE] = ACTIONS(4970), + [anon_sym_LPAREN] = ACTIONS(4970), + [anon_sym_COMMA] = ACTIONS(4970), + [anon_sym_LT] = ACTIONS(4968), + [anon_sym_GT] = ACTIONS(4968), + [anon_sym_where] = ACTIONS(4968), + [anon_sym_SEMI] = ACTIONS(4970), + [anon_sym_get] = ACTIONS(4968), + [anon_sym_set] = ACTIONS(4968), + [anon_sym_STAR] = ACTIONS(4968), + [sym_label] = ACTIONS(4970), + [anon_sym_in] = ACTIONS(4968), + [anon_sym_DOT_DOT] = ACTIONS(4970), + [anon_sym_QMARK_COLON] = ACTIONS(4970), + [anon_sym_AMP_AMP] = ACTIONS(4970), + [anon_sym_PIPE_PIPE] = ACTIONS(4970), + [anon_sym_else] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4970), + [anon_sym_PLUS_EQ] = ACTIONS(4970), + [anon_sym_DASH_EQ] = ACTIONS(4970), + [anon_sym_STAR_EQ] = ACTIONS(4970), + [anon_sym_SLASH_EQ] = ACTIONS(4970), + [anon_sym_PERCENT_EQ] = ACTIONS(4970), + [anon_sym_BANG_EQ] = ACTIONS(4968), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4970), + [anon_sym_EQ_EQ] = ACTIONS(4968), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4970), + [anon_sym_LT_EQ] = ACTIONS(4970), + [anon_sym_GT_EQ] = ACTIONS(4970), + [anon_sym_BANGin] = ACTIONS(4970), + [anon_sym_is] = ACTIONS(4968), + [anon_sym_BANGis] = ACTIONS(4970), + [anon_sym_PLUS] = ACTIONS(4968), + [anon_sym_DASH] = ACTIONS(4968), + [anon_sym_SLASH] = ACTIONS(4968), + [anon_sym_PERCENT] = ACTIONS(4968), + [anon_sym_as_QMARK] = ACTIONS(4970), + [anon_sym_PLUS_PLUS] = ACTIONS(4970), + [anon_sym_DASH_DASH] = ACTIONS(4970), + [anon_sym_BANG_BANG] = ACTIONS(4970), + [anon_sym_suspend] = ACTIONS(4968), + [anon_sym_sealed] = ACTIONS(4968), + [anon_sym_annotation] = ACTIONS(4968), + [anon_sym_data] = ACTIONS(4968), + [anon_sym_inner] = ACTIONS(4968), + [anon_sym_value] = ACTIONS(4968), + [anon_sym_override] = ACTIONS(4968), + [anon_sym_lateinit] = ACTIONS(4968), + [anon_sym_public] = ACTIONS(4968), + [anon_sym_private] = ACTIONS(4968), + [anon_sym_internal] = ACTIONS(4968), + [anon_sym_protected] = ACTIONS(4968), + [anon_sym_tailrec] = ACTIONS(4968), + [anon_sym_operator] = ACTIONS(4968), + [anon_sym_infix] = ACTIONS(4968), + [anon_sym_inline] = ACTIONS(4968), + [anon_sym_external] = ACTIONS(4968), + [sym_property_modifier] = ACTIONS(4968), + [anon_sym_abstract] = ACTIONS(4968), + [anon_sym_final] = ACTIONS(4968), + [anon_sym_open] = ACTIONS(4968), + [anon_sym_vararg] = ACTIONS(4968), + [anon_sym_noinline] = ACTIONS(4968), + [anon_sym_crossinline] = ACTIONS(4968), + [anon_sym_expect] = ACTIONS(4968), + [anon_sym_actual] = ACTIONS(4968), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4970), + [sym__automatic_semicolon] = ACTIONS(4970), + [sym_safe_nav] = ACTIONS(4970), + [sym_multiline_comment] = ACTIONS(3), + }, + [3828] = { + [sym__alpha_identifier] = ACTIONS(4904), + [anon_sym_AT] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_DOT] = ACTIONS(4904), + [anon_sym_as] = ACTIONS(4904), + [anon_sym_EQ] = ACTIONS(4904), + [anon_sym_LBRACE] = ACTIONS(4906), + [anon_sym_RBRACE] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4906), + [anon_sym_COMMA] = ACTIONS(4906), + [anon_sym_LT] = ACTIONS(4904), + [anon_sym_GT] = ACTIONS(4904), + [anon_sym_where] = ACTIONS(4904), + [anon_sym_SEMI] = ACTIONS(4906), + [anon_sym_get] = ACTIONS(4904), + [anon_sym_set] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [sym_label] = ACTIONS(4906), + [anon_sym_in] = ACTIONS(4904), + [anon_sym_DOT_DOT] = ACTIONS(4906), + [anon_sym_QMARK_COLON] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4906), + [anon_sym_PIPE_PIPE] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4904), + [anon_sym_COLON_COLON] = ACTIONS(4906), + [anon_sym_PLUS_EQ] = ACTIONS(4906), + [anon_sym_DASH_EQ] = ACTIONS(4906), + [anon_sym_STAR_EQ] = ACTIONS(4906), + [anon_sym_SLASH_EQ] = ACTIONS(4906), + [anon_sym_PERCENT_EQ] = ACTIONS(4906), + [anon_sym_BANG_EQ] = ACTIONS(4904), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), + [anon_sym_EQ_EQ] = ACTIONS(4904), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), + [anon_sym_LT_EQ] = ACTIONS(4906), + [anon_sym_GT_EQ] = ACTIONS(4906), + [anon_sym_BANGin] = ACTIONS(4906), + [anon_sym_is] = ACTIONS(4904), + [anon_sym_BANGis] = ACTIONS(4906), + [anon_sym_PLUS] = ACTIONS(4904), + [anon_sym_DASH] = ACTIONS(4904), + [anon_sym_SLASH] = ACTIONS(4904), + [anon_sym_PERCENT] = ACTIONS(4904), + [anon_sym_as_QMARK] = ACTIONS(4906), + [anon_sym_PLUS_PLUS] = ACTIONS(4906), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_BANG_BANG] = ACTIONS(4906), + [anon_sym_suspend] = ACTIONS(4904), + [anon_sym_sealed] = ACTIONS(4904), + [anon_sym_annotation] = ACTIONS(4904), + [anon_sym_data] = ACTIONS(4904), + [anon_sym_inner] = ACTIONS(4904), + [anon_sym_value] = ACTIONS(4904), + [anon_sym_override] = ACTIONS(4904), + [anon_sym_lateinit] = ACTIONS(4904), + [anon_sym_public] = ACTIONS(4904), + [anon_sym_private] = ACTIONS(4904), + [anon_sym_internal] = ACTIONS(4904), + [anon_sym_protected] = ACTIONS(4904), + [anon_sym_tailrec] = ACTIONS(4904), + [anon_sym_operator] = ACTIONS(4904), + [anon_sym_infix] = ACTIONS(4904), + [anon_sym_inline] = ACTIONS(4904), + [anon_sym_external] = ACTIONS(4904), + [sym_property_modifier] = ACTIONS(4904), + [anon_sym_abstract] = ACTIONS(4904), + [anon_sym_final] = ACTIONS(4904), + [anon_sym_open] = ACTIONS(4904), + [anon_sym_vararg] = ACTIONS(4904), + [anon_sym_noinline] = ACTIONS(4904), + [anon_sym_crossinline] = ACTIONS(4904), + [anon_sym_expect] = ACTIONS(4904), + [anon_sym_actual] = ACTIONS(4904), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4906), + [sym__automatic_semicolon] = ACTIONS(4906), + [sym_safe_nav] = ACTIONS(4906), + [sym_multiline_comment] = ACTIONS(3), + }, + [3829] = { + [sym__alpha_identifier] = ACTIONS(4964), + [anon_sym_AT] = ACTIONS(4966), + [anon_sym_LBRACK] = ACTIONS(4966), + [anon_sym_DOT] = ACTIONS(4964), + [anon_sym_as] = ACTIONS(4964), + [anon_sym_EQ] = ACTIONS(4964), + [anon_sym_LBRACE] = ACTIONS(4966), + [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_LPAREN] = ACTIONS(4966), + [anon_sym_COMMA] = ACTIONS(4966), + [anon_sym_LT] = ACTIONS(4964), + [anon_sym_GT] = ACTIONS(4964), + [anon_sym_where] = ACTIONS(4964), + [anon_sym_SEMI] = ACTIONS(4966), + [anon_sym_get] = ACTIONS(4964), + [anon_sym_set] = ACTIONS(4964), + [anon_sym_STAR] = ACTIONS(4964), + [sym_label] = ACTIONS(4966), + [anon_sym_in] = ACTIONS(4964), + [anon_sym_DOT_DOT] = ACTIONS(4966), + [anon_sym_QMARK_COLON] = ACTIONS(4966), + [anon_sym_AMP_AMP] = ACTIONS(4966), + [anon_sym_PIPE_PIPE] = ACTIONS(4966), + [anon_sym_else] = ACTIONS(4964), + [anon_sym_COLON_COLON] = ACTIONS(4966), + [anon_sym_PLUS_EQ] = ACTIONS(4966), + [anon_sym_DASH_EQ] = ACTIONS(4966), + [anon_sym_STAR_EQ] = ACTIONS(4966), + [anon_sym_SLASH_EQ] = ACTIONS(4966), + [anon_sym_PERCENT_EQ] = ACTIONS(4966), + [anon_sym_BANG_EQ] = ACTIONS(4964), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4966), + [anon_sym_EQ_EQ] = ACTIONS(4964), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4966), + [anon_sym_LT_EQ] = ACTIONS(4966), + [anon_sym_GT_EQ] = ACTIONS(4966), + [anon_sym_BANGin] = ACTIONS(4966), + [anon_sym_is] = ACTIONS(4964), + [anon_sym_BANGis] = ACTIONS(4966), + [anon_sym_PLUS] = ACTIONS(4964), + [anon_sym_DASH] = ACTIONS(4964), + [anon_sym_SLASH] = ACTIONS(4964), + [anon_sym_PERCENT] = ACTIONS(4964), + [anon_sym_as_QMARK] = ACTIONS(4966), + [anon_sym_PLUS_PLUS] = ACTIONS(4966), + [anon_sym_DASH_DASH] = ACTIONS(4966), + [anon_sym_BANG_BANG] = ACTIONS(4966), + [anon_sym_suspend] = ACTIONS(4964), + [anon_sym_sealed] = ACTIONS(4964), + [anon_sym_annotation] = ACTIONS(4964), + [anon_sym_data] = ACTIONS(4964), + [anon_sym_inner] = ACTIONS(4964), + [anon_sym_value] = ACTIONS(4964), + [anon_sym_override] = ACTIONS(4964), + [anon_sym_lateinit] = ACTIONS(4964), + [anon_sym_public] = ACTIONS(4964), + [anon_sym_private] = ACTIONS(4964), + [anon_sym_internal] = ACTIONS(4964), + [anon_sym_protected] = ACTIONS(4964), + [anon_sym_tailrec] = ACTIONS(4964), + [anon_sym_operator] = ACTIONS(4964), + [anon_sym_infix] = ACTIONS(4964), + [anon_sym_inline] = ACTIONS(4964), + [anon_sym_external] = ACTIONS(4964), + [sym_property_modifier] = ACTIONS(4964), + [anon_sym_abstract] = ACTIONS(4964), + [anon_sym_final] = ACTIONS(4964), + [anon_sym_open] = ACTIONS(4964), + [anon_sym_vararg] = ACTIONS(4964), + [anon_sym_noinline] = ACTIONS(4964), + [anon_sym_crossinline] = ACTIONS(4964), + [anon_sym_expect] = ACTIONS(4964), + [anon_sym_actual] = ACTIONS(4964), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4966), + [sym__automatic_semicolon] = ACTIONS(4966), + [sym_safe_nav] = ACTIONS(4966), + [sym_multiline_comment] = ACTIONS(3), + }, + [3830] = { + [sym__alpha_identifier] = ACTIONS(4896), + [anon_sym_AT] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_DOT] = ACTIONS(4896), + [anon_sym_as] = ACTIONS(4896), + [anon_sym_EQ] = ACTIONS(4896), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4898), + [anon_sym_COMMA] = ACTIONS(4898), + [anon_sym_LT] = ACTIONS(4896), + [anon_sym_GT] = ACTIONS(4896), + [anon_sym_where] = ACTIONS(4896), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_get] = ACTIONS(4896), + [anon_sym_set] = ACTIONS(4896), + [anon_sym_STAR] = ACTIONS(4896), + [sym_label] = ACTIONS(4898), + [anon_sym_in] = ACTIONS(4896), + [anon_sym_DOT_DOT] = ACTIONS(4898), + [anon_sym_QMARK_COLON] = ACTIONS(4898), + [anon_sym_AMP_AMP] = ACTIONS(4898), + [anon_sym_PIPE_PIPE] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4898), + [anon_sym_PLUS_EQ] = ACTIONS(4898), + [anon_sym_DASH_EQ] = ACTIONS(4898), + [anon_sym_STAR_EQ] = ACTIONS(4898), + [anon_sym_SLASH_EQ] = ACTIONS(4898), + [anon_sym_PERCENT_EQ] = ACTIONS(4898), + [anon_sym_BANG_EQ] = ACTIONS(4896), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4898), + [anon_sym_EQ_EQ] = ACTIONS(4896), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4898), + [anon_sym_LT_EQ] = ACTIONS(4898), + [anon_sym_GT_EQ] = ACTIONS(4898), + [anon_sym_BANGin] = ACTIONS(4898), + [anon_sym_is] = ACTIONS(4896), + [anon_sym_BANGis] = ACTIONS(4898), + [anon_sym_PLUS] = ACTIONS(4896), + [anon_sym_DASH] = ACTIONS(4896), + [anon_sym_SLASH] = ACTIONS(4896), + [anon_sym_PERCENT] = ACTIONS(4896), + [anon_sym_as_QMARK] = ACTIONS(4898), + [anon_sym_PLUS_PLUS] = ACTIONS(4898), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_BANG_BANG] = ACTIONS(4898), + [anon_sym_suspend] = ACTIONS(4896), + [anon_sym_sealed] = ACTIONS(4896), + [anon_sym_annotation] = ACTIONS(4896), + [anon_sym_data] = ACTIONS(4896), + [anon_sym_inner] = ACTIONS(4896), + [anon_sym_value] = ACTIONS(4896), + [anon_sym_override] = ACTIONS(4896), + [anon_sym_lateinit] = ACTIONS(4896), + [anon_sym_public] = ACTIONS(4896), + [anon_sym_private] = ACTIONS(4896), + [anon_sym_internal] = ACTIONS(4896), + [anon_sym_protected] = ACTIONS(4896), + [anon_sym_tailrec] = ACTIONS(4896), + [anon_sym_operator] = ACTIONS(4896), + [anon_sym_infix] = ACTIONS(4896), + [anon_sym_inline] = ACTIONS(4896), + [anon_sym_external] = ACTIONS(4896), + [sym_property_modifier] = ACTIONS(4896), + [anon_sym_abstract] = ACTIONS(4896), + [anon_sym_final] = ACTIONS(4896), + [anon_sym_open] = ACTIONS(4896), + [anon_sym_vararg] = ACTIONS(4896), + [anon_sym_noinline] = ACTIONS(4896), + [anon_sym_crossinline] = ACTIONS(4896), + [anon_sym_expect] = ACTIONS(4896), + [anon_sym_actual] = ACTIONS(4896), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4898), + [sym__automatic_semicolon] = ACTIONS(4898), + [sym_safe_nav] = ACTIONS(4898), + [sym_multiline_comment] = ACTIONS(3), + }, + [3831] = { + [sym__alpha_identifier] = ACTIONS(4960), + [anon_sym_AT] = ACTIONS(4962), + [anon_sym_LBRACK] = ACTIONS(4962), + [anon_sym_DOT] = ACTIONS(4960), + [anon_sym_as] = ACTIONS(4960), + [anon_sym_EQ] = ACTIONS(4960), + [anon_sym_LBRACE] = ACTIONS(4962), + [anon_sym_RBRACE] = ACTIONS(4962), + [anon_sym_LPAREN] = ACTIONS(4962), + [anon_sym_COMMA] = ACTIONS(4962), + [anon_sym_LT] = ACTIONS(4960), + [anon_sym_GT] = ACTIONS(4960), + [anon_sym_where] = ACTIONS(4960), + [anon_sym_SEMI] = ACTIONS(4962), + [anon_sym_get] = ACTIONS(4960), + [anon_sym_set] = ACTIONS(4960), + [anon_sym_STAR] = ACTIONS(4960), + [sym_label] = ACTIONS(4962), + [anon_sym_in] = ACTIONS(4960), + [anon_sym_DOT_DOT] = ACTIONS(4962), + [anon_sym_QMARK_COLON] = ACTIONS(4962), + [anon_sym_AMP_AMP] = ACTIONS(4962), + [anon_sym_PIPE_PIPE] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4960), + [anon_sym_COLON_COLON] = ACTIONS(4962), + [anon_sym_PLUS_EQ] = ACTIONS(4962), + [anon_sym_DASH_EQ] = ACTIONS(4962), + [anon_sym_STAR_EQ] = ACTIONS(4962), + [anon_sym_SLASH_EQ] = ACTIONS(4962), + [anon_sym_PERCENT_EQ] = ACTIONS(4962), + [anon_sym_BANG_EQ] = ACTIONS(4960), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4962), + [anon_sym_EQ_EQ] = ACTIONS(4960), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4962), + [anon_sym_LT_EQ] = ACTIONS(4962), + [anon_sym_GT_EQ] = ACTIONS(4962), + [anon_sym_BANGin] = ACTIONS(4962), + [anon_sym_is] = ACTIONS(4960), + [anon_sym_BANGis] = ACTIONS(4962), + [anon_sym_PLUS] = ACTIONS(4960), + [anon_sym_DASH] = ACTIONS(4960), + [anon_sym_SLASH] = ACTIONS(4960), + [anon_sym_PERCENT] = ACTIONS(4960), + [anon_sym_as_QMARK] = ACTIONS(4962), + [anon_sym_PLUS_PLUS] = ACTIONS(4962), + [anon_sym_DASH_DASH] = ACTIONS(4962), + [anon_sym_BANG_BANG] = ACTIONS(4962), + [anon_sym_suspend] = ACTIONS(4960), + [anon_sym_sealed] = ACTIONS(4960), + [anon_sym_annotation] = ACTIONS(4960), + [anon_sym_data] = ACTIONS(4960), + [anon_sym_inner] = ACTIONS(4960), + [anon_sym_value] = ACTIONS(4960), + [anon_sym_override] = ACTIONS(4960), + [anon_sym_lateinit] = ACTIONS(4960), + [anon_sym_public] = ACTIONS(4960), + [anon_sym_private] = ACTIONS(4960), + [anon_sym_internal] = ACTIONS(4960), + [anon_sym_protected] = ACTIONS(4960), + [anon_sym_tailrec] = ACTIONS(4960), + [anon_sym_operator] = ACTIONS(4960), + [anon_sym_infix] = ACTIONS(4960), + [anon_sym_inline] = ACTIONS(4960), + [anon_sym_external] = ACTIONS(4960), + [sym_property_modifier] = ACTIONS(4960), + [anon_sym_abstract] = ACTIONS(4960), + [anon_sym_final] = ACTIONS(4960), + [anon_sym_open] = ACTIONS(4960), + [anon_sym_vararg] = ACTIONS(4960), + [anon_sym_noinline] = ACTIONS(4960), + [anon_sym_crossinline] = ACTIONS(4960), + [anon_sym_expect] = ACTIONS(4960), + [anon_sym_actual] = ACTIONS(4960), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4962), + [sym__automatic_semicolon] = ACTIONS(4962), + [sym_safe_nav] = ACTIONS(4962), + [sym_multiline_comment] = ACTIONS(3), + }, + [3832] = { + [sym__alpha_identifier] = ACTIONS(4988), + [anon_sym_AT] = ACTIONS(4990), + [anon_sym_LBRACK] = ACTIONS(4990), + [anon_sym_DOT] = ACTIONS(4988), + [anon_sym_as] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4990), + [anon_sym_RBRACE] = ACTIONS(4990), + [anon_sym_LPAREN] = ACTIONS(4990), + [anon_sym_COMMA] = ACTIONS(4990), + [anon_sym_LT] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_where] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4990), + [anon_sym_get] = ACTIONS(4988), + [anon_sym_set] = ACTIONS(4988), + [anon_sym_STAR] = ACTIONS(4988), + [sym_label] = ACTIONS(4990), + [anon_sym_in] = ACTIONS(4988), + [anon_sym_DOT_DOT] = ACTIONS(4990), + [anon_sym_QMARK_COLON] = ACTIONS(4990), + [anon_sym_AMP_AMP] = ACTIONS(4990), + [anon_sym_PIPE_PIPE] = ACTIONS(4990), + [anon_sym_else] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4990), + [anon_sym_PLUS_EQ] = ACTIONS(4990), + [anon_sym_DASH_EQ] = ACTIONS(4990), + [anon_sym_STAR_EQ] = ACTIONS(4990), + [anon_sym_SLASH_EQ] = ACTIONS(4990), + [anon_sym_PERCENT_EQ] = ACTIONS(4990), + [anon_sym_BANG_EQ] = ACTIONS(4988), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4990), + [anon_sym_EQ_EQ] = ACTIONS(4988), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4990), + [anon_sym_LT_EQ] = ACTIONS(4990), + [anon_sym_GT_EQ] = ACTIONS(4990), + [anon_sym_BANGin] = ACTIONS(4990), + [anon_sym_is] = ACTIONS(4988), + [anon_sym_BANGis] = ACTIONS(4990), + [anon_sym_PLUS] = ACTIONS(4988), + [anon_sym_DASH] = ACTIONS(4988), + [anon_sym_SLASH] = ACTIONS(4988), + [anon_sym_PERCENT] = ACTIONS(4988), + [anon_sym_as_QMARK] = ACTIONS(4990), + [anon_sym_PLUS_PLUS] = ACTIONS(4990), + [anon_sym_DASH_DASH] = ACTIONS(4990), + [anon_sym_BANG_BANG] = ACTIONS(4990), + [anon_sym_suspend] = ACTIONS(4988), + [anon_sym_sealed] = ACTIONS(4988), + [anon_sym_annotation] = ACTIONS(4988), + [anon_sym_data] = ACTIONS(4988), + [anon_sym_inner] = ACTIONS(4988), + [anon_sym_value] = ACTIONS(4988), + [anon_sym_override] = ACTIONS(4988), + [anon_sym_lateinit] = ACTIONS(4988), + [anon_sym_public] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4988), + [anon_sym_internal] = ACTIONS(4988), + [anon_sym_protected] = ACTIONS(4988), + [anon_sym_tailrec] = ACTIONS(4988), + [anon_sym_operator] = ACTIONS(4988), + [anon_sym_infix] = ACTIONS(4988), + [anon_sym_inline] = ACTIONS(4988), + [anon_sym_external] = ACTIONS(4988), + [sym_property_modifier] = ACTIONS(4988), + [anon_sym_abstract] = ACTIONS(4988), + [anon_sym_final] = ACTIONS(4988), + [anon_sym_open] = ACTIONS(4988), + [anon_sym_vararg] = ACTIONS(4988), + [anon_sym_noinline] = ACTIONS(4988), + [anon_sym_crossinline] = ACTIONS(4988), + [anon_sym_expect] = ACTIONS(4988), + [anon_sym_actual] = ACTIONS(4988), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4990), + [sym__automatic_semicolon] = ACTIONS(4990), + [sym_safe_nav] = ACTIONS(4990), + [sym_multiline_comment] = ACTIONS(3), + }, + [3833] = { + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [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_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = 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_value] = 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), + }, + [3834] = { + [sym__alpha_identifier] = ACTIONS(4956), + [anon_sym_AT] = ACTIONS(4958), + [anon_sym_LBRACK] = ACTIONS(4958), + [anon_sym_DOT] = ACTIONS(4956), + [anon_sym_as] = ACTIONS(4956), + [anon_sym_EQ] = ACTIONS(4956), + [anon_sym_LBRACE] = ACTIONS(4958), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_LPAREN] = ACTIONS(4958), + [anon_sym_COMMA] = ACTIONS(4958), + [anon_sym_LT] = ACTIONS(4956), + [anon_sym_GT] = ACTIONS(4956), + [anon_sym_where] = ACTIONS(4956), + [anon_sym_SEMI] = ACTIONS(4958), + [anon_sym_get] = ACTIONS(4956), + [anon_sym_set] = ACTIONS(4956), + [anon_sym_STAR] = ACTIONS(4956), + [sym_label] = ACTIONS(4958), + [anon_sym_in] = ACTIONS(4956), + [anon_sym_DOT_DOT] = ACTIONS(4958), + [anon_sym_QMARK_COLON] = ACTIONS(4958), + [anon_sym_AMP_AMP] = ACTIONS(4958), + [anon_sym_PIPE_PIPE] = ACTIONS(4958), + [anon_sym_else] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4958), + [anon_sym_PLUS_EQ] = ACTIONS(4958), + [anon_sym_DASH_EQ] = ACTIONS(4958), + [anon_sym_STAR_EQ] = ACTIONS(4958), + [anon_sym_SLASH_EQ] = ACTIONS(4958), + [anon_sym_PERCENT_EQ] = ACTIONS(4958), + [anon_sym_BANG_EQ] = ACTIONS(4956), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4958), + [anon_sym_EQ_EQ] = ACTIONS(4956), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4958), + [anon_sym_LT_EQ] = ACTIONS(4958), + [anon_sym_GT_EQ] = ACTIONS(4958), + [anon_sym_BANGin] = ACTIONS(4958), + [anon_sym_is] = ACTIONS(4956), + [anon_sym_BANGis] = ACTIONS(4958), + [anon_sym_PLUS] = ACTIONS(4956), + [anon_sym_DASH] = ACTIONS(4956), + [anon_sym_SLASH] = ACTIONS(4956), + [anon_sym_PERCENT] = ACTIONS(4956), + [anon_sym_as_QMARK] = ACTIONS(4958), + [anon_sym_PLUS_PLUS] = ACTIONS(4958), + [anon_sym_DASH_DASH] = ACTIONS(4958), + [anon_sym_BANG_BANG] = ACTIONS(4958), + [anon_sym_suspend] = ACTIONS(4956), + [anon_sym_sealed] = ACTIONS(4956), + [anon_sym_annotation] = ACTIONS(4956), + [anon_sym_data] = ACTIONS(4956), + [anon_sym_inner] = ACTIONS(4956), + [anon_sym_value] = ACTIONS(4956), + [anon_sym_override] = ACTIONS(4956), + [anon_sym_lateinit] = ACTIONS(4956), + [anon_sym_public] = ACTIONS(4956), + [anon_sym_private] = ACTIONS(4956), + [anon_sym_internal] = ACTIONS(4956), + [anon_sym_protected] = ACTIONS(4956), + [anon_sym_tailrec] = ACTIONS(4956), + [anon_sym_operator] = ACTIONS(4956), + [anon_sym_infix] = ACTIONS(4956), + [anon_sym_inline] = ACTIONS(4956), + [anon_sym_external] = ACTIONS(4956), + [sym_property_modifier] = ACTIONS(4956), + [anon_sym_abstract] = ACTIONS(4956), + [anon_sym_final] = ACTIONS(4956), + [anon_sym_open] = ACTIONS(4956), + [anon_sym_vararg] = ACTIONS(4956), + [anon_sym_noinline] = ACTIONS(4956), + [anon_sym_crossinline] = ACTIONS(4956), + [anon_sym_expect] = ACTIONS(4956), + [anon_sym_actual] = ACTIONS(4956), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4958), + [sym__automatic_semicolon] = ACTIONS(4958), + [sym_safe_nav] = ACTIONS(4958), + [sym_multiline_comment] = ACTIONS(3), + }, + [3835] = { + [sym__alpha_identifier] = ACTIONS(4976), + [anon_sym_AT] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_DOT] = ACTIONS(4976), + [anon_sym_as] = ACTIONS(4976), + [anon_sym_EQ] = ACTIONS(4976), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_RBRACE] = ACTIONS(4978), + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_LT] = ACTIONS(4976), + [anon_sym_GT] = ACTIONS(4976), + [anon_sym_where] = ACTIONS(4976), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_get] = ACTIONS(4976), + [anon_sym_set] = ACTIONS(4976), + [anon_sym_STAR] = ACTIONS(4976), + [sym_label] = ACTIONS(4978), + [anon_sym_in] = ACTIONS(4976), + [anon_sym_DOT_DOT] = ACTIONS(4978), + [anon_sym_QMARK_COLON] = ACTIONS(4978), + [anon_sym_AMP_AMP] = ACTIONS(4978), + [anon_sym_PIPE_PIPE] = ACTIONS(4978), + [anon_sym_else] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4978), + [anon_sym_PLUS_EQ] = ACTIONS(4978), + [anon_sym_DASH_EQ] = ACTIONS(4978), + [anon_sym_STAR_EQ] = ACTIONS(4978), + [anon_sym_SLASH_EQ] = ACTIONS(4978), + [anon_sym_PERCENT_EQ] = ACTIONS(4978), + [anon_sym_BANG_EQ] = ACTIONS(4976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4978), + [anon_sym_EQ_EQ] = ACTIONS(4976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4978), + [anon_sym_LT_EQ] = ACTIONS(4978), + [anon_sym_GT_EQ] = ACTIONS(4978), + [anon_sym_BANGin] = ACTIONS(4978), + [anon_sym_is] = ACTIONS(4976), + [anon_sym_BANGis] = ACTIONS(4978), + [anon_sym_PLUS] = ACTIONS(4976), + [anon_sym_DASH] = ACTIONS(4976), + [anon_sym_SLASH] = ACTIONS(4976), + [anon_sym_PERCENT] = ACTIONS(4976), + [anon_sym_as_QMARK] = ACTIONS(4978), + [anon_sym_PLUS_PLUS] = ACTIONS(4978), + [anon_sym_DASH_DASH] = ACTIONS(4978), + [anon_sym_BANG_BANG] = ACTIONS(4978), + [anon_sym_suspend] = ACTIONS(4976), + [anon_sym_sealed] = ACTIONS(4976), + [anon_sym_annotation] = ACTIONS(4976), + [anon_sym_data] = ACTIONS(4976), + [anon_sym_inner] = ACTIONS(4976), + [anon_sym_value] = ACTIONS(4976), + [anon_sym_override] = ACTIONS(4976), + [anon_sym_lateinit] = ACTIONS(4976), + [anon_sym_public] = ACTIONS(4976), + [anon_sym_private] = ACTIONS(4976), + [anon_sym_internal] = ACTIONS(4976), + [anon_sym_protected] = ACTIONS(4976), + [anon_sym_tailrec] = ACTIONS(4976), + [anon_sym_operator] = ACTIONS(4976), + [anon_sym_infix] = ACTIONS(4976), + [anon_sym_inline] = ACTIONS(4976), + [anon_sym_external] = ACTIONS(4976), + [sym_property_modifier] = ACTIONS(4976), + [anon_sym_abstract] = ACTIONS(4976), + [anon_sym_final] = ACTIONS(4976), + [anon_sym_open] = ACTIONS(4976), + [anon_sym_vararg] = ACTIONS(4976), + [anon_sym_noinline] = ACTIONS(4976), + [anon_sym_crossinline] = ACTIONS(4976), + [anon_sym_expect] = ACTIONS(4976), + [anon_sym_actual] = ACTIONS(4976), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4978), + [sym__automatic_semicolon] = ACTIONS(4978), + [sym_safe_nav] = ACTIONS(4978), + [sym_multiline_comment] = ACTIONS(3), + }, + [3836] = { + [sym__alpha_identifier] = ACTIONS(4952), + [anon_sym_AT] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(4954), + [anon_sym_DOT] = ACTIONS(4952), + [anon_sym_as] = ACTIONS(4952), + [anon_sym_EQ] = ACTIONS(4952), + [anon_sym_LBRACE] = ACTIONS(4954), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_LPAREN] = ACTIONS(4954), + [anon_sym_COMMA] = ACTIONS(4954), + [anon_sym_LT] = ACTIONS(4952), + [anon_sym_GT] = ACTIONS(4952), + [anon_sym_where] = ACTIONS(4952), + [anon_sym_SEMI] = ACTIONS(4954), + [anon_sym_get] = ACTIONS(4952), + [anon_sym_set] = ACTIONS(4952), + [anon_sym_STAR] = ACTIONS(4952), + [sym_label] = ACTIONS(4954), + [anon_sym_in] = ACTIONS(4952), + [anon_sym_DOT_DOT] = ACTIONS(4954), + [anon_sym_QMARK_COLON] = ACTIONS(4954), + [anon_sym_AMP_AMP] = ACTIONS(4954), + [anon_sym_PIPE_PIPE] = ACTIONS(4954), + [anon_sym_else] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_PLUS_EQ] = ACTIONS(4954), + [anon_sym_DASH_EQ] = ACTIONS(4954), + [anon_sym_STAR_EQ] = ACTIONS(4954), + [anon_sym_SLASH_EQ] = ACTIONS(4954), + [anon_sym_PERCENT_EQ] = ACTIONS(4954), + [anon_sym_BANG_EQ] = ACTIONS(4952), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4954), + [anon_sym_EQ_EQ] = ACTIONS(4952), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4954), + [anon_sym_LT_EQ] = ACTIONS(4954), + [anon_sym_GT_EQ] = ACTIONS(4954), + [anon_sym_BANGin] = ACTIONS(4954), + [anon_sym_is] = ACTIONS(4952), + [anon_sym_BANGis] = ACTIONS(4954), + [anon_sym_PLUS] = ACTIONS(4952), + [anon_sym_DASH] = ACTIONS(4952), + [anon_sym_SLASH] = ACTIONS(4952), + [anon_sym_PERCENT] = ACTIONS(4952), + [anon_sym_as_QMARK] = ACTIONS(4954), + [anon_sym_PLUS_PLUS] = ACTIONS(4954), + [anon_sym_DASH_DASH] = ACTIONS(4954), + [anon_sym_BANG_BANG] = ACTIONS(4954), + [anon_sym_suspend] = ACTIONS(4952), + [anon_sym_sealed] = ACTIONS(4952), + [anon_sym_annotation] = ACTIONS(4952), + [anon_sym_data] = ACTIONS(4952), + [anon_sym_inner] = ACTIONS(4952), + [anon_sym_value] = ACTIONS(4952), + [anon_sym_override] = ACTIONS(4952), + [anon_sym_lateinit] = ACTIONS(4952), + [anon_sym_public] = ACTIONS(4952), + [anon_sym_private] = ACTIONS(4952), + [anon_sym_internal] = ACTIONS(4952), + [anon_sym_protected] = ACTIONS(4952), + [anon_sym_tailrec] = ACTIONS(4952), + [anon_sym_operator] = ACTIONS(4952), + [anon_sym_infix] = ACTIONS(4952), + [anon_sym_inline] = ACTIONS(4952), + [anon_sym_external] = ACTIONS(4952), + [sym_property_modifier] = ACTIONS(4952), + [anon_sym_abstract] = ACTIONS(4952), + [anon_sym_final] = ACTIONS(4952), + [anon_sym_open] = ACTIONS(4952), + [anon_sym_vararg] = ACTIONS(4952), + [anon_sym_noinline] = ACTIONS(4952), + [anon_sym_crossinline] = ACTIONS(4952), + [anon_sym_expect] = ACTIONS(4952), + [anon_sym_actual] = ACTIONS(4952), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4954), + [sym__automatic_semicolon] = ACTIONS(4954), + [sym_safe_nav] = ACTIONS(4954), + [sym_multiline_comment] = ACTIONS(3), + }, + [3837] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + }, + [3838] = { [sym__alpha_identifier] = ACTIONS(4868), [anon_sym_AT] = ACTIONS(4870), [anon_sym_LBRACK] = ACTIONS(4870), - [anon_sym_DOT] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_typealias] = ACTIONS(4868), + [anon_sym_class] = ACTIONS(4868), + [anon_sym_interface] = ACTIONS(4868), + [anon_sym_enum] = ACTIONS(4868), [anon_sym_LBRACE] = ACTIONS(4870), - [anon_sym_RBRACE] = ACTIONS(4870), [anon_sym_LPAREN] = ACTIONS(4870), - [anon_sym_COMMA] = ACTIONS(4870), - [anon_sym_LT] = ACTIONS(4868), - [anon_sym_GT] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_SEMI] = ACTIONS(4870), + [anon_sym_val] = ACTIONS(4868), + [anon_sym_var] = ACTIONS(4868), + [anon_sym_object] = ACTIONS(4868), + [anon_sym_fun] = ACTIONS(4868), [anon_sym_get] = ACTIONS(4868), [anon_sym_set] = ACTIONS(4868), - [anon_sym_STAR] = ACTIONS(4868), - [sym_label] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4870), - [anon_sym_QMARK_COLON] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_PIPE_PIPE] = ACTIONS(4870), - [anon_sym_else] = ACTIONS(4868), + [anon_sym_this] = ACTIONS(4868), + [anon_sym_super] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4870), + [sym_label] = ACTIONS(4868), + [anon_sym_for] = ACTIONS(4868), + [anon_sym_while] = ACTIONS(4868), + [anon_sym_do] = ACTIONS(4868), + [anon_sym_null] = ACTIONS(4868), + [anon_sym_if] = ACTIONS(4868), + [anon_sym_when] = ACTIONS(4868), + [anon_sym_try] = ACTIONS(4868), + [anon_sym_throw] = ACTIONS(4868), + [anon_sym_return] = ACTIONS(4868), + [anon_sym_continue] = ACTIONS(4868), + [anon_sym_break] = ACTIONS(4868), [anon_sym_COLON_COLON] = ACTIONS(4870), - [anon_sym_PLUS_EQ] = ACTIONS(4870), - [anon_sym_DASH_EQ] = ACTIONS(4870), - [anon_sym_STAR_EQ] = ACTIONS(4870), - [anon_sym_SLASH_EQ] = ACTIONS(4870), - [anon_sym_PERCENT_EQ] = ACTIONS(4870), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4870), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4870), - [anon_sym_LT_EQ] = ACTIONS(4870), - [anon_sym_GT_EQ] = ACTIONS(4870), - [anon_sym_BANGin] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_BANGis] = ACTIONS(4870), [anon_sym_PLUS] = ACTIONS(4868), [anon_sym_DASH] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4868), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_as_QMARK] = ACTIONS(4870), [anon_sym_PLUS_PLUS] = ACTIONS(4870), [anon_sym_DASH_DASH] = ACTIONS(4870), - [anon_sym_BANG_BANG] = ACTIONS(4870), + [anon_sym_BANG] = ACTIONS(4870), [anon_sym_suspend] = ACTIONS(4868), [anon_sym_sealed] = ACTIONS(4868), [anon_sym_annotation] = ACTIONS(4868), @@ -427560,3212 +428698,503 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_expect] = ACTIONS(4868), [anon_sym_actual] = ACTIONS(4868), [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4870), + [anon_sym_continue_AT] = ACTIONS(4870), + [anon_sym_break_AT] = ACTIONS(4870), + [anon_sym_this_AT] = ACTIONS(4870), + [anon_sym_super_AT] = ACTIONS(4870), + [sym_real_literal] = ACTIONS(4870), + [sym_integer_literal] = ACTIONS(4868), + [sym_hex_literal] = ACTIONS(4870), + [sym_bin_literal] = ACTIONS(4870), + [anon_sym_true] = ACTIONS(4868), + [anon_sym_false] = ACTIONS(4868), + [anon_sym_SQUOTE] = ACTIONS(4870), [sym__backtick_identifier] = ACTIONS(4870), - [sym__automatic_semicolon] = ACTIONS(4870), - [sym_safe_nav] = ACTIONS(4870), - [sym_multiline_comment] = ACTIONS(3), - }, - [3828] = { - [sym__alpha_identifier] = ACTIONS(5173), - [anon_sym_AT] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(5175), - [anon_sym_DOT] = ACTIONS(5173), - [anon_sym_as] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5175), - [anon_sym_RBRACE] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5175), - [anon_sym_COMMA] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5173), - [anon_sym_GT] = ACTIONS(5173), - [anon_sym_where] = ACTIONS(5173), - [anon_sym_SEMI] = ACTIONS(5175), - [anon_sym_get] = ACTIONS(5173), - [anon_sym_set] = ACTIONS(5173), - [anon_sym_STAR] = ACTIONS(5173), - [sym_label] = ACTIONS(5175), - [anon_sym_in] = ACTIONS(5173), - [anon_sym_DOT_DOT] = ACTIONS(5175), - [anon_sym_QMARK_COLON] = ACTIONS(5175), - [anon_sym_AMP_AMP] = ACTIONS(5175), - [anon_sym_PIPE_PIPE] = ACTIONS(5175), - [anon_sym_else] = ACTIONS(5173), - [anon_sym_COLON_COLON] = ACTIONS(5175), - [anon_sym_PLUS_EQ] = ACTIONS(5175), - [anon_sym_DASH_EQ] = ACTIONS(5175), - [anon_sym_STAR_EQ] = ACTIONS(5175), - [anon_sym_SLASH_EQ] = ACTIONS(5175), - [anon_sym_PERCENT_EQ] = ACTIONS(5175), - [anon_sym_BANG_EQ] = ACTIONS(5173), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5175), - [anon_sym_EQ_EQ] = ACTIONS(5173), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5175), - [anon_sym_LT_EQ] = ACTIONS(5175), - [anon_sym_GT_EQ] = ACTIONS(5175), - [anon_sym_BANGin] = ACTIONS(5175), - [anon_sym_is] = ACTIONS(5173), - [anon_sym_BANGis] = ACTIONS(5175), - [anon_sym_PLUS] = ACTIONS(5173), - [anon_sym_DASH] = ACTIONS(5173), - [anon_sym_SLASH] = ACTIONS(5173), - [anon_sym_PERCENT] = ACTIONS(5173), - [anon_sym_as_QMARK] = ACTIONS(5175), - [anon_sym_PLUS_PLUS] = ACTIONS(5175), - [anon_sym_DASH_DASH] = ACTIONS(5175), - [anon_sym_BANG_BANG] = ACTIONS(5175), - [anon_sym_suspend] = ACTIONS(5173), - [anon_sym_sealed] = ACTIONS(5173), - [anon_sym_annotation] = ACTIONS(5173), - [anon_sym_data] = ACTIONS(5173), - [anon_sym_inner] = ACTIONS(5173), - [anon_sym_value] = ACTIONS(5173), - [anon_sym_override] = ACTIONS(5173), - [anon_sym_lateinit] = ACTIONS(5173), - [anon_sym_public] = ACTIONS(5173), - [anon_sym_private] = ACTIONS(5173), - [anon_sym_internal] = ACTIONS(5173), - [anon_sym_protected] = ACTIONS(5173), - [anon_sym_tailrec] = ACTIONS(5173), - [anon_sym_operator] = ACTIONS(5173), - [anon_sym_infix] = ACTIONS(5173), - [anon_sym_inline] = ACTIONS(5173), - [anon_sym_external] = ACTIONS(5173), - [sym_property_modifier] = ACTIONS(5173), - [anon_sym_abstract] = ACTIONS(5173), - [anon_sym_final] = ACTIONS(5173), - [anon_sym_open] = ACTIONS(5173), - [anon_sym_vararg] = ACTIONS(5173), - [anon_sym_noinline] = ACTIONS(5173), - [anon_sym_crossinline] = ACTIONS(5173), - [anon_sym_expect] = ACTIONS(5173), - [anon_sym_actual] = ACTIONS(5173), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5175), - [sym__automatic_semicolon] = ACTIONS(5175), - [sym_safe_nav] = ACTIONS(5175), - [sym_multiline_comment] = ACTIONS(3), - }, - [3829] = { - [sym__alpha_identifier] = ACTIONS(5177), - [anon_sym_AT] = ACTIONS(5179), - [anon_sym_LBRACK] = ACTIONS(5179), - [anon_sym_DOT] = ACTIONS(5177), - [anon_sym_as] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5179), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5177), - [anon_sym_GT] = ACTIONS(5177), - [anon_sym_where] = ACTIONS(5177), - [anon_sym_SEMI] = ACTIONS(5179), - [anon_sym_get] = ACTIONS(5177), - [anon_sym_set] = ACTIONS(5177), - [anon_sym_STAR] = ACTIONS(5177), - [sym_label] = ACTIONS(5179), - [anon_sym_in] = ACTIONS(5177), - [anon_sym_DOT_DOT] = ACTIONS(5179), - [anon_sym_QMARK_COLON] = ACTIONS(5179), - [anon_sym_AMP_AMP] = ACTIONS(5179), - [anon_sym_PIPE_PIPE] = ACTIONS(5179), - [anon_sym_else] = ACTIONS(5177), - [anon_sym_COLON_COLON] = ACTIONS(5179), - [anon_sym_PLUS_EQ] = ACTIONS(5179), - [anon_sym_DASH_EQ] = ACTIONS(5179), - [anon_sym_STAR_EQ] = ACTIONS(5179), - [anon_sym_SLASH_EQ] = ACTIONS(5179), - [anon_sym_PERCENT_EQ] = ACTIONS(5179), - [anon_sym_BANG_EQ] = ACTIONS(5177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5179), - [anon_sym_EQ_EQ] = ACTIONS(5177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5179), - [anon_sym_LT_EQ] = ACTIONS(5179), - [anon_sym_GT_EQ] = ACTIONS(5179), - [anon_sym_BANGin] = ACTIONS(5179), - [anon_sym_is] = ACTIONS(5177), - [anon_sym_BANGis] = ACTIONS(5179), - [anon_sym_PLUS] = ACTIONS(5177), - [anon_sym_DASH] = ACTIONS(5177), - [anon_sym_SLASH] = ACTIONS(5177), - [anon_sym_PERCENT] = ACTIONS(5177), - [anon_sym_as_QMARK] = ACTIONS(5179), - [anon_sym_PLUS_PLUS] = ACTIONS(5179), - [anon_sym_DASH_DASH] = ACTIONS(5179), - [anon_sym_BANG_BANG] = ACTIONS(5179), - [anon_sym_suspend] = ACTIONS(5177), - [anon_sym_sealed] = ACTIONS(5177), - [anon_sym_annotation] = ACTIONS(5177), - [anon_sym_data] = ACTIONS(5177), - [anon_sym_inner] = ACTIONS(5177), - [anon_sym_value] = ACTIONS(5177), - [anon_sym_override] = ACTIONS(5177), - [anon_sym_lateinit] = ACTIONS(5177), - [anon_sym_public] = ACTIONS(5177), - [anon_sym_private] = ACTIONS(5177), - [anon_sym_internal] = ACTIONS(5177), - [anon_sym_protected] = ACTIONS(5177), - [anon_sym_tailrec] = ACTIONS(5177), - [anon_sym_operator] = ACTIONS(5177), - [anon_sym_infix] = ACTIONS(5177), - [anon_sym_inline] = ACTIONS(5177), - [anon_sym_external] = ACTIONS(5177), - [sym_property_modifier] = ACTIONS(5177), - [anon_sym_abstract] = ACTIONS(5177), - [anon_sym_final] = ACTIONS(5177), - [anon_sym_open] = ACTIONS(5177), - [anon_sym_vararg] = ACTIONS(5177), - [anon_sym_noinline] = ACTIONS(5177), - [anon_sym_crossinline] = ACTIONS(5177), - [anon_sym_expect] = ACTIONS(5177), - [anon_sym_actual] = ACTIONS(5177), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5179), - [sym__automatic_semicolon] = ACTIONS(5179), - [sym_safe_nav] = ACTIONS(5179), - [sym_multiline_comment] = ACTIONS(3), - }, - [3830] = { - [sym_function_body] = STATE(3077), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_object] = ACTIONS(4327), - [anon_sym_fun] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_this] = ACTIONS(4327), - [anon_sym_super] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4327), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_null] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_when] = ACTIONS(4327), - [anon_sym_try] = ACTIONS(4327), - [anon_sym_throw] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4329), - [anon_sym_continue_AT] = ACTIONS(4329), - [anon_sym_break_AT] = ACTIONS(4329), - [anon_sym_this_AT] = ACTIONS(4329), - [anon_sym_super_AT] = ACTIONS(4329), - [sym_real_literal] = ACTIONS(4329), - [sym_integer_literal] = ACTIONS(4327), - [sym_hex_literal] = ACTIONS(4329), - [sym_bin_literal] = ACTIONS(4329), - [anon_sym_true] = ACTIONS(4327), - [anon_sym_false] = ACTIONS(4327), - [anon_sym_SQUOTE] = ACTIONS(4329), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4329), - }, - [3831] = { - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_EQ] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4202), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4200), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_PLUS_EQ] = ACTIONS(4202), - [anon_sym_DASH_EQ] = ACTIONS(4202), - [anon_sym_STAR_EQ] = ACTIONS(4202), - [anon_sym_SLASH_EQ] = ACTIONS(4202), - [anon_sym_PERCENT_EQ] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4200), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - }, - [3832] = { - [sym__alpha_identifier] = ACTIONS(7125), - [anon_sym_AT] = ACTIONS(7127), - [anon_sym_LBRACK] = ACTIONS(7127), - [anon_sym_typealias] = ACTIONS(7125), - [anon_sym_class] = ACTIONS(7125), - [anon_sym_interface] = ACTIONS(7125), - [anon_sym_enum] = ACTIONS(7125), - [anon_sym_LBRACE] = ACTIONS(7127), - [anon_sym_LPAREN] = ACTIONS(7127), - [anon_sym_val] = ACTIONS(7125), - [anon_sym_var] = ACTIONS(7125), - [anon_sym_object] = ACTIONS(7125), - [anon_sym_fun] = ACTIONS(7125), - [anon_sym_get] = ACTIONS(7125), - [anon_sym_set] = ACTIONS(7125), - [anon_sym_this] = ACTIONS(7125), - [anon_sym_super] = ACTIONS(7125), - [anon_sym_STAR] = ACTIONS(7127), - [sym_label] = ACTIONS(7125), - [anon_sym_for] = ACTIONS(7125), - [anon_sym_while] = ACTIONS(7125), - [anon_sym_do] = ACTIONS(7125), - [anon_sym_null] = ACTIONS(7125), - [anon_sym_if] = ACTIONS(7125), - [anon_sym_when] = ACTIONS(7125), - [anon_sym_try] = ACTIONS(7125), - [anon_sym_throw] = ACTIONS(7125), - [anon_sym_return] = ACTIONS(7125), - [anon_sym_continue] = ACTIONS(7125), - [anon_sym_break] = ACTIONS(7125), - [anon_sym_COLON_COLON] = ACTIONS(7127), - [anon_sym_PLUS] = ACTIONS(7125), - [anon_sym_DASH] = ACTIONS(7125), - [anon_sym_PLUS_PLUS] = ACTIONS(7127), - [anon_sym_DASH_DASH] = ACTIONS(7127), - [anon_sym_BANG] = ACTIONS(7127), - [anon_sym_suspend] = ACTIONS(7125), - [anon_sym_sealed] = ACTIONS(7125), - [anon_sym_annotation] = ACTIONS(7125), - [anon_sym_data] = ACTIONS(7125), - [anon_sym_inner] = ACTIONS(7125), - [anon_sym_value] = ACTIONS(7125), - [anon_sym_override] = ACTIONS(7125), - [anon_sym_lateinit] = ACTIONS(7125), - [anon_sym_public] = ACTIONS(7125), - [anon_sym_private] = ACTIONS(7125), - [anon_sym_internal] = ACTIONS(7125), - [anon_sym_protected] = ACTIONS(7125), - [anon_sym_tailrec] = ACTIONS(7125), - [anon_sym_operator] = ACTIONS(7125), - [anon_sym_infix] = ACTIONS(7125), - [anon_sym_inline] = ACTIONS(7125), - [anon_sym_external] = ACTIONS(7125), - [sym_property_modifier] = ACTIONS(7125), - [anon_sym_abstract] = ACTIONS(7125), - [anon_sym_final] = ACTIONS(7125), - [anon_sym_open] = ACTIONS(7125), - [anon_sym_vararg] = ACTIONS(7125), - [anon_sym_noinline] = ACTIONS(7125), - [anon_sym_crossinline] = ACTIONS(7125), - [anon_sym_expect] = ACTIONS(7125), - [anon_sym_actual] = ACTIONS(7125), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7127), - [anon_sym_continue_AT] = ACTIONS(7127), - [anon_sym_break_AT] = ACTIONS(7127), - [anon_sym_this_AT] = ACTIONS(7127), - [anon_sym_super_AT] = ACTIONS(7127), - [sym_real_literal] = ACTIONS(7127), - [sym_integer_literal] = ACTIONS(7125), - [sym_hex_literal] = ACTIONS(7127), - [sym_bin_literal] = ACTIONS(7127), - [anon_sym_true] = ACTIONS(7125), - [anon_sym_false] = ACTIONS(7125), - [anon_sym_SQUOTE] = ACTIONS(7127), - [sym__backtick_identifier] = ACTIONS(7127), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7127), - }, - [3833] = { - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(4385), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3834] = { - [sym__alpha_identifier] = ACTIONS(5197), - [anon_sym_AT] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_DOT] = ACTIONS(5197), - [anon_sym_as] = ACTIONS(5197), - [anon_sym_EQ] = ACTIONS(5197), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_where] = ACTIONS(5197), - [anon_sym_SEMI] = ACTIONS(5199), - [anon_sym_get] = ACTIONS(5197), - [anon_sym_set] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [sym_label] = ACTIONS(5199), - [anon_sym_in] = ACTIONS(5197), - [anon_sym_DOT_DOT] = ACTIONS(5199), - [anon_sym_QMARK_COLON] = ACTIONS(5199), - [anon_sym_AMP_AMP] = ACTIONS(5199), - [anon_sym_PIPE_PIPE] = ACTIONS(5199), - [anon_sym_else] = ACTIONS(5197), - [anon_sym_COLON_COLON] = ACTIONS(5199), - [anon_sym_PLUS_EQ] = ACTIONS(5199), - [anon_sym_DASH_EQ] = ACTIONS(5199), - [anon_sym_STAR_EQ] = ACTIONS(5199), - [anon_sym_SLASH_EQ] = ACTIONS(5199), - [anon_sym_PERCENT_EQ] = ACTIONS(5199), - [anon_sym_BANG_EQ] = ACTIONS(5197), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5199), - [anon_sym_EQ_EQ] = ACTIONS(5197), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5199), - [anon_sym_LT_EQ] = ACTIONS(5199), - [anon_sym_GT_EQ] = ACTIONS(5199), - [anon_sym_BANGin] = ACTIONS(5199), - [anon_sym_is] = ACTIONS(5197), - [anon_sym_BANGis] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_PERCENT] = ACTIONS(5197), - [anon_sym_as_QMARK] = ACTIONS(5199), - [anon_sym_PLUS_PLUS] = ACTIONS(5199), - [anon_sym_DASH_DASH] = ACTIONS(5199), - [anon_sym_BANG_BANG] = ACTIONS(5199), - [anon_sym_suspend] = ACTIONS(5197), - [anon_sym_sealed] = ACTIONS(5197), - [anon_sym_annotation] = ACTIONS(5197), - [anon_sym_data] = ACTIONS(5197), - [anon_sym_inner] = ACTIONS(5197), - [anon_sym_value] = ACTIONS(5197), - [anon_sym_override] = ACTIONS(5197), - [anon_sym_lateinit] = ACTIONS(5197), - [anon_sym_public] = ACTIONS(5197), - [anon_sym_private] = ACTIONS(5197), - [anon_sym_internal] = ACTIONS(5197), - [anon_sym_protected] = ACTIONS(5197), - [anon_sym_tailrec] = ACTIONS(5197), - [anon_sym_operator] = ACTIONS(5197), - [anon_sym_infix] = ACTIONS(5197), - [anon_sym_inline] = ACTIONS(5197), - [anon_sym_external] = ACTIONS(5197), - [sym_property_modifier] = ACTIONS(5197), - [anon_sym_abstract] = ACTIONS(5197), - [anon_sym_final] = ACTIONS(5197), - [anon_sym_open] = ACTIONS(5197), - [anon_sym_vararg] = ACTIONS(5197), - [anon_sym_noinline] = ACTIONS(5197), - [anon_sym_crossinline] = ACTIONS(5197), - [anon_sym_expect] = ACTIONS(5197), - [anon_sym_actual] = ACTIONS(5197), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5199), - [sym__automatic_semicolon] = ACTIONS(5199), - [sym_safe_nav] = ACTIONS(5199), - [sym_multiline_comment] = ACTIONS(3), - }, - [3835] = { - [sym__alpha_identifier] = ACTIONS(5161), - [anon_sym_AT] = ACTIONS(5163), - [anon_sym_LBRACK] = ACTIONS(5163), - [anon_sym_DOT] = ACTIONS(5161), - [anon_sym_as] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5163), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5163), - [anon_sym_COMMA] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5161), - [anon_sym_GT] = ACTIONS(5161), - [anon_sym_where] = ACTIONS(5161), - [anon_sym_SEMI] = ACTIONS(5163), - [anon_sym_get] = ACTIONS(5161), - [anon_sym_set] = ACTIONS(5161), - [anon_sym_STAR] = ACTIONS(5161), - [sym_label] = ACTIONS(5163), - [anon_sym_in] = ACTIONS(5161), - [anon_sym_DOT_DOT] = ACTIONS(5163), - [anon_sym_QMARK_COLON] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(5163), - [anon_sym_PIPE_PIPE] = ACTIONS(5163), - [anon_sym_else] = ACTIONS(5161), - [anon_sym_COLON_COLON] = ACTIONS(5163), - [anon_sym_PLUS_EQ] = ACTIONS(5163), - [anon_sym_DASH_EQ] = ACTIONS(5163), - [anon_sym_STAR_EQ] = ACTIONS(5163), - [anon_sym_SLASH_EQ] = ACTIONS(5163), - [anon_sym_PERCENT_EQ] = ACTIONS(5163), - [anon_sym_BANG_EQ] = ACTIONS(5161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), - [anon_sym_EQ_EQ] = ACTIONS(5161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), - [anon_sym_LT_EQ] = ACTIONS(5163), - [anon_sym_GT_EQ] = ACTIONS(5163), - [anon_sym_BANGin] = ACTIONS(5163), - [anon_sym_is] = ACTIONS(5161), - [anon_sym_BANGis] = ACTIONS(5163), - [anon_sym_PLUS] = ACTIONS(5161), - [anon_sym_DASH] = ACTIONS(5161), - [anon_sym_SLASH] = ACTIONS(5161), - [anon_sym_PERCENT] = ACTIONS(5161), - [anon_sym_as_QMARK] = ACTIONS(5163), - [anon_sym_PLUS_PLUS] = ACTIONS(5163), - [anon_sym_DASH_DASH] = ACTIONS(5163), - [anon_sym_BANG_BANG] = ACTIONS(5163), - [anon_sym_suspend] = ACTIONS(5161), - [anon_sym_sealed] = ACTIONS(5161), - [anon_sym_annotation] = ACTIONS(5161), - [anon_sym_data] = ACTIONS(5161), - [anon_sym_inner] = ACTIONS(5161), - [anon_sym_value] = ACTIONS(5161), - [anon_sym_override] = ACTIONS(5161), - [anon_sym_lateinit] = ACTIONS(5161), - [anon_sym_public] = ACTIONS(5161), - [anon_sym_private] = ACTIONS(5161), - [anon_sym_internal] = ACTIONS(5161), - [anon_sym_protected] = ACTIONS(5161), - [anon_sym_tailrec] = ACTIONS(5161), - [anon_sym_operator] = ACTIONS(5161), - [anon_sym_infix] = ACTIONS(5161), - [anon_sym_inline] = ACTIONS(5161), - [anon_sym_external] = ACTIONS(5161), - [sym_property_modifier] = ACTIONS(5161), - [anon_sym_abstract] = ACTIONS(5161), - [anon_sym_final] = ACTIONS(5161), - [anon_sym_open] = ACTIONS(5161), - [anon_sym_vararg] = ACTIONS(5161), - [anon_sym_noinline] = ACTIONS(5161), - [anon_sym_crossinline] = ACTIONS(5161), - [anon_sym_expect] = ACTIONS(5161), - [anon_sym_actual] = ACTIONS(5161), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5163), - [sym__automatic_semicolon] = ACTIONS(5163), - [sym_safe_nav] = ACTIONS(5163), - [sym_multiline_comment] = ACTIONS(3), - }, - [3836] = { - [sym__alpha_identifier] = ACTIONS(5201), - [anon_sym_AT] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_DOT] = ACTIONS(5201), - [anon_sym_as] = ACTIONS(5201), - [anon_sym_EQ] = ACTIONS(5201), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_where] = ACTIONS(5201), - [anon_sym_SEMI] = ACTIONS(5203), - [anon_sym_get] = ACTIONS(5201), - [anon_sym_set] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [sym_label] = ACTIONS(5203), - [anon_sym_in] = ACTIONS(5201), - [anon_sym_DOT_DOT] = ACTIONS(5203), - [anon_sym_QMARK_COLON] = ACTIONS(5203), - [anon_sym_AMP_AMP] = ACTIONS(5203), - [anon_sym_PIPE_PIPE] = ACTIONS(5203), - [anon_sym_else] = ACTIONS(5201), - [anon_sym_COLON_COLON] = ACTIONS(5203), - [anon_sym_PLUS_EQ] = ACTIONS(5203), - [anon_sym_DASH_EQ] = ACTIONS(5203), - [anon_sym_STAR_EQ] = ACTIONS(5203), - [anon_sym_SLASH_EQ] = ACTIONS(5203), - [anon_sym_PERCENT_EQ] = ACTIONS(5203), - [anon_sym_BANG_EQ] = ACTIONS(5201), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5203), - [anon_sym_EQ_EQ] = ACTIONS(5201), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5203), - [anon_sym_LT_EQ] = ACTIONS(5203), - [anon_sym_GT_EQ] = ACTIONS(5203), - [anon_sym_BANGin] = ACTIONS(5203), - [anon_sym_is] = ACTIONS(5201), - [anon_sym_BANGis] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_PERCENT] = ACTIONS(5201), - [anon_sym_as_QMARK] = ACTIONS(5203), - [anon_sym_PLUS_PLUS] = ACTIONS(5203), - [anon_sym_DASH_DASH] = ACTIONS(5203), - [anon_sym_BANG_BANG] = ACTIONS(5203), - [anon_sym_suspend] = ACTIONS(5201), - [anon_sym_sealed] = ACTIONS(5201), - [anon_sym_annotation] = ACTIONS(5201), - [anon_sym_data] = ACTIONS(5201), - [anon_sym_inner] = ACTIONS(5201), - [anon_sym_value] = ACTIONS(5201), - [anon_sym_override] = ACTIONS(5201), - [anon_sym_lateinit] = ACTIONS(5201), - [anon_sym_public] = ACTIONS(5201), - [anon_sym_private] = ACTIONS(5201), - [anon_sym_internal] = ACTIONS(5201), - [anon_sym_protected] = ACTIONS(5201), - [anon_sym_tailrec] = ACTIONS(5201), - [anon_sym_operator] = ACTIONS(5201), - [anon_sym_infix] = ACTIONS(5201), - [anon_sym_inline] = ACTIONS(5201), - [anon_sym_external] = ACTIONS(5201), - [sym_property_modifier] = ACTIONS(5201), - [anon_sym_abstract] = ACTIONS(5201), - [anon_sym_final] = ACTIONS(5201), - [anon_sym_open] = ACTIONS(5201), - [anon_sym_vararg] = ACTIONS(5201), - [anon_sym_noinline] = ACTIONS(5201), - [anon_sym_crossinline] = ACTIONS(5201), - [anon_sym_expect] = ACTIONS(5201), - [anon_sym_actual] = ACTIONS(5201), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5203), - [sym__automatic_semicolon] = ACTIONS(5203), - [sym_safe_nav] = ACTIONS(5203), - [sym_multiline_comment] = ACTIONS(3), - }, - [3837] = { - [sym__alpha_identifier] = ACTIONS(5205), - [anon_sym_AT] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_DOT] = ACTIONS(5205), - [anon_sym_as] = ACTIONS(5205), - [anon_sym_EQ] = ACTIONS(5205), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_where] = ACTIONS(5205), - [anon_sym_SEMI] = ACTIONS(5207), - [anon_sym_get] = ACTIONS(5205), - [anon_sym_set] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [sym_label] = ACTIONS(5207), - [anon_sym_in] = ACTIONS(5205), - [anon_sym_DOT_DOT] = ACTIONS(5207), - [anon_sym_QMARK_COLON] = ACTIONS(5207), - [anon_sym_AMP_AMP] = ACTIONS(5207), - [anon_sym_PIPE_PIPE] = ACTIONS(5207), - [anon_sym_else] = ACTIONS(5205), - [anon_sym_COLON_COLON] = ACTIONS(5207), - [anon_sym_PLUS_EQ] = ACTIONS(5207), - [anon_sym_DASH_EQ] = ACTIONS(5207), - [anon_sym_STAR_EQ] = ACTIONS(5207), - [anon_sym_SLASH_EQ] = ACTIONS(5207), - [anon_sym_PERCENT_EQ] = ACTIONS(5207), - [anon_sym_BANG_EQ] = ACTIONS(5205), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5207), - [anon_sym_EQ_EQ] = ACTIONS(5205), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5207), - [anon_sym_LT_EQ] = ACTIONS(5207), - [anon_sym_GT_EQ] = ACTIONS(5207), - [anon_sym_BANGin] = ACTIONS(5207), - [anon_sym_is] = ACTIONS(5205), - [anon_sym_BANGis] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_PERCENT] = ACTIONS(5205), - [anon_sym_as_QMARK] = ACTIONS(5207), - [anon_sym_PLUS_PLUS] = ACTIONS(5207), - [anon_sym_DASH_DASH] = ACTIONS(5207), - [anon_sym_BANG_BANG] = ACTIONS(5207), - [anon_sym_suspend] = ACTIONS(5205), - [anon_sym_sealed] = ACTIONS(5205), - [anon_sym_annotation] = ACTIONS(5205), - [anon_sym_data] = ACTIONS(5205), - [anon_sym_inner] = ACTIONS(5205), - [anon_sym_value] = ACTIONS(5205), - [anon_sym_override] = ACTIONS(5205), - [anon_sym_lateinit] = ACTIONS(5205), - [anon_sym_public] = ACTIONS(5205), - [anon_sym_private] = ACTIONS(5205), - [anon_sym_internal] = ACTIONS(5205), - [anon_sym_protected] = ACTIONS(5205), - [anon_sym_tailrec] = ACTIONS(5205), - [anon_sym_operator] = ACTIONS(5205), - [anon_sym_infix] = ACTIONS(5205), - [anon_sym_inline] = ACTIONS(5205), - [anon_sym_external] = ACTIONS(5205), - [sym_property_modifier] = ACTIONS(5205), - [anon_sym_abstract] = ACTIONS(5205), - [anon_sym_final] = ACTIONS(5205), - [anon_sym_open] = ACTIONS(5205), - [anon_sym_vararg] = ACTIONS(5205), - [anon_sym_noinline] = ACTIONS(5205), - [anon_sym_crossinline] = ACTIONS(5205), - [anon_sym_expect] = ACTIONS(5205), - [anon_sym_actual] = ACTIONS(5205), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5207), - [sym__automatic_semicolon] = ACTIONS(5207), - [sym_safe_nav] = ACTIONS(5207), - [sym_multiline_comment] = ACTIONS(3), - }, - [3838] = { - [sym__alpha_identifier] = ACTIONS(5165), - [anon_sym_AT] = ACTIONS(5167), - [anon_sym_LBRACK] = ACTIONS(5167), - [anon_sym_DOT] = ACTIONS(5165), - [anon_sym_as] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5167), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5167), - [anon_sym_COMMA] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5165), - [anon_sym_GT] = ACTIONS(5165), - [anon_sym_where] = ACTIONS(5165), - [anon_sym_SEMI] = ACTIONS(5167), - [anon_sym_get] = ACTIONS(5165), - [anon_sym_set] = ACTIONS(5165), - [anon_sym_STAR] = ACTIONS(5165), - [sym_label] = ACTIONS(5167), - [anon_sym_in] = ACTIONS(5165), - [anon_sym_DOT_DOT] = ACTIONS(5167), - [anon_sym_QMARK_COLON] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(5167), - [anon_sym_PIPE_PIPE] = ACTIONS(5167), - [anon_sym_else] = ACTIONS(5165), - [anon_sym_COLON_COLON] = ACTIONS(5167), - [anon_sym_PLUS_EQ] = ACTIONS(5167), - [anon_sym_DASH_EQ] = ACTIONS(5167), - [anon_sym_STAR_EQ] = ACTIONS(5167), - [anon_sym_SLASH_EQ] = ACTIONS(5167), - [anon_sym_PERCENT_EQ] = ACTIONS(5167), - [anon_sym_BANG_EQ] = ACTIONS(5165), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5167), - [anon_sym_EQ_EQ] = ACTIONS(5165), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5167), - [anon_sym_LT_EQ] = ACTIONS(5167), - [anon_sym_GT_EQ] = ACTIONS(5167), - [anon_sym_BANGin] = ACTIONS(5167), - [anon_sym_is] = ACTIONS(5165), - [anon_sym_BANGis] = ACTIONS(5167), - [anon_sym_PLUS] = ACTIONS(5165), - [anon_sym_DASH] = ACTIONS(5165), - [anon_sym_SLASH] = ACTIONS(5165), - [anon_sym_PERCENT] = ACTIONS(5165), - [anon_sym_as_QMARK] = ACTIONS(5167), - [anon_sym_PLUS_PLUS] = ACTIONS(5167), - [anon_sym_DASH_DASH] = ACTIONS(5167), - [anon_sym_BANG_BANG] = ACTIONS(5167), - [anon_sym_suspend] = ACTIONS(5165), - [anon_sym_sealed] = ACTIONS(5165), - [anon_sym_annotation] = ACTIONS(5165), - [anon_sym_data] = ACTIONS(5165), - [anon_sym_inner] = ACTIONS(5165), - [anon_sym_value] = ACTIONS(5165), - [anon_sym_override] = ACTIONS(5165), - [anon_sym_lateinit] = ACTIONS(5165), - [anon_sym_public] = ACTIONS(5165), - [anon_sym_private] = ACTIONS(5165), - [anon_sym_internal] = ACTIONS(5165), - [anon_sym_protected] = ACTIONS(5165), - [anon_sym_tailrec] = ACTIONS(5165), - [anon_sym_operator] = ACTIONS(5165), - [anon_sym_infix] = ACTIONS(5165), - [anon_sym_inline] = ACTIONS(5165), - [anon_sym_external] = ACTIONS(5165), - [sym_property_modifier] = ACTIONS(5165), - [anon_sym_abstract] = ACTIONS(5165), - [anon_sym_final] = ACTIONS(5165), - [anon_sym_open] = ACTIONS(5165), - [anon_sym_vararg] = ACTIONS(5165), - [anon_sym_noinline] = ACTIONS(5165), - [anon_sym_crossinline] = ACTIONS(5165), - [anon_sym_expect] = ACTIONS(5165), - [anon_sym_actual] = ACTIONS(5165), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5167), - [sym__automatic_semicolon] = ACTIONS(5167), - [sym_safe_nav] = ACTIONS(5167), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4870), }, [3839] = { - [sym_function_body] = STATE(3387), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_RBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_RPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_DASH_GT] = ACTIONS(4395), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_while] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4395), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), + [sym__alpha_identifier] = ACTIONS(5041), + [anon_sym_AT] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_DOT] = ACTIONS(5041), + [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_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_value] = 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_multiline_comment] = ACTIONS(3), }, [3840] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), + [sym__alpha_identifier] = ACTIONS(4948), + [anon_sym_AT] = ACTIONS(4950), + [anon_sym_LBRACK] = ACTIONS(4950), + [anon_sym_DOT] = ACTIONS(4948), + [anon_sym_as] = ACTIONS(4948), + [anon_sym_EQ] = ACTIONS(4948), + [anon_sym_LBRACE] = ACTIONS(4950), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_LPAREN] = ACTIONS(4950), + [anon_sym_COMMA] = ACTIONS(4950), + [anon_sym_LT] = ACTIONS(4948), + [anon_sym_GT] = ACTIONS(4948), + [anon_sym_where] = ACTIONS(4948), + [anon_sym_SEMI] = ACTIONS(4950), + [anon_sym_get] = ACTIONS(4948), + [anon_sym_set] = ACTIONS(4948), + [anon_sym_STAR] = ACTIONS(4948), + [sym_label] = ACTIONS(4950), + [anon_sym_in] = ACTIONS(4948), + [anon_sym_DOT_DOT] = ACTIONS(4950), + [anon_sym_QMARK_COLON] = ACTIONS(4950), + [anon_sym_AMP_AMP] = ACTIONS(4950), + [anon_sym_PIPE_PIPE] = ACTIONS(4950), + [anon_sym_else] = ACTIONS(4948), + [anon_sym_COLON_COLON] = ACTIONS(4950), + [anon_sym_PLUS_EQ] = ACTIONS(4950), + [anon_sym_DASH_EQ] = ACTIONS(4950), + [anon_sym_STAR_EQ] = ACTIONS(4950), + [anon_sym_SLASH_EQ] = ACTIONS(4950), + [anon_sym_PERCENT_EQ] = ACTIONS(4950), + [anon_sym_BANG_EQ] = ACTIONS(4948), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4950), + [anon_sym_EQ_EQ] = ACTIONS(4948), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4950), + [anon_sym_LT_EQ] = ACTIONS(4950), + [anon_sym_GT_EQ] = ACTIONS(4950), + [anon_sym_BANGin] = ACTIONS(4950), + [anon_sym_is] = ACTIONS(4948), + [anon_sym_BANGis] = ACTIONS(4950), + [anon_sym_PLUS] = ACTIONS(4948), + [anon_sym_DASH] = ACTIONS(4948), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_PERCENT] = ACTIONS(4948), + [anon_sym_as_QMARK] = ACTIONS(4950), + [anon_sym_PLUS_PLUS] = ACTIONS(4950), + [anon_sym_DASH_DASH] = ACTIONS(4950), + [anon_sym_BANG_BANG] = ACTIONS(4950), + [anon_sym_suspend] = ACTIONS(4948), + [anon_sym_sealed] = ACTIONS(4948), + [anon_sym_annotation] = ACTIONS(4948), + [anon_sym_data] = ACTIONS(4948), + [anon_sym_inner] = ACTIONS(4948), + [anon_sym_value] = ACTIONS(4948), + [anon_sym_override] = ACTIONS(4948), + [anon_sym_lateinit] = ACTIONS(4948), + [anon_sym_public] = ACTIONS(4948), + [anon_sym_private] = ACTIONS(4948), + [anon_sym_internal] = ACTIONS(4948), + [anon_sym_protected] = ACTIONS(4948), + [anon_sym_tailrec] = ACTIONS(4948), + [anon_sym_operator] = ACTIONS(4948), + [anon_sym_infix] = ACTIONS(4948), + [anon_sym_inline] = ACTIONS(4948), + [anon_sym_external] = ACTIONS(4948), + [sym_property_modifier] = ACTIONS(4948), + [anon_sym_abstract] = ACTIONS(4948), + [anon_sym_final] = ACTIONS(4948), + [anon_sym_open] = ACTIONS(4948), + [anon_sym_vararg] = ACTIONS(4948), + [anon_sym_noinline] = ACTIONS(4948), + [anon_sym_crossinline] = ACTIONS(4948), + [anon_sym_expect] = ACTIONS(4948), + [anon_sym_actual] = ACTIONS(4948), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4950), + [sym__automatic_semicolon] = ACTIONS(4950), + [sym_safe_nav] = ACTIONS(4950), [sym_multiline_comment] = ACTIONS(3), }, [3841] = { - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(4194), - [anon_sym_LBRACE] = ACTIONS(4196), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym__alpha_identifier] = ACTIONS(4447), + [anon_sym_AT] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_DOT] = ACTIONS(4447), + [anon_sym_as] = ACTIONS(4447), + [anon_sym_EQ] = ACTIONS(4447), + [anon_sym_LBRACE] = ACTIONS(4449), + [anon_sym_RBRACE] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_where] = ACTIONS(4447), + [anon_sym_SEMI] = ACTIONS(4449), + [anon_sym_get] = ACTIONS(4447), + [anon_sym_set] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [sym_label] = ACTIONS(4449), + [anon_sym_in] = ACTIONS(4447), + [anon_sym_DOT_DOT] = ACTIONS(4449), + [anon_sym_QMARK_COLON] = ACTIONS(4449), + [anon_sym_AMP_AMP] = ACTIONS(4449), + [anon_sym_PIPE_PIPE] = ACTIONS(4449), + [anon_sym_else] = ACTIONS(4447), + [anon_sym_COLON_COLON] = ACTIONS(4449), + [anon_sym_PLUS_EQ] = ACTIONS(4449), + [anon_sym_DASH_EQ] = ACTIONS(4449), + [anon_sym_STAR_EQ] = ACTIONS(4449), + [anon_sym_SLASH_EQ] = ACTIONS(4449), + [anon_sym_PERCENT_EQ] = ACTIONS(4449), + [anon_sym_BANG_EQ] = ACTIONS(4447), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4449), + [anon_sym_EQ_EQ] = ACTIONS(4447), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4449), + [anon_sym_LT_EQ] = ACTIONS(4449), + [anon_sym_GT_EQ] = ACTIONS(4449), + [anon_sym_BANGin] = ACTIONS(4449), + [anon_sym_is] = ACTIONS(4447), + [anon_sym_BANGis] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_PERCENT] = ACTIONS(4447), + [anon_sym_as_QMARK] = ACTIONS(4449), + [anon_sym_PLUS_PLUS] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4449), + [anon_sym_BANG_BANG] = ACTIONS(4449), + [anon_sym_suspend] = ACTIONS(4447), + [anon_sym_sealed] = ACTIONS(4447), + [anon_sym_annotation] = ACTIONS(4447), + [anon_sym_data] = ACTIONS(4447), + [anon_sym_inner] = ACTIONS(4447), + [anon_sym_value] = ACTIONS(4447), + [anon_sym_override] = ACTIONS(4447), + [anon_sym_lateinit] = ACTIONS(4447), + [anon_sym_public] = ACTIONS(4447), + [anon_sym_private] = ACTIONS(4447), + [anon_sym_internal] = ACTIONS(4447), + [anon_sym_protected] = ACTIONS(4447), + [anon_sym_tailrec] = ACTIONS(4447), + [anon_sym_operator] = ACTIONS(4447), + [anon_sym_infix] = ACTIONS(4447), + [anon_sym_inline] = ACTIONS(4447), + [anon_sym_external] = ACTIONS(4447), + [sym_property_modifier] = ACTIONS(4447), + [anon_sym_abstract] = ACTIONS(4447), + [anon_sym_final] = ACTIONS(4447), + [anon_sym_open] = ACTIONS(4447), + [anon_sym_vararg] = ACTIONS(4447), + [anon_sym_noinline] = ACTIONS(4447), + [anon_sym_crossinline] = ACTIONS(4447), + [anon_sym_expect] = ACTIONS(4447), + [anon_sym_actual] = ACTIONS(4447), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4449), + [sym__automatic_semicolon] = ACTIONS(4449), + [sym_safe_nav] = ACTIONS(4449), [sym_multiline_comment] = ACTIONS(3), }, [3842] = { - [sym_function_body] = STATE(3389), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_RBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4387), - [anon_sym_DASH_GT] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4387), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), + [sym__alpha_identifier] = ACTIONS(4802), + [anon_sym_AT] = ACTIONS(4804), + [anon_sym_LBRACK] = ACTIONS(4804), + [anon_sym_DOT] = ACTIONS(4802), + [anon_sym_as] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(4802), + [anon_sym_LBRACE] = ACTIONS(4804), + [anon_sym_RBRACE] = ACTIONS(4804), + [anon_sym_LPAREN] = ACTIONS(4804), + [anon_sym_COMMA] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4802), + [anon_sym_GT] = ACTIONS(4802), + [anon_sym_where] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_get] = ACTIONS(4802), + [anon_sym_set] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4802), + [sym_label] = ACTIONS(4804), + [anon_sym_in] = ACTIONS(4802), + [anon_sym_DOT_DOT] = ACTIONS(4804), + [anon_sym_QMARK_COLON] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_COLON_COLON] = ACTIONS(4804), + [anon_sym_PLUS_EQ] = ACTIONS(4804), + [anon_sym_DASH_EQ] = ACTIONS(4804), + [anon_sym_STAR_EQ] = ACTIONS(4804), + [anon_sym_SLASH_EQ] = ACTIONS(4804), + [anon_sym_PERCENT_EQ] = ACTIONS(4804), + [anon_sym_BANG_EQ] = ACTIONS(4802), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4802), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT_EQ] = ACTIONS(4804), + [anon_sym_GT_EQ] = ACTIONS(4804), + [anon_sym_BANGin] = ACTIONS(4804), + [anon_sym_is] = ACTIONS(4802), + [anon_sym_BANGis] = ACTIONS(4804), + [anon_sym_PLUS] = ACTIONS(4802), + [anon_sym_DASH] = ACTIONS(4802), + [anon_sym_SLASH] = ACTIONS(4802), + [anon_sym_PERCENT] = ACTIONS(4802), + [anon_sym_as_QMARK] = ACTIONS(4804), + [anon_sym_PLUS_PLUS] = ACTIONS(4804), + [anon_sym_DASH_DASH] = ACTIONS(4804), + [anon_sym_BANG_BANG] = ACTIONS(4804), + [anon_sym_suspend] = ACTIONS(4802), + [anon_sym_sealed] = ACTIONS(4802), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_data] = ACTIONS(4802), + [anon_sym_inner] = ACTIONS(4802), + [anon_sym_value] = ACTIONS(4802), + [anon_sym_override] = ACTIONS(4802), + [anon_sym_lateinit] = ACTIONS(4802), + [anon_sym_public] = ACTIONS(4802), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_internal] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_tailrec] = ACTIONS(4802), + [anon_sym_operator] = ACTIONS(4802), + [anon_sym_infix] = ACTIONS(4802), + [anon_sym_inline] = ACTIONS(4802), + [anon_sym_external] = ACTIONS(4802), + [sym_property_modifier] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_final] = ACTIONS(4802), + [anon_sym_open] = ACTIONS(4802), + [anon_sym_vararg] = ACTIONS(4802), + [anon_sym_noinline] = ACTIONS(4802), + [anon_sym_crossinline] = ACTIONS(4802), + [anon_sym_expect] = ACTIONS(4802), + [anon_sym_actual] = ACTIONS(4802), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4804), + [sym__automatic_semicolon] = ACTIONS(4804), + [sym_safe_nav] = ACTIONS(4804), [sym_multiline_comment] = ACTIONS(3), }, [3843] = { - [sym__alpha_identifier] = ACTIONS(5015), - [anon_sym_AT] = ACTIONS(5017), - [anon_sym_LBRACK] = ACTIONS(5017), - [anon_sym_DOT] = ACTIONS(5015), - [anon_sym_as] = ACTIONS(5015), - [anon_sym_EQ] = ACTIONS(5015), - [anon_sym_LBRACE] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_LPAREN] = ACTIONS(5017), - [anon_sym_COMMA] = ACTIONS(5017), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_where] = ACTIONS(5015), - [anon_sym_SEMI] = ACTIONS(5017), - [anon_sym_get] = ACTIONS(5015), - [anon_sym_set] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [sym_label] = ACTIONS(5017), - [anon_sym_in] = ACTIONS(5015), - [anon_sym_DOT_DOT] = ACTIONS(5017), - [anon_sym_QMARK_COLON] = ACTIONS(5017), - [anon_sym_AMP_AMP] = ACTIONS(5017), - [anon_sym_PIPE_PIPE] = ACTIONS(5017), - [anon_sym_else] = ACTIONS(5015), - [anon_sym_COLON_COLON] = ACTIONS(5017), - [anon_sym_PLUS_EQ] = ACTIONS(5017), - [anon_sym_DASH_EQ] = ACTIONS(5017), - [anon_sym_STAR_EQ] = ACTIONS(5017), - [anon_sym_SLASH_EQ] = ACTIONS(5017), - [anon_sym_PERCENT_EQ] = ACTIONS(5017), - [anon_sym_BANG_EQ] = ACTIONS(5015), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5017), - [anon_sym_EQ_EQ] = ACTIONS(5015), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5017), - [anon_sym_LT_EQ] = ACTIONS(5017), - [anon_sym_GT_EQ] = ACTIONS(5017), - [anon_sym_BANGin] = ACTIONS(5017), - [anon_sym_is] = ACTIONS(5015), - [anon_sym_BANGis] = ACTIONS(5017), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_PERCENT] = ACTIONS(5015), - [anon_sym_as_QMARK] = ACTIONS(5017), - [anon_sym_PLUS_PLUS] = ACTIONS(5017), - [anon_sym_DASH_DASH] = ACTIONS(5017), - [anon_sym_BANG_BANG] = ACTIONS(5017), - [anon_sym_suspend] = ACTIONS(5015), - [anon_sym_sealed] = ACTIONS(5015), - [anon_sym_annotation] = ACTIONS(5015), - [anon_sym_data] = ACTIONS(5015), - [anon_sym_inner] = ACTIONS(5015), - [anon_sym_value] = ACTIONS(5015), - [anon_sym_override] = ACTIONS(5015), - [anon_sym_lateinit] = ACTIONS(5015), - [anon_sym_public] = ACTIONS(5015), - [anon_sym_private] = ACTIONS(5015), - [anon_sym_internal] = ACTIONS(5015), - [anon_sym_protected] = ACTIONS(5015), - [anon_sym_tailrec] = ACTIONS(5015), - [anon_sym_operator] = ACTIONS(5015), - [anon_sym_infix] = ACTIONS(5015), - [anon_sym_inline] = ACTIONS(5015), - [anon_sym_external] = ACTIONS(5015), - [sym_property_modifier] = ACTIONS(5015), - [anon_sym_abstract] = ACTIONS(5015), - [anon_sym_final] = ACTIONS(5015), - [anon_sym_open] = ACTIONS(5015), - [anon_sym_vararg] = ACTIONS(5015), - [anon_sym_noinline] = ACTIONS(5015), - [anon_sym_crossinline] = ACTIONS(5015), - [anon_sym_expect] = ACTIONS(5015), - [anon_sym_actual] = ACTIONS(5015), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5017), - [sym__automatic_semicolon] = ACTIONS(5017), - [sym_safe_nav] = ACTIONS(5017), + [sym__alpha_identifier] = ACTIONS(4792), + [anon_sym_AT] = ACTIONS(4794), + [anon_sym_LBRACK] = ACTIONS(4794), + [anon_sym_DOT] = ACTIONS(4792), + [anon_sym_as] = ACTIONS(4792), + [anon_sym_EQ] = ACTIONS(4792), + [anon_sym_LBRACE] = ACTIONS(4794), + [anon_sym_RBRACE] = ACTIONS(4794), + [anon_sym_LPAREN] = ACTIONS(4794), + [anon_sym_COMMA] = ACTIONS(4794), + [anon_sym_LT] = ACTIONS(4792), + [anon_sym_GT] = ACTIONS(4792), + [anon_sym_where] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(4794), + [anon_sym_get] = ACTIONS(4792), + [anon_sym_set] = ACTIONS(4792), + [anon_sym_STAR] = ACTIONS(4792), + [sym_label] = ACTIONS(4794), + [anon_sym_in] = ACTIONS(4792), + [anon_sym_DOT_DOT] = ACTIONS(4794), + [anon_sym_QMARK_COLON] = ACTIONS(4794), + [anon_sym_AMP_AMP] = ACTIONS(4794), + [anon_sym_PIPE_PIPE] = ACTIONS(4794), + [anon_sym_else] = ACTIONS(4792), + [anon_sym_COLON_COLON] = ACTIONS(4794), + [anon_sym_PLUS_EQ] = ACTIONS(4794), + [anon_sym_DASH_EQ] = ACTIONS(4794), + [anon_sym_STAR_EQ] = ACTIONS(4794), + [anon_sym_SLASH_EQ] = ACTIONS(4794), + [anon_sym_PERCENT_EQ] = ACTIONS(4794), + [anon_sym_BANG_EQ] = ACTIONS(4792), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4794), + [anon_sym_EQ_EQ] = ACTIONS(4792), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4794), + [anon_sym_LT_EQ] = ACTIONS(4794), + [anon_sym_GT_EQ] = ACTIONS(4794), + [anon_sym_BANGin] = ACTIONS(4794), + [anon_sym_is] = ACTIONS(4792), + [anon_sym_BANGis] = ACTIONS(4794), + [anon_sym_PLUS] = ACTIONS(4792), + [anon_sym_DASH] = ACTIONS(4792), + [anon_sym_SLASH] = ACTIONS(4792), + [anon_sym_PERCENT] = ACTIONS(4792), + [anon_sym_as_QMARK] = ACTIONS(4794), + [anon_sym_PLUS_PLUS] = ACTIONS(4794), + [anon_sym_DASH_DASH] = ACTIONS(4794), + [anon_sym_BANG_BANG] = ACTIONS(4794), + [anon_sym_suspend] = ACTIONS(4792), + [anon_sym_sealed] = ACTIONS(4792), + [anon_sym_annotation] = ACTIONS(4792), + [anon_sym_data] = ACTIONS(4792), + [anon_sym_inner] = ACTIONS(4792), + [anon_sym_value] = ACTIONS(4792), + [anon_sym_override] = ACTIONS(4792), + [anon_sym_lateinit] = ACTIONS(4792), + [anon_sym_public] = ACTIONS(4792), + [anon_sym_private] = ACTIONS(4792), + [anon_sym_internal] = ACTIONS(4792), + [anon_sym_protected] = ACTIONS(4792), + [anon_sym_tailrec] = ACTIONS(4792), + [anon_sym_operator] = ACTIONS(4792), + [anon_sym_infix] = ACTIONS(4792), + [anon_sym_inline] = ACTIONS(4792), + [anon_sym_external] = ACTIONS(4792), + [sym_property_modifier] = ACTIONS(4792), + [anon_sym_abstract] = ACTIONS(4792), + [anon_sym_final] = ACTIONS(4792), + [anon_sym_open] = ACTIONS(4792), + [anon_sym_vararg] = ACTIONS(4792), + [anon_sym_noinline] = ACTIONS(4792), + [anon_sym_crossinline] = ACTIONS(4792), + [anon_sym_expect] = ACTIONS(4792), + [anon_sym_actual] = ACTIONS(4792), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4794), + [sym__automatic_semicolon] = ACTIONS(4794), + [sym_safe_nav] = ACTIONS(4794), [sym_multiline_comment] = ACTIONS(3), }, [3844] = { - [sym__alpha_identifier] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1798), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_DOT] = ACTIONS(1796), - [anon_sym_as] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_RBRACE] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_COMMA] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_where] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1798), - [anon_sym_get] = ACTIONS(1796), - [anon_sym_set] = ACTIONS(1796), - [anon_sym_STAR] = ACTIONS(1796), - [sym_label] = ACTIONS(1798), - [anon_sym_in] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1798), - [anon_sym_QMARK_COLON] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_else] = ACTIONS(1796), - [anon_sym_COLON_COLON] = ACTIONS(1798), - [anon_sym_PLUS_EQ] = ACTIONS(1798), - [anon_sym_DASH_EQ] = ACTIONS(1798), - [anon_sym_STAR_EQ] = ACTIONS(1798), - [anon_sym_SLASH_EQ] = ACTIONS(1798), - [anon_sym_PERCENT_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1796), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1796), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1798), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_BANGin] = ACTIONS(1798), - [anon_sym_is] = ACTIONS(1796), - [anon_sym_BANGis] = ACTIONS(1798), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_as_QMARK] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_BANG_BANG] = ACTIONS(1798), - [anon_sym_suspend] = ACTIONS(1796), - [anon_sym_sealed] = ACTIONS(1796), - [anon_sym_annotation] = ACTIONS(1796), - [anon_sym_data] = ACTIONS(1796), - [anon_sym_inner] = ACTIONS(1796), - [anon_sym_value] = ACTIONS(1796), - [anon_sym_override] = ACTIONS(1796), - [anon_sym_lateinit] = ACTIONS(1796), - [anon_sym_public] = ACTIONS(1796), - [anon_sym_private] = ACTIONS(1796), - [anon_sym_internal] = ACTIONS(1796), - [anon_sym_protected] = ACTIONS(1796), - [anon_sym_tailrec] = ACTIONS(1796), - [anon_sym_operator] = ACTIONS(1796), - [anon_sym_infix] = ACTIONS(1796), - [anon_sym_inline] = ACTIONS(1796), - [anon_sym_external] = ACTIONS(1796), - [sym_property_modifier] = ACTIONS(1796), - [anon_sym_abstract] = ACTIONS(1796), - [anon_sym_final] = ACTIONS(1796), - [anon_sym_open] = ACTIONS(1796), - [anon_sym_vararg] = ACTIONS(1796), - [anon_sym_noinline] = ACTIONS(1796), - [anon_sym_crossinline] = ACTIONS(1796), - [anon_sym_expect] = ACTIONS(1796), - [anon_sym_actual] = ACTIONS(1796), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1798), - [sym__automatic_semicolon] = ACTIONS(1798), - [sym_safe_nav] = ACTIONS(1798), + [sym__alpha_identifier] = ACTIONS(4788), + [anon_sym_AT] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(4790), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_as] = ACTIONS(4788), + [anon_sym_EQ] = ACTIONS(4788), + [anon_sym_LBRACE] = ACTIONS(4790), + [anon_sym_RBRACE] = ACTIONS(4790), + [anon_sym_LPAREN] = ACTIONS(4790), + [anon_sym_COMMA] = ACTIONS(4790), + [anon_sym_LT] = ACTIONS(4788), + [anon_sym_GT] = ACTIONS(4788), + [anon_sym_where] = ACTIONS(4788), + [anon_sym_SEMI] = ACTIONS(4790), + [anon_sym_get] = ACTIONS(4788), + [anon_sym_set] = ACTIONS(4788), + [anon_sym_STAR] = ACTIONS(4788), + [sym_label] = ACTIONS(4790), + [anon_sym_in] = ACTIONS(4788), + [anon_sym_DOT_DOT] = ACTIONS(4790), + [anon_sym_QMARK_COLON] = ACTIONS(4790), + [anon_sym_AMP_AMP] = ACTIONS(4790), + [anon_sym_PIPE_PIPE] = ACTIONS(4790), + [anon_sym_else] = ACTIONS(4788), + [anon_sym_COLON_COLON] = ACTIONS(4790), + [anon_sym_PLUS_EQ] = ACTIONS(4790), + [anon_sym_DASH_EQ] = ACTIONS(4790), + [anon_sym_STAR_EQ] = ACTIONS(4790), + [anon_sym_SLASH_EQ] = ACTIONS(4790), + [anon_sym_PERCENT_EQ] = ACTIONS(4790), + [anon_sym_BANG_EQ] = ACTIONS(4788), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4790), + [anon_sym_EQ_EQ] = ACTIONS(4788), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4790), + [anon_sym_LT_EQ] = ACTIONS(4790), + [anon_sym_GT_EQ] = ACTIONS(4790), + [anon_sym_BANGin] = ACTIONS(4790), + [anon_sym_is] = ACTIONS(4788), + [anon_sym_BANGis] = ACTIONS(4790), + [anon_sym_PLUS] = ACTIONS(4788), + [anon_sym_DASH] = ACTIONS(4788), + [anon_sym_SLASH] = ACTIONS(4788), + [anon_sym_PERCENT] = ACTIONS(4788), + [anon_sym_as_QMARK] = ACTIONS(4790), + [anon_sym_PLUS_PLUS] = ACTIONS(4790), + [anon_sym_DASH_DASH] = ACTIONS(4790), + [anon_sym_BANG_BANG] = ACTIONS(4790), + [anon_sym_suspend] = ACTIONS(4788), + [anon_sym_sealed] = ACTIONS(4788), + [anon_sym_annotation] = ACTIONS(4788), + [anon_sym_data] = ACTIONS(4788), + [anon_sym_inner] = ACTIONS(4788), + [anon_sym_value] = ACTIONS(4788), + [anon_sym_override] = ACTIONS(4788), + [anon_sym_lateinit] = ACTIONS(4788), + [anon_sym_public] = ACTIONS(4788), + [anon_sym_private] = ACTIONS(4788), + [anon_sym_internal] = ACTIONS(4788), + [anon_sym_protected] = ACTIONS(4788), + [anon_sym_tailrec] = ACTIONS(4788), + [anon_sym_operator] = ACTIONS(4788), + [anon_sym_infix] = ACTIONS(4788), + [anon_sym_inline] = ACTIONS(4788), + [anon_sym_external] = ACTIONS(4788), + [sym_property_modifier] = ACTIONS(4788), + [anon_sym_abstract] = ACTIONS(4788), + [anon_sym_final] = ACTIONS(4788), + [anon_sym_open] = ACTIONS(4788), + [anon_sym_vararg] = ACTIONS(4788), + [anon_sym_noinline] = ACTIONS(4788), + [anon_sym_crossinline] = ACTIONS(4788), + [anon_sym_expect] = ACTIONS(4788), + [anon_sym_actual] = ACTIONS(4788), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4790), + [sym__automatic_semicolon] = ACTIONS(4790), + [sym_safe_nav] = ACTIONS(4790), [sym_multiline_comment] = ACTIONS(3), }, [3845] = { - [sym_function_body] = STATE(3147), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_object] = ACTIONS(4385), - [anon_sym_fun] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_this] = ACTIONS(4385), - [anon_sym_super] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4387), - [sym_label] = ACTIONS(4385), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_null] = ACTIONS(4385), - [anon_sym_if] = ACTIONS(4385), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_when] = ACTIONS(4385), - [anon_sym_try] = ACTIONS(4385), - [anon_sym_throw] = ACTIONS(4385), - [anon_sym_return] = ACTIONS(4385), - [anon_sym_continue] = ACTIONS(4385), - [anon_sym_break] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4387), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4387), - [anon_sym_continue_AT] = ACTIONS(4387), - [anon_sym_break_AT] = ACTIONS(4387), - [anon_sym_this_AT] = ACTIONS(4387), - [anon_sym_super_AT] = ACTIONS(4387), - [sym_real_literal] = ACTIONS(4387), - [sym_integer_literal] = ACTIONS(4385), - [sym_hex_literal] = ACTIONS(4387), - [sym_bin_literal] = ACTIONS(4387), - [anon_sym_true] = ACTIONS(4385), - [anon_sym_false] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4387), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4387), - }, - [3846] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(7113), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_object] = ACTIONS(4493), - [anon_sym_fun] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_this] = ACTIONS(4493), - [anon_sym_super] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4493), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_null] = ACTIONS(4493), - [anon_sym_if] = ACTIONS(4493), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_when] = ACTIONS(4493), - [anon_sym_try] = ACTIONS(4493), - [anon_sym_throw] = ACTIONS(4493), - [anon_sym_return] = ACTIONS(4493), - [anon_sym_continue] = ACTIONS(4493), - [anon_sym_break] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4495), - [anon_sym_continue_AT] = ACTIONS(4495), - [anon_sym_break_AT] = ACTIONS(4495), - [anon_sym_this_AT] = ACTIONS(4495), - [anon_sym_super_AT] = ACTIONS(4495), - [sym_real_literal] = ACTIONS(4495), - [sym_integer_literal] = ACTIONS(4493), - [sym_hex_literal] = ACTIONS(4495), - [sym_bin_literal] = ACTIONS(4495), - [anon_sym_true] = ACTIONS(4493), - [anon_sym_false] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4495), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4495), - }, - [3847] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(5790), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), - [sym_multiline_comment] = ACTIONS(3), - }, - [3848] = { - [sym__alpha_identifier] = ACTIONS(5157), - [anon_sym_AT] = ACTIONS(5159), - [anon_sym_LBRACK] = ACTIONS(5159), - [anon_sym_DOT] = ACTIONS(5157), - [anon_sym_as] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5159), - [anon_sym_RBRACE] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5159), - [anon_sym_COMMA] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5157), - [anon_sym_GT] = ACTIONS(5157), - [anon_sym_where] = ACTIONS(5157), - [anon_sym_SEMI] = ACTIONS(5159), - [anon_sym_get] = ACTIONS(5157), - [anon_sym_set] = ACTIONS(5157), - [anon_sym_STAR] = ACTIONS(5157), - [sym_label] = ACTIONS(5159), - [anon_sym_in] = ACTIONS(5157), - [anon_sym_DOT_DOT] = ACTIONS(5159), - [anon_sym_QMARK_COLON] = ACTIONS(5159), - [anon_sym_AMP_AMP] = ACTIONS(5159), - [anon_sym_PIPE_PIPE] = ACTIONS(5159), - [anon_sym_else] = ACTIONS(5157), - [anon_sym_COLON_COLON] = ACTIONS(5159), - [anon_sym_PLUS_EQ] = ACTIONS(5159), - [anon_sym_DASH_EQ] = ACTIONS(5159), - [anon_sym_STAR_EQ] = ACTIONS(5159), - [anon_sym_SLASH_EQ] = ACTIONS(5159), - [anon_sym_PERCENT_EQ] = ACTIONS(5159), - [anon_sym_BANG_EQ] = ACTIONS(5157), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5159), - [anon_sym_EQ_EQ] = ACTIONS(5157), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5159), - [anon_sym_LT_EQ] = ACTIONS(5159), - [anon_sym_GT_EQ] = ACTIONS(5159), - [anon_sym_BANGin] = ACTIONS(5159), - [anon_sym_is] = ACTIONS(5157), - [anon_sym_BANGis] = ACTIONS(5159), - [anon_sym_PLUS] = ACTIONS(5157), - [anon_sym_DASH] = ACTIONS(5157), - [anon_sym_SLASH] = ACTIONS(5157), - [anon_sym_PERCENT] = ACTIONS(5157), - [anon_sym_as_QMARK] = ACTIONS(5159), - [anon_sym_PLUS_PLUS] = ACTIONS(5159), - [anon_sym_DASH_DASH] = ACTIONS(5159), - [anon_sym_BANG_BANG] = ACTIONS(5159), - [anon_sym_suspend] = ACTIONS(5157), - [anon_sym_sealed] = ACTIONS(5157), - [anon_sym_annotation] = ACTIONS(5157), - [anon_sym_data] = ACTIONS(5157), - [anon_sym_inner] = ACTIONS(5157), - [anon_sym_value] = ACTIONS(5157), - [anon_sym_override] = ACTIONS(5157), - [anon_sym_lateinit] = ACTIONS(5157), - [anon_sym_public] = ACTIONS(5157), - [anon_sym_private] = ACTIONS(5157), - [anon_sym_internal] = ACTIONS(5157), - [anon_sym_protected] = ACTIONS(5157), - [anon_sym_tailrec] = ACTIONS(5157), - [anon_sym_operator] = ACTIONS(5157), - [anon_sym_infix] = ACTIONS(5157), - [anon_sym_inline] = ACTIONS(5157), - [anon_sym_external] = ACTIONS(5157), - [sym_property_modifier] = ACTIONS(5157), - [anon_sym_abstract] = ACTIONS(5157), - [anon_sym_final] = ACTIONS(5157), - [anon_sym_open] = ACTIONS(5157), - [anon_sym_vararg] = ACTIONS(5157), - [anon_sym_noinline] = ACTIONS(5157), - [anon_sym_crossinline] = ACTIONS(5157), - [anon_sym_expect] = ACTIONS(5157), - [anon_sym_actual] = ACTIONS(5157), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5159), - [sym__automatic_semicolon] = ACTIONS(5159), - [sym_safe_nav] = ACTIONS(5159), - [sym_multiline_comment] = ACTIONS(3), - }, - [3849] = { - [sym__alpha_identifier] = ACTIONS(5101), - [anon_sym_AT] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_DOT] = ACTIONS(5101), - [anon_sym_as] = ACTIONS(5101), - [anon_sym_EQ] = ACTIONS(5101), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_where] = ACTIONS(5101), - [anon_sym_SEMI] = ACTIONS(5103), - [anon_sym_get] = ACTIONS(5101), - [anon_sym_set] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [sym_label] = ACTIONS(5103), - [anon_sym_in] = ACTIONS(5101), - [anon_sym_DOT_DOT] = ACTIONS(5103), - [anon_sym_QMARK_COLON] = ACTIONS(5103), - [anon_sym_AMP_AMP] = ACTIONS(5103), - [anon_sym_PIPE_PIPE] = ACTIONS(5103), - [anon_sym_else] = ACTIONS(5101), - [anon_sym_COLON_COLON] = ACTIONS(5103), - [anon_sym_PLUS_EQ] = ACTIONS(5103), - [anon_sym_DASH_EQ] = ACTIONS(5103), - [anon_sym_STAR_EQ] = ACTIONS(5103), - [anon_sym_SLASH_EQ] = ACTIONS(5103), - [anon_sym_PERCENT_EQ] = ACTIONS(5103), - [anon_sym_BANG_EQ] = ACTIONS(5101), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), - [anon_sym_EQ_EQ] = ACTIONS(5101), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), - [anon_sym_LT_EQ] = ACTIONS(5103), - [anon_sym_GT_EQ] = ACTIONS(5103), - [anon_sym_BANGin] = ACTIONS(5103), - [anon_sym_is] = ACTIONS(5101), - [anon_sym_BANGis] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_PERCENT] = ACTIONS(5101), - [anon_sym_as_QMARK] = ACTIONS(5103), - [anon_sym_PLUS_PLUS] = ACTIONS(5103), - [anon_sym_DASH_DASH] = ACTIONS(5103), - [anon_sym_BANG_BANG] = ACTIONS(5103), - [anon_sym_suspend] = ACTIONS(5101), - [anon_sym_sealed] = ACTIONS(5101), - [anon_sym_annotation] = ACTIONS(5101), - [anon_sym_data] = ACTIONS(5101), - [anon_sym_inner] = ACTIONS(5101), - [anon_sym_value] = ACTIONS(5101), - [anon_sym_override] = ACTIONS(5101), - [anon_sym_lateinit] = ACTIONS(5101), - [anon_sym_public] = ACTIONS(5101), - [anon_sym_private] = ACTIONS(5101), - [anon_sym_internal] = ACTIONS(5101), - [anon_sym_protected] = ACTIONS(5101), - [anon_sym_tailrec] = ACTIONS(5101), - [anon_sym_operator] = ACTIONS(5101), - [anon_sym_infix] = ACTIONS(5101), - [anon_sym_inline] = ACTIONS(5101), - [anon_sym_external] = ACTIONS(5101), - [sym_property_modifier] = ACTIONS(5101), - [anon_sym_abstract] = ACTIONS(5101), - [anon_sym_final] = ACTIONS(5101), - [anon_sym_open] = ACTIONS(5101), - [anon_sym_vararg] = ACTIONS(5101), - [anon_sym_noinline] = ACTIONS(5101), - [anon_sym_crossinline] = ACTIONS(5101), - [anon_sym_expect] = ACTIONS(5101), - [anon_sym_actual] = ACTIONS(5101), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5103), - [sym__automatic_semicolon] = ACTIONS(5103), - [sym_safe_nav] = ACTIONS(5103), - [sym_multiline_comment] = ACTIONS(3), - }, - [3850] = { - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_PLUS_EQ] = ACTIONS(4196), - [anon_sym_DASH_EQ] = ACTIONS(4196), - [anon_sym_STAR_EQ] = ACTIONS(4196), - [anon_sym_SLASH_EQ] = ACTIONS(4196), - [anon_sym_PERCENT_EQ] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4194), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - }, - [3851] = { - [sym_function_body] = STATE(3084), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_object] = ACTIONS(4393), - [anon_sym_fun] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_this] = ACTIONS(4393), - [anon_sym_super] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4395), - [sym_label] = ACTIONS(4393), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_null] = ACTIONS(4393), - [anon_sym_if] = ACTIONS(4393), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_try] = ACTIONS(4393), - [anon_sym_throw] = ACTIONS(4393), - [anon_sym_return] = ACTIONS(4393), - [anon_sym_continue] = ACTIONS(4393), - [anon_sym_break] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4395), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4393), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4395), - [anon_sym_continue_AT] = ACTIONS(4395), - [anon_sym_break_AT] = ACTIONS(4395), - [anon_sym_this_AT] = ACTIONS(4395), - [anon_sym_super_AT] = ACTIONS(4395), - [sym_real_literal] = ACTIONS(4395), - [sym_integer_literal] = ACTIONS(4393), - [sym_hex_literal] = ACTIONS(4395), - [sym_bin_literal] = ACTIONS(4395), - [anon_sym_true] = ACTIONS(4393), - [anon_sym_false] = ACTIONS(4393), - [anon_sym_SQUOTE] = ACTIONS(4395), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4395), - }, - [3852] = { - [sym__alpha_identifier] = ACTIONS(4963), - [anon_sym_AT] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_DOT] = ACTIONS(4963), - [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_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_value] = 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), - }, - [3853] = { - [sym__alpha_identifier] = ACTIONS(4427), - [anon_sym_AT] = ACTIONS(4429), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_as] = ACTIONS(4427), - [anon_sym_EQ] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(4429), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_COMMA] = ACTIONS(4429), - [anon_sym_LT] = ACTIONS(4427), - [anon_sym_GT] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_SEMI] = ACTIONS(4429), - [anon_sym_get] = ACTIONS(4427), - [anon_sym_set] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [sym_label] = ACTIONS(4429), - [anon_sym_in] = ACTIONS(4427), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_QMARK_COLON] = ACTIONS(4429), - [anon_sym_AMP_AMP] = ACTIONS(4429), - [anon_sym_PIPE_PIPE] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4427), - [anon_sym_COLON_COLON] = ACTIONS(4429), - [anon_sym_PLUS_EQ] = ACTIONS(4429), - [anon_sym_DASH_EQ] = ACTIONS(4429), - [anon_sym_STAR_EQ] = ACTIONS(4429), - [anon_sym_SLASH_EQ] = ACTIONS(4429), - [anon_sym_PERCENT_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4427), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4429), - [anon_sym_EQ_EQ] = ACTIONS(4427), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4429), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4429), - [anon_sym_BANGin] = ACTIONS(4429), - [anon_sym_is] = ACTIONS(4427), - [anon_sym_BANGis] = ACTIONS(4429), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_SLASH] = ACTIONS(4427), - [anon_sym_PERCENT] = ACTIONS(4427), - [anon_sym_as_QMARK] = ACTIONS(4429), - [anon_sym_PLUS_PLUS] = ACTIONS(4429), - [anon_sym_DASH_DASH] = ACTIONS(4429), - [anon_sym_BANG_BANG] = ACTIONS(4429), - [anon_sym_suspend] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_annotation] = ACTIONS(4427), - [anon_sym_data] = ACTIONS(4427), - [anon_sym_inner] = ACTIONS(4427), - [anon_sym_value] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_lateinit] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_tailrec] = ACTIONS(4427), - [anon_sym_operator] = ACTIONS(4427), - [anon_sym_infix] = ACTIONS(4427), - [anon_sym_inline] = ACTIONS(4427), - [anon_sym_external] = ACTIONS(4427), - [sym_property_modifier] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_final] = ACTIONS(4427), - [anon_sym_open] = ACTIONS(4427), - [anon_sym_vararg] = ACTIONS(4427), - [anon_sym_noinline] = ACTIONS(4427), - [anon_sym_crossinline] = ACTIONS(4427), - [anon_sym_expect] = ACTIONS(4427), - [anon_sym_actual] = ACTIONS(4427), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4429), - [sym__automatic_semicolon] = ACTIONS(4429), - [sym_safe_nav] = ACTIONS(4429), - [sym_multiline_comment] = ACTIONS(3), - }, - [3854] = { - [sym__alpha_identifier] = ACTIONS(5019), - [anon_sym_AT] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_DOT] = ACTIONS(5019), - [anon_sym_as] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5021), - [anon_sym_RBRACE] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5021), - [anon_sym_COMMA] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5019), - [anon_sym_GT] = ACTIONS(5019), - [anon_sym_where] = ACTIONS(5019), - [anon_sym_SEMI] = ACTIONS(5021), - [anon_sym_get] = ACTIONS(5019), - [anon_sym_set] = ACTIONS(5019), - [anon_sym_STAR] = ACTIONS(5019), - [sym_label] = ACTIONS(5021), - [anon_sym_in] = ACTIONS(5019), - [anon_sym_DOT_DOT] = ACTIONS(5021), - [anon_sym_QMARK_COLON] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_else] = ACTIONS(5019), - [anon_sym_COLON_COLON] = ACTIONS(5021), - [anon_sym_PLUS_EQ] = ACTIONS(5021), - [anon_sym_DASH_EQ] = ACTIONS(5021), - [anon_sym_STAR_EQ] = ACTIONS(5021), - [anon_sym_SLASH_EQ] = ACTIONS(5021), - [anon_sym_PERCENT_EQ] = ACTIONS(5021), - [anon_sym_BANG_EQ] = ACTIONS(5019), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5021), - [anon_sym_EQ_EQ] = ACTIONS(5019), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5021), - [anon_sym_LT_EQ] = ACTIONS(5021), - [anon_sym_GT_EQ] = ACTIONS(5021), - [anon_sym_BANGin] = ACTIONS(5021), - [anon_sym_is] = ACTIONS(5019), - [anon_sym_BANGis] = ACTIONS(5021), - [anon_sym_PLUS] = ACTIONS(5019), - [anon_sym_DASH] = ACTIONS(5019), - [anon_sym_SLASH] = ACTIONS(5019), - [anon_sym_PERCENT] = ACTIONS(5019), - [anon_sym_as_QMARK] = ACTIONS(5021), - [anon_sym_PLUS_PLUS] = ACTIONS(5021), - [anon_sym_DASH_DASH] = ACTIONS(5021), - [anon_sym_BANG_BANG] = ACTIONS(5021), - [anon_sym_suspend] = ACTIONS(5019), - [anon_sym_sealed] = ACTIONS(5019), - [anon_sym_annotation] = ACTIONS(5019), - [anon_sym_data] = ACTIONS(5019), - [anon_sym_inner] = ACTIONS(5019), - [anon_sym_value] = ACTIONS(5019), - [anon_sym_override] = ACTIONS(5019), - [anon_sym_lateinit] = ACTIONS(5019), - [anon_sym_public] = ACTIONS(5019), - [anon_sym_private] = ACTIONS(5019), - [anon_sym_internal] = ACTIONS(5019), - [anon_sym_protected] = ACTIONS(5019), - [anon_sym_tailrec] = ACTIONS(5019), - [anon_sym_operator] = ACTIONS(5019), - [anon_sym_infix] = ACTIONS(5019), - [anon_sym_inline] = ACTIONS(5019), - [anon_sym_external] = ACTIONS(5019), - [sym_property_modifier] = ACTIONS(5019), - [anon_sym_abstract] = ACTIONS(5019), - [anon_sym_final] = ACTIONS(5019), - [anon_sym_open] = ACTIONS(5019), - [anon_sym_vararg] = ACTIONS(5019), - [anon_sym_noinline] = ACTIONS(5019), - [anon_sym_crossinline] = ACTIONS(5019), - [anon_sym_expect] = ACTIONS(5019), - [anon_sym_actual] = ACTIONS(5019), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5021), - [sym__automatic_semicolon] = ACTIONS(5021), - [sym_safe_nav] = ACTIONS(5021), - [sym_multiline_comment] = ACTIONS(3), - }, - [3855] = { - [sym__alpha_identifier] = ACTIONS(5193), - [anon_sym_AT] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_DOT] = ACTIONS(5193), - [anon_sym_as] = ACTIONS(5193), - [anon_sym_EQ] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_where] = ACTIONS(5193), - [anon_sym_SEMI] = ACTIONS(5195), - [anon_sym_get] = ACTIONS(5193), - [anon_sym_set] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [sym_label] = ACTIONS(5195), - [anon_sym_in] = ACTIONS(5193), - [anon_sym_DOT_DOT] = ACTIONS(5195), - [anon_sym_QMARK_COLON] = ACTIONS(5195), - [anon_sym_AMP_AMP] = ACTIONS(5195), - [anon_sym_PIPE_PIPE] = ACTIONS(5195), - [anon_sym_else] = ACTIONS(5193), - [anon_sym_COLON_COLON] = ACTIONS(5195), - [anon_sym_PLUS_EQ] = ACTIONS(5195), - [anon_sym_DASH_EQ] = ACTIONS(5195), - [anon_sym_STAR_EQ] = ACTIONS(5195), - [anon_sym_SLASH_EQ] = ACTIONS(5195), - [anon_sym_PERCENT_EQ] = ACTIONS(5195), - [anon_sym_BANG_EQ] = ACTIONS(5193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5195), - [anon_sym_EQ_EQ] = ACTIONS(5193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5195), - [anon_sym_LT_EQ] = ACTIONS(5195), - [anon_sym_GT_EQ] = ACTIONS(5195), - [anon_sym_BANGin] = ACTIONS(5195), - [anon_sym_is] = ACTIONS(5193), - [anon_sym_BANGis] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_PERCENT] = ACTIONS(5193), - [anon_sym_as_QMARK] = ACTIONS(5195), - [anon_sym_PLUS_PLUS] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_BANG_BANG] = ACTIONS(5195), - [anon_sym_suspend] = ACTIONS(5193), - [anon_sym_sealed] = ACTIONS(5193), - [anon_sym_annotation] = ACTIONS(5193), - [anon_sym_data] = ACTIONS(5193), - [anon_sym_inner] = ACTIONS(5193), - [anon_sym_value] = ACTIONS(5193), - [anon_sym_override] = ACTIONS(5193), - [anon_sym_lateinit] = ACTIONS(5193), - [anon_sym_public] = ACTIONS(5193), - [anon_sym_private] = ACTIONS(5193), - [anon_sym_internal] = ACTIONS(5193), - [anon_sym_protected] = ACTIONS(5193), - [anon_sym_tailrec] = ACTIONS(5193), - [anon_sym_operator] = ACTIONS(5193), - [anon_sym_infix] = ACTIONS(5193), - [anon_sym_inline] = ACTIONS(5193), - [anon_sym_external] = ACTIONS(5193), - [sym_property_modifier] = ACTIONS(5193), - [anon_sym_abstract] = ACTIONS(5193), - [anon_sym_final] = ACTIONS(5193), - [anon_sym_open] = ACTIONS(5193), - [anon_sym_vararg] = ACTIONS(5193), - [anon_sym_noinline] = ACTIONS(5193), - [anon_sym_crossinline] = ACTIONS(5193), - [anon_sym_expect] = ACTIONS(5193), - [anon_sym_actual] = ACTIONS(5193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5195), - [sym__automatic_semicolon] = ACTIONS(5195), - [sym_safe_nav] = ACTIONS(5195), - [sym_multiline_comment] = ACTIONS(3), - }, - [3856] = { - [sym__alpha_identifier] = ACTIONS(4507), - [anon_sym_AT] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4509), - [anon_sym_DOT] = ACTIONS(4507), - [anon_sym_as] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(4507), - [anon_sym_LBRACE] = ACTIONS(4509), - [anon_sym_RBRACE] = ACTIONS(4509), - [anon_sym_LPAREN] = ACTIONS(4509), - [anon_sym_COMMA] = ACTIONS(4509), - [anon_sym_LT] = ACTIONS(4507), - [anon_sym_GT] = ACTIONS(4507), - [anon_sym_where] = ACTIONS(4507), - [anon_sym_SEMI] = ACTIONS(4509), - [anon_sym_get] = ACTIONS(4507), - [anon_sym_set] = ACTIONS(4507), - [anon_sym_STAR] = ACTIONS(4507), - [sym_label] = ACTIONS(4509), - [anon_sym_in] = ACTIONS(4507), - [anon_sym_DOT_DOT] = ACTIONS(4509), - [anon_sym_QMARK_COLON] = ACTIONS(4509), - [anon_sym_AMP_AMP] = ACTIONS(4509), - [anon_sym_PIPE_PIPE] = ACTIONS(4509), - [anon_sym_else] = ACTIONS(4507), - [anon_sym_COLON_COLON] = ACTIONS(4509), - [anon_sym_PLUS_EQ] = ACTIONS(4509), - [anon_sym_DASH_EQ] = ACTIONS(4509), - [anon_sym_STAR_EQ] = ACTIONS(4509), - [anon_sym_SLASH_EQ] = ACTIONS(4509), - [anon_sym_PERCENT_EQ] = ACTIONS(4509), - [anon_sym_BANG_EQ] = ACTIONS(4507), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4509), - [anon_sym_EQ_EQ] = ACTIONS(4507), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4509), - [anon_sym_LT_EQ] = ACTIONS(4509), - [anon_sym_GT_EQ] = ACTIONS(4509), - [anon_sym_BANGin] = ACTIONS(4509), - [anon_sym_is] = ACTIONS(4507), - [anon_sym_BANGis] = ACTIONS(4509), - [anon_sym_PLUS] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4507), - [anon_sym_SLASH] = ACTIONS(4507), - [anon_sym_PERCENT] = ACTIONS(4507), - [anon_sym_as_QMARK] = ACTIONS(4509), - [anon_sym_PLUS_PLUS] = ACTIONS(4509), - [anon_sym_DASH_DASH] = ACTIONS(4509), - [anon_sym_BANG_BANG] = ACTIONS(4509), - [anon_sym_suspend] = ACTIONS(4507), - [anon_sym_sealed] = ACTIONS(4507), - [anon_sym_annotation] = ACTIONS(4507), - [anon_sym_data] = ACTIONS(4507), - [anon_sym_inner] = ACTIONS(4507), - [anon_sym_value] = ACTIONS(4507), - [anon_sym_override] = ACTIONS(4507), - [anon_sym_lateinit] = ACTIONS(4507), - [anon_sym_public] = ACTIONS(4507), - [anon_sym_private] = ACTIONS(4507), - [anon_sym_internal] = ACTIONS(4507), - [anon_sym_protected] = ACTIONS(4507), - [anon_sym_tailrec] = ACTIONS(4507), - [anon_sym_operator] = ACTIONS(4507), - [anon_sym_infix] = ACTIONS(4507), - [anon_sym_inline] = ACTIONS(4507), - [anon_sym_external] = ACTIONS(4507), - [sym_property_modifier] = ACTIONS(4507), - [anon_sym_abstract] = ACTIONS(4507), - [anon_sym_final] = ACTIONS(4507), - [anon_sym_open] = ACTIONS(4507), - [anon_sym_vararg] = ACTIONS(4507), - [anon_sym_noinline] = ACTIONS(4507), - [anon_sym_crossinline] = ACTIONS(4507), - [anon_sym_expect] = ACTIONS(4507), - [anon_sym_actual] = ACTIONS(4507), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4509), - [sym__automatic_semicolon] = ACTIONS(4509), - [sym_safe_nav] = ACTIONS(4509), - [sym_multiline_comment] = ACTIONS(3), - }, - [3857] = { - [sym__alpha_identifier] = ACTIONS(4912), - [anon_sym_AT] = ACTIONS(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_DOT] = ACTIONS(4912), - [anon_sym_as] = ACTIONS(4912), - [anon_sym_EQ] = ACTIONS(4912), - [anon_sym_LBRACE] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_COMMA] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4912), - [anon_sym_GT] = ACTIONS(4912), - [anon_sym_where] = ACTIONS(4912), - [anon_sym_SEMI] = ACTIONS(4914), - [anon_sym_get] = ACTIONS(4912), - [anon_sym_set] = ACTIONS(4912), - [anon_sym_STAR] = ACTIONS(4912), - [sym_label] = ACTIONS(4914), - [anon_sym_in] = ACTIONS(4912), - [anon_sym_DOT_DOT] = ACTIONS(4914), - [anon_sym_QMARK_COLON] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_else] = ACTIONS(4912), - [anon_sym_COLON_COLON] = ACTIONS(4914), - [anon_sym_PLUS_EQ] = ACTIONS(4914), - [anon_sym_DASH_EQ] = ACTIONS(4914), - [anon_sym_STAR_EQ] = ACTIONS(4914), - [anon_sym_SLASH_EQ] = ACTIONS(4914), - [anon_sym_PERCENT_EQ] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4912), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4912), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), - [anon_sym_LT_EQ] = ACTIONS(4914), - [anon_sym_GT_EQ] = ACTIONS(4914), - [anon_sym_BANGin] = ACTIONS(4914), - [anon_sym_is] = ACTIONS(4912), - [anon_sym_BANGis] = ACTIONS(4914), - [anon_sym_PLUS] = ACTIONS(4912), - [anon_sym_DASH] = ACTIONS(4912), - [anon_sym_SLASH] = ACTIONS(4912), - [anon_sym_PERCENT] = ACTIONS(4912), - [anon_sym_as_QMARK] = ACTIONS(4914), - [anon_sym_PLUS_PLUS] = ACTIONS(4914), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_BANG_BANG] = ACTIONS(4914), - [anon_sym_suspend] = ACTIONS(4912), - [anon_sym_sealed] = ACTIONS(4912), - [anon_sym_annotation] = ACTIONS(4912), - [anon_sym_data] = ACTIONS(4912), - [anon_sym_inner] = ACTIONS(4912), - [anon_sym_value] = ACTIONS(4912), - [anon_sym_override] = ACTIONS(4912), - [anon_sym_lateinit] = ACTIONS(4912), - [anon_sym_public] = ACTIONS(4912), - [anon_sym_private] = ACTIONS(4912), - [anon_sym_internal] = ACTIONS(4912), - [anon_sym_protected] = ACTIONS(4912), - [anon_sym_tailrec] = ACTIONS(4912), - [anon_sym_operator] = ACTIONS(4912), - [anon_sym_infix] = ACTIONS(4912), - [anon_sym_inline] = ACTIONS(4912), - [anon_sym_external] = ACTIONS(4912), - [sym_property_modifier] = ACTIONS(4912), - [anon_sym_abstract] = ACTIONS(4912), - [anon_sym_final] = ACTIONS(4912), - [anon_sym_open] = ACTIONS(4912), - [anon_sym_vararg] = ACTIONS(4912), - [anon_sym_noinline] = ACTIONS(4912), - [anon_sym_crossinline] = ACTIONS(4912), - [anon_sym_expect] = ACTIONS(4912), - [anon_sym_actual] = ACTIONS(4912), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4914), - [sym__automatic_semicolon] = ACTIONS(4914), - [sym_safe_nav] = ACTIONS(4914), - [sym_multiline_comment] = ACTIONS(3), - }, - [3858] = { - [sym_function_body] = STATE(3396), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_RBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [anon_sym_DASH_GT] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - }, - [3859] = { - [sym__alpha_identifier] = ACTIONS(4900), - [anon_sym_AT] = ACTIONS(4902), - [anon_sym_LBRACK] = ACTIONS(4902), - [anon_sym_DOT] = ACTIONS(4900), - [anon_sym_as] = ACTIONS(4900), - [anon_sym_EQ] = ACTIONS(4900), - [anon_sym_LBRACE] = ACTIONS(4902), - [anon_sym_RBRACE] = ACTIONS(4902), - [anon_sym_LPAREN] = ACTIONS(4902), - [anon_sym_COMMA] = ACTIONS(4902), - [anon_sym_LT] = ACTIONS(4900), - [anon_sym_GT] = ACTIONS(4900), - [anon_sym_where] = ACTIONS(4900), - [anon_sym_SEMI] = ACTIONS(4902), - [anon_sym_get] = ACTIONS(4900), - [anon_sym_set] = ACTIONS(4900), - [anon_sym_STAR] = ACTIONS(4900), - [sym_label] = ACTIONS(4902), - [anon_sym_in] = ACTIONS(4900), - [anon_sym_DOT_DOT] = ACTIONS(4902), - [anon_sym_QMARK_COLON] = ACTIONS(4902), - [anon_sym_AMP_AMP] = ACTIONS(4902), - [anon_sym_PIPE_PIPE] = ACTIONS(4902), - [anon_sym_else] = ACTIONS(4900), - [anon_sym_COLON_COLON] = ACTIONS(4902), - [anon_sym_PLUS_EQ] = ACTIONS(4902), - [anon_sym_DASH_EQ] = ACTIONS(4902), - [anon_sym_STAR_EQ] = ACTIONS(4902), - [anon_sym_SLASH_EQ] = ACTIONS(4902), - [anon_sym_PERCENT_EQ] = ACTIONS(4902), - [anon_sym_BANG_EQ] = ACTIONS(4900), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4902), - [anon_sym_EQ_EQ] = ACTIONS(4900), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4902), - [anon_sym_LT_EQ] = ACTIONS(4902), - [anon_sym_GT_EQ] = ACTIONS(4902), - [anon_sym_BANGin] = ACTIONS(4902), - [anon_sym_is] = ACTIONS(4900), - [anon_sym_BANGis] = ACTIONS(4902), - [anon_sym_PLUS] = ACTIONS(4900), - [anon_sym_DASH] = ACTIONS(4900), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_PERCENT] = ACTIONS(4900), - [anon_sym_as_QMARK] = ACTIONS(4902), - [anon_sym_PLUS_PLUS] = ACTIONS(4902), - [anon_sym_DASH_DASH] = ACTIONS(4902), - [anon_sym_BANG_BANG] = ACTIONS(4902), - [anon_sym_suspend] = ACTIONS(4900), - [anon_sym_sealed] = ACTIONS(4900), - [anon_sym_annotation] = ACTIONS(4900), - [anon_sym_data] = ACTIONS(4900), - [anon_sym_inner] = ACTIONS(4900), - [anon_sym_value] = ACTIONS(4900), - [anon_sym_override] = ACTIONS(4900), - [anon_sym_lateinit] = ACTIONS(4900), - [anon_sym_public] = ACTIONS(4900), - [anon_sym_private] = ACTIONS(4900), - [anon_sym_internal] = ACTIONS(4900), - [anon_sym_protected] = ACTIONS(4900), - [anon_sym_tailrec] = ACTIONS(4900), - [anon_sym_operator] = ACTIONS(4900), - [anon_sym_infix] = ACTIONS(4900), - [anon_sym_inline] = ACTIONS(4900), - [anon_sym_external] = ACTIONS(4900), - [sym_property_modifier] = ACTIONS(4900), - [anon_sym_abstract] = ACTIONS(4900), - [anon_sym_final] = ACTIONS(4900), - [anon_sym_open] = ACTIONS(4900), - [anon_sym_vararg] = ACTIONS(4900), - [anon_sym_noinline] = ACTIONS(4900), - [anon_sym_crossinline] = ACTIONS(4900), - [anon_sym_expect] = ACTIONS(4900), - [anon_sym_actual] = ACTIONS(4900), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4902), - [sym__automatic_semicolon] = ACTIONS(4902), - [sym_safe_nav] = ACTIONS(4902), - [sym_multiline_comment] = ACTIONS(3), - }, - [3860] = { - [sym__alpha_identifier] = ACTIONS(5055), - [anon_sym_AT] = ACTIONS(5057), - [anon_sym_LBRACK] = ACTIONS(5057), - [anon_sym_DOT] = ACTIONS(5055), - [anon_sym_as] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5057), - [anon_sym_RBRACE] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5057), - [anon_sym_COMMA] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5055), - [anon_sym_GT] = ACTIONS(5055), - [anon_sym_where] = ACTIONS(5055), - [anon_sym_SEMI] = ACTIONS(5057), - [anon_sym_get] = ACTIONS(5055), - [anon_sym_set] = ACTIONS(5055), - [anon_sym_STAR] = ACTIONS(5055), - [sym_label] = ACTIONS(5057), - [anon_sym_in] = ACTIONS(5055), - [anon_sym_DOT_DOT] = ACTIONS(5057), - [anon_sym_QMARK_COLON] = ACTIONS(5057), - [anon_sym_AMP_AMP] = ACTIONS(5057), - [anon_sym_PIPE_PIPE] = ACTIONS(5057), - [anon_sym_else] = ACTIONS(5055), - [anon_sym_COLON_COLON] = ACTIONS(5057), - [anon_sym_PLUS_EQ] = ACTIONS(5057), - [anon_sym_DASH_EQ] = ACTIONS(5057), - [anon_sym_STAR_EQ] = ACTIONS(5057), - [anon_sym_SLASH_EQ] = ACTIONS(5057), - [anon_sym_PERCENT_EQ] = ACTIONS(5057), - [anon_sym_BANG_EQ] = ACTIONS(5055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5057), - [anon_sym_EQ_EQ] = ACTIONS(5055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5057), - [anon_sym_LT_EQ] = ACTIONS(5057), - [anon_sym_GT_EQ] = ACTIONS(5057), - [anon_sym_BANGin] = ACTIONS(5057), - [anon_sym_is] = ACTIONS(5055), - [anon_sym_BANGis] = ACTIONS(5057), - [anon_sym_PLUS] = ACTIONS(5055), - [anon_sym_DASH] = ACTIONS(5055), - [anon_sym_SLASH] = ACTIONS(5055), - [anon_sym_PERCENT] = ACTIONS(5055), - [anon_sym_as_QMARK] = ACTIONS(5057), - [anon_sym_PLUS_PLUS] = ACTIONS(5057), - [anon_sym_DASH_DASH] = ACTIONS(5057), - [anon_sym_BANG_BANG] = ACTIONS(5057), - [anon_sym_suspend] = ACTIONS(5055), - [anon_sym_sealed] = ACTIONS(5055), - [anon_sym_annotation] = ACTIONS(5055), - [anon_sym_data] = ACTIONS(5055), - [anon_sym_inner] = ACTIONS(5055), - [anon_sym_value] = ACTIONS(5055), - [anon_sym_override] = ACTIONS(5055), - [anon_sym_lateinit] = ACTIONS(5055), - [anon_sym_public] = ACTIONS(5055), - [anon_sym_private] = ACTIONS(5055), - [anon_sym_internal] = ACTIONS(5055), - [anon_sym_protected] = ACTIONS(5055), - [anon_sym_tailrec] = ACTIONS(5055), - [anon_sym_operator] = ACTIONS(5055), - [anon_sym_infix] = ACTIONS(5055), - [anon_sym_inline] = ACTIONS(5055), - [anon_sym_external] = ACTIONS(5055), - [sym_property_modifier] = ACTIONS(5055), - [anon_sym_abstract] = ACTIONS(5055), - [anon_sym_final] = ACTIONS(5055), - [anon_sym_open] = ACTIONS(5055), - [anon_sym_vararg] = ACTIONS(5055), - [anon_sym_noinline] = ACTIONS(5055), - [anon_sym_crossinline] = ACTIONS(5055), - [anon_sym_expect] = ACTIONS(5055), - [anon_sym_actual] = ACTIONS(5055), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5057), - [sym__automatic_semicolon] = ACTIONS(5057), - [sym_safe_nav] = ACTIONS(5057), - [sym_multiline_comment] = ACTIONS(3), - }, - [3861] = { - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4395), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - }, - [3862] = { - [sym__alpha_identifier] = ACTIONS(5081), - [anon_sym_AT] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_DOT] = ACTIONS(5081), - [anon_sym_as] = ACTIONS(5081), - [anon_sym_EQ] = ACTIONS(5081), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_RBRACE] = ACTIONS(5083), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_where] = ACTIONS(5081), - [anon_sym_SEMI] = ACTIONS(5083), - [anon_sym_get] = ACTIONS(5081), - [anon_sym_set] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [sym_label] = ACTIONS(5083), - [anon_sym_in] = ACTIONS(5081), - [anon_sym_DOT_DOT] = ACTIONS(5083), - [anon_sym_QMARK_COLON] = ACTIONS(5083), - [anon_sym_AMP_AMP] = ACTIONS(5083), - [anon_sym_PIPE_PIPE] = ACTIONS(5083), - [anon_sym_else] = ACTIONS(5081), - [anon_sym_COLON_COLON] = ACTIONS(5083), - [anon_sym_PLUS_EQ] = ACTIONS(5083), - [anon_sym_DASH_EQ] = ACTIONS(5083), - [anon_sym_STAR_EQ] = ACTIONS(5083), - [anon_sym_SLASH_EQ] = ACTIONS(5083), - [anon_sym_PERCENT_EQ] = ACTIONS(5083), - [anon_sym_BANG_EQ] = ACTIONS(5081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5083), - [anon_sym_EQ_EQ] = ACTIONS(5081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5083), - [anon_sym_LT_EQ] = ACTIONS(5083), - [anon_sym_GT_EQ] = ACTIONS(5083), - [anon_sym_BANGin] = ACTIONS(5083), - [anon_sym_is] = ACTIONS(5081), - [anon_sym_BANGis] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_PERCENT] = ACTIONS(5081), - [anon_sym_as_QMARK] = ACTIONS(5083), - [anon_sym_PLUS_PLUS] = ACTIONS(5083), - [anon_sym_DASH_DASH] = ACTIONS(5083), - [anon_sym_BANG_BANG] = ACTIONS(5083), - [anon_sym_suspend] = ACTIONS(5081), - [anon_sym_sealed] = ACTIONS(5081), - [anon_sym_annotation] = ACTIONS(5081), - [anon_sym_data] = ACTIONS(5081), - [anon_sym_inner] = ACTIONS(5081), - [anon_sym_value] = ACTIONS(5081), - [anon_sym_override] = ACTIONS(5081), - [anon_sym_lateinit] = ACTIONS(5081), - [anon_sym_public] = ACTIONS(5081), - [anon_sym_private] = ACTIONS(5081), - [anon_sym_internal] = ACTIONS(5081), - [anon_sym_protected] = ACTIONS(5081), - [anon_sym_tailrec] = ACTIONS(5081), - [anon_sym_operator] = ACTIONS(5081), - [anon_sym_infix] = ACTIONS(5081), - [anon_sym_inline] = ACTIONS(5081), - [anon_sym_external] = ACTIONS(5081), - [sym_property_modifier] = ACTIONS(5081), - [anon_sym_abstract] = ACTIONS(5081), - [anon_sym_final] = ACTIONS(5081), - [anon_sym_open] = ACTIONS(5081), - [anon_sym_vararg] = ACTIONS(5081), - [anon_sym_noinline] = ACTIONS(5081), - [anon_sym_crossinline] = ACTIONS(5081), - [anon_sym_expect] = ACTIONS(5081), - [anon_sym_actual] = ACTIONS(5081), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5083), - [sym__automatic_semicolon] = ACTIONS(5083), - [sym_safe_nav] = ACTIONS(5083), - [sym_multiline_comment] = ACTIONS(3), - }, - [3863] = { - [sym__alpha_identifier] = ACTIONS(4886), - [anon_sym_AT] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_DOT] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_EQ] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4888), - [anon_sym_RBRACE] = ACTIONS(4888), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_COMMA] = ACTIONS(4888), - [anon_sym_LT] = ACTIONS(4886), - [anon_sym_GT] = ACTIONS(4886), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4888), - [anon_sym_get] = ACTIONS(4886), - [anon_sym_set] = ACTIONS(4886), - [anon_sym_STAR] = ACTIONS(4886), - [sym_label] = ACTIONS(4888), - [anon_sym_in] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4888), - [anon_sym_QMARK_COLON] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4888), - [anon_sym_PIPE_PIPE] = ACTIONS(4888), - [anon_sym_else] = ACTIONS(4886), - [anon_sym_COLON_COLON] = ACTIONS(4888), - [anon_sym_PLUS_EQ] = ACTIONS(4888), - [anon_sym_DASH_EQ] = ACTIONS(4888), - [anon_sym_STAR_EQ] = ACTIONS(4888), - [anon_sym_SLASH_EQ] = ACTIONS(4888), - [anon_sym_PERCENT_EQ] = ACTIONS(4888), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4888), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4888), - [anon_sym_LT_EQ] = ACTIONS(4888), - [anon_sym_GT_EQ] = ACTIONS(4888), - [anon_sym_BANGin] = ACTIONS(4888), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_BANGis] = ACTIONS(4888), - [anon_sym_PLUS] = ACTIONS(4886), - [anon_sym_DASH] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4886), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_as_QMARK] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4888), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_BANG_BANG] = ACTIONS(4888), - [anon_sym_suspend] = ACTIONS(4886), - [anon_sym_sealed] = ACTIONS(4886), - [anon_sym_annotation] = ACTIONS(4886), - [anon_sym_data] = ACTIONS(4886), - [anon_sym_inner] = ACTIONS(4886), - [anon_sym_value] = ACTIONS(4886), - [anon_sym_override] = ACTIONS(4886), - [anon_sym_lateinit] = ACTIONS(4886), - [anon_sym_public] = ACTIONS(4886), - [anon_sym_private] = ACTIONS(4886), - [anon_sym_internal] = ACTIONS(4886), - [anon_sym_protected] = ACTIONS(4886), - [anon_sym_tailrec] = ACTIONS(4886), - [anon_sym_operator] = ACTIONS(4886), - [anon_sym_infix] = ACTIONS(4886), - [anon_sym_inline] = ACTIONS(4886), - [anon_sym_external] = ACTIONS(4886), - [sym_property_modifier] = ACTIONS(4886), - [anon_sym_abstract] = ACTIONS(4886), - [anon_sym_final] = ACTIONS(4886), - [anon_sym_open] = ACTIONS(4886), - [anon_sym_vararg] = ACTIONS(4886), - [anon_sym_noinline] = ACTIONS(4886), - [anon_sym_crossinline] = ACTIONS(4886), - [anon_sym_expect] = ACTIONS(4886), - [anon_sym_actual] = ACTIONS(4886), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4888), - [sym__automatic_semicolon] = ACTIONS(4888), - [sym_safe_nav] = ACTIONS(4888), - [sym_multiline_comment] = ACTIONS(3), - }, - [3864] = { - [sym__alpha_identifier] = ACTIONS(4878), - [anon_sym_AT] = ACTIONS(4880), - [anon_sym_LBRACK] = ACTIONS(4880), - [anon_sym_DOT] = ACTIONS(4878), - [anon_sym_as] = ACTIONS(4878), - [anon_sym_EQ] = ACTIONS(4878), - [anon_sym_LBRACE] = ACTIONS(4880), - [anon_sym_RBRACE] = ACTIONS(4880), - [anon_sym_LPAREN] = ACTIONS(4880), - [anon_sym_COMMA] = ACTIONS(4880), - [anon_sym_LT] = ACTIONS(4878), - [anon_sym_GT] = ACTIONS(4878), - [anon_sym_where] = ACTIONS(4878), - [anon_sym_SEMI] = ACTIONS(4880), - [anon_sym_get] = ACTIONS(4878), - [anon_sym_set] = ACTIONS(4878), - [anon_sym_STAR] = ACTIONS(4878), - [sym_label] = ACTIONS(4880), - [anon_sym_in] = ACTIONS(4878), - [anon_sym_DOT_DOT] = ACTIONS(4880), - [anon_sym_QMARK_COLON] = ACTIONS(4880), - [anon_sym_AMP_AMP] = ACTIONS(4880), - [anon_sym_PIPE_PIPE] = ACTIONS(4880), - [anon_sym_else] = ACTIONS(4878), - [anon_sym_COLON_COLON] = ACTIONS(4880), - [anon_sym_PLUS_EQ] = ACTIONS(4880), - [anon_sym_DASH_EQ] = ACTIONS(4880), - [anon_sym_STAR_EQ] = ACTIONS(4880), - [anon_sym_SLASH_EQ] = ACTIONS(4880), - [anon_sym_PERCENT_EQ] = ACTIONS(4880), - [anon_sym_BANG_EQ] = ACTIONS(4878), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4880), - [anon_sym_EQ_EQ] = ACTIONS(4878), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4880), - [anon_sym_LT_EQ] = ACTIONS(4880), - [anon_sym_GT_EQ] = ACTIONS(4880), - [anon_sym_BANGin] = ACTIONS(4880), - [anon_sym_is] = ACTIONS(4878), - [anon_sym_BANGis] = ACTIONS(4880), - [anon_sym_PLUS] = ACTIONS(4878), - [anon_sym_DASH] = ACTIONS(4878), - [anon_sym_SLASH] = ACTIONS(4878), - [anon_sym_PERCENT] = ACTIONS(4878), - [anon_sym_as_QMARK] = ACTIONS(4880), - [anon_sym_PLUS_PLUS] = ACTIONS(4880), - [anon_sym_DASH_DASH] = ACTIONS(4880), - [anon_sym_BANG_BANG] = ACTIONS(4880), - [anon_sym_suspend] = ACTIONS(4878), - [anon_sym_sealed] = ACTIONS(4878), - [anon_sym_annotation] = ACTIONS(4878), - [anon_sym_data] = ACTIONS(4878), - [anon_sym_inner] = ACTIONS(4878), - [anon_sym_value] = ACTIONS(4878), - [anon_sym_override] = ACTIONS(4878), - [anon_sym_lateinit] = ACTIONS(4878), - [anon_sym_public] = ACTIONS(4878), - [anon_sym_private] = ACTIONS(4878), - [anon_sym_internal] = ACTIONS(4878), - [anon_sym_protected] = ACTIONS(4878), - [anon_sym_tailrec] = ACTIONS(4878), - [anon_sym_operator] = ACTIONS(4878), - [anon_sym_infix] = ACTIONS(4878), - [anon_sym_inline] = ACTIONS(4878), - [anon_sym_external] = ACTIONS(4878), - [sym_property_modifier] = ACTIONS(4878), - [anon_sym_abstract] = ACTIONS(4878), - [anon_sym_final] = ACTIONS(4878), - [anon_sym_open] = ACTIONS(4878), - [anon_sym_vararg] = ACTIONS(4878), - [anon_sym_noinline] = ACTIONS(4878), - [anon_sym_crossinline] = ACTIONS(4878), - [anon_sym_expect] = ACTIONS(4878), - [anon_sym_actual] = ACTIONS(4878), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4880), - [sym__automatic_semicolon] = ACTIONS(4880), - [sym_safe_nav] = ACTIONS(4880), - [sym_multiline_comment] = ACTIONS(3), - }, - [3865] = { - [sym_function_body] = STATE(3878), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4393), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_PLUS_EQ] = ACTIONS(4395), - [anon_sym_DASH_EQ] = ACTIONS(4395), - [anon_sym_STAR_EQ] = ACTIONS(4395), - [anon_sym_SLASH_EQ] = ACTIONS(4395), - [anon_sym_PERCENT_EQ] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4393), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), - [sym_multiline_comment] = ACTIONS(3), - }, - [3866] = { - [sym_function_body] = STATE(3861), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4385), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_PLUS_EQ] = ACTIONS(4387), - [anon_sym_DASH_EQ] = ACTIONS(4387), - [anon_sym_STAR_EQ] = ACTIONS(4387), - [anon_sym_SLASH_EQ] = ACTIONS(4387), - [anon_sym_PERCENT_EQ] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4385), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), - [sym_multiline_comment] = ACTIONS(3), - }, - [3867] = { - [sym__alpha_identifier] = ACTIONS(5113), - [anon_sym_AT] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_DOT] = ACTIONS(5113), - [anon_sym_as] = ACTIONS(5113), - [anon_sym_EQ] = ACTIONS(5113), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_RBRACE] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_where] = ACTIONS(5113), - [anon_sym_SEMI] = ACTIONS(5115), - [anon_sym_get] = ACTIONS(5113), - [anon_sym_set] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [sym_label] = ACTIONS(5115), - [anon_sym_in] = ACTIONS(5113), - [anon_sym_DOT_DOT] = ACTIONS(5115), - [anon_sym_QMARK_COLON] = ACTIONS(5115), - [anon_sym_AMP_AMP] = ACTIONS(5115), - [anon_sym_PIPE_PIPE] = ACTIONS(5115), - [anon_sym_else] = ACTIONS(5113), - [anon_sym_COLON_COLON] = ACTIONS(5115), - [anon_sym_PLUS_EQ] = ACTIONS(5115), - [anon_sym_DASH_EQ] = ACTIONS(5115), - [anon_sym_STAR_EQ] = ACTIONS(5115), - [anon_sym_SLASH_EQ] = ACTIONS(5115), - [anon_sym_PERCENT_EQ] = ACTIONS(5115), - [anon_sym_BANG_EQ] = ACTIONS(5113), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5115), - [anon_sym_EQ_EQ] = ACTIONS(5113), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5115), - [anon_sym_LT_EQ] = ACTIONS(5115), - [anon_sym_GT_EQ] = ACTIONS(5115), - [anon_sym_BANGin] = ACTIONS(5115), - [anon_sym_is] = ACTIONS(5113), - [anon_sym_BANGis] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_PERCENT] = ACTIONS(5113), - [anon_sym_as_QMARK] = ACTIONS(5115), - [anon_sym_PLUS_PLUS] = ACTIONS(5115), - [anon_sym_DASH_DASH] = ACTIONS(5115), - [anon_sym_BANG_BANG] = ACTIONS(5115), - [anon_sym_suspend] = ACTIONS(5113), - [anon_sym_sealed] = ACTIONS(5113), - [anon_sym_annotation] = ACTIONS(5113), - [anon_sym_data] = ACTIONS(5113), - [anon_sym_inner] = ACTIONS(5113), - [anon_sym_value] = ACTIONS(5113), - [anon_sym_override] = ACTIONS(5113), - [anon_sym_lateinit] = ACTIONS(5113), - [anon_sym_public] = ACTIONS(5113), - [anon_sym_private] = ACTIONS(5113), - [anon_sym_internal] = ACTIONS(5113), - [anon_sym_protected] = ACTIONS(5113), - [anon_sym_tailrec] = ACTIONS(5113), - [anon_sym_operator] = ACTIONS(5113), - [anon_sym_infix] = ACTIONS(5113), - [anon_sym_inline] = ACTIONS(5113), - [anon_sym_external] = ACTIONS(5113), - [sym_property_modifier] = ACTIONS(5113), - [anon_sym_abstract] = ACTIONS(5113), - [anon_sym_final] = ACTIONS(5113), - [anon_sym_open] = ACTIONS(5113), - [anon_sym_vararg] = ACTIONS(5113), - [anon_sym_noinline] = ACTIONS(5113), - [anon_sym_crossinline] = ACTIONS(5113), - [anon_sym_expect] = ACTIONS(5113), - [anon_sym_actual] = ACTIONS(5113), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5115), - [sym__automatic_semicolon] = ACTIONS(5115), - [sym_safe_nav] = ACTIONS(5115), - [sym_multiline_comment] = ACTIONS(3), - }, - [3868] = { [sym__alpha_identifier] = ACTIONS(5121), [anon_sym_AT] = ACTIONS(5123), [anon_sym_LBRACK] = ACTIONS(5123), @@ -430797,935 +429226,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_EQ] = ACTIONS(5123), [anon_sym_PERCENT_EQ] = ACTIONS(5123), [anon_sym_BANG_EQ] = ACTIONS(5121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), - [anon_sym_EQ_EQ] = ACTIONS(5121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), - [anon_sym_LT_EQ] = ACTIONS(5123), - [anon_sym_GT_EQ] = ACTIONS(5123), - [anon_sym_BANGin] = ACTIONS(5123), - [anon_sym_is] = ACTIONS(5121), - [anon_sym_BANGis] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_PERCENT] = ACTIONS(5121), - [anon_sym_as_QMARK] = ACTIONS(5123), - [anon_sym_PLUS_PLUS] = ACTIONS(5123), - [anon_sym_DASH_DASH] = ACTIONS(5123), - [anon_sym_BANG_BANG] = ACTIONS(5123), - [anon_sym_suspend] = ACTIONS(5121), - [anon_sym_sealed] = ACTIONS(5121), - [anon_sym_annotation] = ACTIONS(5121), - [anon_sym_data] = ACTIONS(5121), - [anon_sym_inner] = ACTIONS(5121), - [anon_sym_value] = ACTIONS(5121), - [anon_sym_override] = ACTIONS(5121), - [anon_sym_lateinit] = ACTIONS(5121), - [anon_sym_public] = ACTIONS(5121), - [anon_sym_private] = ACTIONS(5121), - [anon_sym_internal] = ACTIONS(5121), - [anon_sym_protected] = ACTIONS(5121), - [anon_sym_tailrec] = ACTIONS(5121), - [anon_sym_operator] = ACTIONS(5121), - [anon_sym_infix] = ACTIONS(5121), - [anon_sym_inline] = ACTIONS(5121), - [anon_sym_external] = ACTIONS(5121), - [sym_property_modifier] = ACTIONS(5121), - [anon_sym_abstract] = ACTIONS(5121), - [anon_sym_final] = ACTIONS(5121), - [anon_sym_open] = ACTIONS(5121), - [anon_sym_vararg] = ACTIONS(5121), - [anon_sym_noinline] = ACTIONS(5121), - [anon_sym_crossinline] = ACTIONS(5121), - [anon_sym_expect] = ACTIONS(5121), - [anon_sym_actual] = ACTIONS(5121), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5123), - [sym__automatic_semicolon] = ACTIONS(5123), - [sym_safe_nav] = ACTIONS(5123), - [sym_multiline_comment] = ACTIONS(3), - }, - [3869] = { - [sym__alpha_identifier] = ACTIONS(4838), - [anon_sym_AT] = ACTIONS(4840), - [anon_sym_LBRACK] = ACTIONS(4840), - [anon_sym_DOT] = ACTIONS(4838), - [anon_sym_as] = ACTIONS(4838), - [anon_sym_EQ] = ACTIONS(4838), - [anon_sym_LBRACE] = ACTIONS(4840), - [anon_sym_RBRACE] = ACTIONS(4840), - [anon_sym_LPAREN] = ACTIONS(4840), - [anon_sym_COMMA] = ACTIONS(4840), - [anon_sym_LT] = ACTIONS(4838), - [anon_sym_GT] = ACTIONS(4838), - [anon_sym_where] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(4840), - [anon_sym_get] = ACTIONS(4838), - [anon_sym_set] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4838), - [sym_label] = ACTIONS(4840), - [anon_sym_in] = ACTIONS(4838), - [anon_sym_DOT_DOT] = ACTIONS(4840), - [anon_sym_QMARK_COLON] = ACTIONS(4840), - [anon_sym_AMP_AMP] = ACTIONS(4840), - [anon_sym_PIPE_PIPE] = ACTIONS(4840), - [anon_sym_else] = ACTIONS(4838), - [anon_sym_COLON_COLON] = ACTIONS(4840), - [anon_sym_PLUS_EQ] = ACTIONS(4840), - [anon_sym_DASH_EQ] = ACTIONS(4840), - [anon_sym_STAR_EQ] = ACTIONS(4840), - [anon_sym_SLASH_EQ] = ACTIONS(4840), - [anon_sym_PERCENT_EQ] = ACTIONS(4840), - [anon_sym_BANG_EQ] = ACTIONS(4838), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4840), - [anon_sym_EQ_EQ] = ACTIONS(4838), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4840), - [anon_sym_LT_EQ] = ACTIONS(4840), - [anon_sym_GT_EQ] = ACTIONS(4840), - [anon_sym_BANGin] = ACTIONS(4840), - [anon_sym_is] = ACTIONS(4838), - [anon_sym_BANGis] = ACTIONS(4840), - [anon_sym_PLUS] = ACTIONS(4838), - [anon_sym_DASH] = ACTIONS(4838), - [anon_sym_SLASH] = ACTIONS(4838), - [anon_sym_PERCENT] = ACTIONS(4838), - [anon_sym_as_QMARK] = ACTIONS(4840), - [anon_sym_PLUS_PLUS] = ACTIONS(4840), - [anon_sym_DASH_DASH] = ACTIONS(4840), - [anon_sym_BANG_BANG] = ACTIONS(4840), - [anon_sym_suspend] = ACTIONS(4838), - [anon_sym_sealed] = ACTIONS(4838), - [anon_sym_annotation] = ACTIONS(4838), - [anon_sym_data] = ACTIONS(4838), - [anon_sym_inner] = ACTIONS(4838), - [anon_sym_value] = ACTIONS(4838), - [anon_sym_override] = ACTIONS(4838), - [anon_sym_lateinit] = ACTIONS(4838), - [anon_sym_public] = ACTIONS(4838), - [anon_sym_private] = ACTIONS(4838), - [anon_sym_internal] = ACTIONS(4838), - [anon_sym_protected] = ACTIONS(4838), - [anon_sym_tailrec] = ACTIONS(4838), - [anon_sym_operator] = ACTIONS(4838), - [anon_sym_infix] = ACTIONS(4838), - [anon_sym_inline] = ACTIONS(4838), - [anon_sym_external] = ACTIONS(4838), - [sym_property_modifier] = ACTIONS(4838), - [anon_sym_abstract] = ACTIONS(4838), - [anon_sym_final] = ACTIONS(4838), - [anon_sym_open] = ACTIONS(4838), - [anon_sym_vararg] = ACTIONS(4838), - [anon_sym_noinline] = ACTIONS(4838), - [anon_sym_crossinline] = ACTIONS(4838), - [anon_sym_expect] = ACTIONS(4838), - [anon_sym_actual] = ACTIONS(4838), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4840), - [sym__automatic_semicolon] = ACTIONS(4840), - [sym_safe_nav] = ACTIONS(4840), - [sym_multiline_comment] = ACTIONS(3), - }, - [3870] = { - [sym__alpha_identifier] = ACTIONS(5153), - [anon_sym_AT] = ACTIONS(5155), - [anon_sym_LBRACK] = ACTIONS(5155), - [anon_sym_DOT] = ACTIONS(5153), - [anon_sym_as] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5155), - [anon_sym_RBRACE] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5155), - [anon_sym_COMMA] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5153), - [anon_sym_GT] = ACTIONS(5153), - [anon_sym_where] = ACTIONS(5153), - [anon_sym_SEMI] = ACTIONS(5155), - [anon_sym_get] = ACTIONS(5153), - [anon_sym_set] = ACTIONS(5153), - [anon_sym_STAR] = ACTIONS(5153), - [sym_label] = ACTIONS(5155), - [anon_sym_in] = ACTIONS(5153), - [anon_sym_DOT_DOT] = ACTIONS(5155), - [anon_sym_QMARK_COLON] = ACTIONS(5155), - [anon_sym_AMP_AMP] = ACTIONS(5155), - [anon_sym_PIPE_PIPE] = ACTIONS(5155), - [anon_sym_else] = ACTIONS(5153), - [anon_sym_COLON_COLON] = ACTIONS(5155), - [anon_sym_PLUS_EQ] = ACTIONS(5155), - [anon_sym_DASH_EQ] = ACTIONS(5155), - [anon_sym_STAR_EQ] = ACTIONS(5155), - [anon_sym_SLASH_EQ] = ACTIONS(5155), - [anon_sym_PERCENT_EQ] = ACTIONS(5155), - [anon_sym_BANG_EQ] = ACTIONS(5153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), - [anon_sym_EQ_EQ] = ACTIONS(5153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), - [anon_sym_LT_EQ] = ACTIONS(5155), - [anon_sym_GT_EQ] = ACTIONS(5155), - [anon_sym_BANGin] = ACTIONS(5155), - [anon_sym_is] = ACTIONS(5153), - [anon_sym_BANGis] = ACTIONS(5155), - [anon_sym_PLUS] = ACTIONS(5153), - [anon_sym_DASH] = ACTIONS(5153), - [anon_sym_SLASH] = ACTIONS(5153), - [anon_sym_PERCENT] = ACTIONS(5153), - [anon_sym_as_QMARK] = ACTIONS(5155), - [anon_sym_PLUS_PLUS] = ACTIONS(5155), - [anon_sym_DASH_DASH] = ACTIONS(5155), - [anon_sym_BANG_BANG] = ACTIONS(5155), - [anon_sym_suspend] = ACTIONS(5153), - [anon_sym_sealed] = ACTIONS(5153), - [anon_sym_annotation] = ACTIONS(5153), - [anon_sym_data] = ACTIONS(5153), - [anon_sym_inner] = ACTIONS(5153), - [anon_sym_value] = ACTIONS(5153), - [anon_sym_override] = ACTIONS(5153), - [anon_sym_lateinit] = ACTIONS(5153), - [anon_sym_public] = ACTIONS(5153), - [anon_sym_private] = ACTIONS(5153), - [anon_sym_internal] = ACTIONS(5153), - [anon_sym_protected] = ACTIONS(5153), - [anon_sym_tailrec] = ACTIONS(5153), - [anon_sym_operator] = ACTIONS(5153), - [anon_sym_infix] = ACTIONS(5153), - [anon_sym_inline] = ACTIONS(5153), - [anon_sym_external] = ACTIONS(5153), - [sym_property_modifier] = ACTIONS(5153), - [anon_sym_abstract] = ACTIONS(5153), - [anon_sym_final] = ACTIONS(5153), - [anon_sym_open] = ACTIONS(5153), - [anon_sym_vararg] = ACTIONS(5153), - [anon_sym_noinline] = ACTIONS(5153), - [anon_sym_crossinline] = ACTIONS(5153), - [anon_sym_expect] = ACTIONS(5153), - [anon_sym_actual] = ACTIONS(5153), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5155), - [sym__automatic_semicolon] = ACTIONS(5155), - [sym_safe_nav] = ACTIONS(5155), - [sym_multiline_comment] = ACTIONS(3), - }, - [3871] = { - [sym__alpha_identifier] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4425), - [anon_sym_LBRACK] = ACTIONS(4425), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_as] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4425), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_LPAREN] = ACTIONS(4425), - [anon_sym_COMMA] = ACTIONS(4425), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_where] = ACTIONS(4423), - [anon_sym_SEMI] = ACTIONS(4425), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [sym_label] = ACTIONS(4425), - [anon_sym_in] = ACTIONS(4423), - [anon_sym_DOT_DOT] = ACTIONS(4425), - [anon_sym_QMARK_COLON] = ACTIONS(4425), - [anon_sym_AMP_AMP] = ACTIONS(4425), - [anon_sym_PIPE_PIPE] = ACTIONS(4425), - [anon_sym_else] = ACTIONS(4423), - [anon_sym_COLON_COLON] = ACTIONS(4425), - [anon_sym_PLUS_EQ] = ACTIONS(4425), - [anon_sym_DASH_EQ] = ACTIONS(4425), - [anon_sym_STAR_EQ] = ACTIONS(4425), - [anon_sym_SLASH_EQ] = ACTIONS(4425), - [anon_sym_PERCENT_EQ] = ACTIONS(4425), - [anon_sym_BANG_EQ] = ACTIONS(4423), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4425), - [anon_sym_EQ_EQ] = ACTIONS(4423), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4425), - [anon_sym_LT_EQ] = ACTIONS(4425), - [anon_sym_GT_EQ] = ACTIONS(4425), - [anon_sym_BANGin] = ACTIONS(4425), - [anon_sym_is] = ACTIONS(4423), - [anon_sym_BANGis] = ACTIONS(4425), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_PERCENT] = ACTIONS(4423), - [anon_sym_as_QMARK] = ACTIONS(4425), - [anon_sym_PLUS_PLUS] = ACTIONS(4425), - [anon_sym_DASH_DASH] = ACTIONS(4425), - [anon_sym_BANG_BANG] = ACTIONS(4425), - [anon_sym_suspend] = ACTIONS(4423), - [anon_sym_sealed] = ACTIONS(4423), - [anon_sym_annotation] = ACTIONS(4423), - [anon_sym_data] = ACTIONS(4423), - [anon_sym_inner] = ACTIONS(4423), - [anon_sym_value] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_lateinit] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_internal] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_tailrec] = ACTIONS(4423), - [anon_sym_operator] = ACTIONS(4423), - [anon_sym_infix] = ACTIONS(4423), - [anon_sym_inline] = ACTIONS(4423), - [anon_sym_external] = ACTIONS(4423), - [sym_property_modifier] = ACTIONS(4423), - [anon_sym_abstract] = ACTIONS(4423), - [anon_sym_final] = ACTIONS(4423), - [anon_sym_open] = ACTIONS(4423), - [anon_sym_vararg] = ACTIONS(4423), - [anon_sym_noinline] = ACTIONS(4423), - [anon_sym_crossinline] = ACTIONS(4423), - [anon_sym_expect] = ACTIONS(4423), - [anon_sym_actual] = ACTIONS(4423), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4425), - [sym__automatic_semicolon] = ACTIONS(4425), - [sym_safe_nav] = ACTIONS(4425), - [sym_multiline_comment] = ACTIONS(3), - }, - [3872] = { - [sym__alpha_identifier] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(3114), - [anon_sym_as] = ACTIONS(3114), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(3116), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3114), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3114), - [anon_sym_set] = ACTIONS(3114), - [anon_sym_STAR] = ACTIONS(3114), - [sym_label] = ACTIONS(3116), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(3116), - [anon_sym_QMARK_COLON] = ACTIONS(3116), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(3116), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_PERCENT] = ACTIONS(3114), - [anon_sym_as_QMARK] = ACTIONS(3116), - [anon_sym_PLUS_PLUS] = ACTIONS(3116), - [anon_sym_DASH_DASH] = ACTIONS(3116), - [anon_sym_BANG_BANG] = ACTIONS(3116), - [anon_sym_suspend] = ACTIONS(3114), - [anon_sym_sealed] = ACTIONS(3114), - [anon_sym_annotation] = ACTIONS(3114), - [anon_sym_data] = ACTIONS(3114), - [anon_sym_inner] = ACTIONS(3114), - [anon_sym_value] = ACTIONS(3114), - [anon_sym_override] = ACTIONS(3114), - [anon_sym_lateinit] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_internal] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_tailrec] = ACTIONS(3114), - [anon_sym_operator] = ACTIONS(3114), - [anon_sym_infix] = ACTIONS(3114), - [anon_sym_inline] = ACTIONS(3114), - [anon_sym_external] = ACTIONS(3114), - [sym_property_modifier] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_final] = ACTIONS(3114), - [anon_sym_open] = ACTIONS(3114), - [anon_sym_vararg] = ACTIONS(3114), - [anon_sym_noinline] = ACTIONS(3114), - [anon_sym_crossinline] = ACTIONS(3114), - [anon_sym_expect] = ACTIONS(3114), - [anon_sym_actual] = ACTIONS(3114), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3116), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(3116), - [sym_multiline_comment] = ACTIONS(3), - }, - [3873] = { - [sym__alpha_identifier] = ACTIONS(5181), - [anon_sym_AT] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_DOT] = ACTIONS(5181), - [anon_sym_as] = ACTIONS(5181), - [anon_sym_EQ] = ACTIONS(5181), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_LT] = ACTIONS(5181), - [anon_sym_GT] = ACTIONS(5181), - [anon_sym_where] = ACTIONS(5181), - [anon_sym_SEMI] = ACTIONS(5183), - [anon_sym_get] = ACTIONS(5181), - [anon_sym_set] = ACTIONS(5181), - [anon_sym_STAR] = ACTIONS(5181), - [sym_label] = ACTIONS(5183), - [anon_sym_in] = ACTIONS(5181), - [anon_sym_DOT_DOT] = ACTIONS(5183), - [anon_sym_QMARK_COLON] = ACTIONS(5183), - [anon_sym_AMP_AMP] = ACTIONS(5183), - [anon_sym_PIPE_PIPE] = ACTIONS(5183), - [anon_sym_else] = ACTIONS(5181), - [anon_sym_COLON_COLON] = ACTIONS(5183), - [anon_sym_PLUS_EQ] = ACTIONS(5183), - [anon_sym_DASH_EQ] = ACTIONS(5183), - [anon_sym_STAR_EQ] = ACTIONS(5183), - [anon_sym_SLASH_EQ] = ACTIONS(5183), - [anon_sym_PERCENT_EQ] = ACTIONS(5183), - [anon_sym_BANG_EQ] = ACTIONS(5181), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5183), - [anon_sym_EQ_EQ] = ACTIONS(5181), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5183), - [anon_sym_LT_EQ] = ACTIONS(5183), - [anon_sym_GT_EQ] = ACTIONS(5183), - [anon_sym_BANGin] = ACTIONS(5183), - [anon_sym_is] = ACTIONS(5181), - [anon_sym_BANGis] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5181), - [anon_sym_DASH] = ACTIONS(5181), - [anon_sym_SLASH] = ACTIONS(5181), - [anon_sym_PERCENT] = ACTIONS(5181), - [anon_sym_as_QMARK] = ACTIONS(5183), - [anon_sym_PLUS_PLUS] = ACTIONS(5183), - [anon_sym_DASH_DASH] = ACTIONS(5183), - [anon_sym_BANG_BANG] = ACTIONS(5183), - [anon_sym_suspend] = ACTIONS(5181), - [anon_sym_sealed] = ACTIONS(5181), - [anon_sym_annotation] = ACTIONS(5181), - [anon_sym_data] = ACTIONS(5181), - [anon_sym_inner] = ACTIONS(5181), - [anon_sym_value] = ACTIONS(5181), - [anon_sym_override] = ACTIONS(5181), - [anon_sym_lateinit] = ACTIONS(5181), - [anon_sym_public] = ACTIONS(5181), - [anon_sym_private] = ACTIONS(5181), - [anon_sym_internal] = ACTIONS(5181), - [anon_sym_protected] = ACTIONS(5181), - [anon_sym_tailrec] = ACTIONS(5181), - [anon_sym_operator] = ACTIONS(5181), - [anon_sym_infix] = ACTIONS(5181), - [anon_sym_inline] = ACTIONS(5181), - [anon_sym_external] = ACTIONS(5181), - [sym_property_modifier] = ACTIONS(5181), - [anon_sym_abstract] = ACTIONS(5181), - [anon_sym_final] = ACTIONS(5181), - [anon_sym_open] = ACTIONS(5181), - [anon_sym_vararg] = ACTIONS(5181), - [anon_sym_noinline] = ACTIONS(5181), - [anon_sym_crossinline] = ACTIONS(5181), - [anon_sym_expect] = ACTIONS(5181), - [anon_sym_actual] = ACTIONS(5181), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5183), - [sym__automatic_semicolon] = ACTIONS(5183), - [sym_safe_nav] = ACTIONS(5183), - [sym_multiline_comment] = ACTIONS(3), - }, - [3874] = { - [sym__alpha_identifier] = ACTIONS(5133), - [anon_sym_AT] = ACTIONS(5135), - [anon_sym_LBRACK] = ACTIONS(5135), - [anon_sym_DOT] = ACTIONS(5133), - [anon_sym_as] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5135), - [anon_sym_RBRACE] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5135), - [anon_sym_COMMA] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5133), - [anon_sym_GT] = ACTIONS(5133), - [anon_sym_where] = ACTIONS(5133), - [anon_sym_SEMI] = ACTIONS(5135), - [anon_sym_get] = ACTIONS(5133), - [anon_sym_set] = ACTIONS(5133), - [anon_sym_STAR] = ACTIONS(5133), - [sym_label] = ACTIONS(5135), - [anon_sym_in] = ACTIONS(5133), - [anon_sym_DOT_DOT] = ACTIONS(5135), - [anon_sym_QMARK_COLON] = ACTIONS(5135), - [anon_sym_AMP_AMP] = ACTIONS(5135), - [anon_sym_PIPE_PIPE] = ACTIONS(5135), - [anon_sym_else] = ACTIONS(5133), - [anon_sym_COLON_COLON] = ACTIONS(5135), - [anon_sym_PLUS_EQ] = ACTIONS(5135), - [anon_sym_DASH_EQ] = ACTIONS(5135), - [anon_sym_STAR_EQ] = ACTIONS(5135), - [anon_sym_SLASH_EQ] = ACTIONS(5135), - [anon_sym_PERCENT_EQ] = ACTIONS(5135), - [anon_sym_BANG_EQ] = ACTIONS(5133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5135), - [anon_sym_EQ_EQ] = ACTIONS(5133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5135), - [anon_sym_LT_EQ] = ACTIONS(5135), - [anon_sym_GT_EQ] = ACTIONS(5135), - [anon_sym_BANGin] = ACTIONS(5135), - [anon_sym_is] = ACTIONS(5133), - [anon_sym_BANGis] = ACTIONS(5135), - [anon_sym_PLUS] = ACTIONS(5133), - [anon_sym_DASH] = ACTIONS(5133), - [anon_sym_SLASH] = ACTIONS(5133), - [anon_sym_PERCENT] = ACTIONS(5133), - [anon_sym_as_QMARK] = ACTIONS(5135), - [anon_sym_PLUS_PLUS] = ACTIONS(5135), - [anon_sym_DASH_DASH] = ACTIONS(5135), - [anon_sym_BANG_BANG] = ACTIONS(5135), - [anon_sym_suspend] = ACTIONS(5133), - [anon_sym_sealed] = ACTIONS(5133), - [anon_sym_annotation] = ACTIONS(5133), - [anon_sym_data] = ACTIONS(5133), - [anon_sym_inner] = ACTIONS(5133), - [anon_sym_value] = ACTIONS(5133), - [anon_sym_override] = ACTIONS(5133), - [anon_sym_lateinit] = ACTIONS(5133), - [anon_sym_public] = ACTIONS(5133), - [anon_sym_private] = ACTIONS(5133), - [anon_sym_internal] = ACTIONS(5133), - [anon_sym_protected] = ACTIONS(5133), - [anon_sym_tailrec] = ACTIONS(5133), - [anon_sym_operator] = ACTIONS(5133), - [anon_sym_infix] = ACTIONS(5133), - [anon_sym_inline] = ACTIONS(5133), - [anon_sym_external] = ACTIONS(5133), - [sym_property_modifier] = ACTIONS(5133), - [anon_sym_abstract] = ACTIONS(5133), - [anon_sym_final] = ACTIONS(5133), - [anon_sym_open] = ACTIONS(5133), - [anon_sym_vararg] = ACTIONS(5133), - [anon_sym_noinline] = ACTIONS(5133), - [anon_sym_crossinline] = ACTIONS(5133), - [anon_sym_expect] = ACTIONS(5133), - [anon_sym_actual] = ACTIONS(5133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5123), + [anon_sym_EQ_EQ] = ACTIONS(5121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_BANGin] = ACTIONS(5123), + [anon_sym_is] = ACTIONS(5121), + [anon_sym_BANGis] = ACTIONS(5123), + [anon_sym_PLUS] = ACTIONS(5121), + [anon_sym_DASH] = ACTIONS(5121), + [anon_sym_SLASH] = ACTIONS(5121), + [anon_sym_PERCENT] = ACTIONS(5121), + [anon_sym_as_QMARK] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_BANG_BANG] = ACTIONS(5123), + [anon_sym_suspend] = ACTIONS(5121), + [anon_sym_sealed] = ACTIONS(5121), + [anon_sym_annotation] = ACTIONS(5121), + [anon_sym_data] = ACTIONS(5121), + [anon_sym_inner] = ACTIONS(5121), + [anon_sym_value] = ACTIONS(5121), + [anon_sym_override] = ACTIONS(5121), + [anon_sym_lateinit] = ACTIONS(5121), + [anon_sym_public] = ACTIONS(5121), + [anon_sym_private] = ACTIONS(5121), + [anon_sym_internal] = ACTIONS(5121), + [anon_sym_protected] = ACTIONS(5121), + [anon_sym_tailrec] = ACTIONS(5121), + [anon_sym_operator] = ACTIONS(5121), + [anon_sym_infix] = ACTIONS(5121), + [anon_sym_inline] = ACTIONS(5121), + [anon_sym_external] = ACTIONS(5121), + [sym_property_modifier] = ACTIONS(5121), + [anon_sym_abstract] = ACTIONS(5121), + [anon_sym_final] = ACTIONS(5121), + [anon_sym_open] = ACTIONS(5121), + [anon_sym_vararg] = ACTIONS(5121), + [anon_sym_noinline] = ACTIONS(5121), + [anon_sym_crossinline] = ACTIONS(5121), + [anon_sym_expect] = ACTIONS(5121), + [anon_sym_actual] = ACTIONS(5121), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5135), - [sym__automatic_semicolon] = ACTIONS(5135), - [sym_safe_nav] = ACTIONS(5135), - [sym_multiline_comment] = ACTIONS(3), - }, - [3875] = { - [sym__alpha_identifier] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_as] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym_COMMA] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4040), - [anon_sym_GT] = ACTIONS(4040), - [anon_sym_where] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_get] = ACTIONS(4040), - [anon_sym_set] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [sym_label] = ACTIONS(4042), - [anon_sym_in] = ACTIONS(4040), - [anon_sym_DOT_DOT] = ACTIONS(4042), - [anon_sym_QMARK_COLON] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_else] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_PLUS_EQ] = ACTIONS(4042), - [anon_sym_DASH_EQ] = ACTIONS(4042), - [anon_sym_STAR_EQ] = ACTIONS(4042), - [anon_sym_SLASH_EQ] = ACTIONS(4042), - [anon_sym_PERCENT_EQ] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4042), - [anon_sym_LT_EQ] = ACTIONS(4042), - [anon_sym_GT_EQ] = ACTIONS(4042), - [anon_sym_BANGin] = ACTIONS(4042), - [anon_sym_is] = ACTIONS(4040), - [anon_sym_BANGis] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_SLASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_as_QMARK] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_BANG_BANG] = ACTIONS(4042), - [anon_sym_suspend] = ACTIONS(4040), - [anon_sym_sealed] = ACTIONS(4040), - [anon_sym_annotation] = ACTIONS(4040), - [anon_sym_data] = ACTIONS(4040), - [anon_sym_inner] = ACTIONS(4040), - [anon_sym_value] = ACTIONS(4040), - [anon_sym_override] = ACTIONS(4040), - [anon_sym_lateinit] = ACTIONS(4040), - [anon_sym_public] = ACTIONS(4040), - [anon_sym_private] = ACTIONS(4040), - [anon_sym_internal] = ACTIONS(4040), - [anon_sym_protected] = ACTIONS(4040), - [anon_sym_tailrec] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_infix] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym_external] = ACTIONS(4040), - [sym_property_modifier] = ACTIONS(4040), - [anon_sym_abstract] = ACTIONS(4040), - [anon_sym_final] = ACTIONS(4040), - [anon_sym_open] = ACTIONS(4040), - [anon_sym_vararg] = ACTIONS(4040), - [anon_sym_noinline] = ACTIONS(4040), - [anon_sym_crossinline] = ACTIONS(4040), - [anon_sym_expect] = ACTIONS(4040), - [anon_sym_actual] = ACTIONS(4040), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4042), - [sym__automatic_semicolon] = ACTIONS(4042), - [sym_safe_nav] = ACTIONS(4042), - [sym_multiline_comment] = ACTIONS(3), - }, - [3876] = { - [sym_function_body] = STATE(3897), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_PLUS_EQ] = ACTIONS(4329), - [anon_sym_DASH_EQ] = ACTIONS(4329), - [anon_sym_STAR_EQ] = ACTIONS(4329), - [anon_sym_SLASH_EQ] = ACTIONS(4329), - [anon_sym_PERCENT_EQ] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4327), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - }, - [3877] = { - [sym__alpha_identifier] = ACTIONS(5189), - [anon_sym_AT] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_DOT] = ACTIONS(5189), - [anon_sym_as] = ACTIONS(5189), - [anon_sym_EQ] = ACTIONS(5189), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_where] = ACTIONS(5189), - [anon_sym_SEMI] = ACTIONS(5191), - [anon_sym_get] = ACTIONS(5189), - [anon_sym_set] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [sym_label] = ACTIONS(5191), - [anon_sym_in] = ACTIONS(5189), - [anon_sym_DOT_DOT] = ACTIONS(5191), - [anon_sym_QMARK_COLON] = ACTIONS(5191), - [anon_sym_AMP_AMP] = ACTIONS(5191), - [anon_sym_PIPE_PIPE] = ACTIONS(5191), - [anon_sym_else] = ACTIONS(5189), - [anon_sym_COLON_COLON] = ACTIONS(5191), - [anon_sym_PLUS_EQ] = ACTIONS(5191), - [anon_sym_DASH_EQ] = ACTIONS(5191), - [anon_sym_STAR_EQ] = ACTIONS(5191), - [anon_sym_SLASH_EQ] = ACTIONS(5191), - [anon_sym_PERCENT_EQ] = ACTIONS(5191), - [anon_sym_BANG_EQ] = ACTIONS(5189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5191), - [anon_sym_EQ_EQ] = ACTIONS(5189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5191), - [anon_sym_LT_EQ] = ACTIONS(5191), - [anon_sym_GT_EQ] = ACTIONS(5191), - [anon_sym_BANGin] = ACTIONS(5191), - [anon_sym_is] = ACTIONS(5189), - [anon_sym_BANGis] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_PERCENT] = ACTIONS(5189), - [anon_sym_as_QMARK] = ACTIONS(5191), - [anon_sym_PLUS_PLUS] = ACTIONS(5191), - [anon_sym_DASH_DASH] = ACTIONS(5191), - [anon_sym_BANG_BANG] = ACTIONS(5191), - [anon_sym_suspend] = ACTIONS(5189), - [anon_sym_sealed] = ACTIONS(5189), - [anon_sym_annotation] = ACTIONS(5189), - [anon_sym_data] = ACTIONS(5189), - [anon_sym_inner] = ACTIONS(5189), - [anon_sym_value] = ACTIONS(5189), - [anon_sym_override] = ACTIONS(5189), - [anon_sym_lateinit] = ACTIONS(5189), - [anon_sym_public] = ACTIONS(5189), - [anon_sym_private] = ACTIONS(5189), - [anon_sym_internal] = ACTIONS(5189), - [anon_sym_protected] = ACTIONS(5189), - [anon_sym_tailrec] = ACTIONS(5189), - [anon_sym_operator] = ACTIONS(5189), - [anon_sym_infix] = ACTIONS(5189), - [anon_sym_inline] = ACTIONS(5189), - [anon_sym_external] = ACTIONS(5189), - [sym_property_modifier] = ACTIONS(5189), - [anon_sym_abstract] = ACTIONS(5189), - [anon_sym_final] = ACTIONS(5189), - [anon_sym_open] = ACTIONS(5189), - [anon_sym_vararg] = ACTIONS(5189), - [anon_sym_noinline] = ACTIONS(5189), - [anon_sym_crossinline] = ACTIONS(5189), - [anon_sym_expect] = ACTIONS(5189), - [anon_sym_actual] = ACTIONS(5189), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5191), - [sym__automatic_semicolon] = ACTIONS(5191), - [sym_safe_nav] = ACTIONS(5191), - [sym_multiline_comment] = ACTIONS(3), - }, - [3878] = { - [sym__alpha_identifier] = ACTIONS(5067), - [anon_sym_AT] = ACTIONS(5069), - [anon_sym_LBRACK] = ACTIONS(5069), - [anon_sym_DOT] = ACTIONS(5067), - [anon_sym_as] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5069), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5069), - [anon_sym_COMMA] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5067), - [anon_sym_GT] = ACTIONS(5067), - [anon_sym_where] = ACTIONS(5067), - [anon_sym_SEMI] = ACTIONS(5069), - [anon_sym_get] = ACTIONS(5067), - [anon_sym_set] = ACTIONS(5067), - [anon_sym_STAR] = ACTIONS(5067), - [sym_label] = ACTIONS(5069), - [anon_sym_in] = ACTIONS(5067), - [anon_sym_DOT_DOT] = ACTIONS(5069), - [anon_sym_QMARK_COLON] = ACTIONS(5069), - [anon_sym_AMP_AMP] = ACTIONS(5069), - [anon_sym_PIPE_PIPE] = ACTIONS(5069), - [anon_sym_else] = ACTIONS(5067), - [anon_sym_COLON_COLON] = ACTIONS(5069), - [anon_sym_PLUS_EQ] = ACTIONS(5069), - [anon_sym_DASH_EQ] = ACTIONS(5069), - [anon_sym_STAR_EQ] = ACTIONS(5069), - [anon_sym_SLASH_EQ] = ACTIONS(5069), - [anon_sym_PERCENT_EQ] = ACTIONS(5069), - [anon_sym_BANG_EQ] = ACTIONS(5067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5069), - [anon_sym_EQ_EQ] = ACTIONS(5067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5069), - [anon_sym_LT_EQ] = ACTIONS(5069), - [anon_sym_GT_EQ] = ACTIONS(5069), - [anon_sym_BANGin] = ACTIONS(5069), - [anon_sym_is] = ACTIONS(5067), - [anon_sym_BANGis] = ACTIONS(5069), - [anon_sym_PLUS] = ACTIONS(5067), - [anon_sym_DASH] = ACTIONS(5067), - [anon_sym_SLASH] = ACTIONS(5067), - [anon_sym_PERCENT] = ACTIONS(5067), - [anon_sym_as_QMARK] = ACTIONS(5069), - [anon_sym_PLUS_PLUS] = ACTIONS(5069), - [anon_sym_DASH_DASH] = ACTIONS(5069), - [anon_sym_BANG_BANG] = ACTIONS(5069), - [anon_sym_suspend] = ACTIONS(5067), - [anon_sym_sealed] = ACTIONS(5067), - [anon_sym_annotation] = ACTIONS(5067), - [anon_sym_data] = ACTIONS(5067), - [anon_sym_inner] = ACTIONS(5067), - [anon_sym_value] = ACTIONS(5067), - [anon_sym_override] = ACTIONS(5067), - [anon_sym_lateinit] = ACTIONS(5067), - [anon_sym_public] = ACTIONS(5067), - [anon_sym_private] = ACTIONS(5067), - [anon_sym_internal] = ACTIONS(5067), - [anon_sym_protected] = ACTIONS(5067), - [anon_sym_tailrec] = ACTIONS(5067), - [anon_sym_operator] = ACTIONS(5067), - [anon_sym_infix] = ACTIONS(5067), - [anon_sym_inline] = ACTIONS(5067), - [anon_sym_external] = ACTIONS(5067), - [sym_property_modifier] = ACTIONS(5067), - [anon_sym_abstract] = ACTIONS(5067), - [anon_sym_final] = ACTIONS(5067), - [anon_sym_open] = ACTIONS(5067), - [anon_sym_vararg] = ACTIONS(5067), - [anon_sym_noinline] = ACTIONS(5067), - [anon_sym_crossinline] = ACTIONS(5067), - [anon_sym_expect] = ACTIONS(5067), - [anon_sym_actual] = ACTIONS(5067), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5069), - [sym__automatic_semicolon] = ACTIONS(5069), - [sym_safe_nav] = ACTIONS(5069), - [sym_multiline_comment] = ACTIONS(3), - }, - [3879] = { - [sym__alpha_identifier] = ACTIONS(5063), - [anon_sym_AT] = ACTIONS(5065), - [anon_sym_LBRACK] = ACTIONS(5065), - [anon_sym_DOT] = ACTIONS(5063), - [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_SEMI] = ACTIONS(5065), - [anon_sym_get] = ACTIONS(5063), - [anon_sym_set] = ACTIONS(5063), - [anon_sym_STAR] = ACTIONS(5063), - [sym_label] = ACTIONS(5065), - [anon_sym_in] = ACTIONS(5063), - [anon_sym_DOT_DOT] = ACTIONS(5065), - [anon_sym_QMARK_COLON] = ACTIONS(5065), - [anon_sym_AMP_AMP] = ACTIONS(5065), - [anon_sym_PIPE_PIPE] = ACTIONS(5065), - [anon_sym_else] = ACTIONS(5063), - [anon_sym_COLON_COLON] = ACTIONS(5065), - [anon_sym_PLUS_EQ] = ACTIONS(5065), - [anon_sym_DASH_EQ] = ACTIONS(5065), - [anon_sym_STAR_EQ] = ACTIONS(5065), - [anon_sym_SLASH_EQ] = ACTIONS(5065), - [anon_sym_PERCENT_EQ] = ACTIONS(5065), - [anon_sym_BANG_EQ] = ACTIONS(5063), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5065), - [anon_sym_EQ_EQ] = ACTIONS(5063), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5065), - [anon_sym_LT_EQ] = ACTIONS(5065), - [anon_sym_GT_EQ] = ACTIONS(5065), - [anon_sym_BANGin] = ACTIONS(5065), - [anon_sym_is] = ACTIONS(5063), - [anon_sym_BANGis] = ACTIONS(5065), - [anon_sym_PLUS] = ACTIONS(5063), - [anon_sym_DASH] = ACTIONS(5063), - [anon_sym_SLASH] = ACTIONS(5063), - [anon_sym_PERCENT] = ACTIONS(5063), - [anon_sym_as_QMARK] = ACTIONS(5065), - [anon_sym_PLUS_PLUS] = ACTIONS(5065), - [anon_sym_DASH_DASH] = ACTIONS(5065), - [anon_sym_BANG_BANG] = ACTIONS(5065), - [anon_sym_suspend] = ACTIONS(5063), - [anon_sym_sealed] = ACTIONS(5063), - [anon_sym_annotation] = ACTIONS(5063), - [anon_sym_data] = ACTIONS(5063), - [anon_sym_inner] = ACTIONS(5063), - [anon_sym_value] = ACTIONS(5063), - [anon_sym_override] = ACTIONS(5063), - [anon_sym_lateinit] = ACTIONS(5063), - [anon_sym_public] = ACTIONS(5063), - [anon_sym_private] = ACTIONS(5063), - [anon_sym_internal] = ACTIONS(5063), - [anon_sym_protected] = ACTIONS(5063), - [anon_sym_tailrec] = ACTIONS(5063), - [anon_sym_operator] = ACTIONS(5063), - [anon_sym_infix] = ACTIONS(5063), - [anon_sym_inline] = ACTIONS(5063), - [anon_sym_external] = ACTIONS(5063), - [sym_property_modifier] = ACTIONS(5063), - [anon_sym_abstract] = ACTIONS(5063), - [anon_sym_final] = ACTIONS(5063), - [anon_sym_open] = ACTIONS(5063), - [anon_sym_vararg] = ACTIONS(5063), - [anon_sym_noinline] = ACTIONS(5063), - [anon_sym_crossinline] = ACTIONS(5063), - [anon_sym_expect] = ACTIONS(5063), - [anon_sym_actual] = ACTIONS(5063), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5065), - [sym__automatic_semicolon] = ACTIONS(5065), - [sym_safe_nav] = ACTIONS(5065), + [sym__backtick_identifier] = ACTIONS(5123), + [sym__automatic_semicolon] = ACTIONS(5123), + [sym_safe_nav] = ACTIONS(5123), [sym_multiline_comment] = ACTIONS(3), }, - [3880] = { + [3846] = { [sym__alpha_identifier] = ACTIONS(5149), [anon_sym_AT] = ACTIONS(5151), [anon_sym_LBRACK] = ACTIONS(5151), @@ -431805,87 +429354,647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5151), [sym_multiline_comment] = ACTIONS(3), }, - [3881] = { - [sym__alpha_identifier] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_EQ] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_get] = ACTIONS(4104), - [anon_sym_set] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [sym_label] = ACTIONS(4106), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_QMARK_COLON] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_BANGin] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_BANGis] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_as_QMARK] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_BANG_BANG] = ACTIONS(4106), - [anon_sym_suspend] = ACTIONS(4104), - [anon_sym_sealed] = ACTIONS(4104), - [anon_sym_annotation] = ACTIONS(4104), - [anon_sym_data] = ACTIONS(4104), - [anon_sym_inner] = ACTIONS(4104), - [anon_sym_value] = ACTIONS(4104), - [anon_sym_override] = ACTIONS(4104), - [anon_sym_lateinit] = ACTIONS(4104), - [anon_sym_public] = ACTIONS(4104), - [anon_sym_private] = ACTIONS(4104), - [anon_sym_internal] = ACTIONS(4104), - [anon_sym_protected] = ACTIONS(4104), - [anon_sym_tailrec] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_infix] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym_external] = ACTIONS(4104), - [sym_property_modifier] = ACTIONS(4104), - [anon_sym_abstract] = ACTIONS(4104), - [anon_sym_final] = ACTIONS(4104), - [anon_sym_open] = ACTIONS(4104), - [anon_sym_vararg] = ACTIONS(4104), - [anon_sym_noinline] = ACTIONS(4104), - [anon_sym_crossinline] = ACTIONS(4104), - [anon_sym_expect] = ACTIONS(4104), - [anon_sym_actual] = ACTIONS(4104), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4106), - [sym__automatic_semicolon] = ACTIONS(4106), - [sym_safe_nav] = ACTIONS(4106), + [3847] = { + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_suspend] = ACTIONS(4000), + [anon_sym_sealed] = ACTIONS(4000), + [anon_sym_annotation] = ACTIONS(4000), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_lateinit] = ACTIONS(4000), + [anon_sym_public] = ACTIONS(4000), + [anon_sym_private] = ACTIONS(4000), + [anon_sym_internal] = ACTIONS(4000), + [anon_sym_protected] = ACTIONS(4000), + [anon_sym_tailrec] = ACTIONS(4000), + [anon_sym_operator] = ACTIONS(4000), + [anon_sym_infix] = ACTIONS(4000), + [anon_sym_inline] = ACTIONS(4000), + [anon_sym_external] = ACTIONS(4000), + [sym_property_modifier] = ACTIONS(4000), + [anon_sym_abstract] = ACTIONS(4000), + [anon_sym_final] = ACTIONS(4000), + [anon_sym_open] = ACTIONS(4000), + [anon_sym_vararg] = ACTIONS(4000), + [anon_sym_noinline] = ACTIONS(4000), + [anon_sym_crossinline] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), [sym_multiline_comment] = ACTIONS(3), }, - [3882] = { + [3848] = { + [sym__alpha_identifier] = ACTIONS(5045), + [anon_sym_AT] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_DOT] = ACTIONS(5045), + [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_SEMI] = ACTIONS(5047), + [anon_sym_get] = ACTIONS(5045), + [anon_sym_set] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [sym_label] = ACTIONS(5047), + [anon_sym_in] = ACTIONS(5045), + [anon_sym_DOT_DOT] = ACTIONS(5047), + [anon_sym_QMARK_COLON] = ACTIONS(5047), + [anon_sym_AMP_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5047), + [anon_sym_else] = ACTIONS(5045), + [anon_sym_COLON_COLON] = ACTIONS(5047), + [anon_sym_PLUS_EQ] = ACTIONS(5047), + [anon_sym_DASH_EQ] = ACTIONS(5047), + [anon_sym_STAR_EQ] = ACTIONS(5047), + [anon_sym_SLASH_EQ] = ACTIONS(5047), + [anon_sym_PERCENT_EQ] = ACTIONS(5047), + [anon_sym_BANG_EQ] = ACTIONS(5045), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5047), + [anon_sym_EQ_EQ] = ACTIONS(5045), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5047), + [anon_sym_LT_EQ] = ACTIONS(5047), + [anon_sym_GT_EQ] = ACTIONS(5047), + [anon_sym_BANGin] = ACTIONS(5047), + [anon_sym_is] = ACTIONS(5045), + [anon_sym_BANGis] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_PERCENT] = ACTIONS(5045), + [anon_sym_as_QMARK] = ACTIONS(5047), + [anon_sym_PLUS_PLUS] = ACTIONS(5047), + [anon_sym_DASH_DASH] = ACTIONS(5047), + [anon_sym_BANG_BANG] = ACTIONS(5047), + [anon_sym_suspend] = ACTIONS(5045), + [anon_sym_sealed] = ACTIONS(5045), + [anon_sym_annotation] = ACTIONS(5045), + [anon_sym_data] = ACTIONS(5045), + [anon_sym_inner] = ACTIONS(5045), + [anon_sym_value] = ACTIONS(5045), + [anon_sym_override] = ACTIONS(5045), + [anon_sym_lateinit] = ACTIONS(5045), + [anon_sym_public] = ACTIONS(5045), + [anon_sym_private] = ACTIONS(5045), + [anon_sym_internal] = ACTIONS(5045), + [anon_sym_protected] = ACTIONS(5045), + [anon_sym_tailrec] = ACTIONS(5045), + [anon_sym_operator] = ACTIONS(5045), + [anon_sym_infix] = ACTIONS(5045), + [anon_sym_inline] = ACTIONS(5045), + [anon_sym_external] = ACTIONS(5045), + [sym_property_modifier] = ACTIONS(5045), + [anon_sym_abstract] = ACTIONS(5045), + [anon_sym_final] = ACTIONS(5045), + [anon_sym_open] = ACTIONS(5045), + [anon_sym_vararg] = ACTIONS(5045), + [anon_sym_noinline] = ACTIONS(5045), + [anon_sym_crossinline] = ACTIONS(5045), + [anon_sym_expect] = ACTIONS(5045), + [anon_sym_actual] = ACTIONS(5045), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5047), + [sym__automatic_semicolon] = ACTIONS(5047), + [sym_safe_nav] = ACTIONS(5047), + [sym_multiline_comment] = ACTIONS(3), + }, + [3849] = { + [sym__alpha_identifier] = ACTIONS(5101), + [anon_sym_AT] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_DOT] = ACTIONS(5101), + [anon_sym_as] = ACTIONS(5101), + [anon_sym_EQ] = ACTIONS(5101), + [anon_sym_LBRACE] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(5103), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_where] = ACTIONS(5101), + [anon_sym_SEMI] = ACTIONS(5103), + [anon_sym_get] = ACTIONS(5101), + [anon_sym_set] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [sym_label] = ACTIONS(5103), + [anon_sym_in] = ACTIONS(5101), + [anon_sym_DOT_DOT] = ACTIONS(5103), + [anon_sym_QMARK_COLON] = ACTIONS(5103), + [anon_sym_AMP_AMP] = ACTIONS(5103), + [anon_sym_PIPE_PIPE] = ACTIONS(5103), + [anon_sym_else] = ACTIONS(5101), + [anon_sym_COLON_COLON] = ACTIONS(5103), + [anon_sym_PLUS_EQ] = ACTIONS(5103), + [anon_sym_DASH_EQ] = ACTIONS(5103), + [anon_sym_STAR_EQ] = ACTIONS(5103), + [anon_sym_SLASH_EQ] = ACTIONS(5103), + [anon_sym_PERCENT_EQ] = ACTIONS(5103), + [anon_sym_BANG_EQ] = ACTIONS(5101), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5103), + [anon_sym_EQ_EQ] = ACTIONS(5101), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5103), + [anon_sym_LT_EQ] = ACTIONS(5103), + [anon_sym_GT_EQ] = ACTIONS(5103), + [anon_sym_BANGin] = ACTIONS(5103), + [anon_sym_is] = ACTIONS(5101), + [anon_sym_BANGis] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_PERCENT] = ACTIONS(5101), + [anon_sym_as_QMARK] = ACTIONS(5103), + [anon_sym_PLUS_PLUS] = ACTIONS(5103), + [anon_sym_DASH_DASH] = ACTIONS(5103), + [anon_sym_BANG_BANG] = ACTIONS(5103), + [anon_sym_suspend] = ACTIONS(5101), + [anon_sym_sealed] = ACTIONS(5101), + [anon_sym_annotation] = ACTIONS(5101), + [anon_sym_data] = ACTIONS(5101), + [anon_sym_inner] = ACTIONS(5101), + [anon_sym_value] = ACTIONS(5101), + [anon_sym_override] = ACTIONS(5101), + [anon_sym_lateinit] = ACTIONS(5101), + [anon_sym_public] = ACTIONS(5101), + [anon_sym_private] = ACTIONS(5101), + [anon_sym_internal] = ACTIONS(5101), + [anon_sym_protected] = ACTIONS(5101), + [anon_sym_tailrec] = ACTIONS(5101), + [anon_sym_operator] = ACTIONS(5101), + [anon_sym_infix] = ACTIONS(5101), + [anon_sym_inline] = ACTIONS(5101), + [anon_sym_external] = ACTIONS(5101), + [sym_property_modifier] = ACTIONS(5101), + [anon_sym_abstract] = ACTIONS(5101), + [anon_sym_final] = ACTIONS(5101), + [anon_sym_open] = ACTIONS(5101), + [anon_sym_vararg] = ACTIONS(5101), + [anon_sym_noinline] = ACTIONS(5101), + [anon_sym_crossinline] = ACTIONS(5101), + [anon_sym_expect] = ACTIONS(5101), + [anon_sym_actual] = ACTIONS(5101), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5103), + [sym__automatic_semicolon] = ACTIONS(5103), + [sym_safe_nav] = ACTIONS(5103), + [sym_multiline_comment] = ACTIONS(3), + }, + [3850] = { + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_RBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [anon_sym_DASH_GT] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_while] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + }, + [3851] = { + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_RBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [anon_sym_DASH_GT] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [3852] = { + [sym__alpha_identifier] = ACTIONS(4780), + [anon_sym_AT] = ACTIONS(4782), + [anon_sym_LBRACK] = ACTIONS(4782), + [anon_sym_DOT] = ACTIONS(4780), + [anon_sym_as] = ACTIONS(4780), + [anon_sym_EQ] = ACTIONS(4780), + [anon_sym_LBRACE] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_LPAREN] = ACTIONS(4782), + [anon_sym_COMMA] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4780), + [anon_sym_GT] = ACTIONS(4780), + [anon_sym_where] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(4782), + [anon_sym_get] = ACTIONS(4780), + [anon_sym_set] = ACTIONS(4780), + [anon_sym_STAR] = ACTIONS(4780), + [sym_label] = ACTIONS(4782), + [anon_sym_in] = ACTIONS(4780), + [anon_sym_DOT_DOT] = ACTIONS(4782), + [anon_sym_QMARK_COLON] = ACTIONS(4782), + [anon_sym_AMP_AMP] = ACTIONS(4782), + [anon_sym_PIPE_PIPE] = ACTIONS(4782), + [anon_sym_else] = ACTIONS(4780), + [anon_sym_COLON_COLON] = ACTIONS(4782), + [anon_sym_PLUS_EQ] = ACTIONS(4782), + [anon_sym_DASH_EQ] = ACTIONS(4782), + [anon_sym_STAR_EQ] = ACTIONS(4782), + [anon_sym_SLASH_EQ] = ACTIONS(4782), + [anon_sym_PERCENT_EQ] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4780), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ_EQ] = ACTIONS(4780), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4782), + [anon_sym_LT_EQ] = ACTIONS(4782), + [anon_sym_GT_EQ] = ACTIONS(4782), + [anon_sym_BANGin] = ACTIONS(4782), + [anon_sym_is] = ACTIONS(4780), + [anon_sym_BANGis] = ACTIONS(4782), + [anon_sym_PLUS] = ACTIONS(4780), + [anon_sym_DASH] = ACTIONS(4780), + [anon_sym_SLASH] = ACTIONS(4780), + [anon_sym_PERCENT] = ACTIONS(4780), + [anon_sym_as_QMARK] = ACTIONS(4782), + [anon_sym_PLUS_PLUS] = ACTIONS(4782), + [anon_sym_DASH_DASH] = ACTIONS(4782), + [anon_sym_BANG_BANG] = ACTIONS(4782), + [anon_sym_suspend] = ACTIONS(4780), + [anon_sym_sealed] = ACTIONS(4780), + [anon_sym_annotation] = ACTIONS(4780), + [anon_sym_data] = ACTIONS(4780), + [anon_sym_inner] = ACTIONS(4780), + [anon_sym_value] = ACTIONS(4780), + [anon_sym_override] = ACTIONS(4780), + [anon_sym_lateinit] = ACTIONS(4780), + [anon_sym_public] = ACTIONS(4780), + [anon_sym_private] = ACTIONS(4780), + [anon_sym_internal] = ACTIONS(4780), + [anon_sym_protected] = ACTIONS(4780), + [anon_sym_tailrec] = ACTIONS(4780), + [anon_sym_operator] = ACTIONS(4780), + [anon_sym_infix] = ACTIONS(4780), + [anon_sym_inline] = ACTIONS(4780), + [anon_sym_external] = ACTIONS(4780), + [sym_property_modifier] = ACTIONS(4780), + [anon_sym_abstract] = ACTIONS(4780), + [anon_sym_final] = ACTIONS(4780), + [anon_sym_open] = ACTIONS(4780), + [anon_sym_vararg] = ACTIONS(4780), + [anon_sym_noinline] = ACTIONS(4780), + [anon_sym_crossinline] = ACTIONS(4780), + [anon_sym_expect] = ACTIONS(4780), + [anon_sym_actual] = ACTIONS(4780), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4782), + [sym__automatic_semicolon] = ACTIONS(4782), + [sym_safe_nav] = ACTIONS(4782), + [sym_multiline_comment] = ACTIONS(3), + }, + [3853] = { + [sym__alpha_identifier] = ACTIONS(4940), + [anon_sym_AT] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(4942), + [anon_sym_DOT] = ACTIONS(4940), + [anon_sym_as] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(4940), + [anon_sym_LBRACE] = ACTIONS(4942), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_LPAREN] = ACTIONS(4942), + [anon_sym_COMMA] = ACTIONS(4942), + [anon_sym_LT] = ACTIONS(4940), + [anon_sym_GT] = ACTIONS(4940), + [anon_sym_where] = ACTIONS(4940), + [anon_sym_SEMI] = ACTIONS(4942), + [anon_sym_get] = ACTIONS(4940), + [anon_sym_set] = ACTIONS(4940), + [anon_sym_STAR] = ACTIONS(4940), + [sym_label] = ACTIONS(4942), + [anon_sym_in] = ACTIONS(4940), + [anon_sym_DOT_DOT] = ACTIONS(4942), + [anon_sym_QMARK_COLON] = ACTIONS(4942), + [anon_sym_AMP_AMP] = ACTIONS(4942), + [anon_sym_PIPE_PIPE] = ACTIONS(4942), + [anon_sym_else] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_PLUS_EQ] = ACTIONS(4942), + [anon_sym_DASH_EQ] = ACTIONS(4942), + [anon_sym_STAR_EQ] = ACTIONS(4942), + [anon_sym_SLASH_EQ] = ACTIONS(4942), + [anon_sym_PERCENT_EQ] = ACTIONS(4942), + [anon_sym_BANG_EQ] = ACTIONS(4940), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), + [anon_sym_EQ_EQ] = ACTIONS(4940), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), + [anon_sym_LT_EQ] = ACTIONS(4942), + [anon_sym_GT_EQ] = ACTIONS(4942), + [anon_sym_BANGin] = ACTIONS(4942), + [anon_sym_is] = ACTIONS(4940), + [anon_sym_BANGis] = ACTIONS(4942), + [anon_sym_PLUS] = ACTIONS(4940), + [anon_sym_DASH] = ACTIONS(4940), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_PERCENT] = ACTIONS(4940), + [anon_sym_as_QMARK] = ACTIONS(4942), + [anon_sym_PLUS_PLUS] = ACTIONS(4942), + [anon_sym_DASH_DASH] = ACTIONS(4942), + [anon_sym_BANG_BANG] = ACTIONS(4942), + [anon_sym_suspend] = ACTIONS(4940), + [anon_sym_sealed] = ACTIONS(4940), + [anon_sym_annotation] = ACTIONS(4940), + [anon_sym_data] = ACTIONS(4940), + [anon_sym_inner] = ACTIONS(4940), + [anon_sym_value] = ACTIONS(4940), + [anon_sym_override] = ACTIONS(4940), + [anon_sym_lateinit] = ACTIONS(4940), + [anon_sym_public] = ACTIONS(4940), + [anon_sym_private] = ACTIONS(4940), + [anon_sym_internal] = ACTIONS(4940), + [anon_sym_protected] = ACTIONS(4940), + [anon_sym_tailrec] = ACTIONS(4940), + [anon_sym_operator] = ACTIONS(4940), + [anon_sym_infix] = ACTIONS(4940), + [anon_sym_inline] = ACTIONS(4940), + [anon_sym_external] = ACTIONS(4940), + [sym_property_modifier] = ACTIONS(4940), + [anon_sym_abstract] = ACTIONS(4940), + [anon_sym_final] = ACTIONS(4940), + [anon_sym_open] = ACTIONS(4940), + [anon_sym_vararg] = ACTIONS(4940), + [anon_sym_noinline] = ACTIONS(4940), + [anon_sym_crossinline] = ACTIONS(4940), + [anon_sym_expect] = ACTIONS(4940), + [anon_sym_actual] = ACTIONS(4940), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4942), + [sym__automatic_semicolon] = ACTIONS(4942), + [sym_safe_nav] = ACTIONS(4942), + [sym_multiline_comment] = ACTIONS(3), + }, + [3854] = { + [sym__alpha_identifier] = ACTIONS(4872), + [anon_sym_AT] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_typealias] = ACTIONS(4872), + [anon_sym_class] = ACTIONS(4872), + [anon_sym_interface] = ACTIONS(4872), + [anon_sym_enum] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_val] = ACTIONS(4872), + [anon_sym_var] = ACTIONS(4872), + [anon_sym_object] = ACTIONS(4872), + [anon_sym_fun] = ACTIONS(4872), + [anon_sym_get] = ACTIONS(4872), + [anon_sym_set] = ACTIONS(4872), + [anon_sym_this] = ACTIONS(4872), + [anon_sym_super] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4874), + [sym_label] = ACTIONS(4872), + [anon_sym_for] = ACTIONS(4872), + [anon_sym_while] = ACTIONS(4872), + [anon_sym_do] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4872), + [anon_sym_if] = ACTIONS(4872), + [anon_sym_when] = ACTIONS(4872), + [anon_sym_try] = ACTIONS(4872), + [anon_sym_throw] = ACTIONS(4872), + [anon_sym_return] = ACTIONS(4872), + [anon_sym_continue] = ACTIONS(4872), + [anon_sym_break] = ACTIONS(4872), + [anon_sym_COLON_COLON] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_BANG] = ACTIONS(4874), + [anon_sym_suspend] = ACTIONS(4872), + [anon_sym_sealed] = ACTIONS(4872), + [anon_sym_annotation] = ACTIONS(4872), + [anon_sym_data] = ACTIONS(4872), + [anon_sym_inner] = ACTIONS(4872), + [anon_sym_value] = ACTIONS(4872), + [anon_sym_override] = ACTIONS(4872), + [anon_sym_lateinit] = ACTIONS(4872), + [anon_sym_public] = ACTIONS(4872), + [anon_sym_private] = ACTIONS(4872), + [anon_sym_internal] = ACTIONS(4872), + [anon_sym_protected] = ACTIONS(4872), + [anon_sym_tailrec] = ACTIONS(4872), + [anon_sym_operator] = ACTIONS(4872), + [anon_sym_infix] = ACTIONS(4872), + [anon_sym_inline] = ACTIONS(4872), + [anon_sym_external] = ACTIONS(4872), + [sym_property_modifier] = ACTIONS(4872), + [anon_sym_abstract] = ACTIONS(4872), + [anon_sym_final] = ACTIONS(4872), + [anon_sym_open] = ACTIONS(4872), + [anon_sym_vararg] = ACTIONS(4872), + [anon_sym_noinline] = ACTIONS(4872), + [anon_sym_crossinline] = ACTIONS(4872), + [anon_sym_expect] = ACTIONS(4872), + [anon_sym_actual] = ACTIONS(4872), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4874), + [anon_sym_continue_AT] = ACTIONS(4874), + [anon_sym_break_AT] = ACTIONS(4874), + [anon_sym_this_AT] = ACTIONS(4874), + [anon_sym_super_AT] = ACTIONS(4874), + [sym_real_literal] = ACTIONS(4874), + [sym_integer_literal] = ACTIONS(4872), + [sym_hex_literal] = ACTIONS(4874), + [sym_bin_literal] = ACTIONS(4874), + [anon_sym_true] = ACTIONS(4872), + [anon_sym_false] = ACTIONS(4872), + [anon_sym_SQUOTE] = ACTIONS(4874), + [sym__backtick_identifier] = ACTIONS(4874), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4874), + }, + [3855] = { [sym__alpha_identifier] = ACTIONS(5125), [anon_sym_AT] = ACTIONS(5127), [anon_sym_LBRACK] = ACTIONS(5127), @@ -431965,2807 +430074,1447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5127), [sym_multiline_comment] = ACTIONS(3), }, - [3883] = { - [sym__alpha_identifier] = ACTIONS(5209), - [anon_sym_AT] = ACTIONS(5211), - [anon_sym_LBRACK] = ACTIONS(5211), - [anon_sym_DOT] = ACTIONS(5209), - [anon_sym_as] = ACTIONS(5209), - [anon_sym_EQ] = ACTIONS(5209), - [anon_sym_LBRACE] = ACTIONS(5211), - [anon_sym_RBRACE] = ACTIONS(5211), - [anon_sym_LPAREN] = ACTIONS(5211), - [anon_sym_COMMA] = ACTIONS(5211), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_where] = ACTIONS(5209), - [anon_sym_SEMI] = ACTIONS(5211), - [anon_sym_get] = ACTIONS(5209), - [anon_sym_set] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [sym_label] = ACTIONS(5211), - [anon_sym_in] = ACTIONS(5209), - [anon_sym_DOT_DOT] = ACTIONS(5211), - [anon_sym_QMARK_COLON] = ACTIONS(5211), - [anon_sym_AMP_AMP] = ACTIONS(5211), - [anon_sym_PIPE_PIPE] = ACTIONS(5211), - [anon_sym_else] = ACTIONS(5209), - [anon_sym_COLON_COLON] = ACTIONS(5211), - [anon_sym_PLUS_EQ] = ACTIONS(5211), - [anon_sym_DASH_EQ] = ACTIONS(5211), - [anon_sym_STAR_EQ] = ACTIONS(5211), - [anon_sym_SLASH_EQ] = ACTIONS(5211), - [anon_sym_PERCENT_EQ] = ACTIONS(5211), - [anon_sym_BANG_EQ] = ACTIONS(5209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5211), - [anon_sym_EQ_EQ] = ACTIONS(5209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5211), - [anon_sym_LT_EQ] = ACTIONS(5211), - [anon_sym_GT_EQ] = ACTIONS(5211), - [anon_sym_BANGin] = ACTIONS(5211), - [anon_sym_is] = ACTIONS(5209), - [anon_sym_BANGis] = ACTIONS(5211), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_PERCENT] = ACTIONS(5209), - [anon_sym_as_QMARK] = ACTIONS(5211), - [anon_sym_PLUS_PLUS] = ACTIONS(5211), - [anon_sym_DASH_DASH] = ACTIONS(5211), - [anon_sym_BANG_BANG] = ACTIONS(5211), - [anon_sym_suspend] = ACTIONS(5209), - [anon_sym_sealed] = ACTIONS(5209), - [anon_sym_annotation] = ACTIONS(5209), - [anon_sym_data] = ACTIONS(5209), - [anon_sym_inner] = ACTIONS(5209), - [anon_sym_value] = ACTIONS(5209), - [anon_sym_override] = ACTIONS(5209), - [anon_sym_lateinit] = ACTIONS(5209), - [anon_sym_public] = ACTIONS(5209), - [anon_sym_private] = ACTIONS(5209), - [anon_sym_internal] = ACTIONS(5209), - [anon_sym_protected] = ACTIONS(5209), - [anon_sym_tailrec] = ACTIONS(5209), - [anon_sym_operator] = ACTIONS(5209), - [anon_sym_infix] = ACTIONS(5209), - [anon_sym_inline] = ACTIONS(5209), - [anon_sym_external] = ACTIONS(5209), - [sym_property_modifier] = ACTIONS(5209), - [anon_sym_abstract] = ACTIONS(5209), - [anon_sym_final] = ACTIONS(5209), - [anon_sym_open] = ACTIONS(5209), - [anon_sym_vararg] = ACTIONS(5209), - [anon_sym_noinline] = ACTIONS(5209), - [anon_sym_crossinline] = ACTIONS(5209), - [anon_sym_expect] = ACTIONS(5209), - [anon_sym_actual] = ACTIONS(5209), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5211), - [sym__automatic_semicolon] = ACTIONS(5211), - [sym_safe_nav] = ACTIONS(5211), - [sym_multiline_comment] = ACTIONS(3), - }, - [3884] = { - [sym__alpha_identifier] = ACTIONS(4860), - [anon_sym_AT] = ACTIONS(4862), - [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_DOT] = ACTIONS(4860), - [anon_sym_as] = ACTIONS(4860), - [anon_sym_EQ] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4862), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4862), - [anon_sym_COMMA] = ACTIONS(4862), - [anon_sym_LT] = ACTIONS(4860), - [anon_sym_GT] = ACTIONS(4860), - [anon_sym_where] = ACTIONS(4860), - [anon_sym_SEMI] = ACTIONS(4862), - [anon_sym_get] = ACTIONS(4860), - [anon_sym_set] = ACTIONS(4860), - [anon_sym_STAR] = ACTIONS(4860), - [sym_label] = ACTIONS(4862), - [anon_sym_in] = ACTIONS(4860), - [anon_sym_DOT_DOT] = ACTIONS(4862), - [anon_sym_QMARK_COLON] = ACTIONS(4862), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_PIPE_PIPE] = ACTIONS(4862), - [anon_sym_else] = ACTIONS(4860), - [anon_sym_COLON_COLON] = ACTIONS(4862), - [anon_sym_PLUS_EQ] = ACTIONS(4862), - [anon_sym_DASH_EQ] = ACTIONS(4862), - [anon_sym_STAR_EQ] = ACTIONS(4862), - [anon_sym_SLASH_EQ] = ACTIONS(4862), - [anon_sym_PERCENT_EQ] = ACTIONS(4862), - [anon_sym_BANG_EQ] = ACTIONS(4860), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4862), - [anon_sym_EQ_EQ] = ACTIONS(4860), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4862), - [anon_sym_LT_EQ] = ACTIONS(4862), - [anon_sym_GT_EQ] = ACTIONS(4862), - [anon_sym_BANGin] = ACTIONS(4862), - [anon_sym_is] = ACTIONS(4860), - [anon_sym_BANGis] = ACTIONS(4862), - [anon_sym_PLUS] = ACTIONS(4860), - [anon_sym_DASH] = ACTIONS(4860), - [anon_sym_SLASH] = ACTIONS(4860), - [anon_sym_PERCENT] = ACTIONS(4860), - [anon_sym_as_QMARK] = ACTIONS(4862), - [anon_sym_PLUS_PLUS] = ACTIONS(4862), - [anon_sym_DASH_DASH] = ACTIONS(4862), - [anon_sym_BANG_BANG] = ACTIONS(4862), - [anon_sym_suspend] = ACTIONS(4860), - [anon_sym_sealed] = ACTIONS(4860), - [anon_sym_annotation] = ACTIONS(4860), - [anon_sym_data] = ACTIONS(4860), - [anon_sym_inner] = ACTIONS(4860), - [anon_sym_value] = ACTIONS(4860), - [anon_sym_override] = ACTIONS(4860), - [anon_sym_lateinit] = ACTIONS(4860), - [anon_sym_public] = ACTIONS(4860), - [anon_sym_private] = ACTIONS(4860), - [anon_sym_internal] = ACTIONS(4860), - [anon_sym_protected] = ACTIONS(4860), - [anon_sym_tailrec] = ACTIONS(4860), - [anon_sym_operator] = ACTIONS(4860), - [anon_sym_infix] = ACTIONS(4860), - [anon_sym_inline] = ACTIONS(4860), - [anon_sym_external] = ACTIONS(4860), - [sym_property_modifier] = ACTIONS(4860), - [anon_sym_abstract] = ACTIONS(4860), - [anon_sym_final] = ACTIONS(4860), - [anon_sym_open] = ACTIONS(4860), - [anon_sym_vararg] = ACTIONS(4860), - [anon_sym_noinline] = ACTIONS(4860), - [anon_sym_crossinline] = ACTIONS(4860), - [anon_sym_expect] = ACTIONS(4860), - [anon_sym_actual] = ACTIONS(4860), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4862), - [sym__automatic_semicolon] = ACTIONS(4862), - [sym_safe_nav] = ACTIONS(4862), - [sym_multiline_comment] = ACTIONS(3), - }, - [3885] = { - [sym__alpha_identifier] = ACTIONS(5169), - [anon_sym_AT] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5171), - [anon_sym_DOT] = ACTIONS(5169), - [anon_sym_as] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_RBRACE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_COMMA] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_where] = ACTIONS(5169), - [anon_sym_SEMI] = ACTIONS(5171), - [anon_sym_get] = ACTIONS(5169), - [anon_sym_set] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5169), - [sym_label] = ACTIONS(5171), - [anon_sym_in] = ACTIONS(5169), - [anon_sym_DOT_DOT] = ACTIONS(5171), - [anon_sym_QMARK_COLON] = ACTIONS(5171), - [anon_sym_AMP_AMP] = ACTIONS(5171), - [anon_sym_PIPE_PIPE] = ACTIONS(5171), - [anon_sym_else] = ACTIONS(5169), - [anon_sym_COLON_COLON] = ACTIONS(5171), - [anon_sym_PLUS_EQ] = ACTIONS(5171), - [anon_sym_DASH_EQ] = ACTIONS(5171), - [anon_sym_STAR_EQ] = ACTIONS(5171), - [anon_sym_SLASH_EQ] = ACTIONS(5171), - [anon_sym_PERCENT_EQ] = ACTIONS(5171), - [anon_sym_BANG_EQ] = ACTIONS(5169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5171), - [anon_sym_EQ_EQ] = ACTIONS(5169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5171), - [anon_sym_LT_EQ] = ACTIONS(5171), - [anon_sym_GT_EQ] = ACTIONS(5171), - [anon_sym_BANGin] = ACTIONS(5171), - [anon_sym_is] = ACTIONS(5169), - [anon_sym_BANGis] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_SLASH] = ACTIONS(5169), - [anon_sym_PERCENT] = ACTIONS(5169), - [anon_sym_as_QMARK] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_BANG_BANG] = ACTIONS(5171), - [anon_sym_suspend] = ACTIONS(5169), - [anon_sym_sealed] = ACTIONS(5169), - [anon_sym_annotation] = ACTIONS(5169), - [anon_sym_data] = ACTIONS(5169), - [anon_sym_inner] = ACTIONS(5169), - [anon_sym_value] = ACTIONS(5169), - [anon_sym_override] = ACTIONS(5169), - [anon_sym_lateinit] = ACTIONS(5169), - [anon_sym_public] = ACTIONS(5169), - [anon_sym_private] = ACTIONS(5169), - [anon_sym_internal] = ACTIONS(5169), - [anon_sym_protected] = ACTIONS(5169), - [anon_sym_tailrec] = ACTIONS(5169), - [anon_sym_operator] = ACTIONS(5169), - [anon_sym_infix] = ACTIONS(5169), - [anon_sym_inline] = ACTIONS(5169), - [anon_sym_external] = ACTIONS(5169), - [sym_property_modifier] = ACTIONS(5169), - [anon_sym_abstract] = ACTIONS(5169), - [anon_sym_final] = ACTIONS(5169), - [anon_sym_open] = ACTIONS(5169), - [anon_sym_vararg] = ACTIONS(5169), - [anon_sym_noinline] = ACTIONS(5169), - [anon_sym_crossinline] = ACTIONS(5169), - [anon_sym_expect] = ACTIONS(5169), - [anon_sym_actual] = ACTIONS(5169), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5171), - [sym__automatic_semicolon] = ACTIONS(5171), - [sym_safe_nav] = ACTIONS(5171), - [sym_multiline_comment] = ACTIONS(3), - }, - [3886] = { - [sym__alpha_identifier] = ACTIONS(5117), - [anon_sym_AT] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_DOT] = ACTIONS(5117), - [anon_sym_as] = ACTIONS(5117), - [anon_sym_EQ] = ACTIONS(5117), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_RBRACE] = ACTIONS(5119), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_where] = ACTIONS(5117), - [anon_sym_SEMI] = ACTIONS(5119), - [anon_sym_get] = ACTIONS(5117), - [anon_sym_set] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [sym_label] = ACTIONS(5119), - [anon_sym_in] = ACTIONS(5117), - [anon_sym_DOT_DOT] = ACTIONS(5119), - [anon_sym_QMARK_COLON] = ACTIONS(5119), - [anon_sym_AMP_AMP] = ACTIONS(5119), - [anon_sym_PIPE_PIPE] = ACTIONS(5119), - [anon_sym_else] = ACTIONS(5117), - [anon_sym_COLON_COLON] = ACTIONS(5119), - [anon_sym_PLUS_EQ] = ACTIONS(5119), - [anon_sym_DASH_EQ] = ACTIONS(5119), - [anon_sym_STAR_EQ] = ACTIONS(5119), - [anon_sym_SLASH_EQ] = ACTIONS(5119), - [anon_sym_PERCENT_EQ] = ACTIONS(5119), - [anon_sym_BANG_EQ] = ACTIONS(5117), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), - [anon_sym_EQ_EQ] = ACTIONS(5117), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), - [anon_sym_LT_EQ] = ACTIONS(5119), - [anon_sym_GT_EQ] = ACTIONS(5119), - [anon_sym_BANGin] = ACTIONS(5119), - [anon_sym_is] = ACTIONS(5117), - [anon_sym_BANGis] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_PERCENT] = ACTIONS(5117), - [anon_sym_as_QMARK] = ACTIONS(5119), - [anon_sym_PLUS_PLUS] = ACTIONS(5119), - [anon_sym_DASH_DASH] = ACTIONS(5119), - [anon_sym_BANG_BANG] = ACTIONS(5119), - [anon_sym_suspend] = ACTIONS(5117), - [anon_sym_sealed] = ACTIONS(5117), - [anon_sym_annotation] = ACTIONS(5117), - [anon_sym_data] = ACTIONS(5117), - [anon_sym_inner] = ACTIONS(5117), - [anon_sym_value] = ACTIONS(5117), - [anon_sym_override] = ACTIONS(5117), - [anon_sym_lateinit] = ACTIONS(5117), - [anon_sym_public] = ACTIONS(5117), - [anon_sym_private] = ACTIONS(5117), - [anon_sym_internal] = ACTIONS(5117), - [anon_sym_protected] = ACTIONS(5117), - [anon_sym_tailrec] = ACTIONS(5117), - [anon_sym_operator] = ACTIONS(5117), - [anon_sym_infix] = ACTIONS(5117), - [anon_sym_inline] = ACTIONS(5117), - [anon_sym_external] = ACTIONS(5117), - [sym_property_modifier] = ACTIONS(5117), - [anon_sym_abstract] = ACTIONS(5117), - [anon_sym_final] = ACTIONS(5117), - [anon_sym_open] = ACTIONS(5117), - [anon_sym_vararg] = ACTIONS(5117), - [anon_sym_noinline] = ACTIONS(5117), - [anon_sym_crossinline] = ACTIONS(5117), - [anon_sym_expect] = ACTIONS(5117), - [anon_sym_actual] = ACTIONS(5117), + [3856] = { + [sym__alpha_identifier] = ACTIONS(5133), + [anon_sym_AT] = ACTIONS(5135), + [anon_sym_LBRACK] = ACTIONS(5135), + [anon_sym_DOT] = ACTIONS(5133), + [anon_sym_as] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5135), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5135), + [anon_sym_COMMA] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5133), + [anon_sym_GT] = ACTIONS(5133), + [anon_sym_where] = ACTIONS(5133), + [anon_sym_SEMI] = ACTIONS(5135), + [anon_sym_get] = ACTIONS(5133), + [anon_sym_set] = ACTIONS(5133), + [anon_sym_STAR] = ACTIONS(5133), + [sym_label] = ACTIONS(5135), + [anon_sym_in] = ACTIONS(5133), + [anon_sym_DOT_DOT] = ACTIONS(5135), + [anon_sym_QMARK_COLON] = ACTIONS(5135), + [anon_sym_AMP_AMP] = ACTIONS(5135), + [anon_sym_PIPE_PIPE] = ACTIONS(5135), + [anon_sym_else] = ACTIONS(5133), + [anon_sym_COLON_COLON] = ACTIONS(5135), + [anon_sym_PLUS_EQ] = ACTIONS(5135), + [anon_sym_DASH_EQ] = ACTIONS(5135), + [anon_sym_STAR_EQ] = ACTIONS(5135), + [anon_sym_SLASH_EQ] = ACTIONS(5135), + [anon_sym_PERCENT_EQ] = ACTIONS(5135), + [anon_sym_BANG_EQ] = ACTIONS(5133), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5135), + [anon_sym_EQ_EQ] = ACTIONS(5133), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5135), + [anon_sym_LT_EQ] = ACTIONS(5135), + [anon_sym_GT_EQ] = ACTIONS(5135), + [anon_sym_BANGin] = ACTIONS(5135), + [anon_sym_is] = ACTIONS(5133), + [anon_sym_BANGis] = ACTIONS(5135), + [anon_sym_PLUS] = ACTIONS(5133), + [anon_sym_DASH] = ACTIONS(5133), + [anon_sym_SLASH] = ACTIONS(5133), + [anon_sym_PERCENT] = ACTIONS(5133), + [anon_sym_as_QMARK] = ACTIONS(5135), + [anon_sym_PLUS_PLUS] = ACTIONS(5135), + [anon_sym_DASH_DASH] = ACTIONS(5135), + [anon_sym_BANG_BANG] = ACTIONS(5135), + [anon_sym_suspend] = ACTIONS(5133), + [anon_sym_sealed] = ACTIONS(5133), + [anon_sym_annotation] = ACTIONS(5133), + [anon_sym_data] = ACTIONS(5133), + [anon_sym_inner] = ACTIONS(5133), + [anon_sym_value] = ACTIONS(5133), + [anon_sym_override] = ACTIONS(5133), + [anon_sym_lateinit] = ACTIONS(5133), + [anon_sym_public] = ACTIONS(5133), + [anon_sym_private] = ACTIONS(5133), + [anon_sym_internal] = ACTIONS(5133), + [anon_sym_protected] = ACTIONS(5133), + [anon_sym_tailrec] = ACTIONS(5133), + [anon_sym_operator] = ACTIONS(5133), + [anon_sym_infix] = ACTIONS(5133), + [anon_sym_inline] = ACTIONS(5133), + [anon_sym_external] = ACTIONS(5133), + [sym_property_modifier] = ACTIONS(5133), + [anon_sym_abstract] = ACTIONS(5133), + [anon_sym_final] = ACTIONS(5133), + [anon_sym_open] = ACTIONS(5133), + [anon_sym_vararg] = ACTIONS(5133), + [anon_sym_noinline] = ACTIONS(5133), + [anon_sym_crossinline] = ACTIONS(5133), + [anon_sym_expect] = ACTIONS(5133), + [anon_sym_actual] = ACTIONS(5133), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5119), - [sym__automatic_semicolon] = ACTIONS(5119), - [sym_safe_nav] = ACTIONS(5119), - [sym_multiline_comment] = ACTIONS(3), - }, - [3887] = { - [sym__alpha_identifier] = ACTIONS(5105), - [anon_sym_AT] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_DOT] = ACTIONS(5105), - [anon_sym_as] = ACTIONS(5105), - [anon_sym_EQ] = ACTIONS(5105), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_RBRACE] = ACTIONS(5107), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_where] = ACTIONS(5105), - [anon_sym_SEMI] = ACTIONS(5107), - [anon_sym_get] = ACTIONS(5105), - [anon_sym_set] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [sym_label] = ACTIONS(5107), - [anon_sym_in] = ACTIONS(5105), - [anon_sym_DOT_DOT] = ACTIONS(5107), - [anon_sym_QMARK_COLON] = ACTIONS(5107), - [anon_sym_AMP_AMP] = ACTIONS(5107), - [anon_sym_PIPE_PIPE] = ACTIONS(5107), - [anon_sym_else] = ACTIONS(5105), - [anon_sym_COLON_COLON] = ACTIONS(5107), - [anon_sym_PLUS_EQ] = ACTIONS(5107), - [anon_sym_DASH_EQ] = ACTIONS(5107), - [anon_sym_STAR_EQ] = ACTIONS(5107), - [anon_sym_SLASH_EQ] = ACTIONS(5107), - [anon_sym_PERCENT_EQ] = ACTIONS(5107), - [anon_sym_BANG_EQ] = ACTIONS(5105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5107), - [anon_sym_EQ_EQ] = ACTIONS(5105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5107), - [anon_sym_LT_EQ] = ACTIONS(5107), - [anon_sym_GT_EQ] = ACTIONS(5107), - [anon_sym_BANGin] = ACTIONS(5107), - [anon_sym_is] = ACTIONS(5105), - [anon_sym_BANGis] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_PERCENT] = ACTIONS(5105), - [anon_sym_as_QMARK] = ACTIONS(5107), - [anon_sym_PLUS_PLUS] = ACTIONS(5107), - [anon_sym_DASH_DASH] = ACTIONS(5107), - [anon_sym_BANG_BANG] = ACTIONS(5107), - [anon_sym_suspend] = ACTIONS(5105), - [anon_sym_sealed] = ACTIONS(5105), - [anon_sym_annotation] = ACTIONS(5105), - [anon_sym_data] = ACTIONS(5105), - [anon_sym_inner] = ACTIONS(5105), - [anon_sym_value] = ACTIONS(5105), - [anon_sym_override] = ACTIONS(5105), - [anon_sym_lateinit] = ACTIONS(5105), - [anon_sym_public] = ACTIONS(5105), - [anon_sym_private] = ACTIONS(5105), - [anon_sym_internal] = ACTIONS(5105), - [anon_sym_protected] = ACTIONS(5105), - [anon_sym_tailrec] = ACTIONS(5105), - [anon_sym_operator] = ACTIONS(5105), - [anon_sym_infix] = ACTIONS(5105), - [anon_sym_inline] = ACTIONS(5105), - [anon_sym_external] = ACTIONS(5105), - [sym_property_modifier] = ACTIONS(5105), - [anon_sym_abstract] = ACTIONS(5105), - [anon_sym_final] = ACTIONS(5105), - [anon_sym_open] = ACTIONS(5105), - [anon_sym_vararg] = ACTIONS(5105), - [anon_sym_noinline] = ACTIONS(5105), - [anon_sym_crossinline] = ACTIONS(5105), - [anon_sym_expect] = ACTIONS(5105), - [anon_sym_actual] = ACTIONS(5105), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5107), - [sym__automatic_semicolon] = ACTIONS(5107), - [sym_safe_nav] = ACTIONS(5107), + [sym__backtick_identifier] = ACTIONS(5135), + [sym__automatic_semicolon] = ACTIONS(5135), + [sym_safe_nav] = ACTIONS(5135), [sym_multiline_comment] = ACTIONS(3), }, - [3888] = { - [sym__alpha_identifier] = ACTIONS(4920), - [anon_sym_AT] = ACTIONS(4922), - [anon_sym_LBRACK] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_as] = ACTIONS(4920), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4922), - [anon_sym_RBRACE] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_where] = ACTIONS(4920), - [anon_sym_SEMI] = ACTIONS(4922), - [anon_sym_get] = ACTIONS(4920), - [anon_sym_set] = ACTIONS(4920), - [anon_sym_STAR] = ACTIONS(4920), - [sym_label] = ACTIONS(4922), - [anon_sym_in] = ACTIONS(4920), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_QMARK_COLON] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_else] = ACTIONS(4920), - [anon_sym_COLON_COLON] = ACTIONS(4922), - [anon_sym_PLUS_EQ] = ACTIONS(4922), - [anon_sym_DASH_EQ] = ACTIONS(4922), - [anon_sym_STAR_EQ] = ACTIONS(4922), - [anon_sym_SLASH_EQ] = ACTIONS(4922), - [anon_sym_PERCENT_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4920), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4920), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_BANGin] = ACTIONS(4922), - [anon_sym_is] = ACTIONS(4920), - [anon_sym_BANGis] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4920), - [anon_sym_as_QMARK] = ACTIONS(4922), - [anon_sym_PLUS_PLUS] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4922), - [anon_sym_BANG_BANG] = ACTIONS(4922), - [anon_sym_suspend] = ACTIONS(4920), - [anon_sym_sealed] = ACTIONS(4920), - [anon_sym_annotation] = ACTIONS(4920), - [anon_sym_data] = ACTIONS(4920), - [anon_sym_inner] = ACTIONS(4920), - [anon_sym_value] = ACTIONS(4920), - [anon_sym_override] = ACTIONS(4920), - [anon_sym_lateinit] = ACTIONS(4920), - [anon_sym_public] = ACTIONS(4920), - [anon_sym_private] = ACTIONS(4920), - [anon_sym_internal] = ACTIONS(4920), - [anon_sym_protected] = ACTIONS(4920), - [anon_sym_tailrec] = ACTIONS(4920), - [anon_sym_operator] = ACTIONS(4920), - [anon_sym_infix] = ACTIONS(4920), - [anon_sym_inline] = ACTIONS(4920), - [anon_sym_external] = ACTIONS(4920), - [sym_property_modifier] = ACTIONS(4920), - [anon_sym_abstract] = ACTIONS(4920), - [anon_sym_final] = ACTIONS(4920), - [anon_sym_open] = ACTIONS(4920), - [anon_sym_vararg] = ACTIONS(4920), - [anon_sym_noinline] = ACTIONS(4920), - [anon_sym_crossinline] = ACTIONS(4920), - [anon_sym_expect] = ACTIONS(4920), - [anon_sym_actual] = ACTIONS(4920), + [3857] = { + [sym__alpha_identifier] = ACTIONS(4770), + [anon_sym_AT] = ACTIONS(4772), + [anon_sym_LBRACK] = ACTIONS(4772), + [anon_sym_DOT] = ACTIONS(4770), + [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_SEMI] = ACTIONS(4772), + [anon_sym_get] = ACTIONS(4770), + [anon_sym_set] = ACTIONS(4770), + [anon_sym_STAR] = ACTIONS(4770), + [sym_label] = ACTIONS(4772), + [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_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_value] = 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(4922), - [sym__automatic_semicolon] = ACTIONS(4922), - [sym_safe_nav] = ACTIONS(4922), - [sym_multiline_comment] = ACTIONS(3), - }, - [3889] = { - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [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_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_value] = 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), - }, - [3890] = { - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [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_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_value] = 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), - }, - [3891] = { - [sym__alpha_identifier] = ACTIONS(5075), - [anon_sym_AT] = ACTIONS(5077), - [anon_sym_LBRACK] = ACTIONS(5077), - [anon_sym_DOT] = ACTIONS(5075), - [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_SEMI] = ACTIONS(5077), - [anon_sym_get] = ACTIONS(5075), - [anon_sym_set] = ACTIONS(5075), - [anon_sym_STAR] = ACTIONS(5075), - [sym_label] = ACTIONS(5077), - [anon_sym_in] = ACTIONS(5075), - [anon_sym_DOT_DOT] = ACTIONS(5077), - [anon_sym_QMARK_COLON] = ACTIONS(5077), - [anon_sym_AMP_AMP] = ACTIONS(5077), - [anon_sym_PIPE_PIPE] = ACTIONS(5077), - [anon_sym_else] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5077), - [anon_sym_PLUS_EQ] = ACTIONS(5077), - [anon_sym_DASH_EQ] = ACTIONS(5077), - [anon_sym_STAR_EQ] = ACTIONS(5077), - [anon_sym_SLASH_EQ] = ACTIONS(5077), - [anon_sym_PERCENT_EQ] = ACTIONS(5077), - [anon_sym_BANG_EQ] = ACTIONS(5075), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5077), - [anon_sym_EQ_EQ] = ACTIONS(5075), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5077), - [anon_sym_LT_EQ] = ACTIONS(5077), - [anon_sym_GT_EQ] = ACTIONS(5077), - [anon_sym_BANGin] = ACTIONS(5077), - [anon_sym_is] = ACTIONS(5075), - [anon_sym_BANGis] = ACTIONS(5077), - [anon_sym_PLUS] = ACTIONS(5075), - [anon_sym_DASH] = ACTIONS(5075), - [anon_sym_SLASH] = ACTIONS(5075), - [anon_sym_PERCENT] = ACTIONS(5075), - [anon_sym_as_QMARK] = ACTIONS(5077), - [anon_sym_PLUS_PLUS] = ACTIONS(5077), - [anon_sym_DASH_DASH] = ACTIONS(5077), - [anon_sym_BANG_BANG] = ACTIONS(5077), - [anon_sym_suspend] = ACTIONS(5075), - [anon_sym_sealed] = ACTIONS(5075), - [anon_sym_annotation] = ACTIONS(5075), - [anon_sym_data] = ACTIONS(5075), - [anon_sym_inner] = ACTIONS(5075), - [anon_sym_value] = ACTIONS(5075), - [anon_sym_override] = ACTIONS(5075), - [anon_sym_lateinit] = ACTIONS(5075), - [anon_sym_public] = ACTIONS(5075), - [anon_sym_private] = ACTIONS(5075), - [anon_sym_internal] = ACTIONS(5075), - [anon_sym_protected] = ACTIONS(5075), - [anon_sym_tailrec] = ACTIONS(5075), - [anon_sym_operator] = ACTIONS(5075), - [anon_sym_infix] = ACTIONS(5075), - [anon_sym_inline] = ACTIONS(5075), - [anon_sym_external] = ACTIONS(5075), - [sym_property_modifier] = ACTIONS(5075), - [anon_sym_abstract] = ACTIONS(5075), - [anon_sym_final] = ACTIONS(5075), - [anon_sym_open] = ACTIONS(5075), - [anon_sym_vararg] = ACTIONS(5075), - [anon_sym_noinline] = ACTIONS(5075), - [anon_sym_crossinline] = ACTIONS(5075), - [anon_sym_expect] = ACTIONS(5075), - [anon_sym_actual] = ACTIONS(5075), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5077), - [sym__automatic_semicolon] = ACTIONS(5077), - [sym_safe_nav] = ACTIONS(5077), - [sym_multiline_comment] = ACTIONS(3), - }, - [3892] = { - [sym__alpha_identifier] = ACTIONS(4971), - [anon_sym_AT] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_DOT] = ACTIONS(4971), - [anon_sym_as] = ACTIONS(4971), - [anon_sym_EQ] = ACTIONS(4971), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_where] = ACTIONS(4971), - [anon_sym_SEMI] = ACTIONS(4973), - [anon_sym_get] = ACTIONS(4971), - [anon_sym_set] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [sym_label] = ACTIONS(4973), - [anon_sym_in] = ACTIONS(4971), - [anon_sym_DOT_DOT] = ACTIONS(4973), - [anon_sym_QMARK_COLON] = ACTIONS(4973), - [anon_sym_AMP_AMP] = ACTIONS(4973), - [anon_sym_PIPE_PIPE] = ACTIONS(4973), - [anon_sym_else] = ACTIONS(4971), - [anon_sym_COLON_COLON] = ACTIONS(4973), - [anon_sym_PLUS_EQ] = ACTIONS(4973), - [anon_sym_DASH_EQ] = ACTIONS(4973), - [anon_sym_STAR_EQ] = ACTIONS(4973), - [anon_sym_SLASH_EQ] = ACTIONS(4973), - [anon_sym_PERCENT_EQ] = ACTIONS(4973), - [anon_sym_BANG_EQ] = ACTIONS(4971), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4973), - [anon_sym_EQ_EQ] = ACTIONS(4971), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4973), - [anon_sym_LT_EQ] = ACTIONS(4973), - [anon_sym_GT_EQ] = ACTIONS(4973), - [anon_sym_BANGin] = ACTIONS(4973), - [anon_sym_is] = ACTIONS(4971), - [anon_sym_BANGis] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_PERCENT] = ACTIONS(4971), - [anon_sym_as_QMARK] = ACTIONS(4973), - [anon_sym_PLUS_PLUS] = ACTIONS(4973), - [anon_sym_DASH_DASH] = ACTIONS(4973), - [anon_sym_BANG_BANG] = ACTIONS(4973), - [anon_sym_suspend] = ACTIONS(4971), - [anon_sym_sealed] = ACTIONS(4971), - [anon_sym_annotation] = ACTIONS(4971), - [anon_sym_data] = ACTIONS(4971), - [anon_sym_inner] = ACTIONS(4971), - [anon_sym_value] = ACTIONS(4971), - [anon_sym_override] = ACTIONS(4971), - [anon_sym_lateinit] = ACTIONS(4971), - [anon_sym_public] = ACTIONS(4971), - [anon_sym_private] = ACTIONS(4971), - [anon_sym_internal] = ACTIONS(4971), - [anon_sym_protected] = ACTIONS(4971), - [anon_sym_tailrec] = ACTIONS(4971), - [anon_sym_operator] = ACTIONS(4971), - [anon_sym_infix] = ACTIONS(4971), - [anon_sym_inline] = ACTIONS(4971), - [anon_sym_external] = ACTIONS(4971), - [sym_property_modifier] = ACTIONS(4971), - [anon_sym_abstract] = ACTIONS(4971), - [anon_sym_final] = ACTIONS(4971), - [anon_sym_open] = ACTIONS(4971), - [anon_sym_vararg] = ACTIONS(4971), - [anon_sym_noinline] = ACTIONS(4971), - [anon_sym_crossinline] = ACTIONS(4971), - [anon_sym_expect] = ACTIONS(4971), - [anon_sym_actual] = ACTIONS(4971), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4973), - [sym__automatic_semicolon] = ACTIONS(4973), - [sym_safe_nav] = ACTIONS(4973), - [sym_multiline_comment] = ACTIONS(3), - }, - [3893] = { - [sym__alpha_identifier] = ACTIONS(4975), - [anon_sym_AT] = ACTIONS(4977), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_DOT] = ACTIONS(4975), - [anon_sym_as] = ACTIONS(4975), - [anon_sym_EQ] = ACTIONS(4975), - [anon_sym_LBRACE] = ACTIONS(4977), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_COMMA] = ACTIONS(4977), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_where] = ACTIONS(4975), - [anon_sym_SEMI] = ACTIONS(4977), - [anon_sym_get] = ACTIONS(4975), - [anon_sym_set] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [sym_label] = ACTIONS(4977), - [anon_sym_in] = ACTIONS(4975), - [anon_sym_DOT_DOT] = ACTIONS(4977), - [anon_sym_QMARK_COLON] = ACTIONS(4977), - [anon_sym_AMP_AMP] = ACTIONS(4977), - [anon_sym_PIPE_PIPE] = ACTIONS(4977), - [anon_sym_else] = ACTIONS(4975), - [anon_sym_COLON_COLON] = ACTIONS(4977), - [anon_sym_PLUS_EQ] = ACTIONS(4977), - [anon_sym_DASH_EQ] = ACTIONS(4977), - [anon_sym_STAR_EQ] = ACTIONS(4977), - [anon_sym_SLASH_EQ] = ACTIONS(4977), - [anon_sym_PERCENT_EQ] = ACTIONS(4977), - [anon_sym_BANG_EQ] = ACTIONS(4975), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4977), - [anon_sym_EQ_EQ] = ACTIONS(4975), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4977), - [anon_sym_LT_EQ] = ACTIONS(4977), - [anon_sym_GT_EQ] = ACTIONS(4977), - [anon_sym_BANGin] = ACTIONS(4977), - [anon_sym_is] = ACTIONS(4975), - [anon_sym_BANGis] = ACTIONS(4977), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_PERCENT] = ACTIONS(4975), - [anon_sym_as_QMARK] = ACTIONS(4977), - [anon_sym_PLUS_PLUS] = ACTIONS(4977), - [anon_sym_DASH_DASH] = ACTIONS(4977), - [anon_sym_BANG_BANG] = ACTIONS(4977), - [anon_sym_suspend] = ACTIONS(4975), - [anon_sym_sealed] = ACTIONS(4975), - [anon_sym_annotation] = ACTIONS(4975), - [anon_sym_data] = ACTIONS(4975), - [anon_sym_inner] = ACTIONS(4975), - [anon_sym_value] = ACTIONS(4975), - [anon_sym_override] = ACTIONS(4975), - [anon_sym_lateinit] = ACTIONS(4975), - [anon_sym_public] = ACTIONS(4975), - [anon_sym_private] = ACTIONS(4975), - [anon_sym_internal] = ACTIONS(4975), - [anon_sym_protected] = ACTIONS(4975), - [anon_sym_tailrec] = ACTIONS(4975), - [anon_sym_operator] = ACTIONS(4975), - [anon_sym_infix] = ACTIONS(4975), - [anon_sym_inline] = ACTIONS(4975), - [anon_sym_external] = ACTIONS(4975), - [sym_property_modifier] = ACTIONS(4975), - [anon_sym_abstract] = ACTIONS(4975), - [anon_sym_final] = ACTIONS(4975), - [anon_sym_open] = ACTIONS(4975), - [anon_sym_vararg] = ACTIONS(4975), - [anon_sym_noinline] = ACTIONS(4975), - [anon_sym_crossinline] = ACTIONS(4975), - [anon_sym_expect] = ACTIONS(4975), - [anon_sym_actual] = ACTIONS(4975), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4977), - [sym__automatic_semicolon] = ACTIONS(4977), - [sym_safe_nav] = ACTIONS(4977), - [sym_multiline_comment] = ACTIONS(3), - }, - [3894] = { - [sym__alpha_identifier] = ACTIONS(5059), - [anon_sym_AT] = ACTIONS(5061), - [anon_sym_LBRACK] = ACTIONS(5061), - [anon_sym_DOT] = ACTIONS(5059), - [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_SEMI] = ACTIONS(5061), - [anon_sym_get] = ACTIONS(5059), - [anon_sym_set] = ACTIONS(5059), - [anon_sym_STAR] = ACTIONS(5059), - [sym_label] = ACTIONS(5061), - [anon_sym_in] = ACTIONS(5059), - [anon_sym_DOT_DOT] = ACTIONS(5061), - [anon_sym_QMARK_COLON] = ACTIONS(5061), - [anon_sym_AMP_AMP] = ACTIONS(5061), - [anon_sym_PIPE_PIPE] = ACTIONS(5061), - [anon_sym_else] = ACTIONS(5059), - [anon_sym_COLON_COLON] = ACTIONS(5061), - [anon_sym_PLUS_EQ] = ACTIONS(5061), - [anon_sym_DASH_EQ] = ACTIONS(5061), - [anon_sym_STAR_EQ] = ACTIONS(5061), - [anon_sym_SLASH_EQ] = ACTIONS(5061), - [anon_sym_PERCENT_EQ] = ACTIONS(5061), - [anon_sym_BANG_EQ] = ACTIONS(5059), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5061), - [anon_sym_EQ_EQ] = ACTIONS(5059), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5061), - [anon_sym_LT_EQ] = ACTIONS(5061), - [anon_sym_GT_EQ] = ACTIONS(5061), - [anon_sym_BANGin] = ACTIONS(5061), - [anon_sym_is] = ACTIONS(5059), - [anon_sym_BANGis] = ACTIONS(5061), - [anon_sym_PLUS] = ACTIONS(5059), - [anon_sym_DASH] = ACTIONS(5059), - [anon_sym_SLASH] = ACTIONS(5059), - [anon_sym_PERCENT] = ACTIONS(5059), - [anon_sym_as_QMARK] = ACTIONS(5061), - [anon_sym_PLUS_PLUS] = ACTIONS(5061), - [anon_sym_DASH_DASH] = ACTIONS(5061), - [anon_sym_BANG_BANG] = ACTIONS(5061), - [anon_sym_suspend] = ACTIONS(5059), - [anon_sym_sealed] = ACTIONS(5059), - [anon_sym_annotation] = ACTIONS(5059), - [anon_sym_data] = ACTIONS(5059), - [anon_sym_inner] = ACTIONS(5059), - [anon_sym_value] = ACTIONS(5059), - [anon_sym_override] = ACTIONS(5059), - [anon_sym_lateinit] = ACTIONS(5059), - [anon_sym_public] = ACTIONS(5059), - [anon_sym_private] = ACTIONS(5059), - [anon_sym_internal] = ACTIONS(5059), - [anon_sym_protected] = ACTIONS(5059), - [anon_sym_tailrec] = ACTIONS(5059), - [anon_sym_operator] = ACTIONS(5059), - [anon_sym_infix] = ACTIONS(5059), - [anon_sym_inline] = ACTIONS(5059), - [anon_sym_external] = ACTIONS(5059), - [sym_property_modifier] = ACTIONS(5059), - [anon_sym_abstract] = ACTIONS(5059), - [anon_sym_final] = ACTIONS(5059), - [anon_sym_open] = ACTIONS(5059), - [anon_sym_vararg] = ACTIONS(5059), - [anon_sym_noinline] = ACTIONS(5059), - [anon_sym_crossinline] = ACTIONS(5059), - [anon_sym_expect] = ACTIONS(5059), - [anon_sym_actual] = ACTIONS(5059), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5061), - [sym__automatic_semicolon] = ACTIONS(5061), - [sym_safe_nav] = ACTIONS(5061), + [sym__backtick_identifier] = ACTIONS(4772), + [sym__automatic_semicolon] = ACTIONS(4772), + [sym_safe_nav] = ACTIONS(4772), [sym_multiline_comment] = ACTIONS(3), }, - [3895] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4948), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [sym_label] = ACTIONS(4946), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(7129), - [anon_sym_PLUS_EQ] = ACTIONS(4953), - [anon_sym_DASH_EQ] = ACTIONS(4953), - [anon_sym_STAR_EQ] = ACTIONS(4953), - [anon_sym_SLASH_EQ] = ACTIONS(4953), - [anon_sym_PERCENT_EQ] = ACTIONS(4953), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_suspend] = ACTIONS(4944), - [anon_sym_sealed] = ACTIONS(4944), - [anon_sym_annotation] = ACTIONS(4944), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_override] = ACTIONS(4944), - [anon_sym_lateinit] = ACTIONS(4944), - [anon_sym_public] = ACTIONS(4944), - [anon_sym_private] = ACTIONS(4944), - [anon_sym_internal] = ACTIONS(4944), - [anon_sym_protected] = ACTIONS(4944), - [anon_sym_tailrec] = ACTIONS(4944), - [anon_sym_operator] = ACTIONS(4944), - [anon_sym_infix] = ACTIONS(4944), - [anon_sym_inline] = ACTIONS(4944), - [anon_sym_external] = ACTIONS(4944), - [sym_property_modifier] = ACTIONS(4944), - [anon_sym_abstract] = ACTIONS(4944), - [anon_sym_final] = ACTIONS(4944), - [anon_sym_open] = ACTIONS(4944), - [anon_sym_vararg] = ACTIONS(4944), - [anon_sym_noinline] = ACTIONS(4944), - [anon_sym_crossinline] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4946), - [sym__automatic_semicolon] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), + [3858] = { + [sym__alpha_identifier] = ACTIONS(4936), + [anon_sym_AT] = ACTIONS(4938), + [anon_sym_LBRACK] = ACTIONS(4938), + [anon_sym_DOT] = ACTIONS(4936), + [anon_sym_as] = ACTIONS(4936), + [anon_sym_EQ] = ACTIONS(4936), + [anon_sym_LBRACE] = ACTIONS(4938), + [anon_sym_RBRACE] = ACTIONS(4938), + [anon_sym_LPAREN] = ACTIONS(4938), + [anon_sym_COMMA] = ACTIONS(4938), + [anon_sym_LT] = ACTIONS(4936), + [anon_sym_GT] = ACTIONS(4936), + [anon_sym_where] = ACTIONS(4936), + [anon_sym_SEMI] = ACTIONS(4938), + [anon_sym_get] = ACTIONS(4936), + [anon_sym_set] = ACTIONS(4936), + [anon_sym_STAR] = ACTIONS(4936), + [sym_label] = ACTIONS(4938), + [anon_sym_in] = ACTIONS(4936), + [anon_sym_DOT_DOT] = ACTIONS(4938), + [anon_sym_QMARK_COLON] = ACTIONS(4938), + [anon_sym_AMP_AMP] = ACTIONS(4938), + [anon_sym_PIPE_PIPE] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_PLUS_EQ] = ACTIONS(4938), + [anon_sym_DASH_EQ] = ACTIONS(4938), + [anon_sym_STAR_EQ] = ACTIONS(4938), + [anon_sym_SLASH_EQ] = ACTIONS(4938), + [anon_sym_PERCENT_EQ] = ACTIONS(4938), + [anon_sym_BANG_EQ] = ACTIONS(4936), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4938), + [anon_sym_EQ_EQ] = ACTIONS(4936), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4938), + [anon_sym_LT_EQ] = ACTIONS(4938), + [anon_sym_GT_EQ] = ACTIONS(4938), + [anon_sym_BANGin] = ACTIONS(4938), + [anon_sym_is] = ACTIONS(4936), + [anon_sym_BANGis] = ACTIONS(4938), + [anon_sym_PLUS] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_SLASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_as_QMARK] = ACTIONS(4938), + [anon_sym_PLUS_PLUS] = ACTIONS(4938), + [anon_sym_DASH_DASH] = ACTIONS(4938), + [anon_sym_BANG_BANG] = ACTIONS(4938), + [anon_sym_suspend] = ACTIONS(4936), + [anon_sym_sealed] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4936), + [anon_sym_data] = ACTIONS(4936), + [anon_sym_inner] = ACTIONS(4936), + [anon_sym_value] = ACTIONS(4936), + [anon_sym_override] = ACTIONS(4936), + [anon_sym_lateinit] = ACTIONS(4936), + [anon_sym_public] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4936), + [anon_sym_internal] = ACTIONS(4936), + [anon_sym_protected] = ACTIONS(4936), + [anon_sym_tailrec] = ACTIONS(4936), + [anon_sym_operator] = ACTIONS(4936), + [anon_sym_infix] = ACTIONS(4936), + [anon_sym_inline] = ACTIONS(4936), + [anon_sym_external] = ACTIONS(4936), + [sym_property_modifier] = ACTIONS(4936), + [anon_sym_abstract] = ACTIONS(4936), + [anon_sym_final] = ACTIONS(4936), + [anon_sym_open] = ACTIONS(4936), + [anon_sym_vararg] = ACTIONS(4936), + [anon_sym_noinline] = ACTIONS(4936), + [anon_sym_crossinline] = ACTIONS(4936), + [anon_sym_expect] = ACTIONS(4936), + [anon_sym_actual] = ACTIONS(4936), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4938), + [sym__automatic_semicolon] = ACTIONS(4938), + [sym_safe_nav] = ACTIONS(4938), [sym_multiline_comment] = ACTIONS(3), }, - [3896] = { - [sym__alpha_identifier] = ACTIONS(1790), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_DOT] = ACTIONS(1790), - [anon_sym_as] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1790), - [anon_sym_LBRACE] = ACTIONS(1792), - [anon_sym_RBRACE] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1790), - [anon_sym_where] = ACTIONS(1790), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_get] = ACTIONS(1790), - [anon_sym_set] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [sym_label] = ACTIONS(1792), - [anon_sym_in] = ACTIONS(1790), - [anon_sym_DOT_DOT] = ACTIONS(1792), - [anon_sym_QMARK_COLON] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_else] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1792), - [anon_sym_PLUS_EQ] = ACTIONS(1792), - [anon_sym_DASH_EQ] = ACTIONS(1792), - [anon_sym_STAR_EQ] = ACTIONS(1792), - [anon_sym_SLASH_EQ] = ACTIONS(1792), - [anon_sym_PERCENT_EQ] = ACTIONS(1792), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1792), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1792), - [anon_sym_BANGin] = ACTIONS(1792), - [anon_sym_is] = ACTIONS(1790), - [anon_sym_BANGis] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_as_QMARK] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1792), - [anon_sym_DASH_DASH] = ACTIONS(1792), - [anon_sym_BANG_BANG] = ACTIONS(1792), - [anon_sym_suspend] = ACTIONS(1790), - [anon_sym_sealed] = ACTIONS(1790), - [anon_sym_annotation] = ACTIONS(1790), - [anon_sym_data] = ACTIONS(1790), - [anon_sym_inner] = ACTIONS(1790), - [anon_sym_value] = ACTIONS(1790), - [anon_sym_override] = ACTIONS(1790), - [anon_sym_lateinit] = ACTIONS(1790), - [anon_sym_public] = ACTIONS(1790), - [anon_sym_private] = ACTIONS(1790), - [anon_sym_internal] = ACTIONS(1790), - [anon_sym_protected] = ACTIONS(1790), - [anon_sym_tailrec] = ACTIONS(1790), - [anon_sym_operator] = ACTIONS(1790), - [anon_sym_infix] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_external] = ACTIONS(1790), - [sym_property_modifier] = ACTIONS(1790), - [anon_sym_abstract] = ACTIONS(1790), - [anon_sym_final] = ACTIONS(1790), - [anon_sym_open] = ACTIONS(1790), - [anon_sym_vararg] = ACTIONS(1790), - [anon_sym_noinline] = ACTIONS(1790), - [anon_sym_crossinline] = ACTIONS(1790), - [anon_sym_expect] = ACTIONS(1790), - [anon_sym_actual] = ACTIONS(1790), + [3859] = { + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(4238), + [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4238), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_PLUS_EQ] = ACTIONS(4240), + [anon_sym_DASH_EQ] = ACTIONS(4240), + [anon_sym_STAR_EQ] = ACTIONS(4240), + [anon_sym_SLASH_EQ] = ACTIONS(4240), + [anon_sym_PERCENT_EQ] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4238), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1792), - [sym__automatic_semicolon] = ACTIONS(1792), - [sym_safe_nav] = ACTIONS(1792), - [sym_multiline_comment] = ACTIONS(3), - }, - [3897] = { - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(4206), - [anon_sym_LBRACE] = ACTIONS(4208), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4206), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_PLUS_EQ] = ACTIONS(4208), - [anon_sym_DASH_EQ] = ACTIONS(4208), - [anon_sym_STAR_EQ] = ACTIONS(4208), - [anon_sym_SLASH_EQ] = ACTIONS(4208), - [anon_sym_PERCENT_EQ] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - }, - [3898] = { - [sym__alpha_identifier] = ACTIONS(4468), - [anon_sym_AT] = ACTIONS(4470), - [anon_sym_LBRACK] = ACTIONS(4470), - [anon_sym_DOT] = ACTIONS(4468), - [anon_sym_as] = ACTIONS(4468), - [anon_sym_EQ] = ACTIONS(4468), - [anon_sym_LBRACE] = ACTIONS(4470), - [anon_sym_RBRACE] = ACTIONS(4470), - [anon_sym_LPAREN] = ACTIONS(4470), - [anon_sym_COMMA] = ACTIONS(4470), - [anon_sym_LT] = ACTIONS(4468), - [anon_sym_GT] = ACTIONS(4468), - [anon_sym_where] = ACTIONS(4468), - [anon_sym_SEMI] = ACTIONS(4470), - [anon_sym_get] = ACTIONS(4468), - [anon_sym_set] = ACTIONS(4468), - [anon_sym_STAR] = ACTIONS(4468), - [sym_label] = ACTIONS(4470), - [anon_sym_in] = ACTIONS(4468), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_QMARK_COLON] = ACTIONS(4470), - [anon_sym_AMP_AMP] = ACTIONS(4470), - [anon_sym_PIPE_PIPE] = ACTIONS(4470), - [anon_sym_else] = ACTIONS(4468), - [anon_sym_COLON_COLON] = ACTIONS(4470), - [anon_sym_PLUS_EQ] = ACTIONS(4470), - [anon_sym_DASH_EQ] = ACTIONS(4470), - [anon_sym_STAR_EQ] = ACTIONS(4470), - [anon_sym_SLASH_EQ] = ACTIONS(4470), - [anon_sym_PERCENT_EQ] = ACTIONS(4470), - [anon_sym_BANG_EQ] = ACTIONS(4468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4470), - [anon_sym_EQ_EQ] = ACTIONS(4468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4470), - [anon_sym_LT_EQ] = ACTIONS(4470), - [anon_sym_GT_EQ] = ACTIONS(4470), - [anon_sym_BANGin] = ACTIONS(4470), - [anon_sym_is] = ACTIONS(4468), - [anon_sym_BANGis] = ACTIONS(4470), - [anon_sym_PLUS] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4468), - [anon_sym_SLASH] = ACTIONS(4468), - [anon_sym_PERCENT] = ACTIONS(4468), - [anon_sym_as_QMARK] = ACTIONS(4470), - [anon_sym_PLUS_PLUS] = ACTIONS(4470), - [anon_sym_DASH_DASH] = ACTIONS(4470), - [anon_sym_BANG_BANG] = ACTIONS(4470), - [anon_sym_suspend] = ACTIONS(4468), - [anon_sym_sealed] = ACTIONS(4468), - [anon_sym_annotation] = ACTIONS(4468), - [anon_sym_data] = ACTIONS(4468), - [anon_sym_inner] = ACTIONS(4468), - [anon_sym_value] = ACTIONS(4468), - [anon_sym_override] = ACTIONS(4468), - [anon_sym_lateinit] = ACTIONS(4468), - [anon_sym_public] = ACTIONS(4468), - [anon_sym_private] = ACTIONS(4468), - [anon_sym_internal] = ACTIONS(4468), - [anon_sym_protected] = ACTIONS(4468), - [anon_sym_tailrec] = ACTIONS(4468), - [anon_sym_operator] = ACTIONS(4468), - [anon_sym_infix] = ACTIONS(4468), - [anon_sym_inline] = ACTIONS(4468), - [anon_sym_external] = ACTIONS(4468), - [sym_property_modifier] = ACTIONS(4468), - [anon_sym_abstract] = ACTIONS(4468), - [anon_sym_final] = ACTIONS(4468), - [anon_sym_open] = ACTIONS(4468), - [anon_sym_vararg] = ACTIONS(4468), - [anon_sym_noinline] = ACTIONS(4468), - [anon_sym_crossinline] = ACTIONS(4468), - [anon_sym_expect] = ACTIONS(4468), - [anon_sym_actual] = ACTIONS(4468), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4470), - [sym__automatic_semicolon] = ACTIONS(4470), - [sym_safe_nav] = ACTIONS(4470), - [sym_multiline_comment] = ACTIONS(3), - }, - [3899] = { - [sym_function_body] = STATE(3889), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = 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_value] = 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), - }, - [3900] = { - [sym__alpha_identifier] = ACTIONS(5051), - [anon_sym_AT] = ACTIONS(5053), - [anon_sym_LBRACK] = ACTIONS(5053), - [anon_sym_DOT] = ACTIONS(5051), - [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_SEMI] = ACTIONS(5053), - [anon_sym_get] = ACTIONS(5051), - [anon_sym_set] = ACTIONS(5051), - [anon_sym_STAR] = ACTIONS(5051), - [sym_label] = ACTIONS(5053), - [anon_sym_in] = ACTIONS(5051), - [anon_sym_DOT_DOT] = ACTIONS(5053), - [anon_sym_QMARK_COLON] = ACTIONS(5053), - [anon_sym_AMP_AMP] = ACTIONS(5053), - [anon_sym_PIPE_PIPE] = ACTIONS(5053), - [anon_sym_else] = ACTIONS(5051), - [anon_sym_COLON_COLON] = ACTIONS(5053), - [anon_sym_PLUS_EQ] = ACTIONS(5053), - [anon_sym_DASH_EQ] = ACTIONS(5053), - [anon_sym_STAR_EQ] = ACTIONS(5053), - [anon_sym_SLASH_EQ] = ACTIONS(5053), - [anon_sym_PERCENT_EQ] = ACTIONS(5053), - [anon_sym_BANG_EQ] = ACTIONS(5051), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5053), - [anon_sym_EQ_EQ] = ACTIONS(5051), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5053), - [anon_sym_LT_EQ] = ACTIONS(5053), - [anon_sym_GT_EQ] = ACTIONS(5053), - [anon_sym_BANGin] = ACTIONS(5053), - [anon_sym_is] = ACTIONS(5051), - [anon_sym_BANGis] = ACTIONS(5053), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5051), - [anon_sym_PERCENT] = ACTIONS(5051), - [anon_sym_as_QMARK] = ACTIONS(5053), - [anon_sym_PLUS_PLUS] = ACTIONS(5053), - [anon_sym_DASH_DASH] = ACTIONS(5053), - [anon_sym_BANG_BANG] = ACTIONS(5053), - [anon_sym_suspend] = ACTIONS(5051), - [anon_sym_sealed] = ACTIONS(5051), - [anon_sym_annotation] = ACTIONS(5051), - [anon_sym_data] = ACTIONS(5051), - [anon_sym_inner] = ACTIONS(5051), - [anon_sym_value] = ACTIONS(5051), - [anon_sym_override] = ACTIONS(5051), - [anon_sym_lateinit] = ACTIONS(5051), - [anon_sym_public] = ACTIONS(5051), - [anon_sym_private] = ACTIONS(5051), - [anon_sym_internal] = ACTIONS(5051), - [anon_sym_protected] = ACTIONS(5051), - [anon_sym_tailrec] = ACTIONS(5051), - [anon_sym_operator] = ACTIONS(5051), - [anon_sym_infix] = ACTIONS(5051), - [anon_sym_inline] = ACTIONS(5051), - [anon_sym_external] = ACTIONS(5051), - [sym_property_modifier] = ACTIONS(5051), - [anon_sym_abstract] = ACTIONS(5051), - [anon_sym_final] = ACTIONS(5051), - [anon_sym_open] = ACTIONS(5051), - [anon_sym_vararg] = ACTIONS(5051), - [anon_sym_noinline] = ACTIONS(5051), - [anon_sym_crossinline] = ACTIONS(5051), - [anon_sym_expect] = ACTIONS(5051), - [anon_sym_actual] = ACTIONS(5051), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5053), - [sym__automatic_semicolon] = ACTIONS(5053), - [sym_safe_nav] = ACTIONS(5053), - [sym_multiline_comment] = ACTIONS(3), - }, - [3901] = { - [sym__alpha_identifier] = ACTIONS(5047), - [anon_sym_AT] = ACTIONS(5049), - [anon_sym_LBRACK] = ACTIONS(5049), - [anon_sym_DOT] = ACTIONS(5047), - [anon_sym_as] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5049), - [anon_sym_RBRACE] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5049), - [anon_sym_COMMA] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5047), - [anon_sym_GT] = ACTIONS(5047), - [anon_sym_where] = ACTIONS(5047), - [anon_sym_SEMI] = ACTIONS(5049), - [anon_sym_get] = ACTIONS(5047), - [anon_sym_set] = ACTIONS(5047), - [anon_sym_STAR] = ACTIONS(5047), - [sym_label] = ACTIONS(5049), - [anon_sym_in] = ACTIONS(5047), - [anon_sym_DOT_DOT] = ACTIONS(5049), - [anon_sym_QMARK_COLON] = ACTIONS(5049), - [anon_sym_AMP_AMP] = ACTIONS(5049), - [anon_sym_PIPE_PIPE] = ACTIONS(5049), - [anon_sym_else] = ACTIONS(5047), - [anon_sym_COLON_COLON] = ACTIONS(5049), - [anon_sym_PLUS_EQ] = ACTIONS(5049), - [anon_sym_DASH_EQ] = ACTIONS(5049), - [anon_sym_STAR_EQ] = ACTIONS(5049), - [anon_sym_SLASH_EQ] = ACTIONS(5049), - [anon_sym_PERCENT_EQ] = ACTIONS(5049), - [anon_sym_BANG_EQ] = ACTIONS(5047), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5049), - [anon_sym_EQ_EQ] = ACTIONS(5047), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5049), - [anon_sym_LT_EQ] = ACTIONS(5049), - [anon_sym_GT_EQ] = ACTIONS(5049), - [anon_sym_BANGin] = ACTIONS(5049), - [anon_sym_is] = ACTIONS(5047), - [anon_sym_BANGis] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5047), - [anon_sym_DASH] = ACTIONS(5047), - [anon_sym_SLASH] = ACTIONS(5047), - [anon_sym_PERCENT] = ACTIONS(5047), - [anon_sym_as_QMARK] = ACTIONS(5049), - [anon_sym_PLUS_PLUS] = ACTIONS(5049), - [anon_sym_DASH_DASH] = ACTIONS(5049), - [anon_sym_BANG_BANG] = ACTIONS(5049), - [anon_sym_suspend] = ACTIONS(5047), - [anon_sym_sealed] = ACTIONS(5047), - [anon_sym_annotation] = ACTIONS(5047), - [anon_sym_data] = ACTIONS(5047), - [anon_sym_inner] = ACTIONS(5047), - [anon_sym_value] = ACTIONS(5047), - [anon_sym_override] = ACTIONS(5047), - [anon_sym_lateinit] = ACTIONS(5047), - [anon_sym_public] = ACTIONS(5047), - [anon_sym_private] = ACTIONS(5047), - [anon_sym_internal] = ACTIONS(5047), - [anon_sym_protected] = ACTIONS(5047), - [anon_sym_tailrec] = ACTIONS(5047), - [anon_sym_operator] = ACTIONS(5047), - [anon_sym_infix] = ACTIONS(5047), - [anon_sym_inline] = ACTIONS(5047), - [anon_sym_external] = ACTIONS(5047), - [sym_property_modifier] = ACTIONS(5047), - [anon_sym_abstract] = ACTIONS(5047), - [anon_sym_final] = ACTIONS(5047), - [anon_sym_open] = ACTIONS(5047), - [anon_sym_vararg] = ACTIONS(5047), - [anon_sym_noinline] = ACTIONS(5047), - [anon_sym_crossinline] = ACTIONS(5047), - [anon_sym_expect] = ACTIONS(5047), - [anon_sym_actual] = ACTIONS(5047), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5049), - [sym__automatic_semicolon] = ACTIONS(5049), - [sym_safe_nav] = ACTIONS(5049), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), }, - [3902] = { - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(4175), - [anon_sym_LBRACE] = ACTIONS(4177), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [3860] = { + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_RBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_DASH_GT] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, - [3903] = { - [sym_function_body] = STATE(3093), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4454), - [anon_sym_super_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), - }, - [3904] = { - [sym__alpha_identifier] = ACTIONS(4916), - [anon_sym_AT] = ACTIONS(4918), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_as] = ACTIONS(4916), - [anon_sym_EQ] = ACTIONS(4916), - [anon_sym_LBRACE] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_COMMA] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_where] = ACTIONS(4916), - [anon_sym_SEMI] = ACTIONS(4918), - [anon_sym_get] = ACTIONS(4916), - [anon_sym_set] = ACTIONS(4916), - [anon_sym_STAR] = ACTIONS(4916), - [sym_label] = ACTIONS(4918), - [anon_sym_in] = ACTIONS(4916), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_QMARK_COLON] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_else] = ACTIONS(4916), - [anon_sym_COLON_COLON] = ACTIONS(4918), - [anon_sym_PLUS_EQ] = ACTIONS(4918), - [anon_sym_DASH_EQ] = ACTIONS(4918), - [anon_sym_STAR_EQ] = ACTIONS(4918), - [anon_sym_SLASH_EQ] = ACTIONS(4918), - [anon_sym_PERCENT_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4916), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4916), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), - [anon_sym_LT_EQ] = ACTIONS(4918), - [anon_sym_GT_EQ] = ACTIONS(4918), - [anon_sym_BANGin] = ACTIONS(4918), - [anon_sym_is] = ACTIONS(4916), - [anon_sym_BANGis] = ACTIONS(4918), - [anon_sym_PLUS] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(4916), - [anon_sym_SLASH] = ACTIONS(4916), - [anon_sym_PERCENT] = ACTIONS(4916), - [anon_sym_as_QMARK] = ACTIONS(4918), - [anon_sym_PLUS_PLUS] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(4918), - [anon_sym_BANG_BANG] = ACTIONS(4918), - [anon_sym_suspend] = ACTIONS(4916), - [anon_sym_sealed] = ACTIONS(4916), - [anon_sym_annotation] = ACTIONS(4916), - [anon_sym_data] = ACTIONS(4916), - [anon_sym_inner] = ACTIONS(4916), - [anon_sym_value] = ACTIONS(4916), - [anon_sym_override] = ACTIONS(4916), - [anon_sym_lateinit] = ACTIONS(4916), - [anon_sym_public] = ACTIONS(4916), - [anon_sym_private] = ACTIONS(4916), - [anon_sym_internal] = ACTIONS(4916), - [anon_sym_protected] = ACTIONS(4916), - [anon_sym_tailrec] = ACTIONS(4916), - [anon_sym_operator] = ACTIONS(4916), - [anon_sym_infix] = ACTIONS(4916), - [anon_sym_inline] = ACTIONS(4916), - [anon_sym_external] = ACTIONS(4916), - [sym_property_modifier] = ACTIONS(4916), - [anon_sym_abstract] = ACTIONS(4916), - [anon_sym_final] = ACTIONS(4916), - [anon_sym_open] = ACTIONS(4916), - [anon_sym_vararg] = ACTIONS(4916), - [anon_sym_noinline] = ACTIONS(4916), - [anon_sym_crossinline] = ACTIONS(4916), - [anon_sym_expect] = ACTIONS(4916), - [anon_sym_actual] = ACTIONS(4916), + [3861] = { + [sym__alpha_identifier] = ACTIONS(5113), + [anon_sym_AT] = ACTIONS(5115), + [anon_sym_LBRACK] = ACTIONS(5115), + [anon_sym_DOT] = ACTIONS(5113), + [anon_sym_as] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5115), + [anon_sym_RBRACE] = ACTIONS(5115), + [anon_sym_LPAREN] = ACTIONS(5115), + [anon_sym_COMMA] = ACTIONS(5115), + [anon_sym_LT] = ACTIONS(5113), + [anon_sym_GT] = ACTIONS(5113), + [anon_sym_where] = ACTIONS(5113), + [anon_sym_SEMI] = ACTIONS(5115), + [anon_sym_get] = ACTIONS(5113), + [anon_sym_set] = ACTIONS(5113), + [anon_sym_STAR] = ACTIONS(5113), + [sym_label] = ACTIONS(5115), + [anon_sym_in] = ACTIONS(5113), + [anon_sym_DOT_DOT] = ACTIONS(5115), + [anon_sym_QMARK_COLON] = ACTIONS(5115), + [anon_sym_AMP_AMP] = ACTIONS(5115), + [anon_sym_PIPE_PIPE] = ACTIONS(5115), + [anon_sym_else] = ACTIONS(5113), + [anon_sym_COLON_COLON] = ACTIONS(5115), + [anon_sym_PLUS_EQ] = ACTIONS(5115), + [anon_sym_DASH_EQ] = ACTIONS(5115), + [anon_sym_STAR_EQ] = ACTIONS(5115), + [anon_sym_SLASH_EQ] = ACTIONS(5115), + [anon_sym_PERCENT_EQ] = ACTIONS(5115), + [anon_sym_BANG_EQ] = ACTIONS(5113), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5115), + [anon_sym_EQ_EQ] = ACTIONS(5113), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5115), + [anon_sym_LT_EQ] = ACTIONS(5115), + [anon_sym_GT_EQ] = ACTIONS(5115), + [anon_sym_BANGin] = ACTIONS(5115), + [anon_sym_is] = ACTIONS(5113), + [anon_sym_BANGis] = ACTIONS(5115), + [anon_sym_PLUS] = ACTIONS(5113), + [anon_sym_DASH] = ACTIONS(5113), + [anon_sym_SLASH] = ACTIONS(5113), + [anon_sym_PERCENT] = ACTIONS(5113), + [anon_sym_as_QMARK] = ACTIONS(5115), + [anon_sym_PLUS_PLUS] = ACTIONS(5115), + [anon_sym_DASH_DASH] = ACTIONS(5115), + [anon_sym_BANG_BANG] = ACTIONS(5115), + [anon_sym_suspend] = ACTIONS(5113), + [anon_sym_sealed] = ACTIONS(5113), + [anon_sym_annotation] = ACTIONS(5113), + [anon_sym_data] = ACTIONS(5113), + [anon_sym_inner] = ACTIONS(5113), + [anon_sym_value] = ACTIONS(5113), + [anon_sym_override] = ACTIONS(5113), + [anon_sym_lateinit] = ACTIONS(5113), + [anon_sym_public] = ACTIONS(5113), + [anon_sym_private] = ACTIONS(5113), + [anon_sym_internal] = ACTIONS(5113), + [anon_sym_protected] = ACTIONS(5113), + [anon_sym_tailrec] = ACTIONS(5113), + [anon_sym_operator] = ACTIONS(5113), + [anon_sym_infix] = ACTIONS(5113), + [anon_sym_inline] = ACTIONS(5113), + [anon_sym_external] = ACTIONS(5113), + [sym_property_modifier] = ACTIONS(5113), + [anon_sym_abstract] = ACTIONS(5113), + [anon_sym_final] = ACTIONS(5113), + [anon_sym_open] = ACTIONS(5113), + [anon_sym_vararg] = ACTIONS(5113), + [anon_sym_noinline] = ACTIONS(5113), + [anon_sym_crossinline] = ACTIONS(5113), + [anon_sym_expect] = ACTIONS(5113), + [anon_sym_actual] = ACTIONS(5113), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4918), - [sym__automatic_semicolon] = ACTIONS(4918), - [sym_safe_nav] = ACTIONS(4918), - [sym_multiline_comment] = ACTIONS(3), - }, - [3905] = { - [sym__alpha_identifier] = ACTIONS(3986), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(3986), - [anon_sym_set] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [sym_label] = ACTIONS(3988), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3988), - [anon_sym_QMARK_COLON] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_PIPE_PIPE] = ACTIONS(3988), - [anon_sym_else] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_PLUS_EQ] = ACTIONS(3988), - [anon_sym_DASH_EQ] = ACTIONS(3988), - [anon_sym_STAR_EQ] = ACTIONS(3988), - [anon_sym_SLASH_EQ] = ACTIONS(3988), - [anon_sym_PERCENT_EQ] = ACTIONS(3988), - [anon_sym_BANG_EQ] = ACTIONS(3986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3988), - [anon_sym_EQ_EQ] = ACTIONS(3986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3988), - [anon_sym_LT_EQ] = ACTIONS(3988), - [anon_sym_GT_EQ] = ACTIONS(3988), - [anon_sym_BANGin] = ACTIONS(3988), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_BANGis] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_suspend] = ACTIONS(3986), - [anon_sym_sealed] = ACTIONS(3986), - [anon_sym_annotation] = ACTIONS(3986), - [anon_sym_data] = ACTIONS(3986), - [anon_sym_inner] = ACTIONS(3986), - [anon_sym_value] = ACTIONS(3986), - [anon_sym_override] = ACTIONS(3986), - [anon_sym_lateinit] = ACTIONS(3986), - [anon_sym_public] = ACTIONS(3986), - [anon_sym_private] = ACTIONS(3986), - [anon_sym_internal] = ACTIONS(3986), - [anon_sym_protected] = ACTIONS(3986), - [anon_sym_tailrec] = ACTIONS(3986), - [anon_sym_operator] = ACTIONS(3986), - [anon_sym_infix] = ACTIONS(3986), - [anon_sym_inline] = ACTIONS(3986), - [anon_sym_external] = ACTIONS(3986), - [sym_property_modifier] = ACTIONS(3986), - [anon_sym_abstract] = ACTIONS(3986), - [anon_sym_final] = ACTIONS(3986), - [anon_sym_open] = ACTIONS(3986), - [anon_sym_vararg] = ACTIONS(3986), - [anon_sym_noinline] = ACTIONS(3986), - [anon_sym_crossinline] = ACTIONS(3986), - [anon_sym_expect] = ACTIONS(3986), - [anon_sym_actual] = ACTIONS(3986), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3988), - [sym__automatic_semicolon] = ACTIONS(3988), - [sym_safe_nav] = ACTIONS(3988), + [sym__backtick_identifier] = ACTIONS(5115), + [sym__automatic_semicolon] = ACTIONS(5115), + [sym_safe_nav] = ACTIONS(5115), [sym_multiline_comment] = ACTIONS(3), }, - [3906] = { - [sym__alpha_identifier] = ACTIONS(5193), - [anon_sym_AT] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_typealias] = ACTIONS(5193), - [anon_sym_class] = ACTIONS(5193), - [anon_sym_interface] = ACTIONS(5193), - [anon_sym_enum] = ACTIONS(5193), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_val] = ACTIONS(5193), - [anon_sym_var] = ACTIONS(5193), - [anon_sym_object] = ACTIONS(5193), - [anon_sym_fun] = ACTIONS(5193), - [anon_sym_get] = ACTIONS(5193), - [anon_sym_set] = ACTIONS(5193), - [anon_sym_this] = ACTIONS(5193), - [anon_sym_super] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5195), - [sym_label] = ACTIONS(5193), - [anon_sym_for] = ACTIONS(5193), - [anon_sym_while] = ACTIONS(5193), - [anon_sym_do] = ACTIONS(5193), - [anon_sym_null] = ACTIONS(5193), - [anon_sym_if] = ACTIONS(5193), - [anon_sym_when] = ACTIONS(5193), - [anon_sym_try] = ACTIONS(5193), - [anon_sym_throw] = ACTIONS(5193), - [anon_sym_return] = ACTIONS(5193), - [anon_sym_continue] = ACTIONS(5193), - [anon_sym_break] = ACTIONS(5193), - [anon_sym_COLON_COLON] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_PLUS_PLUS] = ACTIONS(5195), - [anon_sym_DASH_DASH] = ACTIONS(5195), - [anon_sym_BANG] = ACTIONS(5195), - [anon_sym_suspend] = ACTIONS(5193), - [anon_sym_sealed] = ACTIONS(5193), - [anon_sym_annotation] = ACTIONS(5193), - [anon_sym_data] = ACTIONS(5193), - [anon_sym_inner] = ACTIONS(5193), - [anon_sym_value] = ACTIONS(5193), - [anon_sym_override] = ACTIONS(5193), - [anon_sym_lateinit] = ACTIONS(5193), - [anon_sym_public] = ACTIONS(5193), - [anon_sym_private] = ACTIONS(5193), - [anon_sym_internal] = ACTIONS(5193), - [anon_sym_protected] = ACTIONS(5193), - [anon_sym_tailrec] = ACTIONS(5193), - [anon_sym_operator] = ACTIONS(5193), - [anon_sym_infix] = ACTIONS(5193), - [anon_sym_inline] = ACTIONS(5193), - [anon_sym_external] = ACTIONS(5193), - [sym_property_modifier] = ACTIONS(5193), - [anon_sym_abstract] = ACTIONS(5193), - [anon_sym_final] = ACTIONS(5193), - [anon_sym_open] = ACTIONS(5193), - [anon_sym_vararg] = ACTIONS(5193), - [anon_sym_noinline] = ACTIONS(5193), - [anon_sym_crossinline] = ACTIONS(5193), - [anon_sym_expect] = ACTIONS(5193), - [anon_sym_actual] = ACTIONS(5193), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5195), - [anon_sym_continue_AT] = ACTIONS(5195), - [anon_sym_break_AT] = ACTIONS(5195), - [anon_sym_this_AT] = ACTIONS(5195), - [anon_sym_super_AT] = ACTIONS(5195), - [sym_real_literal] = ACTIONS(5195), - [sym_integer_literal] = ACTIONS(5193), - [sym_hex_literal] = ACTIONS(5195), - [sym_bin_literal] = ACTIONS(5195), - [anon_sym_true] = ACTIONS(5193), - [anon_sym_false] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5195), - [sym__backtick_identifier] = ACTIONS(5195), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5195), - }, - [3907] = { - [sym__alpha_identifier] = ACTIONS(5071), - [anon_sym_AT] = ACTIONS(5073), - [anon_sym_LBRACK] = ACTIONS(5073), - [anon_sym_DOT] = ACTIONS(5071), - [anon_sym_as] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5073), - [anon_sym_RBRACE] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5073), - [anon_sym_COMMA] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5071), - [anon_sym_GT] = ACTIONS(5071), - [anon_sym_where] = ACTIONS(5071), - [anon_sym_SEMI] = ACTIONS(5073), - [anon_sym_get] = ACTIONS(5071), - [anon_sym_set] = ACTIONS(5071), - [anon_sym_STAR] = ACTIONS(5071), - [sym_label] = ACTIONS(5073), - [anon_sym_in] = ACTIONS(5071), - [anon_sym_DOT_DOT] = ACTIONS(5073), - [anon_sym_QMARK_COLON] = ACTIONS(5073), - [anon_sym_AMP_AMP] = ACTIONS(5073), - [anon_sym_PIPE_PIPE] = ACTIONS(5073), - [anon_sym_else] = ACTIONS(5071), - [anon_sym_COLON_COLON] = ACTIONS(5073), - [anon_sym_PLUS_EQ] = ACTIONS(5073), - [anon_sym_DASH_EQ] = ACTIONS(5073), - [anon_sym_STAR_EQ] = ACTIONS(5073), - [anon_sym_SLASH_EQ] = ACTIONS(5073), - [anon_sym_PERCENT_EQ] = ACTIONS(5073), - [anon_sym_BANG_EQ] = ACTIONS(5071), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5073), - [anon_sym_EQ_EQ] = ACTIONS(5071), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5073), - [anon_sym_LT_EQ] = ACTIONS(5073), - [anon_sym_GT_EQ] = ACTIONS(5073), - [anon_sym_BANGin] = ACTIONS(5073), - [anon_sym_is] = ACTIONS(5071), - [anon_sym_BANGis] = ACTIONS(5073), - [anon_sym_PLUS] = ACTIONS(5071), - [anon_sym_DASH] = ACTIONS(5071), - [anon_sym_SLASH] = ACTIONS(5071), - [anon_sym_PERCENT] = ACTIONS(5071), - [anon_sym_as_QMARK] = ACTIONS(5073), - [anon_sym_PLUS_PLUS] = ACTIONS(5073), - [anon_sym_DASH_DASH] = ACTIONS(5073), - [anon_sym_BANG_BANG] = ACTIONS(5073), - [anon_sym_suspend] = ACTIONS(5071), - [anon_sym_sealed] = ACTIONS(5071), - [anon_sym_annotation] = ACTIONS(5071), - [anon_sym_data] = ACTIONS(5071), - [anon_sym_inner] = ACTIONS(5071), - [anon_sym_value] = ACTIONS(5071), - [anon_sym_override] = ACTIONS(5071), - [anon_sym_lateinit] = ACTIONS(5071), - [anon_sym_public] = ACTIONS(5071), - [anon_sym_private] = ACTIONS(5071), - [anon_sym_internal] = ACTIONS(5071), - [anon_sym_protected] = ACTIONS(5071), - [anon_sym_tailrec] = ACTIONS(5071), - [anon_sym_operator] = ACTIONS(5071), - [anon_sym_infix] = ACTIONS(5071), - [anon_sym_inline] = ACTIONS(5071), - [anon_sym_external] = ACTIONS(5071), - [sym_property_modifier] = ACTIONS(5071), - [anon_sym_abstract] = ACTIONS(5071), - [anon_sym_final] = ACTIONS(5071), - [anon_sym_open] = ACTIONS(5071), - [anon_sym_vararg] = ACTIONS(5071), - [anon_sym_noinline] = ACTIONS(5071), - [anon_sym_crossinline] = ACTIONS(5071), - [anon_sym_expect] = ACTIONS(5071), - [anon_sym_actual] = ACTIONS(5071), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5073), - [sym__automatic_semicolon] = ACTIONS(5073), - [sym_safe_nav] = ACTIONS(5073), + [3862] = { + [sym__alpha_identifier] = ACTIONS(4359), + [anon_sym_AT] = ACTIONS(4361), + [anon_sym_LBRACK] = ACTIONS(4361), + [anon_sym_DOT] = ACTIONS(4359), + [anon_sym_as] = ACTIONS(4359), + [anon_sym_EQ] = ACTIONS(4359), + [anon_sym_LBRACE] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(4361), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_COMMA] = ACTIONS(4361), + [anon_sym_LT] = ACTIONS(4359), + [anon_sym_GT] = ACTIONS(4359), + [anon_sym_where] = ACTIONS(4359), + [anon_sym_SEMI] = ACTIONS(4361), + [anon_sym_get] = ACTIONS(4359), + [anon_sym_set] = ACTIONS(4359), + [anon_sym_STAR] = ACTIONS(4359), + [sym_label] = ACTIONS(4361), + [anon_sym_in] = ACTIONS(4359), + [anon_sym_DOT_DOT] = ACTIONS(4361), + [anon_sym_QMARK_COLON] = ACTIONS(4361), + [anon_sym_AMP_AMP] = ACTIONS(4361), + [anon_sym_PIPE_PIPE] = ACTIONS(4361), + [anon_sym_else] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_PLUS_EQ] = ACTIONS(4361), + [anon_sym_DASH_EQ] = ACTIONS(4361), + [anon_sym_STAR_EQ] = ACTIONS(4361), + [anon_sym_SLASH_EQ] = ACTIONS(4361), + [anon_sym_PERCENT_EQ] = ACTIONS(4361), + [anon_sym_BANG_EQ] = ACTIONS(4359), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4361), + [anon_sym_EQ_EQ] = ACTIONS(4359), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4361), + [anon_sym_LT_EQ] = ACTIONS(4361), + [anon_sym_GT_EQ] = ACTIONS(4361), + [anon_sym_BANGin] = ACTIONS(4361), + [anon_sym_is] = ACTIONS(4359), + [anon_sym_BANGis] = ACTIONS(4361), + [anon_sym_PLUS] = ACTIONS(4359), + [anon_sym_DASH] = ACTIONS(4359), + [anon_sym_SLASH] = ACTIONS(4359), + [anon_sym_PERCENT] = ACTIONS(4359), + [anon_sym_as_QMARK] = ACTIONS(4361), + [anon_sym_PLUS_PLUS] = ACTIONS(4361), + [anon_sym_DASH_DASH] = ACTIONS(4361), + [anon_sym_BANG_BANG] = ACTIONS(4361), + [anon_sym_suspend] = ACTIONS(4359), + [anon_sym_sealed] = ACTIONS(4359), + [anon_sym_annotation] = ACTIONS(4359), + [anon_sym_data] = ACTIONS(4359), + [anon_sym_inner] = ACTIONS(4359), + [anon_sym_value] = ACTIONS(4359), + [anon_sym_override] = ACTIONS(4359), + [anon_sym_lateinit] = ACTIONS(4359), + [anon_sym_public] = ACTIONS(4359), + [anon_sym_private] = ACTIONS(4359), + [anon_sym_internal] = ACTIONS(4359), + [anon_sym_protected] = ACTIONS(4359), + [anon_sym_tailrec] = ACTIONS(4359), + [anon_sym_operator] = ACTIONS(4359), + [anon_sym_infix] = ACTIONS(4359), + [anon_sym_inline] = ACTIONS(4359), + [anon_sym_external] = ACTIONS(4359), + [sym_property_modifier] = ACTIONS(4359), + [anon_sym_abstract] = ACTIONS(4359), + [anon_sym_final] = ACTIONS(4359), + [anon_sym_open] = ACTIONS(4359), + [anon_sym_vararg] = ACTIONS(4359), + [anon_sym_noinline] = ACTIONS(4359), + [anon_sym_crossinline] = ACTIONS(4359), + [anon_sym_expect] = ACTIONS(4359), + [anon_sym_actual] = ACTIONS(4359), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4361), + [sym__automatic_semicolon] = ACTIONS(4361), + [sym_safe_nav] = ACTIONS(4361), [sym_multiline_comment] = ACTIONS(3), }, - [3908] = { - [sym_function_body] = STATE(3104), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_object] = ACTIONS(4264), - [anon_sym_fun] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_this] = ACTIONS(4264), - [anon_sym_super] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4264), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_try] = ACTIONS(4264), - [anon_sym_throw] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4266), - [anon_sym_continue_AT] = ACTIONS(4266), - [anon_sym_break_AT] = ACTIONS(4266), - [anon_sym_this_AT] = ACTIONS(4266), - [anon_sym_super_AT] = ACTIONS(4266), - [sym_real_literal] = ACTIONS(4266), - [sym_integer_literal] = ACTIONS(4264), - [sym_hex_literal] = ACTIONS(4266), - [sym_bin_literal] = ACTIONS(4266), - [anon_sym_true] = ACTIONS(4264), - [anon_sym_false] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4266), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [3863] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(4992), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(7078), + [anon_sym_PLUS_EQ] = ACTIONS(4994), + [anon_sym_DASH_EQ] = ACTIONS(4994), + [anon_sym_STAR_EQ] = ACTIONS(4994), + [anon_sym_SLASH_EQ] = ACTIONS(4994), + [anon_sym_PERCENT_EQ] = ACTIONS(4994), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_suspend] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_annotation] = ACTIONS(4992), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_lateinit] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_tailrec] = ACTIONS(4992), + [anon_sym_operator] = ACTIONS(4992), + [anon_sym_infix] = ACTIONS(4992), + [anon_sym_inline] = ACTIONS(4992), + [anon_sym_external] = ACTIONS(4992), + [sym_property_modifier] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_final] = ACTIONS(4992), + [anon_sym_open] = ACTIONS(4992), + [anon_sym_vararg] = ACTIONS(4992), + [anon_sym_noinline] = ACTIONS(4992), + [anon_sym_crossinline] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4994), + [sym__automatic_semicolon] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4266), }, - [3909] = { - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_EQ] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3294), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_PLUS_EQ] = ACTIONS(3298), - [anon_sym_DASH_EQ] = ACTIONS(3298), - [anon_sym_STAR_EQ] = ACTIONS(3298), - [anon_sym_SLASH_EQ] = ACTIONS(3298), - [anon_sym_PERCENT_EQ] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3294), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [3864] = { + [sym__alpha_identifier] = ACTIONS(123), + [anon_sym_AT] = ACTIONS(121), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_DOT] = ACTIONS(123), + [anon_sym_as] = ACTIONS(123), + [anon_sym_EQ] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_LT] = ACTIONS(123), + [anon_sym_GT] = ACTIONS(123), + [anon_sym_where] = ACTIONS(123), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_get] = ACTIONS(123), + [anon_sym_set] = ACTIONS(123), + [anon_sym_STAR] = ACTIONS(123), + [sym_label] = ACTIONS(121), + [anon_sym_in] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(121), + [anon_sym_QMARK_COLON] = ACTIONS(121), + [anon_sym_AMP_AMP] = ACTIONS(121), + [anon_sym_PIPE_PIPE] = ACTIONS(121), + [anon_sym_else] = ACTIONS(123), + [anon_sym_COLON_COLON] = ACTIONS(121), + [anon_sym_PLUS_EQ] = ACTIONS(121), + [anon_sym_DASH_EQ] = ACTIONS(121), + [anon_sym_STAR_EQ] = ACTIONS(121), + [anon_sym_SLASH_EQ] = ACTIONS(121), + [anon_sym_PERCENT_EQ] = ACTIONS(121), + [anon_sym_BANG_EQ] = ACTIONS(123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(121), + [anon_sym_EQ_EQ] = ACTIONS(123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(121), + [anon_sym_LT_EQ] = ACTIONS(121), + [anon_sym_GT_EQ] = ACTIONS(121), + [anon_sym_BANGin] = ACTIONS(121), + [anon_sym_is] = ACTIONS(123), + [anon_sym_BANGis] = ACTIONS(121), + [anon_sym_PLUS] = ACTIONS(123), + [anon_sym_DASH] = ACTIONS(123), + [anon_sym_SLASH] = ACTIONS(123), + [anon_sym_PERCENT] = ACTIONS(123), + [anon_sym_as_QMARK] = ACTIONS(121), + [anon_sym_PLUS_PLUS] = ACTIONS(121), + [anon_sym_DASH_DASH] = ACTIONS(121), + [anon_sym_BANG_BANG] = ACTIONS(121), + [anon_sym_suspend] = ACTIONS(123), + [anon_sym_sealed] = ACTIONS(123), + [anon_sym_annotation] = ACTIONS(123), + [anon_sym_data] = ACTIONS(123), + [anon_sym_inner] = ACTIONS(123), + [anon_sym_value] = ACTIONS(123), + [anon_sym_override] = ACTIONS(123), + [anon_sym_lateinit] = ACTIONS(123), + [anon_sym_public] = ACTIONS(123), + [anon_sym_private] = ACTIONS(123), + [anon_sym_internal] = ACTIONS(123), + [anon_sym_protected] = ACTIONS(123), + [anon_sym_tailrec] = ACTIONS(123), + [anon_sym_operator] = ACTIONS(123), + [anon_sym_infix] = ACTIONS(123), + [anon_sym_inline] = ACTIONS(123), + [anon_sym_external] = ACTIONS(123), + [sym_property_modifier] = ACTIONS(123), + [anon_sym_abstract] = ACTIONS(123), + [anon_sym_final] = ACTIONS(123), + [anon_sym_open] = ACTIONS(123), + [anon_sym_vararg] = ACTIONS(123), + [anon_sym_noinline] = ACTIONS(123), + [anon_sym_crossinline] = ACTIONS(123), + [anon_sym_expect] = ACTIONS(123), + [anon_sym_actual] = ACTIONS(123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(121), + [sym__automatic_semicolon] = ACTIONS(121), + [sym_safe_nav] = ACTIONS(121), [sym_multiline_comment] = ACTIONS(3), }, - [3910] = { - [sym__alpha_identifier] = ACTIONS(5035), - [anon_sym_AT] = ACTIONS(5037), - [anon_sym_LBRACK] = ACTIONS(5037), - [anon_sym_DOT] = ACTIONS(5035), - [anon_sym_as] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5037), - [anon_sym_RBRACE] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5037), - [anon_sym_COMMA] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5035), - [anon_sym_GT] = ACTIONS(5035), - [anon_sym_where] = ACTIONS(5035), - [anon_sym_SEMI] = ACTIONS(5037), - [anon_sym_get] = ACTIONS(5035), - [anon_sym_set] = ACTIONS(5035), - [anon_sym_STAR] = ACTIONS(5035), - [sym_label] = ACTIONS(5037), - [anon_sym_in] = ACTIONS(5035), - [anon_sym_DOT_DOT] = ACTIONS(5037), - [anon_sym_QMARK_COLON] = ACTIONS(5037), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE_PIPE] = ACTIONS(5037), - [anon_sym_else] = ACTIONS(5035), - [anon_sym_COLON_COLON] = ACTIONS(5037), - [anon_sym_PLUS_EQ] = ACTIONS(5037), - [anon_sym_DASH_EQ] = ACTIONS(5037), - [anon_sym_STAR_EQ] = ACTIONS(5037), - [anon_sym_SLASH_EQ] = ACTIONS(5037), - [anon_sym_PERCENT_EQ] = ACTIONS(5037), - [anon_sym_BANG_EQ] = ACTIONS(5035), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5037), - [anon_sym_EQ_EQ] = ACTIONS(5035), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5037), - [anon_sym_LT_EQ] = ACTIONS(5037), - [anon_sym_GT_EQ] = ACTIONS(5037), - [anon_sym_BANGin] = ACTIONS(5037), - [anon_sym_is] = ACTIONS(5035), - [anon_sym_BANGis] = ACTIONS(5037), - [anon_sym_PLUS] = ACTIONS(5035), - [anon_sym_DASH] = ACTIONS(5035), - [anon_sym_SLASH] = ACTIONS(5035), - [anon_sym_PERCENT] = ACTIONS(5035), - [anon_sym_as_QMARK] = ACTIONS(5037), - [anon_sym_PLUS_PLUS] = ACTIONS(5037), - [anon_sym_DASH_DASH] = ACTIONS(5037), - [anon_sym_BANG_BANG] = ACTIONS(5037), - [anon_sym_suspend] = ACTIONS(5035), - [anon_sym_sealed] = ACTIONS(5035), - [anon_sym_annotation] = ACTIONS(5035), - [anon_sym_data] = ACTIONS(5035), - [anon_sym_inner] = ACTIONS(5035), - [anon_sym_value] = ACTIONS(5035), - [anon_sym_override] = ACTIONS(5035), - [anon_sym_lateinit] = ACTIONS(5035), - [anon_sym_public] = ACTIONS(5035), - [anon_sym_private] = ACTIONS(5035), - [anon_sym_internal] = ACTIONS(5035), - [anon_sym_protected] = ACTIONS(5035), - [anon_sym_tailrec] = ACTIONS(5035), - [anon_sym_operator] = ACTIONS(5035), - [anon_sym_infix] = ACTIONS(5035), - [anon_sym_inline] = ACTIONS(5035), - [anon_sym_external] = ACTIONS(5035), - [sym_property_modifier] = ACTIONS(5035), - [anon_sym_abstract] = ACTIONS(5035), - [anon_sym_final] = ACTIONS(5035), - [anon_sym_open] = ACTIONS(5035), - [anon_sym_vararg] = ACTIONS(5035), - [anon_sym_noinline] = ACTIONS(5035), - [anon_sym_crossinline] = ACTIONS(5035), - [anon_sym_expect] = ACTIONS(5035), - [anon_sym_actual] = ACTIONS(5035), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5037), - [sym__automatic_semicolon] = ACTIONS(5037), - [sym_safe_nav] = ACTIONS(5037), + [3865] = { + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_DOT] = ACTIONS(4880), + [anon_sym_as] = ACTIONS(4880), + [anon_sym_EQ] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_COMMA] = ACTIONS(4882), + [anon_sym_LT] = ACTIONS(4880), + [anon_sym_GT] = ACTIONS(4880), + [anon_sym_where] = ACTIONS(4880), + [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [sym_label] = ACTIONS(4882), + [anon_sym_in] = ACTIONS(4880), + [anon_sym_DOT_DOT] = ACTIONS(4882), + [anon_sym_QMARK_COLON] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4882), + [anon_sym_PIPE_PIPE] = ACTIONS(4882), + [anon_sym_else] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS_EQ] = ACTIONS(4882), + [anon_sym_DASH_EQ] = ACTIONS(4882), + [anon_sym_STAR_EQ] = ACTIONS(4882), + [anon_sym_SLASH_EQ] = ACTIONS(4882), + [anon_sym_PERCENT_EQ] = ACTIONS(4882), + [anon_sym_BANG_EQ] = ACTIONS(4880), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4882), + [anon_sym_EQ_EQ] = ACTIONS(4880), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4882), + [anon_sym_LT_EQ] = ACTIONS(4882), + [anon_sym_GT_EQ] = ACTIONS(4882), + [anon_sym_BANGin] = ACTIONS(4882), + [anon_sym_is] = ACTIONS(4880), + [anon_sym_BANGis] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_SLASH] = ACTIONS(4880), + [anon_sym_PERCENT] = ACTIONS(4880), + [anon_sym_as_QMARK] = ACTIONS(4882), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4882), + [sym__automatic_semicolon] = ACTIONS(4882), + [sym_safe_nav] = ACTIONS(4882), [sym_multiline_comment] = ACTIONS(3), }, - [3911] = { - [sym__alpha_identifier] = ACTIONS(5031), - [anon_sym_AT] = ACTIONS(5033), - [anon_sym_LBRACK] = ACTIONS(5033), - [anon_sym_DOT] = ACTIONS(5031), - [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_SEMI] = ACTIONS(5033), - [anon_sym_get] = ACTIONS(5031), - [anon_sym_set] = ACTIONS(5031), - [anon_sym_STAR] = ACTIONS(5031), - [sym_label] = ACTIONS(5033), - [anon_sym_in] = ACTIONS(5031), - [anon_sym_DOT_DOT] = ACTIONS(5033), - [anon_sym_QMARK_COLON] = ACTIONS(5033), - [anon_sym_AMP_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5033), - [anon_sym_else] = ACTIONS(5031), - [anon_sym_COLON_COLON] = ACTIONS(5033), - [anon_sym_PLUS_EQ] = ACTIONS(5033), - [anon_sym_DASH_EQ] = ACTIONS(5033), - [anon_sym_STAR_EQ] = ACTIONS(5033), - [anon_sym_SLASH_EQ] = ACTIONS(5033), - [anon_sym_PERCENT_EQ] = ACTIONS(5033), - [anon_sym_BANG_EQ] = ACTIONS(5031), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5033), - [anon_sym_EQ_EQ] = ACTIONS(5031), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5033), - [anon_sym_LT_EQ] = ACTIONS(5033), - [anon_sym_GT_EQ] = ACTIONS(5033), - [anon_sym_BANGin] = ACTIONS(5033), - [anon_sym_is] = ACTIONS(5031), - [anon_sym_BANGis] = ACTIONS(5033), - [anon_sym_PLUS] = ACTIONS(5031), - [anon_sym_DASH] = ACTIONS(5031), - [anon_sym_SLASH] = ACTIONS(5031), - [anon_sym_PERCENT] = ACTIONS(5031), - [anon_sym_as_QMARK] = ACTIONS(5033), - [anon_sym_PLUS_PLUS] = ACTIONS(5033), - [anon_sym_DASH_DASH] = ACTIONS(5033), - [anon_sym_BANG_BANG] = ACTIONS(5033), - [anon_sym_suspend] = ACTIONS(5031), - [anon_sym_sealed] = ACTIONS(5031), - [anon_sym_annotation] = ACTIONS(5031), - [anon_sym_data] = ACTIONS(5031), - [anon_sym_inner] = ACTIONS(5031), - [anon_sym_value] = ACTIONS(5031), - [anon_sym_override] = ACTIONS(5031), - [anon_sym_lateinit] = ACTIONS(5031), - [anon_sym_public] = ACTIONS(5031), - [anon_sym_private] = ACTIONS(5031), - [anon_sym_internal] = ACTIONS(5031), - [anon_sym_protected] = ACTIONS(5031), - [anon_sym_tailrec] = ACTIONS(5031), - [anon_sym_operator] = ACTIONS(5031), - [anon_sym_infix] = ACTIONS(5031), - [anon_sym_inline] = ACTIONS(5031), - [anon_sym_external] = ACTIONS(5031), - [sym_property_modifier] = ACTIONS(5031), - [anon_sym_abstract] = ACTIONS(5031), - [anon_sym_final] = ACTIONS(5031), - [anon_sym_open] = ACTIONS(5031), - [anon_sym_vararg] = ACTIONS(5031), - [anon_sym_noinline] = ACTIONS(5031), - [anon_sym_crossinline] = ACTIONS(5031), - [anon_sym_expect] = ACTIONS(5031), - [anon_sym_actual] = ACTIONS(5031), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5033), - [sym__automatic_semicolon] = ACTIONS(5033), - [sym_safe_nav] = ACTIONS(5033), + [3866] = { + [sym__alpha_identifier] = ACTIONS(4607), + [anon_sym_AT] = ACTIONS(4609), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_DOT] = ACTIONS(4607), + [anon_sym_as] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4607), + [anon_sym_LBRACE] = ACTIONS(4609), + [anon_sym_RBRACE] = ACTIONS(4609), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4609), + [anon_sym_LT] = ACTIONS(4607), + [anon_sym_GT] = ACTIONS(4607), + [anon_sym_where] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4609), + [anon_sym_get] = ACTIONS(4607), + [anon_sym_set] = ACTIONS(4607), + [anon_sym_STAR] = ACTIONS(4607), + [sym_label] = ACTIONS(4609), + [anon_sym_in] = ACTIONS(4607), + [anon_sym_DOT_DOT] = ACTIONS(4609), + [anon_sym_QMARK_COLON] = ACTIONS(4609), + [anon_sym_AMP_AMP] = ACTIONS(4609), + [anon_sym_PIPE_PIPE] = ACTIONS(4609), + [anon_sym_else] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4609), + [anon_sym_PLUS_EQ] = ACTIONS(4609), + [anon_sym_DASH_EQ] = ACTIONS(4609), + [anon_sym_STAR_EQ] = ACTIONS(4609), + [anon_sym_SLASH_EQ] = ACTIONS(4609), + [anon_sym_PERCENT_EQ] = ACTIONS(4609), + [anon_sym_BANG_EQ] = ACTIONS(4607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4609), + [anon_sym_EQ_EQ] = ACTIONS(4607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4609), + [anon_sym_LT_EQ] = ACTIONS(4609), + [anon_sym_GT_EQ] = ACTIONS(4609), + [anon_sym_BANGin] = ACTIONS(4609), + [anon_sym_is] = ACTIONS(4607), + [anon_sym_BANGis] = ACTIONS(4609), + [anon_sym_PLUS] = ACTIONS(4607), + [anon_sym_DASH] = ACTIONS(4607), + [anon_sym_SLASH] = ACTIONS(4607), + [anon_sym_PERCENT] = ACTIONS(4607), + [anon_sym_as_QMARK] = ACTIONS(4609), + [anon_sym_PLUS_PLUS] = ACTIONS(4609), + [anon_sym_DASH_DASH] = ACTIONS(4609), + [anon_sym_BANG_BANG] = ACTIONS(4609), + [anon_sym_suspend] = ACTIONS(4607), + [anon_sym_sealed] = ACTIONS(4607), + [anon_sym_annotation] = ACTIONS(4607), + [anon_sym_data] = ACTIONS(4607), + [anon_sym_inner] = ACTIONS(4607), + [anon_sym_value] = ACTIONS(4607), + [anon_sym_override] = ACTIONS(4607), + [anon_sym_lateinit] = ACTIONS(4607), + [anon_sym_public] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4607), + [anon_sym_internal] = ACTIONS(4607), + [anon_sym_protected] = ACTIONS(4607), + [anon_sym_tailrec] = ACTIONS(4607), + [anon_sym_operator] = ACTIONS(4607), + [anon_sym_infix] = ACTIONS(4607), + [anon_sym_inline] = ACTIONS(4607), + [anon_sym_external] = ACTIONS(4607), + [sym_property_modifier] = ACTIONS(4607), + [anon_sym_abstract] = ACTIONS(4607), + [anon_sym_final] = ACTIONS(4607), + [anon_sym_open] = ACTIONS(4607), + [anon_sym_vararg] = ACTIONS(4607), + [anon_sym_noinline] = ACTIONS(4607), + [anon_sym_crossinline] = ACTIONS(4607), + [anon_sym_expect] = ACTIONS(4607), + [anon_sym_actual] = ACTIONS(4607), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4609), + [sym__automatic_semicolon] = ACTIONS(4609), + [sym_safe_nav] = ACTIONS(4609), [sym_multiline_comment] = ACTIONS(3), }, - [3912] = { - [sym__alpha_identifier] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(209), - [anon_sym_LBRACK] = ACTIONS(209), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_as] = ACTIONS(211), - [anon_sym_EQ] = ACTIONS(211), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_RBRACE] = ACTIONS(209), - [anon_sym_LPAREN] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(209), - [anon_sym_LT] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(211), - [anon_sym_where] = ACTIONS(211), - [anon_sym_SEMI] = ACTIONS(209), - [anon_sym_get] = ACTIONS(211), - [anon_sym_set] = ACTIONS(211), - [anon_sym_STAR] = ACTIONS(211), - [sym_label] = ACTIONS(209), - [anon_sym_in] = ACTIONS(211), - [anon_sym_DOT_DOT] = ACTIONS(209), - [anon_sym_QMARK_COLON] = ACTIONS(209), - [anon_sym_AMP_AMP] = ACTIONS(209), - [anon_sym_PIPE_PIPE] = ACTIONS(209), - [anon_sym_else] = ACTIONS(211), - [anon_sym_COLON_COLON] = ACTIONS(209), - [anon_sym_PLUS_EQ] = ACTIONS(209), - [anon_sym_DASH_EQ] = ACTIONS(209), - [anon_sym_STAR_EQ] = ACTIONS(209), - [anon_sym_SLASH_EQ] = ACTIONS(209), - [anon_sym_PERCENT_EQ] = ACTIONS(209), - [anon_sym_BANG_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ_EQ] = ACTIONS(209), - [anon_sym_EQ_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ_EQ] = ACTIONS(209), - [anon_sym_LT_EQ] = ACTIONS(209), - [anon_sym_GT_EQ] = ACTIONS(209), - [anon_sym_BANGin] = ACTIONS(209), - [anon_sym_is] = ACTIONS(211), - [anon_sym_BANGis] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(211), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_SLASH] = ACTIONS(211), - [anon_sym_PERCENT] = ACTIONS(211), - [anon_sym_as_QMARK] = ACTIONS(209), - [anon_sym_PLUS_PLUS] = ACTIONS(209), - [anon_sym_DASH_DASH] = ACTIONS(209), - [anon_sym_BANG_BANG] = ACTIONS(209), - [anon_sym_suspend] = ACTIONS(211), - [anon_sym_sealed] = ACTIONS(211), - [anon_sym_annotation] = ACTIONS(211), - [anon_sym_data] = ACTIONS(211), - [anon_sym_inner] = ACTIONS(211), - [anon_sym_value] = ACTIONS(211), - [anon_sym_override] = ACTIONS(211), - [anon_sym_lateinit] = ACTIONS(211), - [anon_sym_public] = ACTIONS(211), - [anon_sym_private] = ACTIONS(211), - [anon_sym_internal] = ACTIONS(211), - [anon_sym_protected] = ACTIONS(211), - [anon_sym_tailrec] = ACTIONS(211), - [anon_sym_operator] = ACTIONS(211), - [anon_sym_infix] = ACTIONS(211), - [anon_sym_inline] = ACTIONS(211), - [anon_sym_external] = ACTIONS(211), - [sym_property_modifier] = ACTIONS(211), - [anon_sym_abstract] = ACTIONS(211), - [anon_sym_final] = ACTIONS(211), - [anon_sym_open] = ACTIONS(211), - [anon_sym_vararg] = ACTIONS(211), - [anon_sym_noinline] = ACTIONS(211), - [anon_sym_crossinline] = ACTIONS(211), - [anon_sym_expect] = ACTIONS(211), - [anon_sym_actual] = ACTIONS(211), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(209), - [sym__automatic_semicolon] = ACTIONS(209), - [sym_safe_nav] = ACTIONS(209), + [3867] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4333), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), [sym_multiline_comment] = ACTIONS(3), }, - [3913] = { - [sym__alpha_identifier] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_as] = ACTIONS(3420), - [anon_sym_EQ] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_COMMA] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3420), - [anon_sym_GT] = ACTIONS(3420), - [anon_sym_where] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_get] = ACTIONS(3420), - [anon_sym_set] = ACTIONS(3420), - [anon_sym_STAR] = ACTIONS(3420), - [sym_label] = ACTIONS(3422), - [anon_sym_in] = ACTIONS(3420), - [anon_sym_DOT_DOT] = ACTIONS(3422), - [anon_sym_QMARK_COLON] = ACTIONS(3422), - [anon_sym_AMP_AMP] = ACTIONS(3422), - [anon_sym_PIPE_PIPE] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_COLON_COLON] = ACTIONS(3422), - [anon_sym_PLUS_EQ] = ACTIONS(3422), - [anon_sym_DASH_EQ] = ACTIONS(3422), - [anon_sym_STAR_EQ] = ACTIONS(3422), - [anon_sym_SLASH_EQ] = ACTIONS(3422), - [anon_sym_PERCENT_EQ] = ACTIONS(3422), - [anon_sym_BANG_EQ] = ACTIONS(3420), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3422), - [anon_sym_EQ_EQ] = ACTIONS(3420), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3422), - [anon_sym_LT_EQ] = ACTIONS(3422), - [anon_sym_GT_EQ] = ACTIONS(3422), - [anon_sym_BANGin] = ACTIONS(3422), - [anon_sym_is] = ACTIONS(3420), - [anon_sym_BANGis] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_PERCENT] = ACTIONS(3420), - [anon_sym_as_QMARK] = ACTIONS(3422), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_BANG_BANG] = ACTIONS(3422), - [anon_sym_suspend] = ACTIONS(3420), - [anon_sym_sealed] = ACTIONS(3420), - [anon_sym_annotation] = ACTIONS(3420), - [anon_sym_data] = ACTIONS(3420), - [anon_sym_inner] = ACTIONS(3420), - [anon_sym_value] = ACTIONS(3420), - [anon_sym_override] = ACTIONS(3420), - [anon_sym_lateinit] = ACTIONS(3420), - [anon_sym_public] = ACTIONS(3420), - [anon_sym_private] = ACTIONS(3420), - [anon_sym_internal] = ACTIONS(3420), - [anon_sym_protected] = ACTIONS(3420), - [anon_sym_tailrec] = ACTIONS(3420), - [anon_sym_operator] = ACTIONS(3420), - [anon_sym_infix] = ACTIONS(3420), - [anon_sym_inline] = ACTIONS(3420), - [anon_sym_external] = ACTIONS(3420), - [sym_property_modifier] = ACTIONS(3420), - [anon_sym_abstract] = ACTIONS(3420), - [anon_sym_final] = ACTIONS(3420), - [anon_sym_open] = ACTIONS(3420), - [anon_sym_vararg] = ACTIONS(3420), - [anon_sym_noinline] = ACTIONS(3420), - [anon_sym_crossinline] = ACTIONS(3420), - [anon_sym_expect] = ACTIONS(3420), - [anon_sym_actual] = ACTIONS(3420), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3422), - [sym__automatic_semicolon] = ACTIONS(3422), - [sym_safe_nav] = ACTIONS(3422), + [3868] = { + [sym__alpha_identifier] = ACTIONS(1580), + [anon_sym_AT] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), + [anon_sym_DOT] = ACTIONS(1580), + [anon_sym_as] = ACTIONS(1580), + [anon_sym_EQ] = ACTIONS(1580), + [anon_sym_LBRACE] = ACTIONS(1578), + [anon_sym_RBRACE] = ACTIONS(1578), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_COMMA] = ACTIONS(1578), + [anon_sym_LT] = ACTIONS(1580), + [anon_sym_GT] = ACTIONS(1580), + [anon_sym_where] = ACTIONS(1580), + [anon_sym_SEMI] = ACTIONS(1578), + [anon_sym_get] = ACTIONS(1580), + [anon_sym_set] = ACTIONS(1580), + [anon_sym_STAR] = ACTIONS(1580), + [sym_label] = ACTIONS(1578), + [anon_sym_in] = ACTIONS(1580), + [anon_sym_DOT_DOT] = ACTIONS(1578), + [anon_sym_QMARK_COLON] = ACTIONS(1578), + [anon_sym_AMP_AMP] = ACTIONS(1578), + [anon_sym_PIPE_PIPE] = ACTIONS(1578), + [anon_sym_else] = ACTIONS(1580), + [anon_sym_COLON_COLON] = ACTIONS(1578), + [anon_sym_PLUS_EQ] = ACTIONS(1578), + [anon_sym_DASH_EQ] = ACTIONS(1578), + [anon_sym_STAR_EQ] = ACTIONS(1578), + [anon_sym_SLASH_EQ] = ACTIONS(1578), + [anon_sym_PERCENT_EQ] = ACTIONS(1578), + [anon_sym_BANG_EQ] = ACTIONS(1580), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1578), + [anon_sym_EQ_EQ] = ACTIONS(1580), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1578), + [anon_sym_LT_EQ] = ACTIONS(1578), + [anon_sym_GT_EQ] = ACTIONS(1578), + [anon_sym_BANGin] = ACTIONS(1578), + [anon_sym_is] = ACTIONS(1580), + [anon_sym_BANGis] = ACTIONS(1578), + [anon_sym_PLUS] = ACTIONS(1580), + [anon_sym_DASH] = ACTIONS(1580), + [anon_sym_SLASH] = ACTIONS(1580), + [anon_sym_PERCENT] = ACTIONS(1580), + [anon_sym_as_QMARK] = ACTIONS(1578), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_BANG_BANG] = ACTIONS(1578), + [anon_sym_suspend] = ACTIONS(1580), + [anon_sym_sealed] = ACTIONS(1580), + [anon_sym_annotation] = ACTIONS(1580), + [anon_sym_data] = ACTIONS(1580), + [anon_sym_inner] = ACTIONS(1580), + [anon_sym_value] = ACTIONS(1580), + [anon_sym_override] = ACTIONS(1580), + [anon_sym_lateinit] = ACTIONS(1580), + [anon_sym_public] = ACTIONS(1580), + [anon_sym_private] = ACTIONS(1580), + [anon_sym_internal] = ACTIONS(1580), + [anon_sym_protected] = ACTIONS(1580), + [anon_sym_tailrec] = ACTIONS(1580), + [anon_sym_operator] = ACTIONS(1580), + [anon_sym_infix] = ACTIONS(1580), + [anon_sym_inline] = ACTIONS(1580), + [anon_sym_external] = ACTIONS(1580), + [sym_property_modifier] = ACTIONS(1580), + [anon_sym_abstract] = ACTIONS(1580), + [anon_sym_final] = ACTIONS(1580), + [anon_sym_open] = ACTIONS(1580), + [anon_sym_vararg] = ACTIONS(1580), + [anon_sym_noinline] = ACTIONS(1580), + [anon_sym_crossinline] = ACTIONS(1580), + [anon_sym_expect] = ACTIONS(1580), + [anon_sym_actual] = ACTIONS(1580), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1578), + [sym__automatic_semicolon] = ACTIONS(1578), + [sym_safe_nav] = ACTIONS(1578), [sym_multiline_comment] = ACTIONS(3), }, - [3914] = { - [sym_function_body] = STATE(3113), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_object] = ACTIONS(4260), - [anon_sym_fun] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_this] = ACTIONS(4260), - [anon_sym_super] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [sym_label] = ACTIONS(4260), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_null] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [anon_sym_try] = ACTIONS(4260), - [anon_sym_throw] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), + [3869] = { + [sym__alpha_identifier] = ACTIONS(5129), + [anon_sym_AT] = ACTIONS(5131), + [anon_sym_LBRACK] = ACTIONS(5131), + [anon_sym_DOT] = ACTIONS(5129), + [anon_sym_as] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5131), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5131), + [anon_sym_COMMA] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5129), + [anon_sym_GT] = ACTIONS(5129), + [anon_sym_where] = ACTIONS(5129), + [anon_sym_SEMI] = ACTIONS(5131), + [anon_sym_get] = ACTIONS(5129), + [anon_sym_set] = ACTIONS(5129), + [anon_sym_STAR] = ACTIONS(5129), + [sym_label] = ACTIONS(5131), + [anon_sym_in] = ACTIONS(5129), + [anon_sym_DOT_DOT] = ACTIONS(5131), + [anon_sym_QMARK_COLON] = ACTIONS(5131), + [anon_sym_AMP_AMP] = ACTIONS(5131), + [anon_sym_PIPE_PIPE] = ACTIONS(5131), + [anon_sym_else] = ACTIONS(5129), + [anon_sym_COLON_COLON] = ACTIONS(5131), + [anon_sym_PLUS_EQ] = ACTIONS(5131), + [anon_sym_DASH_EQ] = ACTIONS(5131), + [anon_sym_STAR_EQ] = ACTIONS(5131), + [anon_sym_SLASH_EQ] = ACTIONS(5131), + [anon_sym_PERCENT_EQ] = ACTIONS(5131), + [anon_sym_BANG_EQ] = ACTIONS(5129), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), + [anon_sym_EQ_EQ] = ACTIONS(5129), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), + [anon_sym_LT_EQ] = ACTIONS(5131), + [anon_sym_GT_EQ] = ACTIONS(5131), + [anon_sym_BANGin] = ACTIONS(5131), + [anon_sym_is] = ACTIONS(5129), + [anon_sym_BANGis] = ACTIONS(5131), + [anon_sym_PLUS] = ACTIONS(5129), + [anon_sym_DASH] = ACTIONS(5129), + [anon_sym_SLASH] = ACTIONS(5129), + [anon_sym_PERCENT] = ACTIONS(5129), + [anon_sym_as_QMARK] = ACTIONS(5131), + [anon_sym_PLUS_PLUS] = ACTIONS(5131), + [anon_sym_DASH_DASH] = ACTIONS(5131), + [anon_sym_BANG_BANG] = ACTIONS(5131), + [anon_sym_suspend] = ACTIONS(5129), + [anon_sym_sealed] = ACTIONS(5129), + [anon_sym_annotation] = ACTIONS(5129), + [anon_sym_data] = ACTIONS(5129), + [anon_sym_inner] = ACTIONS(5129), + [anon_sym_value] = ACTIONS(5129), + [anon_sym_override] = ACTIONS(5129), + [anon_sym_lateinit] = ACTIONS(5129), + [anon_sym_public] = ACTIONS(5129), + [anon_sym_private] = ACTIONS(5129), + [anon_sym_internal] = ACTIONS(5129), + [anon_sym_protected] = ACTIONS(5129), + [anon_sym_tailrec] = ACTIONS(5129), + [anon_sym_operator] = ACTIONS(5129), + [anon_sym_infix] = ACTIONS(5129), + [anon_sym_inline] = ACTIONS(5129), + [anon_sym_external] = ACTIONS(5129), + [sym_property_modifier] = ACTIONS(5129), + [anon_sym_abstract] = ACTIONS(5129), + [anon_sym_final] = ACTIONS(5129), + [anon_sym_open] = ACTIONS(5129), + [anon_sym_vararg] = ACTIONS(5129), + [anon_sym_noinline] = ACTIONS(5129), + [anon_sym_crossinline] = ACTIONS(5129), + [anon_sym_expect] = ACTIONS(5129), + [anon_sym_actual] = ACTIONS(5129), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4262), - [anon_sym_continue_AT] = ACTIONS(4262), - [anon_sym_break_AT] = ACTIONS(4262), - [anon_sym_this_AT] = ACTIONS(4262), - [anon_sym_super_AT] = ACTIONS(4262), - [sym_real_literal] = ACTIONS(4262), - [sym_integer_literal] = ACTIONS(4260), - [sym_hex_literal] = ACTIONS(4262), - [sym_bin_literal] = ACTIONS(4262), - [anon_sym_true] = ACTIONS(4260), - [anon_sym_false] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4262), - [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(5131), + [sym__automatic_semicolon] = ACTIONS(5131), + [sym_safe_nav] = ACTIONS(5131), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4262), }, - [3915] = { - [sym__alpha_identifier] = ACTIONS(7132), - [anon_sym_AT] = ACTIONS(7134), - [anon_sym_LBRACK] = ACTIONS(7134), - [anon_sym_typealias] = ACTIONS(7132), - [anon_sym_class] = ACTIONS(7132), - [anon_sym_interface] = ACTIONS(7132), - [anon_sym_enum] = ACTIONS(7132), - [anon_sym_LBRACE] = ACTIONS(7134), - [anon_sym_LPAREN] = ACTIONS(7134), - [anon_sym_val] = ACTIONS(7132), - [anon_sym_var] = ACTIONS(7132), - [anon_sym_object] = ACTIONS(7132), - [anon_sym_fun] = ACTIONS(7132), - [anon_sym_get] = ACTIONS(7132), - [anon_sym_set] = ACTIONS(7132), - [anon_sym_this] = ACTIONS(7132), - [anon_sym_super] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7134), - [sym_label] = ACTIONS(7132), - [anon_sym_for] = ACTIONS(7132), - [anon_sym_while] = ACTIONS(7132), - [anon_sym_do] = ACTIONS(7132), - [anon_sym_null] = ACTIONS(7132), - [anon_sym_if] = ACTIONS(7132), - [anon_sym_when] = ACTIONS(7132), - [anon_sym_try] = ACTIONS(7132), - [anon_sym_throw] = ACTIONS(7132), - [anon_sym_return] = ACTIONS(7132), - [anon_sym_continue] = ACTIONS(7132), - [anon_sym_break] = ACTIONS(7132), - [anon_sym_COLON_COLON] = ACTIONS(7134), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_BANG] = ACTIONS(7134), - [anon_sym_suspend] = ACTIONS(7132), - [anon_sym_sealed] = ACTIONS(7132), - [anon_sym_annotation] = ACTIONS(7132), - [anon_sym_data] = ACTIONS(7132), - [anon_sym_inner] = ACTIONS(7132), - [anon_sym_value] = ACTIONS(7132), - [anon_sym_override] = ACTIONS(7132), - [anon_sym_lateinit] = ACTIONS(7132), - [anon_sym_public] = ACTIONS(7132), - [anon_sym_private] = ACTIONS(7132), - [anon_sym_internal] = ACTIONS(7132), - [anon_sym_protected] = ACTIONS(7132), - [anon_sym_tailrec] = ACTIONS(7132), - [anon_sym_operator] = ACTIONS(7132), - [anon_sym_infix] = ACTIONS(7132), - [anon_sym_inline] = ACTIONS(7132), - [anon_sym_external] = ACTIONS(7132), - [sym_property_modifier] = ACTIONS(7132), - [anon_sym_abstract] = ACTIONS(7132), - [anon_sym_final] = ACTIONS(7132), - [anon_sym_open] = ACTIONS(7132), - [anon_sym_vararg] = ACTIONS(7132), - [anon_sym_noinline] = ACTIONS(7132), - [anon_sym_crossinline] = ACTIONS(7132), - [anon_sym_expect] = ACTIONS(7132), - [anon_sym_actual] = ACTIONS(7132), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7134), - [anon_sym_continue_AT] = ACTIONS(7134), - [anon_sym_break_AT] = ACTIONS(7134), - [anon_sym_this_AT] = ACTIONS(7134), - [anon_sym_super_AT] = ACTIONS(7134), - [sym_real_literal] = ACTIONS(7134), - [sym_integer_literal] = ACTIONS(7132), - [sym_hex_literal] = ACTIONS(7134), - [sym_bin_literal] = ACTIONS(7134), - [anon_sym_true] = ACTIONS(7132), - [anon_sym_false] = ACTIONS(7132), - [anon_sym_SQUOTE] = ACTIONS(7134), - [sym__backtick_identifier] = ACTIONS(7134), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7134), + [3870] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4333), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), }, - [3916] = { - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = 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_value] = 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), + [3871] = { + [sym__alpha_identifier] = ACTIONS(4732), + [anon_sym_AT] = ACTIONS(4734), + [anon_sym_LBRACK] = ACTIONS(4734), + [anon_sym_DOT] = ACTIONS(4732), + [anon_sym_as] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(4732), + [anon_sym_LBRACE] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_LPAREN] = ACTIONS(4734), + [anon_sym_COMMA] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(4732), + [anon_sym_GT] = ACTIONS(4732), + [anon_sym_where] = ACTIONS(4732), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_get] = ACTIONS(4732), + [anon_sym_set] = ACTIONS(4732), + [anon_sym_STAR] = ACTIONS(4732), + [sym_label] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4732), + [anon_sym_DOT_DOT] = ACTIONS(4734), + [anon_sym_QMARK_COLON] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4732), + [anon_sym_COLON_COLON] = ACTIONS(4734), + [anon_sym_PLUS_EQ] = ACTIONS(4734), + [anon_sym_DASH_EQ] = ACTIONS(4734), + [anon_sym_STAR_EQ] = ACTIONS(4734), + [anon_sym_SLASH_EQ] = ACTIONS(4734), + [anon_sym_PERCENT_EQ] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4732), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4732), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4734), + [anon_sym_LT_EQ] = ACTIONS(4734), + [anon_sym_GT_EQ] = ACTIONS(4734), + [anon_sym_BANGin] = ACTIONS(4734), + [anon_sym_is] = ACTIONS(4732), + [anon_sym_BANGis] = ACTIONS(4734), + [anon_sym_PLUS] = ACTIONS(4732), + [anon_sym_DASH] = ACTIONS(4732), + [anon_sym_SLASH] = ACTIONS(4732), + [anon_sym_PERCENT] = ACTIONS(4732), + [anon_sym_as_QMARK] = ACTIONS(4734), + [anon_sym_PLUS_PLUS] = ACTIONS(4734), + [anon_sym_DASH_DASH] = ACTIONS(4734), + [anon_sym_BANG_BANG] = ACTIONS(4734), + [anon_sym_suspend] = ACTIONS(4732), + [anon_sym_sealed] = ACTIONS(4732), + [anon_sym_annotation] = ACTIONS(4732), + [anon_sym_data] = ACTIONS(4732), + [anon_sym_inner] = ACTIONS(4732), + [anon_sym_value] = ACTIONS(4732), + [anon_sym_override] = ACTIONS(4732), + [anon_sym_lateinit] = ACTIONS(4732), + [anon_sym_public] = ACTIONS(4732), + [anon_sym_private] = ACTIONS(4732), + [anon_sym_internal] = ACTIONS(4732), + [anon_sym_protected] = ACTIONS(4732), + [anon_sym_tailrec] = ACTIONS(4732), + [anon_sym_operator] = ACTIONS(4732), + [anon_sym_infix] = ACTIONS(4732), + [anon_sym_inline] = ACTIONS(4732), + [anon_sym_external] = ACTIONS(4732), + [sym_property_modifier] = ACTIONS(4732), + [anon_sym_abstract] = ACTIONS(4732), + [anon_sym_final] = ACTIONS(4732), + [anon_sym_open] = ACTIONS(4732), + [anon_sym_vararg] = ACTIONS(4732), + [anon_sym_noinline] = ACTIONS(4732), + [anon_sym_crossinline] = ACTIONS(4732), + [anon_sym_expect] = ACTIONS(4732), + [anon_sym_actual] = ACTIONS(4732), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4734), + [sym__automatic_semicolon] = ACTIONS(4734), + [sym_safe_nav] = ACTIONS(4734), [sym_multiline_comment] = ACTIONS(3), }, - [3917] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4421), - [anon_sym_DASH_EQ] = ACTIONS(4421), - [anon_sym_STAR_EQ] = ACTIONS(4421), - [anon_sym_SLASH_EQ] = ACTIONS(4421), - [anon_sym_PERCENT_EQ] = ACTIONS(4421), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), + [3872] = { + [sym__alpha_identifier] = ACTIONS(5109), + [anon_sym_AT] = ACTIONS(5111), + [anon_sym_LBRACK] = ACTIONS(5111), + [anon_sym_DOT] = ACTIONS(5109), + [anon_sym_as] = ACTIONS(5109), + [anon_sym_EQ] = ACTIONS(5109), + [anon_sym_LBRACE] = ACTIONS(5111), + [anon_sym_RBRACE] = ACTIONS(5111), + [anon_sym_LPAREN] = ACTIONS(5111), + [anon_sym_COMMA] = ACTIONS(5111), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_where] = ACTIONS(5109), + [anon_sym_SEMI] = ACTIONS(5111), + [anon_sym_get] = ACTIONS(5109), + [anon_sym_set] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [sym_label] = ACTIONS(5111), + [anon_sym_in] = ACTIONS(5109), + [anon_sym_DOT_DOT] = ACTIONS(5111), + [anon_sym_QMARK_COLON] = ACTIONS(5111), + [anon_sym_AMP_AMP] = ACTIONS(5111), + [anon_sym_PIPE_PIPE] = ACTIONS(5111), + [anon_sym_else] = ACTIONS(5109), + [anon_sym_COLON_COLON] = ACTIONS(5111), + [anon_sym_PLUS_EQ] = ACTIONS(5111), + [anon_sym_DASH_EQ] = ACTIONS(5111), + [anon_sym_STAR_EQ] = ACTIONS(5111), + [anon_sym_SLASH_EQ] = ACTIONS(5111), + [anon_sym_PERCENT_EQ] = ACTIONS(5111), + [anon_sym_BANG_EQ] = ACTIONS(5109), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5111), + [anon_sym_EQ_EQ] = ACTIONS(5109), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5111), + [anon_sym_LT_EQ] = ACTIONS(5111), + [anon_sym_GT_EQ] = ACTIONS(5111), + [anon_sym_BANGin] = ACTIONS(5111), + [anon_sym_is] = ACTIONS(5109), + [anon_sym_BANGis] = ACTIONS(5111), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_PERCENT] = ACTIONS(5109), + [anon_sym_as_QMARK] = ACTIONS(5111), + [anon_sym_PLUS_PLUS] = ACTIONS(5111), + [anon_sym_DASH_DASH] = ACTIONS(5111), + [anon_sym_BANG_BANG] = ACTIONS(5111), + [anon_sym_suspend] = ACTIONS(5109), + [anon_sym_sealed] = ACTIONS(5109), + [anon_sym_annotation] = ACTIONS(5109), + [anon_sym_data] = ACTIONS(5109), + [anon_sym_inner] = ACTIONS(5109), + [anon_sym_value] = ACTIONS(5109), + [anon_sym_override] = ACTIONS(5109), + [anon_sym_lateinit] = ACTIONS(5109), + [anon_sym_public] = ACTIONS(5109), + [anon_sym_private] = ACTIONS(5109), + [anon_sym_internal] = ACTIONS(5109), + [anon_sym_protected] = ACTIONS(5109), + [anon_sym_tailrec] = ACTIONS(5109), + [anon_sym_operator] = ACTIONS(5109), + [anon_sym_infix] = ACTIONS(5109), + [anon_sym_inline] = ACTIONS(5109), + [anon_sym_external] = ACTIONS(5109), + [sym_property_modifier] = ACTIONS(5109), + [anon_sym_abstract] = ACTIONS(5109), + [anon_sym_final] = ACTIONS(5109), + [anon_sym_open] = ACTIONS(5109), + [anon_sym_vararg] = ACTIONS(5109), + [anon_sym_noinline] = ACTIONS(5109), + [anon_sym_crossinline] = ACTIONS(5109), + [anon_sym_expect] = ACTIONS(5109), + [anon_sym_actual] = ACTIONS(5109), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5111), + [sym__automatic_semicolon] = ACTIONS(5111), + [sym_safe_nav] = ACTIONS(5111), [sym_multiline_comment] = ACTIONS(3), }, - [3918] = { + [3873] = { + [sym__alpha_identifier] = ACTIONS(5137), + [anon_sym_AT] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(5139), + [anon_sym_DOT] = ACTIONS(5137), + [anon_sym_as] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5139), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5139), + [anon_sym_COMMA] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5137), + [anon_sym_GT] = ACTIONS(5137), + [anon_sym_where] = ACTIONS(5137), + [anon_sym_SEMI] = ACTIONS(5139), + [anon_sym_get] = ACTIONS(5137), + [anon_sym_set] = ACTIONS(5137), + [anon_sym_STAR] = ACTIONS(5137), + [sym_label] = ACTIONS(5139), + [anon_sym_in] = ACTIONS(5137), + [anon_sym_DOT_DOT] = ACTIONS(5139), + [anon_sym_QMARK_COLON] = ACTIONS(5139), + [anon_sym_AMP_AMP] = ACTIONS(5139), + [anon_sym_PIPE_PIPE] = ACTIONS(5139), + [anon_sym_else] = ACTIONS(5137), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_PLUS_EQ] = ACTIONS(5139), + [anon_sym_DASH_EQ] = ACTIONS(5139), + [anon_sym_STAR_EQ] = ACTIONS(5139), + [anon_sym_SLASH_EQ] = ACTIONS(5139), + [anon_sym_PERCENT_EQ] = ACTIONS(5139), + [anon_sym_BANG_EQ] = ACTIONS(5137), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5139), + [anon_sym_EQ_EQ] = ACTIONS(5137), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5139), + [anon_sym_LT_EQ] = ACTIONS(5139), + [anon_sym_GT_EQ] = ACTIONS(5139), + [anon_sym_BANGin] = ACTIONS(5139), + [anon_sym_is] = ACTIONS(5137), + [anon_sym_BANGis] = ACTIONS(5139), + [anon_sym_PLUS] = ACTIONS(5137), + [anon_sym_DASH] = ACTIONS(5137), + [anon_sym_SLASH] = ACTIONS(5137), + [anon_sym_PERCENT] = ACTIONS(5137), + [anon_sym_as_QMARK] = ACTIONS(5139), + [anon_sym_PLUS_PLUS] = ACTIONS(5139), + [anon_sym_DASH_DASH] = ACTIONS(5139), + [anon_sym_BANG_BANG] = ACTIONS(5139), + [anon_sym_suspend] = ACTIONS(5137), + [anon_sym_sealed] = ACTIONS(5137), + [anon_sym_annotation] = ACTIONS(5137), + [anon_sym_data] = ACTIONS(5137), + [anon_sym_inner] = ACTIONS(5137), + [anon_sym_value] = ACTIONS(5137), + [anon_sym_override] = ACTIONS(5137), + [anon_sym_lateinit] = ACTIONS(5137), + [anon_sym_public] = ACTIONS(5137), + [anon_sym_private] = ACTIONS(5137), + [anon_sym_internal] = ACTIONS(5137), + [anon_sym_protected] = ACTIONS(5137), + [anon_sym_tailrec] = ACTIONS(5137), + [anon_sym_operator] = ACTIONS(5137), + [anon_sym_infix] = ACTIONS(5137), + [anon_sym_inline] = ACTIONS(5137), + [anon_sym_external] = ACTIONS(5137), + [sym_property_modifier] = ACTIONS(5137), + [anon_sym_abstract] = ACTIONS(5137), + [anon_sym_final] = ACTIONS(5137), + [anon_sym_open] = ACTIONS(5137), + [anon_sym_vararg] = ACTIONS(5137), + [anon_sym_noinline] = ACTIONS(5137), + [anon_sym_crossinline] = ACTIONS(5137), + [anon_sym_expect] = ACTIONS(5137), + [anon_sym_actual] = ACTIONS(5137), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5139), + [sym__automatic_semicolon] = ACTIONS(5139), + [sym_safe_nav] = ACTIONS(5139), + [sym_multiline_comment] = ACTIONS(3), + }, + [3874] = { [sym__alpha_identifier] = ACTIONS(5023), [anon_sym_AT] = ACTIONS(5025), [anon_sym_LBRACK] = ACTIONS(5025), @@ -434845,1607 +431594,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5025), [sym_multiline_comment] = ACTIONS(3), }, - [3919] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3919), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(7136), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_object] = ACTIONS(4637), - [anon_sym_fun] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_this] = ACTIONS(4637), - [anon_sym_super] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4639), - [sym_label] = ACTIONS(4637), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_null] = ACTIONS(4637), - [anon_sym_if] = ACTIONS(4637), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_when] = ACTIONS(4637), - [anon_sym_try] = ACTIONS(4637), - [anon_sym_throw] = ACTIONS(4637), - [anon_sym_return] = ACTIONS(4637), - [anon_sym_continue] = ACTIONS(4637), - [anon_sym_break] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4639), - [anon_sym_continue_AT] = ACTIONS(4639), - [anon_sym_break_AT] = ACTIONS(4639), - [anon_sym_this_AT] = ACTIONS(4639), - [anon_sym_super_AT] = ACTIONS(4639), - [sym_real_literal] = ACTIONS(4639), - [sym_integer_literal] = ACTIONS(4637), - [sym_hex_literal] = ACTIONS(4639), - [sym_bin_literal] = ACTIONS(4639), - [anon_sym_true] = ACTIONS(4637), - [anon_sym_false] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4639), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4639), - }, - [3920] = { - [sym__alpha_identifier] = ACTIONS(4762), - [anon_sym_AT] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4762), - [anon_sym_as] = ACTIONS(4762), - [anon_sym_EQ] = ACTIONS(4762), - [anon_sym_LBRACE] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4762), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_get] = ACTIONS(4762), - [anon_sym_set] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4762), - [sym_label] = ACTIONS(4764), - [anon_sym_in] = ACTIONS(4762), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_QMARK_COLON] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [anon_sym_else] = ACTIONS(4762), - [anon_sym_COLON_COLON] = ACTIONS(4764), - [anon_sym_PLUS_EQ] = ACTIONS(4764), - [anon_sym_DASH_EQ] = ACTIONS(4764), - [anon_sym_STAR_EQ] = ACTIONS(4764), - [anon_sym_SLASH_EQ] = ACTIONS(4764), - [anon_sym_PERCENT_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4762), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4762), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_BANGin] = ACTIONS(4764), - [anon_sym_is] = ACTIONS(4762), - [anon_sym_BANGis] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4762), - [anon_sym_as_QMARK] = ACTIONS(4764), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_BANG_BANG] = ACTIONS(4764), - [anon_sym_suspend] = ACTIONS(4762), - [anon_sym_sealed] = ACTIONS(4762), - [anon_sym_annotation] = ACTIONS(4762), - [anon_sym_data] = ACTIONS(4762), - [anon_sym_inner] = ACTIONS(4762), - [anon_sym_value] = ACTIONS(4762), - [anon_sym_override] = ACTIONS(4762), - [anon_sym_lateinit] = ACTIONS(4762), - [anon_sym_public] = ACTIONS(4762), - [anon_sym_private] = ACTIONS(4762), - [anon_sym_internal] = ACTIONS(4762), - [anon_sym_protected] = ACTIONS(4762), - [anon_sym_tailrec] = ACTIONS(4762), - [anon_sym_operator] = ACTIONS(4762), - [anon_sym_infix] = ACTIONS(4762), - [anon_sym_inline] = ACTIONS(4762), - [anon_sym_external] = ACTIONS(4762), - [sym_property_modifier] = ACTIONS(4762), - [anon_sym_abstract] = ACTIONS(4762), - [anon_sym_final] = ACTIONS(4762), - [anon_sym_open] = ACTIONS(4762), - [anon_sym_vararg] = ACTIONS(4762), - [anon_sym_noinline] = ACTIONS(4762), - [anon_sym_crossinline] = ACTIONS(4762), - [anon_sym_expect] = ACTIONS(4762), - [anon_sym_actual] = ACTIONS(4762), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4764), - [sym__automatic_semicolon] = ACTIONS(4764), - [sym_safe_nav] = ACTIONS(4764), - [sym_multiline_comment] = ACTIONS(3), - }, - [3921] = { - [sym__alpha_identifier] = ACTIONS(4716), - [anon_sym_AT] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4718), - [anon_sym_DOT] = ACTIONS(4716), - [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_SEMI] = ACTIONS(4718), - [anon_sym_get] = ACTIONS(4716), - [anon_sym_set] = ACTIONS(4716), - [anon_sym_STAR] = ACTIONS(4716), - [sym_label] = ACTIONS(4718), - [anon_sym_in] = ACTIONS(4716), - [anon_sym_DOT_DOT] = ACTIONS(4718), - [anon_sym_QMARK_COLON] = ACTIONS(4718), - [anon_sym_AMP_AMP] = ACTIONS(4718), - [anon_sym_PIPE_PIPE] = ACTIONS(4718), - [anon_sym_else] = ACTIONS(4716), - [anon_sym_COLON_COLON] = ACTIONS(4718), - [anon_sym_PLUS_EQ] = ACTIONS(4718), - [anon_sym_DASH_EQ] = ACTIONS(4718), - [anon_sym_STAR_EQ] = ACTIONS(4718), - [anon_sym_SLASH_EQ] = ACTIONS(4718), - [anon_sym_PERCENT_EQ] = ACTIONS(4718), - [anon_sym_BANG_EQ] = ACTIONS(4716), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4716), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4718), - [anon_sym_LT_EQ] = ACTIONS(4718), - [anon_sym_GT_EQ] = ACTIONS(4718), - [anon_sym_BANGin] = ACTIONS(4718), - [anon_sym_is] = ACTIONS(4716), - [anon_sym_BANGis] = ACTIONS(4718), - [anon_sym_PLUS] = ACTIONS(4716), - [anon_sym_DASH] = ACTIONS(4716), - [anon_sym_SLASH] = ACTIONS(4716), - [anon_sym_PERCENT] = ACTIONS(4716), - [anon_sym_as_QMARK] = ACTIONS(4718), - [anon_sym_PLUS_PLUS] = ACTIONS(4718), - [anon_sym_DASH_DASH] = ACTIONS(4718), - [anon_sym_BANG_BANG] = ACTIONS(4718), - [anon_sym_suspend] = ACTIONS(4716), - [anon_sym_sealed] = ACTIONS(4716), - [anon_sym_annotation] = ACTIONS(4716), - [anon_sym_data] = ACTIONS(4716), - [anon_sym_inner] = ACTIONS(4716), - [anon_sym_value] = ACTIONS(4716), - [anon_sym_override] = ACTIONS(4716), - [anon_sym_lateinit] = ACTIONS(4716), - [anon_sym_public] = ACTIONS(4716), - [anon_sym_private] = ACTIONS(4716), - [anon_sym_internal] = ACTIONS(4716), - [anon_sym_protected] = ACTIONS(4716), - [anon_sym_tailrec] = ACTIONS(4716), - [anon_sym_operator] = ACTIONS(4716), - [anon_sym_infix] = ACTIONS(4716), - [anon_sym_inline] = ACTIONS(4716), - [anon_sym_external] = ACTIONS(4716), - [sym_property_modifier] = ACTIONS(4716), - [anon_sym_abstract] = ACTIONS(4716), - [anon_sym_final] = ACTIONS(4716), - [anon_sym_open] = ACTIONS(4716), - [anon_sym_vararg] = ACTIONS(4716), - [anon_sym_noinline] = ACTIONS(4716), - [anon_sym_crossinline] = ACTIONS(4716), - [anon_sym_expect] = ACTIONS(4716), - [anon_sym_actual] = ACTIONS(4716), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4718), - [sym__automatic_semicolon] = ACTIONS(4718), - [sym_safe_nav] = ACTIONS(4718), - [sym_multiline_comment] = ACTIONS(3), - }, - [3922] = { - [sym__alpha_identifier] = ACTIONS(5011), - [anon_sym_AT] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_DOT] = ACTIONS(5011), - [anon_sym_as] = ACTIONS(5011), - [anon_sym_EQ] = ACTIONS(5011), - [anon_sym_LBRACE] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_where] = ACTIONS(5011), - [anon_sym_SEMI] = ACTIONS(5013), - [anon_sym_get] = ACTIONS(5011), - [anon_sym_set] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [sym_label] = ACTIONS(5013), - [anon_sym_in] = ACTIONS(5011), - [anon_sym_DOT_DOT] = ACTIONS(5013), - [anon_sym_QMARK_COLON] = ACTIONS(5013), - [anon_sym_AMP_AMP] = ACTIONS(5013), - [anon_sym_PIPE_PIPE] = ACTIONS(5013), - [anon_sym_else] = ACTIONS(5011), - [anon_sym_COLON_COLON] = ACTIONS(5013), - [anon_sym_PLUS_EQ] = ACTIONS(5013), - [anon_sym_DASH_EQ] = ACTIONS(5013), - [anon_sym_STAR_EQ] = ACTIONS(5013), - [anon_sym_SLASH_EQ] = ACTIONS(5013), - [anon_sym_PERCENT_EQ] = ACTIONS(5013), - [anon_sym_BANG_EQ] = ACTIONS(5011), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5013), - [anon_sym_EQ_EQ] = ACTIONS(5011), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5013), - [anon_sym_LT_EQ] = ACTIONS(5013), - [anon_sym_GT_EQ] = ACTIONS(5013), - [anon_sym_BANGin] = ACTIONS(5013), - [anon_sym_is] = ACTIONS(5011), - [anon_sym_BANGis] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_PERCENT] = ACTIONS(5011), - [anon_sym_as_QMARK] = ACTIONS(5013), - [anon_sym_PLUS_PLUS] = ACTIONS(5013), - [anon_sym_DASH_DASH] = ACTIONS(5013), - [anon_sym_BANG_BANG] = ACTIONS(5013), - [anon_sym_suspend] = ACTIONS(5011), - [anon_sym_sealed] = ACTIONS(5011), - [anon_sym_annotation] = ACTIONS(5011), - [anon_sym_data] = ACTIONS(5011), - [anon_sym_inner] = ACTIONS(5011), - [anon_sym_value] = ACTIONS(5011), - [anon_sym_override] = ACTIONS(5011), - [anon_sym_lateinit] = ACTIONS(5011), - [anon_sym_public] = ACTIONS(5011), - [anon_sym_private] = ACTIONS(5011), - [anon_sym_internal] = ACTIONS(5011), - [anon_sym_protected] = ACTIONS(5011), - [anon_sym_tailrec] = ACTIONS(5011), - [anon_sym_operator] = ACTIONS(5011), - [anon_sym_infix] = ACTIONS(5011), - [anon_sym_inline] = ACTIONS(5011), - [anon_sym_external] = ACTIONS(5011), - [sym_property_modifier] = ACTIONS(5011), - [anon_sym_abstract] = ACTIONS(5011), - [anon_sym_final] = ACTIONS(5011), - [anon_sym_open] = ACTIONS(5011), - [anon_sym_vararg] = ACTIONS(5011), - [anon_sym_noinline] = ACTIONS(5011), - [anon_sym_crossinline] = ACTIONS(5011), - [anon_sym_expect] = ACTIONS(5011), - [anon_sym_actual] = ACTIONS(5011), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5013), - [sym__automatic_semicolon] = ACTIONS(5013), - [sym_safe_nav] = ACTIONS(5013), - [sym_multiline_comment] = ACTIONS(3), - }, - [3923] = { - [sym__alpha_identifier] = ACTIONS(5007), - [anon_sym_AT] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_DOT] = ACTIONS(5007), - [anon_sym_as] = ACTIONS(5007), - [anon_sym_EQ] = ACTIONS(5007), - [anon_sym_LBRACE] = ACTIONS(5009), - [anon_sym_RBRACE] = ACTIONS(5009), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_where] = ACTIONS(5007), - [anon_sym_SEMI] = ACTIONS(5009), - [anon_sym_get] = ACTIONS(5007), - [anon_sym_set] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [sym_label] = ACTIONS(5009), - [anon_sym_in] = ACTIONS(5007), - [anon_sym_DOT_DOT] = ACTIONS(5009), - [anon_sym_QMARK_COLON] = ACTIONS(5009), - [anon_sym_AMP_AMP] = ACTIONS(5009), - [anon_sym_PIPE_PIPE] = ACTIONS(5009), - [anon_sym_else] = ACTIONS(5007), - [anon_sym_COLON_COLON] = ACTIONS(5009), - [anon_sym_PLUS_EQ] = ACTIONS(5009), - [anon_sym_DASH_EQ] = ACTIONS(5009), - [anon_sym_STAR_EQ] = ACTIONS(5009), - [anon_sym_SLASH_EQ] = ACTIONS(5009), - [anon_sym_PERCENT_EQ] = ACTIONS(5009), - [anon_sym_BANG_EQ] = ACTIONS(5007), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5009), - [anon_sym_EQ_EQ] = ACTIONS(5007), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5009), - [anon_sym_LT_EQ] = ACTIONS(5009), - [anon_sym_GT_EQ] = ACTIONS(5009), - [anon_sym_BANGin] = ACTIONS(5009), - [anon_sym_is] = ACTIONS(5007), - [anon_sym_BANGis] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_PERCENT] = ACTIONS(5007), - [anon_sym_as_QMARK] = ACTIONS(5009), - [anon_sym_PLUS_PLUS] = ACTIONS(5009), - [anon_sym_DASH_DASH] = ACTIONS(5009), - [anon_sym_BANG_BANG] = ACTIONS(5009), - [anon_sym_suspend] = ACTIONS(5007), - [anon_sym_sealed] = ACTIONS(5007), - [anon_sym_annotation] = ACTIONS(5007), - [anon_sym_data] = ACTIONS(5007), - [anon_sym_inner] = ACTIONS(5007), - [anon_sym_value] = ACTIONS(5007), - [anon_sym_override] = ACTIONS(5007), - [anon_sym_lateinit] = ACTIONS(5007), - [anon_sym_public] = ACTIONS(5007), - [anon_sym_private] = ACTIONS(5007), - [anon_sym_internal] = ACTIONS(5007), - [anon_sym_protected] = ACTIONS(5007), - [anon_sym_tailrec] = ACTIONS(5007), - [anon_sym_operator] = ACTIONS(5007), - [anon_sym_infix] = ACTIONS(5007), - [anon_sym_inline] = ACTIONS(5007), - [anon_sym_external] = ACTIONS(5007), - [sym_property_modifier] = ACTIONS(5007), - [anon_sym_abstract] = ACTIONS(5007), - [anon_sym_final] = ACTIONS(5007), - [anon_sym_open] = ACTIONS(5007), - [anon_sym_vararg] = ACTIONS(5007), - [anon_sym_noinline] = ACTIONS(5007), - [anon_sym_crossinline] = ACTIONS(5007), - [anon_sym_expect] = ACTIONS(5007), - [anon_sym_actual] = ACTIONS(5007), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5009), - [sym__automatic_semicolon] = ACTIONS(5009), - [sym_safe_nav] = ACTIONS(5009), - [sym_multiline_comment] = ACTIONS(3), - }, - [3924] = { - [sym__alpha_identifier] = ACTIONS(5003), - [anon_sym_AT] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5003), - [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_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_value] = 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), - [sym_multiline_comment] = ACTIONS(3), - }, - [3925] = { - [sym__alpha_identifier] = ACTIONS(4995), - [anon_sym_AT] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_DOT] = ACTIONS(4995), - [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_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_value] = 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), - [sym_multiline_comment] = ACTIONS(3), - }, - [3926] = { - [sym_function_body] = STATE(3988), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_PLUS_EQ] = ACTIONS(4262), - [anon_sym_DASH_EQ] = ACTIONS(4262), - [anon_sym_STAR_EQ] = ACTIONS(4262), - [anon_sym_SLASH_EQ] = ACTIONS(4262), - [anon_sym_PERCENT_EQ] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4260), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), - [sym_multiline_comment] = ACTIONS(3), - }, - [3927] = { - [sym__alpha_identifier] = ACTIONS(4415), - [anon_sym_AT] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_as] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_LT] = ACTIONS(4415), - [anon_sym_GT] = ACTIONS(4415), - [anon_sym_where] = ACTIONS(4415), - [anon_sym_SEMI] = ACTIONS(4417), - [anon_sym_get] = ACTIONS(4415), - [anon_sym_set] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [sym_label] = ACTIONS(4417), - [anon_sym_in] = ACTIONS(4415), - [anon_sym_DOT_DOT] = ACTIONS(4417), - [anon_sym_QMARK_COLON] = ACTIONS(4417), - [anon_sym_AMP_AMP] = ACTIONS(4417), - [anon_sym_PIPE_PIPE] = ACTIONS(4417), - [anon_sym_else] = ACTIONS(4415), - [anon_sym_COLON_COLON] = ACTIONS(4417), - [anon_sym_PLUS_EQ] = ACTIONS(4417), - [anon_sym_DASH_EQ] = ACTIONS(4417), - [anon_sym_STAR_EQ] = ACTIONS(4417), - [anon_sym_SLASH_EQ] = ACTIONS(4417), - [anon_sym_PERCENT_EQ] = ACTIONS(4417), - [anon_sym_BANG_EQ] = ACTIONS(4415), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4417), - [anon_sym_EQ_EQ] = ACTIONS(4415), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4417), - [anon_sym_LT_EQ] = ACTIONS(4417), - [anon_sym_GT_EQ] = ACTIONS(4417), - [anon_sym_BANGin] = ACTIONS(4417), - [anon_sym_is] = ACTIONS(4415), - [anon_sym_BANGis] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_SLASH] = ACTIONS(4415), - [anon_sym_PERCENT] = ACTIONS(4415), - [anon_sym_as_QMARK] = ACTIONS(4417), - [anon_sym_PLUS_PLUS] = ACTIONS(4417), - [anon_sym_DASH_DASH] = ACTIONS(4417), - [anon_sym_BANG_BANG] = ACTIONS(4417), - [anon_sym_suspend] = ACTIONS(4415), - [anon_sym_sealed] = ACTIONS(4415), - [anon_sym_annotation] = ACTIONS(4415), - [anon_sym_data] = ACTIONS(4415), - [anon_sym_inner] = ACTIONS(4415), - [anon_sym_value] = ACTIONS(4415), - [anon_sym_override] = ACTIONS(4415), - [anon_sym_lateinit] = ACTIONS(4415), - [anon_sym_public] = ACTIONS(4415), - [anon_sym_private] = ACTIONS(4415), - [anon_sym_internal] = ACTIONS(4415), - [anon_sym_protected] = ACTIONS(4415), - [anon_sym_tailrec] = ACTIONS(4415), - [anon_sym_operator] = ACTIONS(4415), - [anon_sym_infix] = ACTIONS(4415), - [anon_sym_inline] = ACTIONS(4415), - [anon_sym_external] = ACTIONS(4415), - [sym_property_modifier] = ACTIONS(4415), - [anon_sym_abstract] = ACTIONS(4415), - [anon_sym_final] = ACTIONS(4415), - [anon_sym_open] = ACTIONS(4415), - [anon_sym_vararg] = ACTIONS(4415), - [anon_sym_noinline] = ACTIONS(4415), - [anon_sym_crossinline] = ACTIONS(4415), - [anon_sym_expect] = ACTIONS(4415), - [anon_sym_actual] = ACTIONS(4415), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4417), - [sym__automatic_semicolon] = ACTIONS(4417), - [sym_safe_nav] = ACTIONS(4417), - [sym_multiline_comment] = ACTIONS(3), - }, - [3928] = { - [sym__alpha_identifier] = ACTIONS(4979), - [anon_sym_AT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_DOT] = ACTIONS(4979), - [anon_sym_as] = ACTIONS(4979), - [anon_sym_EQ] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_LT] = ACTIONS(4979), - [anon_sym_GT] = ACTIONS(4979), - [anon_sym_where] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4981), - [anon_sym_get] = ACTIONS(4979), - [anon_sym_set] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4979), - [sym_label] = ACTIONS(4981), - [anon_sym_in] = ACTIONS(4979), - [anon_sym_DOT_DOT] = ACTIONS(4981), - [anon_sym_QMARK_COLON] = ACTIONS(4981), - [anon_sym_AMP_AMP] = ACTIONS(4981), - [anon_sym_PIPE_PIPE] = ACTIONS(4981), - [anon_sym_else] = ACTIONS(4979), - [anon_sym_COLON_COLON] = ACTIONS(4981), - [anon_sym_PLUS_EQ] = ACTIONS(4981), - [anon_sym_DASH_EQ] = ACTIONS(4981), - [anon_sym_STAR_EQ] = ACTIONS(4981), - [anon_sym_SLASH_EQ] = ACTIONS(4981), - [anon_sym_PERCENT_EQ] = ACTIONS(4981), - [anon_sym_BANG_EQ] = ACTIONS(4979), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4981), - [anon_sym_EQ_EQ] = ACTIONS(4979), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4981), - [anon_sym_LT_EQ] = ACTIONS(4981), - [anon_sym_GT_EQ] = ACTIONS(4981), - [anon_sym_BANGin] = ACTIONS(4981), - [anon_sym_is] = ACTIONS(4979), - [anon_sym_BANGis] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_SLASH] = ACTIONS(4979), - [anon_sym_PERCENT] = ACTIONS(4979), - [anon_sym_as_QMARK] = ACTIONS(4981), - [anon_sym_PLUS_PLUS] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_BANG_BANG] = ACTIONS(4981), - [anon_sym_suspend] = ACTIONS(4979), - [anon_sym_sealed] = ACTIONS(4979), - [anon_sym_annotation] = ACTIONS(4979), - [anon_sym_data] = ACTIONS(4979), - [anon_sym_inner] = ACTIONS(4979), - [anon_sym_value] = ACTIONS(4979), - [anon_sym_override] = ACTIONS(4979), - [anon_sym_lateinit] = ACTIONS(4979), - [anon_sym_public] = ACTIONS(4979), - [anon_sym_private] = ACTIONS(4979), - [anon_sym_internal] = ACTIONS(4979), - [anon_sym_protected] = ACTIONS(4979), - [anon_sym_tailrec] = ACTIONS(4979), - [anon_sym_operator] = ACTIONS(4979), - [anon_sym_infix] = ACTIONS(4979), - [anon_sym_inline] = ACTIONS(4979), - [anon_sym_external] = ACTIONS(4979), - [sym_property_modifier] = ACTIONS(4979), - [anon_sym_abstract] = ACTIONS(4979), - [anon_sym_final] = ACTIONS(4979), - [anon_sym_open] = ACTIONS(4979), - [anon_sym_vararg] = ACTIONS(4979), - [anon_sym_noinline] = ACTIONS(4979), - [anon_sym_crossinline] = ACTIONS(4979), - [anon_sym_expect] = ACTIONS(4979), - [anon_sym_actual] = ACTIONS(4979), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4981), - [sym__automatic_semicolon] = ACTIONS(4981), - [sym_safe_nav] = ACTIONS(4981), - [sym_multiline_comment] = ACTIONS(3), - }, - [3929] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(7149), - [anon_sym_PIPE_PIPE] = ACTIONS(7151), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(7153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7155), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3930] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(7149), - [anon_sym_PIPE_PIPE] = ACTIONS(7151), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(7153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7155), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3931] = { - [sym__alpha_identifier] = ACTIONS(4991), - [anon_sym_AT] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_DOT] = ACTIONS(4991), - [anon_sym_as] = ACTIONS(4991), - [anon_sym_EQ] = ACTIONS(4991), - [anon_sym_LBRACE] = ACTIONS(4993), - [anon_sym_RBRACE] = ACTIONS(4993), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_where] = ACTIONS(4991), - [anon_sym_SEMI] = ACTIONS(4993), - [anon_sym_get] = ACTIONS(4991), - [anon_sym_set] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [sym_label] = ACTIONS(4993), - [anon_sym_in] = ACTIONS(4991), - [anon_sym_DOT_DOT] = ACTIONS(4993), - [anon_sym_QMARK_COLON] = ACTIONS(4993), - [anon_sym_AMP_AMP] = ACTIONS(4993), - [anon_sym_PIPE_PIPE] = ACTIONS(4993), - [anon_sym_else] = ACTIONS(4991), - [anon_sym_COLON_COLON] = ACTIONS(4993), - [anon_sym_PLUS_EQ] = ACTIONS(4993), - [anon_sym_DASH_EQ] = ACTIONS(4993), - [anon_sym_STAR_EQ] = ACTIONS(4993), - [anon_sym_SLASH_EQ] = ACTIONS(4993), - [anon_sym_PERCENT_EQ] = ACTIONS(4993), - [anon_sym_BANG_EQ] = ACTIONS(4991), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4993), - [anon_sym_EQ_EQ] = ACTIONS(4991), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4993), - [anon_sym_LT_EQ] = ACTIONS(4993), - [anon_sym_GT_EQ] = ACTIONS(4993), - [anon_sym_BANGin] = ACTIONS(4993), - [anon_sym_is] = ACTIONS(4991), - [anon_sym_BANGis] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_PERCENT] = ACTIONS(4991), - [anon_sym_as_QMARK] = ACTIONS(4993), - [anon_sym_PLUS_PLUS] = ACTIONS(4993), - [anon_sym_DASH_DASH] = ACTIONS(4993), - [anon_sym_BANG_BANG] = ACTIONS(4993), - [anon_sym_suspend] = ACTIONS(4991), - [anon_sym_sealed] = ACTIONS(4991), - [anon_sym_annotation] = ACTIONS(4991), - [anon_sym_data] = ACTIONS(4991), - [anon_sym_inner] = ACTIONS(4991), - [anon_sym_value] = ACTIONS(4991), - [anon_sym_override] = ACTIONS(4991), - [anon_sym_lateinit] = ACTIONS(4991), - [anon_sym_public] = ACTIONS(4991), - [anon_sym_private] = ACTIONS(4991), - [anon_sym_internal] = ACTIONS(4991), - [anon_sym_protected] = ACTIONS(4991), - [anon_sym_tailrec] = ACTIONS(4991), - [anon_sym_operator] = ACTIONS(4991), - [anon_sym_infix] = ACTIONS(4991), - [anon_sym_inline] = ACTIONS(4991), - [anon_sym_external] = ACTIONS(4991), - [sym_property_modifier] = ACTIONS(4991), - [anon_sym_abstract] = ACTIONS(4991), - [anon_sym_final] = ACTIONS(4991), - [anon_sym_open] = ACTIONS(4991), - [anon_sym_vararg] = ACTIONS(4991), - [anon_sym_noinline] = ACTIONS(4991), - [anon_sym_crossinline] = ACTIONS(4991), - [anon_sym_expect] = ACTIONS(4991), - [anon_sym_actual] = ACTIONS(4991), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4993), - [sym__automatic_semicolon] = ACTIONS(4993), - [sym_safe_nav] = ACTIONS(4993), - [sym_multiline_comment] = ACTIONS(3), - }, - [3932] = { - [sym__alpha_identifier] = ACTIONS(4967), - [anon_sym_AT] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_DOT] = ACTIONS(4967), - [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_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_value] = 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), - }, - [3933] = { - [sym__alpha_identifier] = ACTIONS(4908), - [anon_sym_AT] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_EQ] = ACTIONS(4908), - [anon_sym_LBRACE] = ACTIONS(4910), - [anon_sym_RBRACE] = ACTIONS(4910), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4908), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_get] = ACTIONS(4908), - [anon_sym_set] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4908), - [sym_label] = ACTIONS(4910), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_DOT_DOT] = ACTIONS(4910), - [anon_sym_QMARK_COLON] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_else] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(4910), - [anon_sym_PLUS_EQ] = ACTIONS(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [anon_sym_BANG_EQ] = ACTIONS(4908), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4908), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), - [anon_sym_LT_EQ] = ACTIONS(4910), - [anon_sym_GT_EQ] = ACTIONS(4910), - [anon_sym_BANGin] = ACTIONS(4910), - [anon_sym_is] = ACTIONS(4908), - [anon_sym_BANGis] = ACTIONS(4910), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4908), - [anon_sym_as_QMARK] = ACTIONS(4910), - [anon_sym_PLUS_PLUS] = ACTIONS(4910), - [anon_sym_DASH_DASH] = ACTIONS(4910), - [anon_sym_BANG_BANG] = ACTIONS(4910), - [anon_sym_suspend] = ACTIONS(4908), - [anon_sym_sealed] = ACTIONS(4908), - [anon_sym_annotation] = ACTIONS(4908), - [anon_sym_data] = ACTIONS(4908), - [anon_sym_inner] = ACTIONS(4908), - [anon_sym_value] = ACTIONS(4908), - [anon_sym_override] = ACTIONS(4908), - [anon_sym_lateinit] = ACTIONS(4908), - [anon_sym_public] = ACTIONS(4908), - [anon_sym_private] = ACTIONS(4908), - [anon_sym_internal] = ACTIONS(4908), - [anon_sym_protected] = ACTIONS(4908), - [anon_sym_tailrec] = ACTIONS(4908), - [anon_sym_operator] = ACTIONS(4908), - [anon_sym_infix] = ACTIONS(4908), - [anon_sym_inline] = ACTIONS(4908), - [anon_sym_external] = ACTIONS(4908), - [sym_property_modifier] = ACTIONS(4908), - [anon_sym_abstract] = ACTIONS(4908), - [anon_sym_final] = ACTIONS(4908), - [anon_sym_open] = ACTIONS(4908), - [anon_sym_vararg] = ACTIONS(4908), - [anon_sym_noinline] = ACTIONS(4908), - [anon_sym_crossinline] = ACTIONS(4908), - [anon_sym_expect] = ACTIONS(4908), - [anon_sym_actual] = ACTIONS(4908), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4910), - [sym__automatic_semicolon] = ACTIONS(4910), - [sym_safe_nav] = ACTIONS(4910), - [sym_multiline_comment] = ACTIONS(3), - }, - [3934] = { - [sym__alpha_identifier] = ACTIONS(4944), - [anon_sym_AT] = ACTIONS(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_EQ] = ACTIONS(4944), - [anon_sym_LBRACE] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4944), - [anon_sym_SEMI] = ACTIONS(4946), - [anon_sym_get] = ACTIONS(4944), - [anon_sym_set] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4944), - [sym_label] = ACTIONS(4946), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_QMARK_COLON] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_else] = ACTIONS(4944), - [anon_sym_COLON_COLON] = ACTIONS(7129), - [anon_sym_PLUS_EQ] = ACTIONS(4946), - [anon_sym_DASH_EQ] = ACTIONS(4946), - [anon_sym_STAR_EQ] = ACTIONS(4946), - [anon_sym_SLASH_EQ] = ACTIONS(4946), - [anon_sym_PERCENT_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4944), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4944), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_BANGin] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4944), - [anon_sym_BANGis] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_as_QMARK] = ACTIONS(4946), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_BANG_BANG] = ACTIONS(4946), - [anon_sym_suspend] = ACTIONS(4944), - [anon_sym_sealed] = ACTIONS(4944), - [anon_sym_annotation] = ACTIONS(4944), - [anon_sym_data] = ACTIONS(4944), - [anon_sym_inner] = ACTIONS(4944), - [anon_sym_value] = ACTIONS(4944), - [anon_sym_override] = ACTIONS(4944), - [anon_sym_lateinit] = ACTIONS(4944), - [anon_sym_public] = ACTIONS(4944), - [anon_sym_private] = ACTIONS(4944), - [anon_sym_internal] = ACTIONS(4944), - [anon_sym_protected] = ACTIONS(4944), - [anon_sym_tailrec] = ACTIONS(4944), - [anon_sym_operator] = ACTIONS(4944), - [anon_sym_infix] = ACTIONS(4944), - [anon_sym_inline] = ACTIONS(4944), - [anon_sym_external] = ACTIONS(4944), - [sym_property_modifier] = ACTIONS(4944), - [anon_sym_abstract] = ACTIONS(4944), - [anon_sym_final] = ACTIONS(4944), - [anon_sym_open] = ACTIONS(4944), - [anon_sym_vararg] = ACTIONS(4944), - [anon_sym_noinline] = ACTIONS(4944), - [anon_sym_crossinline] = ACTIONS(4944), - [anon_sym_expect] = ACTIONS(4944), - [anon_sym_actual] = ACTIONS(4944), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4946), - [sym__automatic_semicolon] = ACTIONS(4946), - [sym_safe_nav] = ACTIONS(4946), - [sym_multiline_comment] = ACTIONS(3), - }, - [3935] = { - [sym__alpha_identifier] = ACTIONS(4955), - [anon_sym_AT] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_as] = ACTIONS(4955), - [anon_sym_EQ] = ACTIONS(4955), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_LT] = ACTIONS(4955), - [anon_sym_GT] = ACTIONS(4955), - [anon_sym_where] = ACTIONS(4955), - [anon_sym_SEMI] = ACTIONS(4957), - [anon_sym_get] = ACTIONS(4955), - [anon_sym_set] = ACTIONS(4955), - [anon_sym_STAR] = ACTIONS(4955), - [sym_label] = ACTIONS(4957), - [anon_sym_in] = ACTIONS(4955), - [anon_sym_DOT_DOT] = ACTIONS(4957), - [anon_sym_QMARK_COLON] = ACTIONS(4957), - [anon_sym_AMP_AMP] = ACTIONS(4957), - [anon_sym_PIPE_PIPE] = ACTIONS(4957), - [anon_sym_else] = ACTIONS(4955), - [anon_sym_COLON_COLON] = ACTIONS(4957), - [anon_sym_PLUS_EQ] = ACTIONS(4957), - [anon_sym_DASH_EQ] = ACTIONS(4957), - [anon_sym_STAR_EQ] = ACTIONS(4957), - [anon_sym_SLASH_EQ] = ACTIONS(4957), - [anon_sym_PERCENT_EQ] = ACTIONS(4957), - [anon_sym_BANG_EQ] = ACTIONS(4955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4957), - [anon_sym_EQ_EQ] = ACTIONS(4955), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4957), - [anon_sym_LT_EQ] = ACTIONS(4957), - [anon_sym_GT_EQ] = ACTIONS(4957), - [anon_sym_BANGin] = ACTIONS(4957), - [anon_sym_is] = ACTIONS(4955), - [anon_sym_BANGis] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4955), - [anon_sym_DASH] = ACTIONS(4955), - [anon_sym_SLASH] = ACTIONS(4955), - [anon_sym_PERCENT] = ACTIONS(4955), - [anon_sym_as_QMARK] = ACTIONS(4957), - [anon_sym_PLUS_PLUS] = ACTIONS(4957), - [anon_sym_DASH_DASH] = ACTIONS(4957), - [anon_sym_BANG_BANG] = ACTIONS(4957), - [anon_sym_suspend] = ACTIONS(4955), - [anon_sym_sealed] = ACTIONS(4955), - [anon_sym_annotation] = ACTIONS(4955), - [anon_sym_data] = ACTIONS(4955), - [anon_sym_inner] = ACTIONS(4955), - [anon_sym_value] = ACTIONS(4955), - [anon_sym_override] = ACTIONS(4955), - [anon_sym_lateinit] = ACTIONS(4955), - [anon_sym_public] = ACTIONS(4955), - [anon_sym_private] = ACTIONS(4955), - [anon_sym_internal] = ACTIONS(4955), - [anon_sym_protected] = ACTIONS(4955), - [anon_sym_tailrec] = ACTIONS(4955), - [anon_sym_operator] = ACTIONS(4955), - [anon_sym_infix] = ACTIONS(4955), - [anon_sym_inline] = ACTIONS(4955), - [anon_sym_external] = ACTIONS(4955), - [sym_property_modifier] = ACTIONS(4955), - [anon_sym_abstract] = ACTIONS(4955), - [anon_sym_final] = ACTIONS(4955), - [anon_sym_open] = ACTIONS(4955), - [anon_sym_vararg] = ACTIONS(4955), - [anon_sym_noinline] = ACTIONS(4955), - [anon_sym_crossinline] = ACTIONS(4955), - [anon_sym_expect] = ACTIONS(4955), - [anon_sym_actual] = ACTIONS(4955), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4957), - [sym__automatic_semicolon] = ACTIONS(4957), - [sym_safe_nav] = ACTIONS(4957), - [sym_multiline_comment] = ACTIONS(3), - }, - [3936] = { - [sym__alpha_identifier] = ACTIONS(4894), - [anon_sym_AT] = ACTIONS(4896), - [anon_sym_LBRACK] = ACTIONS(4896), - [anon_sym_DOT] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_EQ] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4896), - [anon_sym_RBRACE] = ACTIONS(4896), - [anon_sym_LPAREN] = ACTIONS(4896), - [anon_sym_COMMA] = ACTIONS(4896), - [anon_sym_LT] = ACTIONS(4894), - [anon_sym_GT] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_SEMI] = ACTIONS(4896), - [anon_sym_get] = ACTIONS(4894), - [anon_sym_set] = ACTIONS(4894), - [anon_sym_STAR] = ACTIONS(4894), - [sym_label] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4896), - [anon_sym_QMARK_COLON] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4896), - [anon_sym_PIPE_PIPE] = ACTIONS(4896), - [anon_sym_else] = ACTIONS(4894), - [anon_sym_COLON_COLON] = ACTIONS(4896), - [anon_sym_PLUS_EQ] = ACTIONS(4896), - [anon_sym_DASH_EQ] = ACTIONS(4896), - [anon_sym_STAR_EQ] = ACTIONS(4896), - [anon_sym_SLASH_EQ] = ACTIONS(4896), - [anon_sym_PERCENT_EQ] = ACTIONS(4896), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4896), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4896), - [anon_sym_LT_EQ] = ACTIONS(4896), - [anon_sym_GT_EQ] = ACTIONS(4896), - [anon_sym_BANGin] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_BANGis] = ACTIONS(4896), - [anon_sym_PLUS] = ACTIONS(4894), - [anon_sym_DASH] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4894), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_as_QMARK] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4896), - [anon_sym_DASH_DASH] = ACTIONS(4896), - [anon_sym_BANG_BANG] = ACTIONS(4896), - [anon_sym_suspend] = ACTIONS(4894), - [anon_sym_sealed] = ACTIONS(4894), - [anon_sym_annotation] = ACTIONS(4894), - [anon_sym_data] = ACTIONS(4894), - [anon_sym_inner] = ACTIONS(4894), - [anon_sym_value] = ACTIONS(4894), - [anon_sym_override] = ACTIONS(4894), - [anon_sym_lateinit] = ACTIONS(4894), - [anon_sym_public] = ACTIONS(4894), - [anon_sym_private] = ACTIONS(4894), - [anon_sym_internal] = ACTIONS(4894), - [anon_sym_protected] = ACTIONS(4894), - [anon_sym_tailrec] = ACTIONS(4894), - [anon_sym_operator] = ACTIONS(4894), - [anon_sym_infix] = ACTIONS(4894), - [anon_sym_inline] = ACTIONS(4894), - [anon_sym_external] = ACTIONS(4894), - [sym_property_modifier] = ACTIONS(4894), - [anon_sym_abstract] = ACTIONS(4894), - [anon_sym_final] = ACTIONS(4894), - [anon_sym_open] = ACTIONS(4894), - [anon_sym_vararg] = ACTIONS(4894), - [anon_sym_noinline] = ACTIONS(4894), - [anon_sym_crossinline] = ACTIONS(4894), - [anon_sym_expect] = ACTIONS(4894), - [anon_sym_actual] = ACTIONS(4894), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4896), - [sym__automatic_semicolon] = ACTIONS(4896), - [sym_safe_nav] = ACTIONS(4896), - [sym_multiline_comment] = ACTIONS(3), - }, - [3937] = { - [sym_function_body] = STATE(3890), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [3875] = { + [sym__alpha_identifier] = ACTIONS(5029), + [anon_sym_AT] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_DOT] = ACTIONS(5029), + [anon_sym_as] = ACTIONS(5029), + [anon_sym_EQ] = ACTIONS(5029), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_where] = ACTIONS(5029), + [anon_sym_SEMI] = ACTIONS(5031), + [anon_sym_get] = ACTIONS(5029), + [anon_sym_set] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [sym_label] = ACTIONS(5031), + [anon_sym_in] = ACTIONS(5029), + [anon_sym_DOT_DOT] = ACTIONS(5031), + [anon_sym_QMARK_COLON] = ACTIONS(5031), + [anon_sym_AMP_AMP] = ACTIONS(5031), + [anon_sym_PIPE_PIPE] = ACTIONS(5031), + [anon_sym_else] = ACTIONS(5029), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym_PLUS_EQ] = ACTIONS(5031), + [anon_sym_DASH_EQ] = ACTIONS(5031), + [anon_sym_STAR_EQ] = ACTIONS(5031), + [anon_sym_SLASH_EQ] = ACTIONS(5031), + [anon_sym_PERCENT_EQ] = ACTIONS(5031), + [anon_sym_BANG_EQ] = ACTIONS(5029), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5031), + [anon_sym_EQ_EQ] = ACTIONS(5029), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5031), + [anon_sym_LT_EQ] = ACTIONS(5031), + [anon_sym_GT_EQ] = ACTIONS(5031), + [anon_sym_BANGin] = ACTIONS(5031), + [anon_sym_is] = ACTIONS(5029), + [anon_sym_BANGis] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_PERCENT] = ACTIONS(5029), + [anon_sym_as_QMARK] = ACTIONS(5031), + [anon_sym_PLUS_PLUS] = ACTIONS(5031), + [anon_sym_DASH_DASH] = ACTIONS(5031), + [anon_sym_BANG_BANG] = ACTIONS(5031), + [anon_sym_suspend] = ACTIONS(5029), + [anon_sym_sealed] = ACTIONS(5029), + [anon_sym_annotation] = ACTIONS(5029), + [anon_sym_data] = ACTIONS(5029), + [anon_sym_inner] = ACTIONS(5029), + [anon_sym_value] = ACTIONS(5029), + [anon_sym_override] = ACTIONS(5029), + [anon_sym_lateinit] = ACTIONS(5029), + [anon_sym_public] = ACTIONS(5029), + [anon_sym_private] = ACTIONS(5029), + [anon_sym_internal] = ACTIONS(5029), + [anon_sym_protected] = ACTIONS(5029), + [anon_sym_tailrec] = ACTIONS(5029), + [anon_sym_operator] = ACTIONS(5029), + [anon_sym_infix] = ACTIONS(5029), + [anon_sym_inline] = ACTIONS(5029), + [anon_sym_external] = ACTIONS(5029), + [sym_property_modifier] = ACTIONS(5029), + [anon_sym_abstract] = ACTIONS(5029), + [anon_sym_final] = ACTIONS(5029), + [anon_sym_open] = ACTIONS(5029), + [anon_sym_vararg] = ACTIONS(5029), + [anon_sym_noinline] = ACTIONS(5029), + [anon_sym_crossinline] = ACTIONS(5029), + [anon_sym_expect] = ACTIONS(5029), + [anon_sym_actual] = ACTIONS(5029), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5031), + [sym__automatic_semicolon] = ACTIONS(5031), + [sym_safe_nav] = ACTIONS(5031), [sym_multiline_comment] = ACTIONS(3), }, - [3938] = { - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_DOT] = ACTIONS(4018), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4018), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [sym_label] = ACTIONS(4020), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4020), - [anon_sym_PLUS_EQ] = ACTIONS(4020), - [anon_sym_DASH_EQ] = ACTIONS(4020), - [anon_sym_STAR_EQ] = ACTIONS(4020), - [anon_sym_SLASH_EQ] = ACTIONS(4020), - [anon_sym_PERCENT_EQ] = ACTIONS(4020), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4020), - [anon_sym_DASH_DASH] = ACTIONS(4020), - [anon_sym_BANG_BANG] = ACTIONS(4020), - [anon_sym_suspend] = ACTIONS(4018), - [anon_sym_sealed] = ACTIONS(4018), - [anon_sym_annotation] = ACTIONS(4018), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_override] = ACTIONS(4018), - [anon_sym_lateinit] = ACTIONS(4018), - [anon_sym_public] = ACTIONS(4018), - [anon_sym_private] = ACTIONS(4018), - [anon_sym_internal] = ACTIONS(4018), - [anon_sym_protected] = ACTIONS(4018), - [anon_sym_tailrec] = ACTIONS(4018), - [anon_sym_operator] = ACTIONS(4018), - [anon_sym_infix] = ACTIONS(4018), - [anon_sym_inline] = ACTIONS(4018), - [anon_sym_external] = ACTIONS(4018), - [sym_property_modifier] = ACTIONS(4018), - [anon_sym_abstract] = ACTIONS(4018), - [anon_sym_final] = ACTIONS(4018), - [anon_sym_open] = ACTIONS(4018), - [anon_sym_vararg] = ACTIONS(4018), - [anon_sym_noinline] = ACTIONS(4018), - [anon_sym_crossinline] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4020), - [sym__automatic_semicolon] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4020), + [3876] = { + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_EQ] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(4154), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(4152), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4152), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_PLUS_EQ] = ACTIONS(4154), + [anon_sym_DASH_EQ] = ACTIONS(4154), + [anon_sym_STAR_EQ] = ACTIONS(4154), + [anon_sym_SLASH_EQ] = ACTIONS(4154), + [anon_sym_PERCENT_EQ] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4152), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), [sym_multiline_comment] = ACTIONS(3), }, - [3939] = { + [3877] = { [sym__alpha_identifier] = ACTIONS(4932), [anon_sym_AT] = ACTIONS(4934), [anon_sym_LBRACK] = ACTIONS(4934), @@ -436525,2007 +431834,727 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4934), [sym_multiline_comment] = ACTIONS(3), }, - [3940] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3941] = { - [sym_function_body] = STATE(3128), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_object] = ACTIONS(4175), - [anon_sym_fun] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_this] = ACTIONS(4175), - [anon_sym_super] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4175), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_null] = ACTIONS(4175), - [anon_sym_if] = ACTIONS(4175), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_when] = ACTIONS(4175), - [anon_sym_try] = ACTIONS(4175), - [anon_sym_throw] = ACTIONS(4175), - [anon_sym_return] = ACTIONS(4175), - [anon_sym_continue] = ACTIONS(4175), - [anon_sym_break] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4175), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4177), - [anon_sym_continue_AT] = ACTIONS(4177), - [anon_sym_break_AT] = ACTIONS(4177), - [anon_sym_this_AT] = ACTIONS(4177), - [anon_sym_super_AT] = ACTIONS(4177), - [sym_real_literal] = ACTIONS(4177), - [sym_integer_literal] = ACTIONS(4175), - [sym_hex_literal] = ACTIONS(4177), - [sym_bin_literal] = ACTIONS(4177), - [anon_sym_true] = ACTIONS(4175), - [anon_sym_false] = ACTIONS(4175), - [anon_sym_SQUOTE] = ACTIONS(4177), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4177), - }, - [3942] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3154), - [anon_sym_DASH_EQ] = ACTIONS(3154), - [anon_sym_STAR_EQ] = ACTIONS(3154), - [anon_sym_SLASH_EQ] = ACTIONS(3154), - [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3943] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(7153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7155), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3944] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(7149), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(7153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7155), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3945] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3946] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3947] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3948] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_while] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3949] = { - [sym_function_body] = STATE(4005), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = 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_value] = 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), - }, - [3950] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3951] = { - [sym_type_constraints] = STATE(3355), - [sym_enum_class_body] = STATE(3402), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(7163), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_RBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [anon_sym_DASH_GT] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), - [sym_multiline_comment] = ACTIONS(3), - }, - [3952] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3953] = { - [sym__alpha_identifier] = ACTIONS(4904), - [anon_sym_AT] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4904), - [anon_sym_as] = ACTIONS(4904), - [anon_sym_EQ] = ACTIONS(4904), - [anon_sym_LBRACE] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4904), - [anon_sym_GT] = ACTIONS(4904), - [anon_sym_where] = ACTIONS(4904), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_get] = ACTIONS(4904), - [anon_sym_set] = ACTIONS(4904), - [anon_sym_STAR] = ACTIONS(4904), - [sym_label] = ACTIONS(4906), - [anon_sym_in] = ACTIONS(4904), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_QMARK_COLON] = ACTIONS(4906), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_else] = ACTIONS(4904), - [anon_sym_COLON_COLON] = ACTIONS(4906), - [anon_sym_PLUS_EQ] = ACTIONS(4906), - [anon_sym_DASH_EQ] = ACTIONS(4906), - [anon_sym_STAR_EQ] = ACTIONS(4906), - [anon_sym_SLASH_EQ] = ACTIONS(4906), - [anon_sym_PERCENT_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4904), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4904), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_BANGin] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4904), - [anon_sym_BANGis] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4904), - [anon_sym_DASH] = ACTIONS(4904), - [anon_sym_SLASH] = ACTIONS(4904), - [anon_sym_PERCENT] = ACTIONS(4904), - [anon_sym_as_QMARK] = ACTIONS(4906), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_BANG_BANG] = ACTIONS(4906), - [anon_sym_suspend] = ACTIONS(4904), - [anon_sym_sealed] = ACTIONS(4904), - [anon_sym_annotation] = ACTIONS(4904), - [anon_sym_data] = ACTIONS(4904), - [anon_sym_inner] = ACTIONS(4904), - [anon_sym_value] = ACTIONS(4904), - [anon_sym_override] = ACTIONS(4904), - [anon_sym_lateinit] = ACTIONS(4904), - [anon_sym_public] = ACTIONS(4904), - [anon_sym_private] = ACTIONS(4904), - [anon_sym_internal] = ACTIONS(4904), - [anon_sym_protected] = ACTIONS(4904), - [anon_sym_tailrec] = ACTIONS(4904), - [anon_sym_operator] = ACTIONS(4904), - [anon_sym_infix] = ACTIONS(4904), - [anon_sym_inline] = ACTIONS(4904), - [anon_sym_external] = ACTIONS(4904), - [sym_property_modifier] = ACTIONS(4904), - [anon_sym_abstract] = ACTIONS(4904), - [anon_sym_final] = ACTIONS(4904), - [anon_sym_open] = ACTIONS(4904), - [anon_sym_vararg] = ACTIONS(4904), - [anon_sym_noinline] = ACTIONS(4904), - [anon_sym_crossinline] = ACTIONS(4904), - [anon_sym_expect] = ACTIONS(4904), - [anon_sym_actual] = ACTIONS(4904), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4906), - [sym__automatic_semicolon] = ACTIONS(4906), - [sym_safe_nav] = ACTIONS(4906), - [sym_multiline_comment] = ACTIONS(3), - }, - [3954] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(7149), - [anon_sym_PIPE_PIPE] = ACTIONS(7151), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(7153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7155), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [3955] = { - [sym_type_constraints] = STATE(3335), - [sym_enum_class_body] = STATE(3480), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(6162), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_RBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [anon_sym_DASH_GT] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [3878] = { + [sym__alpha_identifier] = ACTIONS(4944), + [anon_sym_AT] = ACTIONS(4946), + [anon_sym_LBRACK] = ACTIONS(4946), + [anon_sym_DOT] = ACTIONS(4944), + [anon_sym_as] = ACTIONS(4944), + [anon_sym_EQ] = ACTIONS(4944), + [anon_sym_LBRACE] = ACTIONS(4946), + [anon_sym_RBRACE] = ACTIONS(4946), + [anon_sym_LPAREN] = ACTIONS(4946), + [anon_sym_COMMA] = ACTIONS(4946), + [anon_sym_LT] = ACTIONS(4944), + [anon_sym_GT] = ACTIONS(4944), + [anon_sym_where] = ACTIONS(4944), + [anon_sym_SEMI] = ACTIONS(4946), + [anon_sym_get] = ACTIONS(4944), + [anon_sym_set] = ACTIONS(4944), + [anon_sym_STAR] = ACTIONS(4944), + [sym_label] = ACTIONS(4946), + [anon_sym_in] = ACTIONS(4944), + [anon_sym_DOT_DOT] = ACTIONS(4946), + [anon_sym_QMARK_COLON] = ACTIONS(4946), + [anon_sym_AMP_AMP] = ACTIONS(4946), + [anon_sym_PIPE_PIPE] = ACTIONS(4946), + [anon_sym_else] = ACTIONS(4944), + [anon_sym_COLON_COLON] = ACTIONS(4946), + [anon_sym_PLUS_EQ] = ACTIONS(4946), + [anon_sym_DASH_EQ] = ACTIONS(4946), + [anon_sym_STAR_EQ] = ACTIONS(4946), + [anon_sym_SLASH_EQ] = ACTIONS(4946), + [anon_sym_PERCENT_EQ] = ACTIONS(4946), + [anon_sym_BANG_EQ] = ACTIONS(4944), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4946), + [anon_sym_EQ_EQ] = ACTIONS(4944), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4946), + [anon_sym_LT_EQ] = ACTIONS(4946), + [anon_sym_GT_EQ] = ACTIONS(4946), + [anon_sym_BANGin] = ACTIONS(4946), + [anon_sym_is] = ACTIONS(4944), + [anon_sym_BANGis] = ACTIONS(4946), + [anon_sym_PLUS] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_SLASH] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_as_QMARK] = ACTIONS(4946), + [anon_sym_PLUS_PLUS] = ACTIONS(4946), + [anon_sym_DASH_DASH] = ACTIONS(4946), + [anon_sym_BANG_BANG] = ACTIONS(4946), + [anon_sym_suspend] = ACTIONS(4944), + [anon_sym_sealed] = ACTIONS(4944), + [anon_sym_annotation] = ACTIONS(4944), + [anon_sym_data] = ACTIONS(4944), + [anon_sym_inner] = ACTIONS(4944), + [anon_sym_value] = ACTIONS(4944), + [anon_sym_override] = ACTIONS(4944), + [anon_sym_lateinit] = ACTIONS(4944), + [anon_sym_public] = ACTIONS(4944), + [anon_sym_private] = ACTIONS(4944), + [anon_sym_internal] = ACTIONS(4944), + [anon_sym_protected] = ACTIONS(4944), + [anon_sym_tailrec] = ACTIONS(4944), + [anon_sym_operator] = ACTIONS(4944), + [anon_sym_infix] = ACTIONS(4944), + [anon_sym_inline] = ACTIONS(4944), + [anon_sym_external] = ACTIONS(4944), + [sym_property_modifier] = ACTIONS(4944), + [anon_sym_abstract] = ACTIONS(4944), + [anon_sym_final] = ACTIONS(4944), + [anon_sym_open] = ACTIONS(4944), + [anon_sym_vararg] = ACTIONS(4944), + [anon_sym_noinline] = ACTIONS(4944), + [anon_sym_crossinline] = ACTIONS(4944), + [anon_sym_expect] = ACTIONS(4944), + [anon_sym_actual] = ACTIONS(4944), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(4946), + [sym__automatic_semicolon] = ACTIONS(4946), + [sym_safe_nav] = ACTIONS(4946), [sym_multiline_comment] = ACTIONS(3), }, - [3956] = { - [sym_class_body] = STATE(3510), - [sym_type_constraints] = STATE(3312), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7165), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_RBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [anon_sym_DASH_GT] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [3879] = { + [sym__alpha_identifier] = ACTIONS(4999), + [anon_sym_AT] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(4999), + [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_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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, - [3957] = { - [sym__alpha_identifier] = ACTIONS(5043), - [anon_sym_AT] = ACTIONS(5045), - [anon_sym_LBRACK] = ACTIONS(5045), - [anon_sym_DOT] = ACTIONS(5043), - [anon_sym_as] = ACTIONS(5043), - [anon_sym_EQ] = ACTIONS(5043), - [anon_sym_LBRACE] = ACTIONS(5045), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_LPAREN] = ACTIONS(5045), - [anon_sym_COMMA] = ACTIONS(5045), - [anon_sym_LT] = ACTIONS(5043), - [anon_sym_GT] = ACTIONS(5043), - [anon_sym_where] = ACTIONS(5043), - [anon_sym_SEMI] = ACTIONS(5045), - [anon_sym_get] = ACTIONS(5043), - [anon_sym_set] = ACTIONS(5043), - [anon_sym_STAR] = ACTIONS(5043), - [sym_label] = ACTIONS(5045), - [anon_sym_in] = ACTIONS(5043), - [anon_sym_DOT_DOT] = ACTIONS(5045), - [anon_sym_QMARK_COLON] = ACTIONS(5045), - [anon_sym_AMP_AMP] = ACTIONS(5045), - [anon_sym_PIPE_PIPE] = ACTIONS(5045), - [anon_sym_else] = ACTIONS(5043), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_PLUS_EQ] = ACTIONS(5045), - [anon_sym_DASH_EQ] = ACTIONS(5045), - [anon_sym_STAR_EQ] = ACTIONS(5045), - [anon_sym_SLASH_EQ] = ACTIONS(5045), - [anon_sym_PERCENT_EQ] = ACTIONS(5045), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5045), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5045), - [anon_sym_GT_EQ] = ACTIONS(5045), - [anon_sym_BANGin] = ACTIONS(5045), - [anon_sym_is] = ACTIONS(5043), - [anon_sym_BANGis] = ACTIONS(5045), - [anon_sym_PLUS] = ACTIONS(5043), - [anon_sym_DASH] = ACTIONS(5043), - [anon_sym_SLASH] = ACTIONS(5043), - [anon_sym_PERCENT] = ACTIONS(5043), - [anon_sym_as_QMARK] = ACTIONS(5045), - [anon_sym_PLUS_PLUS] = ACTIONS(5045), - [anon_sym_DASH_DASH] = ACTIONS(5045), - [anon_sym_BANG_BANG] = ACTIONS(5045), - [anon_sym_suspend] = ACTIONS(5043), - [anon_sym_sealed] = ACTIONS(5043), - [anon_sym_annotation] = ACTIONS(5043), - [anon_sym_data] = ACTIONS(5043), - [anon_sym_inner] = ACTIONS(5043), - [anon_sym_value] = ACTIONS(5043), - [anon_sym_override] = ACTIONS(5043), - [anon_sym_lateinit] = ACTIONS(5043), - [anon_sym_public] = ACTIONS(5043), - [anon_sym_private] = ACTIONS(5043), - [anon_sym_internal] = ACTIONS(5043), - [anon_sym_protected] = ACTIONS(5043), - [anon_sym_tailrec] = ACTIONS(5043), - [anon_sym_operator] = ACTIONS(5043), - [anon_sym_infix] = ACTIONS(5043), - [anon_sym_inline] = ACTIONS(5043), - [anon_sym_external] = ACTIONS(5043), - [sym_property_modifier] = ACTIONS(5043), - [anon_sym_abstract] = ACTIONS(5043), - [anon_sym_final] = ACTIONS(5043), - [anon_sym_open] = ACTIONS(5043), - [anon_sym_vararg] = ACTIONS(5043), - [anon_sym_noinline] = ACTIONS(5043), - [anon_sym_crossinline] = ACTIONS(5043), - [anon_sym_expect] = ACTIONS(5043), - [anon_sym_actual] = ACTIONS(5043), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5045), - [sym__automatic_semicolon] = ACTIONS(5045), - [sym_safe_nav] = ACTIONS(5045), + [3880] = { + [sym__alpha_identifier] = ACTIONS(4928), + [anon_sym_AT] = ACTIONS(4930), + [anon_sym_LBRACK] = ACTIONS(4930), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_as] = ACTIONS(4928), + [anon_sym_EQ] = ACTIONS(4928), + [anon_sym_LBRACE] = ACTIONS(4930), + [anon_sym_RBRACE] = ACTIONS(4930), + [anon_sym_LPAREN] = ACTIONS(4930), + [anon_sym_COMMA] = ACTIONS(4930), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_where] = ACTIONS(4928), + [anon_sym_SEMI] = ACTIONS(4930), + [anon_sym_get] = ACTIONS(4928), + [anon_sym_set] = ACTIONS(4928), + [anon_sym_STAR] = ACTIONS(4928), + [sym_label] = ACTIONS(4930), + [anon_sym_in] = ACTIONS(4928), + [anon_sym_DOT_DOT] = ACTIONS(4930), + [anon_sym_QMARK_COLON] = ACTIONS(4930), + [anon_sym_AMP_AMP] = ACTIONS(4930), + [anon_sym_PIPE_PIPE] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4928), + [anon_sym_COLON_COLON] = ACTIONS(4930), + [anon_sym_PLUS_EQ] = ACTIONS(4930), + [anon_sym_DASH_EQ] = ACTIONS(4930), + [anon_sym_STAR_EQ] = ACTIONS(4930), + [anon_sym_SLASH_EQ] = ACTIONS(4930), + [anon_sym_PERCENT_EQ] = ACTIONS(4930), + [anon_sym_BANG_EQ] = ACTIONS(4928), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4928), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4930), + [anon_sym_LT_EQ] = ACTIONS(4930), + [anon_sym_GT_EQ] = ACTIONS(4930), + [anon_sym_BANGin] = ACTIONS(4930), + [anon_sym_is] = ACTIONS(4928), + [anon_sym_BANGis] = ACTIONS(4930), + [anon_sym_PLUS] = ACTIONS(4928), + [anon_sym_DASH] = ACTIONS(4928), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4928), + [anon_sym_as_QMARK] = ACTIONS(4930), + [anon_sym_PLUS_PLUS] = ACTIONS(4930), + [anon_sym_DASH_DASH] = ACTIONS(4930), + [anon_sym_BANG_BANG] = ACTIONS(4930), + [anon_sym_suspend] = ACTIONS(4928), + [anon_sym_sealed] = ACTIONS(4928), + [anon_sym_annotation] = ACTIONS(4928), + [anon_sym_data] = ACTIONS(4928), + [anon_sym_inner] = ACTIONS(4928), + [anon_sym_value] = ACTIONS(4928), + [anon_sym_override] = ACTIONS(4928), + [anon_sym_lateinit] = ACTIONS(4928), + [anon_sym_public] = ACTIONS(4928), + [anon_sym_private] = ACTIONS(4928), + [anon_sym_internal] = ACTIONS(4928), + [anon_sym_protected] = ACTIONS(4928), + [anon_sym_tailrec] = ACTIONS(4928), + [anon_sym_operator] = ACTIONS(4928), + [anon_sym_infix] = ACTIONS(4928), + [anon_sym_inline] = ACTIONS(4928), + [anon_sym_external] = ACTIONS(4928), + [sym_property_modifier] = ACTIONS(4928), + [anon_sym_abstract] = ACTIONS(4928), + [anon_sym_final] = ACTIONS(4928), + [anon_sym_open] = ACTIONS(4928), + [anon_sym_vararg] = ACTIONS(4928), + [anon_sym_noinline] = ACTIONS(4928), + [anon_sym_crossinline] = ACTIONS(4928), + [anon_sym_expect] = ACTIONS(4928), + [anon_sym_actual] = ACTIONS(4928), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4930), + [sym__automatic_semicolon] = ACTIONS(4930), + [sym_safe_nav] = ACTIONS(4930), [sym_multiline_comment] = ACTIONS(3), }, - [3958] = { - [sym__alpha_identifier] = ACTIONS(1429), - [anon_sym_AT] = ACTIONS(1427), - [anon_sym_LBRACK] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1427), - [anon_sym_RBRACE] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1427), - [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1429), - [anon_sym_where] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1427), - [anon_sym_get] = ACTIONS(1429), - [anon_sym_set] = ACTIONS(1429), - [anon_sym_STAR] = ACTIONS(1429), - [sym_label] = ACTIONS(1427), - [anon_sym_in] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_QMARK_COLON] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1427), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [anon_sym_DASH_EQ] = ACTIONS(1427), - [anon_sym_STAR_EQ] = ACTIONS(1427), - [anon_sym_SLASH_EQ] = ACTIONS(1427), - [anon_sym_PERCENT_EQ] = ACTIONS(1427), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1427), - [anon_sym_BANGin] = ACTIONS(1427), - [anon_sym_is] = ACTIONS(1429), - [anon_sym_BANGis] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1429), - [anon_sym_DASH] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1429), - [anon_sym_PERCENT] = ACTIONS(1429), - [anon_sym_as_QMARK] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), - [anon_sym_BANG_BANG] = ACTIONS(1427), - [anon_sym_suspend] = ACTIONS(1429), - [anon_sym_sealed] = ACTIONS(1429), - [anon_sym_annotation] = ACTIONS(1429), - [anon_sym_data] = ACTIONS(1429), - [anon_sym_inner] = ACTIONS(1429), - [anon_sym_value] = ACTIONS(1429), - [anon_sym_override] = ACTIONS(1429), - [anon_sym_lateinit] = ACTIONS(1429), - [anon_sym_public] = ACTIONS(1429), - [anon_sym_private] = ACTIONS(1429), - [anon_sym_internal] = ACTIONS(1429), - [anon_sym_protected] = ACTIONS(1429), - [anon_sym_tailrec] = ACTIONS(1429), - [anon_sym_operator] = ACTIONS(1429), - [anon_sym_infix] = ACTIONS(1429), - [anon_sym_inline] = ACTIONS(1429), - [anon_sym_external] = ACTIONS(1429), - [sym_property_modifier] = ACTIONS(1429), - [anon_sym_abstract] = ACTIONS(1429), - [anon_sym_final] = ACTIONS(1429), - [anon_sym_open] = ACTIONS(1429), - [anon_sym_vararg] = ACTIONS(1429), - [anon_sym_noinline] = ACTIONS(1429), - [anon_sym_crossinline] = ACTIONS(1429), - [anon_sym_expect] = ACTIONS(1429), - [anon_sym_actual] = ACTIONS(1429), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1427), - [sym__automatic_semicolon] = ACTIONS(1427), - [sym_safe_nav] = ACTIONS(1427), + [3881] = { + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_RBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), }, - [3959] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(5786), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), + [3882] = { + [sym__alpha_identifier] = ACTIONS(1754), + [anon_sym_AT] = ACTIONS(1756), + [anon_sym_LBRACK] = ACTIONS(1756), + [anon_sym_DOT] = ACTIONS(1754), + [anon_sym_as] = ACTIONS(1754), + [anon_sym_EQ] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1756), + [anon_sym_RBRACE] = ACTIONS(1756), + [anon_sym_LPAREN] = ACTIONS(1756), + [anon_sym_COMMA] = ACTIONS(1756), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_GT] = ACTIONS(1754), + [anon_sym_where] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_get] = ACTIONS(1754), + [anon_sym_set] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [sym_label] = ACTIONS(1756), + [anon_sym_in] = ACTIONS(1754), + [anon_sym_DOT_DOT] = ACTIONS(1756), + [anon_sym_QMARK_COLON] = ACTIONS(1756), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE_PIPE] = ACTIONS(1756), + [anon_sym_else] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1756), + [anon_sym_PLUS_EQ] = ACTIONS(1756), + [anon_sym_DASH_EQ] = ACTIONS(1756), + [anon_sym_STAR_EQ] = ACTIONS(1756), + [anon_sym_SLASH_EQ] = ACTIONS(1756), + [anon_sym_PERCENT_EQ] = ACTIONS(1756), + [anon_sym_BANG_EQ] = ACTIONS(1754), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1756), + [anon_sym_EQ_EQ] = ACTIONS(1754), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1756), + [anon_sym_LT_EQ] = ACTIONS(1756), + [anon_sym_GT_EQ] = ACTIONS(1756), + [anon_sym_BANGin] = ACTIONS(1756), + [anon_sym_is] = ACTIONS(1754), + [anon_sym_BANGis] = ACTIONS(1756), + [anon_sym_PLUS] = ACTIONS(1754), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_SLASH] = ACTIONS(1754), + [anon_sym_PERCENT] = ACTIONS(1754), + [anon_sym_as_QMARK] = ACTIONS(1756), + [anon_sym_PLUS_PLUS] = ACTIONS(1756), + [anon_sym_DASH_DASH] = ACTIONS(1756), + [anon_sym_BANG_BANG] = ACTIONS(1756), + [anon_sym_suspend] = ACTIONS(1754), + [anon_sym_sealed] = ACTIONS(1754), + [anon_sym_annotation] = ACTIONS(1754), + [anon_sym_data] = ACTIONS(1754), + [anon_sym_inner] = ACTIONS(1754), + [anon_sym_value] = ACTIONS(1754), + [anon_sym_override] = ACTIONS(1754), + [anon_sym_lateinit] = ACTIONS(1754), + [anon_sym_public] = ACTIONS(1754), + [anon_sym_private] = ACTIONS(1754), + [anon_sym_internal] = ACTIONS(1754), + [anon_sym_protected] = ACTIONS(1754), + [anon_sym_tailrec] = ACTIONS(1754), + [anon_sym_operator] = ACTIONS(1754), + [anon_sym_infix] = ACTIONS(1754), + [anon_sym_inline] = ACTIONS(1754), + [anon_sym_external] = ACTIONS(1754), + [sym_property_modifier] = ACTIONS(1754), + [anon_sym_abstract] = ACTIONS(1754), + [anon_sym_final] = ACTIONS(1754), + [anon_sym_open] = ACTIONS(1754), + [anon_sym_vararg] = ACTIONS(1754), + [anon_sym_noinline] = ACTIONS(1754), + [anon_sym_crossinline] = ACTIONS(1754), + [anon_sym_expect] = ACTIONS(1754), + [anon_sym_actual] = ACTIONS(1754), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1756), + [sym__automatic_semicolon] = ACTIONS(1756), + [sym_safe_nav] = ACTIONS(1756), [sym_multiline_comment] = ACTIONS(3), }, - [3960] = { - [sym__alpha_identifier] = ACTIONS(4890), - [anon_sym_AT] = ACTIONS(4892), - [anon_sym_LBRACK] = ACTIONS(4892), - [anon_sym_DOT] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4890), - [anon_sym_EQ] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4892), - [anon_sym_LPAREN] = ACTIONS(4892), - [anon_sym_COMMA] = ACTIONS(4892), - [anon_sym_LT] = ACTIONS(4890), - [anon_sym_GT] = ACTIONS(4890), - [anon_sym_where] = ACTIONS(4890), - [anon_sym_SEMI] = ACTIONS(4892), - [anon_sym_get] = ACTIONS(4890), - [anon_sym_set] = ACTIONS(4890), - [anon_sym_STAR] = ACTIONS(4890), - [sym_label] = ACTIONS(4892), - [anon_sym_in] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4892), - [anon_sym_QMARK_COLON] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4892), - [anon_sym_PIPE_PIPE] = ACTIONS(4892), - [anon_sym_else] = ACTIONS(4890), - [anon_sym_COLON_COLON] = ACTIONS(4892), - [anon_sym_PLUS_EQ] = ACTIONS(4892), - [anon_sym_DASH_EQ] = ACTIONS(4892), - [anon_sym_STAR_EQ] = ACTIONS(4892), - [anon_sym_SLASH_EQ] = ACTIONS(4892), - [anon_sym_PERCENT_EQ] = ACTIONS(4892), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4892), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4892), - [anon_sym_LT_EQ] = ACTIONS(4892), - [anon_sym_GT_EQ] = ACTIONS(4892), - [anon_sym_BANGin] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4890), - [anon_sym_BANGis] = ACTIONS(4892), - [anon_sym_PLUS] = ACTIONS(4890), - [anon_sym_DASH] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4890), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_as_QMARK] = ACTIONS(4892), - [anon_sym_PLUS_PLUS] = ACTIONS(4892), - [anon_sym_DASH_DASH] = ACTIONS(4892), - [anon_sym_BANG_BANG] = ACTIONS(4892), - [anon_sym_suspend] = ACTIONS(4890), - [anon_sym_sealed] = ACTIONS(4890), - [anon_sym_annotation] = ACTIONS(4890), - [anon_sym_data] = ACTIONS(4890), - [anon_sym_inner] = ACTIONS(4890), - [anon_sym_value] = ACTIONS(4890), - [anon_sym_override] = ACTIONS(4890), - [anon_sym_lateinit] = ACTIONS(4890), - [anon_sym_public] = ACTIONS(4890), - [anon_sym_private] = ACTIONS(4890), - [anon_sym_internal] = ACTIONS(4890), - [anon_sym_protected] = ACTIONS(4890), - [anon_sym_tailrec] = ACTIONS(4890), - [anon_sym_operator] = ACTIONS(4890), - [anon_sym_infix] = ACTIONS(4890), - [anon_sym_inline] = ACTIONS(4890), - [anon_sym_external] = ACTIONS(4890), - [sym_property_modifier] = ACTIONS(4890), - [anon_sym_abstract] = ACTIONS(4890), - [anon_sym_final] = ACTIONS(4890), - [anon_sym_open] = ACTIONS(4890), - [anon_sym_vararg] = ACTIONS(4890), - [anon_sym_noinline] = ACTIONS(4890), - [anon_sym_crossinline] = ACTIONS(4890), - [anon_sym_expect] = ACTIONS(4890), - [anon_sym_actual] = ACTIONS(4890), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4892), - [sym__automatic_semicolon] = ACTIONS(4892), - [sym_safe_nav] = ACTIONS(4892), + [3883] = { + [sym__alpha_identifier] = ACTIONS(4884), + [anon_sym_AT] = ACTIONS(4886), + [anon_sym_LBRACK] = ACTIONS(4886), + [anon_sym_DOT] = ACTIONS(4884), + [anon_sym_as] = ACTIONS(4884), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4886), + [anon_sym_LPAREN] = ACTIONS(4886), + [anon_sym_COMMA] = ACTIONS(4886), + [anon_sym_LT] = ACTIONS(4884), + [anon_sym_GT] = ACTIONS(4884), + [anon_sym_where] = ACTIONS(4884), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym_get] = ACTIONS(4884), + [anon_sym_set] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [sym_label] = ACTIONS(4886), + [anon_sym_in] = ACTIONS(4884), + [anon_sym_DOT_DOT] = ACTIONS(4886), + [anon_sym_QMARK_COLON] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4886), + [anon_sym_PIPE_PIPE] = ACTIONS(4886), + [anon_sym_else] = ACTIONS(4884), + [anon_sym_COLON_COLON] = ACTIONS(4886), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4884), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4886), + [anon_sym_EQ_EQ] = ACTIONS(4884), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4886), + [anon_sym_LT_EQ] = ACTIONS(4886), + [anon_sym_GT_EQ] = ACTIONS(4886), + [anon_sym_BANGin] = ACTIONS(4886), + [anon_sym_is] = ACTIONS(4884), + [anon_sym_BANGis] = ACTIONS(4886), + [anon_sym_PLUS] = ACTIONS(4884), + [anon_sym_DASH] = ACTIONS(4884), + [anon_sym_SLASH] = ACTIONS(4884), + [anon_sym_PERCENT] = ACTIONS(4884), + [anon_sym_as_QMARK] = ACTIONS(4886), + [anon_sym_PLUS_PLUS] = ACTIONS(4886), + [anon_sym_DASH_DASH] = ACTIONS(4886), + [anon_sym_BANG_BANG] = ACTIONS(4886), + [anon_sym_suspend] = ACTIONS(4884), + [anon_sym_sealed] = ACTIONS(4884), + [anon_sym_annotation] = ACTIONS(4884), + [anon_sym_data] = ACTIONS(4884), + [anon_sym_inner] = ACTIONS(4884), + [anon_sym_value] = ACTIONS(4884), + [anon_sym_override] = ACTIONS(4884), + [anon_sym_lateinit] = ACTIONS(4884), + [anon_sym_public] = ACTIONS(4884), + [anon_sym_private] = ACTIONS(4884), + [anon_sym_internal] = ACTIONS(4884), + [anon_sym_protected] = ACTIONS(4884), + [anon_sym_tailrec] = ACTIONS(4884), + [anon_sym_operator] = ACTIONS(4884), + [anon_sym_infix] = ACTIONS(4884), + [anon_sym_inline] = ACTIONS(4884), + [anon_sym_external] = ACTIONS(4884), + [sym_property_modifier] = ACTIONS(4884), + [anon_sym_abstract] = ACTIONS(4884), + [anon_sym_final] = ACTIONS(4884), + [anon_sym_open] = ACTIONS(4884), + [anon_sym_vararg] = ACTIONS(4884), + [anon_sym_noinline] = ACTIONS(4884), + [anon_sym_crossinline] = ACTIONS(4884), + [anon_sym_expect] = ACTIONS(4884), + [anon_sym_actual] = ACTIONS(4884), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4886), + [sym__automatic_semicolon] = ACTIONS(4886), + [sym_safe_nav] = ACTIONS(4886), [sym_multiline_comment] = ACTIONS(3), }, - [3961] = { - [sym__alpha_identifier] = ACTIONS(7167), - [anon_sym_AT] = ACTIONS(7169), - [anon_sym_LBRACK] = ACTIONS(7169), - [anon_sym_typealias] = ACTIONS(7167), - [anon_sym_class] = ACTIONS(7167), - [anon_sym_interface] = ACTIONS(7167), - [anon_sym_enum] = ACTIONS(7167), - [anon_sym_LBRACE] = ACTIONS(7169), - [anon_sym_LPAREN] = ACTIONS(7169), - [anon_sym_val] = ACTIONS(7167), - [anon_sym_var] = ACTIONS(7167), - [anon_sym_object] = ACTIONS(7167), - [anon_sym_fun] = ACTIONS(7167), - [anon_sym_get] = ACTIONS(7167), - [anon_sym_set] = ACTIONS(7167), - [anon_sym_this] = ACTIONS(7167), - [anon_sym_super] = ACTIONS(7167), - [anon_sym_STAR] = ACTIONS(7169), - [sym_label] = ACTIONS(7167), - [anon_sym_for] = ACTIONS(7167), - [anon_sym_while] = ACTIONS(7167), - [anon_sym_do] = ACTIONS(7167), - [anon_sym_null] = ACTIONS(7167), - [anon_sym_if] = ACTIONS(7167), - [anon_sym_when] = ACTIONS(7167), - [anon_sym_try] = ACTIONS(7167), - [anon_sym_throw] = ACTIONS(7167), - [anon_sym_return] = ACTIONS(7167), - [anon_sym_continue] = ACTIONS(7167), - [anon_sym_break] = ACTIONS(7167), - [anon_sym_COLON_COLON] = ACTIONS(7169), - [anon_sym_PLUS] = ACTIONS(7167), - [anon_sym_DASH] = ACTIONS(7167), - [anon_sym_PLUS_PLUS] = ACTIONS(7169), - [anon_sym_DASH_DASH] = ACTIONS(7169), - [anon_sym_BANG] = ACTIONS(7169), - [anon_sym_suspend] = ACTIONS(7167), - [anon_sym_sealed] = ACTIONS(7167), - [anon_sym_annotation] = ACTIONS(7167), - [anon_sym_data] = ACTIONS(7167), - [anon_sym_inner] = ACTIONS(7167), - [anon_sym_value] = ACTIONS(7167), - [anon_sym_override] = ACTIONS(7167), - [anon_sym_lateinit] = ACTIONS(7167), - [anon_sym_public] = ACTIONS(7167), - [anon_sym_private] = ACTIONS(7167), - [anon_sym_internal] = ACTIONS(7167), - [anon_sym_protected] = ACTIONS(7167), - [anon_sym_tailrec] = ACTIONS(7167), - [anon_sym_operator] = ACTIONS(7167), - [anon_sym_infix] = ACTIONS(7167), - [anon_sym_inline] = ACTIONS(7167), - [anon_sym_external] = ACTIONS(7167), - [sym_property_modifier] = ACTIONS(7167), - [anon_sym_abstract] = ACTIONS(7167), - [anon_sym_final] = ACTIONS(7167), - [anon_sym_open] = ACTIONS(7167), - [anon_sym_vararg] = ACTIONS(7167), - [anon_sym_noinline] = ACTIONS(7167), - [anon_sym_crossinline] = ACTIONS(7167), - [anon_sym_expect] = ACTIONS(7167), - [anon_sym_actual] = ACTIONS(7167), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7169), - [anon_sym_continue_AT] = ACTIONS(7169), - [anon_sym_break_AT] = ACTIONS(7169), - [anon_sym_this_AT] = ACTIONS(7169), - [anon_sym_super_AT] = ACTIONS(7169), - [sym_real_literal] = ACTIONS(7169), - [sym_integer_literal] = ACTIONS(7167), - [sym_hex_literal] = ACTIONS(7169), - [sym_bin_literal] = ACTIONS(7169), - [anon_sym_true] = ACTIONS(7167), - [anon_sym_false] = ACTIONS(7167), - [anon_sym_SQUOTE] = ACTIONS(7169), - [sym__backtick_identifier] = ACTIONS(7169), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7169), - }, - [3962] = { - [sym__alpha_identifier] = ACTIONS(5097), - [anon_sym_AT] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_DOT] = ACTIONS(5097), - [anon_sym_as] = ACTIONS(5097), - [anon_sym_EQ] = ACTIONS(5097), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_where] = ACTIONS(5097), - [anon_sym_SEMI] = ACTIONS(5099), - [anon_sym_get] = ACTIONS(5097), - [anon_sym_set] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [sym_label] = ACTIONS(5099), - [anon_sym_in] = ACTIONS(5097), - [anon_sym_DOT_DOT] = ACTIONS(5099), - [anon_sym_QMARK_COLON] = ACTIONS(5099), - [anon_sym_AMP_AMP] = ACTIONS(5099), - [anon_sym_PIPE_PIPE] = ACTIONS(5099), - [anon_sym_else] = ACTIONS(5097), - [anon_sym_COLON_COLON] = ACTIONS(5099), - [anon_sym_PLUS_EQ] = ACTIONS(5099), - [anon_sym_DASH_EQ] = ACTIONS(5099), - [anon_sym_STAR_EQ] = ACTIONS(5099), - [anon_sym_SLASH_EQ] = ACTIONS(5099), - [anon_sym_PERCENT_EQ] = ACTIONS(5099), - [anon_sym_BANG_EQ] = ACTIONS(5097), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5099), - [anon_sym_EQ_EQ] = ACTIONS(5097), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5099), - [anon_sym_LT_EQ] = ACTIONS(5099), - [anon_sym_GT_EQ] = ACTIONS(5099), - [anon_sym_BANGin] = ACTIONS(5099), - [anon_sym_is] = ACTIONS(5097), - [anon_sym_BANGis] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_PERCENT] = ACTIONS(5097), - [anon_sym_as_QMARK] = ACTIONS(5099), - [anon_sym_PLUS_PLUS] = ACTIONS(5099), - [anon_sym_DASH_DASH] = ACTIONS(5099), - [anon_sym_BANG_BANG] = ACTIONS(5099), - [anon_sym_suspend] = ACTIONS(5097), - [anon_sym_sealed] = ACTIONS(5097), - [anon_sym_annotation] = ACTIONS(5097), - [anon_sym_data] = ACTIONS(5097), - [anon_sym_inner] = ACTIONS(5097), - [anon_sym_value] = ACTIONS(5097), - [anon_sym_override] = ACTIONS(5097), - [anon_sym_lateinit] = ACTIONS(5097), - [anon_sym_public] = ACTIONS(5097), - [anon_sym_private] = ACTIONS(5097), - [anon_sym_internal] = ACTIONS(5097), - [anon_sym_protected] = ACTIONS(5097), - [anon_sym_tailrec] = ACTIONS(5097), - [anon_sym_operator] = ACTIONS(5097), - [anon_sym_infix] = ACTIONS(5097), - [anon_sym_inline] = ACTIONS(5097), - [anon_sym_external] = ACTIONS(5097), - [sym_property_modifier] = ACTIONS(5097), - [anon_sym_abstract] = ACTIONS(5097), - [anon_sym_final] = ACTIONS(5097), - [anon_sym_open] = ACTIONS(5097), - [anon_sym_vararg] = ACTIONS(5097), - [anon_sym_noinline] = ACTIONS(5097), - [anon_sym_crossinline] = ACTIONS(5097), - [anon_sym_expect] = ACTIONS(5097), - [anon_sym_actual] = ACTIONS(5097), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5099), - [sym__automatic_semicolon] = ACTIONS(5099), - [sym_safe_nav] = ACTIONS(5099), - [sym_multiline_comment] = ACTIONS(3), + [3884] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3825), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_as] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_RBRACE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [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_SEMI] = ACTIONS(4515), + [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_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_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(4515), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4515), + [anon_sym_super_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), }, - [3963] = { - [sym_type_constraints] = STATE(3295), - [sym_enum_class_body] = STATE(3510), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7171), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_RBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [anon_sym_DASH_GT] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [3885] = { + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(4416), + [anon_sym_LBRACE] = ACTIONS(4418), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), [sym_multiline_comment] = ACTIONS(3), }, - [3964] = { - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(4270), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_PLUS_EQ] = ACTIONS(4270), - [anon_sym_DASH_EQ] = ACTIONS(4270), - [anon_sym_STAR_EQ] = ACTIONS(4270), - [anon_sym_SLASH_EQ] = ACTIONS(4270), - [anon_sym_PERCENT_EQ] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4268), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [3886] = { + [sym__alpha_identifier] = ACTIONS(4726), + [anon_sym_AT] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DOT] = ACTIONS(4726), + [anon_sym_as] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LBRACE] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_LPAREN] = ACTIONS(4728), + [anon_sym_COMMA] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_where] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4728), + [anon_sym_get] = ACTIONS(4726), + [anon_sym_set] = ACTIONS(4726), + [anon_sym_STAR] = ACTIONS(4726), + [sym_label] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_DOT_DOT] = ACTIONS(4728), + [anon_sym_QMARK_COLON] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_else] = ACTIONS(4726), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PERCENT_EQ] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4726), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4728), + [anon_sym_LT_EQ] = ACTIONS(4728), + [anon_sym_GT_EQ] = ACTIONS(4728), + [anon_sym_BANGin] = ACTIONS(4728), + [anon_sym_is] = ACTIONS(4726), + [anon_sym_BANGis] = ACTIONS(4728), + [anon_sym_PLUS] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_SLASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_as_QMARK] = ACTIONS(4728), + [anon_sym_PLUS_PLUS] = ACTIONS(4728), + [anon_sym_DASH_DASH] = ACTIONS(4728), + [anon_sym_BANG_BANG] = ACTIONS(4728), + [anon_sym_suspend] = ACTIONS(4726), + [anon_sym_sealed] = ACTIONS(4726), + [anon_sym_annotation] = ACTIONS(4726), + [anon_sym_data] = ACTIONS(4726), + [anon_sym_inner] = ACTIONS(4726), + [anon_sym_value] = ACTIONS(4726), + [anon_sym_override] = ACTIONS(4726), + [anon_sym_lateinit] = ACTIONS(4726), + [anon_sym_public] = ACTIONS(4726), + [anon_sym_private] = ACTIONS(4726), + [anon_sym_internal] = ACTIONS(4726), + [anon_sym_protected] = ACTIONS(4726), + [anon_sym_tailrec] = ACTIONS(4726), + [anon_sym_operator] = ACTIONS(4726), + [anon_sym_infix] = ACTIONS(4726), + [anon_sym_inline] = ACTIONS(4726), + [anon_sym_external] = ACTIONS(4726), + [sym_property_modifier] = ACTIONS(4726), + [anon_sym_abstract] = ACTIONS(4726), + [anon_sym_final] = ACTIONS(4726), + [anon_sym_open] = ACTIONS(4726), + [anon_sym_vararg] = ACTIONS(4726), + [anon_sym_noinline] = ACTIONS(4726), + [anon_sym_crossinline] = ACTIONS(4726), + [anon_sym_expect] = ACTIONS(4726), + [anon_sym_actual] = ACTIONS(4726), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4728), + [sym__automatic_semicolon] = ACTIONS(4728), + [sym_safe_nav] = ACTIONS(4728), [sym_multiline_comment] = ACTIONS(3), }, - [3965] = { + [3887] = { [sym__alpha_identifier] = ACTIONS(4864), [anon_sym_AT] = ACTIONS(4866), [anon_sym_LBRACK] = ACTIONS(4866), @@ -438605,1540 +432634,2980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4866), [sym_multiline_comment] = ACTIONS(3), }, - [3966] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_value] = 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), + [3888] = { + [sym__alpha_identifier] = ACTIONS(4776), + [anon_sym_AT] = ACTIONS(4778), + [anon_sym_LBRACK] = ACTIONS(4778), + [anon_sym_DOT] = ACTIONS(4776), + [anon_sym_as] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(4776), + [anon_sym_LBRACE] = ACTIONS(4778), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_LPAREN] = ACTIONS(4778), + [anon_sym_COMMA] = ACTIONS(4778), + [anon_sym_LT] = ACTIONS(4776), + [anon_sym_GT] = ACTIONS(4776), + [anon_sym_where] = ACTIONS(4776), + [anon_sym_SEMI] = ACTIONS(4778), + [anon_sym_get] = ACTIONS(4776), + [anon_sym_set] = ACTIONS(4776), + [anon_sym_STAR] = ACTIONS(4776), + [sym_label] = ACTIONS(4778), + [anon_sym_in] = ACTIONS(4776), + [anon_sym_DOT_DOT] = ACTIONS(4778), + [anon_sym_QMARK_COLON] = ACTIONS(4778), + [anon_sym_AMP_AMP] = ACTIONS(4778), + [anon_sym_PIPE_PIPE] = ACTIONS(4778), + [anon_sym_else] = ACTIONS(4776), + [anon_sym_COLON_COLON] = ACTIONS(4778), + [anon_sym_PLUS_EQ] = ACTIONS(4778), + [anon_sym_DASH_EQ] = ACTIONS(4778), + [anon_sym_STAR_EQ] = ACTIONS(4778), + [anon_sym_SLASH_EQ] = ACTIONS(4778), + [anon_sym_PERCENT_EQ] = ACTIONS(4778), + [anon_sym_BANG_EQ] = ACTIONS(4776), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4778), + [anon_sym_EQ_EQ] = ACTIONS(4776), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4778), + [anon_sym_LT_EQ] = ACTIONS(4778), + [anon_sym_GT_EQ] = ACTIONS(4778), + [anon_sym_BANGin] = ACTIONS(4778), + [anon_sym_is] = ACTIONS(4776), + [anon_sym_BANGis] = ACTIONS(4778), + [anon_sym_PLUS] = ACTIONS(4776), + [anon_sym_DASH] = ACTIONS(4776), + [anon_sym_SLASH] = ACTIONS(4776), + [anon_sym_PERCENT] = ACTIONS(4776), + [anon_sym_as_QMARK] = ACTIONS(4778), + [anon_sym_PLUS_PLUS] = ACTIONS(4778), + [anon_sym_DASH_DASH] = ACTIONS(4778), + [anon_sym_BANG_BANG] = ACTIONS(4778), + [anon_sym_suspend] = ACTIONS(4776), + [anon_sym_sealed] = ACTIONS(4776), + [anon_sym_annotation] = ACTIONS(4776), + [anon_sym_data] = ACTIONS(4776), + [anon_sym_inner] = ACTIONS(4776), + [anon_sym_value] = ACTIONS(4776), + [anon_sym_override] = ACTIONS(4776), + [anon_sym_lateinit] = ACTIONS(4776), + [anon_sym_public] = ACTIONS(4776), + [anon_sym_private] = ACTIONS(4776), + [anon_sym_internal] = ACTIONS(4776), + [anon_sym_protected] = ACTIONS(4776), + [anon_sym_tailrec] = ACTIONS(4776), + [anon_sym_operator] = ACTIONS(4776), + [anon_sym_infix] = ACTIONS(4776), + [anon_sym_inline] = ACTIONS(4776), + [anon_sym_external] = ACTIONS(4776), + [sym_property_modifier] = ACTIONS(4776), + [anon_sym_abstract] = ACTIONS(4776), + [anon_sym_final] = ACTIONS(4776), + [anon_sym_open] = ACTIONS(4776), + [anon_sym_vararg] = ACTIONS(4776), + [anon_sym_noinline] = ACTIONS(4776), + [anon_sym_crossinline] = ACTIONS(4776), + [anon_sym_expect] = ACTIONS(4776), + [anon_sym_actual] = ACTIONS(4776), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4778), + [sym__automatic_semicolon] = ACTIONS(4778), + [sym_safe_nav] = ACTIONS(4778), [sym_multiline_comment] = ACTIONS(3), }, - [3967] = { - [sym__alpha_identifier] = ACTIONS(4940), - [anon_sym_AT] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_as] = ACTIONS(4940), - [anon_sym_EQ] = ACTIONS(4940), - [anon_sym_LBRACE] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_where] = ACTIONS(4940), - [anon_sym_SEMI] = ACTIONS(4942), - [anon_sym_get] = ACTIONS(4940), - [anon_sym_set] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4940), - [sym_label] = ACTIONS(4942), - [anon_sym_in] = ACTIONS(4940), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_QMARK_COLON] = ACTIONS(4942), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_else] = ACTIONS(4940), - [anon_sym_COLON_COLON] = ACTIONS(4942), - [anon_sym_PLUS_EQ] = ACTIONS(4942), - [anon_sym_DASH_EQ] = ACTIONS(4942), - [anon_sym_STAR_EQ] = ACTIONS(4942), - [anon_sym_SLASH_EQ] = ACTIONS(4942), - [anon_sym_PERCENT_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4940), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4940), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_BANGin] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4940), - [anon_sym_BANGis] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_as_QMARK] = ACTIONS(4942), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_BANG_BANG] = ACTIONS(4942), - [anon_sym_suspend] = ACTIONS(4940), - [anon_sym_sealed] = ACTIONS(4940), - [anon_sym_annotation] = ACTIONS(4940), - [anon_sym_data] = ACTIONS(4940), - [anon_sym_inner] = ACTIONS(4940), - [anon_sym_value] = ACTIONS(4940), - [anon_sym_override] = ACTIONS(4940), - [anon_sym_lateinit] = ACTIONS(4940), - [anon_sym_public] = ACTIONS(4940), - [anon_sym_private] = ACTIONS(4940), - [anon_sym_internal] = ACTIONS(4940), - [anon_sym_protected] = ACTIONS(4940), - [anon_sym_tailrec] = ACTIONS(4940), - [anon_sym_operator] = ACTIONS(4940), - [anon_sym_infix] = ACTIONS(4940), - [anon_sym_inline] = ACTIONS(4940), - [anon_sym_external] = ACTIONS(4940), - [sym_property_modifier] = ACTIONS(4940), - [anon_sym_abstract] = ACTIONS(4940), - [anon_sym_final] = ACTIONS(4940), - [anon_sym_open] = ACTIONS(4940), - [anon_sym_vararg] = ACTIONS(4940), - [anon_sym_noinline] = ACTIONS(4940), - [anon_sym_crossinline] = ACTIONS(4940), - [anon_sym_expect] = ACTIONS(4940), - [anon_sym_actual] = ACTIONS(4940), + [3889] = { + [sym__alpha_identifier] = ACTIONS(4972), + [anon_sym_AT] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(4974), + [anon_sym_DOT] = ACTIONS(4972), + [anon_sym_as] = ACTIONS(4972), + [anon_sym_EQ] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_RBRACE] = ACTIONS(4974), + [anon_sym_LPAREN] = ACTIONS(4974), + [anon_sym_COMMA] = ACTIONS(4974), + [anon_sym_LT] = ACTIONS(4972), + [anon_sym_GT] = ACTIONS(4972), + [anon_sym_where] = ACTIONS(4972), + [anon_sym_SEMI] = ACTIONS(4974), + [anon_sym_get] = ACTIONS(4972), + [anon_sym_set] = ACTIONS(4972), + [anon_sym_STAR] = ACTIONS(4972), + [sym_label] = ACTIONS(4974), + [anon_sym_in] = ACTIONS(4972), + [anon_sym_DOT_DOT] = ACTIONS(4974), + [anon_sym_QMARK_COLON] = ACTIONS(4974), + [anon_sym_AMP_AMP] = ACTIONS(4974), + [anon_sym_PIPE_PIPE] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4972), + [anon_sym_COLON_COLON] = ACTIONS(4974), + [anon_sym_PLUS_EQ] = ACTIONS(4974), + [anon_sym_DASH_EQ] = ACTIONS(4974), + [anon_sym_STAR_EQ] = ACTIONS(4974), + [anon_sym_SLASH_EQ] = ACTIONS(4974), + [anon_sym_PERCENT_EQ] = ACTIONS(4974), + [anon_sym_BANG_EQ] = ACTIONS(4972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4974), + [anon_sym_EQ_EQ] = ACTIONS(4972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4974), + [anon_sym_LT_EQ] = ACTIONS(4974), + [anon_sym_GT_EQ] = ACTIONS(4974), + [anon_sym_BANGin] = ACTIONS(4974), + [anon_sym_is] = ACTIONS(4972), + [anon_sym_BANGis] = ACTIONS(4974), + [anon_sym_PLUS] = ACTIONS(4972), + [anon_sym_DASH] = ACTIONS(4972), + [anon_sym_SLASH] = ACTIONS(4972), + [anon_sym_PERCENT] = ACTIONS(4972), + [anon_sym_as_QMARK] = ACTIONS(4974), + [anon_sym_PLUS_PLUS] = ACTIONS(4974), + [anon_sym_DASH_DASH] = ACTIONS(4974), + [anon_sym_BANG_BANG] = ACTIONS(4974), + [anon_sym_suspend] = ACTIONS(4972), + [anon_sym_sealed] = ACTIONS(4972), + [anon_sym_annotation] = ACTIONS(4972), + [anon_sym_data] = ACTIONS(4972), + [anon_sym_inner] = ACTIONS(4972), + [anon_sym_value] = ACTIONS(4972), + [anon_sym_override] = ACTIONS(4972), + [anon_sym_lateinit] = ACTIONS(4972), + [anon_sym_public] = ACTIONS(4972), + [anon_sym_private] = ACTIONS(4972), + [anon_sym_internal] = ACTIONS(4972), + [anon_sym_protected] = ACTIONS(4972), + [anon_sym_tailrec] = ACTIONS(4972), + [anon_sym_operator] = ACTIONS(4972), + [anon_sym_infix] = ACTIONS(4972), + [anon_sym_inline] = ACTIONS(4972), + [anon_sym_external] = ACTIONS(4972), + [sym_property_modifier] = ACTIONS(4972), + [anon_sym_abstract] = ACTIONS(4972), + [anon_sym_final] = ACTIONS(4972), + [anon_sym_open] = ACTIONS(4972), + [anon_sym_vararg] = ACTIONS(4972), + [anon_sym_noinline] = ACTIONS(4972), + [anon_sym_crossinline] = ACTIONS(4972), + [anon_sym_expect] = ACTIONS(4972), + [anon_sym_actual] = ACTIONS(4972), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4974), + [sym__automatic_semicolon] = ACTIONS(4974), + [sym_safe_nav] = ACTIONS(4974), + [sym_multiline_comment] = ACTIONS(3), + }, + [3890] = { + [sym__alpha_identifier] = ACTIONS(5089), + [anon_sym_AT] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_as] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_where] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym_get] = ACTIONS(5089), + [anon_sym_set] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [sym_label] = ACTIONS(5091), + [anon_sym_in] = ACTIONS(5089), + [anon_sym_DOT_DOT] = ACTIONS(5091), + [anon_sym_QMARK_COLON] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_else] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5089), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), + [anon_sym_EQ_EQ] = ACTIONS(5089), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_BANGin] = ACTIONS(5091), + [anon_sym_is] = ACTIONS(5089), + [anon_sym_BANGis] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_as_QMARK] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_BANG_BANG] = ACTIONS(5091), + [anon_sym_suspend] = ACTIONS(5089), + [anon_sym_sealed] = ACTIONS(5089), + [anon_sym_annotation] = ACTIONS(5089), + [anon_sym_data] = ACTIONS(5089), + [anon_sym_inner] = ACTIONS(5089), + [anon_sym_value] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_lateinit] = ACTIONS(5089), + [anon_sym_public] = ACTIONS(5089), + [anon_sym_private] = ACTIONS(5089), + [anon_sym_internal] = ACTIONS(5089), + [anon_sym_protected] = ACTIONS(5089), + [anon_sym_tailrec] = ACTIONS(5089), + [anon_sym_operator] = ACTIONS(5089), + [anon_sym_infix] = ACTIONS(5089), + [anon_sym_inline] = ACTIONS(5089), + [anon_sym_external] = ACTIONS(5089), + [sym_property_modifier] = ACTIONS(5089), + [anon_sym_abstract] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_open] = ACTIONS(5089), + [anon_sym_vararg] = ACTIONS(5089), + [anon_sym_noinline] = ACTIONS(5089), + [anon_sym_crossinline] = ACTIONS(5089), + [anon_sym_expect] = ACTIONS(5089), + [anon_sym_actual] = ACTIONS(5089), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4942), - [sym__automatic_semicolon] = ACTIONS(4942), - [sym_safe_nav] = ACTIONS(4942), + [sym__backtick_identifier] = ACTIONS(5091), + [sym__automatic_semicolon] = ACTIONS(5091), + [sym_safe_nav] = ACTIONS(5091), [sym_multiline_comment] = ACTIONS(3), }, - [3968] = { - [sym__alpha_identifier] = ACTIONS(4882), - [anon_sym_AT] = ACTIONS(4884), - [anon_sym_LBRACK] = ACTIONS(4884), - [anon_sym_DOT] = ACTIONS(4882), - [anon_sym_as] = ACTIONS(4882), - [anon_sym_EQ] = ACTIONS(4882), - [anon_sym_LBRACE] = ACTIONS(4884), - [anon_sym_RBRACE] = ACTIONS(4884), - [anon_sym_LPAREN] = ACTIONS(4884), - [anon_sym_COMMA] = ACTIONS(4884), - [anon_sym_LT] = ACTIONS(4882), - [anon_sym_GT] = ACTIONS(4882), - [anon_sym_where] = ACTIONS(4882), - [anon_sym_SEMI] = ACTIONS(4884), - [anon_sym_get] = ACTIONS(4882), - [anon_sym_set] = ACTIONS(4882), - [anon_sym_STAR] = ACTIONS(4882), - [sym_label] = ACTIONS(4884), - [anon_sym_in] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4884), - [anon_sym_QMARK_COLON] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4884), - [anon_sym_PIPE_PIPE] = ACTIONS(4884), - [anon_sym_else] = ACTIONS(4882), - [anon_sym_COLON_COLON] = ACTIONS(4884), - [anon_sym_PLUS_EQ] = ACTIONS(4884), - [anon_sym_DASH_EQ] = ACTIONS(4884), - [anon_sym_STAR_EQ] = ACTIONS(4884), - [anon_sym_SLASH_EQ] = ACTIONS(4884), - [anon_sym_PERCENT_EQ] = ACTIONS(4884), - [anon_sym_BANG_EQ] = ACTIONS(4882), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4884), - [anon_sym_EQ_EQ] = ACTIONS(4882), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4884), - [anon_sym_LT_EQ] = ACTIONS(4884), - [anon_sym_GT_EQ] = ACTIONS(4884), - [anon_sym_BANGin] = ACTIONS(4884), - [anon_sym_is] = ACTIONS(4882), - [anon_sym_BANGis] = ACTIONS(4884), - [anon_sym_PLUS] = ACTIONS(4882), - [anon_sym_DASH] = ACTIONS(4882), - [anon_sym_SLASH] = ACTIONS(4882), - [anon_sym_PERCENT] = ACTIONS(4882), - [anon_sym_as_QMARK] = ACTIONS(4884), - [anon_sym_PLUS_PLUS] = ACTIONS(4884), - [anon_sym_DASH_DASH] = ACTIONS(4884), - [anon_sym_BANG_BANG] = ACTIONS(4884), - [anon_sym_suspend] = ACTIONS(4882), - [anon_sym_sealed] = ACTIONS(4882), - [anon_sym_annotation] = ACTIONS(4882), - [anon_sym_data] = ACTIONS(4882), - [anon_sym_inner] = ACTIONS(4882), - [anon_sym_value] = ACTIONS(4882), - [anon_sym_override] = ACTIONS(4882), - [anon_sym_lateinit] = ACTIONS(4882), - [anon_sym_public] = ACTIONS(4882), - [anon_sym_private] = ACTIONS(4882), - [anon_sym_internal] = ACTIONS(4882), - [anon_sym_protected] = ACTIONS(4882), - [anon_sym_tailrec] = ACTIONS(4882), - [anon_sym_operator] = ACTIONS(4882), - [anon_sym_infix] = ACTIONS(4882), - [anon_sym_inline] = ACTIONS(4882), - [anon_sym_external] = ACTIONS(4882), - [sym_property_modifier] = ACTIONS(4882), - [anon_sym_abstract] = ACTIONS(4882), - [anon_sym_final] = ACTIONS(4882), - [anon_sym_open] = ACTIONS(4882), - [anon_sym_vararg] = ACTIONS(4882), - [anon_sym_noinline] = ACTIONS(4882), - [anon_sym_crossinline] = ACTIONS(4882), - [anon_sym_expect] = ACTIONS(4882), - [anon_sym_actual] = ACTIONS(4882), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4884), - [sym__automatic_semicolon] = ACTIONS(4884), - [sym_safe_nav] = ACTIONS(4884), + [3891] = { + [sym__alpha_identifier] = ACTIONS(5053), + [anon_sym_AT] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_DOT] = ACTIONS(5053), + [anon_sym_as] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(5053), + [anon_sym_LBRACE] = ACTIONS(5055), + [anon_sym_RBRACE] = ACTIONS(5055), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_where] = ACTIONS(5053), + [anon_sym_SEMI] = ACTIONS(5055), + [anon_sym_get] = ACTIONS(5053), + [anon_sym_set] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [sym_label] = ACTIONS(5055), + [anon_sym_in] = ACTIONS(5053), + [anon_sym_DOT_DOT] = ACTIONS(5055), + [anon_sym_QMARK_COLON] = ACTIONS(5055), + [anon_sym_AMP_AMP] = ACTIONS(5055), + [anon_sym_PIPE_PIPE] = ACTIONS(5055), + [anon_sym_else] = ACTIONS(5053), + [anon_sym_COLON_COLON] = ACTIONS(5055), + [anon_sym_PLUS_EQ] = ACTIONS(5055), + [anon_sym_DASH_EQ] = ACTIONS(5055), + [anon_sym_STAR_EQ] = ACTIONS(5055), + [anon_sym_SLASH_EQ] = ACTIONS(5055), + [anon_sym_PERCENT_EQ] = ACTIONS(5055), + [anon_sym_BANG_EQ] = ACTIONS(5053), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5053), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5055), + [anon_sym_LT_EQ] = ACTIONS(5055), + [anon_sym_GT_EQ] = ACTIONS(5055), + [anon_sym_BANGin] = ACTIONS(5055), + [anon_sym_is] = ACTIONS(5053), + [anon_sym_BANGis] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_PERCENT] = ACTIONS(5053), + [anon_sym_as_QMARK] = ACTIONS(5055), + [anon_sym_PLUS_PLUS] = ACTIONS(5055), + [anon_sym_DASH_DASH] = ACTIONS(5055), + [anon_sym_BANG_BANG] = ACTIONS(5055), + [anon_sym_suspend] = ACTIONS(5053), + [anon_sym_sealed] = ACTIONS(5053), + [anon_sym_annotation] = ACTIONS(5053), + [anon_sym_data] = ACTIONS(5053), + [anon_sym_inner] = ACTIONS(5053), + [anon_sym_value] = ACTIONS(5053), + [anon_sym_override] = ACTIONS(5053), + [anon_sym_lateinit] = ACTIONS(5053), + [anon_sym_public] = ACTIONS(5053), + [anon_sym_private] = ACTIONS(5053), + [anon_sym_internal] = ACTIONS(5053), + [anon_sym_protected] = ACTIONS(5053), + [anon_sym_tailrec] = ACTIONS(5053), + [anon_sym_operator] = ACTIONS(5053), + [anon_sym_infix] = ACTIONS(5053), + [anon_sym_inline] = ACTIONS(5053), + [anon_sym_external] = ACTIONS(5053), + [sym_property_modifier] = ACTIONS(5053), + [anon_sym_abstract] = ACTIONS(5053), + [anon_sym_final] = ACTIONS(5053), + [anon_sym_open] = ACTIONS(5053), + [anon_sym_vararg] = ACTIONS(5053), + [anon_sym_noinline] = ACTIONS(5053), + [anon_sym_crossinline] = ACTIONS(5053), + [anon_sym_expect] = ACTIONS(5053), + [anon_sym_actual] = ACTIONS(5053), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5055), + [sym__automatic_semicolon] = ACTIONS(5055), + [sym_safe_nav] = ACTIONS(5055), [sym_multiline_comment] = ACTIONS(3), }, - [3969] = { - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(4150), - [anon_sym_LBRACE] = ACTIONS(4152), - [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_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_value] = 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), + [3892] = { + [sym_function_body] = STATE(3828), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, - [3970] = { - [sym__alpha_identifier] = ACTIONS(4754), - [anon_sym_AT] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4756), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4754), - [anon_sym_GT] = ACTIONS(4754), - [anon_sym_where] = ACTIONS(4754), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_get] = ACTIONS(4754), - [anon_sym_set] = ACTIONS(4754), - [anon_sym_STAR] = ACTIONS(4754), - [sym_label] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4754), - [anon_sym_DOT_DOT] = ACTIONS(4756), - [anon_sym_QMARK_COLON] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_else] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym_PLUS_EQ] = ACTIONS(4756), - [anon_sym_DASH_EQ] = ACTIONS(4756), - [anon_sym_STAR_EQ] = ACTIONS(4756), - [anon_sym_SLASH_EQ] = ACTIONS(4756), - [anon_sym_PERCENT_EQ] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4754), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4754), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4756), - [anon_sym_LT_EQ] = ACTIONS(4756), - [anon_sym_GT_EQ] = ACTIONS(4756), - [anon_sym_BANGin] = ACTIONS(4756), - [anon_sym_is] = ACTIONS(4754), - [anon_sym_BANGis] = ACTIONS(4756), - [anon_sym_PLUS] = ACTIONS(4754), - [anon_sym_DASH] = ACTIONS(4754), - [anon_sym_SLASH] = ACTIONS(4754), - [anon_sym_PERCENT] = ACTIONS(4754), - [anon_sym_as_QMARK] = ACTIONS(4756), - [anon_sym_PLUS_PLUS] = ACTIONS(4756), - [anon_sym_DASH_DASH] = ACTIONS(4756), - [anon_sym_BANG_BANG] = ACTIONS(4756), - [anon_sym_suspend] = ACTIONS(4754), - [anon_sym_sealed] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4754), - [anon_sym_data] = ACTIONS(4754), - [anon_sym_inner] = ACTIONS(4754), - [anon_sym_value] = ACTIONS(4754), - [anon_sym_override] = ACTIONS(4754), - [anon_sym_lateinit] = ACTIONS(4754), - [anon_sym_public] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4754), - [anon_sym_internal] = ACTIONS(4754), - [anon_sym_protected] = ACTIONS(4754), - [anon_sym_tailrec] = ACTIONS(4754), - [anon_sym_operator] = ACTIONS(4754), - [anon_sym_infix] = ACTIONS(4754), - [anon_sym_inline] = ACTIONS(4754), - [anon_sym_external] = ACTIONS(4754), - [sym_property_modifier] = ACTIONS(4754), - [anon_sym_abstract] = ACTIONS(4754), - [anon_sym_final] = ACTIONS(4754), - [anon_sym_open] = ACTIONS(4754), - [anon_sym_vararg] = ACTIONS(4754), - [anon_sym_noinline] = ACTIONS(4754), - [anon_sym_crossinline] = ACTIONS(4754), - [anon_sym_expect] = ACTIONS(4754), - [anon_sym_actual] = ACTIONS(4754), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4756), - [sym__automatic_semicolon] = ACTIONS(4756), - [sym_safe_nav] = ACTIONS(4756), + [3893] = { + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_EQ] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(4204), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(4202), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4202), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_PLUS_EQ] = ACTIONS(4204), + [anon_sym_DASH_EQ] = ACTIONS(4204), + [anon_sym_STAR_EQ] = ACTIONS(4204), + [anon_sym_SLASH_EQ] = ACTIONS(4204), + [anon_sym_PERCENT_EQ] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4202), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, - [3971] = { - [sym_class_body] = STATE(4030), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(7173), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_EQ] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4377), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_PLUS_EQ] = ACTIONS(4379), - [anon_sym_DASH_EQ] = ACTIONS(4379), - [anon_sym_STAR_EQ] = ACTIONS(4379), - [anon_sym_SLASH_EQ] = ACTIONS(4379), - [anon_sym_PERCENT_EQ] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4377), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [3894] = { + [sym__alpha_identifier] = ACTIONS(4846), + [anon_sym_AT] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_DOT] = ACTIONS(4846), + [anon_sym_as] = ACTIONS(4846), + [anon_sym_EQ] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4848), + [anon_sym_COMMA] = ACTIONS(4848), + [anon_sym_LT] = ACTIONS(4846), + [anon_sym_GT] = ACTIONS(4846), + [anon_sym_where] = ACTIONS(4846), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_get] = ACTIONS(4846), + [anon_sym_set] = ACTIONS(4846), + [anon_sym_STAR] = ACTIONS(4846), + [sym_label] = ACTIONS(4848), + [anon_sym_in] = ACTIONS(4846), + [anon_sym_DOT_DOT] = ACTIONS(4848), + [anon_sym_QMARK_COLON] = ACTIONS(4848), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_PIPE_PIPE] = ACTIONS(4848), + [anon_sym_else] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [anon_sym_PLUS_EQ] = ACTIONS(4848), + [anon_sym_DASH_EQ] = ACTIONS(4848), + [anon_sym_STAR_EQ] = ACTIONS(4848), + [anon_sym_SLASH_EQ] = ACTIONS(4848), + [anon_sym_PERCENT_EQ] = ACTIONS(4848), + [anon_sym_BANG_EQ] = ACTIONS(4846), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4848), + [anon_sym_EQ_EQ] = ACTIONS(4846), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4848), + [anon_sym_LT_EQ] = ACTIONS(4848), + [anon_sym_GT_EQ] = ACTIONS(4848), + [anon_sym_BANGin] = ACTIONS(4848), + [anon_sym_is] = ACTIONS(4846), + [anon_sym_BANGis] = ACTIONS(4848), + [anon_sym_PLUS] = ACTIONS(4846), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_SLASH] = ACTIONS(4846), + [anon_sym_PERCENT] = ACTIONS(4846), + [anon_sym_as_QMARK] = ACTIONS(4848), + [anon_sym_PLUS_PLUS] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_BANG_BANG] = ACTIONS(4848), + [anon_sym_suspend] = ACTIONS(4846), + [anon_sym_sealed] = ACTIONS(4846), + [anon_sym_annotation] = ACTIONS(4846), + [anon_sym_data] = ACTIONS(4846), + [anon_sym_inner] = ACTIONS(4846), + [anon_sym_value] = ACTIONS(4846), + [anon_sym_override] = ACTIONS(4846), + [anon_sym_lateinit] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_internal] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_tailrec] = ACTIONS(4846), + [anon_sym_operator] = ACTIONS(4846), + [anon_sym_infix] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_external] = ACTIONS(4846), + [sym_property_modifier] = ACTIONS(4846), + [anon_sym_abstract] = ACTIONS(4846), + [anon_sym_final] = ACTIONS(4846), + [anon_sym_open] = ACTIONS(4846), + [anon_sym_vararg] = ACTIONS(4846), + [anon_sym_noinline] = ACTIONS(4846), + [anon_sym_crossinline] = ACTIONS(4846), + [anon_sym_expect] = ACTIONS(4846), + [anon_sym_actual] = ACTIONS(4846), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4848), + [sym__automatic_semicolon] = ACTIONS(4848), + [sym_safe_nav] = ACTIONS(4848), [sym_multiline_comment] = ACTIONS(3), }, - [3972] = { - [sym_class_body] = STATE(3536), - [sym_type_constraints] = STATE(3274), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6160), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [3895] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(7081), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7083), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [3896] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7083), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [3897] = { + [sym__alpha_identifier] = ACTIONS(4868), + [anon_sym_AT] = ACTIONS(4870), + [anon_sym_LBRACK] = ACTIONS(4870), + [anon_sym_DOT] = ACTIONS(4868), + [anon_sym_as] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_LBRACE] = ACTIONS(4870), + [anon_sym_RBRACE] = ACTIONS(4870), + [anon_sym_LPAREN] = ACTIONS(4870), + [anon_sym_COMMA] = ACTIONS(4870), + [anon_sym_LT] = ACTIONS(4868), + [anon_sym_GT] = ACTIONS(4868), + [anon_sym_where] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(4870), + [anon_sym_get] = ACTIONS(4868), + [anon_sym_set] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [sym_label] = ACTIONS(4870), + [anon_sym_in] = ACTIONS(4868), + [anon_sym_DOT_DOT] = ACTIONS(4870), + [anon_sym_QMARK_COLON] = ACTIONS(4870), + [anon_sym_AMP_AMP] = ACTIONS(4870), + [anon_sym_PIPE_PIPE] = ACTIONS(4870), + [anon_sym_else] = ACTIONS(4868), + [anon_sym_COLON_COLON] = ACTIONS(4870), + [anon_sym_PLUS_EQ] = ACTIONS(4870), + [anon_sym_DASH_EQ] = ACTIONS(4870), + [anon_sym_STAR_EQ] = ACTIONS(4870), + [anon_sym_SLASH_EQ] = ACTIONS(4870), + [anon_sym_PERCENT_EQ] = ACTIONS(4870), + [anon_sym_BANG_EQ] = ACTIONS(4868), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4870), + [anon_sym_EQ_EQ] = ACTIONS(4868), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4870), + [anon_sym_LT_EQ] = ACTIONS(4870), + [anon_sym_GT_EQ] = ACTIONS(4870), + [anon_sym_BANGin] = ACTIONS(4870), + [anon_sym_is] = ACTIONS(4868), + [anon_sym_BANGis] = ACTIONS(4870), + [anon_sym_PLUS] = ACTIONS(4868), + [anon_sym_DASH] = ACTIONS(4868), + [anon_sym_SLASH] = ACTIONS(4868), + [anon_sym_PERCENT] = ACTIONS(4868), + [anon_sym_as_QMARK] = ACTIONS(4870), + [anon_sym_PLUS_PLUS] = ACTIONS(4870), + [anon_sym_DASH_DASH] = ACTIONS(4870), + [anon_sym_BANG_BANG] = ACTIONS(4870), + [anon_sym_suspend] = ACTIONS(4868), + [anon_sym_sealed] = ACTIONS(4868), + [anon_sym_annotation] = ACTIONS(4868), + [anon_sym_data] = ACTIONS(4868), + [anon_sym_inner] = ACTIONS(4868), + [anon_sym_value] = ACTIONS(4868), + [anon_sym_override] = ACTIONS(4868), + [anon_sym_lateinit] = ACTIONS(4868), + [anon_sym_public] = ACTIONS(4868), + [anon_sym_private] = ACTIONS(4868), + [anon_sym_internal] = ACTIONS(4868), + [anon_sym_protected] = ACTIONS(4868), + [anon_sym_tailrec] = ACTIONS(4868), + [anon_sym_operator] = ACTIONS(4868), + [anon_sym_infix] = ACTIONS(4868), + [anon_sym_inline] = ACTIONS(4868), + [anon_sym_external] = ACTIONS(4868), + [sym_property_modifier] = ACTIONS(4868), + [anon_sym_abstract] = ACTIONS(4868), + [anon_sym_final] = ACTIONS(4868), + [anon_sym_open] = ACTIONS(4868), + [anon_sym_vararg] = ACTIONS(4868), + [anon_sym_noinline] = ACTIONS(4868), + [anon_sym_crossinline] = ACTIONS(4868), + [anon_sym_expect] = ACTIONS(4868), + [anon_sym_actual] = ACTIONS(4868), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(4870), + [sym__automatic_semicolon] = ACTIONS(4870), + [sym_safe_nav] = ACTIONS(4870), [sym_multiline_comment] = ACTIONS(3), }, - [3973] = { - [sym_type_constraints] = STATE(3313), - [sym_enum_class_body] = STATE(3536), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6158), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_RBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [anon_sym_DASH_GT] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [3898] = { + [sym__alpha_identifier] = ACTIONS(4920), + [anon_sym_AT] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4920), + [anon_sym_as] = ACTIONS(4920), + [anon_sym_EQ] = ACTIONS(4920), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_LPAREN] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_LT] = ACTIONS(4920), + [anon_sym_GT] = ACTIONS(4920), + [anon_sym_where] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym_get] = ACTIONS(4920), + [anon_sym_set] = ACTIONS(4920), + [anon_sym_STAR] = ACTIONS(4920), + [sym_label] = ACTIONS(4922), + [anon_sym_in] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_QMARK_COLON] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4920), + [anon_sym_COLON_COLON] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4922), + [anon_sym_DASH_EQ] = ACTIONS(4922), + [anon_sym_STAR_EQ] = ACTIONS(4922), + [anon_sym_SLASH_EQ] = ACTIONS(4922), + [anon_sym_PERCENT_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ] = ACTIONS(4920), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4922), + [anon_sym_EQ_EQ] = ACTIONS(4920), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4922), + [anon_sym_GT_EQ] = ACTIONS(4922), + [anon_sym_BANGin] = ACTIONS(4922), + [anon_sym_is] = ACTIONS(4920), + [anon_sym_BANGis] = ACTIONS(4922), + [anon_sym_PLUS] = ACTIONS(4920), + [anon_sym_DASH] = ACTIONS(4920), + [anon_sym_SLASH] = ACTIONS(4920), + [anon_sym_PERCENT] = ACTIONS(4920), + [anon_sym_as_QMARK] = ACTIONS(4922), + [anon_sym_PLUS_PLUS] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_BANG_BANG] = ACTIONS(4922), + [anon_sym_suspend] = ACTIONS(4920), + [anon_sym_sealed] = ACTIONS(4920), + [anon_sym_annotation] = ACTIONS(4920), + [anon_sym_data] = ACTIONS(4920), + [anon_sym_inner] = ACTIONS(4920), + [anon_sym_value] = ACTIONS(4920), + [anon_sym_override] = ACTIONS(4920), + [anon_sym_lateinit] = ACTIONS(4920), + [anon_sym_public] = ACTIONS(4920), + [anon_sym_private] = ACTIONS(4920), + [anon_sym_internal] = ACTIONS(4920), + [anon_sym_protected] = ACTIONS(4920), + [anon_sym_tailrec] = ACTIONS(4920), + [anon_sym_operator] = ACTIONS(4920), + [anon_sym_infix] = ACTIONS(4920), + [anon_sym_inline] = ACTIONS(4920), + [anon_sym_external] = ACTIONS(4920), + [sym_property_modifier] = ACTIONS(4920), + [anon_sym_abstract] = ACTIONS(4920), + [anon_sym_final] = ACTIONS(4920), + [anon_sym_open] = ACTIONS(4920), + [anon_sym_vararg] = ACTIONS(4920), + [anon_sym_noinline] = ACTIONS(4920), + [anon_sym_crossinline] = ACTIONS(4920), + [anon_sym_expect] = ACTIONS(4920), + [anon_sym_actual] = ACTIONS(4920), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(4922), + [sym__automatic_semicolon] = ACTIONS(4922), + [sym_safe_nav] = ACTIONS(4922), [sym_multiline_comment] = ACTIONS(3), }, - [3974] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [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_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_value] = 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), + [3899] = { + [sym__alpha_identifier] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3368), + [anon_sym_as] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_where] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_STAR] = ACTIONS(3368), + [sym_label] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3368), + [anon_sym_DOT_DOT] = ACTIONS(3370), + [anon_sym_QMARK_COLON] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3368), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_as_QMARK] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_BANG_BANG] = ACTIONS(3370), + [anon_sym_suspend] = ACTIONS(3368), + [anon_sym_sealed] = ACTIONS(3368), + [anon_sym_annotation] = ACTIONS(3368), + [anon_sym_data] = ACTIONS(3368), + [anon_sym_inner] = ACTIONS(3368), + [anon_sym_value] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_lateinit] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_internal] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_tailrec] = ACTIONS(3368), + [anon_sym_operator] = ACTIONS(3368), + [anon_sym_infix] = ACTIONS(3368), + [anon_sym_inline] = ACTIONS(3368), + [anon_sym_external] = ACTIONS(3368), + [sym_property_modifier] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_final] = ACTIONS(3368), + [anon_sym_open] = ACTIONS(3368), + [anon_sym_vararg] = ACTIONS(3368), + [anon_sym_noinline] = ACTIONS(3368), + [anon_sym_crossinline] = ACTIONS(3368), + [anon_sym_expect] = ACTIONS(3368), + [anon_sym_actual] = ACTIONS(3368), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3370), + [sym__automatic_semicolon] = ACTIONS(3370), + [sym_safe_nav] = ACTIONS(3370), [sym_multiline_comment] = ACTIONS(3), }, - [3975] = { - [sym__alpha_identifier] = ACTIONS(4987), - [anon_sym_AT] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_DOT] = ACTIONS(4987), - [anon_sym_as] = ACTIONS(4987), - [anon_sym_EQ] = ACTIONS(4987), - [anon_sym_LBRACE] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_where] = ACTIONS(4987), - [anon_sym_SEMI] = ACTIONS(4989), - [anon_sym_get] = ACTIONS(4987), - [anon_sym_set] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [sym_label] = ACTIONS(4989), - [anon_sym_in] = ACTIONS(4987), - [anon_sym_DOT_DOT] = ACTIONS(4989), - [anon_sym_QMARK_COLON] = ACTIONS(4989), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_else] = ACTIONS(4987), - [anon_sym_COLON_COLON] = ACTIONS(4989), - [anon_sym_PLUS_EQ] = ACTIONS(4989), - [anon_sym_DASH_EQ] = ACTIONS(4989), - [anon_sym_STAR_EQ] = ACTIONS(4989), - [anon_sym_SLASH_EQ] = ACTIONS(4989), - [anon_sym_PERCENT_EQ] = ACTIONS(4989), - [anon_sym_BANG_EQ] = ACTIONS(4987), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4989), - [anon_sym_EQ_EQ] = ACTIONS(4987), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4989), - [anon_sym_LT_EQ] = ACTIONS(4989), - [anon_sym_GT_EQ] = ACTIONS(4989), - [anon_sym_BANGin] = ACTIONS(4989), - [anon_sym_is] = ACTIONS(4987), - [anon_sym_BANGis] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_PERCENT] = ACTIONS(4987), - [anon_sym_as_QMARK] = ACTIONS(4989), - [anon_sym_PLUS_PLUS] = ACTIONS(4989), - [anon_sym_DASH_DASH] = ACTIONS(4989), - [anon_sym_BANG_BANG] = ACTIONS(4989), - [anon_sym_suspend] = ACTIONS(4987), - [anon_sym_sealed] = ACTIONS(4987), - [anon_sym_annotation] = ACTIONS(4987), - [anon_sym_data] = ACTIONS(4987), - [anon_sym_inner] = ACTIONS(4987), - [anon_sym_value] = ACTIONS(4987), - [anon_sym_override] = ACTIONS(4987), - [anon_sym_lateinit] = ACTIONS(4987), - [anon_sym_public] = ACTIONS(4987), - [anon_sym_private] = ACTIONS(4987), - [anon_sym_internal] = ACTIONS(4987), - [anon_sym_protected] = ACTIONS(4987), - [anon_sym_tailrec] = ACTIONS(4987), - [anon_sym_operator] = ACTIONS(4987), - [anon_sym_infix] = ACTIONS(4987), - [anon_sym_inline] = ACTIONS(4987), - [anon_sym_external] = ACTIONS(4987), - [sym_property_modifier] = ACTIONS(4987), - [anon_sym_abstract] = ACTIONS(4987), - [anon_sym_final] = ACTIONS(4987), - [anon_sym_open] = ACTIONS(4987), - [anon_sym_vararg] = ACTIONS(4987), - [anon_sym_noinline] = ACTIONS(4987), - [anon_sym_crossinline] = ACTIONS(4987), - [anon_sym_expect] = ACTIONS(4987), - [anon_sym_actual] = ACTIONS(4987), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4989), - [sym__automatic_semicolon] = ACTIONS(4989), - [sym_safe_nav] = ACTIONS(4989), + [3900] = { + [sym__alpha_identifier] = ACTIONS(5019), + [anon_sym_AT] = ACTIONS(5021), + [anon_sym_LBRACK] = ACTIONS(5021), + [anon_sym_DOT] = ACTIONS(5019), + [anon_sym_as] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5021), + [anon_sym_RBRACE] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5021), + [anon_sym_COMMA] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5019), + [anon_sym_GT] = ACTIONS(5019), + [anon_sym_where] = ACTIONS(5019), + [anon_sym_SEMI] = ACTIONS(5021), + [anon_sym_get] = ACTIONS(5019), + [anon_sym_set] = ACTIONS(5019), + [anon_sym_STAR] = ACTIONS(5019), + [sym_label] = ACTIONS(5021), + [anon_sym_in] = ACTIONS(5019), + [anon_sym_DOT_DOT] = ACTIONS(5021), + [anon_sym_QMARK_COLON] = ACTIONS(5021), + [anon_sym_AMP_AMP] = ACTIONS(5021), + [anon_sym_PIPE_PIPE] = ACTIONS(5021), + [anon_sym_else] = ACTIONS(5019), + [anon_sym_COLON_COLON] = ACTIONS(5021), + [anon_sym_PLUS_EQ] = ACTIONS(5021), + [anon_sym_DASH_EQ] = ACTIONS(5021), + [anon_sym_STAR_EQ] = ACTIONS(5021), + [anon_sym_SLASH_EQ] = ACTIONS(5021), + [anon_sym_PERCENT_EQ] = ACTIONS(5021), + [anon_sym_BANG_EQ] = ACTIONS(5019), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5021), + [anon_sym_EQ_EQ] = ACTIONS(5019), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5021), + [anon_sym_LT_EQ] = ACTIONS(5021), + [anon_sym_GT_EQ] = ACTIONS(5021), + [anon_sym_BANGin] = ACTIONS(5021), + [anon_sym_is] = ACTIONS(5019), + [anon_sym_BANGis] = ACTIONS(5021), + [anon_sym_PLUS] = ACTIONS(5019), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_SLASH] = ACTIONS(5019), + [anon_sym_PERCENT] = ACTIONS(5019), + [anon_sym_as_QMARK] = ACTIONS(5021), + [anon_sym_PLUS_PLUS] = ACTIONS(5021), + [anon_sym_DASH_DASH] = ACTIONS(5021), + [anon_sym_BANG_BANG] = ACTIONS(5021), + [anon_sym_suspend] = ACTIONS(5019), + [anon_sym_sealed] = ACTIONS(5019), + [anon_sym_annotation] = ACTIONS(5019), + [anon_sym_data] = ACTIONS(5019), + [anon_sym_inner] = ACTIONS(5019), + [anon_sym_value] = ACTIONS(5019), + [anon_sym_override] = ACTIONS(5019), + [anon_sym_lateinit] = ACTIONS(5019), + [anon_sym_public] = ACTIONS(5019), + [anon_sym_private] = ACTIONS(5019), + [anon_sym_internal] = ACTIONS(5019), + [anon_sym_protected] = ACTIONS(5019), + [anon_sym_tailrec] = ACTIONS(5019), + [anon_sym_operator] = ACTIONS(5019), + [anon_sym_infix] = ACTIONS(5019), + [anon_sym_inline] = ACTIONS(5019), + [anon_sym_external] = ACTIONS(5019), + [sym_property_modifier] = ACTIONS(5019), + [anon_sym_abstract] = ACTIONS(5019), + [anon_sym_final] = ACTIONS(5019), + [anon_sym_open] = ACTIONS(5019), + [anon_sym_vararg] = ACTIONS(5019), + [anon_sym_noinline] = ACTIONS(5019), + [anon_sym_crossinline] = ACTIONS(5019), + [anon_sym_expect] = ACTIONS(5019), + [anon_sym_actual] = ACTIONS(5019), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5021), + [sym__automatic_semicolon] = ACTIONS(5021), + [sym_safe_nav] = ACTIONS(5021), [sym_multiline_comment] = ACTIONS(3), }, - [3976] = { - [sym_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(7175), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_EQ] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4405), - [sym_label] = ACTIONS(4407), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_PLUS_EQ] = ACTIONS(4407), - [anon_sym_DASH_EQ] = ACTIONS(4407), - [anon_sym_STAR_EQ] = ACTIONS(4407), - [anon_sym_SLASH_EQ] = ACTIONS(4407), - [anon_sym_PERCENT_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4405), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), + [3901] = { + [sym__alpha_identifier] = ACTIONS(5037), + [anon_sym_AT] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_DOT] = ACTIONS(5037), + [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_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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, - [3977] = { - [sym__alpha_identifier] = ACTIONS(1734), - [anon_sym_AT] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_as] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1734), - [anon_sym_LBRACE] = ACTIONS(1736), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1736), - [anon_sym_COMMA] = ACTIONS(1736), - [anon_sym_LT] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1734), - [anon_sym_where] = ACTIONS(1734), - [anon_sym_SEMI] = ACTIONS(1736), - [anon_sym_get] = ACTIONS(1734), - [anon_sym_set] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [sym_label] = ACTIONS(1736), - [anon_sym_in] = ACTIONS(1734), - [anon_sym_DOT_DOT] = ACTIONS(1736), - [anon_sym_QMARK_COLON] = ACTIONS(1736), - [anon_sym_AMP_AMP] = ACTIONS(1736), - [anon_sym_PIPE_PIPE] = ACTIONS(1736), - [anon_sym_else] = ACTIONS(1734), - [anon_sym_COLON_COLON] = ACTIONS(1736), - [anon_sym_PLUS_EQ] = ACTIONS(1736), - [anon_sym_DASH_EQ] = ACTIONS(1736), - [anon_sym_STAR_EQ] = ACTIONS(1736), - [anon_sym_SLASH_EQ] = ACTIONS(1736), - [anon_sym_PERCENT_EQ] = ACTIONS(1736), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1736), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1736), - [anon_sym_BANGin] = ACTIONS(1736), - [anon_sym_is] = ACTIONS(1734), - [anon_sym_BANGis] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1734), - [anon_sym_DASH] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_as_QMARK] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1736), - [anon_sym_DASH_DASH] = ACTIONS(1736), - [anon_sym_BANG_BANG] = ACTIONS(1736), - [anon_sym_suspend] = ACTIONS(1734), - [anon_sym_sealed] = ACTIONS(1734), - [anon_sym_annotation] = ACTIONS(1734), - [anon_sym_data] = ACTIONS(1734), - [anon_sym_inner] = ACTIONS(1734), - [anon_sym_value] = ACTIONS(1734), - [anon_sym_override] = ACTIONS(1734), - [anon_sym_lateinit] = ACTIONS(1734), - [anon_sym_public] = ACTIONS(1734), - [anon_sym_private] = ACTIONS(1734), - [anon_sym_internal] = ACTIONS(1734), - [anon_sym_protected] = ACTIONS(1734), - [anon_sym_tailrec] = ACTIONS(1734), - [anon_sym_operator] = ACTIONS(1734), - [anon_sym_infix] = ACTIONS(1734), - [anon_sym_inline] = ACTIONS(1734), - [anon_sym_external] = ACTIONS(1734), - [sym_property_modifier] = ACTIONS(1734), - [anon_sym_abstract] = ACTIONS(1734), - [anon_sym_final] = ACTIONS(1734), - [anon_sym_open] = ACTIONS(1734), - [anon_sym_vararg] = ACTIONS(1734), - [anon_sym_noinline] = ACTIONS(1734), - [anon_sym_crossinline] = ACTIONS(1734), - [anon_sym_expect] = ACTIONS(1734), - [anon_sym_actual] = ACTIONS(1734), + [3902] = { + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_RBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4418), + [anon_sym_DASH_GT] = ACTIONS(4418), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_while] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + }, + [3903] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(5790), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4217), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + }, + [3904] = { + [sym__alpha_identifier] = ACTIONS(5007), + [anon_sym_AT] = ACTIONS(5009), + [anon_sym_LBRACK] = ACTIONS(5009), + [anon_sym_DOT] = ACTIONS(5007), + [anon_sym_as] = ACTIONS(5007), + [anon_sym_EQ] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5009), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_COMMA] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(7085), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_where] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_get] = ACTIONS(5007), + [anon_sym_set] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [sym_label] = ACTIONS(5009), + [anon_sym_in] = ACTIONS(5007), + [anon_sym_DOT_DOT] = ACTIONS(5009), + [anon_sym_QMARK_COLON] = ACTIONS(5009), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5009), + [anon_sym_else] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5009), + [anon_sym_PLUS_EQ] = ACTIONS(5009), + [anon_sym_DASH_EQ] = ACTIONS(5009), + [anon_sym_STAR_EQ] = ACTIONS(5009), + [anon_sym_SLASH_EQ] = ACTIONS(5009), + [anon_sym_PERCENT_EQ] = ACTIONS(5009), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5009), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5009), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5009), + [anon_sym_BANGin] = ACTIONS(5009), + [anon_sym_is] = ACTIONS(5007), + [anon_sym_BANGis] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_as_QMARK] = ACTIONS(5009), + [anon_sym_PLUS_PLUS] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5009), + [anon_sym_BANG_BANG] = ACTIONS(5009), + [anon_sym_suspend] = ACTIONS(5007), + [anon_sym_sealed] = ACTIONS(5007), + [anon_sym_annotation] = ACTIONS(5007), + [anon_sym_data] = ACTIONS(5007), + [anon_sym_inner] = ACTIONS(5007), + [anon_sym_value] = ACTIONS(5007), + [anon_sym_override] = ACTIONS(5007), + [anon_sym_lateinit] = ACTIONS(5007), + [anon_sym_public] = ACTIONS(5007), + [anon_sym_private] = ACTIONS(5007), + [anon_sym_internal] = ACTIONS(5007), + [anon_sym_protected] = ACTIONS(5007), + [anon_sym_tailrec] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5007), + [anon_sym_infix] = ACTIONS(5007), + [anon_sym_inline] = ACTIONS(5007), + [anon_sym_external] = ACTIONS(5007), + [sym_property_modifier] = ACTIONS(5007), + [anon_sym_abstract] = ACTIONS(5007), + [anon_sym_final] = ACTIONS(5007), + [anon_sym_open] = ACTIONS(5007), + [anon_sym_vararg] = ACTIONS(5007), + [anon_sym_noinline] = ACTIONS(5007), + [anon_sym_crossinline] = ACTIONS(5007), + [anon_sym_expect] = ACTIONS(5007), + [anon_sym_actual] = ACTIONS(5007), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1736), - [sym__automatic_semicolon] = ACTIONS(1736), - [sym_safe_nav] = ACTIONS(1736), + [sym__backtick_identifier] = ACTIONS(5009), + [sym__automatic_semicolon] = ACTIONS(5009), + [sym_safe_nav] = ACTIONS(5009), [sym_multiline_comment] = ACTIONS(3), }, - [3978] = { - [sym__alpha_identifier] = ACTIONS(4874), - [anon_sym_AT] = ACTIONS(4876), - [anon_sym_LBRACK] = ACTIONS(4876), - [anon_sym_DOT] = ACTIONS(4874), - [anon_sym_as] = ACTIONS(4874), - [anon_sym_EQ] = ACTIONS(4874), - [anon_sym_LBRACE] = ACTIONS(4876), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_LPAREN] = ACTIONS(4876), - [anon_sym_COMMA] = ACTIONS(4876), - [anon_sym_LT] = ACTIONS(4874), - [anon_sym_GT] = ACTIONS(4874), - [anon_sym_where] = ACTIONS(4874), - [anon_sym_SEMI] = ACTIONS(4876), - [anon_sym_get] = ACTIONS(4874), - [anon_sym_set] = ACTIONS(4874), - [anon_sym_STAR] = ACTIONS(4874), - [sym_label] = ACTIONS(4876), - [anon_sym_in] = ACTIONS(4874), - [anon_sym_DOT_DOT] = ACTIONS(4876), - [anon_sym_QMARK_COLON] = ACTIONS(4876), - [anon_sym_AMP_AMP] = ACTIONS(4876), - [anon_sym_PIPE_PIPE] = ACTIONS(4876), - [anon_sym_else] = ACTIONS(4874), - [anon_sym_COLON_COLON] = ACTIONS(4876), - [anon_sym_PLUS_EQ] = ACTIONS(4876), - [anon_sym_DASH_EQ] = ACTIONS(4876), - [anon_sym_STAR_EQ] = ACTIONS(4876), - [anon_sym_SLASH_EQ] = ACTIONS(4876), - [anon_sym_PERCENT_EQ] = ACTIONS(4876), - [anon_sym_BANG_EQ] = ACTIONS(4874), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4876), - [anon_sym_EQ_EQ] = ACTIONS(4874), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4876), - [anon_sym_LT_EQ] = ACTIONS(4876), - [anon_sym_GT_EQ] = ACTIONS(4876), - [anon_sym_BANGin] = ACTIONS(4876), - [anon_sym_is] = ACTIONS(4874), - [anon_sym_BANGis] = ACTIONS(4876), - [anon_sym_PLUS] = ACTIONS(4874), - [anon_sym_DASH] = ACTIONS(4874), - [anon_sym_SLASH] = ACTIONS(4874), - [anon_sym_PERCENT] = ACTIONS(4874), - [anon_sym_as_QMARK] = ACTIONS(4876), - [anon_sym_PLUS_PLUS] = ACTIONS(4876), - [anon_sym_DASH_DASH] = ACTIONS(4876), - [anon_sym_BANG_BANG] = ACTIONS(4876), - [anon_sym_suspend] = ACTIONS(4874), - [anon_sym_sealed] = ACTIONS(4874), - [anon_sym_annotation] = ACTIONS(4874), - [anon_sym_data] = ACTIONS(4874), - [anon_sym_inner] = ACTIONS(4874), - [anon_sym_value] = ACTIONS(4874), - [anon_sym_override] = ACTIONS(4874), - [anon_sym_lateinit] = ACTIONS(4874), - [anon_sym_public] = ACTIONS(4874), - [anon_sym_private] = ACTIONS(4874), - [anon_sym_internal] = ACTIONS(4874), - [anon_sym_protected] = ACTIONS(4874), - [anon_sym_tailrec] = ACTIONS(4874), - [anon_sym_operator] = ACTIONS(4874), - [anon_sym_infix] = ACTIONS(4874), - [anon_sym_inline] = ACTIONS(4874), - [anon_sym_external] = ACTIONS(4874), - [sym_property_modifier] = ACTIONS(4874), - [anon_sym_abstract] = ACTIONS(4874), - [anon_sym_final] = ACTIONS(4874), - [anon_sym_open] = ACTIONS(4874), - [anon_sym_vararg] = ACTIONS(4874), - [anon_sym_noinline] = ACTIONS(4874), - [anon_sym_crossinline] = ACTIONS(4874), - [anon_sym_expect] = ACTIONS(4874), - [anon_sym_actual] = ACTIONS(4874), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4876), - [sym__automatic_semicolon] = ACTIONS(4876), - [sym_safe_nav] = ACTIONS(4876), + [3905] = { + [sym__alpha_identifier] = ACTIONS(4810), + [anon_sym_AT] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_DOT] = ACTIONS(4810), + [anon_sym_as] = ACTIONS(4810), + [anon_sym_EQ] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4812), + [anon_sym_COMMA] = ACTIONS(4812), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_where] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_get] = ACTIONS(4810), + [anon_sym_set] = ACTIONS(4810), + [anon_sym_STAR] = ACTIONS(4810), + [sym_label] = ACTIONS(4812), + [anon_sym_in] = ACTIONS(4810), + [anon_sym_DOT_DOT] = ACTIONS(4812), + [anon_sym_QMARK_COLON] = ACTIONS(4812), + [anon_sym_AMP_AMP] = ACTIONS(4812), + [anon_sym_PIPE_PIPE] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4810), + [anon_sym_COLON_COLON] = ACTIONS(4812), + [anon_sym_PLUS_EQ] = ACTIONS(4812), + [anon_sym_DASH_EQ] = ACTIONS(4812), + [anon_sym_STAR_EQ] = ACTIONS(4812), + [anon_sym_SLASH_EQ] = ACTIONS(4812), + [anon_sym_PERCENT_EQ] = ACTIONS(4812), + [anon_sym_BANG_EQ] = ACTIONS(4810), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4812), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4812), + [anon_sym_LT_EQ] = ACTIONS(4812), + [anon_sym_GT_EQ] = ACTIONS(4812), + [anon_sym_BANGin] = ACTIONS(4812), + [anon_sym_is] = ACTIONS(4810), + [anon_sym_BANGis] = ACTIONS(4812), + [anon_sym_PLUS] = ACTIONS(4810), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_SLASH] = ACTIONS(4810), + [anon_sym_PERCENT] = ACTIONS(4810), + [anon_sym_as_QMARK] = ACTIONS(4812), + [anon_sym_PLUS_PLUS] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_BANG_BANG] = ACTIONS(4812), + [anon_sym_suspend] = ACTIONS(4810), + [anon_sym_sealed] = ACTIONS(4810), + [anon_sym_annotation] = ACTIONS(4810), + [anon_sym_data] = ACTIONS(4810), + [anon_sym_inner] = ACTIONS(4810), + [anon_sym_value] = ACTIONS(4810), + [anon_sym_override] = ACTIONS(4810), + [anon_sym_lateinit] = ACTIONS(4810), + [anon_sym_public] = ACTIONS(4810), + [anon_sym_private] = ACTIONS(4810), + [anon_sym_internal] = ACTIONS(4810), + [anon_sym_protected] = ACTIONS(4810), + [anon_sym_tailrec] = ACTIONS(4810), + [anon_sym_operator] = ACTIONS(4810), + [anon_sym_infix] = ACTIONS(4810), + [anon_sym_inline] = ACTIONS(4810), + [anon_sym_external] = ACTIONS(4810), + [sym_property_modifier] = ACTIONS(4810), + [anon_sym_abstract] = ACTIONS(4810), + [anon_sym_final] = ACTIONS(4810), + [anon_sym_open] = ACTIONS(4810), + [anon_sym_vararg] = ACTIONS(4810), + [anon_sym_noinline] = ACTIONS(4810), + [anon_sym_crossinline] = ACTIONS(4810), + [anon_sym_expect] = ACTIONS(4810), + [anon_sym_actual] = ACTIONS(4810), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4812), + [sym__automatic_semicolon] = ACTIONS(4812), + [sym_safe_nav] = ACTIONS(4812), [sym_multiline_comment] = ACTIONS(3), }, - [3979] = { - [sym_class_body] = STATE(3539), - [sym_type_constraints] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(7177), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_RBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4301), - [anon_sym_DASH_GT] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_while] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), + [3906] = { + [sym_function_body] = STATE(3367), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [anon_sym_DASH_GT] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, - [3980] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(7179), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7181), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [3907] = { + [sym_function_body] = STATE(3991), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3908] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(5778), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [3909] = { + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4260), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_PLUS_EQ] = ACTIONS(4262), + [anon_sym_DASH_EQ] = ACTIONS(4262), + [anon_sym_STAR_EQ] = ACTIONS(4262), + [anon_sym_SLASH_EQ] = ACTIONS(4262), + [anon_sym_PERCENT_EQ] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [3981] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7181), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [3910] = { + [sym_class_body] = STATE(4005), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(7087), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_EQ] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_PLUS_EQ] = ACTIONS(4355), + [anon_sym_DASH_EQ] = ACTIONS(4355), + [anon_sym_STAR_EQ] = ACTIONS(4355), + [anon_sym_SLASH_EQ] = ACTIONS(4355), + [anon_sym_PERCENT_EQ] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4353), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + }, + [3911] = { + [sym__alpha_identifier] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1764), + [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_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_value] = 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), + [sym_multiline_comment] = ACTIONS(3), + }, + [3912] = { + [sym__alpha_identifier] = ACTIONS(4814), + [anon_sym_AT] = ACTIONS(4816), + [anon_sym_LBRACK] = ACTIONS(4816), + [anon_sym_DOT] = ACTIONS(4814), + [anon_sym_as] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4816), + [anon_sym_RBRACE] = ACTIONS(4816), + [anon_sym_LPAREN] = ACTIONS(4816), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_LT] = ACTIONS(4814), + [anon_sym_GT] = ACTIONS(4814), + [anon_sym_where] = ACTIONS(4814), + [anon_sym_SEMI] = ACTIONS(4816), + [anon_sym_get] = ACTIONS(4814), + [anon_sym_set] = ACTIONS(4814), + [anon_sym_STAR] = ACTIONS(4814), + [sym_label] = ACTIONS(4816), + [anon_sym_in] = ACTIONS(4814), + [anon_sym_DOT_DOT] = ACTIONS(4816), + [anon_sym_QMARK_COLON] = ACTIONS(4816), + [anon_sym_AMP_AMP] = ACTIONS(4816), + [anon_sym_PIPE_PIPE] = ACTIONS(4816), + [anon_sym_else] = ACTIONS(4814), + [anon_sym_COLON_COLON] = ACTIONS(4816), + [anon_sym_PLUS_EQ] = ACTIONS(4816), + [anon_sym_DASH_EQ] = ACTIONS(4816), + [anon_sym_STAR_EQ] = ACTIONS(4816), + [anon_sym_SLASH_EQ] = ACTIONS(4816), + [anon_sym_PERCENT_EQ] = ACTIONS(4816), + [anon_sym_BANG_EQ] = ACTIONS(4814), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4816), + [anon_sym_EQ_EQ] = ACTIONS(4814), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4816), + [anon_sym_LT_EQ] = ACTIONS(4816), + [anon_sym_GT_EQ] = ACTIONS(4816), + [anon_sym_BANGin] = ACTIONS(4816), + [anon_sym_is] = ACTIONS(4814), + [anon_sym_BANGis] = ACTIONS(4816), + [anon_sym_PLUS] = ACTIONS(4814), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_SLASH] = ACTIONS(4814), + [anon_sym_PERCENT] = ACTIONS(4814), + [anon_sym_as_QMARK] = ACTIONS(4816), + [anon_sym_PLUS_PLUS] = ACTIONS(4816), + [anon_sym_DASH_DASH] = ACTIONS(4816), + [anon_sym_BANG_BANG] = ACTIONS(4816), + [anon_sym_suspend] = ACTIONS(4814), + [anon_sym_sealed] = ACTIONS(4814), + [anon_sym_annotation] = ACTIONS(4814), + [anon_sym_data] = ACTIONS(4814), + [anon_sym_inner] = ACTIONS(4814), + [anon_sym_value] = ACTIONS(4814), + [anon_sym_override] = ACTIONS(4814), + [anon_sym_lateinit] = ACTIONS(4814), + [anon_sym_public] = ACTIONS(4814), + [anon_sym_private] = ACTIONS(4814), + [anon_sym_internal] = ACTIONS(4814), + [anon_sym_protected] = ACTIONS(4814), + [anon_sym_tailrec] = ACTIONS(4814), + [anon_sym_operator] = ACTIONS(4814), + [anon_sym_infix] = ACTIONS(4814), + [anon_sym_inline] = ACTIONS(4814), + [anon_sym_external] = ACTIONS(4814), + [sym_property_modifier] = ACTIONS(4814), + [anon_sym_abstract] = ACTIONS(4814), + [anon_sym_final] = ACTIONS(4814), + [anon_sym_open] = ACTIONS(4814), + [anon_sym_vararg] = ACTIONS(4814), + [anon_sym_noinline] = ACTIONS(4814), + [anon_sym_crossinline] = ACTIONS(4814), + [anon_sym_expect] = ACTIONS(4814), + [anon_sym_actual] = ACTIONS(4814), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4816), + [sym__automatic_semicolon] = ACTIONS(4816), + [sym_safe_nav] = ACTIONS(4816), + [sym_multiline_comment] = ACTIONS(3), + }, + [3913] = { + [sym__alpha_identifier] = ACTIONS(4912), + [anon_sym_AT] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_DOT] = ACTIONS(4912), + [anon_sym_as] = ACTIONS(4912), + [anon_sym_EQ] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_COMMA] = ACTIONS(4914), + [anon_sym_LT] = ACTIONS(4912), + [anon_sym_GT] = ACTIONS(4912), + [anon_sym_where] = ACTIONS(4912), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_get] = ACTIONS(4912), + [anon_sym_set] = ACTIONS(4912), + [anon_sym_STAR] = ACTIONS(4912), + [sym_label] = ACTIONS(4914), + [anon_sym_in] = ACTIONS(4912), + [anon_sym_DOT_DOT] = ACTIONS(4914), + [anon_sym_QMARK_COLON] = ACTIONS(4914), + [anon_sym_AMP_AMP] = ACTIONS(4914), + [anon_sym_PIPE_PIPE] = ACTIONS(4914), + [anon_sym_else] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4914), + [anon_sym_PLUS_EQ] = ACTIONS(4914), + [anon_sym_DASH_EQ] = ACTIONS(4914), + [anon_sym_STAR_EQ] = ACTIONS(4914), + [anon_sym_SLASH_EQ] = ACTIONS(4914), + [anon_sym_PERCENT_EQ] = ACTIONS(4914), + [anon_sym_BANG_EQ] = ACTIONS(4912), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4914), + [anon_sym_EQ_EQ] = ACTIONS(4912), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4914), + [anon_sym_LT_EQ] = ACTIONS(4914), + [anon_sym_GT_EQ] = ACTIONS(4914), + [anon_sym_BANGin] = ACTIONS(4914), + [anon_sym_is] = ACTIONS(4912), + [anon_sym_BANGis] = ACTIONS(4914), + [anon_sym_PLUS] = ACTIONS(4912), + [anon_sym_DASH] = ACTIONS(4912), + [anon_sym_SLASH] = ACTIONS(4912), + [anon_sym_PERCENT] = ACTIONS(4912), + [anon_sym_as_QMARK] = ACTIONS(4914), + [anon_sym_PLUS_PLUS] = ACTIONS(4914), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_BANG_BANG] = ACTIONS(4914), + [anon_sym_suspend] = ACTIONS(4912), + [anon_sym_sealed] = ACTIONS(4912), + [anon_sym_annotation] = ACTIONS(4912), + [anon_sym_data] = ACTIONS(4912), + [anon_sym_inner] = ACTIONS(4912), + [anon_sym_value] = ACTIONS(4912), + [anon_sym_override] = ACTIONS(4912), + [anon_sym_lateinit] = ACTIONS(4912), + [anon_sym_public] = ACTIONS(4912), + [anon_sym_private] = ACTIONS(4912), + [anon_sym_internal] = ACTIONS(4912), + [anon_sym_protected] = ACTIONS(4912), + [anon_sym_tailrec] = ACTIONS(4912), + [anon_sym_operator] = ACTIONS(4912), + [anon_sym_infix] = ACTIONS(4912), + [anon_sym_inline] = ACTIONS(4912), + [anon_sym_external] = ACTIONS(4912), + [sym_property_modifier] = ACTIONS(4912), + [anon_sym_abstract] = ACTIONS(4912), + [anon_sym_final] = ACTIONS(4912), + [anon_sym_open] = ACTIONS(4912), + [anon_sym_vararg] = ACTIONS(4912), + [anon_sym_noinline] = ACTIONS(4912), + [anon_sym_crossinline] = ACTIONS(4912), + [anon_sym_expect] = ACTIONS(4912), + [anon_sym_actual] = ACTIONS(4912), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4914), + [sym__automatic_semicolon] = ACTIONS(4914), + [sym_safe_nav] = ACTIONS(4914), + [sym_multiline_comment] = ACTIONS(3), + }, + [3914] = { + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_EQ] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3218), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_PLUS_EQ] = ACTIONS(3222), + [anon_sym_DASH_EQ] = ACTIONS(3222), + [anon_sym_STAR_EQ] = ACTIONS(3222), + [anon_sym_SLASH_EQ] = ACTIONS(3222), + [anon_sym_PERCENT_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3218), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [3915] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3825), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_as] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_RBRACE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(7089), + [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_SEMI] = ACTIONS(4515), + [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_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_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(4515), + [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_value] = 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), + [anon_sym_this_AT] = ACTIONS(4515), + [anon_sym_super_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), + }, + [3916] = { + [sym__alpha_identifier] = ACTIONS(5161), + [anon_sym_AT] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_DOT] = ACTIONS(5161), + [anon_sym_as] = ACTIONS(5161), + [anon_sym_EQ] = ACTIONS(5161), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_where] = ACTIONS(5161), + [anon_sym_SEMI] = ACTIONS(5163), + [anon_sym_get] = ACTIONS(5161), + [anon_sym_set] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [sym_label] = ACTIONS(5163), + [anon_sym_in] = ACTIONS(5161), + [anon_sym_DOT_DOT] = ACTIONS(5163), + [anon_sym_QMARK_COLON] = ACTIONS(5163), + [anon_sym_AMP_AMP] = ACTIONS(5163), + [anon_sym_PIPE_PIPE] = ACTIONS(5163), + [anon_sym_else] = ACTIONS(5161), + [anon_sym_COLON_COLON] = ACTIONS(5163), + [anon_sym_PLUS_EQ] = ACTIONS(5163), + [anon_sym_DASH_EQ] = ACTIONS(5163), + [anon_sym_STAR_EQ] = ACTIONS(5163), + [anon_sym_SLASH_EQ] = ACTIONS(5163), + [anon_sym_PERCENT_EQ] = ACTIONS(5163), + [anon_sym_BANG_EQ] = ACTIONS(5161), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5163), + [anon_sym_EQ_EQ] = ACTIONS(5161), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5163), + [anon_sym_LT_EQ] = ACTIONS(5163), + [anon_sym_GT_EQ] = ACTIONS(5163), + [anon_sym_BANGin] = ACTIONS(5163), + [anon_sym_is] = ACTIONS(5161), + [anon_sym_BANGis] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_PERCENT] = ACTIONS(5161), + [anon_sym_as_QMARK] = ACTIONS(5163), + [anon_sym_PLUS_PLUS] = ACTIONS(5163), + [anon_sym_DASH_DASH] = ACTIONS(5163), + [anon_sym_BANG_BANG] = ACTIONS(5163), + [anon_sym_suspend] = ACTIONS(5161), + [anon_sym_sealed] = ACTIONS(5161), + [anon_sym_annotation] = ACTIONS(5161), + [anon_sym_data] = ACTIONS(5161), + [anon_sym_inner] = ACTIONS(5161), + [anon_sym_value] = ACTIONS(5161), + [anon_sym_override] = ACTIONS(5161), + [anon_sym_lateinit] = ACTIONS(5161), + [anon_sym_public] = ACTIONS(5161), + [anon_sym_private] = ACTIONS(5161), + [anon_sym_internal] = ACTIONS(5161), + [anon_sym_protected] = ACTIONS(5161), + [anon_sym_tailrec] = ACTIONS(5161), + [anon_sym_operator] = ACTIONS(5161), + [anon_sym_infix] = ACTIONS(5161), + [anon_sym_inline] = ACTIONS(5161), + [anon_sym_external] = ACTIONS(5161), + [sym_property_modifier] = ACTIONS(5161), + [anon_sym_abstract] = ACTIONS(5161), + [anon_sym_final] = ACTIONS(5161), + [anon_sym_open] = ACTIONS(5161), + [anon_sym_vararg] = ACTIONS(5161), + [anon_sym_noinline] = ACTIONS(5161), + [anon_sym_crossinline] = ACTIONS(5161), + [anon_sym_expect] = ACTIONS(5161), + [anon_sym_actual] = ACTIONS(5161), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(5163), + [sym__automatic_semicolon] = ACTIONS(5163), + [sym_safe_nav] = ACTIONS(5163), [sym_multiline_comment] = ACTIONS(3), }, - [3982] = { - [sym_function_body] = STATE(3527), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_RBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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), + [3917] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(3915), + [sym__alpha_identifier] = ACTIONS(4587), + [anon_sym_AT] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4589), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(7089), + [anon_sym_LT] = ACTIONS(4587), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_where] = ACTIONS(4587), + [anon_sym_object] = ACTIONS(4587), + [anon_sym_fun] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), + [anon_sym_this] = ACTIONS(4587), + [anon_sym_super] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4589), + [sym_label] = ACTIONS(4587), + [anon_sym_in] = ACTIONS(4587), + [anon_sym_DOT_DOT] = ACTIONS(4589), + [anon_sym_QMARK_COLON] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_null] = ACTIONS(4587), + [anon_sym_if] = ACTIONS(4587), + [anon_sym_else] = ACTIONS(4587), + [anon_sym_when] = ACTIONS(4587), + [anon_sym_try] = ACTIONS(4587), + [anon_sym_throw] = ACTIONS(4587), + [anon_sym_return] = ACTIONS(4587), + [anon_sym_continue] = ACTIONS(4587), + [anon_sym_break] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_BANGin] = ACTIONS(4589), + [anon_sym_is] = ACTIONS(4587), + [anon_sym_BANGis] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4589), + [anon_sym_as_QMARK] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_BANG] = ACTIONS(4587), + [anon_sym_BANG_BANG] = ACTIONS(4589), + [anon_sym_data] = ACTIONS(4587), + [anon_sym_inner] = ACTIONS(4587), + [anon_sym_value] = ACTIONS(4587), + [anon_sym_expect] = ACTIONS(4587), + [anon_sym_actual] = ACTIONS(4587), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4589), + [anon_sym_continue_AT] = ACTIONS(4589), + [anon_sym_break_AT] = ACTIONS(4589), + [anon_sym_this_AT] = ACTIONS(4589), + [anon_sym_super_AT] = ACTIONS(4589), + [sym_real_literal] = ACTIONS(4589), + [sym_integer_literal] = ACTIONS(4587), + [sym_hex_literal] = ACTIONS(4589), + [sym_bin_literal] = ACTIONS(4589), + [anon_sym_true] = ACTIONS(4587), + [anon_sym_false] = ACTIONS(4587), + [anon_sym_SQUOTE] = ACTIONS(4589), + [sym__backtick_identifier] = ACTIONS(4589), + [sym__automatic_semicolon] = ACTIONS(4589), + [sym_safe_nav] = ACTIONS(4589), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4589), + }, + [3918] = { + [sym_class_body] = STATE(3549), + [sym_type_constraints] = STATE(3273), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(6084), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_RBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [anon_sym_DASH_GT] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, - [3983] = { - [sym__alpha_identifier] = ACTIONS(5213), - [anon_sym_AT] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_typealias] = ACTIONS(5213), - [anon_sym_class] = ACTIONS(5213), - [anon_sym_interface] = ACTIONS(5213), - [anon_sym_enum] = ACTIONS(5213), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_val] = ACTIONS(5213), - [anon_sym_var] = ACTIONS(5213), - [anon_sym_object] = ACTIONS(5213), - [anon_sym_fun] = ACTIONS(5213), - [anon_sym_get] = ACTIONS(5213), - [anon_sym_set] = ACTIONS(5213), - [anon_sym_this] = ACTIONS(5213), - [anon_sym_super] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5215), - [sym_label] = ACTIONS(5213), - [anon_sym_for] = ACTIONS(5213), - [anon_sym_while] = ACTIONS(5213), - [anon_sym_do] = ACTIONS(5213), - [anon_sym_null] = ACTIONS(5213), - [anon_sym_if] = ACTIONS(5213), - [anon_sym_when] = ACTIONS(5213), - [anon_sym_try] = ACTIONS(5213), - [anon_sym_throw] = ACTIONS(5213), - [anon_sym_return] = ACTIONS(5213), - [anon_sym_continue] = ACTIONS(5213), - [anon_sym_break] = ACTIONS(5213), - [anon_sym_COLON_COLON] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_PLUS_PLUS] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5215), - [anon_sym_BANG] = ACTIONS(5215), - [anon_sym_suspend] = ACTIONS(5213), - [anon_sym_sealed] = ACTIONS(5213), - [anon_sym_annotation] = ACTIONS(5213), - [anon_sym_data] = ACTIONS(5213), - [anon_sym_inner] = ACTIONS(5213), - [anon_sym_value] = ACTIONS(5213), - [anon_sym_override] = ACTIONS(5213), - [anon_sym_lateinit] = ACTIONS(5213), - [anon_sym_public] = ACTIONS(5213), - [anon_sym_private] = ACTIONS(5213), - [anon_sym_internal] = ACTIONS(5213), - [anon_sym_protected] = ACTIONS(5213), - [anon_sym_tailrec] = ACTIONS(5213), - [anon_sym_operator] = ACTIONS(5213), - [anon_sym_infix] = ACTIONS(5213), - [anon_sym_inline] = ACTIONS(5213), - [anon_sym_external] = ACTIONS(5213), - [sym_property_modifier] = ACTIONS(5213), - [anon_sym_abstract] = ACTIONS(5213), - [anon_sym_final] = ACTIONS(5213), - [anon_sym_open] = ACTIONS(5213), - [anon_sym_vararg] = ACTIONS(5213), - [anon_sym_noinline] = ACTIONS(5213), - [anon_sym_crossinline] = ACTIONS(5213), - [anon_sym_expect] = ACTIONS(5213), - [anon_sym_actual] = ACTIONS(5213), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5215), - [anon_sym_continue_AT] = ACTIONS(5215), - [anon_sym_break_AT] = ACTIONS(5215), - [anon_sym_this_AT] = ACTIONS(5215), - [anon_sym_super_AT] = ACTIONS(5215), - [sym_real_literal] = ACTIONS(5215), - [sym_integer_literal] = ACTIONS(5213), - [sym_hex_literal] = ACTIONS(5215), - [sym_bin_literal] = ACTIONS(5215), - [anon_sym_true] = ACTIONS(5213), - [anon_sym_false] = ACTIONS(5213), - [anon_sym_SQUOTE] = ACTIONS(5215), - [sym__backtick_identifier] = ACTIONS(5215), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5215), + [3919] = { + [sym__alpha_identifier] = ACTIONS(4880), + [anon_sym_AT] = ACTIONS(4882), + [anon_sym_LBRACK] = ACTIONS(4882), + [anon_sym_typealias] = ACTIONS(4880), + [anon_sym_class] = ACTIONS(4880), + [anon_sym_interface] = ACTIONS(4880), + [anon_sym_enum] = ACTIONS(4880), + [anon_sym_LBRACE] = ACTIONS(4882), + [anon_sym_LPAREN] = ACTIONS(4882), + [anon_sym_val] = ACTIONS(4880), + [anon_sym_var] = ACTIONS(4880), + [anon_sym_object] = ACTIONS(4880), + [anon_sym_fun] = ACTIONS(4880), + [anon_sym_get] = ACTIONS(4880), + [anon_sym_set] = ACTIONS(4880), + [anon_sym_this] = ACTIONS(4880), + [anon_sym_super] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4882), + [sym_label] = ACTIONS(4880), + [anon_sym_for] = ACTIONS(4880), + [anon_sym_while] = ACTIONS(4880), + [anon_sym_do] = ACTIONS(4880), + [anon_sym_null] = ACTIONS(4880), + [anon_sym_if] = ACTIONS(4880), + [anon_sym_when] = ACTIONS(4880), + [anon_sym_try] = ACTIONS(4880), + [anon_sym_throw] = ACTIONS(4880), + [anon_sym_return] = ACTIONS(4880), + [anon_sym_continue] = ACTIONS(4880), + [anon_sym_break] = ACTIONS(4880), + [anon_sym_COLON_COLON] = ACTIONS(4882), + [anon_sym_PLUS] = ACTIONS(4880), + [anon_sym_DASH] = ACTIONS(4880), + [anon_sym_PLUS_PLUS] = ACTIONS(4882), + [anon_sym_DASH_DASH] = ACTIONS(4882), + [anon_sym_BANG] = ACTIONS(4882), + [anon_sym_suspend] = ACTIONS(4880), + [anon_sym_sealed] = ACTIONS(4880), + [anon_sym_annotation] = ACTIONS(4880), + [anon_sym_data] = ACTIONS(4880), + [anon_sym_inner] = ACTIONS(4880), + [anon_sym_value] = ACTIONS(4880), + [anon_sym_override] = ACTIONS(4880), + [anon_sym_lateinit] = ACTIONS(4880), + [anon_sym_public] = ACTIONS(4880), + [anon_sym_private] = ACTIONS(4880), + [anon_sym_internal] = ACTIONS(4880), + [anon_sym_protected] = ACTIONS(4880), + [anon_sym_tailrec] = ACTIONS(4880), + [anon_sym_operator] = ACTIONS(4880), + [anon_sym_infix] = ACTIONS(4880), + [anon_sym_inline] = ACTIONS(4880), + [anon_sym_external] = ACTIONS(4880), + [sym_property_modifier] = ACTIONS(4880), + [anon_sym_abstract] = ACTIONS(4880), + [anon_sym_final] = ACTIONS(4880), + [anon_sym_open] = ACTIONS(4880), + [anon_sym_vararg] = ACTIONS(4880), + [anon_sym_noinline] = ACTIONS(4880), + [anon_sym_crossinline] = ACTIONS(4880), + [anon_sym_expect] = ACTIONS(4880), + [anon_sym_actual] = ACTIONS(4880), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4882), + [anon_sym_continue_AT] = ACTIONS(4882), + [anon_sym_break_AT] = ACTIONS(4882), + [anon_sym_this_AT] = ACTIONS(4882), + [anon_sym_super_AT] = ACTIONS(4882), + [sym_real_literal] = ACTIONS(4882), + [sym_integer_literal] = ACTIONS(4880), + [sym_hex_literal] = ACTIONS(4882), + [sym_bin_literal] = ACTIONS(4882), + [anon_sym_true] = ACTIONS(4880), + [anon_sym_false] = ACTIONS(4880), + [anon_sym_SQUOTE] = ACTIONS(4882), + [sym__backtick_identifier] = ACTIONS(4882), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4882), }, - [3984] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3919), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_object] = ACTIONS(4539), - [anon_sym_fun] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_this] = ACTIONS(4539), - [anon_sym_super] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4539), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_null] = ACTIONS(4539), - [anon_sym_if] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_when] = ACTIONS(4539), - [anon_sym_try] = ACTIONS(4539), - [anon_sym_throw] = ACTIONS(4539), - [anon_sym_return] = ACTIONS(4539), - [anon_sym_continue] = ACTIONS(4539), - [anon_sym_break] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4541), - [anon_sym_continue_AT] = ACTIONS(4541), - [anon_sym_break_AT] = ACTIONS(4541), - [anon_sym_this_AT] = ACTIONS(4541), - [anon_sym_super_AT] = ACTIONS(4541), - [sym_real_literal] = ACTIONS(4541), - [sym_integer_literal] = ACTIONS(4539), - [sym_hex_literal] = ACTIONS(4541), - [sym_bin_literal] = ACTIONS(4541), - [anon_sym_true] = ACTIONS(4539), - [anon_sym_false] = ACTIONS(4539), - [anon_sym_SQUOTE] = ACTIONS(4541), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4541), + [3920] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(4826), + [anon_sym_COMMA] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_where] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), }, - [3985] = { + [3921] = { + [sym__alpha_identifier] = ACTIONS(7091), + [anon_sym_AT] = ACTIONS(7093), + [anon_sym_LBRACK] = ACTIONS(7093), + [anon_sym_typealias] = ACTIONS(7091), + [anon_sym_class] = ACTIONS(7091), + [anon_sym_interface] = ACTIONS(7091), + [anon_sym_enum] = ACTIONS(7091), + [anon_sym_LBRACE] = ACTIONS(7093), + [anon_sym_LPAREN] = ACTIONS(7093), + [anon_sym_val] = ACTIONS(7091), + [anon_sym_var] = ACTIONS(7091), + [anon_sym_object] = ACTIONS(7091), + [anon_sym_fun] = ACTIONS(7091), + [anon_sym_get] = ACTIONS(7091), + [anon_sym_set] = ACTIONS(7091), + [anon_sym_this] = ACTIONS(7091), + [anon_sym_super] = ACTIONS(7091), + [anon_sym_STAR] = ACTIONS(7093), + [sym_label] = ACTIONS(7091), + [anon_sym_for] = ACTIONS(7091), + [anon_sym_while] = ACTIONS(7091), + [anon_sym_do] = ACTIONS(7091), + [anon_sym_null] = ACTIONS(7091), + [anon_sym_if] = ACTIONS(7091), + [anon_sym_when] = ACTIONS(7091), + [anon_sym_try] = ACTIONS(7091), + [anon_sym_throw] = ACTIONS(7091), + [anon_sym_return] = ACTIONS(7091), + [anon_sym_continue] = ACTIONS(7091), + [anon_sym_break] = ACTIONS(7091), + [anon_sym_COLON_COLON] = ACTIONS(7093), + [anon_sym_PLUS] = ACTIONS(7091), + [anon_sym_DASH] = ACTIONS(7091), + [anon_sym_PLUS_PLUS] = ACTIONS(7093), + [anon_sym_DASH_DASH] = ACTIONS(7093), + [anon_sym_BANG] = ACTIONS(7093), + [anon_sym_suspend] = ACTIONS(7091), + [anon_sym_sealed] = ACTIONS(7091), + [anon_sym_annotation] = ACTIONS(7091), + [anon_sym_data] = ACTIONS(7091), + [anon_sym_inner] = ACTIONS(7091), + [anon_sym_value] = ACTIONS(7091), + [anon_sym_override] = ACTIONS(7091), + [anon_sym_lateinit] = ACTIONS(7091), + [anon_sym_public] = ACTIONS(7091), + [anon_sym_private] = ACTIONS(7091), + [anon_sym_internal] = ACTIONS(7091), + [anon_sym_protected] = ACTIONS(7091), + [anon_sym_tailrec] = ACTIONS(7091), + [anon_sym_operator] = ACTIONS(7091), + [anon_sym_infix] = ACTIONS(7091), + [anon_sym_inline] = ACTIONS(7091), + [anon_sym_external] = ACTIONS(7091), + [sym_property_modifier] = ACTIONS(7091), + [anon_sym_abstract] = ACTIONS(7091), + [anon_sym_final] = ACTIONS(7091), + [anon_sym_open] = ACTIONS(7091), + [anon_sym_vararg] = ACTIONS(7091), + [anon_sym_noinline] = ACTIONS(7091), + [anon_sym_crossinline] = ACTIONS(7091), + [anon_sym_expect] = ACTIONS(7091), + [anon_sym_actual] = ACTIONS(7091), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7093), + [anon_sym_continue_AT] = ACTIONS(7093), + [anon_sym_break_AT] = ACTIONS(7093), + [anon_sym_this_AT] = ACTIONS(7093), + [anon_sym_super_AT] = ACTIONS(7093), + [sym_real_literal] = ACTIONS(7093), + [sym_integer_literal] = ACTIONS(7091), + [sym_hex_literal] = ACTIONS(7093), + [sym_bin_literal] = ACTIONS(7093), + [anon_sym_true] = ACTIONS(7091), + [anon_sym_false] = ACTIONS(7091), + [anon_sym_SQUOTE] = ACTIONS(7093), + [sym__backtick_identifier] = ACTIONS(7093), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7093), + }, + [3922] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(4818), + [anon_sym_COMMA] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_where] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4217), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4217), + [anon_sym_DASH_EQ] = ACTIONS(4217), + [anon_sym_STAR_EQ] = ACTIONS(4217), + [anon_sym_SLASH_EQ] = ACTIONS(4217), + [anon_sym_PERCENT_EQ] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + }, + [3923] = { + [sym__alpha_identifier] = ACTIONS(4412), + [anon_sym_AT] = ACTIONS(4414), + [anon_sym_LBRACK] = ACTIONS(4414), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_as] = ACTIONS(4412), + [anon_sym_EQ] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(4414), + [anon_sym_RBRACE] = ACTIONS(4414), + [anon_sym_LPAREN] = ACTIONS(4414), + [anon_sym_COMMA] = ACTIONS(4414), + [anon_sym_LT] = ACTIONS(4412), + [anon_sym_GT] = ACTIONS(4412), + [anon_sym_where] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4414), + [anon_sym_get] = ACTIONS(4412), + [anon_sym_set] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [sym_label] = ACTIONS(4414), + [anon_sym_in] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4414), + [anon_sym_QMARK_COLON] = ACTIONS(4414), + [anon_sym_AMP_AMP] = ACTIONS(4414), + [anon_sym_PIPE_PIPE] = ACTIONS(4414), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_COLON_COLON] = ACTIONS(4414), + [anon_sym_PLUS_EQ] = ACTIONS(4414), + [anon_sym_DASH_EQ] = ACTIONS(4414), + [anon_sym_STAR_EQ] = ACTIONS(4414), + [anon_sym_SLASH_EQ] = ACTIONS(4414), + [anon_sym_PERCENT_EQ] = ACTIONS(4414), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4414), + [anon_sym_EQ_EQ] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4414), + [anon_sym_LT_EQ] = ACTIONS(4414), + [anon_sym_GT_EQ] = ACTIONS(4414), + [anon_sym_BANGin] = ACTIONS(4414), + [anon_sym_is] = ACTIONS(4412), + [anon_sym_BANGis] = ACTIONS(4414), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_SLASH] = ACTIONS(4412), + [anon_sym_PERCENT] = ACTIONS(4412), + [anon_sym_as_QMARK] = ACTIONS(4414), + [anon_sym_PLUS_PLUS] = ACTIONS(4414), + [anon_sym_DASH_DASH] = ACTIONS(4414), + [anon_sym_BANG_BANG] = ACTIONS(4414), + [anon_sym_suspend] = ACTIONS(4412), + [anon_sym_sealed] = ACTIONS(4412), + [anon_sym_annotation] = ACTIONS(4412), + [anon_sym_data] = ACTIONS(4412), + [anon_sym_inner] = ACTIONS(4412), + [anon_sym_value] = ACTIONS(4412), + [anon_sym_override] = ACTIONS(4412), + [anon_sym_lateinit] = ACTIONS(4412), + [anon_sym_public] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4412), + [anon_sym_internal] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4412), + [anon_sym_tailrec] = ACTIONS(4412), + [anon_sym_operator] = ACTIONS(4412), + [anon_sym_infix] = ACTIONS(4412), + [anon_sym_inline] = ACTIONS(4412), + [anon_sym_external] = ACTIONS(4412), + [sym_property_modifier] = ACTIONS(4412), + [anon_sym_abstract] = ACTIONS(4412), + [anon_sym_final] = ACTIONS(4412), + [anon_sym_open] = ACTIONS(4412), + [anon_sym_vararg] = ACTIONS(4412), + [anon_sym_noinline] = ACTIONS(4412), + [anon_sym_crossinline] = ACTIONS(4412), + [anon_sym_expect] = ACTIONS(4412), + [anon_sym_actual] = ACTIONS(4412), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4414), + [sym__automatic_semicolon] = ACTIONS(4414), + [sym_safe_nav] = ACTIONS(4414), + [sym_multiline_comment] = ACTIONS(3), + }, + [3924] = { + [sym__alpha_identifier] = ACTIONS(5085), + [anon_sym_AT] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_DOT] = ACTIONS(5085), + [anon_sym_as] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(5085), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_where] = ACTIONS(5085), + [anon_sym_SEMI] = ACTIONS(5087), + [anon_sym_get] = ACTIONS(5085), + [anon_sym_set] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [sym_label] = ACTIONS(5087), + [anon_sym_in] = ACTIONS(5085), + [anon_sym_DOT_DOT] = ACTIONS(5087), + [anon_sym_QMARK_COLON] = ACTIONS(5087), + [anon_sym_AMP_AMP] = ACTIONS(5087), + [anon_sym_PIPE_PIPE] = ACTIONS(5087), + [anon_sym_else] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5087), + [anon_sym_PLUS_EQ] = ACTIONS(5087), + [anon_sym_DASH_EQ] = ACTIONS(5087), + [anon_sym_STAR_EQ] = ACTIONS(5087), + [anon_sym_SLASH_EQ] = ACTIONS(5087), + [anon_sym_PERCENT_EQ] = ACTIONS(5087), + [anon_sym_BANG_EQ] = ACTIONS(5085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5087), + [anon_sym_EQ_EQ] = ACTIONS(5085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5087), + [anon_sym_LT_EQ] = ACTIONS(5087), + [anon_sym_GT_EQ] = ACTIONS(5087), + [anon_sym_BANGin] = ACTIONS(5087), + [anon_sym_is] = ACTIONS(5085), + [anon_sym_BANGis] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_PERCENT] = ACTIONS(5085), + [anon_sym_as_QMARK] = ACTIONS(5087), + [anon_sym_PLUS_PLUS] = ACTIONS(5087), + [anon_sym_DASH_DASH] = ACTIONS(5087), + [anon_sym_BANG_BANG] = ACTIONS(5087), + [anon_sym_suspend] = ACTIONS(5085), + [anon_sym_sealed] = ACTIONS(5085), + [anon_sym_annotation] = ACTIONS(5085), + [anon_sym_data] = ACTIONS(5085), + [anon_sym_inner] = ACTIONS(5085), + [anon_sym_value] = ACTIONS(5085), + [anon_sym_override] = ACTIONS(5085), + [anon_sym_lateinit] = ACTIONS(5085), + [anon_sym_public] = ACTIONS(5085), + [anon_sym_private] = ACTIONS(5085), + [anon_sym_internal] = ACTIONS(5085), + [anon_sym_protected] = ACTIONS(5085), + [anon_sym_tailrec] = ACTIONS(5085), + [anon_sym_operator] = ACTIONS(5085), + [anon_sym_infix] = ACTIONS(5085), + [anon_sym_inline] = ACTIONS(5085), + [anon_sym_external] = ACTIONS(5085), + [sym_property_modifier] = ACTIONS(5085), + [anon_sym_abstract] = ACTIONS(5085), + [anon_sym_final] = ACTIONS(5085), + [anon_sym_open] = ACTIONS(5085), + [anon_sym_vararg] = ACTIONS(5085), + [anon_sym_noinline] = ACTIONS(5085), + [anon_sym_crossinline] = ACTIONS(5085), + [anon_sym_expect] = ACTIONS(5085), + [anon_sym_actual] = ACTIONS(5085), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5087), + [sym__automatic_semicolon] = ACTIONS(5087), + [sym_safe_nav] = ACTIONS(5087), + [sym_multiline_comment] = ACTIONS(3), + }, + [3925] = { + [sym_function_body] = STATE(3956), + [sym__block] = STATE(3874), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(4260), - [anon_sym_LBRACE] = ACTIONS(4262), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), [anon_sym_SEMI] = ACTIONS(4262), [anon_sym_get] = ACTIONS(4260), [anon_sym_set] = ACTIONS(4260), @@ -440205,2647 +435674,3527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [3986] = { - [sym__alpha_identifier] = ACTIONS(4979), - [anon_sym_AT] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_typealias] = ACTIONS(4979), - [anon_sym_class] = ACTIONS(4979), - [anon_sym_interface] = ACTIONS(4979), - [anon_sym_enum] = ACTIONS(4979), - [anon_sym_LBRACE] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_val] = ACTIONS(4979), - [anon_sym_var] = ACTIONS(4979), - [anon_sym_object] = ACTIONS(4979), - [anon_sym_fun] = ACTIONS(4979), - [anon_sym_get] = ACTIONS(4979), - [anon_sym_set] = ACTIONS(4979), - [anon_sym_this] = ACTIONS(4979), - [anon_sym_super] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4981), - [sym_label] = ACTIONS(4979), - [anon_sym_for] = ACTIONS(4979), - [anon_sym_while] = ACTIONS(4979), - [anon_sym_do] = ACTIONS(4979), - [anon_sym_null] = ACTIONS(4979), - [anon_sym_if] = ACTIONS(4979), - [anon_sym_when] = ACTIONS(4979), - [anon_sym_try] = ACTIONS(4979), - [anon_sym_throw] = ACTIONS(4979), - [anon_sym_return] = ACTIONS(4979), - [anon_sym_continue] = ACTIONS(4979), - [anon_sym_break] = ACTIONS(4979), - [anon_sym_COLON_COLON] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4979), - [anon_sym_DASH] = ACTIONS(4979), - [anon_sym_PLUS_PLUS] = ACTIONS(4981), - [anon_sym_DASH_DASH] = ACTIONS(4981), - [anon_sym_BANG] = ACTIONS(4981), - [anon_sym_suspend] = ACTIONS(4979), - [anon_sym_sealed] = ACTIONS(4979), - [anon_sym_annotation] = ACTIONS(4979), - [anon_sym_data] = ACTIONS(4979), - [anon_sym_inner] = ACTIONS(4979), - [anon_sym_value] = ACTIONS(4979), - [anon_sym_override] = ACTIONS(4979), - [anon_sym_lateinit] = ACTIONS(4979), - [anon_sym_public] = ACTIONS(4979), - [anon_sym_private] = ACTIONS(4979), - [anon_sym_internal] = ACTIONS(4979), - [anon_sym_protected] = ACTIONS(4979), - [anon_sym_tailrec] = ACTIONS(4979), - [anon_sym_operator] = ACTIONS(4979), - [anon_sym_infix] = ACTIONS(4979), - [anon_sym_inline] = ACTIONS(4979), - [anon_sym_external] = ACTIONS(4979), - [sym_property_modifier] = ACTIONS(4979), - [anon_sym_abstract] = ACTIONS(4979), - [anon_sym_final] = ACTIONS(4979), - [anon_sym_open] = ACTIONS(4979), - [anon_sym_vararg] = ACTIONS(4979), - [anon_sym_noinline] = ACTIONS(4979), - [anon_sym_crossinline] = ACTIONS(4979), - [anon_sym_expect] = ACTIONS(4979), - [anon_sym_actual] = ACTIONS(4979), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4981), - [anon_sym_continue_AT] = ACTIONS(4981), - [anon_sym_break_AT] = ACTIONS(4981), - [anon_sym_this_AT] = ACTIONS(4981), - [anon_sym_super_AT] = ACTIONS(4981), - [sym_real_literal] = ACTIONS(4981), - [sym_integer_literal] = ACTIONS(4979), - [sym_hex_literal] = ACTIONS(4981), - [sym_bin_literal] = ACTIONS(4981), - [anon_sym_true] = ACTIONS(4979), - [anon_sym_false] = ACTIONS(4979), - [anon_sym_SQUOTE] = ACTIONS(4981), - [sym__backtick_identifier] = ACTIONS(4981), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4981), + [3926] = { + [sym_class_body] = STATE(3503), + [sym_type_constraints] = STATE(3302), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(7095), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [anon_sym_DASH_GT] = ACTIONS(4276), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), }, - [3987] = { - [sym__alpha_identifier] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1810), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_DOT] = ACTIONS(1808), - [anon_sym_as] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_RBRACE] = ACTIONS(1810), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_COMMA] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_where] = ACTIONS(1808), - [anon_sym_SEMI] = ACTIONS(1810), - [anon_sym_get] = ACTIONS(1808), - [anon_sym_set] = ACTIONS(1808), - [anon_sym_STAR] = ACTIONS(1808), - [sym_label] = ACTIONS(1810), - [anon_sym_in] = ACTIONS(1808), - [anon_sym_DOT_DOT] = ACTIONS(1810), - [anon_sym_QMARK_COLON] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_else] = ACTIONS(1808), - [anon_sym_COLON_COLON] = ACTIONS(1810), - [anon_sym_PLUS_EQ] = ACTIONS(1810), - [anon_sym_DASH_EQ] = ACTIONS(1810), - [anon_sym_STAR_EQ] = ACTIONS(1810), - [anon_sym_SLASH_EQ] = ACTIONS(1810), - [anon_sym_PERCENT_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1808), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1808), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1810), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_BANGin] = ACTIONS(1810), - [anon_sym_is] = ACTIONS(1808), - [anon_sym_BANGis] = ACTIONS(1810), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1808), - [anon_sym_as_QMARK] = ACTIONS(1810), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_BANG_BANG] = ACTIONS(1810), - [anon_sym_suspend] = ACTIONS(1808), - [anon_sym_sealed] = ACTIONS(1808), - [anon_sym_annotation] = ACTIONS(1808), - [anon_sym_data] = ACTIONS(1808), - [anon_sym_inner] = ACTIONS(1808), - [anon_sym_value] = ACTIONS(1808), - [anon_sym_override] = ACTIONS(1808), - [anon_sym_lateinit] = ACTIONS(1808), - [anon_sym_public] = ACTIONS(1808), - [anon_sym_private] = ACTIONS(1808), - [anon_sym_internal] = ACTIONS(1808), - [anon_sym_protected] = ACTIONS(1808), - [anon_sym_tailrec] = ACTIONS(1808), - [anon_sym_operator] = ACTIONS(1808), - [anon_sym_infix] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym_external] = ACTIONS(1808), - [sym_property_modifier] = ACTIONS(1808), - [anon_sym_abstract] = ACTIONS(1808), - [anon_sym_final] = ACTIONS(1808), - [anon_sym_open] = ACTIONS(1808), - [anon_sym_vararg] = ACTIONS(1808), - [anon_sym_noinline] = ACTIONS(1808), - [anon_sym_crossinline] = ACTIONS(1808), - [anon_sym_expect] = ACTIONS(1808), - [anon_sym_actual] = ACTIONS(1808), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1810), - [sym__automatic_semicolon] = ACTIONS(1810), - [sym_safe_nav] = ACTIONS(1810), + [3927] = { + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [3988] = { - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(4264), - [anon_sym_LBRACE] = ACTIONS(4266), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_PLUS_EQ] = ACTIONS(4266), - [anon_sym_DASH_EQ] = ACTIONS(4266), - [anon_sym_STAR_EQ] = ACTIONS(4266), - [anon_sym_SLASH_EQ] = ACTIONS(4266), - [anon_sym_PERCENT_EQ] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4264), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [3928] = { + [sym__alpha_identifier] = ACTIONS(5081), + [anon_sym_AT] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_DOT] = ACTIONS(5081), + [anon_sym_as] = ACTIONS(5081), + [anon_sym_EQ] = ACTIONS(5081), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_RBRACE] = ACTIONS(5083), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_where] = ACTIONS(5081), + [anon_sym_SEMI] = ACTIONS(5083), + [anon_sym_get] = ACTIONS(5081), + [anon_sym_set] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [sym_label] = ACTIONS(5083), + [anon_sym_in] = ACTIONS(5081), + [anon_sym_DOT_DOT] = ACTIONS(5083), + [anon_sym_QMARK_COLON] = ACTIONS(5083), + [anon_sym_AMP_AMP] = ACTIONS(5083), + [anon_sym_PIPE_PIPE] = ACTIONS(5083), + [anon_sym_else] = ACTIONS(5081), + [anon_sym_COLON_COLON] = ACTIONS(5083), + [anon_sym_PLUS_EQ] = ACTIONS(5083), + [anon_sym_DASH_EQ] = ACTIONS(5083), + [anon_sym_STAR_EQ] = ACTIONS(5083), + [anon_sym_SLASH_EQ] = ACTIONS(5083), + [anon_sym_PERCENT_EQ] = ACTIONS(5083), + [anon_sym_BANG_EQ] = ACTIONS(5081), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5083), + [anon_sym_EQ_EQ] = ACTIONS(5081), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5083), + [anon_sym_LT_EQ] = ACTIONS(5083), + [anon_sym_GT_EQ] = ACTIONS(5083), + [anon_sym_BANGin] = ACTIONS(5083), + [anon_sym_is] = ACTIONS(5081), + [anon_sym_BANGis] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_PERCENT] = ACTIONS(5081), + [anon_sym_as_QMARK] = ACTIONS(5083), + [anon_sym_PLUS_PLUS] = ACTIONS(5083), + [anon_sym_DASH_DASH] = ACTIONS(5083), + [anon_sym_BANG_BANG] = ACTIONS(5083), + [anon_sym_suspend] = ACTIONS(5081), + [anon_sym_sealed] = ACTIONS(5081), + [anon_sym_annotation] = ACTIONS(5081), + [anon_sym_data] = ACTIONS(5081), + [anon_sym_inner] = ACTIONS(5081), + [anon_sym_value] = ACTIONS(5081), + [anon_sym_override] = ACTIONS(5081), + [anon_sym_lateinit] = ACTIONS(5081), + [anon_sym_public] = ACTIONS(5081), + [anon_sym_private] = ACTIONS(5081), + [anon_sym_internal] = ACTIONS(5081), + [anon_sym_protected] = ACTIONS(5081), + [anon_sym_tailrec] = ACTIONS(5081), + [anon_sym_operator] = ACTIONS(5081), + [anon_sym_infix] = ACTIONS(5081), + [anon_sym_inline] = ACTIONS(5081), + [anon_sym_external] = ACTIONS(5081), + [sym_property_modifier] = ACTIONS(5081), + [anon_sym_abstract] = ACTIONS(5081), + [anon_sym_final] = ACTIONS(5081), + [anon_sym_open] = ACTIONS(5081), + [anon_sym_vararg] = ACTIONS(5081), + [anon_sym_noinline] = ACTIONS(5081), + [anon_sym_crossinline] = ACTIONS(5081), + [anon_sym_expect] = ACTIONS(5081), + [anon_sym_actual] = ACTIONS(5081), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__backtick_identifier] = ACTIONS(5083), + [sym__automatic_semicolon] = ACTIONS(5083), + [sym_safe_nav] = ACTIONS(5083), [sym_multiline_comment] = ACTIONS(3), }, - [3989] = { - [sym__alpha_identifier] = ACTIONS(5213), - [anon_sym_AT] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_DOT] = ACTIONS(5213), - [anon_sym_as] = ACTIONS(5213), - [anon_sym_EQ] = ACTIONS(5213), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_LT] = ACTIONS(5213), - [anon_sym_GT] = ACTIONS(5213), - [anon_sym_where] = ACTIONS(5213), - [anon_sym_SEMI] = ACTIONS(5215), - [anon_sym_get] = ACTIONS(5213), - [anon_sym_set] = ACTIONS(5213), - [anon_sym_STAR] = ACTIONS(5213), - [sym_label] = ACTIONS(5215), - [anon_sym_in] = ACTIONS(5213), - [anon_sym_DOT_DOT] = ACTIONS(5215), - [anon_sym_QMARK_COLON] = ACTIONS(5215), - [anon_sym_AMP_AMP] = ACTIONS(5215), - [anon_sym_PIPE_PIPE] = ACTIONS(5215), - [anon_sym_else] = ACTIONS(5213), - [anon_sym_COLON_COLON] = ACTIONS(5215), - [anon_sym_PLUS_EQ] = ACTIONS(5215), - [anon_sym_DASH_EQ] = ACTIONS(5215), - [anon_sym_STAR_EQ] = ACTIONS(5215), - [anon_sym_SLASH_EQ] = ACTIONS(5215), - [anon_sym_PERCENT_EQ] = ACTIONS(5215), - [anon_sym_BANG_EQ] = ACTIONS(5213), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5215), - [anon_sym_EQ_EQ] = ACTIONS(5213), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5215), - [anon_sym_LT_EQ] = ACTIONS(5215), - [anon_sym_GT_EQ] = ACTIONS(5215), - [anon_sym_BANGin] = ACTIONS(5215), - [anon_sym_is] = ACTIONS(5213), - [anon_sym_BANGis] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5213), - [anon_sym_DASH] = ACTIONS(5213), - [anon_sym_SLASH] = ACTIONS(5213), - [anon_sym_PERCENT] = ACTIONS(5213), - [anon_sym_as_QMARK] = ACTIONS(5215), - [anon_sym_PLUS_PLUS] = ACTIONS(5215), - [anon_sym_DASH_DASH] = ACTIONS(5215), - [anon_sym_BANG_BANG] = ACTIONS(5215), - [anon_sym_suspend] = ACTIONS(5213), - [anon_sym_sealed] = ACTIONS(5213), - [anon_sym_annotation] = ACTIONS(5213), - [anon_sym_data] = ACTIONS(5213), - [anon_sym_inner] = ACTIONS(5213), - [anon_sym_value] = ACTIONS(5213), - [anon_sym_override] = ACTIONS(5213), - [anon_sym_lateinit] = ACTIONS(5213), - [anon_sym_public] = ACTIONS(5213), - [anon_sym_private] = ACTIONS(5213), - [anon_sym_internal] = ACTIONS(5213), - [anon_sym_protected] = ACTIONS(5213), - [anon_sym_tailrec] = ACTIONS(5213), - [anon_sym_operator] = ACTIONS(5213), - [anon_sym_infix] = ACTIONS(5213), - [anon_sym_inline] = ACTIONS(5213), - [anon_sym_external] = ACTIONS(5213), - [sym_property_modifier] = ACTIONS(5213), - [anon_sym_abstract] = ACTIONS(5213), - [anon_sym_final] = ACTIONS(5213), - [anon_sym_open] = ACTIONS(5213), - [anon_sym_vararg] = ACTIONS(5213), - [anon_sym_noinline] = ACTIONS(5213), - [anon_sym_crossinline] = ACTIONS(5213), - [anon_sym_expect] = ACTIONS(5213), - [anon_sym_actual] = ACTIONS(5213), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5215), - [sym__automatic_semicolon] = ACTIONS(5215), - [sym_safe_nav] = ACTIONS(5215), + [3929] = { + [sym_class_body] = STATE(3501), + [sym_type_constraints] = STATE(3339), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(6100), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_DASH_GT] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [3990] = { - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_RBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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), + [3930] = { + [sym__alpha_identifier] = ACTIONS(4984), + [anon_sym_AT] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_DOT] = ACTIONS(4984), + [anon_sym_as] = ACTIONS(4984), + [anon_sym_EQ] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LPAREN] = ACTIONS(4986), + [anon_sym_COMMA] = ACTIONS(4986), + [anon_sym_LT] = ACTIONS(4984), + [anon_sym_GT] = ACTIONS(4984), + [anon_sym_where] = ACTIONS(4984), + [anon_sym_SEMI] = ACTIONS(4986), + [anon_sym_get] = ACTIONS(4984), + [anon_sym_set] = ACTIONS(4984), + [anon_sym_STAR] = ACTIONS(4984), + [sym_label] = ACTIONS(4986), + [anon_sym_in] = ACTIONS(4984), + [anon_sym_DOT_DOT] = ACTIONS(4986), + [anon_sym_QMARK_COLON] = ACTIONS(4986), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE_PIPE] = ACTIONS(4986), + [anon_sym_else] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4986), + [anon_sym_PLUS_EQ] = ACTIONS(4986), + [anon_sym_DASH_EQ] = ACTIONS(4986), + [anon_sym_STAR_EQ] = ACTIONS(4986), + [anon_sym_SLASH_EQ] = ACTIONS(4986), + [anon_sym_PERCENT_EQ] = ACTIONS(4986), + [anon_sym_BANG_EQ] = ACTIONS(4984), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4986), + [anon_sym_EQ_EQ] = ACTIONS(4984), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4986), + [anon_sym_LT_EQ] = ACTIONS(4986), + [anon_sym_GT_EQ] = ACTIONS(4986), + [anon_sym_BANGin] = ACTIONS(4986), + [anon_sym_is] = ACTIONS(4984), + [anon_sym_BANGis] = ACTIONS(4986), + [anon_sym_PLUS] = ACTIONS(4984), + [anon_sym_DASH] = ACTIONS(4984), + [anon_sym_SLASH] = ACTIONS(4984), + [anon_sym_PERCENT] = ACTIONS(4984), + [anon_sym_as_QMARK] = ACTIONS(4986), + [anon_sym_PLUS_PLUS] = ACTIONS(4986), + [anon_sym_DASH_DASH] = ACTIONS(4986), + [anon_sym_BANG_BANG] = ACTIONS(4986), + [anon_sym_suspend] = ACTIONS(4984), + [anon_sym_sealed] = ACTIONS(4984), + [anon_sym_annotation] = ACTIONS(4984), + [anon_sym_data] = ACTIONS(4984), + [anon_sym_inner] = ACTIONS(4984), + [anon_sym_value] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_lateinit] = ACTIONS(4984), + [anon_sym_public] = ACTIONS(4984), + [anon_sym_private] = ACTIONS(4984), + [anon_sym_internal] = ACTIONS(4984), + [anon_sym_protected] = ACTIONS(4984), + [anon_sym_tailrec] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), + [anon_sym_infix] = ACTIONS(4984), + [anon_sym_inline] = ACTIONS(4984), + [anon_sym_external] = ACTIONS(4984), + [sym_property_modifier] = ACTIONS(4984), + [anon_sym_abstract] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_open] = ACTIONS(4984), + [anon_sym_vararg] = ACTIONS(4984), + [anon_sym_noinline] = ACTIONS(4984), + [anon_sym_crossinline] = ACTIONS(4984), + [anon_sym_expect] = ACTIONS(4984), + [anon_sym_actual] = ACTIONS(4984), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4986), + [sym__automatic_semicolon] = ACTIONS(4986), + [sym_safe_nav] = ACTIONS(4986), [sym_multiline_comment] = ACTIONS(3), }, - [3991] = { - [sym_class_body] = STATE(3562), - [sym_type_constraints] = STATE(3303), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(6156), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_RBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [anon_sym_DASH_GT] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [3931] = { + [sym_type_constraints] = STATE(3330), + [sym_enum_class_body] = STATE(3464), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7097), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, - [3992] = { - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4637), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_PLUS_EQ] = ACTIONS(4639), - [anon_sym_DASH_EQ] = ACTIONS(4639), - [anon_sym_STAR_EQ] = ACTIONS(4639), - [anon_sym_SLASH_EQ] = ACTIONS(4639), - [anon_sym_PERCENT_EQ] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4637), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), + [3932] = { + [sym__alpha_identifier] = ACTIONS(4888), + [anon_sym_AT] = ACTIONS(4890), + [anon_sym_LBRACK] = ACTIONS(4890), + [anon_sym_DOT] = ACTIONS(4888), + [anon_sym_as] = ACTIONS(4888), + [anon_sym_EQ] = ACTIONS(4888), + [anon_sym_LBRACE] = ACTIONS(4890), + [anon_sym_RBRACE] = ACTIONS(4890), + [anon_sym_LPAREN] = ACTIONS(4890), + [anon_sym_COMMA] = ACTIONS(4890), + [anon_sym_LT] = ACTIONS(4888), + [anon_sym_GT] = ACTIONS(4888), + [anon_sym_where] = ACTIONS(4888), + [anon_sym_SEMI] = ACTIONS(4890), + [anon_sym_get] = ACTIONS(4888), + [anon_sym_set] = ACTIONS(4888), + [anon_sym_STAR] = ACTIONS(4888), + [sym_label] = ACTIONS(4890), + [anon_sym_in] = ACTIONS(4888), + [anon_sym_DOT_DOT] = ACTIONS(4890), + [anon_sym_QMARK_COLON] = ACTIONS(4890), + [anon_sym_AMP_AMP] = ACTIONS(4890), + [anon_sym_PIPE_PIPE] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4888), + [anon_sym_COLON_COLON] = ACTIONS(4890), + [anon_sym_PLUS_EQ] = ACTIONS(4890), + [anon_sym_DASH_EQ] = ACTIONS(4890), + [anon_sym_STAR_EQ] = ACTIONS(4890), + [anon_sym_SLASH_EQ] = ACTIONS(4890), + [anon_sym_PERCENT_EQ] = ACTIONS(4890), + [anon_sym_BANG_EQ] = ACTIONS(4888), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4890), + [anon_sym_EQ_EQ] = ACTIONS(4888), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4890), + [anon_sym_LT_EQ] = ACTIONS(4890), + [anon_sym_GT_EQ] = ACTIONS(4890), + [anon_sym_BANGin] = ACTIONS(4890), + [anon_sym_is] = ACTIONS(4888), + [anon_sym_BANGis] = ACTIONS(4890), + [anon_sym_PLUS] = ACTIONS(4888), + [anon_sym_DASH] = ACTIONS(4888), + [anon_sym_SLASH] = ACTIONS(4888), + [anon_sym_PERCENT] = ACTIONS(4888), + [anon_sym_as_QMARK] = ACTIONS(4890), + [anon_sym_PLUS_PLUS] = ACTIONS(4890), + [anon_sym_DASH_DASH] = ACTIONS(4890), + [anon_sym_BANG_BANG] = ACTIONS(4890), + [anon_sym_suspend] = ACTIONS(4888), + [anon_sym_sealed] = ACTIONS(4888), + [anon_sym_annotation] = ACTIONS(4888), + [anon_sym_data] = ACTIONS(4888), + [anon_sym_inner] = ACTIONS(4888), + [anon_sym_value] = ACTIONS(4888), + [anon_sym_override] = ACTIONS(4888), + [anon_sym_lateinit] = ACTIONS(4888), + [anon_sym_public] = ACTIONS(4888), + [anon_sym_private] = ACTIONS(4888), + [anon_sym_internal] = ACTIONS(4888), + [anon_sym_protected] = ACTIONS(4888), + [anon_sym_tailrec] = ACTIONS(4888), + [anon_sym_operator] = ACTIONS(4888), + [anon_sym_infix] = ACTIONS(4888), + [anon_sym_inline] = ACTIONS(4888), + [anon_sym_external] = ACTIONS(4888), + [sym_property_modifier] = ACTIONS(4888), + [anon_sym_abstract] = ACTIONS(4888), + [anon_sym_final] = ACTIONS(4888), + [anon_sym_open] = ACTIONS(4888), + [anon_sym_vararg] = ACTIONS(4888), + [anon_sym_noinline] = ACTIONS(4888), + [anon_sym_crossinline] = ACTIONS(4888), + [anon_sym_expect] = ACTIONS(4888), + [anon_sym_actual] = ACTIONS(4888), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4890), + [sym__automatic_semicolon] = ACTIONS(4890), + [sym_safe_nav] = ACTIONS(4890), [sym_multiline_comment] = ACTIONS(3), }, - [3993] = { - [sym__alpha_identifier] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1818), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_DOT] = ACTIONS(1816), - [anon_sym_as] = ACTIONS(1816), - [anon_sym_EQ] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_RBRACE] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_COMMA] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_where] = ACTIONS(1816), - [anon_sym_SEMI] = ACTIONS(1818), - [anon_sym_get] = ACTIONS(1816), - [anon_sym_set] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [sym_label] = ACTIONS(1818), - [anon_sym_in] = ACTIONS(1816), - [anon_sym_DOT_DOT] = ACTIONS(1818), - [anon_sym_QMARK_COLON] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_else] = ACTIONS(1816), - [anon_sym_COLON_COLON] = ACTIONS(1818), - [anon_sym_PLUS_EQ] = ACTIONS(1818), - [anon_sym_DASH_EQ] = ACTIONS(1818), - [anon_sym_STAR_EQ] = ACTIONS(1818), - [anon_sym_SLASH_EQ] = ACTIONS(1818), - [anon_sym_PERCENT_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1816), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1816), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1818), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_BANGin] = ACTIONS(1818), - [anon_sym_is] = ACTIONS(1816), - [anon_sym_BANGis] = ACTIONS(1818), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PERCENT] = ACTIONS(1816), - [anon_sym_as_QMARK] = ACTIONS(1818), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_BANG_BANG] = ACTIONS(1818), - [anon_sym_suspend] = ACTIONS(1816), - [anon_sym_sealed] = ACTIONS(1816), - [anon_sym_annotation] = ACTIONS(1816), - [anon_sym_data] = ACTIONS(1816), - [anon_sym_inner] = ACTIONS(1816), - [anon_sym_value] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_lateinit] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_internal] = ACTIONS(1816), - [anon_sym_protected] = ACTIONS(1816), - [anon_sym_tailrec] = ACTIONS(1816), - [anon_sym_operator] = ACTIONS(1816), - [anon_sym_infix] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1816), - [anon_sym_external] = ACTIONS(1816), - [sym_property_modifier] = ACTIONS(1816), - [anon_sym_abstract] = ACTIONS(1816), - [anon_sym_final] = ACTIONS(1816), - [anon_sym_open] = ACTIONS(1816), - [anon_sym_vararg] = ACTIONS(1816), - [anon_sym_noinline] = ACTIONS(1816), - [anon_sym_crossinline] = ACTIONS(1816), - [anon_sym_expect] = ACTIONS(1816), - [anon_sym_actual] = ACTIONS(1816), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1818), - [sym__automatic_semicolon] = ACTIONS(1818), - [sym_safe_nav] = ACTIONS(1818), + [3933] = { + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, - [3994] = { - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6897), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4175), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_PLUS_EQ] = ACTIONS(4177), - [anon_sym_DASH_EQ] = ACTIONS(4177), - [anon_sym_STAR_EQ] = ACTIONS(4177), - [anon_sym_SLASH_EQ] = ACTIONS(4177), - [anon_sym_PERCENT_EQ] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4175), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [3934] = { + [sym_class_body] = STATE(3464), + [sym_type_constraints] = STATE(3364), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7099), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_DASH_GT] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, - [3995] = { - [sym_function_body] = STATE(3207), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_object] = ACTIONS(4194), - [anon_sym_fun] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_this] = ACTIONS(4194), - [anon_sym_super] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4194), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_if] = ACTIONS(4194), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_when] = ACTIONS(4194), - [anon_sym_try] = ACTIONS(4194), - [anon_sym_throw] = ACTIONS(4194), - [anon_sym_return] = ACTIONS(4194), - [anon_sym_continue] = ACTIONS(4194), - [anon_sym_break] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4196), - [anon_sym_continue_AT] = ACTIONS(4196), - [anon_sym_break_AT] = ACTIONS(4196), - [anon_sym_this_AT] = ACTIONS(4196), - [anon_sym_super_AT] = ACTIONS(4196), - [sym_real_literal] = ACTIONS(4196), - [sym_integer_literal] = ACTIONS(4194), - [sym_hex_literal] = ACTIONS(4196), - [sym_bin_literal] = ACTIONS(4196), - [anon_sym_true] = ACTIONS(4194), - [anon_sym_false] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4196), + [3935] = { + [sym_type_constraints] = STATE(3363), + [sym_enum_class_body] = STATE(3430), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(6102), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_RBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), }, - [3996] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(7149), - [anon_sym_PIPE_PIPE] = ACTIONS(7151), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(7153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7155), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [3936] = { + [sym__alpha_identifier] = ACTIONS(4980), + [anon_sym_AT] = ACTIONS(4982), + [anon_sym_LBRACK] = ACTIONS(4982), + [anon_sym_DOT] = ACTIONS(4980), + [anon_sym_as] = ACTIONS(4980), + [anon_sym_EQ] = ACTIONS(4980), + [anon_sym_LBRACE] = ACTIONS(4982), + [anon_sym_RBRACE] = ACTIONS(4982), + [anon_sym_LPAREN] = ACTIONS(4982), + [anon_sym_COMMA] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4980), + [anon_sym_where] = ACTIONS(4980), + [anon_sym_SEMI] = ACTIONS(4982), + [anon_sym_get] = ACTIONS(4980), + [anon_sym_set] = ACTIONS(4980), + [anon_sym_STAR] = ACTIONS(4980), + [sym_label] = ACTIONS(4982), + [anon_sym_in] = ACTIONS(4980), + [anon_sym_DOT_DOT] = ACTIONS(4982), + [anon_sym_QMARK_COLON] = ACTIONS(4982), + [anon_sym_AMP_AMP] = ACTIONS(4982), + [anon_sym_PIPE_PIPE] = ACTIONS(4982), + [anon_sym_else] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4982), + [anon_sym_PLUS_EQ] = ACTIONS(4982), + [anon_sym_DASH_EQ] = ACTIONS(4982), + [anon_sym_STAR_EQ] = ACTIONS(4982), + [anon_sym_SLASH_EQ] = ACTIONS(4982), + [anon_sym_PERCENT_EQ] = ACTIONS(4982), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4982), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4982), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4982), + [anon_sym_BANGin] = ACTIONS(4982), + [anon_sym_is] = ACTIONS(4980), + [anon_sym_BANGis] = ACTIONS(4982), + [anon_sym_PLUS] = ACTIONS(4980), + [anon_sym_DASH] = ACTIONS(4980), + [anon_sym_SLASH] = ACTIONS(4980), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_as_QMARK] = ACTIONS(4982), + [anon_sym_PLUS_PLUS] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4982), + [anon_sym_BANG_BANG] = ACTIONS(4982), + [anon_sym_suspend] = ACTIONS(4980), + [anon_sym_sealed] = ACTIONS(4980), + [anon_sym_annotation] = ACTIONS(4980), + [anon_sym_data] = ACTIONS(4980), + [anon_sym_inner] = ACTIONS(4980), + [anon_sym_value] = ACTIONS(4980), + [anon_sym_override] = ACTIONS(4980), + [anon_sym_lateinit] = ACTIONS(4980), + [anon_sym_public] = ACTIONS(4980), + [anon_sym_private] = ACTIONS(4980), + [anon_sym_internal] = ACTIONS(4980), + [anon_sym_protected] = ACTIONS(4980), + [anon_sym_tailrec] = ACTIONS(4980), + [anon_sym_operator] = ACTIONS(4980), + [anon_sym_infix] = ACTIONS(4980), + [anon_sym_inline] = ACTIONS(4980), + [anon_sym_external] = ACTIONS(4980), + [sym_property_modifier] = ACTIONS(4980), + [anon_sym_abstract] = ACTIONS(4980), + [anon_sym_final] = ACTIONS(4980), + [anon_sym_open] = ACTIONS(4980), + [anon_sym_vararg] = ACTIONS(4980), + [anon_sym_noinline] = ACTIONS(4980), + [anon_sym_crossinline] = ACTIONS(4980), + [anon_sym_expect] = ACTIONS(4980), + [anon_sym_actual] = ACTIONS(4980), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4982), + [sym__automatic_semicolon] = ACTIONS(4982), + [sym_safe_nav] = ACTIONS(4982), [sym_multiline_comment] = ACTIONS(3), }, - [3997] = { - [sym__alpha_identifier] = ACTIONS(5039), - [anon_sym_AT] = ACTIONS(5041), - [anon_sym_LBRACK] = ACTIONS(5041), - [anon_sym_DOT] = ACTIONS(5039), - [anon_sym_as] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5041), - [anon_sym_RBRACE] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5041), - [anon_sym_COMMA] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5039), - [anon_sym_GT] = ACTIONS(5039), - [anon_sym_where] = ACTIONS(5039), - [anon_sym_SEMI] = ACTIONS(5041), - [anon_sym_get] = ACTIONS(5039), - [anon_sym_set] = ACTIONS(5039), - [anon_sym_STAR] = ACTIONS(5039), - [sym_label] = ACTIONS(5041), - [anon_sym_in] = ACTIONS(5039), - [anon_sym_DOT_DOT] = ACTIONS(5041), - [anon_sym_QMARK_COLON] = ACTIONS(5041), - [anon_sym_AMP_AMP] = ACTIONS(5041), - [anon_sym_PIPE_PIPE] = ACTIONS(5041), - [anon_sym_else] = ACTIONS(5039), - [anon_sym_COLON_COLON] = ACTIONS(5041), - [anon_sym_PLUS_EQ] = ACTIONS(5041), - [anon_sym_DASH_EQ] = ACTIONS(5041), - [anon_sym_STAR_EQ] = ACTIONS(5041), - [anon_sym_SLASH_EQ] = ACTIONS(5041), - [anon_sym_PERCENT_EQ] = ACTIONS(5041), - [anon_sym_BANG_EQ] = ACTIONS(5039), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5039), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5041), - [anon_sym_LT_EQ] = ACTIONS(5041), - [anon_sym_GT_EQ] = ACTIONS(5041), - [anon_sym_BANGin] = ACTIONS(5041), - [anon_sym_is] = ACTIONS(5039), - [anon_sym_BANGis] = ACTIONS(5041), - [anon_sym_PLUS] = ACTIONS(5039), - [anon_sym_DASH] = ACTIONS(5039), - [anon_sym_SLASH] = ACTIONS(5039), - [anon_sym_PERCENT] = ACTIONS(5039), - [anon_sym_as_QMARK] = ACTIONS(5041), - [anon_sym_PLUS_PLUS] = ACTIONS(5041), - [anon_sym_DASH_DASH] = ACTIONS(5041), - [anon_sym_BANG_BANG] = ACTIONS(5041), - [anon_sym_suspend] = ACTIONS(5039), - [anon_sym_sealed] = ACTIONS(5039), - [anon_sym_annotation] = ACTIONS(5039), - [anon_sym_data] = ACTIONS(5039), - [anon_sym_inner] = ACTIONS(5039), - [anon_sym_value] = ACTIONS(5039), - [anon_sym_override] = ACTIONS(5039), - [anon_sym_lateinit] = ACTIONS(5039), - [anon_sym_public] = ACTIONS(5039), - [anon_sym_private] = ACTIONS(5039), - [anon_sym_internal] = ACTIONS(5039), - [anon_sym_protected] = ACTIONS(5039), - [anon_sym_tailrec] = ACTIONS(5039), - [anon_sym_operator] = ACTIONS(5039), - [anon_sym_infix] = ACTIONS(5039), - [anon_sym_inline] = ACTIONS(5039), - [anon_sym_external] = ACTIONS(5039), - [sym_property_modifier] = ACTIONS(5039), - [anon_sym_abstract] = ACTIONS(5039), - [anon_sym_final] = ACTIONS(5039), - [anon_sym_open] = ACTIONS(5039), - [anon_sym_vararg] = ACTIONS(5039), - [anon_sym_noinline] = ACTIONS(5039), - [anon_sym_crossinline] = ACTIONS(5039), - [anon_sym_expect] = ACTIONS(5039), - [anon_sym_actual] = ACTIONS(5039), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5041), - [sym__automatic_semicolon] = ACTIONS(5041), - [sym_safe_nav] = ACTIONS(5041), + [3937] = { + [sym__alpha_identifier] = ACTIONS(4822), + [anon_sym_AT] = ACTIONS(4824), + [anon_sym_LBRACK] = ACTIONS(4824), + [anon_sym_DOT] = ACTIONS(4822), + [anon_sym_as] = ACTIONS(4822), + [anon_sym_EQ] = ACTIONS(4822), + [anon_sym_LBRACE] = ACTIONS(4824), + [anon_sym_RBRACE] = ACTIONS(4824), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_COMMA] = ACTIONS(4824), + [anon_sym_LT] = ACTIONS(4822), + [anon_sym_GT] = ACTIONS(4822), + [anon_sym_where] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4824), + [anon_sym_get] = ACTIONS(4822), + [anon_sym_set] = ACTIONS(4822), + [anon_sym_STAR] = ACTIONS(4822), + [sym_label] = ACTIONS(4824), + [anon_sym_in] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_QMARK_COLON] = ACTIONS(4824), + [anon_sym_AMP_AMP] = ACTIONS(4824), + [anon_sym_PIPE_PIPE] = ACTIONS(4824), + [anon_sym_else] = ACTIONS(4822), + [anon_sym_COLON_COLON] = ACTIONS(4824), + [anon_sym_PLUS_EQ] = ACTIONS(4824), + [anon_sym_DASH_EQ] = ACTIONS(4824), + [anon_sym_STAR_EQ] = ACTIONS(4824), + [anon_sym_SLASH_EQ] = ACTIONS(4824), + [anon_sym_PERCENT_EQ] = ACTIONS(4824), + [anon_sym_BANG_EQ] = ACTIONS(4822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4824), + [anon_sym_EQ_EQ] = ACTIONS(4822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4824), + [anon_sym_LT_EQ] = ACTIONS(4824), + [anon_sym_GT_EQ] = ACTIONS(4824), + [anon_sym_BANGin] = ACTIONS(4824), + [anon_sym_is] = ACTIONS(4822), + [anon_sym_BANGis] = ACTIONS(4824), + [anon_sym_PLUS] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4822), + [anon_sym_SLASH] = ACTIONS(4822), + [anon_sym_PERCENT] = ACTIONS(4822), + [anon_sym_as_QMARK] = ACTIONS(4824), + [anon_sym_PLUS_PLUS] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4824), + [anon_sym_BANG_BANG] = ACTIONS(4824), + [anon_sym_suspend] = ACTIONS(4822), + [anon_sym_sealed] = ACTIONS(4822), + [anon_sym_annotation] = ACTIONS(4822), + [anon_sym_data] = ACTIONS(4822), + [anon_sym_inner] = ACTIONS(4822), + [anon_sym_value] = ACTIONS(4822), + [anon_sym_override] = ACTIONS(4822), + [anon_sym_lateinit] = ACTIONS(4822), + [anon_sym_public] = ACTIONS(4822), + [anon_sym_private] = ACTIONS(4822), + [anon_sym_internal] = ACTIONS(4822), + [anon_sym_protected] = ACTIONS(4822), + [anon_sym_tailrec] = ACTIONS(4822), + [anon_sym_operator] = ACTIONS(4822), + [anon_sym_infix] = ACTIONS(4822), + [anon_sym_inline] = ACTIONS(4822), + [anon_sym_external] = ACTIONS(4822), + [sym_property_modifier] = ACTIONS(4822), + [anon_sym_abstract] = ACTIONS(4822), + [anon_sym_final] = ACTIONS(4822), + [anon_sym_open] = ACTIONS(4822), + [anon_sym_vararg] = ACTIONS(4822), + [anon_sym_noinline] = ACTIONS(4822), + [anon_sym_crossinline] = ACTIONS(4822), + [anon_sym_expect] = ACTIONS(4822), + [anon_sym_actual] = ACTIONS(4822), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4824), + [sym__automatic_semicolon] = ACTIONS(4824), + [sym_safe_nav] = ACTIONS(4824), [sym_multiline_comment] = ACTIONS(3), }, - [3998] = { - [sym__alpha_identifier] = ACTIONS(5027), - [anon_sym_AT] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5029), - [anon_sym_DOT] = ACTIONS(5027), - [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_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_value] = 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), + [3938] = { + [sym__alpha_identifier] = ACTIONS(4908), + [anon_sym_AT] = ACTIONS(4910), + [anon_sym_LBRACK] = ACTIONS(4910), + [anon_sym_DOT] = ACTIONS(4908), + [anon_sym_as] = ACTIONS(4908), + [anon_sym_EQ] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4910), + [anon_sym_RBRACE] = ACTIONS(4910), + [anon_sym_LPAREN] = ACTIONS(4910), + [anon_sym_COMMA] = ACTIONS(4910), + [anon_sym_LT] = ACTIONS(4908), + [anon_sym_GT] = ACTIONS(4908), + [anon_sym_where] = ACTIONS(4908), + [anon_sym_SEMI] = ACTIONS(4910), + [anon_sym_get] = ACTIONS(4908), + [anon_sym_set] = ACTIONS(4908), + [anon_sym_STAR] = ACTIONS(4908), + [sym_label] = ACTIONS(4910), + [anon_sym_in] = ACTIONS(4908), + [anon_sym_DOT_DOT] = ACTIONS(4910), + [anon_sym_QMARK_COLON] = ACTIONS(4910), + [anon_sym_AMP_AMP] = ACTIONS(4910), + [anon_sym_PIPE_PIPE] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(4910), + [anon_sym_PLUS_EQ] = ACTIONS(4910), + [anon_sym_DASH_EQ] = ACTIONS(4910), + [anon_sym_STAR_EQ] = ACTIONS(4910), + [anon_sym_SLASH_EQ] = ACTIONS(4910), + [anon_sym_PERCENT_EQ] = ACTIONS(4910), + [anon_sym_BANG_EQ] = ACTIONS(4908), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4910), + [anon_sym_EQ_EQ] = ACTIONS(4908), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4910), + [anon_sym_LT_EQ] = ACTIONS(4910), + [anon_sym_GT_EQ] = ACTIONS(4910), + [anon_sym_BANGin] = ACTIONS(4910), + [anon_sym_is] = ACTIONS(4908), + [anon_sym_BANGis] = ACTIONS(4910), + [anon_sym_PLUS] = ACTIONS(4908), + [anon_sym_DASH] = ACTIONS(4908), + [anon_sym_SLASH] = ACTIONS(4908), + [anon_sym_PERCENT] = ACTIONS(4908), + [anon_sym_as_QMARK] = ACTIONS(4910), + [anon_sym_PLUS_PLUS] = ACTIONS(4910), + [anon_sym_DASH_DASH] = ACTIONS(4910), + [anon_sym_BANG_BANG] = ACTIONS(4910), + [anon_sym_suspend] = ACTIONS(4908), + [anon_sym_sealed] = ACTIONS(4908), + [anon_sym_annotation] = ACTIONS(4908), + [anon_sym_data] = ACTIONS(4908), + [anon_sym_inner] = ACTIONS(4908), + [anon_sym_value] = ACTIONS(4908), + [anon_sym_override] = ACTIONS(4908), + [anon_sym_lateinit] = ACTIONS(4908), + [anon_sym_public] = ACTIONS(4908), + [anon_sym_private] = ACTIONS(4908), + [anon_sym_internal] = ACTIONS(4908), + [anon_sym_protected] = ACTIONS(4908), + [anon_sym_tailrec] = ACTIONS(4908), + [anon_sym_operator] = ACTIONS(4908), + [anon_sym_infix] = ACTIONS(4908), + [anon_sym_inline] = ACTIONS(4908), + [anon_sym_external] = ACTIONS(4908), + [sym_property_modifier] = ACTIONS(4908), + [anon_sym_abstract] = ACTIONS(4908), + [anon_sym_final] = ACTIONS(4908), + [anon_sym_open] = ACTIONS(4908), + [anon_sym_vararg] = ACTIONS(4908), + [anon_sym_noinline] = ACTIONS(4908), + [anon_sym_crossinline] = ACTIONS(4908), + [anon_sym_expect] = ACTIONS(4908), + [anon_sym_actual] = ACTIONS(4908), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4910), + [sym__automatic_semicolon] = ACTIONS(4910), + [sym_safe_nav] = ACTIONS(4910), [sym_multiline_comment] = ACTIONS(3), }, - [3999] = { - [sym__alpha_identifier] = ACTIONS(4826), - [anon_sym_AT] = ACTIONS(4828), - [anon_sym_LBRACK] = ACTIONS(4828), - [anon_sym_DOT] = ACTIONS(4826), - [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_SEMI] = ACTIONS(4828), - [anon_sym_get] = ACTIONS(4826), - [anon_sym_set] = ACTIONS(4826), - [anon_sym_STAR] = ACTIONS(4826), - [sym_label] = ACTIONS(4828), - [anon_sym_in] = ACTIONS(4826), - [anon_sym_DOT_DOT] = ACTIONS(4828), - [anon_sym_QMARK_COLON] = ACTIONS(4828), - [anon_sym_AMP_AMP] = ACTIONS(4828), - [anon_sym_PIPE_PIPE] = ACTIONS(4828), - [anon_sym_else] = ACTIONS(4826), - [anon_sym_COLON_COLON] = ACTIONS(4828), - [anon_sym_PLUS_EQ] = ACTIONS(4828), - [anon_sym_DASH_EQ] = ACTIONS(4828), - [anon_sym_STAR_EQ] = ACTIONS(4828), - [anon_sym_SLASH_EQ] = ACTIONS(4828), - [anon_sym_PERCENT_EQ] = ACTIONS(4828), - [anon_sym_BANG_EQ] = ACTIONS(4826), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4828), - [anon_sym_EQ_EQ] = ACTIONS(4826), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4828), - [anon_sym_LT_EQ] = ACTIONS(4828), - [anon_sym_GT_EQ] = ACTIONS(4828), - [anon_sym_BANGin] = ACTIONS(4828), - [anon_sym_is] = ACTIONS(4826), - [anon_sym_BANGis] = ACTIONS(4828), - [anon_sym_PLUS] = ACTIONS(4826), - [anon_sym_DASH] = ACTIONS(4826), - [anon_sym_SLASH] = ACTIONS(4826), - [anon_sym_PERCENT] = ACTIONS(4826), - [anon_sym_as_QMARK] = ACTIONS(4828), - [anon_sym_PLUS_PLUS] = ACTIONS(4828), - [anon_sym_DASH_DASH] = ACTIONS(4828), - [anon_sym_BANG_BANG] = ACTIONS(4828), - [anon_sym_suspend] = ACTIONS(4826), - [anon_sym_sealed] = ACTIONS(4826), - [anon_sym_annotation] = ACTIONS(4826), - [anon_sym_data] = ACTIONS(4826), - [anon_sym_inner] = ACTIONS(4826), - [anon_sym_value] = ACTIONS(4826), - [anon_sym_override] = ACTIONS(4826), - [anon_sym_lateinit] = ACTIONS(4826), - [anon_sym_public] = ACTIONS(4826), - [anon_sym_private] = ACTIONS(4826), - [anon_sym_internal] = ACTIONS(4826), - [anon_sym_protected] = ACTIONS(4826), - [anon_sym_tailrec] = ACTIONS(4826), - [anon_sym_operator] = ACTIONS(4826), - [anon_sym_infix] = ACTIONS(4826), - [anon_sym_inline] = ACTIONS(4826), - [anon_sym_external] = ACTIONS(4826), - [sym_property_modifier] = ACTIONS(4826), - [anon_sym_abstract] = ACTIONS(4826), - [anon_sym_final] = ACTIONS(4826), - [anon_sym_open] = ACTIONS(4826), - [anon_sym_vararg] = ACTIONS(4826), - [anon_sym_noinline] = ACTIONS(4826), - [anon_sym_crossinline] = ACTIONS(4826), - [anon_sym_expect] = ACTIONS(4826), - [anon_sym_actual] = ACTIONS(4826), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4828), - [sym__automatic_semicolon] = ACTIONS(4828), - [sym_safe_nav] = ACTIONS(4828), + [3939] = { + [sym__alpha_identifier] = ACTIONS(1738), + [anon_sym_AT] = ACTIONS(1740), + [anon_sym_LBRACK] = ACTIONS(1740), + [anon_sym_DOT] = ACTIONS(1738), + [anon_sym_as] = ACTIONS(1738), + [anon_sym_EQ] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1740), + [anon_sym_RBRACE] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1740), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_GT] = ACTIONS(1738), + [anon_sym_where] = ACTIONS(1738), + [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_get] = ACTIONS(1738), + [anon_sym_set] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [sym_label] = ACTIONS(1740), + [anon_sym_in] = ACTIONS(1738), + [anon_sym_DOT_DOT] = ACTIONS(1740), + [anon_sym_QMARK_COLON] = ACTIONS(1740), + [anon_sym_AMP_AMP] = ACTIONS(1740), + [anon_sym_PIPE_PIPE] = ACTIONS(1740), + [anon_sym_else] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1740), + [anon_sym_PLUS_EQ] = ACTIONS(1740), + [anon_sym_DASH_EQ] = ACTIONS(1740), + [anon_sym_STAR_EQ] = ACTIONS(1740), + [anon_sym_SLASH_EQ] = ACTIONS(1740), + [anon_sym_PERCENT_EQ] = ACTIONS(1740), + [anon_sym_BANG_EQ] = ACTIONS(1738), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1740), + [anon_sym_EQ_EQ] = ACTIONS(1738), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1740), + [anon_sym_LT_EQ] = ACTIONS(1740), + [anon_sym_GT_EQ] = ACTIONS(1740), + [anon_sym_BANGin] = ACTIONS(1740), + [anon_sym_is] = ACTIONS(1738), + [anon_sym_BANGis] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1738), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_SLASH] = ACTIONS(1738), + [anon_sym_PERCENT] = ACTIONS(1738), + [anon_sym_as_QMARK] = ACTIONS(1740), + [anon_sym_PLUS_PLUS] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1740), + [anon_sym_BANG_BANG] = ACTIONS(1740), + [anon_sym_suspend] = ACTIONS(1738), + [anon_sym_sealed] = ACTIONS(1738), + [anon_sym_annotation] = ACTIONS(1738), + [anon_sym_data] = ACTIONS(1738), + [anon_sym_inner] = ACTIONS(1738), + [anon_sym_value] = ACTIONS(1738), + [anon_sym_override] = ACTIONS(1738), + [anon_sym_lateinit] = ACTIONS(1738), + [anon_sym_public] = ACTIONS(1738), + [anon_sym_private] = ACTIONS(1738), + [anon_sym_internal] = ACTIONS(1738), + [anon_sym_protected] = ACTIONS(1738), + [anon_sym_tailrec] = ACTIONS(1738), + [anon_sym_operator] = ACTIONS(1738), + [anon_sym_infix] = ACTIONS(1738), + [anon_sym_inline] = ACTIONS(1738), + [anon_sym_external] = ACTIONS(1738), + [sym_property_modifier] = ACTIONS(1738), + [anon_sym_abstract] = ACTIONS(1738), + [anon_sym_final] = ACTIONS(1738), + [anon_sym_open] = ACTIONS(1738), + [anon_sym_vararg] = ACTIONS(1738), + [anon_sym_noinline] = ACTIONS(1738), + [anon_sym_crossinline] = ACTIONS(1738), + [anon_sym_expect] = ACTIONS(1738), + [anon_sym_actual] = ACTIONS(1738), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1740), + [sym__automatic_semicolon] = ACTIONS(1740), + [sym_safe_nav] = ACTIONS(1740), [sym_multiline_comment] = ACTIONS(3), }, - [4000] = { - [sym__alpha_identifier] = ACTIONS(7185), - [anon_sym_AT] = ACTIONS(7187), - [anon_sym_LBRACK] = ACTIONS(7187), - [anon_sym_typealias] = ACTIONS(7185), - [anon_sym_class] = ACTIONS(7185), - [anon_sym_interface] = ACTIONS(7185), - [anon_sym_enum] = ACTIONS(7185), - [anon_sym_LBRACE] = ACTIONS(7187), - [anon_sym_LPAREN] = ACTIONS(7187), - [anon_sym_val] = ACTIONS(7185), - [anon_sym_var] = ACTIONS(7185), - [anon_sym_object] = ACTIONS(7185), - [anon_sym_fun] = ACTIONS(7185), - [anon_sym_get] = ACTIONS(7185), - [anon_sym_set] = ACTIONS(7185), - [anon_sym_this] = ACTIONS(7185), - [anon_sym_super] = ACTIONS(7185), - [anon_sym_STAR] = ACTIONS(7187), - [sym_label] = ACTIONS(7185), - [anon_sym_for] = ACTIONS(7185), - [anon_sym_while] = ACTIONS(7185), - [anon_sym_do] = ACTIONS(7185), - [anon_sym_null] = ACTIONS(7185), - [anon_sym_if] = ACTIONS(7185), - [anon_sym_when] = ACTIONS(7185), - [anon_sym_try] = ACTIONS(7185), - [anon_sym_throw] = ACTIONS(7185), - [anon_sym_return] = ACTIONS(7185), - [anon_sym_continue] = ACTIONS(7185), - [anon_sym_break] = ACTIONS(7185), - [anon_sym_COLON_COLON] = ACTIONS(7187), - [anon_sym_PLUS] = ACTIONS(7185), - [anon_sym_DASH] = ACTIONS(7185), - [anon_sym_PLUS_PLUS] = ACTIONS(7187), - [anon_sym_DASH_DASH] = ACTIONS(7187), - [anon_sym_BANG] = ACTIONS(7187), - [anon_sym_suspend] = ACTIONS(7185), - [anon_sym_sealed] = ACTIONS(7185), - [anon_sym_annotation] = ACTIONS(7185), - [anon_sym_data] = ACTIONS(7185), - [anon_sym_inner] = ACTIONS(7185), - [anon_sym_value] = ACTIONS(7185), - [anon_sym_override] = ACTIONS(7185), - [anon_sym_lateinit] = ACTIONS(7185), - [anon_sym_public] = ACTIONS(7185), - [anon_sym_private] = ACTIONS(7185), - [anon_sym_internal] = ACTIONS(7185), - [anon_sym_protected] = ACTIONS(7185), - [anon_sym_tailrec] = ACTIONS(7185), - [anon_sym_operator] = ACTIONS(7185), - [anon_sym_infix] = ACTIONS(7185), - [anon_sym_inline] = ACTIONS(7185), - [anon_sym_external] = ACTIONS(7185), - [sym_property_modifier] = ACTIONS(7185), - [anon_sym_abstract] = ACTIONS(7185), - [anon_sym_final] = ACTIONS(7185), - [anon_sym_open] = ACTIONS(7185), - [anon_sym_vararg] = ACTIONS(7185), - [anon_sym_noinline] = ACTIONS(7185), - [anon_sym_crossinline] = ACTIONS(7185), - [anon_sym_expect] = ACTIONS(7185), - [anon_sym_actual] = ACTIONS(7185), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7187), - [anon_sym_continue_AT] = ACTIONS(7187), - [anon_sym_break_AT] = ACTIONS(7187), - [anon_sym_this_AT] = ACTIONS(7187), - [anon_sym_super_AT] = ACTIONS(7187), - [sym_real_literal] = ACTIONS(7187), - [sym_integer_literal] = ACTIONS(7185), - [sym_hex_literal] = ACTIONS(7187), - [sym_bin_literal] = ACTIONS(7187), - [anon_sym_true] = ACTIONS(7185), - [anon_sym_false] = ACTIONS(7185), - [anon_sym_SQUOTE] = ACTIONS(7187), - [sym__backtick_identifier] = ACTIONS(7187), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7187), + [3940] = { + [sym__alpha_identifier] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_COMMA] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_get] = ACTIONS(4044), + [anon_sym_set] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [sym_label] = ACTIONS(4046), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4046), + [anon_sym_QMARK_COLON] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_PLUS_EQ] = ACTIONS(4046), + [anon_sym_DASH_EQ] = ACTIONS(4046), + [anon_sym_STAR_EQ] = ACTIONS(4046), + [anon_sym_SLASH_EQ] = ACTIONS(4046), + [anon_sym_PERCENT_EQ] = ACTIONS(4046), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4046), + [anon_sym_LT_EQ] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4046), + [anon_sym_BANGin] = ACTIONS(4046), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_BANGis] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_as_QMARK] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_BANG_BANG] = ACTIONS(4046), + [anon_sym_suspend] = ACTIONS(4044), + [anon_sym_sealed] = ACTIONS(4044), + [anon_sym_annotation] = ACTIONS(4044), + [anon_sym_data] = ACTIONS(4044), + [anon_sym_inner] = ACTIONS(4044), + [anon_sym_value] = ACTIONS(4044), + [anon_sym_override] = ACTIONS(4044), + [anon_sym_lateinit] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_internal] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_tailrec] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_infix] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym_external] = ACTIONS(4044), + [sym_property_modifier] = ACTIONS(4044), + [anon_sym_abstract] = ACTIONS(4044), + [anon_sym_final] = ACTIONS(4044), + [anon_sym_open] = ACTIONS(4044), + [anon_sym_vararg] = ACTIONS(4044), + [anon_sym_noinline] = ACTIONS(4044), + [anon_sym_crossinline] = ACTIONS(4044), + [anon_sym_expect] = ACTIONS(4044), + [anon_sym_actual] = ACTIONS(4044), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4046), + [sym__automatic_semicolon] = ACTIONS(4046), + [sym_safe_nav] = ACTIONS(4046), + [sym_multiline_comment] = ACTIONS(3), }, - [4001] = { - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_EQ] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3276), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_PLUS_EQ] = ACTIONS(3280), - [anon_sym_DASH_EQ] = ACTIONS(3280), - [anon_sym_STAR_EQ] = ACTIONS(3280), - [anon_sym_SLASH_EQ] = ACTIONS(3280), - [anon_sym_PERCENT_EQ] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3276), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [3941] = { + [sym_type_constraints] = STATE(3353), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [anon_sym_DASH_GT] = ACTIONS(4154), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + }, + [3942] = { + [sym__alpha_identifier] = ACTIONS(7103), + [anon_sym_AT] = ACTIONS(7105), + [anon_sym_LBRACK] = ACTIONS(7105), + [anon_sym_typealias] = ACTIONS(7103), + [anon_sym_class] = ACTIONS(7103), + [anon_sym_interface] = ACTIONS(7103), + [anon_sym_enum] = ACTIONS(7103), + [anon_sym_LBRACE] = ACTIONS(7105), + [anon_sym_LPAREN] = ACTIONS(7105), + [anon_sym_val] = ACTIONS(7103), + [anon_sym_var] = ACTIONS(7103), + [anon_sym_object] = ACTIONS(7103), + [anon_sym_fun] = ACTIONS(7103), + [anon_sym_get] = ACTIONS(7103), + [anon_sym_set] = ACTIONS(7103), + [anon_sym_this] = ACTIONS(7103), + [anon_sym_super] = ACTIONS(7103), + [anon_sym_STAR] = ACTIONS(7105), + [sym_label] = ACTIONS(7103), + [anon_sym_for] = ACTIONS(7103), + [anon_sym_while] = ACTIONS(7103), + [anon_sym_do] = ACTIONS(7103), + [anon_sym_null] = ACTIONS(7103), + [anon_sym_if] = ACTIONS(7103), + [anon_sym_when] = ACTIONS(7103), + [anon_sym_try] = ACTIONS(7103), + [anon_sym_throw] = ACTIONS(7103), + [anon_sym_return] = ACTIONS(7103), + [anon_sym_continue] = ACTIONS(7103), + [anon_sym_break] = ACTIONS(7103), + [anon_sym_COLON_COLON] = ACTIONS(7105), + [anon_sym_PLUS] = ACTIONS(7103), + [anon_sym_DASH] = ACTIONS(7103), + [anon_sym_PLUS_PLUS] = ACTIONS(7105), + [anon_sym_DASH_DASH] = ACTIONS(7105), + [anon_sym_BANG] = ACTIONS(7105), + [anon_sym_suspend] = ACTIONS(7103), + [anon_sym_sealed] = ACTIONS(7103), + [anon_sym_annotation] = ACTIONS(7103), + [anon_sym_data] = ACTIONS(7103), + [anon_sym_inner] = ACTIONS(7103), + [anon_sym_value] = ACTIONS(7103), + [anon_sym_override] = ACTIONS(7103), + [anon_sym_lateinit] = ACTIONS(7103), + [anon_sym_public] = ACTIONS(7103), + [anon_sym_private] = ACTIONS(7103), + [anon_sym_internal] = ACTIONS(7103), + [anon_sym_protected] = ACTIONS(7103), + [anon_sym_tailrec] = ACTIONS(7103), + [anon_sym_operator] = ACTIONS(7103), + [anon_sym_infix] = ACTIONS(7103), + [anon_sym_inline] = ACTIONS(7103), + [anon_sym_external] = ACTIONS(7103), + [sym_property_modifier] = ACTIONS(7103), + [anon_sym_abstract] = ACTIONS(7103), + [anon_sym_final] = ACTIONS(7103), + [anon_sym_open] = ACTIONS(7103), + [anon_sym_vararg] = ACTIONS(7103), + [anon_sym_noinline] = ACTIONS(7103), + [anon_sym_crossinline] = ACTIONS(7103), + [anon_sym_expect] = ACTIONS(7103), + [anon_sym_actual] = ACTIONS(7103), [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(7105), + [anon_sym_continue_AT] = ACTIONS(7105), + [anon_sym_break_AT] = ACTIONS(7105), + [anon_sym_this_AT] = ACTIONS(7105), + [anon_sym_super_AT] = ACTIONS(7105), + [sym_real_literal] = ACTIONS(7105), + [sym_integer_literal] = ACTIONS(7103), + [sym_hex_literal] = ACTIONS(7105), + [sym_bin_literal] = ACTIONS(7105), + [anon_sym_true] = ACTIONS(7103), + [anon_sym_false] = ACTIONS(7103), + [anon_sym_SQUOTE] = ACTIONS(7105), + [sym__backtick_identifier] = ACTIONS(7105), [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7105), }, - [4002] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3919), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_object] = ACTIONS(4539), - [anon_sym_fun] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_this] = ACTIONS(4539), - [anon_sym_super] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4539), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_null] = ACTIONS(4539), - [anon_sym_if] = ACTIONS(4539), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_when] = ACTIONS(4539), - [anon_sym_try] = ACTIONS(4539), - [anon_sym_throw] = ACTIONS(4539), - [anon_sym_return] = ACTIONS(4539), - [anon_sym_continue] = ACTIONS(4539), - [anon_sym_break] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG] = ACTIONS(4539), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4541), - [anon_sym_continue_AT] = ACTIONS(4541), - [anon_sym_break_AT] = ACTIONS(4541), - [anon_sym_this_AT] = ACTIONS(4541), - [anon_sym_super_AT] = ACTIONS(4541), - [sym_real_literal] = ACTIONS(4541), - [sym_integer_literal] = ACTIONS(4539), - [sym_hex_literal] = ACTIONS(4541), - [sym_bin_literal] = ACTIONS(4541), - [anon_sym_true] = ACTIONS(4539), - [anon_sym_false] = ACTIONS(4539), - [anon_sym_SQUOTE] = ACTIONS(4541), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4541), + [3943] = { + [sym_function_body] = STATE(3909), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), }, - [4003] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(7149), - [anon_sym_PIPE_PIPE] = ACTIONS(7151), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [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(7153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7155), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [3944] = { + [sym__alpha_identifier] = ACTIONS(4872), + [anon_sym_AT] = ACTIONS(4874), + [anon_sym_LBRACK] = ACTIONS(4874), + [anon_sym_DOT] = ACTIONS(4872), + [anon_sym_as] = ACTIONS(4872), + [anon_sym_EQ] = ACTIONS(4872), + [anon_sym_LBRACE] = ACTIONS(4874), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_COMMA] = ACTIONS(4874), + [anon_sym_LT] = ACTIONS(4872), + [anon_sym_GT] = ACTIONS(4872), + [anon_sym_where] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4874), + [anon_sym_get] = ACTIONS(4872), + [anon_sym_set] = ACTIONS(4872), + [anon_sym_STAR] = ACTIONS(4872), + [sym_label] = ACTIONS(4874), + [anon_sym_in] = ACTIONS(4872), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_QMARK_COLON] = ACTIONS(4874), + [anon_sym_AMP_AMP] = ACTIONS(4874), + [anon_sym_PIPE_PIPE] = ACTIONS(4874), + [anon_sym_else] = ACTIONS(4872), + [anon_sym_COLON_COLON] = ACTIONS(4874), + [anon_sym_PLUS_EQ] = ACTIONS(4874), + [anon_sym_DASH_EQ] = ACTIONS(4874), + [anon_sym_STAR_EQ] = ACTIONS(4874), + [anon_sym_SLASH_EQ] = ACTIONS(4874), + [anon_sym_PERCENT_EQ] = ACTIONS(4874), + [anon_sym_BANG_EQ] = ACTIONS(4872), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4874), + [anon_sym_EQ_EQ] = ACTIONS(4872), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4874), + [anon_sym_LT_EQ] = ACTIONS(4874), + [anon_sym_GT_EQ] = ACTIONS(4874), + [anon_sym_BANGin] = ACTIONS(4874), + [anon_sym_is] = ACTIONS(4872), + [anon_sym_BANGis] = ACTIONS(4874), + [anon_sym_PLUS] = ACTIONS(4872), + [anon_sym_DASH] = ACTIONS(4872), + [anon_sym_SLASH] = ACTIONS(4872), + [anon_sym_PERCENT] = ACTIONS(4872), + [anon_sym_as_QMARK] = ACTIONS(4874), + [anon_sym_PLUS_PLUS] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4874), + [anon_sym_BANG_BANG] = ACTIONS(4874), + [anon_sym_suspend] = ACTIONS(4872), + [anon_sym_sealed] = ACTIONS(4872), + [anon_sym_annotation] = ACTIONS(4872), + [anon_sym_data] = ACTIONS(4872), + [anon_sym_inner] = ACTIONS(4872), + [anon_sym_value] = ACTIONS(4872), + [anon_sym_override] = ACTIONS(4872), + [anon_sym_lateinit] = ACTIONS(4872), + [anon_sym_public] = ACTIONS(4872), + [anon_sym_private] = ACTIONS(4872), + [anon_sym_internal] = ACTIONS(4872), + [anon_sym_protected] = ACTIONS(4872), + [anon_sym_tailrec] = ACTIONS(4872), + [anon_sym_operator] = ACTIONS(4872), + [anon_sym_infix] = ACTIONS(4872), + [anon_sym_inline] = ACTIONS(4872), + [anon_sym_external] = ACTIONS(4872), + [sym_property_modifier] = ACTIONS(4872), + [anon_sym_abstract] = ACTIONS(4872), + [anon_sym_final] = ACTIONS(4872), + [anon_sym_open] = ACTIONS(4872), + [anon_sym_vararg] = ACTIONS(4872), + [anon_sym_noinline] = ACTIONS(4872), + [anon_sym_crossinline] = ACTIONS(4872), + [anon_sym_expect] = ACTIONS(4872), + [anon_sym_actual] = ACTIONS(4872), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4874), + [sym__automatic_semicolon] = ACTIONS(4874), + [sym_safe_nav] = ACTIONS(4874), [sym_multiline_comment] = ACTIONS(3), }, - [4004] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(7149), - [anon_sym_PIPE_PIPE] = ACTIONS(7151), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(7153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7155), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [3945] = { + [sym__alpha_identifier] = ACTIONS(4630), + [anon_sym_AT] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_DOT] = ACTIONS(4630), + [anon_sym_as] = ACTIONS(4630), + [anon_sym_EQ] = ACTIONS(4630), + [anon_sym_LBRACE] = ACTIONS(4632), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_LPAREN] = ACTIONS(4632), + [anon_sym_COMMA] = ACTIONS(4632), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_where] = ACTIONS(4630), + [anon_sym_SEMI] = ACTIONS(4632), + [anon_sym_get] = ACTIONS(4630), + [anon_sym_set] = ACTIONS(4630), + [anon_sym_STAR] = ACTIONS(4630), + [sym_label] = ACTIONS(4632), + [anon_sym_in] = ACTIONS(4630), + [anon_sym_DOT_DOT] = ACTIONS(4632), + [anon_sym_QMARK_COLON] = ACTIONS(4632), + [anon_sym_AMP_AMP] = ACTIONS(4632), + [anon_sym_PIPE_PIPE] = ACTIONS(4632), + [anon_sym_else] = ACTIONS(4630), + [anon_sym_COLON_COLON] = ACTIONS(4632), + [anon_sym_PLUS_EQ] = ACTIONS(4632), + [anon_sym_DASH_EQ] = ACTIONS(4632), + [anon_sym_STAR_EQ] = ACTIONS(4632), + [anon_sym_SLASH_EQ] = ACTIONS(4632), + [anon_sym_PERCENT_EQ] = ACTIONS(4632), + [anon_sym_BANG_EQ] = ACTIONS(4630), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4632), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4632), + [anon_sym_LT_EQ] = ACTIONS(4632), + [anon_sym_GT_EQ] = ACTIONS(4632), + [anon_sym_BANGin] = ACTIONS(4632), + [anon_sym_is] = ACTIONS(4630), + [anon_sym_BANGis] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_SLASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_as_QMARK] = ACTIONS(4632), + [anon_sym_PLUS_PLUS] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4632), + [anon_sym_BANG_BANG] = ACTIONS(4632), + [anon_sym_suspend] = ACTIONS(4630), + [anon_sym_sealed] = ACTIONS(4630), + [anon_sym_annotation] = ACTIONS(4630), + [anon_sym_data] = ACTIONS(4630), + [anon_sym_inner] = ACTIONS(4630), + [anon_sym_value] = ACTIONS(4630), + [anon_sym_override] = ACTIONS(4630), + [anon_sym_lateinit] = ACTIONS(4630), + [anon_sym_public] = ACTIONS(4630), + [anon_sym_private] = ACTIONS(4630), + [anon_sym_internal] = ACTIONS(4630), + [anon_sym_protected] = ACTIONS(4630), + [anon_sym_tailrec] = ACTIONS(4630), + [anon_sym_operator] = ACTIONS(4630), + [anon_sym_infix] = ACTIONS(4630), + [anon_sym_inline] = ACTIONS(4630), + [anon_sym_external] = ACTIONS(4630), + [sym_property_modifier] = ACTIONS(4630), + [anon_sym_abstract] = ACTIONS(4630), + [anon_sym_final] = ACTIONS(4630), + [anon_sym_open] = ACTIONS(4630), + [anon_sym_vararg] = ACTIONS(4630), + [anon_sym_noinline] = ACTIONS(4630), + [anon_sym_crossinline] = ACTIONS(4630), + [anon_sym_expect] = ACTIONS(4630), + [anon_sym_actual] = ACTIONS(4630), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4632), + [sym__automatic_semicolon] = ACTIONS(4632), + [sym_safe_nav] = ACTIONS(4632), [sym_multiline_comment] = ACTIONS(3), }, - [4005] = { - [sym__alpha_identifier] = ACTIONS(5141), - [anon_sym_AT] = ACTIONS(5143), - [anon_sym_LBRACK] = ACTIONS(5143), - [anon_sym_DOT] = ACTIONS(5141), - [anon_sym_as] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5143), - [anon_sym_RBRACE] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_COMMA] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5141), - [anon_sym_GT] = ACTIONS(5141), - [anon_sym_where] = ACTIONS(5141), - [anon_sym_SEMI] = ACTIONS(5143), - [anon_sym_get] = ACTIONS(5141), - [anon_sym_set] = ACTIONS(5141), - [anon_sym_STAR] = ACTIONS(5141), - [sym_label] = ACTIONS(5143), - [anon_sym_in] = ACTIONS(5141), - [anon_sym_DOT_DOT] = ACTIONS(5143), - [anon_sym_QMARK_COLON] = ACTIONS(5143), - [anon_sym_AMP_AMP] = ACTIONS(5143), - [anon_sym_PIPE_PIPE] = ACTIONS(5143), - [anon_sym_else] = ACTIONS(5141), - [anon_sym_COLON_COLON] = ACTIONS(5143), - [anon_sym_PLUS_EQ] = ACTIONS(5143), - [anon_sym_DASH_EQ] = ACTIONS(5143), - [anon_sym_STAR_EQ] = ACTIONS(5143), - [anon_sym_SLASH_EQ] = ACTIONS(5143), - [anon_sym_PERCENT_EQ] = ACTIONS(5143), - [anon_sym_BANG_EQ] = ACTIONS(5141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), - [anon_sym_EQ_EQ] = ACTIONS(5141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), - [anon_sym_LT_EQ] = ACTIONS(5143), - [anon_sym_GT_EQ] = ACTIONS(5143), - [anon_sym_BANGin] = ACTIONS(5143), - [anon_sym_is] = ACTIONS(5141), - [anon_sym_BANGis] = ACTIONS(5143), - [anon_sym_PLUS] = ACTIONS(5141), - [anon_sym_DASH] = ACTIONS(5141), - [anon_sym_SLASH] = ACTIONS(5141), - [anon_sym_PERCENT] = ACTIONS(5141), - [anon_sym_as_QMARK] = ACTIONS(5143), - [anon_sym_PLUS_PLUS] = ACTIONS(5143), - [anon_sym_DASH_DASH] = ACTIONS(5143), - [anon_sym_BANG_BANG] = ACTIONS(5143), - [anon_sym_suspend] = ACTIONS(5141), - [anon_sym_sealed] = ACTIONS(5141), - [anon_sym_annotation] = ACTIONS(5141), - [anon_sym_data] = ACTIONS(5141), - [anon_sym_inner] = ACTIONS(5141), - [anon_sym_value] = ACTIONS(5141), - [anon_sym_override] = ACTIONS(5141), - [anon_sym_lateinit] = ACTIONS(5141), - [anon_sym_public] = ACTIONS(5141), - [anon_sym_private] = ACTIONS(5141), - [anon_sym_internal] = ACTIONS(5141), - [anon_sym_protected] = ACTIONS(5141), - [anon_sym_tailrec] = ACTIONS(5141), - [anon_sym_operator] = ACTIONS(5141), - [anon_sym_infix] = ACTIONS(5141), - [anon_sym_inline] = ACTIONS(5141), - [anon_sym_external] = ACTIONS(5141), - [sym_property_modifier] = ACTIONS(5141), - [anon_sym_abstract] = ACTIONS(5141), - [anon_sym_final] = ACTIONS(5141), - [anon_sym_open] = ACTIONS(5141), - [anon_sym_vararg] = ACTIONS(5141), - [anon_sym_noinline] = ACTIONS(5141), - [anon_sym_crossinline] = ACTIONS(5141), - [anon_sym_expect] = ACTIONS(5141), - [anon_sym_actual] = ACTIONS(5141), + [3946] = { + [sym__alpha_identifier] = ACTIONS(4900), + [anon_sym_AT] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(4902), + [anon_sym_DOT] = ACTIONS(4900), + [anon_sym_as] = ACTIONS(4900), + [anon_sym_EQ] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4902), + [anon_sym_RBRACE] = ACTIONS(4902), + [anon_sym_LPAREN] = ACTIONS(4902), + [anon_sym_COMMA] = ACTIONS(4902), + [anon_sym_LT] = ACTIONS(4900), + [anon_sym_GT] = ACTIONS(4900), + [anon_sym_where] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4902), + [anon_sym_get] = ACTIONS(4900), + [anon_sym_set] = ACTIONS(4900), + [anon_sym_STAR] = ACTIONS(4900), + [sym_label] = ACTIONS(4902), + [anon_sym_in] = ACTIONS(4900), + [anon_sym_DOT_DOT] = ACTIONS(4902), + [anon_sym_QMARK_COLON] = ACTIONS(4902), + [anon_sym_AMP_AMP] = ACTIONS(4902), + [anon_sym_PIPE_PIPE] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(4902), + [anon_sym_PLUS_EQ] = ACTIONS(4902), + [anon_sym_DASH_EQ] = ACTIONS(4902), + [anon_sym_STAR_EQ] = ACTIONS(4902), + [anon_sym_SLASH_EQ] = ACTIONS(4902), + [anon_sym_PERCENT_EQ] = ACTIONS(4902), + [anon_sym_BANG_EQ] = ACTIONS(4900), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4902), + [anon_sym_EQ_EQ] = ACTIONS(4900), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4902), + [anon_sym_LT_EQ] = ACTIONS(4902), + [anon_sym_GT_EQ] = ACTIONS(4902), + [anon_sym_BANGin] = ACTIONS(4902), + [anon_sym_is] = ACTIONS(4900), + [anon_sym_BANGis] = ACTIONS(4902), + [anon_sym_PLUS] = ACTIONS(4900), + [anon_sym_DASH] = ACTIONS(4900), + [anon_sym_SLASH] = ACTIONS(4900), + [anon_sym_PERCENT] = ACTIONS(4900), + [anon_sym_as_QMARK] = ACTIONS(4902), + [anon_sym_PLUS_PLUS] = ACTIONS(4902), + [anon_sym_DASH_DASH] = ACTIONS(4902), + [anon_sym_BANG_BANG] = ACTIONS(4902), + [anon_sym_suspend] = ACTIONS(4900), + [anon_sym_sealed] = ACTIONS(4900), + [anon_sym_annotation] = ACTIONS(4900), + [anon_sym_data] = ACTIONS(4900), + [anon_sym_inner] = ACTIONS(4900), + [anon_sym_value] = ACTIONS(4900), + [anon_sym_override] = ACTIONS(4900), + [anon_sym_lateinit] = ACTIONS(4900), + [anon_sym_public] = ACTIONS(4900), + [anon_sym_private] = ACTIONS(4900), + [anon_sym_internal] = ACTIONS(4900), + [anon_sym_protected] = ACTIONS(4900), + [anon_sym_tailrec] = ACTIONS(4900), + [anon_sym_operator] = ACTIONS(4900), + [anon_sym_infix] = ACTIONS(4900), + [anon_sym_inline] = ACTIONS(4900), + [anon_sym_external] = ACTIONS(4900), + [sym_property_modifier] = ACTIONS(4900), + [anon_sym_abstract] = ACTIONS(4900), + [anon_sym_final] = ACTIONS(4900), + [anon_sym_open] = ACTIONS(4900), + [anon_sym_vararg] = ACTIONS(4900), + [anon_sym_noinline] = ACTIONS(4900), + [anon_sym_crossinline] = ACTIONS(4900), + [anon_sym_expect] = ACTIONS(4900), + [anon_sym_actual] = ACTIONS(4900), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5143), - [sym__automatic_semicolon] = ACTIONS(5143), - [sym_safe_nav] = ACTIONS(5143), + [sym__backtick_identifier] = ACTIONS(4902), + [sym__automatic_semicolon] = ACTIONS(4902), + [sym_safe_nav] = ACTIONS(4902), [sym_multiline_comment] = ACTIONS(3), }, - [4006] = { - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_RBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [anon_sym_DASH_GT] = ACTIONS(4196), + [3947] = { + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(4276), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4274), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_PLUS_EQ] = ACTIONS(4276), + [anon_sym_DASH_EQ] = ACTIONS(4276), + [anon_sym_STAR_EQ] = ACTIONS(4276), + [anon_sym_SLASH_EQ] = ACTIONS(4276), + [anon_sym_PERCENT_EQ] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4274), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + }, + [3948] = { + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3950), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [sym_label] = ACTIONS(3952), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3952), + [anon_sym_PLUS_EQ] = ACTIONS(3952), + [anon_sym_DASH_EQ] = ACTIONS(3952), + [anon_sym_STAR_EQ] = ACTIONS(3952), + [anon_sym_SLASH_EQ] = ACTIONS(3952), + [anon_sym_PERCENT_EQ] = ACTIONS(3952), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3952), + [anon_sym_DASH_DASH] = ACTIONS(3952), + [anon_sym_BANG_BANG] = ACTIONS(3952), + [anon_sym_suspend] = ACTIONS(3950), + [anon_sym_sealed] = ACTIONS(3950), + [anon_sym_annotation] = ACTIONS(3950), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [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(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3952), + [sym__automatic_semicolon] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3952), + [sym_multiline_comment] = ACTIONS(3), + }, + [3949] = { + [sym_class_body] = STATE(3928), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(7107), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_EQ] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4325), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_PLUS_EQ] = ACTIONS(4327), + [anon_sym_DASH_EQ] = ACTIONS(4327), + [anon_sym_STAR_EQ] = ACTIONS(4327), + [anon_sym_SLASH_EQ] = ACTIONS(4327), + [anon_sym_PERCENT_EQ] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4325), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + }, + [3950] = { + [sym__alpha_identifier] = ACTIONS(5033), + [anon_sym_AT] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_DOT] = ACTIONS(5033), + [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_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_value] = 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), + }, + [3951] = { + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(4097), + [anon_sym_LBRACE] = ACTIONS(4099), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4097), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_PLUS_EQ] = ACTIONS(4099), + [anon_sym_DASH_EQ] = ACTIONS(4099), + [anon_sym_STAR_EQ] = ACTIONS(4099), + [anon_sym_SLASH_EQ] = ACTIONS(4099), + [anon_sym_PERCENT_EQ] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4097), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + }, + [3952] = { + [sym_function_body] = STATE(3123), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [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_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(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_null] = ACTIONS(4196), + [anon_sym_if] = ACTIONS(4196), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_when] = ACTIONS(4196), + [anon_sym_try] = ACTIONS(4196), + [anon_sym_throw] = ACTIONS(4196), + [anon_sym_return] = ACTIONS(4196), + [anon_sym_continue] = ACTIONS(4196), + [anon_sym_break] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4196), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4198), + [anon_sym_continue_AT] = ACTIONS(4198), + [anon_sym_break_AT] = ACTIONS(4198), + [anon_sym_this_AT] = ACTIONS(4198), + [anon_sym_super_AT] = ACTIONS(4198), + [sym_real_literal] = ACTIONS(4198), + [sym_integer_literal] = ACTIONS(4196), + [sym_hex_literal] = ACTIONS(4198), + [sym_bin_literal] = ACTIONS(4198), + [anon_sym_true] = ACTIONS(4196), + [anon_sym_false] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4198), + }, + [3953] = { + [sym__alpha_identifier] = ACTIONS(5145), + [anon_sym_AT] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_DOT] = ACTIONS(5145), + [anon_sym_as] = ACTIONS(5145), + [anon_sym_EQ] = ACTIONS(5145), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_where] = ACTIONS(5145), + [anon_sym_SEMI] = ACTIONS(5147), + [anon_sym_get] = ACTIONS(5145), + [anon_sym_set] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [sym_label] = ACTIONS(5147), + [anon_sym_in] = ACTIONS(5145), + [anon_sym_DOT_DOT] = ACTIONS(5147), + [anon_sym_QMARK_COLON] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_else] = ACTIONS(5145), + [anon_sym_COLON_COLON] = ACTIONS(5147), + [anon_sym_PLUS_EQ] = ACTIONS(5147), + [anon_sym_DASH_EQ] = ACTIONS(5147), + [anon_sym_STAR_EQ] = ACTIONS(5147), + [anon_sym_SLASH_EQ] = ACTIONS(5147), + [anon_sym_PERCENT_EQ] = ACTIONS(5147), + [anon_sym_BANG_EQ] = ACTIONS(5145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5147), + [anon_sym_EQ_EQ] = ACTIONS(5145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5147), + [anon_sym_LT_EQ] = ACTIONS(5147), + [anon_sym_GT_EQ] = ACTIONS(5147), + [anon_sym_BANGin] = ACTIONS(5147), + [anon_sym_is] = ACTIONS(5145), + [anon_sym_BANGis] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_PERCENT] = ACTIONS(5145), + [anon_sym_as_QMARK] = ACTIONS(5147), + [anon_sym_PLUS_PLUS] = ACTIONS(5147), + [anon_sym_DASH_DASH] = ACTIONS(5147), + [anon_sym_BANG_BANG] = ACTIONS(5147), + [anon_sym_suspend] = ACTIONS(5145), + [anon_sym_sealed] = ACTIONS(5145), + [anon_sym_annotation] = ACTIONS(5145), + [anon_sym_data] = ACTIONS(5145), + [anon_sym_inner] = ACTIONS(5145), + [anon_sym_value] = ACTIONS(5145), + [anon_sym_override] = ACTIONS(5145), + [anon_sym_lateinit] = ACTIONS(5145), + [anon_sym_public] = ACTIONS(5145), + [anon_sym_private] = ACTIONS(5145), + [anon_sym_internal] = ACTIONS(5145), + [anon_sym_protected] = ACTIONS(5145), + [anon_sym_tailrec] = ACTIONS(5145), + [anon_sym_operator] = ACTIONS(5145), + [anon_sym_infix] = ACTIONS(5145), + [anon_sym_inline] = ACTIONS(5145), + [anon_sym_external] = ACTIONS(5145), + [sym_property_modifier] = ACTIONS(5145), + [anon_sym_abstract] = ACTIONS(5145), + [anon_sym_final] = ACTIONS(5145), + [anon_sym_open] = ACTIONS(5145), + [anon_sym_vararg] = ACTIONS(5145), + [anon_sym_noinline] = ACTIONS(5145), + [anon_sym_crossinline] = ACTIONS(5145), + [anon_sym_expect] = ACTIONS(5145), + [anon_sym_actual] = ACTIONS(5145), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5147), + [sym__automatic_semicolon] = ACTIONS(5147), + [sym_safe_nav] = ACTIONS(5147), [sym_multiline_comment] = ACTIONS(3), }, - [4007] = { - [sym__alpha_identifier] = ACTIONS(5129), - [anon_sym_AT] = ACTIONS(5131), - [anon_sym_LBRACK] = ACTIONS(5131), - [anon_sym_DOT] = ACTIONS(5129), - [anon_sym_as] = ACTIONS(5129), - [anon_sym_EQ] = ACTIONS(5129), - [anon_sym_LBRACE] = ACTIONS(5131), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_LPAREN] = ACTIONS(5131), - [anon_sym_COMMA] = ACTIONS(5131), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_where] = ACTIONS(5129), - [anon_sym_SEMI] = ACTIONS(5131), - [anon_sym_get] = ACTIONS(5129), - [anon_sym_set] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [sym_label] = ACTIONS(5131), - [anon_sym_in] = ACTIONS(5129), - [anon_sym_DOT_DOT] = ACTIONS(5131), - [anon_sym_QMARK_COLON] = ACTIONS(5131), - [anon_sym_AMP_AMP] = ACTIONS(5131), - [anon_sym_PIPE_PIPE] = ACTIONS(5131), - [anon_sym_else] = ACTIONS(5129), - [anon_sym_COLON_COLON] = ACTIONS(5131), - [anon_sym_PLUS_EQ] = ACTIONS(5131), - [anon_sym_DASH_EQ] = ACTIONS(5131), - [anon_sym_STAR_EQ] = ACTIONS(5131), - [anon_sym_SLASH_EQ] = ACTIONS(5131), - [anon_sym_PERCENT_EQ] = ACTIONS(5131), - [anon_sym_BANG_EQ] = ACTIONS(5129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5131), - [anon_sym_EQ_EQ] = ACTIONS(5129), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5131), - [anon_sym_LT_EQ] = ACTIONS(5131), - [anon_sym_GT_EQ] = ACTIONS(5131), - [anon_sym_BANGin] = ACTIONS(5131), - [anon_sym_is] = ACTIONS(5129), - [anon_sym_BANGis] = ACTIONS(5131), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_PERCENT] = ACTIONS(5129), - [anon_sym_as_QMARK] = ACTIONS(5131), - [anon_sym_PLUS_PLUS] = ACTIONS(5131), - [anon_sym_DASH_DASH] = ACTIONS(5131), - [anon_sym_BANG_BANG] = ACTIONS(5131), - [anon_sym_suspend] = ACTIONS(5129), - [anon_sym_sealed] = ACTIONS(5129), - [anon_sym_annotation] = ACTIONS(5129), - [anon_sym_data] = ACTIONS(5129), - [anon_sym_inner] = ACTIONS(5129), - [anon_sym_value] = ACTIONS(5129), - [anon_sym_override] = ACTIONS(5129), - [anon_sym_lateinit] = ACTIONS(5129), - [anon_sym_public] = ACTIONS(5129), - [anon_sym_private] = ACTIONS(5129), - [anon_sym_internal] = ACTIONS(5129), - [anon_sym_protected] = ACTIONS(5129), - [anon_sym_tailrec] = ACTIONS(5129), - [anon_sym_operator] = ACTIONS(5129), - [anon_sym_infix] = ACTIONS(5129), - [anon_sym_inline] = ACTIONS(5129), - [anon_sym_external] = ACTIONS(5129), - [sym_property_modifier] = ACTIONS(5129), - [anon_sym_abstract] = ACTIONS(5129), - [anon_sym_final] = ACTIONS(5129), - [anon_sym_open] = ACTIONS(5129), - [anon_sym_vararg] = ACTIONS(5129), - [anon_sym_noinline] = ACTIONS(5129), - [anon_sym_crossinline] = ACTIONS(5129), - [anon_sym_expect] = ACTIONS(5129), - [anon_sym_actual] = ACTIONS(5129), + [3954] = { + [sym__alpha_identifier] = ACTIONS(4876), + [anon_sym_AT] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_DOT] = ACTIONS(4876), + [anon_sym_as] = ACTIONS(4876), + [anon_sym_EQ] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4878), + [anon_sym_RBRACE] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_COMMA] = ACTIONS(4878), + [anon_sym_LT] = ACTIONS(4876), + [anon_sym_GT] = ACTIONS(4876), + [anon_sym_where] = ACTIONS(4876), + [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym_get] = ACTIONS(4876), + [anon_sym_set] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [sym_label] = ACTIONS(4878), + [anon_sym_in] = ACTIONS(4876), + [anon_sym_DOT_DOT] = ACTIONS(4878), + [anon_sym_QMARK_COLON] = ACTIONS(4878), + [anon_sym_AMP_AMP] = ACTIONS(4878), + [anon_sym_PIPE_PIPE] = ACTIONS(4878), + [anon_sym_else] = ACTIONS(4876), + [anon_sym_COLON_COLON] = ACTIONS(4878), + [anon_sym_PLUS_EQ] = ACTIONS(4878), + [anon_sym_DASH_EQ] = ACTIONS(4878), + [anon_sym_STAR_EQ] = ACTIONS(4878), + [anon_sym_SLASH_EQ] = ACTIONS(4878), + [anon_sym_PERCENT_EQ] = ACTIONS(4878), + [anon_sym_BANG_EQ] = ACTIONS(4876), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4878), + [anon_sym_EQ_EQ] = ACTIONS(4876), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4878), + [anon_sym_LT_EQ] = ACTIONS(4878), + [anon_sym_GT_EQ] = ACTIONS(4878), + [anon_sym_BANGin] = ACTIONS(4878), + [anon_sym_is] = ACTIONS(4876), + [anon_sym_BANGis] = ACTIONS(4878), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_SLASH] = ACTIONS(4876), + [anon_sym_PERCENT] = ACTIONS(4876), + [anon_sym_as_QMARK] = ACTIONS(4878), + [anon_sym_PLUS_PLUS] = ACTIONS(4878), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_BANG_BANG] = ACTIONS(4878), + [anon_sym_suspend] = ACTIONS(4876), + [anon_sym_sealed] = ACTIONS(4876), + [anon_sym_annotation] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4876), + [anon_sym_inner] = ACTIONS(4876), + [anon_sym_value] = ACTIONS(4876), + [anon_sym_override] = ACTIONS(4876), + [anon_sym_lateinit] = ACTIONS(4876), + [anon_sym_public] = ACTIONS(4876), + [anon_sym_private] = ACTIONS(4876), + [anon_sym_internal] = ACTIONS(4876), + [anon_sym_protected] = ACTIONS(4876), + [anon_sym_tailrec] = ACTIONS(4876), + [anon_sym_operator] = ACTIONS(4876), + [anon_sym_infix] = ACTIONS(4876), + [anon_sym_inline] = ACTIONS(4876), + [anon_sym_external] = ACTIONS(4876), + [sym_property_modifier] = ACTIONS(4876), + [anon_sym_abstract] = ACTIONS(4876), + [anon_sym_final] = ACTIONS(4876), + [anon_sym_open] = ACTIONS(4876), + [anon_sym_vararg] = ACTIONS(4876), + [anon_sym_noinline] = ACTIONS(4876), + [anon_sym_crossinline] = ACTIONS(4876), + [anon_sym_expect] = ACTIONS(4876), + [anon_sym_actual] = ACTIONS(4876), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4878), + [sym__automatic_semicolon] = ACTIONS(4878), + [sym_safe_nav] = ACTIONS(4878), + [sym_multiline_comment] = ACTIONS(3), + }, + [3955] = { + [sym__alpha_identifier] = ACTIONS(4832), + [anon_sym_AT] = ACTIONS(4834), + [anon_sym_LBRACK] = ACTIONS(4834), + [anon_sym_DOT] = ACTIONS(4832), + [anon_sym_as] = ACTIONS(4832), + [anon_sym_EQ] = ACTIONS(4832), + [anon_sym_LBRACE] = ACTIONS(4834), + [anon_sym_RBRACE] = ACTIONS(4834), + [anon_sym_LPAREN] = ACTIONS(4834), + [anon_sym_COMMA] = ACTIONS(4834), + [anon_sym_LT] = ACTIONS(4832), + [anon_sym_GT] = ACTIONS(4832), + [anon_sym_where] = ACTIONS(4832), + [anon_sym_SEMI] = ACTIONS(4834), + [anon_sym_get] = ACTIONS(4832), + [anon_sym_set] = ACTIONS(4832), + [anon_sym_STAR] = ACTIONS(4832), + [sym_label] = ACTIONS(4834), + [anon_sym_in] = ACTIONS(4832), + [anon_sym_DOT_DOT] = ACTIONS(4834), + [anon_sym_QMARK_COLON] = ACTIONS(4834), + [anon_sym_AMP_AMP] = ACTIONS(4834), + [anon_sym_PIPE_PIPE] = ACTIONS(4834), + [anon_sym_else] = ACTIONS(4832), + [anon_sym_COLON_COLON] = ACTIONS(4834), + [anon_sym_PLUS_EQ] = ACTIONS(4834), + [anon_sym_DASH_EQ] = ACTIONS(4834), + [anon_sym_STAR_EQ] = ACTIONS(4834), + [anon_sym_SLASH_EQ] = ACTIONS(4834), + [anon_sym_PERCENT_EQ] = ACTIONS(4834), + [anon_sym_BANG_EQ] = ACTIONS(4832), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4834), + [anon_sym_EQ_EQ] = ACTIONS(4832), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4834), + [anon_sym_LT_EQ] = ACTIONS(4834), + [anon_sym_GT_EQ] = ACTIONS(4834), + [anon_sym_BANGin] = ACTIONS(4834), + [anon_sym_is] = ACTIONS(4832), + [anon_sym_BANGis] = ACTIONS(4834), + [anon_sym_PLUS] = ACTIONS(4832), + [anon_sym_DASH] = ACTIONS(4832), + [anon_sym_SLASH] = ACTIONS(4832), + [anon_sym_PERCENT] = ACTIONS(4832), + [anon_sym_as_QMARK] = ACTIONS(4834), + [anon_sym_PLUS_PLUS] = ACTIONS(4834), + [anon_sym_DASH_DASH] = ACTIONS(4834), + [anon_sym_BANG_BANG] = ACTIONS(4834), + [anon_sym_suspend] = ACTIONS(4832), + [anon_sym_sealed] = ACTIONS(4832), + [anon_sym_annotation] = ACTIONS(4832), + [anon_sym_data] = ACTIONS(4832), + [anon_sym_inner] = ACTIONS(4832), + [anon_sym_value] = ACTIONS(4832), + [anon_sym_override] = ACTIONS(4832), + [anon_sym_lateinit] = ACTIONS(4832), + [anon_sym_public] = ACTIONS(4832), + [anon_sym_private] = ACTIONS(4832), + [anon_sym_internal] = ACTIONS(4832), + [anon_sym_protected] = ACTIONS(4832), + [anon_sym_tailrec] = ACTIONS(4832), + [anon_sym_operator] = ACTIONS(4832), + [anon_sym_infix] = ACTIONS(4832), + [anon_sym_inline] = ACTIONS(4832), + [anon_sym_external] = ACTIONS(4832), + [sym_property_modifier] = ACTIONS(4832), + [anon_sym_abstract] = ACTIONS(4832), + [anon_sym_final] = ACTIONS(4832), + [anon_sym_open] = ACTIONS(4832), + [anon_sym_vararg] = ACTIONS(4832), + [anon_sym_noinline] = ACTIONS(4832), + [anon_sym_crossinline] = ACTIONS(4832), + [anon_sym_expect] = ACTIONS(4832), + [anon_sym_actual] = ACTIONS(4832), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4834), + [sym__automatic_semicolon] = ACTIONS(4834), + [sym_safe_nav] = ACTIONS(4834), + [sym_multiline_comment] = ACTIONS(3), + }, + [3956] = { + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(4443), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4443), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_PLUS_EQ] = ACTIONS(4445), + [anon_sym_DASH_EQ] = ACTIONS(4445), + [anon_sym_STAR_EQ] = ACTIONS(4445), + [anon_sym_SLASH_EQ] = ACTIONS(4445), + [anon_sym_PERCENT_EQ] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4443), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + }, + [3957] = { + [sym__alpha_identifier] = ACTIONS(5007), + [anon_sym_AT] = ACTIONS(5009), + [anon_sym_LBRACK] = ACTIONS(5009), + [anon_sym_DOT] = ACTIONS(5007), + [anon_sym_as] = ACTIONS(5007), + [anon_sym_EQ] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5009), + [anon_sym_RBRACE] = ACTIONS(5009), + [anon_sym_LPAREN] = ACTIONS(5009), + [anon_sym_COMMA] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_where] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(5009), + [anon_sym_get] = ACTIONS(5007), + [anon_sym_set] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [sym_label] = ACTIONS(5009), + [anon_sym_in] = ACTIONS(5007), + [anon_sym_DOT_DOT] = ACTIONS(5009), + [anon_sym_QMARK_COLON] = ACTIONS(5009), + [anon_sym_AMP_AMP] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5009), + [anon_sym_else] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5009), + [anon_sym_PLUS_EQ] = ACTIONS(5009), + [anon_sym_DASH_EQ] = ACTIONS(5009), + [anon_sym_STAR_EQ] = ACTIONS(5009), + [anon_sym_SLASH_EQ] = ACTIONS(5009), + [anon_sym_PERCENT_EQ] = ACTIONS(5009), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5009), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5009), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5009), + [anon_sym_BANGin] = ACTIONS(5009), + [anon_sym_is] = ACTIONS(5007), + [anon_sym_BANGis] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_as_QMARK] = ACTIONS(5009), + [anon_sym_PLUS_PLUS] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5009), + [anon_sym_BANG_BANG] = ACTIONS(5009), + [anon_sym_suspend] = ACTIONS(5007), + [anon_sym_sealed] = ACTIONS(5007), + [anon_sym_annotation] = ACTIONS(5007), + [anon_sym_data] = ACTIONS(5007), + [anon_sym_inner] = ACTIONS(5007), + [anon_sym_value] = ACTIONS(5007), + [anon_sym_override] = ACTIONS(5007), + [anon_sym_lateinit] = ACTIONS(5007), + [anon_sym_public] = ACTIONS(5007), + [anon_sym_private] = ACTIONS(5007), + [anon_sym_internal] = ACTIONS(5007), + [anon_sym_protected] = ACTIONS(5007), + [anon_sym_tailrec] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5007), + [anon_sym_infix] = ACTIONS(5007), + [anon_sym_inline] = ACTIONS(5007), + [anon_sym_external] = ACTIONS(5007), + [sym_property_modifier] = ACTIONS(5007), + [anon_sym_abstract] = ACTIONS(5007), + [anon_sym_final] = ACTIONS(5007), + [anon_sym_open] = ACTIONS(5007), + [anon_sym_vararg] = ACTIONS(5007), + [anon_sym_noinline] = ACTIONS(5007), + [anon_sym_crossinline] = ACTIONS(5007), + [anon_sym_expect] = ACTIONS(5007), + [anon_sym_actual] = ACTIONS(5007), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5131), - [sym__automatic_semicolon] = ACTIONS(5131), - [sym_safe_nav] = ACTIONS(5131), + [sym__backtick_identifier] = ACTIONS(5009), + [sym__automatic_semicolon] = ACTIONS(5009), + [sym_safe_nav] = ACTIONS(5009), [sym_multiline_comment] = ACTIONS(3), }, - [4008] = { - [sym__alpha_identifier] = ACTIONS(4419), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_as] = ACTIONS(4419), - [anon_sym_EQ] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_where] = ACTIONS(4419), - [anon_sym_SEMI] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4419), - [anon_sym_set] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [sym_label] = ACTIONS(4421), - [anon_sym_in] = ACTIONS(4419), - [anon_sym_DOT_DOT] = ACTIONS(4421), - [anon_sym_QMARK_COLON] = ACTIONS(4421), - [anon_sym_AMP_AMP] = ACTIONS(4421), - [anon_sym_PIPE_PIPE] = ACTIONS(4421), - [anon_sym_else] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_PLUS_EQ] = ACTIONS(4922), - [anon_sym_DASH_EQ] = ACTIONS(4922), - [anon_sym_STAR_EQ] = ACTIONS(4922), - [anon_sym_SLASH_EQ] = ACTIONS(4922), - [anon_sym_PERCENT_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4419), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4421), - [anon_sym_EQ_EQ] = ACTIONS(4419), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4421), - [anon_sym_LT_EQ] = ACTIONS(4421), - [anon_sym_GT_EQ] = ACTIONS(4421), - [anon_sym_BANGin] = ACTIONS(4421), - [anon_sym_is] = ACTIONS(4419), - [anon_sym_BANGis] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_PERCENT] = ACTIONS(4419), - [anon_sym_as_QMARK] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [anon_sym_BANG_BANG] = ACTIONS(4421), - [anon_sym_suspend] = ACTIONS(4419), - [anon_sym_sealed] = ACTIONS(4419), - [anon_sym_annotation] = ACTIONS(4419), - [anon_sym_data] = ACTIONS(4419), - [anon_sym_inner] = ACTIONS(4419), - [anon_sym_value] = ACTIONS(4419), - [anon_sym_override] = ACTIONS(4419), - [anon_sym_lateinit] = ACTIONS(4419), - [anon_sym_public] = ACTIONS(4419), - [anon_sym_private] = ACTIONS(4419), - [anon_sym_internal] = ACTIONS(4419), - [anon_sym_protected] = ACTIONS(4419), - [anon_sym_tailrec] = ACTIONS(4419), - [anon_sym_operator] = ACTIONS(4419), - [anon_sym_infix] = ACTIONS(4419), - [anon_sym_inline] = ACTIONS(4419), - [anon_sym_external] = ACTIONS(4419), - [sym_property_modifier] = ACTIONS(4419), - [anon_sym_abstract] = ACTIONS(4419), - [anon_sym_final] = ACTIONS(4419), - [anon_sym_open] = ACTIONS(4419), - [anon_sym_vararg] = ACTIONS(4419), - [anon_sym_noinline] = ACTIONS(4419), - [anon_sym_crossinline] = ACTIONS(4419), - [anon_sym_expect] = ACTIONS(4419), - [anon_sym_actual] = ACTIONS(4419), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4421), - [sym__automatic_semicolon] = ACTIONS(4421), - [sym_safe_nav] = ACTIONS(4421), + [3958] = { + [sym__alpha_identifier] = ACTIONS(5003), + [anon_sym_AT] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_DOT] = ACTIONS(5003), + [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_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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, - [4009] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7189), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4240), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [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(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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), + [3959] = { + [sym__alpha_identifier] = ACTIONS(7109), + [anon_sym_AT] = ACTIONS(7111), + [anon_sym_LBRACK] = ACTIONS(7111), + [anon_sym_typealias] = ACTIONS(7109), + [anon_sym_class] = ACTIONS(7109), + [anon_sym_interface] = ACTIONS(7109), + [anon_sym_enum] = ACTIONS(7109), + [anon_sym_LBRACE] = ACTIONS(7111), + [anon_sym_LPAREN] = ACTIONS(7111), + [anon_sym_val] = ACTIONS(7109), + [anon_sym_var] = ACTIONS(7109), + [anon_sym_object] = ACTIONS(7109), + [anon_sym_fun] = ACTIONS(7109), + [anon_sym_get] = ACTIONS(7109), + [anon_sym_set] = ACTIONS(7109), + [anon_sym_this] = ACTIONS(7109), + [anon_sym_super] = ACTIONS(7109), + [anon_sym_STAR] = ACTIONS(7111), + [sym_label] = ACTIONS(7109), + [anon_sym_for] = ACTIONS(7109), + [anon_sym_while] = ACTIONS(7109), + [anon_sym_do] = ACTIONS(7109), + [anon_sym_null] = ACTIONS(7109), + [anon_sym_if] = ACTIONS(7109), + [anon_sym_when] = ACTIONS(7109), + [anon_sym_try] = ACTIONS(7109), + [anon_sym_throw] = ACTIONS(7109), + [anon_sym_return] = ACTIONS(7109), + [anon_sym_continue] = ACTIONS(7109), + [anon_sym_break] = ACTIONS(7109), + [anon_sym_COLON_COLON] = ACTIONS(7111), + [anon_sym_PLUS] = ACTIONS(7109), + [anon_sym_DASH] = ACTIONS(7109), + [anon_sym_PLUS_PLUS] = ACTIONS(7111), + [anon_sym_DASH_DASH] = ACTIONS(7111), + [anon_sym_BANG] = ACTIONS(7111), + [anon_sym_suspend] = ACTIONS(7109), + [anon_sym_sealed] = ACTIONS(7109), + [anon_sym_annotation] = ACTIONS(7109), + [anon_sym_data] = ACTIONS(7109), + [anon_sym_inner] = ACTIONS(7109), + [anon_sym_value] = ACTIONS(7109), + [anon_sym_override] = ACTIONS(7109), + [anon_sym_lateinit] = ACTIONS(7109), + [anon_sym_public] = ACTIONS(7109), + [anon_sym_private] = ACTIONS(7109), + [anon_sym_internal] = ACTIONS(7109), + [anon_sym_protected] = ACTIONS(7109), + [anon_sym_tailrec] = ACTIONS(7109), + [anon_sym_operator] = ACTIONS(7109), + [anon_sym_infix] = ACTIONS(7109), + [anon_sym_inline] = ACTIONS(7109), + [anon_sym_external] = ACTIONS(7109), + [sym_property_modifier] = ACTIONS(7109), + [anon_sym_abstract] = ACTIONS(7109), + [anon_sym_final] = ACTIONS(7109), + [anon_sym_open] = ACTIONS(7109), + [anon_sym_vararg] = ACTIONS(7109), + [anon_sym_noinline] = ACTIONS(7109), + [anon_sym_crossinline] = ACTIONS(7109), + [anon_sym_expect] = ACTIONS(7109), + [anon_sym_actual] = ACTIONS(7109), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7111), + [anon_sym_continue_AT] = ACTIONS(7111), + [anon_sym_break_AT] = ACTIONS(7111), + [anon_sym_this_AT] = ACTIONS(7111), + [anon_sym_super_AT] = ACTIONS(7111), + [sym_real_literal] = ACTIONS(7111), + [sym_integer_literal] = ACTIONS(7109), + [sym_hex_literal] = ACTIONS(7111), + [sym_bin_literal] = ACTIONS(7111), + [anon_sym_true] = ACTIONS(7109), + [anon_sym_false] = ACTIONS(7109), + [anon_sym_SQUOTE] = ACTIONS(7111), + [sym__backtick_identifier] = ACTIONS(7111), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7111), + }, + [3960] = { + [sym_function_body] = STATE(3098), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_object] = ACTIONS(4443), + [anon_sym_fun] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_this] = ACTIONS(4443), + [anon_sym_super] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4443), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(4443), + [anon_sym_if] = ACTIONS(4443), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_when] = ACTIONS(4443), + [anon_sym_try] = ACTIONS(4443), + [anon_sym_throw] = ACTIONS(4443), + [anon_sym_return] = ACTIONS(4443), + [anon_sym_continue] = ACTIONS(4443), + [anon_sym_break] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG] = ACTIONS(4443), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4445), + [anon_sym_continue_AT] = ACTIONS(4445), + [anon_sym_break_AT] = ACTIONS(4445), + [anon_sym_this_AT] = ACTIONS(4445), + [anon_sym_super_AT] = ACTIONS(4445), + [sym_real_literal] = ACTIONS(4445), + [sym_integer_literal] = ACTIONS(4443), + [sym_hex_literal] = ACTIONS(4445), + [sym_bin_literal] = ACTIONS(4445), + [anon_sym_true] = ACTIONS(4443), + [anon_sym_false] = ACTIONS(4443), + [anon_sym_SQUOTE] = ACTIONS(4445), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4445), + }, + [3961] = { + [sym_function_body] = STATE(3108), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_object] = ACTIONS(4260), + [anon_sym_fun] = ACTIONS(4260), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_this] = ACTIONS(4260), + [anon_sym_super] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4260), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_null] = ACTIONS(4260), + [anon_sym_if] = ACTIONS(4260), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_when] = ACTIONS(4260), + [anon_sym_try] = ACTIONS(4260), + [anon_sym_throw] = ACTIONS(4260), + [anon_sym_return] = ACTIONS(4260), + [anon_sym_continue] = ACTIONS(4260), + [anon_sym_break] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG] = ACTIONS(4260), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4262), + [anon_sym_continue_AT] = ACTIONS(4262), + [anon_sym_break_AT] = ACTIONS(4262), + [anon_sym_this_AT] = ACTIONS(4262), + [anon_sym_super_AT] = ACTIONS(4262), + [sym_real_literal] = ACTIONS(4262), + [sym_integer_literal] = ACTIONS(4260), + [sym_hex_literal] = ACTIONS(4262), + [sym_bin_literal] = ACTIONS(4262), + [anon_sym_true] = ACTIONS(4260), + [anon_sym_false] = ACTIONS(4260), + [anon_sym_SQUOTE] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4262), + }, + [3962] = { + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(4451), + [anon_sym_LBRACE] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_PLUS_EQ] = ACTIONS(4453), + [anon_sym_DASH_EQ] = ACTIONS(4453), + [anon_sym_STAR_EQ] = ACTIONS(4453), + [anon_sym_SLASH_EQ] = ACTIONS(4453), + [anon_sym_PERCENT_EQ] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4451), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [3963] = { + [sym_function_body] = STATE(3120), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_object] = ACTIONS(4230), + [anon_sym_fun] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_this] = ACTIONS(4230), + [anon_sym_super] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4230), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_null] = ACTIONS(4230), + [anon_sym_if] = ACTIONS(4230), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_when] = ACTIONS(4230), + [anon_sym_try] = ACTIONS(4230), + [anon_sym_throw] = ACTIONS(4230), + [anon_sym_return] = ACTIONS(4230), + [anon_sym_continue] = ACTIONS(4230), + [anon_sym_break] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG] = ACTIONS(4230), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4232), + [anon_sym_continue_AT] = ACTIONS(4232), + [anon_sym_break_AT] = ACTIONS(4232), + [anon_sym_this_AT] = ACTIONS(4232), + [anon_sym_super_AT] = ACTIONS(4232), + [sym_real_literal] = ACTIONS(4232), + [sym_integer_literal] = ACTIONS(4230), + [sym_hex_literal] = ACTIONS(4232), + [sym_bin_literal] = ACTIONS(4232), + [anon_sym_true] = ACTIONS(4230), + [anon_sym_false] = ACTIONS(4230), + [anon_sym_SQUOTE] = ACTIONS(4232), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4232), + }, + [3964] = { + [sym__alpha_identifier] = ACTIONS(5117), + [anon_sym_AT] = ACTIONS(5119), + [anon_sym_LBRACK] = ACTIONS(5119), + [anon_sym_DOT] = ACTIONS(5117), + [anon_sym_as] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5119), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5117), + [anon_sym_GT] = ACTIONS(5117), + [anon_sym_where] = ACTIONS(5117), + [anon_sym_SEMI] = ACTIONS(5119), + [anon_sym_get] = ACTIONS(5117), + [anon_sym_set] = ACTIONS(5117), + [anon_sym_STAR] = ACTIONS(5117), + [sym_label] = ACTIONS(5119), + [anon_sym_in] = ACTIONS(5117), + [anon_sym_DOT_DOT] = ACTIONS(5119), + [anon_sym_QMARK_COLON] = ACTIONS(5119), + [anon_sym_AMP_AMP] = ACTIONS(5119), + [anon_sym_PIPE_PIPE] = ACTIONS(5119), + [anon_sym_else] = ACTIONS(5117), + [anon_sym_COLON_COLON] = ACTIONS(5119), + [anon_sym_PLUS_EQ] = ACTIONS(5119), + [anon_sym_DASH_EQ] = ACTIONS(5119), + [anon_sym_STAR_EQ] = ACTIONS(5119), + [anon_sym_SLASH_EQ] = ACTIONS(5119), + [anon_sym_PERCENT_EQ] = ACTIONS(5119), + [anon_sym_BANG_EQ] = ACTIONS(5117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5119), + [anon_sym_EQ_EQ] = ACTIONS(5117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5119), + [anon_sym_LT_EQ] = ACTIONS(5119), + [anon_sym_GT_EQ] = ACTIONS(5119), + [anon_sym_BANGin] = ACTIONS(5119), + [anon_sym_is] = ACTIONS(5117), + [anon_sym_BANGis] = ACTIONS(5119), + [anon_sym_PLUS] = ACTIONS(5117), + [anon_sym_DASH] = ACTIONS(5117), + [anon_sym_SLASH] = ACTIONS(5117), + [anon_sym_PERCENT] = ACTIONS(5117), + [anon_sym_as_QMARK] = ACTIONS(5119), + [anon_sym_PLUS_PLUS] = ACTIONS(5119), + [anon_sym_DASH_DASH] = ACTIONS(5119), + [anon_sym_BANG_BANG] = ACTIONS(5119), + [anon_sym_suspend] = ACTIONS(5117), + [anon_sym_sealed] = ACTIONS(5117), + [anon_sym_annotation] = ACTIONS(5117), + [anon_sym_data] = ACTIONS(5117), + [anon_sym_inner] = ACTIONS(5117), + [anon_sym_value] = ACTIONS(5117), + [anon_sym_override] = ACTIONS(5117), + [anon_sym_lateinit] = ACTIONS(5117), + [anon_sym_public] = ACTIONS(5117), + [anon_sym_private] = ACTIONS(5117), + [anon_sym_internal] = ACTIONS(5117), + [anon_sym_protected] = ACTIONS(5117), + [anon_sym_tailrec] = ACTIONS(5117), + [anon_sym_operator] = ACTIONS(5117), + [anon_sym_infix] = ACTIONS(5117), + [anon_sym_inline] = ACTIONS(5117), + [anon_sym_external] = ACTIONS(5117), + [sym_property_modifier] = ACTIONS(5117), + [anon_sym_abstract] = ACTIONS(5117), + [anon_sym_final] = ACTIONS(5117), + [anon_sym_open] = ACTIONS(5117), + [anon_sym_vararg] = ACTIONS(5117), + [anon_sym_noinline] = ACTIONS(5117), + [anon_sym_crossinline] = ACTIONS(5117), + [anon_sym_expect] = ACTIONS(5117), + [anon_sym_actual] = ACTIONS(5117), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(5119), + [sym__automatic_semicolon] = ACTIONS(5119), + [sym_safe_nav] = ACTIONS(5119), [sym_multiline_comment] = ACTIONS(3), }, - [4010] = { - [sym_function_body] = STATE(3267), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4158), - [anon_sym_super_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), - }, - [4011] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1525), - [sym__comparison_operator] = STATE(1527), - [sym__in_operator] = STATE(1529), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1530), - [sym__multiplicative_operator] = STATE(1533), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1535), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7139), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7141), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7143), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(7145), - [anon_sym_QMARK_COLON] = ACTIONS(7147), - [anon_sym_AMP_AMP] = ACTIONS(7149), - [anon_sym_PIPE_PIPE] = ACTIONS(7151), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [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(7153), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7155), - [anon_sym_EQ_EQ] = ACTIONS(7153), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7155), - [anon_sym_LT_EQ] = ACTIONS(7157), - [anon_sym_GT_EQ] = ACTIONS(7157), - [anon_sym_BANGin] = ACTIONS(7159), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7161), - [anon_sym_DASH] = ACTIONS(7161), - [anon_sym_SLASH] = ACTIONS(7141), - [anon_sym_PERCENT] = ACTIONS(7141), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [3965] = { + [sym__alpha_identifier] = ACTIONS(4718), + [anon_sym_AT] = ACTIONS(4720), + [anon_sym_LBRACK] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4718), + [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_SEMI] = ACTIONS(4720), + [anon_sym_get] = ACTIONS(4718), + [anon_sym_set] = ACTIONS(4718), + [anon_sym_STAR] = ACTIONS(4718), + [sym_label] = ACTIONS(4720), + [anon_sym_in] = ACTIONS(4718), + [anon_sym_DOT_DOT] = ACTIONS(4720), + [anon_sym_QMARK_COLON] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_else] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4720), + [anon_sym_PLUS_EQ] = ACTIONS(4720), + [anon_sym_DASH_EQ] = ACTIONS(4720), + [anon_sym_STAR_EQ] = ACTIONS(4720), + [anon_sym_SLASH_EQ] = ACTIONS(4720), + [anon_sym_PERCENT_EQ] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4718), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4718), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4720), + [anon_sym_LT_EQ] = ACTIONS(4720), + [anon_sym_GT_EQ] = ACTIONS(4720), + [anon_sym_BANGin] = ACTIONS(4720), + [anon_sym_is] = ACTIONS(4718), + [anon_sym_BANGis] = ACTIONS(4720), + [anon_sym_PLUS] = ACTIONS(4718), + [anon_sym_DASH] = ACTIONS(4718), + [anon_sym_SLASH] = ACTIONS(4718), + [anon_sym_PERCENT] = ACTIONS(4718), + [anon_sym_as_QMARK] = ACTIONS(4720), + [anon_sym_PLUS_PLUS] = ACTIONS(4720), + [anon_sym_DASH_DASH] = ACTIONS(4720), + [anon_sym_BANG_BANG] = ACTIONS(4720), + [anon_sym_suspend] = ACTIONS(4718), + [anon_sym_sealed] = ACTIONS(4718), + [anon_sym_annotation] = ACTIONS(4718), + [anon_sym_data] = ACTIONS(4718), + [anon_sym_inner] = ACTIONS(4718), + [anon_sym_value] = ACTIONS(4718), + [anon_sym_override] = ACTIONS(4718), + [anon_sym_lateinit] = ACTIONS(4718), + [anon_sym_public] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4718), + [anon_sym_internal] = ACTIONS(4718), + [anon_sym_protected] = ACTIONS(4718), + [anon_sym_tailrec] = ACTIONS(4718), + [anon_sym_operator] = ACTIONS(4718), + [anon_sym_infix] = ACTIONS(4718), + [anon_sym_inline] = ACTIONS(4718), + [anon_sym_external] = ACTIONS(4718), + [sym_property_modifier] = ACTIONS(4718), + [anon_sym_abstract] = ACTIONS(4718), + [anon_sym_final] = ACTIONS(4718), + [anon_sym_open] = ACTIONS(4718), + [anon_sym_vararg] = ACTIONS(4718), + [anon_sym_noinline] = ACTIONS(4718), + [anon_sym_crossinline] = ACTIONS(4718), + [anon_sym_expect] = ACTIONS(4718), + [anon_sym_actual] = ACTIONS(4718), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4720), + [sym__automatic_semicolon] = ACTIONS(4720), + [sym_safe_nav] = ACTIONS(4720), [sym_multiline_comment] = ACTIONS(3), }, - [4012] = { - [sym_function_body] = STATE(3231), - [sym__block] = STATE(3072), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(6918), - [anon_sym_LBRACE] = ACTIONS(6427), - [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_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_value] = 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), - [anon_sym_this_AT] = ACTIONS(4152), - [anon_sym_super_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), - }, - [4013] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7191), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [sym_label] = ACTIONS(4226), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), + [3966] = { + [sym__alpha_identifier] = ACTIONS(1682), + [anon_sym_AT] = ACTIONS(1684), + [anon_sym_LBRACK] = ACTIONS(1684), + [anon_sym_DOT] = ACTIONS(1682), + [anon_sym_as] = ACTIONS(1682), + [anon_sym_EQ] = ACTIONS(1682), + [anon_sym_LBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_LPAREN] = ACTIONS(1684), + [anon_sym_COMMA] = ACTIONS(1684), + [anon_sym_LT] = ACTIONS(1682), + [anon_sym_GT] = ACTIONS(1682), + [anon_sym_where] = ACTIONS(1682), + [anon_sym_SEMI] = ACTIONS(1684), + [anon_sym_get] = ACTIONS(1682), + [anon_sym_set] = ACTIONS(1682), + [anon_sym_STAR] = ACTIONS(1682), + [sym_label] = ACTIONS(1684), + [anon_sym_in] = ACTIONS(1682), + [anon_sym_DOT_DOT] = ACTIONS(1684), + [anon_sym_QMARK_COLON] = ACTIONS(1684), + [anon_sym_AMP_AMP] = ACTIONS(1684), + [anon_sym_PIPE_PIPE] = ACTIONS(1684), + [anon_sym_else] = ACTIONS(1682), + [anon_sym_COLON_COLON] = ACTIONS(1684), + [anon_sym_PLUS_EQ] = ACTIONS(1684), + [anon_sym_DASH_EQ] = ACTIONS(1684), + [anon_sym_STAR_EQ] = ACTIONS(1684), + [anon_sym_SLASH_EQ] = ACTIONS(1684), + [anon_sym_PERCENT_EQ] = ACTIONS(1684), + [anon_sym_BANG_EQ] = ACTIONS(1682), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1684), + [anon_sym_EQ_EQ] = ACTIONS(1682), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1684), + [anon_sym_LT_EQ] = ACTIONS(1684), + [anon_sym_GT_EQ] = ACTIONS(1684), + [anon_sym_BANGin] = ACTIONS(1684), + [anon_sym_is] = ACTIONS(1682), + [anon_sym_BANGis] = ACTIONS(1684), + [anon_sym_PLUS] = ACTIONS(1682), + [anon_sym_DASH] = ACTIONS(1682), + [anon_sym_SLASH] = ACTIONS(1682), + [anon_sym_PERCENT] = ACTIONS(1682), + [anon_sym_as_QMARK] = ACTIONS(1684), + [anon_sym_PLUS_PLUS] = ACTIONS(1684), + [anon_sym_DASH_DASH] = ACTIONS(1684), + [anon_sym_BANG_BANG] = ACTIONS(1684), + [anon_sym_suspend] = ACTIONS(1682), + [anon_sym_sealed] = ACTIONS(1682), + [anon_sym_annotation] = ACTIONS(1682), + [anon_sym_data] = ACTIONS(1682), + [anon_sym_inner] = ACTIONS(1682), + [anon_sym_value] = ACTIONS(1682), + [anon_sym_override] = ACTIONS(1682), + [anon_sym_lateinit] = ACTIONS(1682), + [anon_sym_public] = ACTIONS(1682), + [anon_sym_private] = ACTIONS(1682), + [anon_sym_internal] = ACTIONS(1682), + [anon_sym_protected] = ACTIONS(1682), + [anon_sym_tailrec] = ACTIONS(1682), + [anon_sym_operator] = ACTIONS(1682), + [anon_sym_infix] = ACTIONS(1682), + [anon_sym_inline] = ACTIONS(1682), + [anon_sym_external] = ACTIONS(1682), + [sym_property_modifier] = ACTIONS(1682), + [anon_sym_abstract] = ACTIONS(1682), + [anon_sym_final] = ACTIONS(1682), + [anon_sym_open] = ACTIONS(1682), + [anon_sym_vararg] = ACTIONS(1682), + [anon_sym_noinline] = ACTIONS(1682), + [anon_sym_crossinline] = ACTIONS(1682), + [anon_sym_expect] = ACTIONS(1682), + [anon_sym_actual] = ACTIONS(1682), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1684), + [sym__automatic_semicolon] = ACTIONS(1684), + [sym_safe_nav] = ACTIONS(1684), [sym_multiline_comment] = ACTIONS(3), }, - [4014] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(7193), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [sym_label] = ACTIONS(4846), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), + [3967] = { + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_EQ] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4347), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_PLUS_EQ] = ACTIONS(4349), + [anon_sym_DASH_EQ] = ACTIONS(4349), + [anon_sym_STAR_EQ] = ACTIONS(4349), + [anon_sym_SLASH_EQ] = ACTIONS(4349), + [anon_sym_PERCENT_EQ] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4347), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), [sym_multiline_comment] = ACTIONS(3), }, - [4015] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(3984), - [sym__alpha_identifier] = ACTIONS(4621), - [anon_sym_AT] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(7183), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4621), - [anon_sym_where] = ACTIONS(4621), - [anon_sym_object] = ACTIONS(4621), - [anon_sym_fun] = ACTIONS(4621), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_get] = ACTIONS(4621), - [anon_sym_set] = ACTIONS(4621), - [anon_sym_this] = ACTIONS(4621), - [anon_sym_super] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4623), - [sym_label] = ACTIONS(4621), - [anon_sym_in] = ACTIONS(4621), - [anon_sym_DOT_DOT] = ACTIONS(4623), - [anon_sym_QMARK_COLON] = ACTIONS(4623), - [anon_sym_AMP_AMP] = ACTIONS(4623), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_null] = ACTIONS(4621), - [anon_sym_if] = ACTIONS(4621), - [anon_sym_else] = ACTIONS(4621), - [anon_sym_when] = ACTIONS(4621), - [anon_sym_try] = ACTIONS(4621), - [anon_sym_throw] = ACTIONS(4621), - [anon_sym_return] = ACTIONS(4621), - [anon_sym_continue] = ACTIONS(4621), - [anon_sym_break] = ACTIONS(4621), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_BANG_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), - [anon_sym_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4623), - [anon_sym_is] = ACTIONS(4621), - [anon_sym_BANGis] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4621), - [anon_sym_PERCENT] = ACTIONS(4623), - [anon_sym_as_QMARK] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4621), - [anon_sym_BANG_BANG] = ACTIONS(4623), - [anon_sym_data] = ACTIONS(4621), - [anon_sym_inner] = ACTIONS(4621), - [anon_sym_value] = ACTIONS(4621), - [anon_sym_expect] = ACTIONS(4621), - [anon_sym_actual] = ACTIONS(4621), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4623), - [anon_sym_continue_AT] = ACTIONS(4623), - [anon_sym_break_AT] = ACTIONS(4623), - [anon_sym_this_AT] = ACTIONS(4623), - [anon_sym_super_AT] = ACTIONS(4623), - [sym_real_literal] = ACTIONS(4623), - [sym_integer_literal] = ACTIONS(4621), - [sym_hex_literal] = ACTIONS(4623), - [sym_bin_literal] = ACTIONS(4623), - [anon_sym_true] = ACTIONS(4621), - [anon_sym_false] = ACTIONS(4621), - [anon_sym_SQUOTE] = ACTIONS(4623), - [sym__backtick_identifier] = ACTIONS(4623), - [sym__automatic_semicolon] = ACTIONS(4623), - [sym_safe_nav] = ACTIONS(4623), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4623), - }, - [4016] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(7195), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), + [3968] = { + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = 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_value] = 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), }, - [4017] = { - [sym__alpha_identifier] = ACTIONS(4460), - [anon_sym_AT] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_DOT] = ACTIONS(4460), - [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_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_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_value] = 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), + [3969] = { + [sym__alpha_identifier] = ACTIONS(4924), + [anon_sym_AT] = ACTIONS(4926), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_as] = ACTIONS(4924), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4926), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_LPAREN] = ACTIONS(4926), + [anon_sym_COMMA] = ACTIONS(4926), + [anon_sym_LT] = ACTIONS(4924), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_where] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4926), + [anon_sym_get] = ACTIONS(4924), + [anon_sym_set] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [sym_label] = ACTIONS(4926), + [anon_sym_in] = ACTIONS(4924), + [anon_sym_DOT_DOT] = ACTIONS(4926), + [anon_sym_QMARK_COLON] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4926), + [anon_sym_PIPE_PIPE] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4924), + [anon_sym_COLON_COLON] = ACTIONS(4926), + [anon_sym_PLUS_EQ] = ACTIONS(4926), + [anon_sym_DASH_EQ] = ACTIONS(4926), + [anon_sym_STAR_EQ] = ACTIONS(4926), + [anon_sym_SLASH_EQ] = ACTIONS(4926), + [anon_sym_PERCENT_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ] = ACTIONS(4924), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4924), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4926), + [anon_sym_GT_EQ] = ACTIONS(4926), + [anon_sym_BANGin] = ACTIONS(4926), + [anon_sym_is] = ACTIONS(4924), + [anon_sym_BANGis] = ACTIONS(4926), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_as_QMARK] = ACTIONS(4926), + [anon_sym_PLUS_PLUS] = ACTIONS(4926), + [anon_sym_DASH_DASH] = ACTIONS(4926), + [anon_sym_BANG_BANG] = ACTIONS(4926), + [anon_sym_suspend] = ACTIONS(4924), + [anon_sym_sealed] = ACTIONS(4924), + [anon_sym_annotation] = ACTIONS(4924), + [anon_sym_data] = ACTIONS(4924), + [anon_sym_inner] = ACTIONS(4924), + [anon_sym_value] = ACTIONS(4924), + [anon_sym_override] = ACTIONS(4924), + [anon_sym_lateinit] = ACTIONS(4924), + [anon_sym_public] = ACTIONS(4924), + [anon_sym_private] = ACTIONS(4924), + [anon_sym_internal] = ACTIONS(4924), + [anon_sym_protected] = ACTIONS(4924), + [anon_sym_tailrec] = ACTIONS(4924), + [anon_sym_operator] = ACTIONS(4924), + [anon_sym_infix] = ACTIONS(4924), + [anon_sym_inline] = ACTIONS(4924), + [anon_sym_external] = ACTIONS(4924), + [sym_property_modifier] = ACTIONS(4924), + [anon_sym_abstract] = ACTIONS(4924), + [anon_sym_final] = ACTIONS(4924), + [anon_sym_open] = ACTIONS(4924), + [anon_sym_vararg] = ACTIONS(4924), + [anon_sym_noinline] = ACTIONS(4924), + [anon_sym_crossinline] = ACTIONS(4924), + [anon_sym_expect] = ACTIONS(4924), + [anon_sym_actual] = ACTIONS(4924), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4926), + [sym__automatic_semicolon] = ACTIONS(4926), + [sym_safe_nav] = ACTIONS(4926), [sym_multiline_comment] = ACTIONS(3), }, - [4018] = { - [sym__alpha_identifier] = ACTIONS(5169), - [anon_sym_AT] = ACTIONS(5171), - [anon_sym_LBRACK] = ACTIONS(5171), - [anon_sym_typealias] = ACTIONS(5169), - [anon_sym_class] = ACTIONS(5169), - [anon_sym_interface] = ACTIONS(5169), - [anon_sym_enum] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5171), - [anon_sym_val] = ACTIONS(5169), - [anon_sym_var] = ACTIONS(5169), - [anon_sym_object] = ACTIONS(5169), - [anon_sym_fun] = ACTIONS(5169), - [anon_sym_get] = ACTIONS(5169), - [anon_sym_set] = ACTIONS(5169), - [anon_sym_this] = ACTIONS(5169), - [anon_sym_super] = ACTIONS(5169), - [anon_sym_STAR] = ACTIONS(5171), - [sym_label] = ACTIONS(5169), - [anon_sym_for] = ACTIONS(5169), - [anon_sym_while] = ACTIONS(5169), - [anon_sym_do] = ACTIONS(5169), - [anon_sym_null] = ACTIONS(5169), - [anon_sym_if] = ACTIONS(5169), - [anon_sym_when] = ACTIONS(5169), - [anon_sym_try] = ACTIONS(5169), - [anon_sym_throw] = ACTIONS(5169), - [anon_sym_return] = ACTIONS(5169), - [anon_sym_continue] = ACTIONS(5169), - [anon_sym_break] = ACTIONS(5169), - [anon_sym_COLON_COLON] = ACTIONS(5171), - [anon_sym_PLUS] = ACTIONS(5169), - [anon_sym_DASH] = ACTIONS(5169), - [anon_sym_PLUS_PLUS] = ACTIONS(5171), - [anon_sym_DASH_DASH] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_suspend] = ACTIONS(5169), - [anon_sym_sealed] = ACTIONS(5169), - [anon_sym_annotation] = ACTIONS(5169), - [anon_sym_data] = ACTIONS(5169), - [anon_sym_inner] = ACTIONS(5169), - [anon_sym_value] = ACTIONS(5169), - [anon_sym_override] = ACTIONS(5169), - [anon_sym_lateinit] = ACTIONS(5169), - [anon_sym_public] = ACTIONS(5169), - [anon_sym_private] = ACTIONS(5169), - [anon_sym_internal] = ACTIONS(5169), - [anon_sym_protected] = ACTIONS(5169), - [anon_sym_tailrec] = ACTIONS(5169), - [anon_sym_operator] = ACTIONS(5169), - [anon_sym_infix] = ACTIONS(5169), - [anon_sym_inline] = ACTIONS(5169), - [anon_sym_external] = ACTIONS(5169), - [sym_property_modifier] = ACTIONS(5169), - [anon_sym_abstract] = ACTIONS(5169), - [anon_sym_final] = ACTIONS(5169), - [anon_sym_open] = ACTIONS(5169), - [anon_sym_vararg] = ACTIONS(5169), - [anon_sym_noinline] = ACTIONS(5169), - [anon_sym_crossinline] = ACTIONS(5169), - [anon_sym_expect] = ACTIONS(5169), - [anon_sym_actual] = ACTIONS(5169), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5171), - [anon_sym_continue_AT] = ACTIONS(5171), - [anon_sym_break_AT] = ACTIONS(5171), - [anon_sym_this_AT] = ACTIONS(5171), - [anon_sym_super_AT] = ACTIONS(5171), - [sym_real_literal] = ACTIONS(5171), - [sym_integer_literal] = ACTIONS(5169), - [sym_hex_literal] = ACTIONS(5171), - [sym_bin_literal] = ACTIONS(5171), - [anon_sym_true] = ACTIONS(5169), - [anon_sym_false] = ACTIONS(5169), - [anon_sym_SQUOTE] = ACTIONS(5171), - [sym__backtick_identifier] = ACTIONS(5171), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5171), - }, - [4019] = { + [3970] = { [sym__alpha_identifier] = ACTIONS(5093), [anon_sym_AT] = ACTIONS(5095), [anon_sym_LBRACK] = ACTIONS(5095), @@ -442925,1377 +439274,4737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(5095), [sym_multiline_comment] = ACTIONS(3), }, - [4020] = { - [sym__alpha_identifier] = ACTIONS(4766), - [anon_sym_AT] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4766), - [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_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_value] = ACTIONS(4766), - [anon_sym_override] = ACTIONS(4766), - [anon_sym_lateinit] = ACTIONS(4766), - [anon_sym_public] = ACTIONS(4766), - [anon_sym_private] = ACTIONS(4766), - [anon_sym_internal] = ACTIONS(4766), - [anon_sym_protected] = ACTIONS(4766), - [anon_sym_tailrec] = ACTIONS(4766), - [anon_sym_operator] = ACTIONS(4766), - [anon_sym_infix] = ACTIONS(4766), - [anon_sym_inline] = ACTIONS(4766), - [anon_sym_external] = ACTIONS(4766), - [sym_property_modifier] = ACTIONS(4766), - [anon_sym_abstract] = ACTIONS(4766), - [anon_sym_final] = ACTIONS(4766), - [anon_sym_open] = ACTIONS(4766), - [anon_sym_vararg] = ACTIONS(4766), - [anon_sym_noinline] = ACTIONS(4766), - [anon_sym_crossinline] = ACTIONS(4766), - [anon_sym_expect] = ACTIONS(4766), - [anon_sym_actual] = ACTIONS(4766), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4768), - [sym__automatic_semicolon] = ACTIONS(4768), - [sym_safe_nav] = ACTIONS(4768), + [3971] = { + [sym__alpha_identifier] = ACTIONS(5153), + [anon_sym_AT] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_DOT] = ACTIONS(5153), + [anon_sym_as] = ACTIONS(5153), + [anon_sym_EQ] = ACTIONS(5153), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_where] = ACTIONS(5153), + [anon_sym_SEMI] = ACTIONS(5155), + [anon_sym_get] = ACTIONS(5153), + [anon_sym_set] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [sym_label] = ACTIONS(5155), + [anon_sym_in] = ACTIONS(5153), + [anon_sym_DOT_DOT] = ACTIONS(5155), + [anon_sym_QMARK_COLON] = ACTIONS(5155), + [anon_sym_AMP_AMP] = ACTIONS(5155), + [anon_sym_PIPE_PIPE] = ACTIONS(5155), + [anon_sym_else] = ACTIONS(5153), + [anon_sym_COLON_COLON] = ACTIONS(5155), + [anon_sym_PLUS_EQ] = ACTIONS(5155), + [anon_sym_DASH_EQ] = ACTIONS(5155), + [anon_sym_STAR_EQ] = ACTIONS(5155), + [anon_sym_SLASH_EQ] = ACTIONS(5155), + [anon_sym_PERCENT_EQ] = ACTIONS(5155), + [anon_sym_BANG_EQ] = ACTIONS(5153), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5155), + [anon_sym_EQ_EQ] = ACTIONS(5153), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5155), + [anon_sym_LT_EQ] = ACTIONS(5155), + [anon_sym_GT_EQ] = ACTIONS(5155), + [anon_sym_BANGin] = ACTIONS(5155), + [anon_sym_is] = ACTIONS(5153), + [anon_sym_BANGis] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_PERCENT] = ACTIONS(5153), + [anon_sym_as_QMARK] = ACTIONS(5155), + [anon_sym_PLUS_PLUS] = ACTIONS(5155), + [anon_sym_DASH_DASH] = ACTIONS(5155), + [anon_sym_BANG_BANG] = ACTIONS(5155), + [anon_sym_suspend] = ACTIONS(5153), + [anon_sym_sealed] = ACTIONS(5153), + [anon_sym_annotation] = ACTIONS(5153), + [anon_sym_data] = ACTIONS(5153), + [anon_sym_inner] = ACTIONS(5153), + [anon_sym_value] = ACTIONS(5153), + [anon_sym_override] = ACTIONS(5153), + [anon_sym_lateinit] = ACTIONS(5153), + [anon_sym_public] = ACTIONS(5153), + [anon_sym_private] = ACTIONS(5153), + [anon_sym_internal] = ACTIONS(5153), + [anon_sym_protected] = ACTIONS(5153), + [anon_sym_tailrec] = ACTIONS(5153), + [anon_sym_operator] = ACTIONS(5153), + [anon_sym_infix] = ACTIONS(5153), + [anon_sym_inline] = ACTIONS(5153), + [anon_sym_external] = ACTIONS(5153), + [sym_property_modifier] = ACTIONS(5153), + [anon_sym_abstract] = ACTIONS(5153), + [anon_sym_final] = ACTIONS(5153), + [anon_sym_open] = ACTIONS(5153), + [anon_sym_vararg] = ACTIONS(5153), + [anon_sym_noinline] = ACTIONS(5153), + [anon_sym_crossinline] = ACTIONS(5153), + [anon_sym_expect] = ACTIONS(5153), + [anon_sym_actual] = ACTIONS(5153), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5155), + [sym__automatic_semicolon] = ACTIONS(5155), + [sym_safe_nav] = ACTIONS(5155), [sym_multiline_comment] = ACTIONS(3), }, - [4021] = { - [sym__alpha_identifier] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3189), - [anon_sym_set] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [sym_label] = ACTIONS(3191), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(3191), - [anon_sym_QMARK_COLON] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3191), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_as_QMARK] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_BANG_BANG] = ACTIONS(3191), - [anon_sym_suspend] = ACTIONS(3189), - [anon_sym_sealed] = ACTIONS(3189), - [anon_sym_annotation] = ACTIONS(3189), - [anon_sym_data] = ACTIONS(3189), - [anon_sym_inner] = ACTIONS(3189), - [anon_sym_value] = ACTIONS(3189), - [anon_sym_override] = ACTIONS(3189), - [anon_sym_lateinit] = ACTIONS(3189), - [anon_sym_public] = ACTIONS(3189), - [anon_sym_private] = ACTIONS(3189), - [anon_sym_internal] = ACTIONS(3189), - [anon_sym_protected] = ACTIONS(3189), - [anon_sym_tailrec] = ACTIONS(3189), - [anon_sym_operator] = ACTIONS(3189), - [anon_sym_infix] = ACTIONS(3189), - [anon_sym_inline] = ACTIONS(3189), - [anon_sym_external] = ACTIONS(3189), - [sym_property_modifier] = ACTIONS(3189), - [anon_sym_abstract] = ACTIONS(3189), - [anon_sym_final] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_vararg] = ACTIONS(3189), - [anon_sym_noinline] = ACTIONS(3189), - [anon_sym_crossinline] = ACTIONS(3189), - [anon_sym_expect] = ACTIONS(3189), - [anon_sym_actual] = ACTIONS(3189), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3191), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(3191), + [3972] = { + [sym_function_body] = STATE(3156), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_object] = ACTIONS(4451), + [anon_sym_fun] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_this] = ACTIONS(4451), + [anon_sym_super] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4451), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_null] = ACTIONS(4451), + [anon_sym_if] = ACTIONS(4451), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_when] = ACTIONS(4451), + [anon_sym_try] = ACTIONS(4451), + [anon_sym_throw] = ACTIONS(4451), + [anon_sym_return] = ACTIONS(4451), + [anon_sym_continue] = ACTIONS(4451), + [anon_sym_break] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4453), + [anon_sym_continue_AT] = ACTIONS(4453), + [anon_sym_break_AT] = ACTIONS(4453), + [anon_sym_this_AT] = ACTIONS(4453), + [anon_sym_super_AT] = ACTIONS(4453), + [sym_real_literal] = ACTIONS(4453), + [sym_integer_literal] = ACTIONS(4451), + [sym_hex_literal] = ACTIONS(4453), + [sym_bin_literal] = ACTIONS(4453), + [anon_sym_true] = ACTIONS(4451), + [anon_sym_false] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4453), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4453), + }, + [3973] = { + [sym__alpha_identifier] = ACTIONS(4892), + [anon_sym_AT] = ACTIONS(4894), + [anon_sym_LBRACK] = ACTIONS(4894), + [anon_sym_DOT] = ACTIONS(4892), + [anon_sym_as] = ACTIONS(4892), + [anon_sym_EQ] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4894), + [anon_sym_RBRACE] = ACTIONS(4894), + [anon_sym_LPAREN] = ACTIONS(4894), + [anon_sym_COMMA] = ACTIONS(4894), + [anon_sym_LT] = ACTIONS(4892), + [anon_sym_GT] = ACTIONS(4892), + [anon_sym_where] = ACTIONS(4892), + [anon_sym_SEMI] = ACTIONS(4894), + [anon_sym_get] = ACTIONS(4892), + [anon_sym_set] = ACTIONS(4892), + [anon_sym_STAR] = ACTIONS(4892), + [sym_label] = ACTIONS(4894), + [anon_sym_in] = ACTIONS(4892), + [anon_sym_DOT_DOT] = ACTIONS(4894), + [anon_sym_QMARK_COLON] = ACTIONS(4894), + [anon_sym_AMP_AMP] = ACTIONS(4894), + [anon_sym_PIPE_PIPE] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4894), + [anon_sym_PLUS_EQ] = ACTIONS(4894), + [anon_sym_DASH_EQ] = ACTIONS(4894), + [anon_sym_STAR_EQ] = ACTIONS(4894), + [anon_sym_SLASH_EQ] = ACTIONS(4894), + [anon_sym_PERCENT_EQ] = ACTIONS(4894), + [anon_sym_BANG_EQ] = ACTIONS(4892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4894), + [anon_sym_EQ_EQ] = ACTIONS(4892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4894), + [anon_sym_LT_EQ] = ACTIONS(4894), + [anon_sym_GT_EQ] = ACTIONS(4894), + [anon_sym_BANGin] = ACTIONS(4894), + [anon_sym_is] = ACTIONS(4892), + [anon_sym_BANGis] = ACTIONS(4894), + [anon_sym_PLUS] = ACTIONS(4892), + [anon_sym_DASH] = ACTIONS(4892), + [anon_sym_SLASH] = ACTIONS(4892), + [anon_sym_PERCENT] = ACTIONS(4892), + [anon_sym_as_QMARK] = ACTIONS(4894), + [anon_sym_PLUS_PLUS] = ACTIONS(4894), + [anon_sym_DASH_DASH] = ACTIONS(4894), + [anon_sym_BANG_BANG] = ACTIONS(4894), + [anon_sym_suspend] = ACTIONS(4892), + [anon_sym_sealed] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4892), + [anon_sym_data] = ACTIONS(4892), + [anon_sym_inner] = ACTIONS(4892), + [anon_sym_value] = ACTIONS(4892), + [anon_sym_override] = ACTIONS(4892), + [anon_sym_lateinit] = ACTIONS(4892), + [anon_sym_public] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4892), + [anon_sym_internal] = ACTIONS(4892), + [anon_sym_protected] = ACTIONS(4892), + [anon_sym_tailrec] = ACTIONS(4892), + [anon_sym_operator] = ACTIONS(4892), + [anon_sym_infix] = ACTIONS(4892), + [anon_sym_inline] = ACTIONS(4892), + [anon_sym_external] = ACTIONS(4892), + [sym_property_modifier] = ACTIONS(4892), + [anon_sym_abstract] = ACTIONS(4892), + [anon_sym_final] = ACTIONS(4892), + [anon_sym_open] = ACTIONS(4892), + [anon_sym_vararg] = ACTIONS(4892), + [anon_sym_noinline] = ACTIONS(4892), + [anon_sym_crossinline] = ACTIONS(4892), + [anon_sym_expect] = ACTIONS(4892), + [anon_sym_actual] = ACTIONS(4892), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4894), + [sym__automatic_semicolon] = ACTIONS(4894), + [sym_safe_nav] = ACTIONS(4894), [sym_multiline_comment] = ACTIONS(3), }, - [4022] = { - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_EQ] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3288), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_PLUS_EQ] = ACTIONS(3292), - [anon_sym_DASH_EQ] = ACTIONS(3292), - [anon_sym_STAR_EQ] = ACTIONS(3292), - [anon_sym_SLASH_EQ] = ACTIONS(3292), - [anon_sym_PERCENT_EQ] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3288), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [3974] = { + [sym__alpha_identifier] = ACTIONS(4710), + [anon_sym_AT] = ACTIONS(4712), + [anon_sym_LBRACK] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_as] = ACTIONS(4710), + [anon_sym_EQ] = ACTIONS(4710), + [anon_sym_LBRACE] = ACTIONS(4712), + [anon_sym_RBRACE] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4712), + [anon_sym_COMMA] = ACTIONS(4712), + [anon_sym_LT] = ACTIONS(4710), + [anon_sym_GT] = ACTIONS(4710), + [anon_sym_where] = ACTIONS(4710), + [anon_sym_SEMI] = ACTIONS(4712), + [anon_sym_get] = ACTIONS(4710), + [anon_sym_set] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [sym_label] = ACTIONS(4712), + [anon_sym_in] = ACTIONS(4710), + [anon_sym_DOT_DOT] = ACTIONS(4712), + [anon_sym_QMARK_COLON] = ACTIONS(4712), + [anon_sym_AMP_AMP] = ACTIONS(4712), + [anon_sym_PIPE_PIPE] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4712), + [anon_sym_PLUS_EQ] = ACTIONS(4712), + [anon_sym_DASH_EQ] = ACTIONS(4712), + [anon_sym_STAR_EQ] = ACTIONS(4712), + [anon_sym_SLASH_EQ] = ACTIONS(4712), + [anon_sym_PERCENT_EQ] = ACTIONS(4712), + [anon_sym_BANG_EQ] = ACTIONS(4710), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4712), + [anon_sym_EQ_EQ] = ACTIONS(4710), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4712), + [anon_sym_LT_EQ] = ACTIONS(4712), + [anon_sym_GT_EQ] = ACTIONS(4712), + [anon_sym_BANGin] = ACTIONS(4712), + [anon_sym_is] = ACTIONS(4710), + [anon_sym_BANGis] = ACTIONS(4712), + [anon_sym_PLUS] = ACTIONS(4710), + [anon_sym_DASH] = ACTIONS(4710), + [anon_sym_SLASH] = ACTIONS(4710), + [anon_sym_PERCENT] = ACTIONS(4710), + [anon_sym_as_QMARK] = ACTIONS(4712), + [anon_sym_PLUS_PLUS] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4712), + [anon_sym_BANG_BANG] = ACTIONS(4712), + [anon_sym_suspend] = ACTIONS(4710), + [anon_sym_sealed] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4710), + [anon_sym_data] = ACTIONS(4710), + [anon_sym_inner] = ACTIONS(4710), + [anon_sym_value] = ACTIONS(4710), + [anon_sym_override] = ACTIONS(4710), + [anon_sym_lateinit] = ACTIONS(4710), + [anon_sym_public] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4710), + [anon_sym_internal] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4710), + [anon_sym_tailrec] = ACTIONS(4710), + [anon_sym_operator] = ACTIONS(4710), + [anon_sym_infix] = ACTIONS(4710), + [anon_sym_inline] = ACTIONS(4710), + [anon_sym_external] = ACTIONS(4710), + [sym_property_modifier] = ACTIONS(4710), + [anon_sym_abstract] = ACTIONS(4710), + [anon_sym_final] = ACTIONS(4710), + [anon_sym_open] = ACTIONS(4710), + [anon_sym_vararg] = ACTIONS(4710), + [anon_sym_noinline] = ACTIONS(4710), + [anon_sym_crossinline] = ACTIONS(4710), + [anon_sym_expect] = ACTIONS(4710), + [anon_sym_actual] = ACTIONS(4710), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4712), + [sym__automatic_semicolon] = ACTIONS(4712), + [sym_safe_nav] = ACTIONS(4712), [sym_multiline_comment] = ACTIONS(3), }, - [4023] = { - [sym__alpha_identifier] = ACTIONS(5185), - [anon_sym_AT] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_DOT] = ACTIONS(5185), - [anon_sym_as] = ACTIONS(5185), - [anon_sym_EQ] = ACTIONS(5185), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_where] = ACTIONS(5185), - [anon_sym_SEMI] = ACTIONS(5187), - [anon_sym_get] = ACTIONS(5185), - [anon_sym_set] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [sym_label] = ACTIONS(5187), - [anon_sym_in] = ACTIONS(5185), - [anon_sym_DOT_DOT] = ACTIONS(5187), - [anon_sym_QMARK_COLON] = ACTIONS(5187), - [anon_sym_AMP_AMP] = ACTIONS(5187), - [anon_sym_PIPE_PIPE] = ACTIONS(5187), - [anon_sym_else] = ACTIONS(5185), - [anon_sym_COLON_COLON] = ACTIONS(5187), - [anon_sym_PLUS_EQ] = ACTIONS(5187), - [anon_sym_DASH_EQ] = ACTIONS(5187), - [anon_sym_STAR_EQ] = ACTIONS(5187), - [anon_sym_SLASH_EQ] = ACTIONS(5187), - [anon_sym_PERCENT_EQ] = ACTIONS(5187), - [anon_sym_BANG_EQ] = ACTIONS(5185), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5187), - [anon_sym_EQ_EQ] = ACTIONS(5185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5187), - [anon_sym_LT_EQ] = ACTIONS(5187), - [anon_sym_GT_EQ] = ACTIONS(5187), - [anon_sym_BANGin] = ACTIONS(5187), - [anon_sym_is] = ACTIONS(5185), - [anon_sym_BANGis] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_PERCENT] = ACTIONS(5185), - [anon_sym_as_QMARK] = ACTIONS(5187), - [anon_sym_PLUS_PLUS] = ACTIONS(5187), - [anon_sym_DASH_DASH] = ACTIONS(5187), - [anon_sym_BANG_BANG] = ACTIONS(5187), - [anon_sym_suspend] = ACTIONS(5185), - [anon_sym_sealed] = ACTIONS(5185), - [anon_sym_annotation] = ACTIONS(5185), - [anon_sym_data] = ACTIONS(5185), - [anon_sym_inner] = ACTIONS(5185), - [anon_sym_value] = ACTIONS(5185), - [anon_sym_override] = ACTIONS(5185), - [anon_sym_lateinit] = ACTIONS(5185), - [anon_sym_public] = ACTIONS(5185), - [anon_sym_private] = ACTIONS(5185), - [anon_sym_internal] = ACTIONS(5185), - [anon_sym_protected] = ACTIONS(5185), - [anon_sym_tailrec] = ACTIONS(5185), - [anon_sym_operator] = ACTIONS(5185), - [anon_sym_infix] = ACTIONS(5185), - [anon_sym_inline] = ACTIONS(5185), - [anon_sym_external] = ACTIONS(5185), - [sym_property_modifier] = ACTIONS(5185), - [anon_sym_abstract] = ACTIONS(5185), - [anon_sym_final] = ACTIONS(5185), - [anon_sym_open] = ACTIONS(5185), - [anon_sym_vararg] = ACTIONS(5185), - [anon_sym_noinline] = ACTIONS(5185), - [anon_sym_crossinline] = ACTIONS(5185), - [anon_sym_expect] = ACTIONS(5185), - [anon_sym_actual] = ACTIONS(5185), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5187), - [sym__automatic_semicolon] = ACTIONS(5187), - [sym_safe_nav] = ACTIONS(5187), + [3975] = { + [sym__alpha_identifier] = ACTIONS(5057), + [anon_sym_AT] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5059), + [anon_sym_DOT] = ACTIONS(5057), + [anon_sym_as] = ACTIONS(5057), + [anon_sym_EQ] = ACTIONS(5057), + [anon_sym_LBRACE] = ACTIONS(5059), + [anon_sym_RBRACE] = ACTIONS(5059), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_where] = ACTIONS(5057), + [anon_sym_SEMI] = ACTIONS(5059), + [anon_sym_get] = ACTIONS(5057), + [anon_sym_set] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [sym_label] = ACTIONS(5059), + [anon_sym_in] = ACTIONS(5057), + [anon_sym_DOT_DOT] = ACTIONS(5059), + [anon_sym_QMARK_COLON] = ACTIONS(5059), + [anon_sym_AMP_AMP] = ACTIONS(5059), + [anon_sym_PIPE_PIPE] = ACTIONS(5059), + [anon_sym_else] = ACTIONS(5057), + [anon_sym_COLON_COLON] = ACTIONS(5059), + [anon_sym_PLUS_EQ] = ACTIONS(5059), + [anon_sym_DASH_EQ] = ACTIONS(5059), + [anon_sym_STAR_EQ] = ACTIONS(5059), + [anon_sym_SLASH_EQ] = ACTIONS(5059), + [anon_sym_PERCENT_EQ] = ACTIONS(5059), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5059), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5059), + [anon_sym_GT_EQ] = ACTIONS(5059), + [anon_sym_BANGin] = ACTIONS(5059), + [anon_sym_is] = ACTIONS(5057), + [anon_sym_BANGis] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_PERCENT] = ACTIONS(5057), + [anon_sym_as_QMARK] = ACTIONS(5059), + [anon_sym_PLUS_PLUS] = ACTIONS(5059), + [anon_sym_DASH_DASH] = ACTIONS(5059), + [anon_sym_BANG_BANG] = ACTIONS(5059), + [anon_sym_suspend] = ACTIONS(5057), + [anon_sym_sealed] = ACTIONS(5057), + [anon_sym_annotation] = ACTIONS(5057), + [anon_sym_data] = ACTIONS(5057), + [anon_sym_inner] = ACTIONS(5057), + [anon_sym_value] = ACTIONS(5057), + [anon_sym_override] = ACTIONS(5057), + [anon_sym_lateinit] = ACTIONS(5057), + [anon_sym_public] = ACTIONS(5057), + [anon_sym_private] = ACTIONS(5057), + [anon_sym_internal] = ACTIONS(5057), + [anon_sym_protected] = ACTIONS(5057), + [anon_sym_tailrec] = ACTIONS(5057), + [anon_sym_operator] = ACTIONS(5057), + [anon_sym_infix] = ACTIONS(5057), + [anon_sym_inline] = ACTIONS(5057), + [anon_sym_external] = ACTIONS(5057), + [sym_property_modifier] = ACTIONS(5057), + [anon_sym_abstract] = ACTIONS(5057), + [anon_sym_final] = ACTIONS(5057), + [anon_sym_open] = ACTIONS(5057), + [anon_sym_vararg] = ACTIONS(5057), + [anon_sym_noinline] = ACTIONS(5057), + [anon_sym_crossinline] = ACTIONS(5057), + [anon_sym_expect] = ACTIONS(5057), + [anon_sym_actual] = ACTIONS(5057), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5059), + [sym__automatic_semicolon] = ACTIONS(5059), + [sym_safe_nav] = ACTIONS(5059), [sym_multiline_comment] = ACTIONS(3), }, - [4024] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(4834), - [anon_sym_COMMA] = ACTIONS(4223), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_where] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4223), - [anon_sym_DASH_EQ] = ACTIONS(4223), - [anon_sym_STAR_EQ] = ACTIONS(4223), - [anon_sym_SLASH_EQ] = ACTIONS(4223), - [anon_sym_PERCENT_EQ] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), + [3976] = { + [sym__alpha_identifier] = ACTIONS(4455), + [anon_sym_AT] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4457), + [anon_sym_DOT] = ACTIONS(4455), + [anon_sym_as] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COMMA] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4455), + [anon_sym_GT] = ACTIONS(4455), + [anon_sym_where] = ACTIONS(4455), + [anon_sym_SEMI] = ACTIONS(4457), + [anon_sym_get] = ACTIONS(4455), + [anon_sym_set] = ACTIONS(4455), + [anon_sym_STAR] = ACTIONS(4455), + [sym_label] = ACTIONS(4457), + [anon_sym_in] = ACTIONS(4455), + [anon_sym_DOT_DOT] = ACTIONS(4457), + [anon_sym_QMARK_COLON] = ACTIONS(4457), + [anon_sym_AMP_AMP] = ACTIONS(4457), + [anon_sym_PIPE_PIPE] = ACTIONS(4457), + [anon_sym_else] = ACTIONS(4455), + [anon_sym_COLON_COLON] = ACTIONS(4457), + [anon_sym_PLUS_EQ] = ACTIONS(4457), + [anon_sym_DASH_EQ] = ACTIONS(4457), + [anon_sym_STAR_EQ] = ACTIONS(4457), + [anon_sym_SLASH_EQ] = ACTIONS(4457), + [anon_sym_PERCENT_EQ] = ACTIONS(4457), + [anon_sym_BANG_EQ] = ACTIONS(4455), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4457), + [anon_sym_EQ_EQ] = ACTIONS(4455), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4457), + [anon_sym_LT_EQ] = ACTIONS(4457), + [anon_sym_GT_EQ] = ACTIONS(4457), + [anon_sym_BANGin] = ACTIONS(4457), + [anon_sym_is] = ACTIONS(4455), + [anon_sym_BANGis] = ACTIONS(4457), + [anon_sym_PLUS] = ACTIONS(4455), + [anon_sym_DASH] = ACTIONS(4455), + [anon_sym_SLASH] = ACTIONS(4455), + [anon_sym_PERCENT] = ACTIONS(4455), + [anon_sym_as_QMARK] = ACTIONS(4457), + [anon_sym_PLUS_PLUS] = ACTIONS(4457), + [anon_sym_DASH_DASH] = ACTIONS(4457), + [anon_sym_BANG_BANG] = ACTIONS(4457), + [anon_sym_suspend] = ACTIONS(4455), + [anon_sym_sealed] = ACTIONS(4455), + [anon_sym_annotation] = ACTIONS(4455), + [anon_sym_data] = ACTIONS(4455), + [anon_sym_inner] = ACTIONS(4455), + [anon_sym_value] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4455), + [anon_sym_lateinit] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_internal] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_tailrec] = ACTIONS(4455), + [anon_sym_operator] = ACTIONS(4455), + [anon_sym_infix] = ACTIONS(4455), + [anon_sym_inline] = ACTIONS(4455), + [anon_sym_external] = ACTIONS(4455), + [sym_property_modifier] = ACTIONS(4455), + [anon_sym_abstract] = ACTIONS(4455), + [anon_sym_final] = ACTIONS(4455), + [anon_sym_open] = ACTIONS(4455), + [anon_sym_vararg] = ACTIONS(4455), + [anon_sym_noinline] = ACTIONS(4455), + [anon_sym_crossinline] = ACTIONS(4455), + [anon_sym_expect] = ACTIONS(4455), + [anon_sym_actual] = ACTIONS(4455), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4457), + [sym__automatic_semicolon] = ACTIONS(4457), + [sym_safe_nav] = ACTIONS(4457), [sym_multiline_comment] = ACTIONS(3), }, - [4025] = { - [sym_function_body] = STATE(3454), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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), + [3977] = { + [sym__alpha_identifier] = ACTIONS(3932), + [anon_sym_AT] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_DOT] = ACTIONS(3932), + [anon_sym_as] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_where] = ACTIONS(3932), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3932), + [anon_sym_set] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [sym_label] = ACTIONS(3934), + [anon_sym_in] = ACTIONS(3932), + [anon_sym_DOT_DOT] = ACTIONS(3934), + [anon_sym_QMARK_COLON] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3934), + [anon_sym_SLASH_EQ] = ACTIONS(3934), + [anon_sym_PERCENT_EQ] = ACTIONS(3934), + [anon_sym_BANG_EQ] = ACTIONS(3932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_BANGin] = ACTIONS(3934), + [anon_sym_is] = ACTIONS(3932), + [anon_sym_BANGis] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_as_QMARK] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [anon_sym_BANG_BANG] = ACTIONS(3934), + [anon_sym_suspend] = ACTIONS(3932), + [anon_sym_sealed] = ACTIONS(3932), + [anon_sym_annotation] = ACTIONS(3932), + [anon_sym_data] = ACTIONS(3932), + [anon_sym_inner] = ACTIONS(3932), + [anon_sym_value] = ACTIONS(3932), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_lateinit] = ACTIONS(3932), + [anon_sym_public] = ACTIONS(3932), + [anon_sym_private] = ACTIONS(3932), + [anon_sym_internal] = ACTIONS(3932), + [anon_sym_protected] = ACTIONS(3932), + [anon_sym_tailrec] = ACTIONS(3932), + [anon_sym_operator] = ACTIONS(3932), + [anon_sym_infix] = ACTIONS(3932), + [anon_sym_inline] = ACTIONS(3932), + [anon_sym_external] = ACTIONS(3932), + [sym_property_modifier] = ACTIONS(3932), + [anon_sym_abstract] = ACTIONS(3932), + [anon_sym_final] = ACTIONS(3932), + [anon_sym_open] = ACTIONS(3932), + [anon_sym_vararg] = ACTIONS(3932), + [anon_sym_noinline] = ACTIONS(3932), + [anon_sym_crossinline] = ACTIONS(3932), + [anon_sym_expect] = ACTIONS(3932), + [anon_sym_actual] = ACTIONS(3932), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3934), + [sym__automatic_semicolon] = ACTIONS(3934), + [sym_safe_nav] = ACTIONS(3934), [sym_multiline_comment] = ACTIONS(3), }, - [4026] = { - [sym__alpha_identifier] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_DOT] = ACTIONS(3312), - [anon_sym_as] = ACTIONS(3312), - [anon_sym_EQ] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3316), - [anon_sym_RBRACE] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3316), - [anon_sym_COMMA] = ACTIONS(3316), - [anon_sym_LT] = ACTIONS(3312), - [anon_sym_GT] = ACTIONS(3312), - [anon_sym_where] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_STAR] = ACTIONS(3312), - [sym_label] = ACTIONS(3316), - [anon_sym_in] = ACTIONS(3312), - [anon_sym_DOT_DOT] = ACTIONS(3316), - [anon_sym_QMARK_COLON] = ACTIONS(3316), - [anon_sym_AMP_AMP] = ACTIONS(3316), - [anon_sym_PIPE_PIPE] = ACTIONS(3316), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_COLON_COLON] = ACTIONS(3316), - [anon_sym_PLUS_EQ] = ACTIONS(3316), - [anon_sym_DASH_EQ] = ACTIONS(3316), - [anon_sym_STAR_EQ] = ACTIONS(3316), - [anon_sym_SLASH_EQ] = ACTIONS(3316), - [anon_sym_PERCENT_EQ] = ACTIONS(3316), - [anon_sym_BANG_EQ] = ACTIONS(3312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3316), - [anon_sym_EQ_EQ] = ACTIONS(3312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3316), - [anon_sym_LT_EQ] = ACTIONS(3316), - [anon_sym_GT_EQ] = ACTIONS(3316), - [anon_sym_BANGin] = ACTIONS(3316), - [anon_sym_is] = ACTIONS(3312), - [anon_sym_BANGis] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_PERCENT] = ACTIONS(3312), - [anon_sym_as_QMARK] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3316), - [anon_sym_DASH_DASH] = ACTIONS(3316), - [anon_sym_BANG_BANG] = ACTIONS(3316), - [anon_sym_suspend] = ACTIONS(3312), - [anon_sym_sealed] = ACTIONS(3312), - [anon_sym_annotation] = ACTIONS(3312), - [anon_sym_data] = ACTIONS(3312), - [anon_sym_inner] = ACTIONS(3312), - [anon_sym_value] = ACTIONS(3312), - [anon_sym_override] = ACTIONS(3312), - [anon_sym_lateinit] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_internal] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_tailrec] = ACTIONS(3312), - [anon_sym_operator] = ACTIONS(3312), - [anon_sym_infix] = ACTIONS(3312), - [anon_sym_inline] = ACTIONS(3312), - [anon_sym_external] = ACTIONS(3312), - [sym_property_modifier] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_final] = ACTIONS(3312), - [anon_sym_open] = ACTIONS(3312), - [anon_sym_vararg] = ACTIONS(3312), - [anon_sym_noinline] = ACTIONS(3312), - [anon_sym_crossinline] = ACTIONS(3312), - [anon_sym_expect] = ACTIONS(3312), - [anon_sym_actual] = ACTIONS(3312), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3316), - [sym__automatic_semicolon] = ACTIONS(3316), - [sym_safe_nav] = ACTIONS(3316), + [3978] = { + [sym_function_body] = STATE(3826), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, - [4027] = { - [sym__alpha_identifier] = ACTIONS(5089), - [anon_sym_AT] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_DOT] = ACTIONS(5089), - [anon_sym_as] = ACTIONS(5089), - [anon_sym_EQ] = ACTIONS(5089), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_where] = ACTIONS(5089), - [anon_sym_SEMI] = ACTIONS(5091), - [anon_sym_get] = ACTIONS(5089), - [anon_sym_set] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [sym_label] = ACTIONS(5091), - [anon_sym_in] = ACTIONS(5089), - [anon_sym_DOT_DOT] = ACTIONS(5091), - [anon_sym_QMARK_COLON] = ACTIONS(5091), - [anon_sym_AMP_AMP] = ACTIONS(5091), - [anon_sym_PIPE_PIPE] = ACTIONS(5091), - [anon_sym_else] = ACTIONS(5089), - [anon_sym_COLON_COLON] = ACTIONS(5091), - [anon_sym_PLUS_EQ] = ACTIONS(5091), - [anon_sym_DASH_EQ] = ACTIONS(5091), - [anon_sym_STAR_EQ] = ACTIONS(5091), - [anon_sym_SLASH_EQ] = ACTIONS(5091), - [anon_sym_PERCENT_EQ] = ACTIONS(5091), - [anon_sym_BANG_EQ] = ACTIONS(5089), - [anon_sym_BANG_EQ_EQ] = ACTIONS(5091), - [anon_sym_EQ_EQ] = ACTIONS(5089), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5091), - [anon_sym_LT_EQ] = ACTIONS(5091), - [anon_sym_GT_EQ] = ACTIONS(5091), - [anon_sym_BANGin] = ACTIONS(5091), - [anon_sym_is] = ACTIONS(5089), - [anon_sym_BANGis] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_PERCENT] = ACTIONS(5089), - [anon_sym_as_QMARK] = ACTIONS(5091), - [anon_sym_PLUS_PLUS] = ACTIONS(5091), - [anon_sym_DASH_DASH] = ACTIONS(5091), - [anon_sym_BANG_BANG] = ACTIONS(5091), - [anon_sym_suspend] = ACTIONS(5089), - [anon_sym_sealed] = ACTIONS(5089), - [anon_sym_annotation] = ACTIONS(5089), - [anon_sym_data] = ACTIONS(5089), - [anon_sym_inner] = ACTIONS(5089), - [anon_sym_value] = ACTIONS(5089), - [anon_sym_override] = ACTIONS(5089), - [anon_sym_lateinit] = ACTIONS(5089), - [anon_sym_public] = ACTIONS(5089), - [anon_sym_private] = ACTIONS(5089), - [anon_sym_internal] = ACTIONS(5089), - [anon_sym_protected] = ACTIONS(5089), - [anon_sym_tailrec] = ACTIONS(5089), - [anon_sym_operator] = ACTIONS(5089), - [anon_sym_infix] = ACTIONS(5089), - [anon_sym_inline] = ACTIONS(5089), - [anon_sym_external] = ACTIONS(5089), - [sym_property_modifier] = ACTIONS(5089), - [anon_sym_abstract] = ACTIONS(5089), - [anon_sym_final] = ACTIONS(5089), - [anon_sym_open] = ACTIONS(5089), - [anon_sym_vararg] = ACTIONS(5089), - [anon_sym_noinline] = ACTIONS(5089), - [anon_sym_crossinline] = ACTIONS(5089), - [anon_sym_expect] = ACTIONS(5089), - [anon_sym_actual] = ACTIONS(5089), + [3979] = { + [sym_function_body] = STATE(3137), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_object] = ACTIONS(4416), + [anon_sym_fun] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_this] = ACTIONS(4416), + [anon_sym_super] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4418), + [sym_label] = ACTIONS(4416), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_null] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_when] = ACTIONS(4416), + [anon_sym_try] = ACTIONS(4416), + [anon_sym_throw] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4418), + [anon_sym_continue_AT] = ACTIONS(4418), + [anon_sym_break_AT] = ACTIONS(4418), + [anon_sym_this_AT] = ACTIONS(4418), + [anon_sym_super_AT] = ACTIONS(4418), + [sym_real_literal] = ACTIONS(4418), + [sym_integer_literal] = ACTIONS(4416), + [sym_hex_literal] = ACTIONS(4418), + [sym_bin_literal] = ACTIONS(4418), + [anon_sym_true] = ACTIONS(4416), + [anon_sym_false] = ACTIONS(4416), + [anon_sym_SQUOTE] = ACTIONS(4418), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4418), + }, + [3980] = { + [sym__alpha_identifier] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_DOT] = ACTIONS(3296), + [anon_sym_as] = ACTIONS(3296), + [anon_sym_EQ] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_COMMA] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_GT] = ACTIONS(3296), + [anon_sym_where] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_STAR] = ACTIONS(3296), + [sym_label] = ACTIONS(3298), + [anon_sym_in] = ACTIONS(3296), + [anon_sym_DOT_DOT] = ACTIONS(3298), + [anon_sym_QMARK_COLON] = ACTIONS(3298), + [anon_sym_AMP_AMP] = ACTIONS(3298), + [anon_sym_PIPE_PIPE] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(3298), + [anon_sym_PLUS_EQ] = ACTIONS(3298), + [anon_sym_DASH_EQ] = ACTIONS(3298), + [anon_sym_STAR_EQ] = ACTIONS(3298), + [anon_sym_SLASH_EQ] = ACTIONS(3298), + [anon_sym_PERCENT_EQ] = ACTIONS(3298), + [anon_sym_BANG_EQ] = ACTIONS(3296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), + [anon_sym_EQ_EQ] = ACTIONS(3296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), + [anon_sym_LT_EQ] = ACTIONS(3298), + [anon_sym_GT_EQ] = ACTIONS(3298), + [anon_sym_BANGin] = ACTIONS(3298), + [anon_sym_is] = ACTIONS(3296), + [anon_sym_BANGis] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_PERCENT] = ACTIONS(3296), + [anon_sym_as_QMARK] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [anon_sym_BANG_BANG] = ACTIONS(3298), + [anon_sym_suspend] = ACTIONS(3296), + [anon_sym_sealed] = ACTIONS(3296), + [anon_sym_annotation] = ACTIONS(3296), + [anon_sym_data] = ACTIONS(3296), + [anon_sym_inner] = ACTIONS(3296), + [anon_sym_value] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_lateinit] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_internal] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_tailrec] = ACTIONS(3296), + [anon_sym_operator] = ACTIONS(3296), + [anon_sym_infix] = ACTIONS(3296), + [anon_sym_inline] = ACTIONS(3296), + [anon_sym_external] = ACTIONS(3296), + [sym_property_modifier] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_final] = ACTIONS(3296), + [anon_sym_open] = ACTIONS(3296), + [anon_sym_vararg] = ACTIONS(3296), + [anon_sym_noinline] = ACTIONS(3296), + [anon_sym_crossinline] = ACTIONS(3296), + [anon_sym_expect] = ACTIONS(3296), + [anon_sym_actual] = ACTIONS(3296), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5091), - [sym__automatic_semicolon] = ACTIONS(5091), - [sym_safe_nav] = ACTIONS(5091), + [sym__backtick_identifier] = ACTIONS(3298), + [sym__automatic_semicolon] = ACTIONS(3298), + [sym_safe_nav] = ACTIONS(3298), [sym_multiline_comment] = ACTIONS(3), }, - [4028] = { - [sym__alpha_identifier] = ACTIONS(4442), - [anon_sym_AT] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(4908), - [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_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(4910), - [anon_sym_DASH_EQ] = ACTIONS(4910), - [anon_sym_STAR_EQ] = ACTIONS(4910), - [anon_sym_SLASH_EQ] = ACTIONS(4910), - [anon_sym_PERCENT_EQ] = ACTIONS(4910), - [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_value] = 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), + [3981] = { + [sym__alpha_identifier] = ACTIONS(5049), + [anon_sym_AT] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_DOT] = ACTIONS(5049), + [anon_sym_as] = ACTIONS(5049), + [anon_sym_EQ] = ACTIONS(5049), + [anon_sym_LBRACE] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_where] = ACTIONS(5049), + [anon_sym_SEMI] = ACTIONS(5051), + [anon_sym_get] = ACTIONS(5049), + [anon_sym_set] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [sym_label] = ACTIONS(5051), + [anon_sym_in] = ACTIONS(5049), + [anon_sym_DOT_DOT] = ACTIONS(5051), + [anon_sym_QMARK_COLON] = ACTIONS(5051), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE_PIPE] = ACTIONS(5051), + [anon_sym_else] = ACTIONS(5049), + [anon_sym_COLON_COLON] = ACTIONS(5051), + [anon_sym_PLUS_EQ] = ACTIONS(5051), + [anon_sym_DASH_EQ] = ACTIONS(5051), + [anon_sym_STAR_EQ] = ACTIONS(5051), + [anon_sym_SLASH_EQ] = ACTIONS(5051), + [anon_sym_PERCENT_EQ] = ACTIONS(5051), + [anon_sym_BANG_EQ] = ACTIONS(5049), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5051), + [anon_sym_EQ_EQ] = ACTIONS(5049), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5051), + [anon_sym_LT_EQ] = ACTIONS(5051), + [anon_sym_GT_EQ] = ACTIONS(5051), + [anon_sym_BANGin] = ACTIONS(5051), + [anon_sym_is] = ACTIONS(5049), + [anon_sym_BANGis] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_PERCENT] = ACTIONS(5049), + [anon_sym_as_QMARK] = ACTIONS(5051), + [anon_sym_PLUS_PLUS] = ACTIONS(5051), + [anon_sym_DASH_DASH] = ACTIONS(5051), + [anon_sym_BANG_BANG] = ACTIONS(5051), + [anon_sym_suspend] = ACTIONS(5049), + [anon_sym_sealed] = ACTIONS(5049), + [anon_sym_annotation] = ACTIONS(5049), + [anon_sym_data] = ACTIONS(5049), + [anon_sym_inner] = ACTIONS(5049), + [anon_sym_value] = ACTIONS(5049), + [anon_sym_override] = ACTIONS(5049), + [anon_sym_lateinit] = ACTIONS(5049), + [anon_sym_public] = ACTIONS(5049), + [anon_sym_private] = ACTIONS(5049), + [anon_sym_internal] = ACTIONS(5049), + [anon_sym_protected] = ACTIONS(5049), + [anon_sym_tailrec] = ACTIONS(5049), + [anon_sym_operator] = ACTIONS(5049), + [anon_sym_infix] = ACTIONS(5049), + [anon_sym_inline] = ACTIONS(5049), + [anon_sym_external] = ACTIONS(5049), + [sym_property_modifier] = ACTIONS(5049), + [anon_sym_abstract] = ACTIONS(5049), + [anon_sym_final] = ACTIONS(5049), + [anon_sym_open] = ACTIONS(5049), + [anon_sym_vararg] = ACTIONS(5049), + [anon_sym_noinline] = ACTIONS(5049), + [anon_sym_crossinline] = ACTIONS(5049), + [anon_sym_expect] = ACTIONS(5049), + [anon_sym_actual] = ACTIONS(5049), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5051), + [sym__automatic_semicolon] = ACTIONS(5051), + [sym_safe_nav] = ACTIONS(5051), [sym_multiline_comment] = ACTIONS(3), }, - [4029] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_PLUS_EQ] = ACTIONS(4495), - [anon_sym_DASH_EQ] = ACTIONS(4495), - [anon_sym_STAR_EQ] = ACTIONS(4495), - [anon_sym_SLASH_EQ] = ACTIONS(4495), - [anon_sym_PERCENT_EQ] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4493), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), + [3982] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4345), + [anon_sym_DASH_EQ] = ACTIONS(4345), + [anon_sym_STAR_EQ] = ACTIONS(4345), + [anon_sym_SLASH_EQ] = ACTIONS(4345), + [anon_sym_PERCENT_EQ] = ACTIONS(4345), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), [sym_multiline_comment] = ACTIONS(3), }, - [4030] = { - [sym__alpha_identifier] = ACTIONS(4770), - [anon_sym_AT] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(4772), - [anon_sym_DOT] = ACTIONS(4770), - [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_SEMI] = ACTIONS(4772), - [anon_sym_get] = ACTIONS(4770), - [anon_sym_set] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4770), - [sym_label] = ACTIONS(4772), - [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_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_value] = 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), + [3983] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4772), - [sym__automatic_semicolon] = ACTIONS(4772), - [sym_safe_nav] = ACTIONS(4772), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4031] = { - [sym__alpha_identifier] = ACTIONS(1822), - [anon_sym_AT] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_DOT] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1824), - [anon_sym_RBRACE] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_LT] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1822), - [anon_sym_where] = ACTIONS(1822), - [anon_sym_SEMI] = ACTIONS(1824), - [anon_sym_get] = ACTIONS(1822), - [anon_sym_set] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [sym_label] = ACTIONS(1824), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_DOT_DOT] = ACTIONS(1824), - [anon_sym_QMARK_COLON] = ACTIONS(1824), - [anon_sym_AMP_AMP] = ACTIONS(1824), - [anon_sym_PIPE_PIPE] = ACTIONS(1824), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_COLON_COLON] = ACTIONS(1824), - [anon_sym_PLUS_EQ] = ACTIONS(1824), - [anon_sym_DASH_EQ] = ACTIONS(1824), - [anon_sym_STAR_EQ] = ACTIONS(1824), - [anon_sym_SLASH_EQ] = ACTIONS(1824), - [anon_sym_PERCENT_EQ] = ACTIONS(1824), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1824), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1824), - [anon_sym_BANGin] = ACTIONS(1824), - [anon_sym_is] = ACTIONS(1822), - [anon_sym_BANGis] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_as_QMARK] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1824), - [anon_sym_DASH_DASH] = ACTIONS(1824), - [anon_sym_BANG_BANG] = ACTIONS(1824), - [anon_sym_suspend] = ACTIONS(1822), - [anon_sym_sealed] = ACTIONS(1822), - [anon_sym_annotation] = ACTIONS(1822), - [anon_sym_data] = ACTIONS(1822), - [anon_sym_inner] = ACTIONS(1822), - [anon_sym_value] = ACTIONS(1822), - [anon_sym_override] = ACTIONS(1822), - [anon_sym_lateinit] = ACTIONS(1822), - [anon_sym_public] = ACTIONS(1822), - [anon_sym_private] = ACTIONS(1822), - [anon_sym_internal] = ACTIONS(1822), - [anon_sym_protected] = ACTIONS(1822), - [anon_sym_tailrec] = ACTIONS(1822), - [anon_sym_operator] = ACTIONS(1822), - [anon_sym_infix] = ACTIONS(1822), - [anon_sym_inline] = ACTIONS(1822), - [anon_sym_external] = ACTIONS(1822), - [sym_property_modifier] = ACTIONS(1822), - [anon_sym_abstract] = ACTIONS(1822), - [anon_sym_final] = ACTIONS(1822), - [anon_sym_open] = ACTIONS(1822), - [anon_sym_vararg] = ACTIONS(1822), - [anon_sym_noinline] = ACTIONS(1822), - [anon_sym_crossinline] = ACTIONS(1822), - [anon_sym_expect] = ACTIONS(1822), - [anon_sym_actual] = ACTIONS(1822), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1824), - [sym__automatic_semicolon] = ACTIONS(1824), - [sym_safe_nav] = ACTIONS(1824), + [3984] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3076), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4032] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4936), - [anon_sym_COMMA] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_where] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [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(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [3985] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [anon_sym_DASH_EQ] = ACTIONS(3139), + [anon_sym_STAR_EQ] = ACTIONS(3139), + [anon_sym_SLASH_EQ] = ACTIONS(3139), + [anon_sym_PERCENT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4033] = { - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(4301), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(4299), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4299), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_PLUS_EQ] = ACTIONS(4301), - [anon_sym_DASH_EQ] = ACTIONS(4301), - [anon_sym_STAR_EQ] = ACTIONS(4301), - [anon_sym_SLASH_EQ] = ACTIONS(4301), - [anon_sym_PERCENT_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4299), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), + [3986] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4034] = { - [sym_function_body] = STATE(3458), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_RBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [anon_sym_DASH_GT] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [3987] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4035] = { - [sym__alpha_identifier] = ACTIONS(4983), - [anon_sym_AT] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_DOT] = ACTIONS(4983), - [anon_sym_as] = ACTIONS(4983), - [anon_sym_EQ] = ACTIONS(4983), - [anon_sym_LBRACE] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_where] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_get] = ACTIONS(4983), - [anon_sym_set] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [sym_label] = ACTIONS(4985), - [anon_sym_in] = ACTIONS(4983), - [anon_sym_DOT_DOT] = ACTIONS(4985), - [anon_sym_QMARK_COLON] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_else] = ACTIONS(4983), - [anon_sym_COLON_COLON] = ACTIONS(4985), - [anon_sym_PLUS_EQ] = ACTIONS(4985), - [anon_sym_DASH_EQ] = ACTIONS(4985), - [anon_sym_STAR_EQ] = ACTIONS(4985), - [anon_sym_SLASH_EQ] = ACTIONS(4985), - [anon_sym_PERCENT_EQ] = ACTIONS(4985), - [anon_sym_BANG_EQ] = ACTIONS(4983), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4985), - [anon_sym_EQ_EQ] = ACTIONS(4983), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4985), - [anon_sym_LT_EQ] = ACTIONS(4985), - [anon_sym_GT_EQ] = ACTIONS(4985), - [anon_sym_BANGin] = ACTIONS(4985), - [anon_sym_is] = ACTIONS(4983), - [anon_sym_BANGis] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_PERCENT] = ACTIONS(4983), - [anon_sym_as_QMARK] = ACTIONS(4985), - [anon_sym_PLUS_PLUS] = ACTIONS(4985), - [anon_sym_DASH_DASH] = ACTIONS(4985), - [anon_sym_BANG_BANG] = ACTIONS(4985), - [anon_sym_suspend] = ACTIONS(4983), - [anon_sym_sealed] = ACTIONS(4983), - [anon_sym_annotation] = ACTIONS(4983), - [anon_sym_data] = ACTIONS(4983), - [anon_sym_inner] = ACTIONS(4983), - [anon_sym_value] = ACTIONS(4983), - [anon_sym_override] = ACTIONS(4983), - [anon_sym_lateinit] = ACTIONS(4983), - [anon_sym_public] = ACTIONS(4983), - [anon_sym_private] = ACTIONS(4983), - [anon_sym_internal] = ACTIONS(4983), - [anon_sym_protected] = ACTIONS(4983), - [anon_sym_tailrec] = ACTIONS(4983), - [anon_sym_operator] = ACTIONS(4983), - [anon_sym_infix] = ACTIONS(4983), - [anon_sym_inline] = ACTIONS(4983), - [anon_sym_external] = ACTIONS(4983), - [sym_property_modifier] = ACTIONS(4983), - [anon_sym_abstract] = ACTIONS(4983), - [anon_sym_final] = ACTIONS(4983), - [anon_sym_open] = ACTIONS(4983), - [anon_sym_vararg] = ACTIONS(4983), - [anon_sym_noinline] = ACTIONS(4983), - [anon_sym_crossinline] = ACTIONS(4983), - [anon_sym_expect] = ACTIONS(4983), - [anon_sym_actual] = ACTIONS(4983), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4985), - [sym__automatic_semicolon] = ACTIONS(4985), - [sym_safe_nav] = ACTIONS(4985), + [3988] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4036] = { - [sym__alpha_identifier] = ACTIONS(4999), - [anon_sym_AT] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_DOT] = ACTIONS(4999), - [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_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_value] = 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), + [3989] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3143), + [anon_sym_DASH_EQ] = ACTIONS(3143), + [anon_sym_STAR_EQ] = ACTIONS(3143), + [anon_sym_SLASH_EQ] = ACTIONS(3143), + [anon_sym_PERCENT_EQ] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [3990] = { + [sym__alpha_identifier] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4337), + [anon_sym_LBRACK] = ACTIONS(4337), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_as] = ACTIONS(4335), + [anon_sym_EQ] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_LPAREN] = ACTIONS(4337), + [anon_sym_COMMA] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_GT] = ACTIONS(4335), + [anon_sym_where] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4335), + [sym_label] = ACTIONS(4337), + [anon_sym_in] = ACTIONS(4335), + [anon_sym_DOT_DOT] = ACTIONS(4337), + [anon_sym_QMARK_COLON] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_PIPE_PIPE] = ACTIONS(4337), + [anon_sym_else] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_PLUS_EQ] = ACTIONS(4337), + [anon_sym_DASH_EQ] = ACTIONS(4337), + [anon_sym_STAR_EQ] = ACTIONS(4337), + [anon_sym_SLASH_EQ] = ACTIONS(4337), + [anon_sym_PERCENT_EQ] = ACTIONS(4337), + [anon_sym_BANG_EQ] = ACTIONS(4335), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4337), + [anon_sym_EQ_EQ] = ACTIONS(4335), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4337), + [anon_sym_LT_EQ] = ACTIONS(4337), + [anon_sym_GT_EQ] = ACTIONS(4337), + [anon_sym_BANGin] = ACTIONS(4337), + [anon_sym_is] = ACTIONS(4335), + [anon_sym_BANGis] = ACTIONS(4337), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_PERCENT] = ACTIONS(4335), + [anon_sym_as_QMARK] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_BANG_BANG] = ACTIONS(4337), + [anon_sym_suspend] = ACTIONS(4335), + [anon_sym_sealed] = ACTIONS(4335), + [anon_sym_annotation] = ACTIONS(4335), + [anon_sym_data] = ACTIONS(4335), + [anon_sym_inner] = ACTIONS(4335), + [anon_sym_value] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_lateinit] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_internal] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_tailrec] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_infix] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym_external] = ACTIONS(4335), + [sym_property_modifier] = ACTIONS(4335), + [anon_sym_abstract] = ACTIONS(4335), + [anon_sym_final] = ACTIONS(4335), + [anon_sym_open] = ACTIONS(4335), + [anon_sym_vararg] = ACTIONS(4335), + [anon_sym_noinline] = ACTIONS(4335), + [anon_sym_crossinline] = ACTIONS(4335), + [anon_sym_expect] = ACTIONS(4335), + [anon_sym_actual] = ACTIONS(4335), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4337), + [sym__automatic_semicolon] = ACTIONS(4337), + [sym_safe_nav] = ACTIONS(4337), + [sym_multiline_comment] = ACTIONS(3), + }, + [3991] = { + [sym__alpha_identifier] = ACTIONS(4714), + [anon_sym_AT] = ACTIONS(4716), + [anon_sym_LBRACK] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_as] = ACTIONS(4714), + [anon_sym_EQ] = ACTIONS(4714), + [anon_sym_LBRACE] = ACTIONS(4716), + [anon_sym_RBRACE] = ACTIONS(4716), + [anon_sym_LPAREN] = ACTIONS(4716), + [anon_sym_COMMA] = ACTIONS(4716), + [anon_sym_LT] = ACTIONS(4714), + [anon_sym_GT] = ACTIONS(4714), + [anon_sym_where] = ACTIONS(4714), + [anon_sym_SEMI] = ACTIONS(4716), + [anon_sym_get] = ACTIONS(4714), + [anon_sym_set] = ACTIONS(4714), + [anon_sym_STAR] = ACTIONS(4714), + [sym_label] = ACTIONS(4716), + [anon_sym_in] = ACTIONS(4714), + [anon_sym_DOT_DOT] = ACTIONS(4716), + [anon_sym_QMARK_COLON] = ACTIONS(4716), + [anon_sym_AMP_AMP] = ACTIONS(4716), + [anon_sym_PIPE_PIPE] = ACTIONS(4716), + [anon_sym_else] = ACTIONS(4714), + [anon_sym_COLON_COLON] = ACTIONS(4716), + [anon_sym_PLUS_EQ] = ACTIONS(4716), + [anon_sym_DASH_EQ] = ACTIONS(4716), + [anon_sym_STAR_EQ] = ACTIONS(4716), + [anon_sym_SLASH_EQ] = ACTIONS(4716), + [anon_sym_PERCENT_EQ] = ACTIONS(4716), + [anon_sym_BANG_EQ] = ACTIONS(4714), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4716), + [anon_sym_EQ_EQ] = ACTIONS(4714), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4716), + [anon_sym_LT_EQ] = ACTIONS(4716), + [anon_sym_GT_EQ] = ACTIONS(4716), + [anon_sym_BANGin] = ACTIONS(4716), + [anon_sym_is] = ACTIONS(4714), + [anon_sym_BANGis] = ACTIONS(4716), + [anon_sym_PLUS] = ACTIONS(4714), + [anon_sym_DASH] = ACTIONS(4714), + [anon_sym_SLASH] = ACTIONS(4714), + [anon_sym_PERCENT] = ACTIONS(4714), + [anon_sym_as_QMARK] = ACTIONS(4716), + [anon_sym_PLUS_PLUS] = ACTIONS(4716), + [anon_sym_DASH_DASH] = ACTIONS(4716), + [anon_sym_BANG_BANG] = ACTIONS(4716), + [anon_sym_suspend] = ACTIONS(4714), + [anon_sym_sealed] = ACTIONS(4714), + [anon_sym_annotation] = ACTIONS(4714), + [anon_sym_data] = ACTIONS(4714), + [anon_sym_inner] = ACTIONS(4714), + [anon_sym_value] = ACTIONS(4714), + [anon_sym_override] = ACTIONS(4714), + [anon_sym_lateinit] = ACTIONS(4714), + [anon_sym_public] = ACTIONS(4714), + [anon_sym_private] = ACTIONS(4714), + [anon_sym_internal] = ACTIONS(4714), + [anon_sym_protected] = ACTIONS(4714), + [anon_sym_tailrec] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(4714), + [anon_sym_infix] = ACTIONS(4714), + [anon_sym_inline] = ACTIONS(4714), + [anon_sym_external] = ACTIONS(4714), + [sym_property_modifier] = ACTIONS(4714), + [anon_sym_abstract] = ACTIONS(4714), + [anon_sym_final] = ACTIONS(4714), + [anon_sym_open] = ACTIONS(4714), + [anon_sym_vararg] = ACTIONS(4714), + [anon_sym_noinline] = ACTIONS(4714), + [anon_sym_crossinline] = ACTIONS(4714), + [anon_sym_expect] = ACTIONS(4714), + [anon_sym_actual] = ACTIONS(4714), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4716), + [sym__automatic_semicolon] = ACTIONS(4716), + [sym_safe_nav] = ACTIONS(4716), + [sym_multiline_comment] = ACTIONS(3), + }, + [3992] = { + [sym__alpha_identifier] = ACTIONS(5077), + [anon_sym_AT] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_DOT] = ACTIONS(5077), + [anon_sym_as] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(5077), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_where] = ACTIONS(5077), + [anon_sym_SEMI] = ACTIONS(5079), + [anon_sym_get] = ACTIONS(5077), + [anon_sym_set] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [sym_label] = ACTIONS(5079), + [anon_sym_in] = ACTIONS(5077), + [anon_sym_DOT_DOT] = ACTIONS(5079), + [anon_sym_QMARK_COLON] = ACTIONS(5079), + [anon_sym_AMP_AMP] = ACTIONS(5079), + [anon_sym_PIPE_PIPE] = ACTIONS(5079), + [anon_sym_else] = ACTIONS(5077), + [anon_sym_COLON_COLON] = ACTIONS(5079), + [anon_sym_PLUS_EQ] = ACTIONS(5079), + [anon_sym_DASH_EQ] = ACTIONS(5079), + [anon_sym_STAR_EQ] = ACTIONS(5079), + [anon_sym_SLASH_EQ] = ACTIONS(5079), + [anon_sym_PERCENT_EQ] = ACTIONS(5079), + [anon_sym_BANG_EQ] = ACTIONS(5077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5079), + [anon_sym_EQ_EQ] = ACTIONS(5077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5079), + [anon_sym_LT_EQ] = ACTIONS(5079), + [anon_sym_GT_EQ] = ACTIONS(5079), + [anon_sym_BANGin] = ACTIONS(5079), + [anon_sym_is] = ACTIONS(5077), + [anon_sym_BANGis] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_PERCENT] = ACTIONS(5077), + [anon_sym_as_QMARK] = ACTIONS(5079), + [anon_sym_PLUS_PLUS] = ACTIONS(5079), + [anon_sym_DASH_DASH] = ACTIONS(5079), + [anon_sym_BANG_BANG] = ACTIONS(5079), + [anon_sym_suspend] = ACTIONS(5077), + [anon_sym_sealed] = ACTIONS(5077), + [anon_sym_annotation] = ACTIONS(5077), + [anon_sym_data] = ACTIONS(5077), + [anon_sym_inner] = ACTIONS(5077), + [anon_sym_value] = ACTIONS(5077), + [anon_sym_override] = ACTIONS(5077), + [anon_sym_lateinit] = ACTIONS(5077), + [anon_sym_public] = ACTIONS(5077), + [anon_sym_private] = ACTIONS(5077), + [anon_sym_internal] = ACTIONS(5077), + [anon_sym_protected] = ACTIONS(5077), + [anon_sym_tailrec] = ACTIONS(5077), + [anon_sym_operator] = ACTIONS(5077), + [anon_sym_infix] = ACTIONS(5077), + [anon_sym_inline] = ACTIONS(5077), + [anon_sym_external] = ACTIONS(5077), + [sym_property_modifier] = ACTIONS(5077), + [anon_sym_abstract] = ACTIONS(5077), + [anon_sym_final] = ACTIONS(5077), + [anon_sym_open] = ACTIONS(5077), + [anon_sym_vararg] = ACTIONS(5077), + [anon_sym_noinline] = ACTIONS(5077), + [anon_sym_crossinline] = ACTIONS(5077), + [anon_sym_expect] = ACTIONS(5077), + [anon_sym_actual] = ACTIONS(5077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5079), + [sym__automatic_semicolon] = ACTIONS(5079), + [sym_safe_nav] = ACTIONS(5079), + [sym_multiline_comment] = ACTIONS(3), + }, + [3993] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [3994] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [3995] = { + [sym__alpha_identifier] = ACTIONS(4343), + [anon_sym_AT] = ACTIONS(4345), + [anon_sym_LBRACK] = ACTIONS(4345), + [anon_sym_DOT] = ACTIONS(4343), + [anon_sym_as] = ACTIONS(4343), + [anon_sym_EQ] = ACTIONS(4884), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_LPAREN] = ACTIONS(4345), + [anon_sym_COMMA] = ACTIONS(4345), + [anon_sym_LT] = ACTIONS(4343), + [anon_sym_GT] = ACTIONS(4343), + [anon_sym_where] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym_get] = ACTIONS(4343), + [anon_sym_set] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4343), + [sym_label] = ACTIONS(4345), + [anon_sym_in] = ACTIONS(4343), + [anon_sym_DOT_DOT] = ACTIONS(4345), + [anon_sym_QMARK_COLON] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_PIPE_PIPE] = ACTIONS(4345), + [anon_sym_else] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_PLUS_EQ] = ACTIONS(4886), + [anon_sym_DASH_EQ] = ACTIONS(4886), + [anon_sym_STAR_EQ] = ACTIONS(4886), + [anon_sym_SLASH_EQ] = ACTIONS(4886), + [anon_sym_PERCENT_EQ] = ACTIONS(4886), + [anon_sym_BANG_EQ] = ACTIONS(4343), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4345), + [anon_sym_EQ_EQ] = ACTIONS(4343), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4345), + [anon_sym_LT_EQ] = ACTIONS(4345), + [anon_sym_GT_EQ] = ACTIONS(4345), + [anon_sym_BANGin] = ACTIONS(4345), + [anon_sym_is] = ACTIONS(4343), + [anon_sym_BANGis] = ACTIONS(4345), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_SLASH] = ACTIONS(4343), + [anon_sym_PERCENT] = ACTIONS(4343), + [anon_sym_as_QMARK] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_BANG_BANG] = ACTIONS(4345), + [anon_sym_suspend] = ACTIONS(4343), + [anon_sym_sealed] = ACTIONS(4343), + [anon_sym_annotation] = ACTIONS(4343), + [anon_sym_data] = ACTIONS(4343), + [anon_sym_inner] = ACTIONS(4343), + [anon_sym_value] = ACTIONS(4343), + [anon_sym_override] = ACTIONS(4343), + [anon_sym_lateinit] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_internal] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_tailrec] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_infix] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym_external] = ACTIONS(4343), + [sym_property_modifier] = ACTIONS(4343), + [anon_sym_abstract] = ACTIONS(4343), + [anon_sym_final] = ACTIONS(4343), + [anon_sym_open] = ACTIONS(4343), + [anon_sym_vararg] = ACTIONS(4343), + [anon_sym_noinline] = ACTIONS(4343), + [anon_sym_crossinline] = ACTIONS(4343), + [anon_sym_expect] = ACTIONS(4343), + [anon_sym_actual] = ACTIONS(4343), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4345), + [sym__automatic_semicolon] = ACTIONS(4345), + [sym_safe_nav] = ACTIONS(4345), + [sym_multiline_comment] = ACTIONS(3), + }, + [3996] = { + [sym__alpha_identifier] = ACTIONS(4722), + [anon_sym_AT] = ACTIONS(4724), + [anon_sym_LBRACK] = ACTIONS(4724), + [anon_sym_DOT] = ACTIONS(4722), + [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_SEMI] = ACTIONS(4724), + [anon_sym_get] = ACTIONS(4722), + [anon_sym_set] = ACTIONS(4722), + [anon_sym_STAR] = ACTIONS(4722), + [sym_label] = ACTIONS(4724), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_DOT_DOT] = ACTIONS(4724), + [anon_sym_QMARK_COLON] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_else] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4724), + [anon_sym_PLUS_EQ] = ACTIONS(4724), + [anon_sym_DASH_EQ] = ACTIONS(4724), + [anon_sym_STAR_EQ] = ACTIONS(4724), + [anon_sym_SLASH_EQ] = ACTIONS(4724), + [anon_sym_PERCENT_EQ] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4722), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4724), + [anon_sym_LT_EQ] = ACTIONS(4724), + [anon_sym_GT_EQ] = ACTIONS(4724), + [anon_sym_BANGin] = ACTIONS(4724), + [anon_sym_is] = ACTIONS(4722), + [anon_sym_BANGis] = ACTIONS(4724), + [anon_sym_PLUS] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_SLASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_as_QMARK] = ACTIONS(4724), + [anon_sym_PLUS_PLUS] = ACTIONS(4724), + [anon_sym_DASH_DASH] = ACTIONS(4724), + [anon_sym_BANG_BANG] = ACTIONS(4724), + [anon_sym_suspend] = ACTIONS(4722), + [anon_sym_sealed] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4722), + [anon_sym_data] = ACTIONS(4722), + [anon_sym_inner] = ACTIONS(4722), + [anon_sym_value] = ACTIONS(4722), + [anon_sym_override] = ACTIONS(4722), + [anon_sym_lateinit] = ACTIONS(4722), + [anon_sym_public] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4722), + [anon_sym_internal] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4722), + [anon_sym_tailrec] = ACTIONS(4722), + [anon_sym_operator] = ACTIONS(4722), + [anon_sym_infix] = ACTIONS(4722), + [anon_sym_inline] = ACTIONS(4722), + [anon_sym_external] = ACTIONS(4722), + [sym_property_modifier] = ACTIONS(4722), + [anon_sym_abstract] = ACTIONS(4722), + [anon_sym_final] = ACTIONS(4722), + [anon_sym_open] = ACTIONS(4722), + [anon_sym_vararg] = ACTIONS(4722), + [anon_sym_noinline] = ACTIONS(4722), + [anon_sym_crossinline] = ACTIONS(4722), + [anon_sym_expect] = ACTIONS(4722), + [anon_sym_actual] = ACTIONS(4722), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4724), + [sym__automatic_semicolon] = ACTIONS(4724), + [sym_safe_nav] = ACTIONS(4724), + [sym_multiline_comment] = ACTIONS(3), + }, + [3997] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [3998] = { + [sym_function_body] = STATE(3167), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = 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_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_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(4144), + [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_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + [anon_sym_this_AT] = ACTIONS(4144), + [anon_sym_super_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), + }, + [3999] = { + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_fun] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_this] = ACTIONS(4347), + [anon_sym_super] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_null] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_when] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4349), + [anon_sym_continue_AT] = ACTIONS(4349), + [anon_sym_break_AT] = ACTIONS(4349), + [anon_sym_this_AT] = ACTIONS(4349), + [anon_sym_super_AT] = ACTIONS(4349), + [sym_real_literal] = ACTIONS(4349), + [sym_integer_literal] = ACTIONS(4347), + [sym_hex_literal] = ACTIONS(4349), + [sym_bin_literal] = ACTIONS(4349), + [anon_sym_true] = ACTIONS(4347), + [anon_sym_false] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4349), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4349), + }, + [4000] = { + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(4077), + [anon_sym_LBRACE] = ACTIONS(4079), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4077), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_PLUS_EQ] = ACTIONS(4079), + [anon_sym_DASH_EQ] = ACTIONS(4079), + [anon_sym_STAR_EQ] = ACTIONS(4079), + [anon_sym_SLASH_EQ] = ACTIONS(4079), + [anon_sym_PERCENT_EQ] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4077), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + }, + [4001] = { + [sym__alpha_identifier] = ACTIONS(4331), + [anon_sym_AT] = ACTIONS(4333), + [anon_sym_LBRACK] = ACTIONS(4333), + [anon_sym_DOT] = ACTIONS(4331), + [anon_sym_as] = ACTIONS(4331), + [anon_sym_EQ] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_LPAREN] = ACTIONS(4333), + [anon_sym_COMMA] = ACTIONS(4333), + [anon_sym_LT] = ACTIONS(4331), + [anon_sym_GT] = ACTIONS(4331), + [anon_sym_where] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym_get] = ACTIONS(4331), + [anon_sym_set] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4331), + [sym_label] = ACTIONS(4333), + [anon_sym_in] = ACTIONS(4331), + [anon_sym_DOT_DOT] = ACTIONS(4333), + [anon_sym_QMARK_COLON] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_PIPE_PIPE] = ACTIONS(4333), + [anon_sym_else] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_PLUS_EQ] = ACTIONS(4333), + [anon_sym_DASH_EQ] = ACTIONS(4333), + [anon_sym_STAR_EQ] = ACTIONS(4333), + [anon_sym_SLASH_EQ] = ACTIONS(4333), + [anon_sym_PERCENT_EQ] = ACTIONS(4333), + [anon_sym_BANG_EQ] = ACTIONS(4331), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4333), + [anon_sym_EQ_EQ] = ACTIONS(4331), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4333), + [anon_sym_LT_EQ] = ACTIONS(4333), + [anon_sym_GT_EQ] = ACTIONS(4333), + [anon_sym_BANGin] = ACTIONS(4333), + [anon_sym_is] = ACTIONS(4331), + [anon_sym_BANGis] = ACTIONS(4333), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_SLASH] = ACTIONS(4331), + [anon_sym_PERCENT] = ACTIONS(4331), + [anon_sym_as_QMARK] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_BANG_BANG] = ACTIONS(4333), + [anon_sym_suspend] = ACTIONS(4331), + [anon_sym_sealed] = ACTIONS(4331), + [anon_sym_annotation] = ACTIONS(4331), + [anon_sym_data] = ACTIONS(4331), + [anon_sym_inner] = ACTIONS(4331), + [anon_sym_value] = ACTIONS(4331), + [anon_sym_override] = ACTIONS(4331), + [anon_sym_lateinit] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_internal] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_tailrec] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_infix] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym_external] = ACTIONS(4331), + [sym_property_modifier] = ACTIONS(4331), + [anon_sym_abstract] = ACTIONS(4331), + [anon_sym_final] = ACTIONS(4331), + [anon_sym_open] = ACTIONS(4331), + [anon_sym_vararg] = ACTIONS(4331), + [anon_sym_noinline] = ACTIONS(4331), + [anon_sym_crossinline] = ACTIONS(4331), + [anon_sym_expect] = ACTIONS(4331), + [anon_sym_actual] = ACTIONS(4331), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4333), + [sym__automatic_semicolon] = ACTIONS(4333), + [sym_safe_nav] = ACTIONS(4333), + [sym_multiline_comment] = ACTIONS(3), + }, + [4002] = { + [sym__alpha_identifier] = ACTIONS(7133), + [anon_sym_AT] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_typealias] = ACTIONS(7133), + [anon_sym_class] = ACTIONS(7133), + [anon_sym_interface] = ACTIONS(7133), + [anon_sym_enum] = ACTIONS(7133), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LPAREN] = ACTIONS(7135), + [anon_sym_val] = ACTIONS(7133), + [anon_sym_var] = ACTIONS(7133), + [anon_sym_object] = ACTIONS(7133), + [anon_sym_fun] = ACTIONS(7133), + [anon_sym_get] = ACTIONS(7133), + [anon_sym_set] = ACTIONS(7133), + [anon_sym_this] = ACTIONS(7133), + [anon_sym_super] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7135), + [sym_label] = ACTIONS(7133), + [anon_sym_for] = ACTIONS(7133), + [anon_sym_while] = ACTIONS(7133), + [anon_sym_do] = ACTIONS(7133), + [anon_sym_null] = ACTIONS(7133), + [anon_sym_if] = ACTIONS(7133), + [anon_sym_when] = ACTIONS(7133), + [anon_sym_try] = ACTIONS(7133), + [anon_sym_throw] = ACTIONS(7133), + [anon_sym_return] = ACTIONS(7133), + [anon_sym_continue] = ACTIONS(7133), + [anon_sym_break] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_BANG] = ACTIONS(7135), + [anon_sym_suspend] = ACTIONS(7133), + [anon_sym_sealed] = ACTIONS(7133), + [anon_sym_annotation] = ACTIONS(7133), + [anon_sym_data] = ACTIONS(7133), + [anon_sym_inner] = ACTIONS(7133), + [anon_sym_value] = ACTIONS(7133), + [anon_sym_override] = ACTIONS(7133), + [anon_sym_lateinit] = ACTIONS(7133), + [anon_sym_public] = ACTIONS(7133), + [anon_sym_private] = ACTIONS(7133), + [anon_sym_internal] = ACTIONS(7133), + [anon_sym_protected] = ACTIONS(7133), + [anon_sym_tailrec] = ACTIONS(7133), + [anon_sym_operator] = ACTIONS(7133), + [anon_sym_infix] = ACTIONS(7133), + [anon_sym_inline] = ACTIONS(7133), + [anon_sym_external] = ACTIONS(7133), + [sym_property_modifier] = ACTIONS(7133), + [anon_sym_abstract] = ACTIONS(7133), + [anon_sym_final] = ACTIONS(7133), + [anon_sym_open] = ACTIONS(7133), + [anon_sym_vararg] = ACTIONS(7133), + [anon_sym_noinline] = ACTIONS(7133), + [anon_sym_crossinline] = ACTIONS(7133), + [anon_sym_expect] = ACTIONS(7133), + [anon_sym_actual] = ACTIONS(7133), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7135), + [anon_sym_continue_AT] = ACTIONS(7135), + [anon_sym_break_AT] = ACTIONS(7135), + [anon_sym_this_AT] = ACTIONS(7135), + [anon_sym_super_AT] = ACTIONS(7135), + [sym_real_literal] = ACTIONS(7135), + [sym_integer_literal] = ACTIONS(7133), + [sym_hex_literal] = ACTIONS(7135), + [sym_bin_literal] = ACTIONS(7135), + [anon_sym_true] = ACTIONS(7133), + [anon_sym_false] = ACTIONS(7133), + [anon_sym_SQUOTE] = ACTIONS(7135), + [sym__backtick_identifier] = ACTIONS(7135), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7135), + }, + [4003] = { + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4087), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_PLUS_EQ] = ACTIONS(4089), + [anon_sym_DASH_EQ] = ACTIONS(4089), + [anon_sym_STAR_EQ] = ACTIONS(4089), + [anon_sym_SLASH_EQ] = ACTIONS(4089), + [anon_sym_PERCENT_EQ] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4087), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [4004] = { + [sym__alpha_identifier] = ACTIONS(5157), + [anon_sym_AT] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_DOT] = ACTIONS(5157), + [anon_sym_as] = ACTIONS(5157), + [anon_sym_EQ] = ACTIONS(5157), + [anon_sym_LBRACE] = ACTIONS(5159), + [anon_sym_RBRACE] = ACTIONS(5159), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_where] = ACTIONS(5157), + [anon_sym_SEMI] = ACTIONS(5159), + [anon_sym_get] = ACTIONS(5157), + [anon_sym_set] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [sym_label] = ACTIONS(5159), + [anon_sym_in] = ACTIONS(5157), + [anon_sym_DOT_DOT] = ACTIONS(5159), + [anon_sym_QMARK_COLON] = ACTIONS(5159), + [anon_sym_AMP_AMP] = ACTIONS(5159), + [anon_sym_PIPE_PIPE] = ACTIONS(5159), + [anon_sym_else] = ACTIONS(5157), + [anon_sym_COLON_COLON] = ACTIONS(5159), + [anon_sym_PLUS_EQ] = ACTIONS(5159), + [anon_sym_DASH_EQ] = ACTIONS(5159), + [anon_sym_STAR_EQ] = ACTIONS(5159), + [anon_sym_SLASH_EQ] = ACTIONS(5159), + [anon_sym_PERCENT_EQ] = ACTIONS(5159), + [anon_sym_BANG_EQ] = ACTIONS(5157), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5159), + [anon_sym_EQ_EQ] = ACTIONS(5157), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5159), + [anon_sym_LT_EQ] = ACTIONS(5159), + [anon_sym_GT_EQ] = ACTIONS(5159), + [anon_sym_BANGin] = ACTIONS(5159), + [anon_sym_is] = ACTIONS(5157), + [anon_sym_BANGis] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_PERCENT] = ACTIONS(5157), + [anon_sym_as_QMARK] = ACTIONS(5159), + [anon_sym_PLUS_PLUS] = ACTIONS(5159), + [anon_sym_DASH_DASH] = ACTIONS(5159), + [anon_sym_BANG_BANG] = ACTIONS(5159), + [anon_sym_suspend] = ACTIONS(5157), + [anon_sym_sealed] = ACTIONS(5157), + [anon_sym_annotation] = ACTIONS(5157), + [anon_sym_data] = ACTIONS(5157), + [anon_sym_inner] = ACTIONS(5157), + [anon_sym_value] = ACTIONS(5157), + [anon_sym_override] = ACTIONS(5157), + [anon_sym_lateinit] = ACTIONS(5157), + [anon_sym_public] = ACTIONS(5157), + [anon_sym_private] = ACTIONS(5157), + [anon_sym_internal] = ACTIONS(5157), + [anon_sym_protected] = ACTIONS(5157), + [anon_sym_tailrec] = ACTIONS(5157), + [anon_sym_operator] = ACTIONS(5157), + [anon_sym_infix] = ACTIONS(5157), + [anon_sym_inline] = ACTIONS(5157), + [anon_sym_external] = ACTIONS(5157), + [sym_property_modifier] = ACTIONS(5157), + [anon_sym_abstract] = ACTIONS(5157), + [anon_sym_final] = ACTIONS(5157), + [anon_sym_open] = ACTIONS(5157), + [anon_sym_vararg] = ACTIONS(5157), + [anon_sym_noinline] = ACTIONS(5157), + [anon_sym_crossinline] = ACTIONS(5157), + [anon_sym_expect] = ACTIONS(5157), + [anon_sym_actual] = ACTIONS(5157), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5159), + [sym__automatic_semicolon] = ACTIONS(5159), + [sym_safe_nav] = ACTIONS(5159), + [sym_multiline_comment] = ACTIONS(3), + }, + [4005] = { + [sym__alpha_identifier] = ACTIONS(5015), + [anon_sym_AT] = ACTIONS(5017), + [anon_sym_LBRACK] = ACTIONS(5017), + [anon_sym_DOT] = ACTIONS(5015), + [anon_sym_as] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5017), + [anon_sym_COMMA] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5015), + [anon_sym_GT] = ACTIONS(5015), + [anon_sym_where] = ACTIONS(5015), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_get] = ACTIONS(5015), + [anon_sym_set] = ACTIONS(5015), + [anon_sym_STAR] = ACTIONS(5015), + [sym_label] = ACTIONS(5017), + [anon_sym_in] = ACTIONS(5015), + [anon_sym_DOT_DOT] = ACTIONS(5017), + [anon_sym_QMARK_COLON] = ACTIONS(5017), + [anon_sym_AMP_AMP] = ACTIONS(5017), + [anon_sym_PIPE_PIPE] = ACTIONS(5017), + [anon_sym_else] = ACTIONS(5015), + [anon_sym_COLON_COLON] = ACTIONS(5017), + [anon_sym_PLUS_EQ] = ACTIONS(5017), + [anon_sym_DASH_EQ] = ACTIONS(5017), + [anon_sym_STAR_EQ] = ACTIONS(5017), + [anon_sym_SLASH_EQ] = ACTIONS(5017), + [anon_sym_PERCENT_EQ] = ACTIONS(5017), + [anon_sym_BANG_EQ] = ACTIONS(5015), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5017), + [anon_sym_EQ_EQ] = ACTIONS(5015), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5017), + [anon_sym_LT_EQ] = ACTIONS(5017), + [anon_sym_GT_EQ] = ACTIONS(5017), + [anon_sym_BANGin] = ACTIONS(5017), + [anon_sym_is] = ACTIONS(5015), + [anon_sym_BANGis] = ACTIONS(5017), + [anon_sym_PLUS] = ACTIONS(5015), + [anon_sym_DASH] = ACTIONS(5015), + [anon_sym_SLASH] = ACTIONS(5015), + [anon_sym_PERCENT] = ACTIONS(5015), + [anon_sym_as_QMARK] = ACTIONS(5017), + [anon_sym_PLUS_PLUS] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_BANG_BANG] = ACTIONS(5017), + [anon_sym_suspend] = ACTIONS(5015), + [anon_sym_sealed] = ACTIONS(5015), + [anon_sym_annotation] = ACTIONS(5015), + [anon_sym_data] = ACTIONS(5015), + [anon_sym_inner] = ACTIONS(5015), + [anon_sym_value] = ACTIONS(5015), + [anon_sym_override] = ACTIONS(5015), + [anon_sym_lateinit] = ACTIONS(5015), + [anon_sym_public] = ACTIONS(5015), + [anon_sym_private] = ACTIONS(5015), + [anon_sym_internal] = ACTIONS(5015), + [anon_sym_protected] = ACTIONS(5015), + [anon_sym_tailrec] = ACTIONS(5015), + [anon_sym_operator] = ACTIONS(5015), + [anon_sym_infix] = ACTIONS(5015), + [anon_sym_inline] = ACTIONS(5015), + [anon_sym_external] = ACTIONS(5015), + [sym_property_modifier] = ACTIONS(5015), + [anon_sym_abstract] = ACTIONS(5015), + [anon_sym_final] = ACTIONS(5015), + [anon_sym_open] = ACTIONS(5015), + [anon_sym_vararg] = ACTIONS(5015), + [anon_sym_noinline] = ACTIONS(5015), + [anon_sym_crossinline] = ACTIONS(5015), + [anon_sym_expect] = ACTIONS(5015), + [anon_sym_actual] = ACTIONS(5015), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(5017), + [sym__automatic_semicolon] = ACTIONS(5017), + [sym_safe_nav] = ACTIONS(5017), + [sym_multiline_comment] = ACTIONS(3), + }, + [4006] = { + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [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_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_value] = 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), + [sym_multiline_comment] = ACTIONS(3), + }, + [4007] = { + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_EQ] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [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), + }, + [4008] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [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(7121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4009] = { + [sym_function_body] = STATE(3962), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_PLUS_EQ] = ACTIONS(4418), + [anon_sym_DASH_EQ] = ACTIONS(4418), + [anon_sym_STAR_EQ] = ACTIONS(4418), + [anon_sym_SLASH_EQ] = ACTIONS(4418), + [anon_sym_PERCENT_EQ] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4416), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + }, + [4010] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7137), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + }, + [4011] = { + [sym_function_body] = STATE(3216), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_object] = ACTIONS(4097), + [anon_sym_fun] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_this] = ACTIONS(4097), + [anon_sym_super] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4097), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_null] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4097), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_when] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4097), + [anon_sym_throw] = ACTIONS(4097), + [anon_sym_return] = ACTIONS(4097), + [anon_sym_continue] = ACTIONS(4097), + [anon_sym_break] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG] = ACTIONS(4097), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4099), + [anon_sym_continue_AT] = ACTIONS(4099), + [anon_sym_break_AT] = ACTIONS(4099), + [anon_sym_this_AT] = ACTIONS(4099), + [anon_sym_super_AT] = ACTIONS(4099), + [sym_real_literal] = ACTIONS(4099), + [sym_integer_literal] = ACTIONS(4097), + [sym_hex_literal] = ACTIONS(4099), + [sym_bin_literal] = ACTIONS(4099), + [anon_sym_true] = ACTIONS(4097), + [anon_sym_false] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4099), + }, + [4012] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7139), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + }, + [4013] = { + [sym_function_body] = STATE(3270), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_object] = ACTIONS(4087), + [anon_sym_fun] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_this] = ACTIONS(4087), + [anon_sym_super] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4087), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_null] = ACTIONS(4087), + [anon_sym_if] = ACTIONS(4087), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_when] = ACTIONS(4087), + [anon_sym_try] = ACTIONS(4087), + [anon_sym_throw] = ACTIONS(4087), + [anon_sym_return] = ACTIONS(4087), + [anon_sym_continue] = ACTIONS(4087), + [anon_sym_break] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG] = ACTIONS(4087), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4089), + [anon_sym_continue_AT] = ACTIONS(4089), + [anon_sym_break_AT] = ACTIONS(4089), + [anon_sym_this_AT] = ACTIONS(4089), + [anon_sym_super_AT] = ACTIONS(4089), + [sym_real_literal] = ACTIONS(4089), + [sym_integer_literal] = ACTIONS(4087), + [sym_hex_literal] = ACTIONS(4089), + [sym_bin_literal] = ACTIONS(4089), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_SQUOTE] = ACTIONS(4089), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4089), + }, + [4014] = { + [sym__alpha_identifier] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3067), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(3065), + [anon_sym_as] = ACTIONS(3065), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3065), + [anon_sym_set] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [sym_label] = ACTIONS(3067), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3067), + [anon_sym_QMARK_COLON] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3067), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PERCENT] = ACTIONS(3065), + [anon_sym_as_QMARK] = ACTIONS(3067), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_BANG_BANG] = ACTIONS(3067), + [anon_sym_suspend] = ACTIONS(3065), + [anon_sym_sealed] = ACTIONS(3065), + [anon_sym_annotation] = ACTIONS(3065), + [anon_sym_data] = ACTIONS(3065), + [anon_sym_inner] = ACTIONS(3065), + [anon_sym_value] = ACTIONS(3065), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_lateinit] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_internal] = ACTIONS(3065), + [anon_sym_protected] = ACTIONS(3065), + [anon_sym_tailrec] = ACTIONS(3065), + [anon_sym_operator] = ACTIONS(3065), + [anon_sym_infix] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_external] = ACTIONS(3065), + [sym_property_modifier] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_open] = ACTIONS(3065), + [anon_sym_vararg] = ACTIONS(3065), + [anon_sym_noinline] = ACTIONS(3065), + [anon_sym_crossinline] = ACTIONS(3065), + [anon_sym_expect] = ACTIONS(3065), + [anon_sym_actual] = ACTIONS(3065), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3067), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(3067), + [sym_multiline_comment] = ACTIONS(3), + }, + [4015] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(7141), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_where] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + }, + [4016] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(7143), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + }, + [4017] = { + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_EQ] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3226), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_PLUS_EQ] = ACTIONS(3230), + [anon_sym_DASH_EQ] = ACTIONS(3230), + [anon_sym_STAR_EQ] = ACTIONS(3230), + [anon_sym_SLASH_EQ] = ACTIONS(3230), + [anon_sym_PERCENT_EQ] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3226), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), + [sym_multiline_comment] = ACTIONS(3), + }, + [4018] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4019] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4020] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [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(7121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(5001), - [sym__automatic_semicolon] = ACTIONS(5001), - [sym_safe_nav] = ACTIONS(5001), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4037] = { - [sym_function_body] = STATE(3464), - [sym__block] = STATE(3577), + [4021] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4022] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(2123), + [sym__comparison_operator] = STATE(2122), + [sym__in_operator] = STATE(2121), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(2120), + [sym__multiplicative_operator] = STATE(2119), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(2118), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7071), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7117), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(7113), + [anon_sym_QMARK_COLON] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7123), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7123), + [anon_sym_LT_EQ] = ACTIONS(7125), + [anon_sym_GT_EQ] = ACTIONS(7125), + [anon_sym_BANGin] = ACTIONS(7127), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7073), + [anon_sym_DASH] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7071), + [anon_sym_PERCENT] = ACTIONS(7071), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4023] = { + [sym__alpha_identifier] = ACTIONS(4992), + [anon_sym_AT] = ACTIONS(4994), + [anon_sym_LBRACK] = ACTIONS(4994), + [anon_sym_DOT] = ACTIONS(4992), + [anon_sym_as] = ACTIONS(4992), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(4994), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_LPAREN] = ACTIONS(4994), + [anon_sym_COMMA] = ACTIONS(4994), + [anon_sym_LT] = ACTIONS(4992), + [anon_sym_GT] = ACTIONS(4992), + [anon_sym_where] = ACTIONS(4992), + [anon_sym_SEMI] = ACTIONS(4994), + [anon_sym_get] = ACTIONS(4992), + [anon_sym_set] = ACTIONS(4992), + [anon_sym_STAR] = ACTIONS(4992), + [sym_label] = ACTIONS(4994), + [anon_sym_in] = ACTIONS(4992), + [anon_sym_DOT_DOT] = ACTIONS(4994), + [anon_sym_QMARK_COLON] = ACTIONS(4994), + [anon_sym_AMP_AMP] = ACTIONS(4994), + [anon_sym_PIPE_PIPE] = ACTIONS(4994), + [anon_sym_else] = ACTIONS(4992), + [anon_sym_COLON_COLON] = ACTIONS(7078), + [anon_sym_PLUS_EQ] = ACTIONS(5013), + [anon_sym_DASH_EQ] = ACTIONS(5013), + [anon_sym_STAR_EQ] = ACTIONS(5013), + [anon_sym_SLASH_EQ] = ACTIONS(5013), + [anon_sym_PERCENT_EQ] = ACTIONS(5013), + [anon_sym_BANG_EQ] = ACTIONS(4992), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4994), + [anon_sym_EQ_EQ] = ACTIONS(4992), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4994), + [anon_sym_LT_EQ] = ACTIONS(4994), + [anon_sym_GT_EQ] = ACTIONS(4994), + [anon_sym_BANGin] = ACTIONS(4994), + [anon_sym_is] = ACTIONS(4992), + [anon_sym_BANGis] = ACTIONS(4994), + [anon_sym_PLUS] = ACTIONS(4992), + [anon_sym_DASH] = ACTIONS(4992), + [anon_sym_SLASH] = ACTIONS(4992), + [anon_sym_PERCENT] = ACTIONS(4992), + [anon_sym_as_QMARK] = ACTIONS(4994), + [anon_sym_PLUS_PLUS] = ACTIONS(4994), + [anon_sym_DASH_DASH] = ACTIONS(4994), + [anon_sym_BANG_BANG] = ACTIONS(4994), + [anon_sym_suspend] = ACTIONS(4992), + [anon_sym_sealed] = ACTIONS(4992), + [anon_sym_annotation] = ACTIONS(4992), + [anon_sym_data] = ACTIONS(4992), + [anon_sym_inner] = ACTIONS(4992), + [anon_sym_value] = ACTIONS(4992), + [anon_sym_override] = ACTIONS(4992), + [anon_sym_lateinit] = ACTIONS(4992), + [anon_sym_public] = ACTIONS(4992), + [anon_sym_private] = ACTIONS(4992), + [anon_sym_internal] = ACTIONS(4992), + [anon_sym_protected] = ACTIONS(4992), + [anon_sym_tailrec] = ACTIONS(4992), + [anon_sym_operator] = ACTIONS(4992), + [anon_sym_infix] = ACTIONS(4992), + [anon_sym_inline] = ACTIONS(4992), + [anon_sym_external] = ACTIONS(4992), + [sym_property_modifier] = ACTIONS(4992), + [anon_sym_abstract] = ACTIONS(4992), + [anon_sym_final] = ACTIONS(4992), + [anon_sym_open] = ACTIONS(4992), + [anon_sym_vararg] = ACTIONS(4992), + [anon_sym_noinline] = ACTIONS(4992), + [anon_sym_crossinline] = ACTIONS(4992), + [anon_sym_expect] = ACTIONS(4992), + [anon_sym_actual] = ACTIONS(4992), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4994), + [sym__automatic_semicolon] = ACTIONS(4994), + [sym_safe_nav] = ACTIONS(4994), + [sym_multiline_comment] = ACTIONS(3), + }, + [4024] = { + [sym_function_body] = STATE(3539), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_RBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [anon_sym_DASH_GT] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + }, + [4025] = { + [sym__alpha_identifier] = ACTIONS(4618), + [anon_sym_AT] = ACTIONS(4620), + [anon_sym_LBRACK] = ACTIONS(4620), + [anon_sym_DOT] = ACTIONS(4618), + [anon_sym_as] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(4618), + [anon_sym_LBRACE] = ACTIONS(4620), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_LPAREN] = ACTIONS(4620), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_LT] = ACTIONS(4618), + [anon_sym_GT] = ACTIONS(4618), + [anon_sym_where] = ACTIONS(4618), + [anon_sym_SEMI] = ACTIONS(4620), + [anon_sym_get] = ACTIONS(4618), + [anon_sym_set] = ACTIONS(4618), + [anon_sym_STAR] = ACTIONS(4618), + [sym_label] = ACTIONS(4620), + [anon_sym_in] = ACTIONS(4618), + [anon_sym_DOT_DOT] = ACTIONS(4620), + [anon_sym_QMARK_COLON] = ACTIONS(4620), + [anon_sym_AMP_AMP] = ACTIONS(4620), + [anon_sym_PIPE_PIPE] = ACTIONS(4620), + [anon_sym_else] = ACTIONS(4618), + [anon_sym_COLON_COLON] = ACTIONS(4620), + [anon_sym_PLUS_EQ] = ACTIONS(4620), + [anon_sym_DASH_EQ] = ACTIONS(4620), + [anon_sym_STAR_EQ] = ACTIONS(4620), + [anon_sym_SLASH_EQ] = ACTIONS(4620), + [anon_sym_PERCENT_EQ] = ACTIONS(4620), + [anon_sym_BANG_EQ] = ACTIONS(4618), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4620), + [anon_sym_EQ_EQ] = ACTIONS(4618), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4620), + [anon_sym_LT_EQ] = ACTIONS(4620), + [anon_sym_GT_EQ] = ACTIONS(4620), + [anon_sym_BANGin] = ACTIONS(4620), + [anon_sym_is] = ACTIONS(4618), + [anon_sym_BANGis] = ACTIONS(4620), + [anon_sym_PLUS] = ACTIONS(4618), + [anon_sym_DASH] = ACTIONS(4618), + [anon_sym_SLASH] = ACTIONS(4618), + [anon_sym_PERCENT] = ACTIONS(4618), + [anon_sym_as_QMARK] = ACTIONS(4620), + [anon_sym_PLUS_PLUS] = ACTIONS(4620), + [anon_sym_DASH_DASH] = ACTIONS(4620), + [anon_sym_BANG_BANG] = ACTIONS(4620), + [anon_sym_suspend] = ACTIONS(4618), + [anon_sym_sealed] = ACTIONS(4618), + [anon_sym_annotation] = ACTIONS(4618), + [anon_sym_data] = ACTIONS(4618), + [anon_sym_inner] = ACTIONS(4618), + [anon_sym_value] = ACTIONS(4618), + [anon_sym_override] = ACTIONS(4618), + [anon_sym_lateinit] = ACTIONS(4618), + [anon_sym_public] = ACTIONS(4618), + [anon_sym_private] = ACTIONS(4618), + [anon_sym_internal] = ACTIONS(4618), + [anon_sym_protected] = ACTIONS(4618), + [anon_sym_tailrec] = ACTIONS(4618), + [anon_sym_operator] = ACTIONS(4618), + [anon_sym_infix] = ACTIONS(4618), + [anon_sym_inline] = ACTIONS(4618), + [anon_sym_external] = ACTIONS(4618), + [sym_property_modifier] = ACTIONS(4618), + [anon_sym_abstract] = ACTIONS(4618), + [anon_sym_final] = ACTIONS(4618), + [anon_sym_open] = ACTIONS(4618), + [anon_sym_vararg] = ACTIONS(4618), + [anon_sym_noinline] = ACTIONS(4618), + [anon_sym_crossinline] = ACTIONS(4618), + [anon_sym_expect] = ACTIONS(4618), + [anon_sym_actual] = ACTIONS(4618), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4620), + [sym__automatic_semicolon] = ACTIONS(4620), + [sym_safe_nav] = ACTIONS(4620), + [sym_multiline_comment] = ACTIONS(3), + }, + [4026] = { + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4230), + [anon_sym_LBRACE] = ACTIONS(4232), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4230), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_PLUS_EQ] = ACTIONS(4232), + [anon_sym_DASH_EQ] = ACTIONS(4232), + [anon_sym_STAR_EQ] = ACTIONS(4232), + [anon_sym_SLASH_EQ] = ACTIONS(4232), + [anon_sym_PERCENT_EQ] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4230), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), + [sym_multiline_comment] = ACTIONS(3), + }, + [4027] = { + [sym_function_body] = STATE(3233), + [sym__block] = STATE(3227), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(6832), + [anon_sym_LBRACE] = ACTIONS(6372), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_object] = ACTIONS(4077), + [anon_sym_fun] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_this] = ACTIONS(4077), + [anon_sym_super] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4077), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_null] = ACTIONS(4077), + [anon_sym_if] = ACTIONS(4077), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_when] = ACTIONS(4077), + [anon_sym_try] = ACTIONS(4077), + [anon_sym_throw] = ACTIONS(4077), + [anon_sym_return] = ACTIONS(4077), + [anon_sym_continue] = ACTIONS(4077), + [anon_sym_break] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG] = ACTIONS(4077), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4079), + [anon_sym_continue_AT] = ACTIONS(4079), + [anon_sym_break_AT] = ACTIONS(4079), + [anon_sym_this_AT] = ACTIONS(4079), + [anon_sym_super_AT] = ACTIONS(4079), + [sym_real_literal] = ACTIONS(4079), + [sym_integer_literal] = ACTIONS(4077), + [sym_hex_literal] = ACTIONS(4079), + [sym_bin_literal] = ACTIONS(4079), + [anon_sym_true] = ACTIONS(4077), + [anon_sym_false] = ACTIONS(4077), + [anon_sym_SQUOTE] = ACTIONS(4079), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4079), + }, + [4028] = { + [sym__alpha_identifier] = ACTIONS(1770), + [anon_sym_AT] = ACTIONS(1772), + [anon_sym_LBRACK] = ACTIONS(1772), + [anon_sym_DOT] = ACTIONS(1770), + [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_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_value] = 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), + [sym_multiline_comment] = ACTIONS(3), + }, + [4029] = { + [sym_function_body] = STATE(3396), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [anon_sym_DASH_GT] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), + [sym_multiline_comment] = ACTIONS(3), + }, + [4030] = { + [sym_function_body] = STATE(3387), + [sym__block] = STATE(3524), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_RBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_COMMA] = ACTIONS(4262), @@ -444365,5185 +444074,3227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [4038] = { - [sym__alpha_identifier] = ACTIONS(7197), - [anon_sym_AT] = ACTIONS(7199), - [anon_sym_LBRACK] = ACTIONS(7199), - [anon_sym_typealias] = ACTIONS(7197), - [anon_sym_class] = ACTIONS(7197), - [anon_sym_interface] = ACTIONS(7197), - [anon_sym_enum] = ACTIONS(7197), - [anon_sym_LBRACE] = ACTIONS(7199), - [anon_sym_LPAREN] = ACTIONS(7199), - [anon_sym_val] = ACTIONS(7197), - [anon_sym_var] = ACTIONS(7197), - [anon_sym_object] = ACTIONS(7197), - [anon_sym_fun] = ACTIONS(7197), - [anon_sym_get] = ACTIONS(7197), - [anon_sym_set] = ACTIONS(7197), - [anon_sym_this] = ACTIONS(7197), - [anon_sym_super] = ACTIONS(7197), - [anon_sym_STAR] = ACTIONS(7199), - [sym_label] = ACTIONS(7197), - [anon_sym_for] = ACTIONS(7197), - [anon_sym_while] = ACTIONS(7197), - [anon_sym_do] = ACTIONS(7197), - [anon_sym_null] = ACTIONS(7197), - [anon_sym_if] = ACTIONS(7197), - [anon_sym_when] = ACTIONS(7197), - [anon_sym_try] = ACTIONS(7197), - [anon_sym_throw] = ACTIONS(7197), - [anon_sym_return] = ACTIONS(7197), - [anon_sym_continue] = ACTIONS(7197), - [anon_sym_break] = ACTIONS(7197), - [anon_sym_COLON_COLON] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7197), - [anon_sym_DASH] = ACTIONS(7197), - [anon_sym_PLUS_PLUS] = ACTIONS(7199), - [anon_sym_DASH_DASH] = ACTIONS(7199), - [anon_sym_BANG] = ACTIONS(7199), - [anon_sym_suspend] = ACTIONS(7197), - [anon_sym_sealed] = ACTIONS(7197), - [anon_sym_annotation] = ACTIONS(7197), - [anon_sym_data] = ACTIONS(7197), - [anon_sym_inner] = ACTIONS(7197), - [anon_sym_value] = ACTIONS(7197), - [anon_sym_override] = ACTIONS(7197), - [anon_sym_lateinit] = ACTIONS(7197), - [anon_sym_public] = ACTIONS(7197), - [anon_sym_private] = ACTIONS(7197), - [anon_sym_internal] = ACTIONS(7197), - [anon_sym_protected] = ACTIONS(7197), - [anon_sym_tailrec] = ACTIONS(7197), - [anon_sym_operator] = ACTIONS(7197), - [anon_sym_infix] = ACTIONS(7197), - [anon_sym_inline] = ACTIONS(7197), - [anon_sym_external] = ACTIONS(7197), - [sym_property_modifier] = ACTIONS(7197), - [anon_sym_abstract] = ACTIONS(7197), - [anon_sym_final] = ACTIONS(7197), - [anon_sym_open] = ACTIONS(7197), - [anon_sym_vararg] = ACTIONS(7197), - [anon_sym_noinline] = ACTIONS(7197), - [anon_sym_crossinline] = ACTIONS(7197), - [anon_sym_expect] = ACTIONS(7197), - [anon_sym_actual] = ACTIONS(7197), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7199), - [anon_sym_continue_AT] = ACTIONS(7199), - [anon_sym_break_AT] = ACTIONS(7199), - [anon_sym_this_AT] = ACTIONS(7199), - [anon_sym_super_AT] = ACTIONS(7199), - [sym_real_literal] = ACTIONS(7199), - [sym_integer_literal] = ACTIONS(7197), - [sym_hex_literal] = ACTIONS(7199), - [sym_bin_literal] = ACTIONS(7199), - [anon_sym_true] = ACTIONS(7197), - [anon_sym_false] = ACTIONS(7197), - [anon_sym_SQUOTE] = ACTIONS(7199), - [sym__backtick_identifier] = ACTIONS(7199), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7199), - }, - [4039] = { - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_RBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [anon_sym_DASH_GT] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - }, - [4040] = { - [sym__alpha_identifier] = ACTIONS(5185), - [anon_sym_AT] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_typealias] = ACTIONS(5185), - [anon_sym_class] = ACTIONS(5185), - [anon_sym_interface] = ACTIONS(5185), - [anon_sym_enum] = ACTIONS(5185), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_val] = ACTIONS(5185), - [anon_sym_var] = ACTIONS(5185), - [anon_sym_object] = ACTIONS(5185), - [anon_sym_fun] = ACTIONS(5185), - [anon_sym_get] = ACTIONS(5185), - [anon_sym_set] = ACTIONS(5185), - [anon_sym_this] = ACTIONS(5185), - [anon_sym_super] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5187), - [sym_label] = ACTIONS(5185), - [anon_sym_for] = ACTIONS(5185), - [anon_sym_while] = ACTIONS(5185), - [anon_sym_do] = ACTIONS(5185), - [anon_sym_null] = ACTIONS(5185), - [anon_sym_if] = ACTIONS(5185), - [anon_sym_when] = ACTIONS(5185), - [anon_sym_try] = ACTIONS(5185), - [anon_sym_throw] = ACTIONS(5185), - [anon_sym_return] = ACTIONS(5185), - [anon_sym_continue] = ACTIONS(5185), - [anon_sym_break] = ACTIONS(5185), - [anon_sym_COLON_COLON] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_PLUS_PLUS] = ACTIONS(5187), - [anon_sym_DASH_DASH] = ACTIONS(5187), - [anon_sym_BANG] = ACTIONS(5187), - [anon_sym_suspend] = ACTIONS(5185), - [anon_sym_sealed] = ACTIONS(5185), - [anon_sym_annotation] = ACTIONS(5185), - [anon_sym_data] = ACTIONS(5185), - [anon_sym_inner] = ACTIONS(5185), - [anon_sym_value] = ACTIONS(5185), - [anon_sym_override] = ACTIONS(5185), - [anon_sym_lateinit] = ACTIONS(5185), - [anon_sym_public] = ACTIONS(5185), - [anon_sym_private] = ACTIONS(5185), - [anon_sym_internal] = ACTIONS(5185), - [anon_sym_protected] = ACTIONS(5185), - [anon_sym_tailrec] = ACTIONS(5185), - [anon_sym_operator] = ACTIONS(5185), - [anon_sym_infix] = ACTIONS(5185), - [anon_sym_inline] = ACTIONS(5185), - [anon_sym_external] = ACTIONS(5185), - [sym_property_modifier] = ACTIONS(5185), - [anon_sym_abstract] = ACTIONS(5185), - [anon_sym_final] = ACTIONS(5185), - [anon_sym_open] = ACTIONS(5185), - [anon_sym_vararg] = ACTIONS(5185), - [anon_sym_noinline] = ACTIONS(5185), - [anon_sym_crossinline] = ACTIONS(5185), - [anon_sym_expect] = ACTIONS(5185), - [anon_sym_actual] = ACTIONS(5185), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(5187), - [anon_sym_continue_AT] = ACTIONS(5187), - [anon_sym_break_AT] = ACTIONS(5187), - [anon_sym_this_AT] = ACTIONS(5187), - [anon_sym_super_AT] = ACTIONS(5187), - [sym_real_literal] = ACTIONS(5187), - [sym_integer_literal] = ACTIONS(5185), - [sym_hex_literal] = ACTIONS(5187), - [sym_bin_literal] = ACTIONS(5187), - [anon_sym_true] = ACTIONS(5185), - [anon_sym_false] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5187), - [sym__backtick_identifier] = ACTIONS(5187), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(5187), - }, - [4041] = { - [sym_type_constraints] = STATE(4217), - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(7201), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - }, - [4042] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), - [sym_label] = ACTIONS(4240), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [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(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - }, - [4043] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_while] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7207), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [4031] = { + [sym__alpha_identifier] = ACTIONS(4420), + [anon_sym_AT] = ACTIONS(4422), + [anon_sym_LBRACK] = ACTIONS(4422), + [anon_sym_DOT] = ACTIONS(4420), + [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_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_value] = 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), }, - [4044] = { - [sym_class_body] = STATE(3156), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(7209), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_object] = ACTIONS(4377), - [anon_sym_fun] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_this] = ACTIONS(4377), - [anon_sym_super] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [sym_label] = ACTIONS(4377), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_null] = ACTIONS(4377), - [anon_sym_if] = ACTIONS(4377), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_when] = ACTIONS(4377), - [anon_sym_try] = ACTIONS(4377), - [anon_sym_throw] = ACTIONS(4377), - [anon_sym_return] = ACTIONS(4377), - [anon_sym_continue] = ACTIONS(4377), - [anon_sym_break] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4379), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4377), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4379), - [anon_sym_continue_AT] = ACTIONS(4379), - [anon_sym_break_AT] = ACTIONS(4379), - [anon_sym_this_AT] = ACTIONS(4379), - [anon_sym_super_AT] = ACTIONS(4379), - [sym_real_literal] = ACTIONS(4379), - [sym_integer_literal] = ACTIONS(4377), - [sym_hex_literal] = ACTIONS(4379), - [sym_bin_literal] = ACTIONS(4379), - [anon_sym_true] = ACTIONS(4377), - [anon_sym_false] = ACTIONS(4377), - [anon_sym_SQUOTE] = ACTIONS(4379), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4379), - }, - [4045] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7211), - [anon_sym_COMMA] = ACTIONS(4240), - [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_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4240), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [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(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4240), - [anon_sym_continue_AT] = ACTIONS(4240), - [anon_sym_break_AT] = ACTIONS(4240), - [anon_sym_this_AT] = ACTIONS(4240), - [anon_sym_super_AT] = ACTIONS(4240), - [sym_real_literal] = ACTIONS(4240), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4240), - [sym_bin_literal] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4240), - [sym__backtick_identifier] = ACTIONS(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [4032] = { + [sym__alpha_identifier] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_as] = ACTIONS(3096), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3096), + [anon_sym_GT] = ACTIONS(3096), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_STAR] = ACTIONS(3096), + [sym_label] = ACTIONS(3098), + [anon_sym_in] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(3098), + [anon_sym_QMARK_COLON] = ACTIONS(3098), + [anon_sym_AMP_AMP] = ACTIONS(3098), + [anon_sym_PIPE_PIPE] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(3096), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3098), + [anon_sym_EQ_EQ] = ACTIONS(3096), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3098), + [anon_sym_LT_EQ] = ACTIONS(3098), + [anon_sym_GT_EQ] = ACTIONS(3098), + [anon_sym_BANGin] = ACTIONS(3098), + [anon_sym_is] = ACTIONS(3096), + [anon_sym_BANGis] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_PERCENT] = ACTIONS(3096), + [anon_sym_as_QMARK] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_BANG_BANG] = ACTIONS(3098), + [anon_sym_suspend] = ACTIONS(3096), + [anon_sym_sealed] = ACTIONS(3096), + [anon_sym_annotation] = ACTIONS(3096), + [anon_sym_data] = ACTIONS(3096), + [anon_sym_inner] = ACTIONS(3096), + [anon_sym_value] = ACTIONS(3096), + [anon_sym_override] = ACTIONS(3096), + [anon_sym_lateinit] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_internal] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_tailrec] = ACTIONS(3096), + [anon_sym_operator] = ACTIONS(3096), + [anon_sym_infix] = ACTIONS(3096), + [anon_sym_inline] = ACTIONS(3096), + [anon_sym_external] = ACTIONS(3096), + [sym_property_modifier] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_final] = ACTIONS(3096), + [anon_sym_open] = ACTIONS(3096), + [anon_sym_vararg] = ACTIONS(3096), + [anon_sym_noinline] = ACTIONS(3096), + [anon_sym_crossinline] = ACTIONS(3096), + [anon_sym_expect] = ACTIONS(3096), + [anon_sym_actual] = ACTIONS(3096), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3098), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(3098), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4240), - }, - [4046] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7213), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_this] = ACTIONS(4228), - [anon_sym_super] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4226), - [sym_label] = ACTIONS(4228), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_throw] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4226), - [anon_sym_continue_AT] = ACTIONS(4226), - [anon_sym_break_AT] = ACTIONS(4226), - [anon_sym_this_AT] = ACTIONS(4226), - [anon_sym_super_AT] = ACTIONS(4226), - [sym_real_literal] = ACTIONS(4226), - [sym_integer_literal] = ACTIONS(4228), - [sym_hex_literal] = ACTIONS(4226), - [sym_bin_literal] = ACTIONS(4226), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4226), }, - [4047] = { - [sym_class_body] = STATE(3584), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(7215), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_RBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_RPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [anon_sym_DASH_GT] = ACTIONS(4379), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_while] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4379), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [4033] = { + [sym_function_body] = STATE(3378), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_RBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(6915), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_DASH_GT] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_while] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, - [4048] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(7217), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_object] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_this] = ACTIONS(4844), - [anon_sym_super] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [sym_label] = ACTIONS(4844), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4844), - [anon_sym_if] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_throw] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_continue] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4844), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4846), - [anon_sym_continue_AT] = ACTIONS(4846), - [anon_sym_break_AT] = ACTIONS(4846), - [anon_sym_this_AT] = ACTIONS(4846), - [anon_sym_super_AT] = ACTIONS(4846), - [sym_real_literal] = ACTIONS(4846), - [sym_integer_literal] = ACTIONS(4844), - [sym_hex_literal] = ACTIONS(4846), - [sym_bin_literal] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4846), - }, - [4049] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(7219), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), - }, - [4050] = { - [sym_type_constraints] = STATE(4183), - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(7221), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), + [4034] = { + [sym__alpha_identifier] = ACTIONS(7145), + [anon_sym_AT] = ACTIONS(7147), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_typealias] = ACTIONS(7145), + [anon_sym_class] = ACTIONS(7145), + [anon_sym_interface] = ACTIONS(7145), + [anon_sym_enum] = ACTIONS(7145), + [anon_sym_LBRACE] = ACTIONS(7147), + [anon_sym_LPAREN] = ACTIONS(7147), + [anon_sym_val] = ACTIONS(7145), + [anon_sym_var] = ACTIONS(7145), + [anon_sym_object] = ACTIONS(7145), + [anon_sym_fun] = ACTIONS(7145), + [anon_sym_get] = ACTIONS(7145), + [anon_sym_set] = ACTIONS(7145), + [anon_sym_this] = ACTIONS(7145), + [anon_sym_super] = ACTIONS(7145), + [anon_sym_STAR] = ACTIONS(7147), + [sym_label] = ACTIONS(7145), + [anon_sym_for] = ACTIONS(7145), + [anon_sym_while] = ACTIONS(7145), + [anon_sym_do] = ACTIONS(7145), + [anon_sym_null] = ACTIONS(7145), + [anon_sym_if] = ACTIONS(7145), + [anon_sym_when] = ACTIONS(7145), + [anon_sym_try] = ACTIONS(7145), + [anon_sym_throw] = ACTIONS(7145), + [anon_sym_return] = ACTIONS(7145), + [anon_sym_continue] = ACTIONS(7145), + [anon_sym_break] = ACTIONS(7145), + [anon_sym_COLON_COLON] = ACTIONS(7147), + [anon_sym_PLUS] = ACTIONS(7145), + [anon_sym_DASH] = ACTIONS(7145), + [anon_sym_PLUS_PLUS] = ACTIONS(7147), + [anon_sym_DASH_DASH] = ACTIONS(7147), + [anon_sym_BANG] = ACTIONS(7147), + [anon_sym_suspend] = ACTIONS(7145), + [anon_sym_sealed] = ACTIONS(7145), + [anon_sym_annotation] = ACTIONS(7145), + [anon_sym_data] = ACTIONS(7145), + [anon_sym_inner] = ACTIONS(7145), + [anon_sym_value] = ACTIONS(7145), + [anon_sym_override] = ACTIONS(7145), + [anon_sym_lateinit] = ACTIONS(7145), + [anon_sym_public] = ACTIONS(7145), + [anon_sym_private] = ACTIONS(7145), + [anon_sym_internal] = ACTIONS(7145), + [anon_sym_protected] = ACTIONS(7145), + [anon_sym_tailrec] = ACTIONS(7145), + [anon_sym_operator] = ACTIONS(7145), + [anon_sym_infix] = ACTIONS(7145), + [anon_sym_inline] = ACTIONS(7145), + [anon_sym_external] = ACTIONS(7145), + [sym_property_modifier] = ACTIONS(7145), + [anon_sym_abstract] = ACTIONS(7145), + [anon_sym_final] = ACTIONS(7145), + [anon_sym_open] = ACTIONS(7145), + [anon_sym_vararg] = ACTIONS(7145), + [anon_sym_noinline] = ACTIONS(7145), + [anon_sym_crossinline] = ACTIONS(7145), + [anon_sym_expect] = ACTIONS(7145), + [anon_sym_actual] = ACTIONS(7145), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7147), + [anon_sym_continue_AT] = ACTIONS(7147), + [anon_sym_break_AT] = ACTIONS(7147), + [anon_sym_this_AT] = ACTIONS(7147), + [anon_sym_super_AT] = ACTIONS(7147), + [sym_real_literal] = ACTIONS(7147), + [sym_integer_literal] = ACTIONS(7145), + [sym_hex_literal] = ACTIONS(7147), + [sym_bin_literal] = ACTIONS(7147), + [anon_sym_true] = ACTIONS(7145), + [anon_sym_false] = ACTIONS(7145), + [anon_sym_SQUOTE] = ACTIONS(7147), + [sym__backtick_identifier] = ACTIONS(7147), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7147), }, - [4051] = { - [sym_type_constraints] = STATE(4177), - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), + [4035] = { + [sym_function_body] = STATE(3859), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(6787), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_LPAREN] = ACTIONS(4198), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = 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(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), + [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(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - }, - [4052] = { - [sym_type_constraints] = STATE(4172), - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(7227), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [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(5816), - [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_value] = 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), - }, - [4053] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6678), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), }, - [4054] = { - [sym_type_constraints] = STATE(4164), - [sym_function_body] = STATE(3969), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(7229), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_COMMA] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4135), - [sym_label] = ACTIONS(4135), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4135), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), + [4036] = { + [sym__alpha_identifier] = ACTIONS(4876), + [anon_sym_AT] = ACTIONS(4878), + [anon_sym_LBRACK] = ACTIONS(4878), + [anon_sym_typealias] = ACTIONS(4876), + [anon_sym_class] = ACTIONS(4876), + [anon_sym_interface] = ACTIONS(4876), + [anon_sym_enum] = ACTIONS(4876), + [anon_sym_LBRACE] = ACTIONS(4878), + [anon_sym_LPAREN] = ACTIONS(4878), + [anon_sym_val] = ACTIONS(4876), + [anon_sym_var] = ACTIONS(4876), + [anon_sym_object] = ACTIONS(4876), + [anon_sym_fun] = ACTIONS(4876), + [anon_sym_get] = ACTIONS(4876), + [anon_sym_set] = ACTIONS(4876), + [anon_sym_this] = ACTIONS(4876), + [anon_sym_super] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4878), + [sym_label] = ACTIONS(4876), + [anon_sym_for] = ACTIONS(4876), + [anon_sym_while] = ACTIONS(4876), + [anon_sym_do] = ACTIONS(4876), + [anon_sym_null] = ACTIONS(4876), + [anon_sym_if] = ACTIONS(4876), + [anon_sym_when] = ACTIONS(4876), + [anon_sym_try] = ACTIONS(4876), + [anon_sym_throw] = ACTIONS(4876), + [anon_sym_return] = ACTIONS(4876), + [anon_sym_continue] = ACTIONS(4876), + [anon_sym_break] = ACTIONS(4876), + [anon_sym_COLON_COLON] = ACTIONS(4878), + [anon_sym_PLUS] = ACTIONS(4876), + [anon_sym_DASH] = ACTIONS(4876), + [anon_sym_PLUS_PLUS] = ACTIONS(4878), + [anon_sym_DASH_DASH] = ACTIONS(4878), + [anon_sym_BANG] = ACTIONS(4878), + [anon_sym_suspend] = ACTIONS(4876), + [anon_sym_sealed] = ACTIONS(4876), + [anon_sym_annotation] = ACTIONS(4876), + [anon_sym_data] = ACTIONS(4876), + [anon_sym_inner] = ACTIONS(4876), + [anon_sym_value] = ACTIONS(4876), + [anon_sym_override] = ACTIONS(4876), + [anon_sym_lateinit] = ACTIONS(4876), + [anon_sym_public] = ACTIONS(4876), + [anon_sym_private] = ACTIONS(4876), + [anon_sym_internal] = ACTIONS(4876), + [anon_sym_protected] = ACTIONS(4876), + [anon_sym_tailrec] = ACTIONS(4876), + [anon_sym_operator] = ACTIONS(4876), + [anon_sym_infix] = ACTIONS(4876), + [anon_sym_inline] = ACTIONS(4876), + [anon_sym_external] = ACTIONS(4876), + [sym_property_modifier] = ACTIONS(4876), + [anon_sym_abstract] = ACTIONS(4876), + [anon_sym_final] = ACTIONS(4876), + [anon_sym_open] = ACTIONS(4876), + [anon_sym_vararg] = ACTIONS(4876), + [anon_sym_noinline] = ACTIONS(4876), + [anon_sym_crossinline] = ACTIONS(4876), + [anon_sym_expect] = ACTIONS(4876), + [anon_sym_actual] = ACTIONS(4876), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4878), + [anon_sym_continue_AT] = ACTIONS(4878), + [anon_sym_break_AT] = ACTIONS(4878), + [anon_sym_this_AT] = ACTIONS(4878), + [anon_sym_super_AT] = ACTIONS(4878), + [sym_real_literal] = ACTIONS(4878), + [sym_integer_literal] = ACTIONS(4876), + [sym_hex_literal] = ACTIONS(4878), + [sym_bin_literal] = ACTIONS(4878), + [anon_sym_true] = ACTIONS(4876), + [anon_sym_false] = ACTIONS(4876), + [anon_sym_SQUOTE] = ACTIONS(4878), + [sym__backtick_identifier] = ACTIONS(4878), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4878), }, - [4055] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(5900), - [anon_sym_RPAREN] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4234), - [anon_sym_while] = ACTIONS(4234), - [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(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [4037] = { + [sym__alpha_identifier] = ACTIONS(5141), + [anon_sym_AT] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_DOT] = ACTIONS(5141), + [anon_sym_as] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(5141), + [anon_sym_LBRACE] = ACTIONS(5143), + [anon_sym_RBRACE] = ACTIONS(5143), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_LT] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5141), + [anon_sym_where] = ACTIONS(5141), + [anon_sym_SEMI] = ACTIONS(5143), + [anon_sym_get] = ACTIONS(5141), + [anon_sym_set] = ACTIONS(5141), + [anon_sym_STAR] = ACTIONS(5141), + [sym_label] = ACTIONS(5143), + [anon_sym_in] = ACTIONS(5141), + [anon_sym_DOT_DOT] = ACTIONS(5143), + [anon_sym_QMARK_COLON] = ACTIONS(5143), + [anon_sym_AMP_AMP] = ACTIONS(5143), + [anon_sym_PIPE_PIPE] = ACTIONS(5143), + [anon_sym_else] = ACTIONS(5141), + [anon_sym_COLON_COLON] = ACTIONS(5143), + [anon_sym_PLUS_EQ] = ACTIONS(5143), + [anon_sym_DASH_EQ] = ACTIONS(5143), + [anon_sym_STAR_EQ] = ACTIONS(5143), + [anon_sym_SLASH_EQ] = ACTIONS(5143), + [anon_sym_PERCENT_EQ] = ACTIONS(5143), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(5143), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5143), + [anon_sym_LT_EQ] = ACTIONS(5143), + [anon_sym_GT_EQ] = ACTIONS(5143), + [anon_sym_BANGin] = ACTIONS(5143), + [anon_sym_is] = ACTIONS(5141), + [anon_sym_BANGis] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5141), + [anon_sym_SLASH] = ACTIONS(5141), + [anon_sym_PERCENT] = ACTIONS(5141), + [anon_sym_as_QMARK] = ACTIONS(5143), + [anon_sym_PLUS_PLUS] = ACTIONS(5143), + [anon_sym_DASH_DASH] = ACTIONS(5143), + [anon_sym_BANG_BANG] = ACTIONS(5143), + [anon_sym_suspend] = ACTIONS(5141), + [anon_sym_sealed] = ACTIONS(5141), + [anon_sym_annotation] = ACTIONS(5141), + [anon_sym_data] = ACTIONS(5141), + [anon_sym_inner] = ACTIONS(5141), + [anon_sym_value] = ACTIONS(5141), + [anon_sym_override] = ACTIONS(5141), + [anon_sym_lateinit] = ACTIONS(5141), + [anon_sym_public] = ACTIONS(5141), + [anon_sym_private] = ACTIONS(5141), + [anon_sym_internal] = ACTIONS(5141), + [anon_sym_protected] = ACTIONS(5141), + [anon_sym_tailrec] = ACTIONS(5141), + [anon_sym_operator] = ACTIONS(5141), + [anon_sym_infix] = ACTIONS(5141), + [anon_sym_inline] = ACTIONS(5141), + [anon_sym_external] = ACTIONS(5141), + [sym_property_modifier] = ACTIONS(5141), + [anon_sym_abstract] = ACTIONS(5141), + [anon_sym_final] = ACTIONS(5141), + [anon_sym_open] = ACTIONS(5141), + [anon_sym_vararg] = ACTIONS(5141), + [anon_sym_noinline] = ACTIONS(5141), + [anon_sym_crossinline] = ACTIONS(5141), + [anon_sym_expect] = ACTIONS(5141), + [anon_sym_actual] = ACTIONS(5141), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), - [sym_multiline_comment] = ACTIONS(3), - }, - [4056] = { - [sym_class_body] = STATE(3543), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_RBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_where] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4407), - [anon_sym_DASH_GT] = ACTIONS(4407), - [sym_label] = ACTIONS(4407), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4407), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - }, - [4057] = { - [sym_value_arguments] = STATE(3442), - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_RBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_RPAREN] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(7233), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_DASH_GT] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_while] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), - [sym_multiline_comment] = ACTIONS(3), - }, - [4058] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3096), - [anon_sym_DASH_EQ] = ACTIONS(3096), - [anon_sym_STAR_EQ] = ACTIONS(3096), - [anon_sym_SLASH_EQ] = ACTIONS(3096), - [anon_sym_PERCENT_EQ] = ACTIONS(3096), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(7053), + [sym__backtick_identifier] = ACTIONS(5143), + [sym__automatic_semicolon] = ACTIONS(5143), + [sym_safe_nav] = ACTIONS(5143), [sym_multiline_comment] = ACTIONS(3), }, - [4059] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(7259), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [4038] = { + [sym__alpha_identifier] = ACTIONS(4864), + [anon_sym_AT] = ACTIONS(4866), + [anon_sym_LBRACK] = ACTIONS(4866), + [anon_sym_typealias] = ACTIONS(4864), + [anon_sym_class] = ACTIONS(4864), + [anon_sym_interface] = ACTIONS(4864), + [anon_sym_enum] = ACTIONS(4864), + [anon_sym_LBRACE] = ACTIONS(4866), + [anon_sym_LPAREN] = ACTIONS(4866), + [anon_sym_val] = ACTIONS(4864), + [anon_sym_var] = ACTIONS(4864), + [anon_sym_object] = ACTIONS(4864), + [anon_sym_fun] = ACTIONS(4864), + [anon_sym_get] = ACTIONS(4864), + [anon_sym_set] = ACTIONS(4864), + [anon_sym_this] = ACTIONS(4864), + [anon_sym_super] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4866), + [sym_label] = ACTIONS(4864), + [anon_sym_for] = ACTIONS(4864), + [anon_sym_while] = ACTIONS(4864), + [anon_sym_do] = ACTIONS(4864), + [anon_sym_null] = ACTIONS(4864), + [anon_sym_if] = ACTIONS(4864), + [anon_sym_when] = ACTIONS(4864), + [anon_sym_try] = ACTIONS(4864), + [anon_sym_throw] = ACTIONS(4864), + [anon_sym_return] = ACTIONS(4864), + [anon_sym_continue] = ACTIONS(4864), + [anon_sym_break] = ACTIONS(4864), + [anon_sym_COLON_COLON] = ACTIONS(4866), + [anon_sym_PLUS] = ACTIONS(4864), + [anon_sym_DASH] = ACTIONS(4864), + [anon_sym_PLUS_PLUS] = ACTIONS(4866), + [anon_sym_DASH_DASH] = ACTIONS(4866), + [anon_sym_BANG] = ACTIONS(4866), + [anon_sym_suspend] = ACTIONS(4864), + [anon_sym_sealed] = ACTIONS(4864), + [anon_sym_annotation] = ACTIONS(4864), + [anon_sym_data] = ACTIONS(4864), + [anon_sym_inner] = ACTIONS(4864), + [anon_sym_value] = ACTIONS(4864), + [anon_sym_override] = ACTIONS(4864), + [anon_sym_lateinit] = ACTIONS(4864), + [anon_sym_public] = ACTIONS(4864), + [anon_sym_private] = ACTIONS(4864), + [anon_sym_internal] = ACTIONS(4864), + [anon_sym_protected] = ACTIONS(4864), + [anon_sym_tailrec] = ACTIONS(4864), + [anon_sym_operator] = ACTIONS(4864), + [anon_sym_infix] = ACTIONS(4864), + [anon_sym_inline] = ACTIONS(4864), + [anon_sym_external] = ACTIONS(4864), + [sym_property_modifier] = ACTIONS(4864), + [anon_sym_abstract] = ACTIONS(4864), + [anon_sym_final] = ACTIONS(4864), + [anon_sym_open] = ACTIONS(4864), + [anon_sym_vararg] = ACTIONS(4864), + [anon_sym_noinline] = ACTIONS(4864), + [anon_sym_crossinline] = ACTIONS(4864), + [anon_sym_expect] = ACTIONS(4864), + [anon_sym_actual] = ACTIONS(4864), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [anon_sym_return_AT] = ACTIONS(4866), + [anon_sym_continue_AT] = ACTIONS(4866), + [anon_sym_break_AT] = ACTIONS(4866), + [anon_sym_this_AT] = ACTIONS(4866), + [anon_sym_super_AT] = ACTIONS(4866), + [sym_real_literal] = ACTIONS(4866), + [sym_integer_literal] = ACTIONS(4864), + [sym_hex_literal] = ACTIONS(4866), + [sym_bin_literal] = ACTIONS(4866), + [anon_sym_true] = ACTIONS(4864), + [anon_sym_false] = ACTIONS(4864), + [anon_sym_SQUOTE] = ACTIONS(4866), + [sym__backtick_identifier] = ACTIONS(4866), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), + [sym__string_start] = ACTIONS(4866), }, - [4060] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(7261), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(7259), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [4039] = { + [sym__alpha_identifier] = ACTIONS(4916), + [anon_sym_AT] = ACTIONS(4918), + [anon_sym_LBRACK] = ACTIONS(4918), + [anon_sym_DOT] = ACTIONS(4916), + [anon_sym_as] = ACTIONS(4916), + [anon_sym_EQ] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4918), + [anon_sym_RBRACE] = ACTIONS(4918), + [anon_sym_LPAREN] = ACTIONS(4918), + [anon_sym_COMMA] = ACTIONS(4918), + [anon_sym_LT] = ACTIONS(4916), + [anon_sym_GT] = ACTIONS(4916), + [anon_sym_where] = ACTIONS(4916), + [anon_sym_SEMI] = ACTIONS(4918), + [anon_sym_get] = ACTIONS(4916), + [anon_sym_set] = ACTIONS(4916), + [anon_sym_STAR] = ACTIONS(4916), + [sym_label] = ACTIONS(4918), + [anon_sym_in] = ACTIONS(4916), + [anon_sym_DOT_DOT] = ACTIONS(4918), + [anon_sym_QMARK_COLON] = ACTIONS(4918), + [anon_sym_AMP_AMP] = ACTIONS(4918), + [anon_sym_PIPE_PIPE] = ACTIONS(4918), + [anon_sym_else] = ACTIONS(4916), + [anon_sym_COLON_COLON] = ACTIONS(4918), + [anon_sym_PLUS_EQ] = ACTIONS(4918), + [anon_sym_DASH_EQ] = ACTIONS(4918), + [anon_sym_STAR_EQ] = ACTIONS(4918), + [anon_sym_SLASH_EQ] = ACTIONS(4918), + [anon_sym_PERCENT_EQ] = ACTIONS(4918), + [anon_sym_BANG_EQ] = ACTIONS(4916), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4918), + [anon_sym_EQ_EQ] = ACTIONS(4916), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4918), + [anon_sym_LT_EQ] = ACTIONS(4918), + [anon_sym_GT_EQ] = ACTIONS(4918), + [anon_sym_BANGin] = ACTIONS(4918), + [anon_sym_is] = ACTIONS(4916), + [anon_sym_BANGis] = ACTIONS(4918), + [anon_sym_PLUS] = ACTIONS(4916), + [anon_sym_DASH] = ACTIONS(4916), + [anon_sym_SLASH] = ACTIONS(4916), + [anon_sym_PERCENT] = ACTIONS(4916), + [anon_sym_as_QMARK] = ACTIONS(4918), + [anon_sym_PLUS_PLUS] = ACTIONS(4918), + [anon_sym_DASH_DASH] = ACTIONS(4918), + [anon_sym_BANG_BANG] = ACTIONS(4918), + [anon_sym_suspend] = ACTIONS(4916), + [anon_sym_sealed] = ACTIONS(4916), + [anon_sym_annotation] = ACTIONS(4916), + [anon_sym_data] = ACTIONS(4916), + [anon_sym_inner] = ACTIONS(4916), + [anon_sym_value] = ACTIONS(4916), + [anon_sym_override] = ACTIONS(4916), + [anon_sym_lateinit] = ACTIONS(4916), + [anon_sym_public] = ACTIONS(4916), + [anon_sym_private] = ACTIONS(4916), + [anon_sym_internal] = ACTIONS(4916), + [anon_sym_protected] = ACTIONS(4916), + [anon_sym_tailrec] = ACTIONS(4916), + [anon_sym_operator] = ACTIONS(4916), + [anon_sym_infix] = ACTIONS(4916), + [anon_sym_inline] = ACTIONS(4916), + [anon_sym_external] = ACTIONS(4916), + [sym_property_modifier] = ACTIONS(4916), + [anon_sym_abstract] = ACTIONS(4916), + [anon_sym_final] = ACTIONS(4916), + [anon_sym_open] = ACTIONS(4916), + [anon_sym_vararg] = ACTIONS(4916), + [anon_sym_noinline] = ACTIONS(4916), + [anon_sym_crossinline] = ACTIONS(4916), + [anon_sym_expect] = ACTIONS(4916), + [anon_sym_actual] = ACTIONS(4916), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(4918), + [sym__automatic_semicolon] = ACTIONS(4918), + [sym_safe_nav] = ACTIONS(4918), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), - }, - [4061] = { - [sym_class_body] = STATE(3202), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(7263), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_object] = ACTIONS(4405), - [anon_sym_fun] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_this] = ACTIONS(4405), - [anon_sym_super] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4407), - [sym_label] = ACTIONS(4405), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_null] = ACTIONS(4405), - [anon_sym_if] = ACTIONS(4405), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_when] = ACTIONS(4405), - [anon_sym_try] = ACTIONS(4405), - [anon_sym_throw] = ACTIONS(4405), - [anon_sym_return] = ACTIONS(4405), - [anon_sym_continue] = ACTIONS(4405), - [anon_sym_break] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4407), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4405), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4407), - [anon_sym_continue_AT] = ACTIONS(4407), - [anon_sym_break_AT] = ACTIONS(4407), - [anon_sym_this_AT] = ACTIONS(4407), - [anon_sym_super_AT] = ACTIONS(4407), - [sym_real_literal] = ACTIONS(4407), - [sym_integer_literal] = ACTIONS(4405), - [sym_hex_literal] = ACTIONS(4407), - [sym_bin_literal] = ACTIONS(4407), - [anon_sym_true] = ACTIONS(4405), - [anon_sym_false] = ACTIONS(4405), - [anon_sym_SQUOTE] = ACTIONS(4407), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4407), }, - [4062] = { - [sym_type_constraints] = STATE(4203), - [sym_function_body] = STATE(3549), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(7265), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_RPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4135), - [sym_label] = ACTIONS(4135), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_while] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4135), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), + [4040] = { + [sym__alpha_identifier] = ACTIONS(1744), + [anon_sym_AT] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_DOT] = ACTIONS(1744), + [anon_sym_as] = ACTIONS(1744), + [anon_sym_EQ] = ACTIONS(1744), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1744), + [anon_sym_GT] = ACTIONS(1744), + [anon_sym_where] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_get] = ACTIONS(1744), + [anon_sym_set] = ACTIONS(1744), + [anon_sym_STAR] = ACTIONS(1744), + [sym_label] = ACTIONS(1746), + [anon_sym_in] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_QMARK_COLON] = ACTIONS(1746), + [anon_sym_AMP_AMP] = ACTIONS(1746), + [anon_sym_PIPE_PIPE] = ACTIONS(1746), + [anon_sym_else] = ACTIONS(1744), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_PLUS_EQ] = ACTIONS(1746), + [anon_sym_DASH_EQ] = ACTIONS(1746), + [anon_sym_STAR_EQ] = ACTIONS(1746), + [anon_sym_SLASH_EQ] = ACTIONS(1746), + [anon_sym_PERCENT_EQ] = ACTIONS(1746), + [anon_sym_BANG_EQ] = ACTIONS(1744), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), + [anon_sym_EQ_EQ] = ACTIONS(1744), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), + [anon_sym_LT_EQ] = ACTIONS(1746), + [anon_sym_GT_EQ] = ACTIONS(1746), + [anon_sym_BANGin] = ACTIONS(1746), + [anon_sym_is] = ACTIONS(1744), + [anon_sym_BANGis] = ACTIONS(1746), + [anon_sym_PLUS] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1744), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), + [anon_sym_as_QMARK] = ACTIONS(1746), + [anon_sym_PLUS_PLUS] = ACTIONS(1746), + [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_BANG_BANG] = ACTIONS(1746), + [anon_sym_suspend] = ACTIONS(1744), + [anon_sym_sealed] = ACTIONS(1744), + [anon_sym_annotation] = ACTIONS(1744), + [anon_sym_data] = ACTIONS(1744), + [anon_sym_inner] = ACTIONS(1744), + [anon_sym_value] = ACTIONS(1744), + [anon_sym_override] = ACTIONS(1744), + [anon_sym_lateinit] = ACTIONS(1744), + [anon_sym_public] = ACTIONS(1744), + [anon_sym_private] = ACTIONS(1744), + [anon_sym_internal] = ACTIONS(1744), + [anon_sym_protected] = ACTIONS(1744), + [anon_sym_tailrec] = ACTIONS(1744), + [anon_sym_operator] = ACTIONS(1744), + [anon_sym_infix] = ACTIONS(1744), + [anon_sym_inline] = ACTIONS(1744), + [anon_sym_external] = ACTIONS(1744), + [sym_property_modifier] = ACTIONS(1744), + [anon_sym_abstract] = ACTIONS(1744), + [anon_sym_final] = ACTIONS(1744), + [anon_sym_open] = ACTIONS(1744), + [anon_sym_vararg] = ACTIONS(1744), + [anon_sym_noinline] = ACTIONS(1744), + [anon_sym_crossinline] = ACTIONS(1744), + [anon_sym_expect] = ACTIONS(1744), + [anon_sym_actual] = ACTIONS(1744), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1746), + [sym_safe_nav] = ACTIONS(1746), [sym_multiline_comment] = ACTIONS(3), }, - [4063] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [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(7249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), + [4041] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(7149), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, - [4064] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3110), + [4042] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3130), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3112), - [anon_sym_DASH_EQ] = ACTIONS(3112), - [anon_sym_STAR_EQ] = ACTIONS(3112), - [anon_sym_SLASH_EQ] = ACTIONS(3112), - [anon_sym_PERCENT_EQ] = ACTIONS(3112), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4065] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(7267), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_while] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7207), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3132), + [anon_sym_DASH_EQ] = ACTIONS(3132), + [anon_sym_STAR_EQ] = ACTIONS(3132), + [anon_sym_SLASH_EQ] = ACTIONS(3132), + [anon_sym_PERCENT_EQ] = ACTIONS(3132), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), - [sym_multiline_comment] = ACTIONS(3), - }, - [4066] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [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(7249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4067] = { - [sym_type_constraints] = STATE(4170), - [sym_function_body] = STATE(3889), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(7269), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [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(5816), - [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_value] = 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), - }, - [4068] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3191), - [anon_sym_DASH_EQ] = ACTIONS(3191), - [anon_sym_STAR_EQ] = ACTIONS(3191), - [anon_sym_SLASH_EQ] = ACTIONS(3191), - [anon_sym_PERCENT_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4069] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4070] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3154), - [anon_sym_DASH_EQ] = ACTIONS(3154), - [anon_sym_STAR_EQ] = ACTIONS(3154), - [anon_sym_SLASH_EQ] = ACTIONS(3154), - [anon_sym_PERCENT_EQ] = ACTIONS(3154), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4071] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3135), - [anon_sym_DASH_EQ] = ACTIONS(3135), - [anon_sym_STAR_EQ] = ACTIONS(3135), - [anon_sym_SLASH_EQ] = ACTIONS(3135), - [anon_sym_PERCENT_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(7053), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4072] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3173), + [4043] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3100), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3175), - [anon_sym_DASH_EQ] = ACTIONS(3175), - [anon_sym_STAR_EQ] = ACTIONS(3175), - [anon_sym_SLASH_EQ] = ACTIONS(3175), - [anon_sym_PERCENT_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3100), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3102), + [anon_sym_DASH_EQ] = ACTIONS(3102), + [anon_sym_STAR_EQ] = ACTIONS(3102), + [anon_sym_SLASH_EQ] = ACTIONS(3102), + [anon_sym_PERCENT_EQ] = ACTIONS(3102), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3100), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4073] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3131), - [anon_sym_DASH_EQ] = ACTIONS(3131), - [anon_sym_STAR_EQ] = ACTIONS(3131), - [anon_sym_SLASH_EQ] = ACTIONS(3131), - [anon_sym_PERCENT_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), + [4044] = { + [sym_class_body] = STATE(3151), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(7157), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_object] = ACTIONS(4353), + [anon_sym_fun] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_this] = ACTIONS(4353), + [anon_sym_super] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4353), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_null] = ACTIONS(4353), + [anon_sym_if] = ACTIONS(4353), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_when] = ACTIONS(4353), + [anon_sym_try] = ACTIONS(4353), + [anon_sym_throw] = ACTIONS(4353), + [anon_sym_return] = ACTIONS(4353), + [anon_sym_continue] = ACTIONS(4353), + [anon_sym_break] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4355), + [anon_sym_continue_AT] = ACTIONS(4355), + [anon_sym_break_AT] = ACTIONS(4355), + [anon_sym_this_AT] = ACTIONS(4355), + [anon_sym_super_AT] = ACTIONS(4355), + [sym_real_literal] = ACTIONS(4355), + [sym_integer_literal] = ACTIONS(4353), + [sym_hex_literal] = ACTIONS(4355), + [sym_bin_literal] = ACTIONS(4355), + [anon_sym_true] = ACTIONS(4353), + [anon_sym_false] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4355), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4355), }, - [4074] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3127), - [anon_sym_DASH_EQ] = ACTIONS(3127), - [anon_sym_STAR_EQ] = ACTIONS(3127), - [anon_sym_SLASH_EQ] = ACTIONS(3127), - [anon_sym_PERCENT_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), + [4045] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6636), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), }, - [4075] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(5880), - [anon_sym_RPAREN] = ACTIONS(4223), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_while] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4220), + [4046] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6640), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), [anon_sym_PERCENT] = ACTIONS(4220), - [anon_sym_as_QMARK] = ACTIONS(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - }, - [4076] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3123), - [anon_sym_DASH_EQ] = ACTIONS(3123), - [anon_sym_STAR_EQ] = ACTIONS(3123), - [anon_sym_SLASH_EQ] = ACTIONS(3123), - [anon_sym_PERCENT_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), }, - [4077] = { - [sym_type_constraints] = STATE(4204), - [sym_function_body] = STATE(3527), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(7271), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_where] = ACTIONS(5512), - [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_value] = 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), - }, - [4078] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3116), - [anon_sym_DASH_EQ] = ACTIONS(3116), - [anon_sym_STAR_EQ] = ACTIONS(3116), - [anon_sym_SLASH_EQ] = ACTIONS(3116), - [anon_sym_PERCENT_EQ] = ACTIONS(3116), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4079] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3141), + [4047] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3076), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3143), - [anon_sym_DASH_EQ] = ACTIONS(3143), - [anon_sym_STAR_EQ] = ACTIONS(3143), - [anon_sym_SLASH_EQ] = ACTIONS(3143), - [anon_sym_PERCENT_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3078), + [anon_sym_DASH_EQ] = ACTIONS(3078), + [anon_sym_STAR_EQ] = ACTIONS(3078), + [anon_sym_SLASH_EQ] = ACTIONS(3078), + [anon_sym_PERCENT_EQ] = ACTIONS(3078), + [anon_sym_BANG_EQ] = ACTIONS(7165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7167), + [anon_sym_EQ_EQ] = ACTIONS(7165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4080] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3159), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4081] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3168), - [anon_sym_DASH_EQ] = ACTIONS(3168), - [anon_sym_STAR_EQ] = ACTIONS(3168), - [anon_sym_SLASH_EQ] = ACTIONS(3168), - [anon_sym_PERCENT_EQ] = ACTIONS(3168), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(7053), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4082] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1824), - [sym__comparison_operator] = STATE(1823), - [sym__in_operator] = STATE(1822), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1820), - [sym__multiplicative_operator] = STATE(1818), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1815), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_EQ] = ACTIONS(3088), + [4048] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3137), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7237), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7239), - [anon_sym_DOT_DOT] = ACTIONS(7241), - [anon_sym_QMARK_COLON] = ACTIONS(7243), - [anon_sym_AMP_AMP] = ACTIONS(7245), - [anon_sym_PIPE_PIPE] = ACTIONS(7247), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_PLUS_EQ] = ACTIONS(3090), - [anon_sym_DASH_EQ] = ACTIONS(3090), - [anon_sym_STAR_EQ] = ACTIONS(3090), - [anon_sym_SLASH_EQ] = ACTIONS(3090), - [anon_sym_PERCENT_EQ] = ACTIONS(3090), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7253), - [anon_sym_GT_EQ] = ACTIONS(7253), - [anon_sym_BANGin] = ACTIONS(7255), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7257), - [anon_sym_DASH] = ACTIONS(7257), - [anon_sym_SLASH] = ACTIONS(7237), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4083] = { - [sym_type_constraints] = STATE(4219), - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(7273), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_where] = ACTIONS(5512), - [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_value] = 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), - }, - [4084] = { - [sym_type_constraints] = STATE(4211), - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(7275), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - }, - [4085] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7277), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [sym_label] = ACTIONS(4226), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - }, - [4086] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(7279), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [sym_label] = ACTIONS(4846), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - }, - [4087] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(7281), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_while] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - }, - [4088] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6692), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4228), - [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(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [4089] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(4237), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4234), - [anon_sym_while] = ACTIONS(4234), - [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(4234), - [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(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3139), + [anon_sym_DASH_EQ] = ACTIONS(3139), + [anon_sym_STAR_EQ] = ACTIONS(3139), + [anon_sym_SLASH_EQ] = ACTIONS(3139), + [anon_sym_PERCENT_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(7165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7167), + [anon_sym_EQ_EQ] = ACTIONS(7165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4090] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_RPAREN] = ACTIONS(4223), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_while] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4223), - [anon_sym_DASH_EQ] = ACTIONS(4223), - [anon_sym_STAR_EQ] = ACTIONS(4223), - [anon_sym_SLASH_EQ] = ACTIONS(4223), - [anon_sym_PERCENT_EQ] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [sym_safe_nav] = ACTIONS(4223), + [4049] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), + }, + [4050] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(7177), + [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_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(4842), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4840), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_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(4842), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), + }, + [4051] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3052), + [anon_sym_DASH_EQ] = ACTIONS(3052), + [anon_sym_STAR_EQ] = ACTIONS(3052), + [anon_sym_SLASH_EQ] = ACTIONS(3052), + [anon_sym_PERCENT_EQ] = ACTIONS(3052), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4091] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7283), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [4052] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7179), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + }, + [4053] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7181), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [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(7165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7167), + [anon_sym_EQ_EQ] = ACTIONS(7165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), }, - [4092] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7287), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [4054] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7183), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4188), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4188), + [anon_sym_continue_AT] = ACTIONS(4188), + [anon_sym_break_AT] = ACTIONS(4188), + [anon_sym_this_AT] = ACTIONS(4188), + [anon_sym_super_AT] = ACTIONS(4188), + [sym_real_literal] = ACTIONS(4188), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4188), + [sym_bin_literal] = ACTIONS(4188), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4188), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4188), }, - [4093] = { - [sym_type_constraints] = STATE(4246), - [sym_function_body] = STATE(3889), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = ACTIONS(4150), - [anon_sym_where] = ACTIONS(5816), - [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_value] = 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), + [4055] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7185), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4220), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), + }, + [4056] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3086), + [anon_sym_DASH_EQ] = ACTIONS(3086), + [anon_sym_STAR_EQ] = ACTIONS(3086), + [anon_sym_SLASH_EQ] = ACTIONS(3086), + [anon_sym_PERCENT_EQ] = ACTIONS(3086), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4094] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3090), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3090), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4057] = { + [sym_type_constraints] = STATE(4180), + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), }, - [4095] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7321), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [4058] = { + [sym_class_body] = STATE(3209), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(7191), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_object] = ACTIONS(4325), + [anon_sym_fun] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_this] = ACTIONS(4325), + [anon_sym_super] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4325), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_when] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4325), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4327), + [anon_sym_continue_AT] = ACTIONS(4327), + [anon_sym_break_AT] = ACTIONS(4327), + [anon_sym_this_AT] = ACTIONS(4327), + [anon_sym_super_AT] = ACTIONS(4327), + [sym_real_literal] = ACTIONS(4327), + [sym_integer_literal] = ACTIONS(4325), + [sym_hex_literal] = ACTIONS(4327), + [sym_bin_literal] = ACTIONS(4327), + [anon_sym_true] = ACTIONS(4325), + [anon_sym_false] = ACTIONS(4325), + [anon_sym_SQUOTE] = ACTIONS(4327), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4327), + }, + [4059] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3059), + [anon_sym_DASH_EQ] = ACTIONS(3059), + [anon_sym_STAR_EQ] = ACTIONS(3059), + [anon_sym_SLASH_EQ] = ACTIONS(3059), + [anon_sym_PERCENT_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4096] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3123), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4060] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7181), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3098), + [anon_sym_DASH_EQ] = ACTIONS(3098), + [anon_sym_STAR_EQ] = ACTIONS(3098), + [anon_sym_SLASH_EQ] = ACTIONS(3098), + [anon_sym_PERCENT_EQ] = ACTIONS(3098), + [anon_sym_BANG_EQ] = ACTIONS(7165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7167), + [anon_sym_EQ_EQ] = ACTIONS(7165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4097] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3127), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4061] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3115), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3117), + [anon_sym_DASH_EQ] = ACTIONS(3117), + [anon_sym_STAR_EQ] = ACTIONS(3117), + [anon_sym_SLASH_EQ] = ACTIONS(3117), + [anon_sym_PERCENT_EQ] = ACTIONS(3117), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4098] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_EQ] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7323), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [sym_label] = ACTIONS(4226), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_PLUS_EQ] = ACTIONS(4226), - [anon_sym_DASH_EQ] = ACTIONS(4226), - [anon_sym_STAR_EQ] = ACTIONS(4226), - [anon_sym_SLASH_EQ] = ACTIONS(4226), - [anon_sym_PERCENT_EQ] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4228), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), + [4062] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7181), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3082), + [anon_sym_DASH_EQ] = ACTIONS(3082), + [anon_sym_STAR_EQ] = ACTIONS(3082), + [anon_sym_SLASH_EQ] = ACTIONS(3082), + [anon_sym_PERCENT_EQ] = ACTIONS(3082), + [anon_sym_BANG_EQ] = ACTIONS(7165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7167), + [anon_sym_EQ_EQ] = ACTIONS(7165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4099] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3131), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4063] = { + [sym_type_constraints] = STATE(4217), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(7193), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_while] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, - [4100] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3116), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3116), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4064] = { + [sym_type_constraints] = STATE(4198), + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(7197), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), [sym_multiline_comment] = ACTIONS(3), }, - [4101] = { - [sym_type_constraints] = STATE(4250), - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_COLON] = ACTIONS(7325), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [4065] = { + [sym_type_constraints] = STATE(4170), + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(7199), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, - [4102] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3108), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3108), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4066] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3067), + [anon_sym_DASH_EQ] = ACTIONS(3067), + [anon_sym_STAR_EQ] = ACTIONS(3067), + [anon_sym_SLASH_EQ] = ACTIONS(3067), + [anon_sym_PERCENT_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4103] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), + [4067] = { + [sym_type_constraints] = STATE(4149), + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(7201), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [4068] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7203), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [4069] = { + [sym_type_constraints] = STATE(4146), + [sym_function_body] = STATE(3826), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(7207), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + }, + [4070] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [4071] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(6981), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), [anon_sym_SEMI] = ACTIONS(3143), [anon_sym_get] = ACTIONS(3141), [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3143), - [sym_label] = ACTIONS(6715), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), [anon_sym_in] = ACTIONS(3141), - [anon_sym_while] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(6727), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3143), + [anon_sym_DASH_EQ] = ACTIONS(3143), + [anon_sym_STAR_EQ] = ACTIONS(3143), + [anon_sym_SLASH_EQ] = ACTIONS(3143), + [anon_sym_PERCENT_EQ] = ACTIONS(3143), [anon_sym_BANG_EQ] = ACTIONS(3141), [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), [anon_sym_EQ_EQ] = ACTIONS(3141), @@ -449555,12 +447306,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), [anon_sym_data] = ACTIONS(3141), [anon_sym_inner] = ACTIONS(3141), [anon_sym_value] = ACTIONS(3141), @@ -449568,2061 +447319,2238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3141), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(6727), + [sym__automatic_semicolon] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4104] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3135), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4072] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7213), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), }, - [4105] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_DASH_GT] = ACTIONS(3161), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(6727), + [4073] = { + [sym_type_constraints] = STATE(4148), + [sym_function_body] = STATE(4000), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(7215), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_COMMA] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [sym_label] = ACTIONS(4125), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), [sym_multiline_comment] = ACTIONS(3), }, - [4106] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4132), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4541), - [anon_sym_RPAREN] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4541), - [anon_sym_DASH_GT] = ACTIONS(4541), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_while] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), + [4074] = { + [sym_type_constraints] = STATE(4213), + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(7217), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = 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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), }, - [4107] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_EQ] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(7327), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4852), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_PLUS_EQ] = ACTIONS(4854), - [anon_sym_DASH_EQ] = ACTIONS(4854), - [anon_sym_STAR_EQ] = ACTIONS(4854), - [anon_sym_SLASH_EQ] = ACTIONS(4854), - [anon_sym_PERCENT_EQ] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4852), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), + [4075] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(7219), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = 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_while] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), [sym_multiline_comment] = ACTIONS(3), }, - [4108] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3168), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3168), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(6727), + [4076] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(7221), + [anon_sym_RPAREN] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), [sym_multiline_comment] = ACTIONS(3), }, - [4109] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3096), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3096), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4077] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7181), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3113), + [anon_sym_DASH_EQ] = ACTIONS(3113), + [anon_sym_STAR_EQ] = ACTIONS(3113), + [anon_sym_SLASH_EQ] = ACTIONS(3113), + [anon_sym_PERCENT_EQ] = ACTIONS(3113), + [anon_sym_BANG_EQ] = ACTIONS(7165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7167), + [anon_sym_EQ_EQ] = ACTIONS(7165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4110] = { - [sym_type_constraints] = STATE(4190), - [sym_function_body] = STATE(3890), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [4078] = { + [sym_type_constraints] = STATE(4214), + [sym_function_body] = STATE(3599), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(7223), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_RPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [sym_label] = ACTIONS(4125), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_while] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + }, + [4079] = { + [sym_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(7225), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_RBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_COMMA] = ACTIONS(4327), + [anon_sym_RPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_where] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_DASH_GT] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_while] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + }, + [4080] = { + [sym_class_body] = STATE(3453), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(7227), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_RBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4355), + [anon_sym_DASH_GT] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_while] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), + [sym_multiline_comment] = ACTIONS(3), + }, + [4081] = { + [sym_value_arguments] = STATE(3384), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(7229), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_DASH_GT] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + }, + [4082] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7181), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3109), + [anon_sym_DASH_EQ] = ACTIONS(3109), + [anon_sym_STAR_EQ] = ACTIONS(3109), + [anon_sym_SLASH_EQ] = ACTIONS(3109), + [anon_sym_PERCENT_EQ] = ACTIONS(3109), + [anon_sym_BANG_EQ] = ACTIONS(7165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7167), + [anon_sym_EQ_EQ] = ACTIONS(7165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4111] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3154), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3154), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4083] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7181), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_PLUS_EQ] = ACTIONS(3128), + [anon_sym_DASH_EQ] = ACTIONS(3128), + [anon_sym_STAR_EQ] = ACTIONS(3128), + [anon_sym_SLASH_EQ] = ACTIONS(3128), + [anon_sym_PERCENT_EQ] = ACTIONS(3128), + [anon_sym_BANG_EQ] = ACTIONS(7165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7167), + [anon_sym_EQ_EQ] = ACTIONS(7165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4112] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3195), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(6727), + [4084] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(7231), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(7149), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), + }, + [4085] = { + [sym_type_constraints] = STATE(4220), + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(7233), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, - [4113] = { - [sym_type_constraints] = STATE(4184), - [sym_function_body] = STATE(3988), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_COMMA] = ACTIONS(4262), - [anon_sym_LT] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4262), - [anon_sym_get] = ACTIONS(4260), - [anon_sym_set] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4262), - [sym_label] = ACTIONS(4262), - [anon_sym_in] = ACTIONS(4260), - [anon_sym_DOT_DOT] = ACTIONS(4262), - [anon_sym_QMARK_COLON] = ACTIONS(4262), - [anon_sym_AMP_AMP] = ACTIONS(4262), - [anon_sym_PIPE_PIPE] = ACTIONS(4262), - [anon_sym_else] = ACTIONS(4260), - [anon_sym_COLON_COLON] = ACTIONS(4262), - [anon_sym_BANG_EQ] = ACTIONS(4260), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), - [anon_sym_EQ_EQ] = ACTIONS(4260), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), - [anon_sym_LT_EQ] = ACTIONS(4262), - [anon_sym_GT_EQ] = ACTIONS(4262), - [anon_sym_BANGin] = ACTIONS(4262), - [anon_sym_is] = ACTIONS(4260), - [anon_sym_BANGis] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_SLASH] = ACTIONS(4260), - [anon_sym_PERCENT] = ACTIONS(4262), - [anon_sym_as_QMARK] = ACTIONS(4262), - [anon_sym_PLUS_PLUS] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4262), - [anon_sym_BANG_BANG] = ACTIONS(4262), - [anon_sym_suspend] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_annotation] = ACTIONS(4260), - [anon_sym_data] = ACTIONS(4260), - [anon_sym_inner] = ACTIONS(4260), - [anon_sym_value] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_lateinit] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_tailrec] = ACTIONS(4260), - [anon_sym_operator] = ACTIONS(4260), - [anon_sym_infix] = ACTIONS(4260), - [anon_sym_inline] = ACTIONS(4260), - [anon_sym_external] = ACTIONS(4260), - [sym_property_modifier] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_final] = ACTIONS(4260), - [anon_sym_open] = ACTIONS(4260), - [anon_sym_vararg] = ACTIONS(4260), - [anon_sym_noinline] = ACTIONS(4260), - [anon_sym_crossinline] = ACTIONS(4260), - [anon_sym_expect] = ACTIONS(4260), - [anon_sym_actual] = ACTIONS(4260), + [4086] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1818), + [sym__comparison_operator] = STATE(1817), + [sym__in_operator] = STATE(1816), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1811), + [sym__multiplicative_operator] = STATE(1808), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1807), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_EQ] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7159), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7151), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7161), + [anon_sym_DOT_DOT] = ACTIONS(7153), + [anon_sym_QMARK_COLON] = ACTIONS(7163), + [anon_sym_AMP_AMP] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7181), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [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(7165), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7167), + [anon_sym_EQ_EQ] = ACTIONS(7165), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7167), + [anon_sym_LT_EQ] = ACTIONS(7169), + [anon_sym_GT_EQ] = ACTIONS(7169), + [anon_sym_BANGin] = ACTIONS(7171), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7155), + [anon_sym_DASH] = ACTIONS(7155), + [anon_sym_SLASH] = ACTIONS(7151), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), - [sym_safe_nav] = ACTIONS(4262), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, - [4114] = { - [sym_type_constraints] = STATE(4217), - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [4087] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(7235), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_while] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7237), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), [sym_multiline_comment] = ACTIONS(3), }, - [4115] = { - [sym__alpha_identifier] = ACTIONS(4242), + [4088] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_while] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7237), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [4089] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(5854), + [anon_sym_RPAREN] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4217), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + }, + [4090] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(5858), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_while] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [4091] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(5209), + [anon_sym_RPAREN] = ACTIONS(4217), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4217), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_while] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4217), + [anon_sym_DASH_EQ] = ACTIONS(4217), + [anon_sym_STAR_EQ] = ACTIONS(4217), + [anon_sym_SLASH_EQ] = ACTIONS(4217), + [anon_sym_PERCENT_EQ] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), + [sym_multiline_comment] = ACTIONS(3), + }, + [4092] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(5205), + [anon_sym_RPAREN] = ACTIONS(4185), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_while] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), + [sym_multiline_comment] = ACTIONS(3), + }, + [4093] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_EQ] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7239), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4190), + [sym_label] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_PLUS_EQ] = ACTIONS(4188), + [anon_sym_DASH_EQ] = ACTIONS(4188), + [anon_sym_STAR_EQ] = ACTIONS(4188), + [anon_sym_SLASH_EQ] = ACTIONS(4188), + [anon_sym_PERCENT_EQ] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4190), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + }, + [4094] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3128), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3128), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4095] = { + [sym_function_body] = STATE(3859), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(7267), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + }, + [4096] = { + [sym_function_body] = STATE(3885), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4238), [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(7269), [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7329), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_where] = ACTIONS(4238), [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4240), [sym_label] = ACTIONS(4240), - [anon_sym_in] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4238), [anon_sym_DOT_DOT] = ACTIONS(4240), [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_else] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4238), [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4238), [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4238), [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), [anon_sym_LT_EQ] = ACTIONS(4240), [anon_sym_GT_EQ] = ACTIONS(4240), [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4238), [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4240), [anon_sym_as_QMARK] = ACTIONS(4240), [anon_sym_PLUS_PLUS] = ACTIONS(4240), [anon_sym_DASH_DASH] = ACTIONS(4240), [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4240), [sym__automatic_semicolon] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), }, - [4116] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_RPAREN] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3187), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4117] = { - [sym_type_constraints] = STATE(4183), - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), - [sym_multiline_comment] = ACTIONS(3), - }, - [4118] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7331), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [4119] = { - [sym_type_constraints] = STATE(4177), - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), - [sym_multiline_comment] = ACTIONS(3), - }, - [4120] = { - [sym_function_body] = STATE(3897), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(7335), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), - [sym_multiline_comment] = ACTIONS(3), - }, - [4121] = { - [sym_function_body] = STATE(3833), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(7337), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_COMMA] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_where] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - }, - [4122] = { - [sym_type_constraints] = STATE(4172), - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [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(5816), - [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_value] = 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), - }, - [4123] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(4234), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(5373), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [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(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [4097] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3082), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), - [sym_multiline_comment] = ACTIONS(3), - }, - [4124] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(6030), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - }, - [4125] = { - [sym_type_constraints] = STATE(4254), - [sym_function_body] = STATE(3969), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4133), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_COLON] = ACTIONS(7339), - [anon_sym_LBRACK] = ACTIONS(4135), - [anon_sym_DOT] = ACTIONS(4133), - [anon_sym_as] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym_LT] = ACTIONS(4133), - [anon_sym_GT] = ACTIONS(4133), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4135), - [anon_sym_get] = ACTIONS(4133), - [anon_sym_set] = ACTIONS(4133), - [anon_sym_STAR] = ACTIONS(4135), - [sym_label] = ACTIONS(4135), - [anon_sym_in] = ACTIONS(4133), - [anon_sym_DOT_DOT] = ACTIONS(4135), - [anon_sym_QMARK_COLON] = ACTIONS(4135), - [anon_sym_AMP_AMP] = ACTIONS(4135), - [anon_sym_PIPE_PIPE] = ACTIONS(4135), - [anon_sym_else] = ACTIONS(4133), - [anon_sym_COLON_COLON] = ACTIONS(4135), - [anon_sym_BANG_EQ] = ACTIONS(4133), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4135), - [anon_sym_EQ_EQ] = ACTIONS(4133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4135), - [anon_sym_LT_EQ] = ACTIONS(4135), - [anon_sym_GT_EQ] = ACTIONS(4135), - [anon_sym_BANGin] = ACTIONS(4135), - [anon_sym_is] = ACTIONS(4133), - [anon_sym_BANGis] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4133), - [anon_sym_DASH] = ACTIONS(4133), - [anon_sym_SLASH] = ACTIONS(4133), - [anon_sym_PERCENT] = ACTIONS(4135), - [anon_sym_as_QMARK] = ACTIONS(4135), - [anon_sym_PLUS_PLUS] = ACTIONS(4135), - [anon_sym_DASH_DASH] = ACTIONS(4135), - [anon_sym_BANG_BANG] = ACTIONS(4135), - [anon_sym_suspend] = ACTIONS(4133), - [anon_sym_sealed] = ACTIONS(4133), - [anon_sym_annotation] = ACTIONS(4133), - [anon_sym_data] = ACTIONS(4133), - [anon_sym_inner] = ACTIONS(4133), - [anon_sym_value] = ACTIONS(4133), - [anon_sym_override] = ACTIONS(4133), - [anon_sym_lateinit] = ACTIONS(4133), - [anon_sym_public] = ACTIONS(4133), - [anon_sym_private] = ACTIONS(4133), - [anon_sym_internal] = ACTIONS(4133), - [anon_sym_protected] = ACTIONS(4133), - [anon_sym_tailrec] = ACTIONS(4133), - [anon_sym_operator] = ACTIONS(4133), - [anon_sym_infix] = ACTIONS(4133), - [anon_sym_inline] = ACTIONS(4133), - [anon_sym_external] = ACTIONS(4133), - [sym_property_modifier] = ACTIONS(4133), - [anon_sym_abstract] = ACTIONS(4133), - [anon_sym_final] = ACTIONS(4133), - [anon_sym_open] = ACTIONS(4133), - [anon_sym_vararg] = ACTIONS(4133), - [anon_sym_noinline] = ACTIONS(4133), - [anon_sym_crossinline] = ACTIONS(4133), - [anon_sym_expect] = ACTIONS(4133), - [anon_sym_actual] = ACTIONS(4133), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4135), - [sym__automatic_semicolon] = ACTIONS(4135), - [sym_safe_nav] = ACTIONS(4135), - [sym_multiline_comment] = ACTIONS(3), - }, - [4126] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_as] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_LT] = ACTIONS(4220), - [anon_sym_GT] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4223), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [sym_label] = ACTIONS(4223), - [anon_sym_in] = ACTIONS(4220), - [anon_sym_DOT_DOT] = ACTIONS(4223), - [anon_sym_QMARK_COLON] = ACTIONS(4223), - [anon_sym_AMP_AMP] = ACTIONS(4223), - [anon_sym_PIPE_PIPE] = ACTIONS(4223), - [anon_sym_else] = ACTIONS(4220), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_PLUS_EQ] = ACTIONS(4223), - [anon_sym_DASH_EQ] = ACTIONS(4223), - [anon_sym_STAR_EQ] = ACTIONS(4223), - [anon_sym_SLASH_EQ] = ACTIONS(4223), - [anon_sym_PERCENT_EQ] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4220), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4223), - [anon_sym_EQ_EQ] = ACTIONS(4220), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4223), - [anon_sym_LT_EQ] = ACTIONS(4223), - [anon_sym_GT_EQ] = ACTIONS(4223), - [anon_sym_BANGin] = ACTIONS(4223), - [anon_sym_is] = ACTIONS(4220), - [anon_sym_BANGis] = ACTIONS(4223), - [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(4223), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG_BANG] = ACTIONS(4223), - [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_value] = 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(4223), - [sym__automatic_semicolon] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4223), - [sym_multiline_comment] = ACTIONS(3), - }, - [4127] = { - [sym_type_constraints] = STATE(4211), - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4128] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4234), - [anon_sym_as] = ACTIONS(4234), - [anon_sym_EQ] = ACTIONS(3990), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(6024), - [anon_sym_LT] = ACTIONS(4234), - [anon_sym_GT] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4237), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [sym_label] = ACTIONS(4237), - [anon_sym_in] = ACTIONS(4234), - [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(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_PLUS_EQ] = ACTIONS(3995), - [anon_sym_DASH_EQ] = ACTIONS(3995), - [anon_sym_STAR_EQ] = ACTIONS(3995), - [anon_sym_SLASH_EQ] = ACTIONS(3995), - [anon_sym_PERCENT_EQ] = ACTIONS(3995), - [anon_sym_BANG_EQ] = ACTIONS(4234), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4237), - [anon_sym_EQ_EQ] = ACTIONS(4234), - [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(4234), - [anon_sym_BANGis] = ACTIONS(4237), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4234), - [anon_sym_PERCENT] = ACTIONS(4234), - [anon_sym_as_QMARK] = ACTIONS(4237), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG_BANG] = ACTIONS(4237), - [anon_sym_suspend] = ACTIONS(4234), - [anon_sym_sealed] = ACTIONS(4234), - [anon_sym_annotation] = ACTIONS(4234), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_override] = ACTIONS(4234), - [anon_sym_lateinit] = ACTIONS(4234), - [anon_sym_public] = ACTIONS(4234), - [anon_sym_private] = ACTIONS(4234), - [anon_sym_internal] = ACTIONS(4234), - [anon_sym_protected] = ACTIONS(4234), - [anon_sym_tailrec] = ACTIONS(4234), - [anon_sym_operator] = ACTIONS(4234), - [anon_sym_infix] = ACTIONS(4234), - [anon_sym_inline] = ACTIONS(4234), - [anon_sym_external] = ACTIONS(4234), - [sym_property_modifier] = ACTIONS(4234), - [anon_sym_abstract] = ACTIONS(4234), - [anon_sym_final] = ACTIONS(4234), - [anon_sym_open] = ACTIONS(4234), - [anon_sym_vararg] = ACTIONS(4234), - [anon_sym_noinline] = ACTIONS(4234), - [anon_sym_crossinline] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), + [4098] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3074), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_RPAREN] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3074), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3072), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4237), - [sym_safe_nav] = ACTIONS(4237), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4129] = { - [sym_type_constraints] = STATE(4237), - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(5816), - [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_value] = 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), + [4099] = { + [sym_type_constraints] = STATE(4220), + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, - [4130] = { - [sym_type_constraints] = STATE(4210), - [sym_function_body] = STATE(3464), - [sym__block] = STATE(3577), + [4100] = { + [sym_type_constraints] = STATE(4190), + [sym_function_body] = STATE(3956), + [sym__block] = STATE(3874), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_RPAREN] = ACTIONS(4262), + [anon_sym_COMMA] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(5512), + [anon_sym_where] = ACTIONS(5742), [anon_sym_SEMI] = ACTIONS(4262), [anon_sym_get] = ACTIONS(4260), [anon_sym_set] = ACTIONS(4260), [anon_sym_STAR] = ACTIONS(4262), [sym_label] = ACTIONS(4262), [anon_sym_in] = ACTIONS(4260), - [anon_sym_while] = ACTIONS(4260), [anon_sym_DOT_DOT] = ACTIONS(4262), [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), @@ -451674,2200 +449602,1594 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4260), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [4131] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3191), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4132] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4132), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_RBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(4639), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4639), - [anon_sym_DASH_GT] = ACTIONS(4639), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_while] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - }, - [4133] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3112), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4101] = { + [sym_type_constraints] = STATE(4232), + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_COLON] = ACTIONS(7271), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, - [4134] = { - [sym_type_constraints] = STATE(4222), - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_COLON] = ACTIONS(7346), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [4102] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3046), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3046), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4135] = { - [sym_function_body] = STATE(3886), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(7348), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_where] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), - [sym_multiline_comment] = ACTIONS(3), + [4103] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7275), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [4136] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(7350), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4924), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7321), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_PLUS_EQ] = ACTIONS(4926), - [anon_sym_DASH_EQ] = ACTIONS(4926), - [anon_sym_STAR_EQ] = ACTIONS(4926), - [anon_sym_SLASH_EQ] = ACTIONS(4926), - [anon_sym_PERCENT_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4924), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [4104] = { + [sym_type_constraints] = STATE(4184), + [sym_function_body] = STATE(3909), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, - [4137] = { - [sym_type_constraints] = STATE(4209), - [sym_function_body] = STATE(3458), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [4105] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3124), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - }, - [4138] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3175), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4139] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_EQ] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(7352), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4844), - [sym_label] = ACTIONS(4846), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_PLUS_EQ] = ACTIONS(4846), - [anon_sym_DASH_EQ] = ACTIONS(4846), - [anon_sym_STAR_EQ] = ACTIONS(4846), - [anon_sym_SLASH_EQ] = ACTIONS(4846), - [anon_sym_PERCENT_EQ] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4844), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), + [4106] = { + [sym_type_constraints] = STATE(4180), + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), }, - [4140] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_RBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_RPAREN] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(7233), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_DASH_GT] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_while] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), + [4107] = { + [sym_type_constraints] = STATE(4210), + [sym_function_body] = STATE(3378), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_while] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, - [4141] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(3150), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(3150), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4108] = { + [sym_function_body] = STATE(3913), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(7279), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_COMMA] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_where] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [sym_label] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), [sym_multiline_comment] = ACTIONS(3), }, - [4142] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7354), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), - }, - [4143] = { - [sym_type_constraints] = STATE(4219), - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_where] = ACTIONS(5512), - [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_value] = 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), + [4109] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(4214), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(5354), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4217), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(4217), + [anon_sym_DASH_EQ] = ACTIONS(4217), + [anon_sym_STAR_EQ] = ACTIONS(4217), + [anon_sym_SLASH_EQ] = ACTIONS(4217), + [anon_sym_PERCENT_EQ] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), [sym_multiline_comment] = ACTIONS(3), }, - [4144] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(6862), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4220), - [anon_sym_fun] = ACTIONS(4220), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(4220), - [anon_sym_super] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_else] = ACTIONS(4228), - [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(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4223), - [anon_sym_continue_AT] = ACTIONS(4223), - [anon_sym_break_AT] = ACTIONS(4223), - [anon_sym_this_AT] = ACTIONS(4223), - [anon_sym_super_AT] = ACTIONS(4223), - [sym_real_literal] = ACTIONS(4223), - [sym_integer_literal] = ACTIONS(4220), - [sym_hex_literal] = ACTIONS(4223), - [sym_bin_literal] = ACTIONS(4223), - [anon_sym_true] = ACTIONS(4220), - [anon_sym_false] = ACTIONS(4220), - [anon_sym_SQUOTE] = ACTIONS(4223), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4223), - }, - [4145] = { - [sym__type] = STATE(9382), - [sym__type_reference] = STATE(8070), - [sym_not_nullable_type] = STATE(9382), - [sym_nullable_type] = STATE(9382), - [sym_user_type] = STATE(8320), - [sym__simple_user_type] = STATE(8026), - [sym_type_projection] = STATE(8859), - [sym_type_projection_modifiers] = STATE(5918), - [sym__type_projection_modifier] = STATE(7212), - [sym_function_type] = STATE(9382), - [sym_function_type_parameters] = STATE(9733), - [sym_parenthesized_type] = STATE(8070), - [sym_parenthesized_user_type] = STATE(9732), - [sym_type_modifiers] = STATE(6431), - [sym__type_modifier] = STATE(7217), - [sym_variance_modifier] = STATE(7212), - [sym_annotation] = STATE(7217), - [sym__single_annotation] = STATE(7842), - [sym__multi_annotation] = STATE(7842), - [sym_simple_identifier] = STATE(7933), - [sym__lexical_identifier] = STATE(6073), - [aux_sym_type_projection_modifiers_repeat1] = STATE(7212), - [aux_sym_type_modifiers_repeat1] = STATE(7217), - [sym__alpha_identifier] = ACTIONS(7358), - [anon_sym_AT] = ACTIONS(7361), - [anon_sym_LBRACK] = ACTIONS(7364), - [anon_sym_LBRACE] = ACTIONS(7364), - [anon_sym_LPAREN] = ACTIONS(7366), - [anon_sym_object] = ACTIONS(7369), - [anon_sym_fun] = ACTIONS(7369), - [anon_sym_get] = ACTIONS(7371), - [anon_sym_set] = ACTIONS(7371), - [anon_sym_this] = ACTIONS(7369), - [anon_sym_super] = ACTIONS(7369), - [anon_sym_dynamic] = ACTIONS(7374), - [anon_sym_STAR] = ACTIONS(7376), - [sym_label] = ACTIONS(7369), - [anon_sym_in] = ACTIONS(7379), - [anon_sym_null] = ACTIONS(7369), - [anon_sym_if] = ACTIONS(7369), - [anon_sym_when] = ACTIONS(7369), - [anon_sym_try] = ACTIONS(7369), - [anon_sym_throw] = ACTIONS(7369), - [anon_sym_return] = ACTIONS(7369), - [anon_sym_continue] = ACTIONS(7369), - [anon_sym_break] = ACTIONS(7369), - [anon_sym_COLON_COLON] = ACTIONS(7364), - [anon_sym_PLUS] = ACTIONS(7369), - [anon_sym_DASH] = ACTIONS(7369), - [anon_sym_PLUS_PLUS] = ACTIONS(7364), - [anon_sym_DASH_DASH] = ACTIONS(7364), - [anon_sym_BANG] = ACTIONS(7364), - [anon_sym_suspend] = ACTIONS(7381), - [anon_sym_data] = ACTIONS(7371), - [anon_sym_inner] = ACTIONS(7371), - [anon_sym_value] = ACTIONS(7371), - [anon_sym_out] = ACTIONS(7379), - [anon_sym_expect] = ACTIONS(7371), - [anon_sym_actual] = ACTIONS(7371), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(7364), - [anon_sym_continue_AT] = ACTIONS(7364), - [anon_sym_break_AT] = ACTIONS(7364), - [anon_sym_this_AT] = ACTIONS(7364), - [anon_sym_super_AT] = ACTIONS(7364), - [sym_real_literal] = ACTIONS(7364), - [sym_integer_literal] = ACTIONS(7369), - [sym_hex_literal] = ACTIONS(7364), - [sym_bin_literal] = ACTIONS(7364), - [anon_sym_true] = ACTIONS(7369), - [anon_sym_false] = ACTIONS(7369), - [anon_sym_SQUOTE] = ACTIONS(7364), - [sym__backtick_identifier] = ACTIONS(7383), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(7364), - }, - [4146] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7386), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(4228), - [anon_sym_fun] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_this] = ACTIONS(4228), - [anon_sym_super] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4226), - [sym_label] = ACTIONS(4228), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_try] = ACTIONS(4228), - [anon_sym_throw] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4226), - [anon_sym_continue_AT] = ACTIONS(4226), - [anon_sym_break_AT] = ACTIONS(4226), - [anon_sym_this_AT] = ACTIONS(4226), - [anon_sym_super_AT] = ACTIONS(4226), - [sym_real_literal] = ACTIONS(4226), - [sym_integer_literal] = ACTIONS(4228), - [sym_hex_literal] = ACTIONS(4226), - [sym_bin_literal] = ACTIONS(4226), - [anon_sym_true] = ACTIONS(4228), - [anon_sym_false] = ACTIONS(4228), - [anon_sym_SQUOTE] = ACTIONS(4226), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4226), - }, - [4147] = { - [sym_type_constraints] = STATE(4222), - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [4110] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4182), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(5350), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(4185), + [anon_sym_DASH_EQ] = ACTIONS(4185), + [anon_sym_STAR_EQ] = ACTIONS(4185), + [anon_sym_SLASH_EQ] = ACTIONS(4185), + [anon_sym_PERCENT_EQ] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [4148] = { - [sym_type_constraints] = STATE(3335), - [sym_enum_class_body] = STATE(3480), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(6256), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_RPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [4111] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3098), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4149] = { - [sym_class_body] = STATE(3853), - [sym_type_constraints] = STATE(3820), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7388), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [4112] = { + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_RBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_RPAREN] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(7229), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_DASH_GT] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), [sym_multiline_comment] = ACTIONS(3), }, - [4150] = { - [sym_class_body] = STATE(3510), - [sym_type_constraints] = STATE(3312), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7390), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [4113] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4182), + [anon_sym_as] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_LPAREN] = ACTIONS(5906), + [anon_sym_LT] = ACTIONS(4182), + [anon_sym_GT] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4185), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4182), + [sym_label] = ACTIONS(4185), + [anon_sym_in] = ACTIONS(4182), + [anon_sym_DOT_DOT] = ACTIONS(4185), + [anon_sym_QMARK_COLON] = ACTIONS(4185), + [anon_sym_AMP_AMP] = ACTIONS(4185), + [anon_sym_PIPE_PIPE] = ACTIONS(4185), + [anon_sym_else] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4182), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4185), + [anon_sym_EQ_EQ] = ACTIONS(4182), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4185), + [anon_sym_LT_EQ] = ACTIONS(4185), + [anon_sym_GT_EQ] = ACTIONS(4185), + [anon_sym_BANGin] = ACTIONS(4185), + [anon_sym_is] = ACTIONS(4182), + [anon_sym_BANGis] = ACTIONS(4185), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4182), + [anon_sym_PERCENT] = ACTIONS(4182), + [anon_sym_as_QMARK] = ACTIONS(4185), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG_BANG] = ACTIONS(4185), + [anon_sym_suspend] = ACTIONS(4182), + [anon_sym_sealed] = ACTIONS(4182), + [anon_sym_annotation] = ACTIONS(4182), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_override] = ACTIONS(4182), + [anon_sym_lateinit] = ACTIONS(4182), + [anon_sym_public] = ACTIONS(4182), + [anon_sym_private] = ACTIONS(4182), + [anon_sym_internal] = ACTIONS(4182), + [anon_sym_protected] = ACTIONS(4182), + [anon_sym_tailrec] = ACTIONS(4182), + [anon_sym_operator] = ACTIONS(4182), + [anon_sym_infix] = ACTIONS(4182), + [anon_sym_inline] = ACTIONS(4182), + [anon_sym_external] = ACTIONS(4182), + [sym_property_modifier] = ACTIONS(4182), + [anon_sym_abstract] = ACTIONS(4182), + [anon_sym_final] = ACTIONS(4182), + [anon_sym_open] = ACTIONS(4182), + [anon_sym_vararg] = ACTIONS(4182), + [anon_sym_noinline] = ACTIONS(4182), + [anon_sym_crossinline] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4185), [sym_multiline_comment] = ACTIONS(3), }, - [4151] = { - [sym_type_constraints] = STATE(3787), - [sym_enum_class_body] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(7392), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), + [4114] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4214), + [anon_sym_as] = ACTIONS(4214), + [anon_sym_EQ] = ACTIONS(3938), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_LPAREN] = ACTIONS(5912), + [anon_sym_LT] = ACTIONS(4214), + [anon_sym_GT] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4217), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4214), + [sym_label] = ACTIONS(4217), + [anon_sym_in] = ACTIONS(4214), + [anon_sym_DOT_DOT] = ACTIONS(4217), + [anon_sym_QMARK_COLON] = ACTIONS(4217), + [anon_sym_AMP_AMP] = ACTIONS(4217), + [anon_sym_PIPE_PIPE] = ACTIONS(4217), + [anon_sym_else] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(4214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4217), + [anon_sym_EQ_EQ] = ACTIONS(4214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4217), + [anon_sym_LT_EQ] = ACTIONS(4217), + [anon_sym_GT_EQ] = ACTIONS(4217), + [anon_sym_BANGin] = ACTIONS(4217), + [anon_sym_is] = ACTIONS(4214), + [anon_sym_BANGis] = ACTIONS(4217), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4214), + [anon_sym_PERCENT] = ACTIONS(4214), + [anon_sym_as_QMARK] = ACTIONS(4217), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG_BANG] = ACTIONS(4217), + [anon_sym_suspend] = ACTIONS(4214), + [anon_sym_sealed] = ACTIONS(4214), + [anon_sym_annotation] = ACTIONS(4214), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_override] = ACTIONS(4214), + [anon_sym_lateinit] = ACTIONS(4214), + [anon_sym_public] = ACTIONS(4214), + [anon_sym_private] = ACTIONS(4214), + [anon_sym_internal] = ACTIONS(4214), + [anon_sym_protected] = ACTIONS(4214), + [anon_sym_tailrec] = ACTIONS(4214), + [anon_sym_operator] = ACTIONS(4214), + [anon_sym_infix] = ACTIONS(4214), + [anon_sym_inline] = ACTIONS(4214), + [anon_sym_external] = ACTIONS(4214), + [sym_property_modifier] = ACTIONS(4214), + [anon_sym_abstract] = ACTIONS(4214), + [anon_sym_final] = ACTIONS(4214), + [anon_sym_open] = ACTIONS(4214), + [anon_sym_vararg] = ACTIONS(4214), + [anon_sym_noinline] = ACTIONS(4214), + [anon_sym_crossinline] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4217), + [sym_safe_nav] = ACTIONS(4217), [sym_multiline_comment] = ACTIONS(3), }, - [4152] = { - [sym_type_constraints] = STATE(3823), - [sym_enum_class_body] = STATE(3831), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(6292), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_COMMA] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), + [4115] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3113), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3113), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [4153] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(7394), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_object] = ACTIONS(4844), - [anon_sym_fun] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_this] = ACTIONS(4844), - [anon_sym_super] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [sym_label] = ACTIONS(4844), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4844), - [anon_sym_if] = ACTIONS(4844), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_when] = ACTIONS(4844), - [anon_sym_try] = ACTIONS(4844), - [anon_sym_throw] = ACTIONS(4844), - [anon_sym_return] = ACTIONS(4844), - [anon_sym_continue] = ACTIONS(4844), - [anon_sym_break] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG] = ACTIONS(4844), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4846), - [anon_sym_continue_AT] = ACTIONS(4846), - [anon_sym_break_AT] = ACTIONS(4846), - [anon_sym_this_AT] = ACTIONS(4846), - [anon_sym_super_AT] = ACTIONS(4846), - [sym_real_literal] = ACTIONS(4846), - [sym_integer_literal] = ACTIONS(4844), - [sym_hex_literal] = ACTIONS(4846), - [sym_bin_literal] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4844), - [anon_sym_false] = ACTIONS(4844), - [anon_sym_SQUOTE] = ACTIONS(4846), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4846), - }, - [4154] = { - [sym_function_body] = STATE(3392), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(7396), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_RPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_while] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4155] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7398), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [4116] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_EQ] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(7281), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4840), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_PLUS_EQ] = ACTIONS(4842), + [anon_sym_DASH_EQ] = ACTIONS(4842), + [anon_sym_STAR_EQ] = ACTIONS(4842), + [anon_sym_SLASH_EQ] = ACTIONS(4842), + [anon_sym_PERCENT_EQ] = ACTIONS(4842), + [anon_sym_BANG_EQ] = ACTIONS(4840), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4842), + [anon_sym_EQ_EQ] = ACTIONS(4840), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4842), + [anon_sym_LT_EQ] = ACTIONS(4842), + [anon_sym_GT_EQ] = ACTIONS(4842), + [anon_sym_BANGin] = ACTIONS(4842), + [anon_sym_is] = ACTIONS(4840), + [anon_sym_BANGis] = ACTIONS(4842), + [anon_sym_PLUS] = ACTIONS(4840), + [anon_sym_DASH] = ACTIONS(4840), + [anon_sym_SLASH] = ACTIONS(4840), + [anon_sym_PERCENT] = ACTIONS(4840), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), }, - [4156] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(7402), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_object] = ACTIONS(4852), - [anon_sym_fun] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_this] = ACTIONS(4852), - [anon_sym_super] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [sym_label] = ACTIONS(4852), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_null] = ACTIONS(4852), - [anon_sym_if] = ACTIONS(4852), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_when] = ACTIONS(4852), - [anon_sym_try] = ACTIONS(4852), - [anon_sym_throw] = ACTIONS(4852), - [anon_sym_return] = ACTIONS(4852), - [anon_sym_continue] = ACTIONS(4852), - [anon_sym_break] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG] = ACTIONS(4852), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4854), - [anon_sym_continue_AT] = ACTIONS(4854), - [anon_sym_break_AT] = ACTIONS(4854), - [anon_sym_this_AT] = ACTIONS(4854), - [anon_sym_super_AT] = ACTIONS(4854), - [sym_real_literal] = ACTIONS(4854), - [sym_integer_literal] = ACTIONS(4852), - [sym_hex_literal] = ACTIONS(4854), - [sym_bin_literal] = ACTIONS(4854), - [anon_sym_true] = ACTIONS(4852), - [anon_sym_false] = ACTIONS(4852), - [anon_sym_SQUOTE] = ACTIONS(4854), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4854), + [4117] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7283), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, - [4157] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7404), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4242), - [anon_sym_fun] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_this] = ACTIONS(4242), - [anon_sym_super] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4240), - [sym_label] = ACTIONS(4242), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [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(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4242), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4242), - [anon_sym_inner] = ACTIONS(4242), - [anon_sym_value] = ACTIONS(4242), - [anon_sym_expect] = ACTIONS(4242), - [anon_sym_actual] = ACTIONS(4242), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4240), - [anon_sym_continue_AT] = ACTIONS(4240), - [anon_sym_break_AT] = ACTIONS(4240), - [anon_sym_this_AT] = ACTIONS(4240), - [anon_sym_super_AT] = ACTIONS(4240), - [sym_real_literal] = ACTIONS(4240), - [sym_integer_literal] = ACTIONS(4242), - [sym_hex_literal] = ACTIONS(4240), - [sym_bin_literal] = ACTIONS(4240), - [anon_sym_true] = ACTIONS(4242), - [anon_sym_false] = ACTIONS(4242), - [anon_sym_SQUOTE] = ACTIONS(4240), - [sym__backtick_identifier] = ACTIONS(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [4118] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3067), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3067), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4240), }, - [4158] = { - [sym_type_constraints] = STATE(4237), - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = ACTIONS(4156), - [anon_sym_where] = ACTIONS(5816), - [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_value] = 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), + [4119] = { + [sym_type_constraints] = STATE(4213), + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = 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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), }, - [4159] = { - [sym_type_constraints] = STATE(4233), - [sym_function_body] = STATE(3988), - [sym__block] = STATE(3975), + [4120] = { + [sym_type_constraints] = STATE(4249), + [sym_function_body] = STATE(4000), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4123), + [anon_sym_AT] = ACTIONS(4125), + [anon_sym_COLON] = ACTIONS(7287), + [anon_sym_LBRACK] = ACTIONS(4125), + [anon_sym_DOT] = ACTIONS(4123), + [anon_sym_as] = ACTIONS(4123), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4125), + [anon_sym_LPAREN] = ACTIONS(4125), + [anon_sym_LT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4125), + [anon_sym_get] = ACTIONS(4123), + [anon_sym_set] = ACTIONS(4123), + [anon_sym_STAR] = ACTIONS(4125), + [sym_label] = ACTIONS(4125), + [anon_sym_in] = ACTIONS(4123), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_QMARK_COLON] = ACTIONS(4125), + [anon_sym_AMP_AMP] = ACTIONS(4125), + [anon_sym_PIPE_PIPE] = ACTIONS(4125), + [anon_sym_else] = ACTIONS(4123), + [anon_sym_COLON_COLON] = ACTIONS(4125), + [anon_sym_BANG_EQ] = ACTIONS(4123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4125), + [anon_sym_EQ_EQ] = ACTIONS(4123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4125), + [anon_sym_LT_EQ] = ACTIONS(4125), + [anon_sym_GT_EQ] = ACTIONS(4125), + [anon_sym_BANGin] = ACTIONS(4125), + [anon_sym_is] = ACTIONS(4123), + [anon_sym_BANGis] = ACTIONS(4125), + [anon_sym_PLUS] = ACTIONS(4123), + [anon_sym_DASH] = ACTIONS(4123), + [anon_sym_SLASH] = ACTIONS(4123), + [anon_sym_PERCENT] = ACTIONS(4125), + [anon_sym_as_QMARK] = ACTIONS(4125), + [anon_sym_PLUS_PLUS] = ACTIONS(4125), + [anon_sym_DASH_DASH] = ACTIONS(4125), + [anon_sym_BANG_BANG] = ACTIONS(4125), + [anon_sym_suspend] = ACTIONS(4123), + [anon_sym_sealed] = ACTIONS(4123), + [anon_sym_annotation] = ACTIONS(4123), + [anon_sym_data] = ACTIONS(4123), + [anon_sym_inner] = ACTIONS(4123), + [anon_sym_value] = ACTIONS(4123), + [anon_sym_override] = ACTIONS(4123), + [anon_sym_lateinit] = ACTIONS(4123), + [anon_sym_public] = ACTIONS(4123), + [anon_sym_private] = ACTIONS(4123), + [anon_sym_internal] = ACTIONS(4123), + [anon_sym_protected] = ACTIONS(4123), + [anon_sym_tailrec] = ACTIONS(4123), + [anon_sym_operator] = ACTIONS(4123), + [anon_sym_infix] = ACTIONS(4123), + [anon_sym_inline] = ACTIONS(4123), + [anon_sym_external] = ACTIONS(4123), + [sym_property_modifier] = ACTIONS(4123), + [anon_sym_abstract] = ACTIONS(4123), + [anon_sym_final] = ACTIONS(4123), + [anon_sym_open] = ACTIONS(4123), + [anon_sym_vararg] = ACTIONS(4123), + [anon_sym_noinline] = ACTIONS(4123), + [anon_sym_crossinline] = ACTIONS(4123), + [anon_sym_expect] = ACTIONS(4123), + [anon_sym_actual] = ACTIONS(4123), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4125), + [sym__automatic_semicolon] = ACTIONS(4125), + [sym_safe_nav] = ACTIONS(4125), + [sym_multiline_comment] = ACTIONS(3), + }, + [4121] = { + [sym_type_constraints] = STATE(4219), + [sym_function_body] = STATE(3387), + [sym__block] = STATE(3524), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), [anon_sym_GT] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(5816), + [anon_sym_where] = ACTIONS(5448), [anon_sym_SEMI] = ACTIONS(4262), [anon_sym_get] = ACTIONS(4260), [anon_sym_set] = ACTIONS(4260), [anon_sym_STAR] = ACTIONS(4262), [sym_label] = ACTIONS(4262), [anon_sym_in] = ACTIONS(4260), + [anon_sym_while] = ACTIONS(4260), [anon_sym_DOT_DOT] = ACTIONS(4262), [anon_sym_QMARK_COLON] = ACTIONS(4262), [anon_sym_AMP_AMP] = ACTIONS(4262), @@ -453919,1791 +451241,4815 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(4260), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4262), - [sym__automatic_semicolon] = ACTIONS(4262), [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [4160] = { - [sym_type_constraints] = STATE(3811), - [sym_enum_class_body] = STATE(3853), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7406), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_COMMA] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [4122] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3117), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3117), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4161] = { - [sym__alpha_identifier] = ACTIONS(4242), + [4123] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_EQ] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(7289), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4850), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_PLUS_EQ] = ACTIONS(4852), + [anon_sym_DASH_EQ] = ACTIONS(4852), + [anon_sym_STAR_EQ] = ACTIONS(4852), + [anon_sym_SLASH_EQ] = ACTIONS(4852), + [anon_sym_PERCENT_EQ] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4850), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + }, + [4124] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3132), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4125] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3078), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3078), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4126] = { + [sym_type_constraints] = STATE(4242), + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(7291), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [4127] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3139), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3139), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4128] = { + [sym_type_constraints] = STATE(4221), + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_COLON] = ACTIONS(7293), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + }, + [4129] = { + [sym_type_constraints] = STATE(4170), + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + }, + [4130] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3109), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3109), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4131] = { + [sym_type_constraints] = STATE(4198), + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [4132] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3052), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3052), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4133] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_EQ] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7295), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4222), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_PLUS_EQ] = ACTIONS(4220), + [anon_sym_DASH_EQ] = ACTIONS(4220), + [anon_sym_STAR_EQ] = ACTIONS(4220), + [anon_sym_SLASH_EQ] = ACTIONS(4220), + [anon_sym_PERCENT_EQ] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4222), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + }, + [4134] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3086), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3086), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4135] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(7297), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7299), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [4136] = { + [sym_type_constraints] = STATE(4252), + [sym_function_body] = STATE(3826), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_COLON] = ACTIONS(7301), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), + [sym_multiline_comment] = ACTIONS(3), + }, + [4137] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4137), + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_RBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_as] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4613), + [anon_sym_RBRACE] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(7303), + [anon_sym_RPAREN] = ACTIONS(4613), + [anon_sym_LT] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4611), + [anon_sym_where] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [anon_sym_get] = ACTIONS(4611), + [anon_sym_set] = ACTIONS(4611), + [anon_sym_STAR] = ACTIONS(4613), + [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_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(4613), + [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_value] = 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), + [sym_multiline_comment] = ACTIONS(3), + }, + [4138] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_EQ] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4856), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7299), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_PLUS_EQ] = ACTIONS(4858), + [anon_sym_DASH_EQ] = ACTIONS(4858), + [anon_sym_STAR_EQ] = ACTIONS(4858), + [anon_sym_SLASH_EQ] = ACTIONS(4858), + [anon_sym_PERCENT_EQ] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4856), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [4139] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3059), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4140] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_DASH_GT] = ACTIONS(3102), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4141] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_RPAREN] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(3143), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4142] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4137), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_RBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_as] = 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_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4513), + [anon_sym_where] = ACTIONS(4513), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = ACTIONS(4513), + [anon_sym_STAR] = ACTIONS(4515), + [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_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(4515), + [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_value] = 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_multiline_comment] = ACTIONS(3), + }, + [4143] = { + [sym_type_constraints] = STATE(4149), + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [4144] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(6781), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4182), + [anon_sym_fun] = ACTIONS(4182), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(4182), + [anon_sym_super] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4182), + [anon_sym_if] = ACTIONS(4182), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4182), + [anon_sym_try] = ACTIONS(4182), + [anon_sym_throw] = ACTIONS(4182), + [anon_sym_return] = ACTIONS(4182), + [anon_sym_continue] = ACTIONS(4182), + [anon_sym_break] = ACTIONS(4182), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(4182), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4185), + [anon_sym_continue_AT] = ACTIONS(4185), + [anon_sym_break_AT] = ACTIONS(4185), + [anon_sym_this_AT] = ACTIONS(4185), + [anon_sym_super_AT] = ACTIONS(4185), + [sym_real_literal] = ACTIONS(4185), + [sym_integer_literal] = ACTIONS(4182), + [sym_hex_literal] = ACTIONS(4185), + [sym_bin_literal] = ACTIONS(4185), + [anon_sym_true] = ACTIONS(4182), + [anon_sym_false] = ACTIONS(4182), + [anon_sym_SQUOTE] = ACTIONS(4185), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4185), + }, + [4145] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_RBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(7306), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [anon_sym_DASH_GT] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_while] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [4146] = { + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_COMMA] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [4147] = { + [sym_function_body] = STATE(3518), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4238), [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(7310), [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_RBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7408), - [anon_sym_COMMA] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), [anon_sym_STAR] = ACTIONS(4240), - [anon_sym_DASH_GT] = ACTIONS(4240), [sym_label] = ACTIONS(4240), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_while] = ACTIONS(4238), [anon_sym_DOT_DOT] = ACTIONS(4240), [anon_sym_QMARK_COLON] = ACTIONS(4240), [anon_sym_AMP_AMP] = ACTIONS(4240), [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_else] = ACTIONS(4242), + [anon_sym_else] = ACTIONS(4238), [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), + [anon_sym_BANG_EQ] = ACTIONS(4238), [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), + [anon_sym_EQ_EQ] = ACTIONS(4238), [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), [anon_sym_LT_EQ] = ACTIONS(4240), [anon_sym_GT_EQ] = ACTIONS(4240), [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), + [anon_sym_is] = ACTIONS(4238), [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), [anon_sym_PERCENT] = ACTIONS(4240), [anon_sym_as_QMARK] = ACTIONS(4240), [anon_sym_PLUS_PLUS] = ACTIONS(4240), [anon_sym_DASH_DASH] = ACTIONS(4240), [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(4240), [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), }, - [4162] = { - [sym_class_body] = STATE(3536), - [sym_type_constraints] = STATE(3274), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6236), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [4148] = { + [sym_function_body] = STATE(3826), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_COMMA] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_where] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, - [4163] = { - [sym_function_body] = STATE(3396), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(7410), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [4149] = { + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_COMMA] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), + [sym_multiline_comment] = ACTIONS(3), + }, + [4150] = { + [sym_type_constraints] = STATE(4221), + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), + }, + [4151] = { + [sym__alpha_identifier] = ACTIONS(4182), + [anon_sym_AT] = ACTIONS(4185), + [anon_sym_LBRACK] = ACTIONS(4185), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4185), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7312), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4182), + [anon_sym_set] = ACTIONS(4182), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4185), + [sym_label] = ACTIONS(4182), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4185), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4182), + [anon_sym_DASH] = ACTIONS(4182), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4185), + [anon_sym_DASH_DASH] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4182), + [anon_sym_inner] = ACTIONS(4182), + [anon_sym_value] = ACTIONS(4182), + [anon_sym_expect] = ACTIONS(4182), + [anon_sym_actual] = ACTIONS(4182), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4185), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), + }, + [4152] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_RBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(7316), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_RPAREN] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_DASH_GT] = ACTIONS(4852), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + }, + [4153] = { + [sym_type_constraints] = STATE(3330), + [sym_enum_class_body] = STATE(3464), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7318), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + }, + [4154] = { + [sym_type_constraints] = STATE(3353), + [sym_enum_class_body] = STATE(3386), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(7320), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_while] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), + [sym_multiline_comment] = ACTIONS(3), + }, + [4155] = { + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7322), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_object] = ACTIONS(4190), + [anon_sym_fun] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_this] = ACTIONS(4190), + [anon_sym_super] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4188), + [sym_label] = ACTIONS(4190), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_null] = ACTIONS(4190), + [anon_sym_if] = ACTIONS(4190), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_when] = ACTIONS(4190), + [anon_sym_try] = ACTIONS(4190), + [anon_sym_throw] = ACTIONS(4190), + [anon_sym_return] = ACTIONS(4190), + [anon_sym_continue] = ACTIONS(4190), + [anon_sym_break] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG] = ACTIONS(4190), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4188), + [anon_sym_continue_AT] = ACTIONS(4188), + [anon_sym_break_AT] = ACTIONS(4188), + [anon_sym_this_AT] = ACTIONS(4188), + [anon_sym_super_AT] = ACTIONS(4188), + [sym_real_literal] = ACTIONS(4188), + [sym_integer_literal] = ACTIONS(4190), + [sym_hex_literal] = ACTIONS(4188), + [sym_bin_literal] = ACTIONS(4188), + [anon_sym_true] = ACTIONS(4190), + [anon_sym_false] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4188), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4188), + }, + [4156] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7324), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4222), + [anon_sym_fun] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_this] = ACTIONS(4222), + [anon_sym_super] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4220), + [sym_label] = ACTIONS(4222), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4222), + [anon_sym_if] = ACTIONS(4222), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4222), + [anon_sym_try] = ACTIONS(4222), + [anon_sym_throw] = ACTIONS(4222), + [anon_sym_return] = ACTIONS(4222), + [anon_sym_continue] = ACTIONS(4222), + [anon_sym_break] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4222), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4220), + [anon_sym_continue_AT] = ACTIONS(4220), + [anon_sym_break_AT] = ACTIONS(4220), + [anon_sym_this_AT] = ACTIONS(4220), + [anon_sym_super_AT] = ACTIONS(4220), + [sym_real_literal] = ACTIONS(4220), + [sym_integer_literal] = ACTIONS(4222), + [sym_hex_literal] = ACTIONS(4220), + [sym_bin_literal] = ACTIONS(4220), + [anon_sym_true] = ACTIONS(4222), + [anon_sym_false] = ACTIONS(4222), + [anon_sym_SQUOTE] = ACTIONS(4220), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4220), + }, + [4157] = { + [sym_type_constraints] = STATE(4242), + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), + [sym_multiline_comment] = ACTIONS(3), + }, + [4158] = { + [sym_class_body] = STATE(3464), + [sym_type_constraints] = STATE(3364), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7326), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_RPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_while] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + }, + [4159] = { + [sym_type_constraints] = STATE(3363), + [sym_enum_class_body] = STATE(3430), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(6252), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_RPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3240), + [sym_safe_nav] = ACTIONS(3240), + [sym_multiline_comment] = ACTIONS(3), + }, + [4160] = { + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(6777), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(4214), + [anon_sym_fun] = ACTIONS(4214), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(4214), + [anon_sym_super] = ACTIONS(4214), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(4214), + [anon_sym_if] = ACTIONS(4214), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(4214), + [anon_sym_try] = ACTIONS(4214), + [anon_sym_throw] = ACTIONS(4214), + [anon_sym_return] = ACTIONS(4214), + [anon_sym_continue] = ACTIONS(4214), + [anon_sym_break] = ACTIONS(4214), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(4214), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4217), + [anon_sym_continue_AT] = ACTIONS(4217), + [anon_sym_break_AT] = ACTIONS(4217), + [anon_sym_this_AT] = ACTIONS(4217), + [anon_sym_super_AT] = ACTIONS(4217), + [sym_real_literal] = ACTIONS(4217), + [sym_integer_literal] = ACTIONS(4214), + [sym_hex_literal] = ACTIONS(4217), + [sym_bin_literal] = ACTIONS(4217), + [anon_sym_true] = ACTIONS(4214), + [anon_sym_false] = ACTIONS(4214), + [anon_sym_SQUOTE] = ACTIONS(4217), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4217), + }, + [4161] = { + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_RBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7328), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_DASH_GT] = ACTIONS(4220), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), }, + [4162] = { + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(7330), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_object] = ACTIONS(4840), + [anon_sym_fun] = 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(4842), + [sym_label] = ACTIONS(4840), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_null] = ACTIONS(4840), + [anon_sym_if] = ACTIONS(4840), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_when] = ACTIONS(4840), + [anon_sym_try] = ACTIONS(4840), + [anon_sym_throw] = ACTIONS(4840), + [anon_sym_return] = ACTIONS(4840), + [anon_sym_continue] = ACTIONS(4840), + [anon_sym_break] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_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(4842), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG] = ACTIONS(4840), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4842), + [anon_sym_continue_AT] = ACTIONS(4842), + [anon_sym_break_AT] = ACTIONS(4842), + [anon_sym_this_AT] = ACTIONS(4842), + [anon_sym_super_AT] = ACTIONS(4842), + [sym_real_literal] = ACTIONS(4842), + [sym_integer_literal] = ACTIONS(4840), + [sym_hex_literal] = ACTIONS(4842), + [sym_bin_literal] = ACTIONS(4842), + [anon_sym_true] = ACTIONS(4840), + [anon_sym_false] = ACTIONS(4840), + [anon_sym_SQUOTE] = ACTIONS(4842), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4842), + }, + [4163] = { + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(7332), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_object] = ACTIONS(4850), + [anon_sym_fun] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_this] = ACTIONS(4850), + [anon_sym_super] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4850), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_null] = ACTIONS(4850), + [anon_sym_if] = ACTIONS(4850), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_when] = ACTIONS(4850), + [anon_sym_try] = ACTIONS(4850), + [anon_sym_throw] = ACTIONS(4850), + [anon_sym_return] = ACTIONS(4850), + [anon_sym_continue] = ACTIONS(4850), + [anon_sym_break] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG] = ACTIONS(4850), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4852), + [anon_sym_continue_AT] = ACTIONS(4852), + [anon_sym_break_AT] = ACTIONS(4852), + [anon_sym_this_AT] = ACTIONS(4852), + [anon_sym_super_AT] = ACTIONS(4852), + [sym_real_literal] = ACTIONS(4852), + [sym_integer_literal] = ACTIONS(4850), + [sym_hex_literal] = ACTIONS(4852), + [sym_bin_literal] = ACTIONS(4852), + [anon_sym_true] = ACTIONS(4850), + [anon_sym_false] = ACTIONS(4850), + [anon_sym_SQUOTE] = ACTIONS(4852), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4852), + }, [4164] = { - [sym_function_body] = STATE(3889), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [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_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_value] = 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_type_constraints] = STATE(4232), + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, [4165] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_RBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7412), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_DASH_GT] = ACTIONS(4226), - [sym_label] = ACTIONS(4226), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), + [sym_type_constraints] = STATE(3729), + [sym_enum_class_body] = STATE(3841), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(7334), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), [sym_multiline_comment] = ACTIONS(3), }, [4166] = { - [sym__alpha_identifier] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4223), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7414), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4220), - [anon_sym_set] = ACTIONS(4220), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(4223), - [sym_label] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(4223), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4223), - [anon_sym_DASH_DASH] = ACTIONS(4223), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_data] = ACTIONS(4220), - [anon_sym_inner] = ACTIONS(4220), - [anon_sym_value] = ACTIONS(4220), - [anon_sym_expect] = ACTIONS(4220), - [anon_sym_actual] = ACTIONS(4220), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(4223), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym_type_constraints] = STATE(3743), + [sym_enum_class_body] = STATE(3876), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(6262), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_COMMA] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [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), }, [4167] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_RBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_DASH_GT] = ACTIONS(4846), - [sym_label] = ACTIONS(4846), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), + [sym_class_body] = STATE(3990), + [sym_type_constraints] = STATE(3818), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7336), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, [4168] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(7420), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_DASH_GT] = ACTIONS(4854), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_while] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), + [sym_type_constraints] = STATE(3717), + [sym_enum_class_body] = STATE(3990), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7338), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_COMMA] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, [4169] = { - [sym_function_body] = STATE(3878), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_COMMA] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4395), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4395), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), + [sym_function_body] = STATE(3598), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(7340), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_RPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [sym_label] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_while] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), [sym_multiline_comment] = ACTIONS(3), }, [4170] = { - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [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_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_value] = 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_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_COMMA] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_where] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), }, [4171] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(7422), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(7424), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_RBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7342), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4188), + [anon_sym_DASH_GT] = ACTIONS(4188), + [sym_label] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), }, [4172] = { - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_COMMA] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym_class_body] = STATE(3501), + [sym_type_constraints] = STATE(3339), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(6288), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [4173] = { - [sym_class_body] = STATE(3964), - [sym_type_constraints] = STATE(3783), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6308), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [sym_class_body] = STATE(3893), + [sym_type_constraints] = STATE(3712), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(6196), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [4174] = { - [sym_function_body] = STATE(3861), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_COMMA] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_where] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4387), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_RBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(7344), + [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_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4842), + [anon_sym_DASH_GT] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_while] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_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(4842), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), [sym_multiline_comment] = ACTIONS(3), }, [4175] = { - [sym_type_constraints] = STATE(3734), - [sym_enum_class_body] = STATE(3964), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6310), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [sym_type_constraints] = STATE(3711), + [sym_enum_class_body] = STATE(3893), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(6198), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_COMMA] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [4176] = { - [sym_function_body] = STATE(3897), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_COMMA] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_where] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [sym_class_body] = STATE(3923), + [sym_type_constraints] = STATE(3784), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(7346), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_COMMA] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), [sym_multiline_comment] = ACTIONS(3), }, [4177] = { - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_COMMA] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_where] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [sym_class_body] = STATE(3947), + [sym_type_constraints] = STATE(3738), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_COMMA] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, [4178] = { - [sym_class_body] = STATE(3562), - [sym_type_constraints] = STATE(3303), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(6258), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_RPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), + [sym_class_body] = STATE(3503), + [sym_type_constraints] = STATE(3302), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(7348), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_RPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_while] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), [sym_multiline_comment] = ACTIONS(3), }, [4179] = { - [sym__alpha_identifier] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4237), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4237), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(6868), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_object] = ACTIONS(4234), - [anon_sym_fun] = ACTIONS(4234), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4234), - [anon_sym_set] = ACTIONS(4234), - [anon_sym_this] = ACTIONS(4234), - [anon_sym_super] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4237), - [sym_label] = ACTIONS(4234), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_null] = ACTIONS(4234), - [anon_sym_if] = ACTIONS(4234), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_when] = ACTIONS(4234), - [anon_sym_try] = ACTIONS(4234), - [anon_sym_throw] = ACTIONS(4234), - [anon_sym_return] = ACTIONS(4234), - [anon_sym_continue] = ACTIONS(4234), - [anon_sym_break] = ACTIONS(4234), - [anon_sym_COLON_COLON] = ACTIONS(4237), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4237), - [anon_sym_DASH_DASH] = ACTIONS(4237), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [anon_sym_data] = ACTIONS(4234), - [anon_sym_inner] = ACTIONS(4234), - [anon_sym_value] = ACTIONS(4234), - [anon_sym_expect] = ACTIONS(4234), - [anon_sym_actual] = ACTIONS(4234), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4237), - [anon_sym_continue_AT] = ACTIONS(4237), - [anon_sym_break_AT] = ACTIONS(4237), - [anon_sym_this_AT] = ACTIONS(4237), - [anon_sym_super_AT] = ACTIONS(4237), - [sym_real_literal] = ACTIONS(4237), - [sym_integer_literal] = ACTIONS(4234), - [sym_hex_literal] = ACTIONS(4237), - [sym_bin_literal] = ACTIONS(4237), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [anon_sym_SQUOTE] = ACTIONS(4237), - [sym__backtick_identifier] = ACTIONS(4237), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4237), + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(7350), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(7352), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, [4180] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_object] = ACTIONS(4924), - [anon_sym_fun] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_this] = ACTIONS(4924), - [anon_sym_super] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_null] = ACTIONS(4924), - [anon_sym_if] = ACTIONS(4924), - [anon_sym_else] = ACTIONS(7424), - [anon_sym_when] = ACTIONS(4924), - [anon_sym_try] = ACTIONS(4924), - [anon_sym_throw] = ACTIONS(4924), - [anon_sym_return] = ACTIONS(4924), - [anon_sym_continue] = ACTIONS(4924), - [anon_sym_break] = ACTIONS(4924), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(4926), - [anon_sym_continue_AT] = ACTIONS(4926), - [anon_sym_break_AT] = ACTIONS(4926), - [anon_sym_this_AT] = ACTIONS(4926), - [anon_sym_super_AT] = ACTIONS(4926), - [sym_real_literal] = ACTIONS(4926), - [sym_integer_literal] = ACTIONS(4924), - [sym_hex_literal] = ACTIONS(4926), - [sym_bin_literal] = ACTIONS(4926), - [anon_sym_true] = ACTIONS(4924), - [anon_sym_false] = ACTIONS(4924), - [anon_sym_SQUOTE] = ACTIONS(4926), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym_function_body] = STATE(3909), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_COMMA] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(4926), }, [4181] = { - [sym_type_constraints] = STATE(3295), - [sym_enum_class_body] = STATE(3510), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7426), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_RPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_while] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [sym_type_constraints] = STATE(4229), + [sym_function_body] = STATE(3909), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, [4182] = { - [sym_class_body] = STATE(3856), - [sym_type_constraints] = STATE(3803), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(7428), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_COMMA] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_object] = ACTIONS(4856), + [anon_sym_fun] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_this] = ACTIONS(4856), + [anon_sym_super] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4856), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(4856), + [anon_sym_if] = ACTIONS(4856), + [anon_sym_else] = ACTIONS(7352), + [anon_sym_when] = ACTIONS(4856), + [anon_sym_try] = ACTIONS(4856), + [anon_sym_throw] = ACTIONS(4856), + [anon_sym_return] = ACTIONS(4856), + [anon_sym_continue] = ACTIONS(4856), + [anon_sym_break] = ACTIONS(4856), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG] = ACTIONS(4856), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(4858), + [anon_sym_continue_AT] = ACTIONS(4858), + [anon_sym_break_AT] = ACTIONS(4858), + [anon_sym_this_AT] = ACTIONS(4858), + [anon_sym_super_AT] = ACTIONS(4858), + [sym_real_literal] = ACTIONS(4858), + [sym_integer_literal] = ACTIONS(4856), + [sym_hex_literal] = ACTIONS(4858), + [sym_bin_literal] = ACTIONS(4858), + [anon_sym_true] = ACTIONS(4856), + [anon_sym_false] = ACTIONS(4856), + [anon_sym_SQUOTE] = ACTIONS(4858), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(4858), }, [4183] = { - [sym_function_body] = STATE(3988), - [sym__block] = STATE(3975), + [sym_function_body] = STATE(3991), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_COMMA] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_where] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), + [sym_multiline_comment] = ACTIONS(3), + }, + [4184] = { + [sym_function_body] = STATE(3956), + [sym__block] = STATE(3874), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_COMMA] = ACTIONS(4262), @@ -455771,2079 +456117,1926 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [4184] = { - [sym_function_body] = STATE(3890), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_COMMA] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), - [sym_multiline_comment] = ACTIONS(3), - }, [4185] = { - [sym_type_constraints] = STATE(4250), - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym_type_constraints] = STATE(3306), + [sym_enum_class_body] = STATE(3501), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(6286), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5462), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_RPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, [4186] = { - [sym_type_constraints] = STATE(3355), - [sym_enum_class_body] = STATE(3402), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(7430), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), + [sym_type_constraints] = STATE(4246), + [sym_function_body] = STATE(3956), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4260), + [anon_sym_AT] = ACTIONS(4262), + [anon_sym_LBRACK] = ACTIONS(4262), + [anon_sym_DOT] = ACTIONS(4260), + [anon_sym_as] = ACTIONS(4260), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(4262), + [anon_sym_LT] = ACTIONS(4260), + [anon_sym_GT] = ACTIONS(4260), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4262), + [anon_sym_get] = ACTIONS(4260), + [anon_sym_set] = ACTIONS(4260), + [anon_sym_STAR] = ACTIONS(4262), + [sym_label] = ACTIONS(4262), + [anon_sym_in] = ACTIONS(4260), + [anon_sym_DOT_DOT] = ACTIONS(4262), + [anon_sym_QMARK_COLON] = ACTIONS(4262), + [anon_sym_AMP_AMP] = ACTIONS(4262), + [anon_sym_PIPE_PIPE] = ACTIONS(4262), + [anon_sym_else] = ACTIONS(4260), + [anon_sym_COLON_COLON] = ACTIONS(4262), + [anon_sym_BANG_EQ] = ACTIONS(4260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4262), + [anon_sym_EQ_EQ] = ACTIONS(4260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4262), + [anon_sym_LT_EQ] = ACTIONS(4262), + [anon_sym_GT_EQ] = ACTIONS(4262), + [anon_sym_BANGin] = ACTIONS(4262), + [anon_sym_is] = ACTIONS(4260), + [anon_sym_BANGis] = ACTIONS(4262), + [anon_sym_PLUS] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_SLASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4262), + [anon_sym_as_QMARK] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_BANG_BANG] = ACTIONS(4262), + [anon_sym_suspend] = ACTIONS(4260), + [anon_sym_sealed] = ACTIONS(4260), + [anon_sym_annotation] = ACTIONS(4260), + [anon_sym_data] = ACTIONS(4260), + [anon_sym_inner] = ACTIONS(4260), + [anon_sym_value] = ACTIONS(4260), + [anon_sym_override] = ACTIONS(4260), + [anon_sym_lateinit] = ACTIONS(4260), + [anon_sym_public] = ACTIONS(4260), + [anon_sym_private] = ACTIONS(4260), + [anon_sym_internal] = ACTIONS(4260), + [anon_sym_protected] = ACTIONS(4260), + [anon_sym_tailrec] = ACTIONS(4260), + [anon_sym_operator] = ACTIONS(4260), + [anon_sym_infix] = ACTIONS(4260), + [anon_sym_inline] = ACTIONS(4260), + [anon_sym_external] = ACTIONS(4260), + [sym_property_modifier] = ACTIONS(4260), + [anon_sym_abstract] = ACTIONS(4260), + [anon_sym_final] = ACTIONS(4260), + [anon_sym_open] = ACTIONS(4260), + [anon_sym_vararg] = ACTIONS(4260), + [anon_sym_noinline] = ACTIONS(4260), + [anon_sym_crossinline] = ACTIONS(4260), + [anon_sym_expect] = ACTIONS(4260), + [anon_sym_actual] = ACTIONS(4260), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4262), + [sym__automatic_semicolon] = ACTIONS(4262), + [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, [4187] = { - [sym_class_body] = STATE(3539), - [sym_type_constraints] = STATE(3345), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(7432), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_while] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), + [sym__type] = STATE(9330), + [sym__type_reference] = STATE(8024), + [sym_not_nullable_type] = STATE(9330), + [sym_nullable_type] = STATE(9330), + [sym_user_type] = STATE(8322), + [sym__simple_user_type] = STATE(8149), + [sym_type_projection] = STATE(8800), + [sym_type_projection_modifiers] = STATE(5993), + [sym__type_projection_modifier] = STATE(7205), + [sym_function_type] = STATE(9330), + [sym_function_type_parameters] = STATE(9933), + [sym_parenthesized_type] = STATE(8024), + [sym_parenthesized_user_type] = STATE(9794), + [sym_type_modifiers] = STATE(6429), + [sym__type_modifier] = STATE(7209), + [sym_variance_modifier] = STATE(7205), + [sym_annotation] = STATE(7209), + [sym__single_annotation] = STATE(7857), + [sym__multi_annotation] = STATE(7857), + [sym_simple_identifier] = STATE(7950), + [sym__lexical_identifier] = STATE(6361), + [aux_sym_type_projection_modifiers_repeat1] = STATE(7205), + [aux_sym_type_modifiers_repeat1] = STATE(7209), + [sym__alpha_identifier] = ACTIONS(7354), + [anon_sym_AT] = ACTIONS(7357), + [anon_sym_LBRACK] = ACTIONS(7360), + [anon_sym_LBRACE] = ACTIONS(7360), + [anon_sym_LPAREN] = ACTIONS(7362), + [anon_sym_object] = ACTIONS(7365), + [anon_sym_fun] = ACTIONS(7365), + [anon_sym_get] = ACTIONS(7367), + [anon_sym_set] = ACTIONS(7367), + [anon_sym_this] = ACTIONS(7365), + [anon_sym_super] = ACTIONS(7365), + [anon_sym_dynamic] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7372), + [sym_label] = ACTIONS(7365), + [anon_sym_in] = ACTIONS(7375), + [anon_sym_null] = ACTIONS(7365), + [anon_sym_if] = ACTIONS(7365), + [anon_sym_when] = ACTIONS(7365), + [anon_sym_try] = ACTIONS(7365), + [anon_sym_throw] = ACTIONS(7365), + [anon_sym_return] = ACTIONS(7365), + [anon_sym_continue] = ACTIONS(7365), + [anon_sym_break] = ACTIONS(7365), + [anon_sym_COLON_COLON] = ACTIONS(7360), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS_PLUS] = ACTIONS(7360), + [anon_sym_DASH_DASH] = ACTIONS(7360), + [anon_sym_BANG] = ACTIONS(7360), + [anon_sym_suspend] = ACTIONS(7377), + [anon_sym_data] = ACTIONS(7367), + [anon_sym_inner] = ACTIONS(7367), + [anon_sym_value] = ACTIONS(7367), + [anon_sym_out] = ACTIONS(7375), + [anon_sym_expect] = ACTIONS(7367), + [anon_sym_actual] = ACTIONS(7367), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(7360), + [anon_sym_continue_AT] = ACTIONS(7360), + [anon_sym_break_AT] = ACTIONS(7360), + [anon_sym_this_AT] = ACTIONS(7360), + [anon_sym_super_AT] = ACTIONS(7360), + [sym_real_literal] = ACTIONS(7360), + [sym_integer_literal] = ACTIONS(7365), + [sym_hex_literal] = ACTIONS(7360), + [sym_bin_literal] = ACTIONS(7360), + [anon_sym_true] = ACTIONS(7365), + [anon_sym_false] = ACTIONS(7365), + [anon_sym_SQUOTE] = ACTIONS(7360), + [sym__backtick_identifier] = ACTIONS(7379), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(7360), }, [4188] = { - [sym_type_constraints] = STATE(3313), - [sym_enum_class_body] = STATE(3536), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6246), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5508), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_RPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5512), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym_function_body] = STATE(3962), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_COMMA] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_where] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4418), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), [sym_multiline_comment] = ACTIONS(3), }, [4189] = { - [sym_type_constraints] = STATE(4241), - [sym_function_body] = STATE(3890), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [sym_class_body] = STATE(3549), + [sym_type_constraints] = STATE(3273), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(6280), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_RPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5448), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__backtick_identifier] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, [4190] = { - [sym_function_body] = STATE(4005), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(6759), - [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_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_value] = 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_function_body] = STATE(3828), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_where] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [4191] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_RBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(7434), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [anon_sym_DASH_GT] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_while] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7436), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym_function_body] = STATE(3859), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(6648), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), }, [4192] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_RBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [anon_sym_DASH_GT] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_while] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7436), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_RBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [anon_sym_DASH_GT] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_while] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), [sym_multiline_comment] = ACTIONS(3), }, [4193] = { - [sym_class_body] = STATE(4033), - [sym_type_constraints] = STATE(3742), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(6314), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_COMMA] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4214), + [anon_sym_AT] = ACTIONS(4217), + [anon_sym_LBRACK] = ACTIONS(4217), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4217), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7382), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4214), + [anon_sym_set] = ACTIONS(4214), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(4217), + [sym_label] = ACTIONS(4214), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4214), + [anon_sym_DASH] = ACTIONS(4214), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4217), + [anon_sym_DASH_DASH] = ACTIONS(4217), + [anon_sym_BANG] = ACTIONS(3938), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_data] = ACTIONS(4214), + [anon_sym_inner] = ACTIONS(4214), + [anon_sym_value] = ACTIONS(4214), + [anon_sym_expect] = ACTIONS(4214), + [anon_sym_actual] = ACTIONS(4214), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(4217), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [4194] = { - [sym_function_body] = STATE(3460), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(7438), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_RPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_while] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), + [sym_function_body] = STATE(3539), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(7386), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), }, [4195] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4132), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(7440), - [anon_sym_RPAREN] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_while] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), + [sym_type_constraints] = STATE(3743), + [sym_enum_class_body] = STATE(3876), + [sym__alpha_identifier] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_COLON] = ACTIONS(6346), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_DOT] = ACTIONS(3236), + [anon_sym_as] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_GT] = ACTIONS(3236), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [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(3236), + [anon_sym_sealed] = ACTIONS(3236), + [anon_sym_annotation] = ACTIONS(3236), + [anon_sym_data] = ACTIONS(3236), + [anon_sym_inner] = ACTIONS(3236), + [anon_sym_value] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_lateinit] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_internal] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_tailrec] = ACTIONS(3236), + [anon_sym_operator] = ACTIONS(3236), + [anon_sym_infix] = ACTIONS(3236), + [anon_sym_inline] = ACTIONS(3236), + [anon_sym_external] = ACTIONS(3236), + [sym_property_modifier] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_final] = ACTIONS(3236), + [anon_sym_open] = ACTIONS(3236), + [anon_sym_vararg] = ACTIONS(3236), + [anon_sym_noinline] = ACTIONS(3236), + [anon_sym_crossinline] = ACTIONS(3236), + [anon_sym_expect] = ACTIONS(3236), + [anon_sym_actual] = ACTIONS(3236), + [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), }, [4196] = { - [sym_function_body] = STATE(3897), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_COLON] = ACTIONS(7442), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [sym_function_body] = STATE(3913), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4250), + [anon_sym_AT] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(7388), + [anon_sym_LBRACK] = ACTIONS(4252), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_as] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4252), + [anon_sym_LPAREN] = ACTIONS(4252), + [anon_sym_LT] = ACTIONS(4250), + [anon_sym_GT] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4252), + [anon_sym_get] = ACTIONS(4250), + [anon_sym_set] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [sym_label] = ACTIONS(4252), + [anon_sym_in] = ACTIONS(4250), + [anon_sym_DOT_DOT] = ACTIONS(4252), + [anon_sym_QMARK_COLON] = ACTIONS(4252), + [anon_sym_AMP_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4252), + [anon_sym_else] = ACTIONS(4250), + [anon_sym_COLON_COLON] = ACTIONS(4252), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4252), + [anon_sym_GT_EQ] = ACTIONS(4252), + [anon_sym_BANGin] = ACTIONS(4252), + [anon_sym_is] = ACTIONS(4250), + [anon_sym_BANGis] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4250), + [anon_sym_SLASH] = ACTIONS(4250), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_as_QMARK] = ACTIONS(4252), + [anon_sym_PLUS_PLUS] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4252), + [anon_sym_BANG_BANG] = ACTIONS(4252), + [anon_sym_suspend] = ACTIONS(4250), + [anon_sym_sealed] = ACTIONS(4250), + [anon_sym_annotation] = ACTIONS(4250), + [anon_sym_data] = ACTIONS(4250), + [anon_sym_inner] = ACTIONS(4250), + [anon_sym_value] = ACTIONS(4250), + [anon_sym_override] = ACTIONS(4250), + [anon_sym_lateinit] = ACTIONS(4250), + [anon_sym_public] = ACTIONS(4250), + [anon_sym_private] = ACTIONS(4250), + [anon_sym_internal] = ACTIONS(4250), + [anon_sym_protected] = ACTIONS(4250), + [anon_sym_tailrec] = ACTIONS(4250), + [anon_sym_operator] = ACTIONS(4250), + [anon_sym_infix] = ACTIONS(4250), + [anon_sym_inline] = ACTIONS(4250), + [anon_sym_external] = ACTIONS(4250), + [sym_property_modifier] = ACTIONS(4250), + [anon_sym_abstract] = ACTIONS(4250), + [anon_sym_final] = ACTIONS(4250), + [anon_sym_open] = ACTIONS(4250), + [anon_sym_vararg] = ACTIONS(4250), + [anon_sym_noinline] = ACTIONS(4250), + [anon_sym_crossinline] = ACTIONS(4250), + [anon_sym_expect] = ACTIONS(4250), + [anon_sym_actual] = ACTIONS(4250), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4252), + [sym__automatic_semicolon] = ACTIONS(4252), + [sym_safe_nav] = ACTIONS(4252), [sym_multiline_comment] = ACTIONS(3), }, [4197] = { - [sym_value_arguments] = STATE(3989), - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(7444), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), + [sym_class_body] = STATE(3947), + [sym_type_constraints] = STATE(3738), + [sym__alpha_identifier] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_COLON] = ACTIONS(6312), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_DOT] = ACTIONS(3226), + [anon_sym_as] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_GT] = ACTIONS(3226), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_STAR] = ACTIONS(3230), + [sym_label] = ACTIONS(3230), + [anon_sym_in] = ACTIONS(3226), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [anon_sym_QMARK_COLON] = ACTIONS(3230), + [anon_sym_AMP_AMP] = ACTIONS(3230), + [anon_sym_PIPE_PIPE] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(3230), + [anon_sym_BANG_EQ] = ACTIONS(3226), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3230), + [anon_sym_EQ_EQ] = ACTIONS(3226), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3230), + [anon_sym_LT_EQ] = ACTIONS(3230), + [anon_sym_GT_EQ] = ACTIONS(3230), + [anon_sym_BANGin] = ACTIONS(3230), + [anon_sym_is] = ACTIONS(3226), + [anon_sym_BANGis] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_PERCENT] = ACTIONS(3230), + [anon_sym_as_QMARK] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [anon_sym_BANG_BANG] = ACTIONS(3230), + [anon_sym_suspend] = ACTIONS(3226), + [anon_sym_sealed] = ACTIONS(3226), + [anon_sym_annotation] = ACTIONS(3226), + [anon_sym_data] = ACTIONS(3226), + [anon_sym_inner] = ACTIONS(3226), + [anon_sym_value] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_lateinit] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_internal] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_tailrec] = ACTIONS(3226), + [anon_sym_operator] = ACTIONS(3226), + [anon_sym_infix] = ACTIONS(3226), + [anon_sym_inline] = ACTIONS(3226), + [anon_sym_external] = ACTIONS(3226), + [sym_property_modifier] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_final] = ACTIONS(3226), + [anon_sym_open] = ACTIONS(3226), + [anon_sym_vararg] = ACTIONS(3226), + [anon_sym_noinline] = ACTIONS(3226), + [anon_sym_crossinline] = ACTIONS(3226), + [anon_sym_expect] = ACTIONS(3226), + [anon_sym_actual] = ACTIONS(3226), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3230), + [sym__automatic_semicolon] = ACTIONS(3230), + [sym_safe_nav] = ACTIONS(3230), [sym_multiline_comment] = ACTIONS(3), }, [4198] = { - [sym_function_body] = STATE(3396), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_RPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_while] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [sym_function_body] = STATE(3395), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_RPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_while] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, [4199] = { - [sym_type_constraints] = STATE(3787), - [sym_enum_class_body] = STATE(3927), - [sym__alpha_identifier] = ACTIONS(4200), - [anon_sym_AT] = ACTIONS(4202), - [anon_sym_COLON] = ACTIONS(7446), - [anon_sym_LBRACK] = ACTIONS(4202), - [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_as] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(4202), - [anon_sym_LT] = ACTIONS(4200), - [anon_sym_GT] = ACTIONS(4200), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym_get] = ACTIONS(4200), - [anon_sym_set] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [sym_label] = ACTIONS(4202), - [anon_sym_in] = ACTIONS(4200), - [anon_sym_DOT_DOT] = ACTIONS(4202), - [anon_sym_QMARK_COLON] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_PIPE_PIPE] = ACTIONS(4202), - [anon_sym_else] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_BANG_EQ] = ACTIONS(4200), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4202), - [anon_sym_EQ_EQ] = ACTIONS(4200), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4202), - [anon_sym_LT_EQ] = ACTIONS(4202), - [anon_sym_GT_EQ] = ACTIONS(4202), - [anon_sym_BANGin] = ACTIONS(4202), - [anon_sym_is] = ACTIONS(4200), - [anon_sym_BANGis] = ACTIONS(4202), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_SLASH] = ACTIONS(4200), - [anon_sym_PERCENT] = ACTIONS(4202), - [anon_sym_as_QMARK] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_BANG_BANG] = ACTIONS(4202), - [anon_sym_suspend] = ACTIONS(4200), - [anon_sym_sealed] = ACTIONS(4200), - [anon_sym_annotation] = ACTIONS(4200), - [anon_sym_data] = ACTIONS(4200), - [anon_sym_inner] = ACTIONS(4200), - [anon_sym_value] = ACTIONS(4200), - [anon_sym_override] = ACTIONS(4200), - [anon_sym_lateinit] = ACTIONS(4200), - [anon_sym_public] = ACTIONS(4200), - [anon_sym_private] = ACTIONS(4200), - [anon_sym_internal] = ACTIONS(4200), - [anon_sym_protected] = ACTIONS(4200), - [anon_sym_tailrec] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_infix] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym_external] = ACTIONS(4200), - [sym_property_modifier] = ACTIONS(4200), - [anon_sym_abstract] = ACTIONS(4200), - [anon_sym_final] = ACTIONS(4200), - [anon_sym_open] = ACTIONS(4200), - [anon_sym_vararg] = ACTIONS(4200), - [anon_sym_noinline] = ACTIONS(4200), - [anon_sym_crossinline] = ACTIONS(4200), - [anon_sym_expect] = ACTIONS(4200), - [anon_sym_actual] = ACTIONS(4200), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4202), - [sym__automatic_semicolon] = ACTIONS(4202), - [sym_safe_nav] = ACTIONS(4202), + [sym_function_body] = STATE(3859), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_COLON] = ACTIONS(7390), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_LPAREN] = ACTIONS(4198), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), }, [4200] = { - [sym_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(7448), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_where] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4407), - [sym_label] = ACTIONS(4407), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4407), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), + [sym_function_body] = STATE(3539), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [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_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_while] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), [sym_multiline_comment] = ACTIONS(3), }, [4201] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4195), - [sym__alpha_identifier] = ACTIONS(4621), - [anon_sym_AT] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(7440), - [anon_sym_RPAREN] = ACTIONS(4623), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4621), - [anon_sym_where] = ACTIONS(4621), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_get] = ACTIONS(4621), - [anon_sym_set] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4623), - [sym_label] = ACTIONS(4623), - [anon_sym_in] = ACTIONS(4621), - [anon_sym_while] = ACTIONS(4621), - [anon_sym_DOT_DOT] = ACTIONS(4623), - [anon_sym_QMARK_COLON] = ACTIONS(4623), - [anon_sym_AMP_AMP] = ACTIONS(4623), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_else] = ACTIONS(4621), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_BANG_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), - [anon_sym_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4623), - [anon_sym_is] = ACTIONS(4621), - [anon_sym_BANGis] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4621), - [anon_sym_PERCENT] = ACTIONS(4623), - [anon_sym_as_QMARK] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_BANG_BANG] = ACTIONS(4623), - [anon_sym_suspend] = ACTIONS(4621), - [anon_sym_sealed] = ACTIONS(4621), - [anon_sym_annotation] = ACTIONS(4621), - [anon_sym_data] = ACTIONS(4621), - [anon_sym_inner] = ACTIONS(4621), - [anon_sym_value] = ACTIONS(4621), - [anon_sym_override] = ACTIONS(4621), - [anon_sym_lateinit] = ACTIONS(4621), - [anon_sym_public] = ACTIONS(4621), - [anon_sym_private] = ACTIONS(4621), - [anon_sym_internal] = ACTIONS(4621), - [anon_sym_protected] = ACTIONS(4621), - [anon_sym_tailrec] = ACTIONS(4621), - [anon_sym_operator] = ACTIONS(4621), - [anon_sym_infix] = ACTIONS(4621), - [anon_sym_inline] = ACTIONS(4621), - [anon_sym_external] = ACTIONS(4621), - [sym_property_modifier] = ACTIONS(4621), - [anon_sym_abstract] = ACTIONS(4621), - [anon_sym_final] = ACTIONS(4621), - [anon_sym_open] = ACTIONS(4621), - [anon_sym_vararg] = ACTIONS(4621), - [anon_sym_noinline] = ACTIONS(4621), - [anon_sym_crossinline] = ACTIONS(4621), - [anon_sym_expect] = ACTIONS(4621), - [anon_sym_actual] = ACTIONS(4621), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4623), - [sym_safe_nav] = ACTIONS(4623), - [sym_multiline_comment] = ACTIONS(3), - }, - [4202] = { - [sym_class_body] = STATE(4033), - [sym_type_constraints] = STATE(3742), - [sym__alpha_identifier] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_COLON] = ACTIONS(6386), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_DOT] = ACTIONS(3288), - [anon_sym_as] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_GT] = ACTIONS(3288), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_STAR] = ACTIONS(3292), - [sym_label] = ACTIONS(3292), - [anon_sym_in] = ACTIONS(3288), - [anon_sym_DOT_DOT] = ACTIONS(3292), - [anon_sym_QMARK_COLON] = ACTIONS(3292), - [anon_sym_AMP_AMP] = ACTIONS(3292), - [anon_sym_PIPE_PIPE] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_COLON_COLON] = ACTIONS(3292), - [anon_sym_BANG_EQ] = ACTIONS(3288), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3292), - [anon_sym_EQ_EQ] = ACTIONS(3288), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3292), - [anon_sym_LT_EQ] = ACTIONS(3292), - [anon_sym_GT_EQ] = ACTIONS(3292), - [anon_sym_BANGin] = ACTIONS(3292), - [anon_sym_is] = ACTIONS(3288), - [anon_sym_BANGis] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_PERCENT] = ACTIONS(3292), - [anon_sym_as_QMARK] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [anon_sym_BANG_BANG] = ACTIONS(3292), - [anon_sym_suspend] = ACTIONS(3288), - [anon_sym_sealed] = ACTIONS(3288), - [anon_sym_annotation] = ACTIONS(3288), - [anon_sym_data] = ACTIONS(3288), - [anon_sym_inner] = ACTIONS(3288), - [anon_sym_value] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_lateinit] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_internal] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_tailrec] = ACTIONS(3288), - [anon_sym_operator] = ACTIONS(3288), - [anon_sym_infix] = ACTIONS(3288), - [anon_sym_inline] = ACTIONS(3288), - [anon_sym_external] = ACTIONS(3288), - [sym_property_modifier] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_final] = ACTIONS(3288), - [anon_sym_open] = ACTIONS(3288), - [anon_sym_vararg] = ACTIONS(3288), - [anon_sym_noinline] = ACTIONS(3288), - [anon_sym_crossinline] = ACTIONS(3288), - [anon_sym_expect] = ACTIONS(3288), - [anon_sym_actual] = ACTIONS(3288), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3292), - [sym__automatic_semicolon] = ACTIONS(3292), - [sym_safe_nav] = ACTIONS(3292), - [sym_multiline_comment] = ACTIONS(3), - }, - [4203] = { - [sym_function_body] = STATE(3527), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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), - }, - [4204] = { - [sym_function_body] = STATE(3504), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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), - }, - [4205] = { - [sym_function_body] = STATE(3833), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4206), - [anon_sym_AT] = ACTIONS(4208), - [anon_sym_COLON] = ACTIONS(7450), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_DOT] = ACTIONS(4206), - [anon_sym_as] = ACTIONS(4206), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4208), - [anon_sym_LPAREN] = ACTIONS(4208), - [anon_sym_LT] = ACTIONS(4206), - [anon_sym_GT] = ACTIONS(4206), - [anon_sym_SEMI] = ACTIONS(4208), - [anon_sym_get] = ACTIONS(4206), - [anon_sym_set] = ACTIONS(4206), - [anon_sym_STAR] = ACTIONS(4208), - [sym_label] = ACTIONS(4208), - [anon_sym_in] = ACTIONS(4206), - [anon_sym_DOT_DOT] = ACTIONS(4208), - [anon_sym_QMARK_COLON] = ACTIONS(4208), - [anon_sym_AMP_AMP] = ACTIONS(4208), - [anon_sym_PIPE_PIPE] = ACTIONS(4208), - [anon_sym_else] = ACTIONS(4206), - [anon_sym_COLON_COLON] = ACTIONS(4208), - [anon_sym_BANG_EQ] = ACTIONS(4206), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4208), - [anon_sym_EQ_EQ] = ACTIONS(4206), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4208), - [anon_sym_LT_EQ] = ACTIONS(4208), - [anon_sym_GT_EQ] = ACTIONS(4208), - [anon_sym_BANGin] = ACTIONS(4208), - [anon_sym_is] = ACTIONS(4206), - [anon_sym_BANGis] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4208), - [anon_sym_as_QMARK] = ACTIONS(4208), - [anon_sym_PLUS_PLUS] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4208), - [anon_sym_BANG_BANG] = ACTIONS(4208), - [anon_sym_suspend] = ACTIONS(4206), - [anon_sym_sealed] = ACTIONS(4206), - [anon_sym_annotation] = ACTIONS(4206), - [anon_sym_data] = ACTIONS(4206), - [anon_sym_inner] = ACTIONS(4206), - [anon_sym_value] = ACTIONS(4206), - [anon_sym_override] = ACTIONS(4206), - [anon_sym_lateinit] = ACTIONS(4206), - [anon_sym_public] = ACTIONS(4206), - [anon_sym_private] = ACTIONS(4206), - [anon_sym_internal] = ACTIONS(4206), - [anon_sym_protected] = ACTIONS(4206), - [anon_sym_tailrec] = ACTIONS(4206), - [anon_sym_operator] = ACTIONS(4206), - [anon_sym_infix] = ACTIONS(4206), - [anon_sym_inline] = ACTIONS(4206), - [anon_sym_external] = ACTIONS(4206), - [sym_property_modifier] = ACTIONS(4206), - [anon_sym_abstract] = ACTIONS(4206), - [anon_sym_final] = ACTIONS(4206), - [anon_sym_open] = ACTIONS(4206), - [anon_sym_vararg] = ACTIONS(4206), - [anon_sym_noinline] = ACTIONS(4206), - [anon_sym_crossinline] = ACTIONS(4206), - [anon_sym_expect] = ACTIONS(4206), - [anon_sym_actual] = ACTIONS(4206), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4208), - [sym__automatic_semicolon] = ACTIONS(4208), - [sym_safe_nav] = ACTIONS(4208), - [sym_multiline_comment] = ACTIONS(3), - }, - [4206] = { - [sym_class_body] = STATE(3856), - [sym_type_constraints] = STATE(3803), - [sym__alpha_identifier] = ACTIONS(4299), - [anon_sym_AT] = ACTIONS(4301), - [anon_sym_COLON] = ACTIONS(7452), - [anon_sym_LBRACK] = ACTIONS(4301), - [anon_sym_DOT] = ACTIONS(4299), - [anon_sym_as] = ACTIONS(4299), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4299), - [anon_sym_GT] = ACTIONS(4299), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4301), - [anon_sym_get] = ACTIONS(4299), - [anon_sym_set] = ACTIONS(4299), - [anon_sym_STAR] = ACTIONS(4301), - [sym_label] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_QMARK_COLON] = ACTIONS(4301), - [anon_sym_AMP_AMP] = ACTIONS(4301), - [anon_sym_PIPE_PIPE] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4301), - [anon_sym_EQ_EQ] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4301), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4301), - [anon_sym_BANGin] = ACTIONS(4301), - [anon_sym_is] = ACTIONS(4299), - [anon_sym_BANGis] = ACTIONS(4301), - [anon_sym_PLUS] = ACTIONS(4299), - [anon_sym_DASH] = ACTIONS(4299), - [anon_sym_SLASH] = ACTIONS(4299), - [anon_sym_PERCENT] = ACTIONS(4301), - [anon_sym_as_QMARK] = ACTIONS(4301), - [anon_sym_PLUS_PLUS] = ACTIONS(4301), - [anon_sym_DASH_DASH] = ACTIONS(4301), - [anon_sym_BANG_BANG] = ACTIONS(4301), - [anon_sym_suspend] = ACTIONS(4299), - [anon_sym_sealed] = ACTIONS(4299), - [anon_sym_annotation] = ACTIONS(4299), - [anon_sym_data] = ACTIONS(4299), - [anon_sym_inner] = ACTIONS(4299), - [anon_sym_value] = ACTIONS(4299), - [anon_sym_override] = ACTIONS(4299), - [anon_sym_lateinit] = ACTIONS(4299), - [anon_sym_public] = ACTIONS(4299), - [anon_sym_private] = ACTIONS(4299), - [anon_sym_internal] = ACTIONS(4299), - [anon_sym_protected] = ACTIONS(4299), - [anon_sym_tailrec] = ACTIONS(4299), - [anon_sym_operator] = ACTIONS(4299), - [anon_sym_infix] = ACTIONS(4299), - [anon_sym_inline] = ACTIONS(4299), - [anon_sym_external] = ACTIONS(4299), - [sym_property_modifier] = ACTIONS(4299), - [anon_sym_abstract] = ACTIONS(4299), - [anon_sym_final] = ACTIONS(4299), - [anon_sym_open] = ACTIONS(4299), - [anon_sym_vararg] = ACTIONS(4299), - [anon_sym_noinline] = ACTIONS(4299), - [anon_sym_crossinline] = ACTIONS(4299), - [anon_sym_expect] = ACTIONS(4299), - [anon_sym_actual] = ACTIONS(4299), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4301), - [sym__automatic_semicolon] = ACTIONS(4301), - [sym_safe_nav] = ACTIONS(4301), - [sym_multiline_comment] = ACTIONS(3), - }, - [4207] = { - [sym_type_constraints] = STATE(3734), - [sym_enum_class_body] = STATE(3964), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6368), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), - [sym_multiline_comment] = ACTIONS(3), - }, - [4208] = { - [sym_type_constraints] = STATE(3823), - [sym_enum_class_body] = STATE(3831), - [sym__alpha_identifier] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_COLON] = ACTIONS(6406), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_DOT] = ACTIONS(3294), - [anon_sym_as] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_GT] = ACTIONS(3294), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_STAR] = ACTIONS(3298), - [sym_label] = ACTIONS(3298), - [anon_sym_in] = ACTIONS(3294), - [anon_sym_DOT_DOT] = ACTIONS(3298), - [anon_sym_QMARK_COLON] = ACTIONS(3298), - [anon_sym_AMP_AMP] = ACTIONS(3298), - [anon_sym_PIPE_PIPE] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_COLON_COLON] = ACTIONS(3298), - [anon_sym_BANG_EQ] = ACTIONS(3294), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3298), - [anon_sym_EQ_EQ] = ACTIONS(3294), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3298), - [anon_sym_LT_EQ] = ACTIONS(3298), - [anon_sym_GT_EQ] = ACTIONS(3298), - [anon_sym_BANGin] = ACTIONS(3298), - [anon_sym_is] = ACTIONS(3294), - [anon_sym_BANGis] = ACTIONS(3298), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_PERCENT] = ACTIONS(3298), - [anon_sym_as_QMARK] = ACTIONS(3298), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_BANG_BANG] = ACTIONS(3298), - [anon_sym_suspend] = ACTIONS(3294), - [anon_sym_sealed] = ACTIONS(3294), - [anon_sym_annotation] = ACTIONS(3294), - [anon_sym_data] = ACTIONS(3294), - [anon_sym_inner] = ACTIONS(3294), - [anon_sym_value] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_lateinit] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_internal] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_tailrec] = ACTIONS(3294), - [anon_sym_operator] = ACTIONS(3294), - [anon_sym_infix] = ACTIONS(3294), - [anon_sym_inline] = ACTIONS(3294), - [anon_sym_external] = ACTIONS(3294), - [sym_property_modifier] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_final] = ACTIONS(3294), - [anon_sym_open] = ACTIONS(3294), - [anon_sym_vararg] = ACTIONS(3294), - [anon_sym_noinline] = ACTIONS(3294), - [anon_sym_crossinline] = ACTIONS(3294), - [anon_sym_expect] = ACTIONS(3294), - [anon_sym_actual] = ACTIONS(3294), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3298), - [sym__automatic_semicolon] = ACTIONS(3298), - [sym_safe_nav] = ACTIONS(3298), - [sym_multiline_comment] = ACTIONS(3), - }, - [4209] = { - [sym_function_body] = STATE(3454), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [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_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_value] = 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_class_body] = STATE(4005), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(7392), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_COMMA] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_where] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), [sym_multiline_comment] = ACTIONS(3), }, - [4210] = { - [sym_function_body] = STATE(3458), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_RPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_while] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [4202] = { + [sym_class_body] = STATE(3928), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(7394), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_COMMA] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_where] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), + [sym_multiline_comment] = ACTIONS(3), + }, + [4203] = { + [sym_function_body] = STATE(3499), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_RPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4418), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_while] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + }, + [4204] = { + [sym_type_constraints] = STATE(3711), + [sym_enum_class_body] = STATE(3893), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(6326), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), [sym_multiline_comment] = ACTIONS(3), }, - [4211] = { - [sym_function_body] = STATE(3464), - [sym__block] = STATE(3577), + [4205] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4207), + [sym__alpha_identifier] = ACTIONS(4587), + [anon_sym_AT] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4589), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(7396), + [anon_sym_RPAREN] = ACTIONS(4589), + [anon_sym_LT] = ACTIONS(4587), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_where] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4589), + [sym_label] = ACTIONS(4589), + [anon_sym_in] = ACTIONS(4587), + [anon_sym_while] = ACTIONS(4587), + [anon_sym_DOT_DOT] = ACTIONS(4589), + [anon_sym_QMARK_COLON] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_else] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_BANGin] = ACTIONS(4589), + [anon_sym_is] = ACTIONS(4587), + [anon_sym_BANGis] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4589), + [anon_sym_as_QMARK] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_BANG_BANG] = ACTIONS(4589), + [anon_sym_suspend] = ACTIONS(4587), + [anon_sym_sealed] = ACTIONS(4587), + [anon_sym_annotation] = ACTIONS(4587), + [anon_sym_data] = ACTIONS(4587), + [anon_sym_inner] = ACTIONS(4587), + [anon_sym_value] = ACTIONS(4587), + [anon_sym_override] = ACTIONS(4587), + [anon_sym_lateinit] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_internal] = ACTIONS(4587), + [anon_sym_protected] = ACTIONS(4587), + [anon_sym_tailrec] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), + [anon_sym_infix] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym_external] = ACTIONS(4587), + [sym_property_modifier] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_open] = ACTIONS(4587), + [anon_sym_vararg] = ACTIONS(4587), + [anon_sym_noinline] = ACTIONS(4587), + [anon_sym_crossinline] = ACTIONS(4587), + [anon_sym_expect] = ACTIONS(4587), + [anon_sym_actual] = ACTIONS(4587), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4589), + [sym_safe_nav] = ACTIONS(4589), + [sym_multiline_comment] = ACTIONS(3), + }, + [4206] = { + [sym_class_body] = STATE(3893), + [sym_type_constraints] = STATE(3712), + [sym__alpha_identifier] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_COLON] = ACTIONS(6320), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_DOT] = ACTIONS(3218), + [anon_sym_as] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_GT] = ACTIONS(3218), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_STAR] = ACTIONS(3222), + [sym_label] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3218), + [anon_sym_DOT_DOT] = ACTIONS(3222), + [anon_sym_QMARK_COLON] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_COLON_COLON] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3218), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3222), + [anon_sym_EQ_EQ] = ACTIONS(3218), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_is] = ACTIONS(3218), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_as_QMARK] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_BANG_BANG] = ACTIONS(3222), + [anon_sym_suspend] = ACTIONS(3218), + [anon_sym_sealed] = ACTIONS(3218), + [anon_sym_annotation] = ACTIONS(3218), + [anon_sym_data] = ACTIONS(3218), + [anon_sym_inner] = ACTIONS(3218), + [anon_sym_value] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_lateinit] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_internal] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_tailrec] = ACTIONS(3218), + [anon_sym_operator] = ACTIONS(3218), + [anon_sym_infix] = ACTIONS(3218), + [anon_sym_inline] = ACTIONS(3218), + [anon_sym_external] = ACTIONS(3218), + [sym_property_modifier] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_final] = ACTIONS(3218), + [anon_sym_open] = ACTIONS(3218), + [anon_sym_vararg] = ACTIONS(3218), + [anon_sym_noinline] = ACTIONS(3218), + [anon_sym_crossinline] = ACTIONS(3218), + [anon_sym_expect] = ACTIONS(3218), + [anon_sym_actual] = ACTIONS(3218), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3222), + [sym__automatic_semicolon] = ACTIONS(3222), + [sym_safe_nav] = ACTIONS(3222), + [sym_multiline_comment] = ACTIONS(3), + }, + [4207] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4137), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_as] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_RBRACE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(7396), + [anon_sym_RPAREN] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4513), + [anon_sym_where] = ACTIONS(4513), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = ACTIONS(4513), + [anon_sym_STAR] = 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_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(4515), + [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_value] = 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_multiline_comment] = ACTIONS(3), + }, + [4208] = { + [sym_class_body] = STATE(3923), + [sym_type_constraints] = STATE(3784), + [sym__alpha_identifier] = ACTIONS(4274), + [anon_sym_AT] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(7398), + [anon_sym_LBRACK] = ACTIONS(4276), + [anon_sym_DOT] = ACTIONS(4274), + [anon_sym_as] = ACTIONS(4274), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4276), + [anon_sym_LPAREN] = ACTIONS(4276), + [anon_sym_LT] = ACTIONS(4274), + [anon_sym_GT] = ACTIONS(4274), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4276), + [anon_sym_get] = ACTIONS(4274), + [anon_sym_set] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), + [sym_label] = ACTIONS(4276), + [anon_sym_in] = ACTIONS(4274), + [anon_sym_DOT_DOT] = ACTIONS(4276), + [anon_sym_QMARK_COLON] = ACTIONS(4276), + [anon_sym_AMP_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4276), + [anon_sym_else] = ACTIONS(4274), + [anon_sym_COLON_COLON] = ACTIONS(4276), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4276), + [anon_sym_GT_EQ] = ACTIONS(4276), + [anon_sym_BANGin] = ACTIONS(4276), + [anon_sym_is] = ACTIONS(4274), + [anon_sym_BANGis] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4274), + [anon_sym_DASH] = ACTIONS(4274), + [anon_sym_SLASH] = ACTIONS(4274), + [anon_sym_PERCENT] = ACTIONS(4276), + [anon_sym_as_QMARK] = ACTIONS(4276), + [anon_sym_PLUS_PLUS] = ACTIONS(4276), + [anon_sym_DASH_DASH] = ACTIONS(4276), + [anon_sym_BANG_BANG] = ACTIONS(4276), + [anon_sym_suspend] = ACTIONS(4274), + [anon_sym_sealed] = ACTIONS(4274), + [anon_sym_annotation] = ACTIONS(4274), + [anon_sym_data] = ACTIONS(4274), + [anon_sym_inner] = ACTIONS(4274), + [anon_sym_value] = ACTIONS(4274), + [anon_sym_override] = ACTIONS(4274), + [anon_sym_lateinit] = ACTIONS(4274), + [anon_sym_public] = ACTIONS(4274), + [anon_sym_private] = ACTIONS(4274), + [anon_sym_internal] = ACTIONS(4274), + [anon_sym_protected] = ACTIONS(4274), + [anon_sym_tailrec] = ACTIONS(4274), + [anon_sym_operator] = ACTIONS(4274), + [anon_sym_infix] = ACTIONS(4274), + [anon_sym_inline] = ACTIONS(4274), + [anon_sym_external] = ACTIONS(4274), + [sym_property_modifier] = ACTIONS(4274), + [anon_sym_abstract] = ACTIONS(4274), + [anon_sym_final] = ACTIONS(4274), + [anon_sym_open] = ACTIONS(4274), + [anon_sym_vararg] = ACTIONS(4274), + [anon_sym_noinline] = ACTIONS(4274), + [anon_sym_crossinline] = ACTIONS(4274), + [anon_sym_expect] = ACTIONS(4274), + [anon_sym_actual] = ACTIONS(4274), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4276), + [sym__automatic_semicolon] = ACTIONS(4276), + [sym_safe_nav] = ACTIONS(4276), + [sym_multiline_comment] = ACTIONS(3), + }, + [4209] = { + [sym_value_arguments] = STATE(3865), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(7400), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), + [sym_multiline_comment] = ACTIONS(3), + }, + [4210] = { + [sym_function_body] = STATE(3387), + [sym__block] = STATE(3524), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_RPAREN] = ACTIONS(4262), @@ -457910,775 +458103,1376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, + [4211] = { + [sym_class_body] = STATE(3990), + [sym_type_constraints] = STATE(3818), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7402), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), + [sym_multiline_comment] = ACTIONS(3), + }, [4212] = { - [sym_function_body] = STATE(3886), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4289), - [anon_sym_AT] = ACTIONS(4291), - [anon_sym_COLON] = ACTIONS(7454), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4289), - [anon_sym_as] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4289), - [anon_sym_GT] = ACTIONS(4289), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_get] = ACTIONS(4289), - [anon_sym_set] = ACTIONS(4289), - [anon_sym_STAR] = ACTIONS(4291), - [sym_label] = ACTIONS(4291), - [anon_sym_in] = ACTIONS(4289), - [anon_sym_DOT_DOT] = ACTIONS(4291), - [anon_sym_QMARK_COLON] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_else] = ACTIONS(4289), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym_BANG_EQ] = ACTIONS(4289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4291), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_BANGin] = ACTIONS(4291), - [anon_sym_is] = ACTIONS(4289), - [anon_sym_BANGis] = ACTIONS(4291), - [anon_sym_PLUS] = ACTIONS(4289), - [anon_sym_DASH] = ACTIONS(4289), - [anon_sym_SLASH] = ACTIONS(4289), - [anon_sym_PERCENT] = ACTIONS(4291), - [anon_sym_as_QMARK] = ACTIONS(4291), - [anon_sym_PLUS_PLUS] = ACTIONS(4291), - [anon_sym_DASH_DASH] = ACTIONS(4291), - [anon_sym_BANG_BANG] = ACTIONS(4291), - [anon_sym_suspend] = ACTIONS(4289), - [anon_sym_sealed] = ACTIONS(4289), - [anon_sym_annotation] = ACTIONS(4289), - [anon_sym_data] = ACTIONS(4289), - [anon_sym_inner] = ACTIONS(4289), - [anon_sym_value] = ACTIONS(4289), - [anon_sym_override] = ACTIONS(4289), - [anon_sym_lateinit] = ACTIONS(4289), - [anon_sym_public] = ACTIONS(4289), - [anon_sym_private] = ACTIONS(4289), - [anon_sym_internal] = ACTIONS(4289), - [anon_sym_protected] = ACTIONS(4289), - [anon_sym_tailrec] = ACTIONS(4289), - [anon_sym_operator] = ACTIONS(4289), - [anon_sym_infix] = ACTIONS(4289), - [anon_sym_inline] = ACTIONS(4289), - [anon_sym_external] = ACTIONS(4289), - [sym_property_modifier] = ACTIONS(4289), - [anon_sym_abstract] = ACTIONS(4289), - [anon_sym_final] = ACTIONS(4289), - [anon_sym_open] = ACTIONS(4289), - [anon_sym_vararg] = ACTIONS(4289), - [anon_sym_noinline] = ACTIONS(4289), - [anon_sym_crossinline] = ACTIONS(4289), - [anon_sym_expect] = ACTIONS(4289), - [anon_sym_actual] = ACTIONS(4289), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4291), - [sym__automatic_semicolon] = ACTIONS(4291), - [sym_safe_nav] = ACTIONS(4291), + [sym_type_constraints] = STATE(3729), + [sym_enum_class_body] = STATE(3841), + [sym__alpha_identifier] = ACTIONS(4152), + [anon_sym_AT] = ACTIONS(4154), + [anon_sym_COLON] = ACTIONS(7404), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_DOT] = ACTIONS(4152), + [anon_sym_as] = ACTIONS(4152), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4154), + [anon_sym_LT] = ACTIONS(4152), + [anon_sym_GT] = ACTIONS(4152), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4154), + [anon_sym_get] = ACTIONS(4152), + [anon_sym_set] = ACTIONS(4152), + [anon_sym_STAR] = ACTIONS(4154), + [sym_label] = ACTIONS(4154), + [anon_sym_in] = ACTIONS(4152), + [anon_sym_DOT_DOT] = ACTIONS(4154), + [anon_sym_QMARK_COLON] = ACTIONS(4154), + [anon_sym_AMP_AMP] = ACTIONS(4154), + [anon_sym_PIPE_PIPE] = ACTIONS(4154), + [anon_sym_else] = ACTIONS(4152), + [anon_sym_COLON_COLON] = ACTIONS(4154), + [anon_sym_BANG_EQ] = ACTIONS(4152), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4154), + [anon_sym_EQ_EQ] = ACTIONS(4152), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4154), + [anon_sym_LT_EQ] = ACTIONS(4154), + [anon_sym_GT_EQ] = ACTIONS(4154), + [anon_sym_BANGin] = ACTIONS(4154), + [anon_sym_is] = ACTIONS(4152), + [anon_sym_BANGis] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4152), + [anon_sym_SLASH] = ACTIONS(4152), + [anon_sym_PERCENT] = ACTIONS(4154), + [anon_sym_as_QMARK] = ACTIONS(4154), + [anon_sym_PLUS_PLUS] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4154), + [anon_sym_BANG_BANG] = ACTIONS(4154), + [anon_sym_suspend] = ACTIONS(4152), + [anon_sym_sealed] = ACTIONS(4152), + [anon_sym_annotation] = ACTIONS(4152), + [anon_sym_data] = ACTIONS(4152), + [anon_sym_inner] = ACTIONS(4152), + [anon_sym_value] = ACTIONS(4152), + [anon_sym_override] = ACTIONS(4152), + [anon_sym_lateinit] = ACTIONS(4152), + [anon_sym_public] = ACTIONS(4152), + [anon_sym_private] = ACTIONS(4152), + [anon_sym_internal] = ACTIONS(4152), + [anon_sym_protected] = ACTIONS(4152), + [anon_sym_tailrec] = ACTIONS(4152), + [anon_sym_operator] = ACTIONS(4152), + [anon_sym_infix] = ACTIONS(4152), + [anon_sym_inline] = ACTIONS(4152), + [anon_sym_external] = ACTIONS(4152), + [sym_property_modifier] = ACTIONS(4152), + [anon_sym_abstract] = ACTIONS(4152), + [anon_sym_final] = ACTIONS(4152), + [anon_sym_open] = ACTIONS(4152), + [anon_sym_vararg] = ACTIONS(4152), + [anon_sym_noinline] = ACTIONS(4152), + [anon_sym_crossinline] = ACTIONS(4152), + [anon_sym_expect] = ACTIONS(4152), + [anon_sym_actual] = ACTIONS(4152), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4154), + [sym__automatic_semicolon] = ACTIONS(4154), + [sym_safe_nav] = ACTIONS(4154), [sym_multiline_comment] = ACTIONS(3), }, [4213] = { - [sym_function_body] = STATE(3389), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_RPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_while] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4387), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), + [sym_function_body] = STATE(3378), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_RPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_while] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, [4214] = { - [sym_class_body] = STATE(4030), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(7456), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_COMMA] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_where] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4379), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [sym_function_body] = STATE(3482), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_RPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_while] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, [4215] = { - [sym_class_body] = STATE(3853), - [sym_type_constraints] = STATE(3820), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7458), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [sym_function_body] = STATE(3367), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_while] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, [4216] = { - [sym_type_constraints] = STATE(3811), - [sym_enum_class_body] = STATE(3853), - [sym__alpha_identifier] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(7460), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_as] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_LT] = ACTIONS(4268), - [anon_sym_GT] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(4270), - [anon_sym_get] = ACTIONS(4268), - [anon_sym_set] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), - [sym_label] = ACTIONS(4270), - [anon_sym_in] = ACTIONS(4268), - [anon_sym_DOT_DOT] = ACTIONS(4270), - [anon_sym_QMARK_COLON] = ACTIONS(4270), - [anon_sym_AMP_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4270), - [anon_sym_else] = ACTIONS(4268), - [anon_sym_COLON_COLON] = ACTIONS(4270), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4270), - [anon_sym_GT_EQ] = ACTIONS(4270), - [anon_sym_BANGin] = ACTIONS(4270), - [anon_sym_is] = ACTIONS(4268), - [anon_sym_BANGis] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_SLASH] = ACTIONS(4268), - [anon_sym_PERCENT] = ACTIONS(4270), - [anon_sym_as_QMARK] = ACTIONS(4270), - [anon_sym_PLUS_PLUS] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4270), - [anon_sym_BANG_BANG] = ACTIONS(4270), - [anon_sym_suspend] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_annotation] = ACTIONS(4268), - [anon_sym_data] = ACTIONS(4268), - [anon_sym_inner] = ACTIONS(4268), - [anon_sym_value] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_lateinit] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_tailrec] = ACTIONS(4268), - [anon_sym_operator] = ACTIONS(4268), - [anon_sym_infix] = ACTIONS(4268), - [anon_sym_inline] = ACTIONS(4268), - [anon_sym_external] = ACTIONS(4268), - [sym_property_modifier] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_final] = ACTIONS(4268), - [anon_sym_open] = ACTIONS(4268), - [anon_sym_vararg] = ACTIONS(4268), - [anon_sym_noinline] = ACTIONS(4268), - [anon_sym_crossinline] = ACTIONS(4268), - [anon_sym_expect] = ACTIONS(4268), - [anon_sym_actual] = ACTIONS(4268), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4270), - [sym__automatic_semicolon] = ACTIONS(4270), - [sym_safe_nav] = ACTIONS(4270), + [sym_type_constraints] = STATE(3717), + [sym_enum_class_body] = STATE(3990), + [sym__alpha_identifier] = ACTIONS(4202), + [anon_sym_AT] = ACTIONS(4204), + [anon_sym_COLON] = ACTIONS(7406), + [anon_sym_LBRACK] = ACTIONS(4204), + [anon_sym_DOT] = ACTIONS(4202), + [anon_sym_as] = ACTIONS(4202), + [anon_sym_LBRACE] = ACTIONS(5736), + [anon_sym_RBRACE] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(4202), + [anon_sym_GT] = ACTIONS(4202), + [anon_sym_where] = ACTIONS(5742), + [anon_sym_SEMI] = ACTIONS(4204), + [anon_sym_get] = ACTIONS(4202), + [anon_sym_set] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [sym_label] = ACTIONS(4204), + [anon_sym_in] = ACTIONS(4202), + [anon_sym_DOT_DOT] = ACTIONS(4204), + [anon_sym_QMARK_COLON] = ACTIONS(4204), + [anon_sym_AMP_AMP] = ACTIONS(4204), + [anon_sym_PIPE_PIPE] = ACTIONS(4204), + [anon_sym_else] = ACTIONS(4202), + [anon_sym_COLON_COLON] = ACTIONS(4204), + [anon_sym_BANG_EQ] = ACTIONS(4202), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4204), + [anon_sym_EQ_EQ] = ACTIONS(4202), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4204), + [anon_sym_LT_EQ] = ACTIONS(4204), + [anon_sym_GT_EQ] = ACTIONS(4204), + [anon_sym_BANGin] = ACTIONS(4204), + [anon_sym_is] = ACTIONS(4202), + [anon_sym_BANGis] = ACTIONS(4204), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_SLASH] = ACTIONS(4202), + [anon_sym_PERCENT] = ACTIONS(4204), + [anon_sym_as_QMARK] = ACTIONS(4204), + [anon_sym_PLUS_PLUS] = ACTIONS(4204), + [anon_sym_DASH_DASH] = ACTIONS(4204), + [anon_sym_BANG_BANG] = ACTIONS(4204), + [anon_sym_suspend] = ACTIONS(4202), + [anon_sym_sealed] = ACTIONS(4202), + [anon_sym_annotation] = ACTIONS(4202), + [anon_sym_data] = ACTIONS(4202), + [anon_sym_inner] = ACTIONS(4202), + [anon_sym_value] = ACTIONS(4202), + [anon_sym_override] = ACTIONS(4202), + [anon_sym_lateinit] = ACTIONS(4202), + [anon_sym_public] = ACTIONS(4202), + [anon_sym_private] = ACTIONS(4202), + [anon_sym_internal] = ACTIONS(4202), + [anon_sym_protected] = ACTIONS(4202), + [anon_sym_tailrec] = ACTIONS(4202), + [anon_sym_operator] = ACTIONS(4202), + [anon_sym_infix] = ACTIONS(4202), + [anon_sym_inline] = ACTIONS(4202), + [anon_sym_external] = ACTIONS(4202), + [sym_property_modifier] = ACTIONS(4202), + [anon_sym_abstract] = ACTIONS(4202), + [anon_sym_final] = ACTIONS(4202), + [anon_sym_open] = ACTIONS(4202), + [anon_sym_vararg] = ACTIONS(4202), + [anon_sym_noinline] = ACTIONS(4202), + [anon_sym_crossinline] = ACTIONS(4202), + [anon_sym_expect] = ACTIONS(4202), + [anon_sym_actual] = ACTIONS(4202), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4204), + [sym__automatic_semicolon] = ACTIONS(4204), + [sym_safe_nav] = ACTIONS(4204), [sym_multiline_comment] = ACTIONS(3), }, [4217] = { - [sym_function_body] = STATE(3472), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_RPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [sym_function_body] = STATE(3452), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_RPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_while] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), [sym_multiline_comment] = ACTIONS(3), }, [4218] = { - [sym_class_body] = STATE(3964), - [sym_type_constraints] = STATE(3783), - [sym__alpha_identifier] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3280), - [anon_sym_COLON] = ACTIONS(6374), - [anon_sym_LBRACK] = ACTIONS(3280), - [anon_sym_DOT] = ACTIONS(3276), - [anon_sym_as] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3280), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_GT] = ACTIONS(3276), - [anon_sym_where] = ACTIONS(5816), - [anon_sym_SEMI] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_STAR] = ACTIONS(3280), - [sym_label] = ACTIONS(3280), - [anon_sym_in] = ACTIONS(3276), - [anon_sym_DOT_DOT] = ACTIONS(3280), - [anon_sym_QMARK_COLON] = ACTIONS(3280), - [anon_sym_AMP_AMP] = ACTIONS(3280), - [anon_sym_PIPE_PIPE] = ACTIONS(3280), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_COLON_COLON] = ACTIONS(3280), - [anon_sym_BANG_EQ] = ACTIONS(3276), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3280), - [anon_sym_EQ_EQ] = ACTIONS(3276), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3280), - [anon_sym_LT_EQ] = ACTIONS(3280), - [anon_sym_GT_EQ] = ACTIONS(3280), - [anon_sym_BANGin] = ACTIONS(3280), - [anon_sym_is] = ACTIONS(3276), - [anon_sym_BANGis] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3280), - [anon_sym_as_QMARK] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3280), - [anon_sym_DASH_DASH] = ACTIONS(3280), - [anon_sym_BANG_BANG] = ACTIONS(3280), - [anon_sym_suspend] = ACTIONS(3276), - [anon_sym_sealed] = ACTIONS(3276), - [anon_sym_annotation] = ACTIONS(3276), - [anon_sym_data] = ACTIONS(3276), - [anon_sym_inner] = ACTIONS(3276), - [anon_sym_value] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_lateinit] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_internal] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_tailrec] = ACTIONS(3276), - [anon_sym_operator] = ACTIONS(3276), - [anon_sym_infix] = ACTIONS(3276), - [anon_sym_inline] = ACTIONS(3276), - [anon_sym_external] = ACTIONS(3276), - [sym_property_modifier] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_final] = ACTIONS(3276), - [anon_sym_open] = ACTIONS(3276), - [anon_sym_vararg] = ACTIONS(3276), - [anon_sym_noinline] = ACTIONS(3276), - [anon_sym_crossinline] = ACTIONS(3276), - [anon_sym_expect] = ACTIONS(3276), - [anon_sym_actual] = ACTIONS(3276), + [sym_function_body] = STATE(3885), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4238), + [anon_sym_AT] = ACTIONS(4240), + [anon_sym_COLON] = ACTIONS(7408), + [anon_sym_LBRACK] = ACTIONS(4240), + [anon_sym_DOT] = ACTIONS(4238), + [anon_sym_as] = ACTIONS(4238), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4240), + [anon_sym_LPAREN] = ACTIONS(4240), + [anon_sym_LT] = ACTIONS(4238), + [anon_sym_GT] = ACTIONS(4238), + [anon_sym_SEMI] = ACTIONS(4240), + [anon_sym_get] = ACTIONS(4238), + [anon_sym_set] = ACTIONS(4238), + [anon_sym_STAR] = ACTIONS(4240), + [sym_label] = ACTIONS(4240), + [anon_sym_in] = ACTIONS(4238), + [anon_sym_DOT_DOT] = ACTIONS(4240), + [anon_sym_QMARK_COLON] = ACTIONS(4240), + [anon_sym_AMP_AMP] = ACTIONS(4240), + [anon_sym_PIPE_PIPE] = ACTIONS(4240), + [anon_sym_else] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4240), + [anon_sym_BANG_EQ] = ACTIONS(4238), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), + [anon_sym_EQ_EQ] = ACTIONS(4238), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), + [anon_sym_LT_EQ] = ACTIONS(4240), + [anon_sym_GT_EQ] = ACTIONS(4240), + [anon_sym_BANGin] = ACTIONS(4240), + [anon_sym_is] = ACTIONS(4238), + [anon_sym_BANGis] = ACTIONS(4240), + [anon_sym_PLUS] = ACTIONS(4238), + [anon_sym_DASH] = ACTIONS(4238), + [anon_sym_SLASH] = ACTIONS(4238), + [anon_sym_PERCENT] = ACTIONS(4240), + [anon_sym_as_QMARK] = ACTIONS(4240), + [anon_sym_PLUS_PLUS] = ACTIONS(4240), + [anon_sym_DASH_DASH] = ACTIONS(4240), + [anon_sym_BANG_BANG] = ACTIONS(4240), + [anon_sym_suspend] = ACTIONS(4238), + [anon_sym_sealed] = ACTIONS(4238), + [anon_sym_annotation] = ACTIONS(4238), + [anon_sym_data] = ACTIONS(4238), + [anon_sym_inner] = ACTIONS(4238), + [anon_sym_value] = ACTIONS(4238), + [anon_sym_override] = ACTIONS(4238), + [anon_sym_lateinit] = ACTIONS(4238), + [anon_sym_public] = ACTIONS(4238), + [anon_sym_private] = ACTIONS(4238), + [anon_sym_internal] = ACTIONS(4238), + [anon_sym_protected] = ACTIONS(4238), + [anon_sym_tailrec] = ACTIONS(4238), + [anon_sym_operator] = ACTIONS(4238), + [anon_sym_infix] = ACTIONS(4238), + [anon_sym_inline] = ACTIONS(4238), + [anon_sym_external] = ACTIONS(4238), + [sym_property_modifier] = ACTIONS(4238), + [anon_sym_abstract] = ACTIONS(4238), + [anon_sym_final] = ACTIONS(4238), + [anon_sym_open] = ACTIONS(4238), + [anon_sym_vararg] = ACTIONS(4238), + [anon_sym_noinline] = ACTIONS(4238), + [anon_sym_crossinline] = ACTIONS(4238), + [anon_sym_expect] = ACTIONS(4238), + [anon_sym_actual] = ACTIONS(4238), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3280), - [sym__automatic_semicolon] = ACTIONS(3280), - [sym_safe_nav] = ACTIONS(3280), + [sym__backtick_identifier] = ACTIONS(4240), + [sym__automatic_semicolon] = ACTIONS(4240), + [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), }, [4219] = { - [sym_function_body] = STATE(3487), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_RPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_while] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [sym_function_body] = STATE(3396), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_while] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [4220] = { - [sym_function_body] = STATE(3387), - [sym__block] = STATE(3577), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(7203), - [anon_sym_LBRACE] = ACTIONS(6522), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_RPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4395), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_while] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4395), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), + [sym_function_body] = STATE(3491), + [sym__block] = STATE(3524), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(6488), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_RPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = 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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), }, [4221] = { - [sym_function_body] = STATE(3878), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4393), - [anon_sym_AT] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_DOT] = ACTIONS(4393), - [anon_sym_as] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4393), - [anon_sym_GT] = ACTIONS(4393), - [anon_sym_SEMI] = ACTIONS(4395), - [anon_sym_get] = ACTIONS(4393), - [anon_sym_set] = ACTIONS(4393), - [anon_sym_STAR] = ACTIONS(4395), - [sym_label] = ACTIONS(4395), - [anon_sym_in] = ACTIONS(4393), - [anon_sym_DOT_DOT] = ACTIONS(4395), - [anon_sym_QMARK_COLON] = ACTIONS(4395), - [anon_sym_AMP_AMP] = ACTIONS(4395), - [anon_sym_PIPE_PIPE] = ACTIONS(4395), - [anon_sym_else] = ACTIONS(4393), - [anon_sym_COLON_COLON] = ACTIONS(4395), - [anon_sym_BANG_EQ] = ACTIONS(4393), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4395), - [anon_sym_EQ_EQ] = ACTIONS(4393), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4395), - [anon_sym_LT_EQ] = ACTIONS(4395), - [anon_sym_GT_EQ] = ACTIONS(4395), - [anon_sym_BANGin] = ACTIONS(4395), - [anon_sym_is] = ACTIONS(4393), - [anon_sym_BANGis] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4393), - [anon_sym_DASH] = ACTIONS(4393), - [anon_sym_SLASH] = ACTIONS(4393), - [anon_sym_PERCENT] = ACTIONS(4395), - [anon_sym_as_QMARK] = ACTIONS(4395), - [anon_sym_PLUS_PLUS] = ACTIONS(4395), - [anon_sym_DASH_DASH] = ACTIONS(4395), - [anon_sym_BANG_BANG] = ACTIONS(4395), - [anon_sym_suspend] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_annotation] = ACTIONS(4393), - [anon_sym_data] = ACTIONS(4393), - [anon_sym_inner] = ACTIONS(4393), - [anon_sym_value] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_lateinit] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_tailrec] = ACTIONS(4393), - [anon_sym_operator] = ACTIONS(4393), - [anon_sym_infix] = ACTIONS(4393), - [anon_sym_inline] = ACTIONS(4393), - [anon_sym_external] = ACTIONS(4393), - [sym_property_modifier] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_final] = ACTIONS(4393), - [anon_sym_open] = ACTIONS(4393), - [anon_sym_vararg] = ACTIONS(4393), - [anon_sym_noinline] = ACTIONS(4393), - [anon_sym_crossinline] = ACTIONS(4393), - [anon_sym_expect] = ACTIONS(4393), - [anon_sym_actual] = ACTIONS(4393), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4395), - [sym__automatic_semicolon] = ACTIONS(4395), - [sym_safe_nav] = ACTIONS(4395), + [sym_function_body] = STATE(3909), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4230), + [anon_sym_AT] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4232), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_as] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4232), + [anon_sym_LPAREN] = ACTIONS(4232), + [anon_sym_LT] = ACTIONS(4230), + [anon_sym_GT] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4232), + [anon_sym_get] = ACTIONS(4230), + [anon_sym_set] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [sym_label] = ACTIONS(4232), + [anon_sym_in] = ACTIONS(4230), + [anon_sym_DOT_DOT] = ACTIONS(4232), + [anon_sym_QMARK_COLON] = ACTIONS(4232), + [anon_sym_AMP_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4232), + [anon_sym_else] = ACTIONS(4230), + [anon_sym_COLON_COLON] = ACTIONS(4232), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4232), + [anon_sym_GT_EQ] = ACTIONS(4232), + [anon_sym_BANGin] = ACTIONS(4232), + [anon_sym_is] = ACTIONS(4230), + [anon_sym_BANGis] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4230), + [anon_sym_DASH] = ACTIONS(4230), + [anon_sym_SLASH] = ACTIONS(4230), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_as_QMARK] = ACTIONS(4232), + [anon_sym_PLUS_PLUS] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4232), + [anon_sym_BANG_BANG] = ACTIONS(4232), + [anon_sym_suspend] = ACTIONS(4230), + [anon_sym_sealed] = ACTIONS(4230), + [anon_sym_annotation] = ACTIONS(4230), + [anon_sym_data] = ACTIONS(4230), + [anon_sym_inner] = ACTIONS(4230), + [anon_sym_value] = ACTIONS(4230), + [anon_sym_override] = ACTIONS(4230), + [anon_sym_lateinit] = ACTIONS(4230), + [anon_sym_public] = ACTIONS(4230), + [anon_sym_private] = ACTIONS(4230), + [anon_sym_internal] = ACTIONS(4230), + [anon_sym_protected] = ACTIONS(4230), + [anon_sym_tailrec] = ACTIONS(4230), + [anon_sym_operator] = ACTIONS(4230), + [anon_sym_infix] = ACTIONS(4230), + [anon_sym_inline] = ACTIONS(4230), + [anon_sym_external] = ACTIONS(4230), + [sym_property_modifier] = ACTIONS(4230), + [anon_sym_abstract] = ACTIONS(4230), + [anon_sym_final] = ACTIONS(4230), + [anon_sym_open] = ACTIONS(4230), + [anon_sym_vararg] = ACTIONS(4230), + [anon_sym_noinline] = ACTIONS(4230), + [anon_sym_crossinline] = ACTIONS(4230), + [anon_sym_expect] = ACTIONS(4230), + [anon_sym_actual] = ACTIONS(4230), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4232), + [sym__automatic_semicolon] = ACTIONS(4232), + [sym_safe_nav] = ACTIONS(4232), [sym_multiline_comment] = ACTIONS(3), }, [4222] = { - [sym_function_body] = STATE(3988), - [sym__block] = STATE(3975), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_where] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(6995), + [sym_multiline_comment] = ACTIONS(3), + }, + [4223] = { + [aux_sym__delegation_specifiers_repeat1] = STATE(4230), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_as] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_RBRACE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4513), + [anon_sym_where] = ACTIONS(4513), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = ACTIONS(4513), + [anon_sym_STAR] = ACTIONS(4515), + [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_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(4515), + [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_value] = 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), + }, + [4224] = { + [sym_function_body] = STATE(3962), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4418), + [anon_sym_LBRACK] = ACTIONS(4418), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_as] = ACTIONS(4416), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4418), + [anon_sym_LPAREN] = ACTIONS(4418), + [anon_sym_LT] = ACTIONS(4416), + [anon_sym_GT] = ACTIONS(4416), + [anon_sym_SEMI] = ACTIONS(4418), + [anon_sym_get] = ACTIONS(4416), + [anon_sym_set] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4418), + [sym_label] = ACTIONS(4418), + [anon_sym_in] = ACTIONS(4416), + [anon_sym_DOT_DOT] = ACTIONS(4418), + [anon_sym_QMARK_COLON] = ACTIONS(4418), + [anon_sym_AMP_AMP] = ACTIONS(4418), + [anon_sym_PIPE_PIPE] = ACTIONS(4418), + [anon_sym_else] = ACTIONS(4416), + [anon_sym_COLON_COLON] = ACTIONS(4418), + [anon_sym_BANG_EQ] = ACTIONS(4416), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4418), + [anon_sym_EQ_EQ] = ACTIONS(4416), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4418), + [anon_sym_LT_EQ] = ACTIONS(4418), + [anon_sym_GT_EQ] = ACTIONS(4418), + [anon_sym_BANGin] = ACTIONS(4418), + [anon_sym_is] = ACTIONS(4416), + [anon_sym_BANGis] = ACTIONS(4418), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_SLASH] = ACTIONS(4416), + [anon_sym_PERCENT] = ACTIONS(4418), + [anon_sym_as_QMARK] = ACTIONS(4418), + [anon_sym_PLUS_PLUS] = ACTIONS(4418), + [anon_sym_DASH_DASH] = ACTIONS(4418), + [anon_sym_BANG_BANG] = ACTIONS(4418), + [anon_sym_suspend] = ACTIONS(4416), + [anon_sym_sealed] = ACTIONS(4416), + [anon_sym_annotation] = ACTIONS(4416), + [anon_sym_data] = ACTIONS(4416), + [anon_sym_inner] = ACTIONS(4416), + [anon_sym_value] = ACTIONS(4416), + [anon_sym_override] = ACTIONS(4416), + [anon_sym_lateinit] = ACTIONS(4416), + [anon_sym_public] = ACTIONS(4416), + [anon_sym_private] = ACTIONS(4416), + [anon_sym_internal] = ACTIONS(4416), + [anon_sym_protected] = ACTIONS(4416), + [anon_sym_tailrec] = ACTIONS(4416), + [anon_sym_operator] = ACTIONS(4416), + [anon_sym_infix] = ACTIONS(4416), + [anon_sym_inline] = ACTIONS(4416), + [anon_sym_external] = ACTIONS(4416), + [sym_property_modifier] = ACTIONS(4416), + [anon_sym_abstract] = ACTIONS(4416), + [anon_sym_final] = ACTIONS(4416), + [anon_sym_open] = ACTIONS(4416), + [anon_sym_vararg] = ACTIONS(4416), + [anon_sym_noinline] = ACTIONS(4416), + [anon_sym_crossinline] = ACTIONS(4416), + [anon_sym_expect] = ACTIONS(4416), + [anon_sym_actual] = ACTIONS(4416), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4418), + [sym__automatic_semicolon] = ACTIONS(4418), + [sym_safe_nav] = ACTIONS(4418), + [sym_multiline_comment] = ACTIONS(3), + }, + [4225] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3080), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(7424), + [anon_sym_PIPE_PIPE] = ACTIONS(7426), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(6995), + [sym_multiline_comment] = ACTIONS(3), + }, + [4226] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(7424), + [anon_sym_PIPE_PIPE] = ACTIONS(7426), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(6995), + [sym_multiline_comment] = ACTIONS(3), + }, + [4227] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(7424), + [anon_sym_PIPE_PIPE] = ACTIONS(7426), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(6995), + [sym_multiline_comment] = ACTIONS(3), + }, + [4228] = { + [sym_function_body] = STATE(3859), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4196), + [anon_sym_AT] = ACTIONS(4198), + [anon_sym_LBRACK] = ACTIONS(4198), + [anon_sym_DOT] = ACTIONS(4196), + [anon_sym_as] = ACTIONS(4196), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4198), + [anon_sym_LPAREN] = ACTIONS(4198), + [anon_sym_LT] = ACTIONS(4196), + [anon_sym_GT] = ACTIONS(4196), + [anon_sym_SEMI] = ACTIONS(4198), + [anon_sym_get] = ACTIONS(4196), + [anon_sym_set] = ACTIONS(4196), + [anon_sym_STAR] = ACTIONS(4198), + [sym_label] = ACTIONS(4198), + [anon_sym_in] = ACTIONS(4196), + [anon_sym_DOT_DOT] = ACTIONS(4198), + [anon_sym_QMARK_COLON] = ACTIONS(4198), + [anon_sym_AMP_AMP] = ACTIONS(4198), + [anon_sym_PIPE_PIPE] = ACTIONS(4198), + [anon_sym_else] = ACTIONS(4196), + [anon_sym_COLON_COLON] = ACTIONS(4198), + [anon_sym_BANG_EQ] = ACTIONS(4196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4198), + [anon_sym_EQ_EQ] = ACTIONS(4196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4198), + [anon_sym_LT_EQ] = ACTIONS(4198), + [anon_sym_GT_EQ] = ACTIONS(4198), + [anon_sym_BANGin] = ACTIONS(4198), + [anon_sym_is] = ACTIONS(4196), + [anon_sym_BANGis] = ACTIONS(4198), + [anon_sym_PLUS] = ACTIONS(4196), + [anon_sym_DASH] = ACTIONS(4196), + [anon_sym_SLASH] = ACTIONS(4196), + [anon_sym_PERCENT] = ACTIONS(4198), + [anon_sym_as_QMARK] = ACTIONS(4198), + [anon_sym_PLUS_PLUS] = ACTIONS(4198), + [anon_sym_DASH_DASH] = ACTIONS(4198), + [anon_sym_BANG_BANG] = ACTIONS(4198), + [anon_sym_suspend] = ACTIONS(4196), + [anon_sym_sealed] = ACTIONS(4196), + [anon_sym_annotation] = ACTIONS(4196), + [anon_sym_data] = ACTIONS(4196), + [anon_sym_inner] = ACTIONS(4196), + [anon_sym_value] = ACTIONS(4196), + [anon_sym_override] = ACTIONS(4196), + [anon_sym_lateinit] = ACTIONS(4196), + [anon_sym_public] = ACTIONS(4196), + [anon_sym_private] = ACTIONS(4196), + [anon_sym_internal] = ACTIONS(4196), + [anon_sym_protected] = ACTIONS(4196), + [anon_sym_tailrec] = ACTIONS(4196), + [anon_sym_operator] = ACTIONS(4196), + [anon_sym_infix] = ACTIONS(4196), + [anon_sym_inline] = ACTIONS(4196), + [anon_sym_external] = ACTIONS(4196), + [sym_property_modifier] = ACTIONS(4196), + [anon_sym_abstract] = ACTIONS(4196), + [anon_sym_final] = ACTIONS(4196), + [anon_sym_open] = ACTIONS(4196), + [anon_sym_vararg] = ACTIONS(4196), + [anon_sym_noinline] = ACTIONS(4196), + [anon_sym_crossinline] = ACTIONS(4196), + [anon_sym_expect] = ACTIONS(4196), + [anon_sym_actual] = ACTIONS(4196), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4198), + [sym__automatic_semicolon] = ACTIONS(4198), + [sym_safe_nav] = ACTIONS(4198), + [sym_multiline_comment] = ACTIONS(3), + }, + [4229] = { + [sym_function_body] = STATE(3956), + [sym__block] = STATE(3874), [sym__alpha_identifier] = ACTIONS(4260), [anon_sym_AT] = ACTIONS(4262), [anon_sym_LBRACK] = ACTIONS(4262), [anon_sym_DOT] = ACTIONS(4260), [anon_sym_as] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), [anon_sym_RBRACE] = ACTIONS(4262), [anon_sym_LPAREN] = ACTIONS(4262), [anon_sym_LT] = ACTIONS(4260), @@ -458744,3704 +459538,2661 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_safe_nav] = ACTIONS(4262), [sym_multiline_comment] = ACTIONS(3), }, - [4223] = { - [sym_class_body] = STATE(3543), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(7462), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4407), - [sym_label] = ACTIONS(4407), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_while] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4407), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - }, - [4224] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(7474), - [anon_sym_PIPE_PIPE] = ACTIONS(7476), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4225] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4225), - [sym__alpha_identifier] = ACTIONS(4637), - [anon_sym_AT] = ACTIONS(4639), - [anon_sym_LBRACK] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_as] = ACTIONS(4637), - [anon_sym_LBRACE] = ACTIONS(4639), - [anon_sym_RBRACE] = ACTIONS(4639), - [anon_sym_LPAREN] = ACTIONS(4639), - [anon_sym_COMMA] = ACTIONS(7490), - [anon_sym_LT] = ACTIONS(4637), - [anon_sym_GT] = ACTIONS(4637), - [anon_sym_where] = ACTIONS(4637), - [anon_sym_SEMI] = ACTIONS(4639), - [anon_sym_get] = ACTIONS(4637), - [anon_sym_set] = ACTIONS(4637), - [anon_sym_STAR] = ACTIONS(4639), - [sym_label] = ACTIONS(4639), - [anon_sym_in] = ACTIONS(4637), - [anon_sym_DOT_DOT] = ACTIONS(4639), - [anon_sym_QMARK_COLON] = ACTIONS(4639), - [anon_sym_AMP_AMP] = ACTIONS(4639), - [anon_sym_PIPE_PIPE] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4639), - [anon_sym_BANG_EQ] = ACTIONS(4637), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4639), - [anon_sym_EQ_EQ] = ACTIONS(4637), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4639), - [anon_sym_LT_EQ] = ACTIONS(4639), - [anon_sym_GT_EQ] = ACTIONS(4639), - [anon_sym_BANGin] = ACTIONS(4639), - [anon_sym_is] = ACTIONS(4637), - [anon_sym_BANGis] = ACTIONS(4639), - [anon_sym_PLUS] = ACTIONS(4637), - [anon_sym_DASH] = ACTIONS(4637), - [anon_sym_SLASH] = ACTIONS(4637), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_as_QMARK] = ACTIONS(4639), - [anon_sym_PLUS_PLUS] = ACTIONS(4639), - [anon_sym_DASH_DASH] = ACTIONS(4639), - [anon_sym_BANG_BANG] = ACTIONS(4639), - [anon_sym_suspend] = ACTIONS(4637), - [anon_sym_sealed] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4637), - [anon_sym_data] = ACTIONS(4637), - [anon_sym_inner] = ACTIONS(4637), - [anon_sym_value] = ACTIONS(4637), - [anon_sym_override] = ACTIONS(4637), - [anon_sym_lateinit] = ACTIONS(4637), - [anon_sym_public] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4637), - [anon_sym_internal] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4637), - [anon_sym_tailrec] = ACTIONS(4637), - [anon_sym_operator] = ACTIONS(4637), - [anon_sym_infix] = ACTIONS(4637), - [anon_sym_inline] = ACTIONS(4637), - [anon_sym_external] = ACTIONS(4637), - [sym_property_modifier] = ACTIONS(4637), - [anon_sym_abstract] = ACTIONS(4637), - [anon_sym_final] = ACTIONS(4637), - [anon_sym_open] = ACTIONS(4637), - [anon_sym_vararg] = ACTIONS(4637), - [anon_sym_noinline] = ACTIONS(4637), - [anon_sym_crossinline] = ACTIONS(4637), - [anon_sym_expect] = ACTIONS(4637), - [anon_sym_actual] = ACTIONS(4637), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4639), - [sym__automatic_semicolon] = ACTIONS(4639), - [sym_safe_nav] = ACTIONS(4639), - [sym_multiline_comment] = ACTIONS(3), - }, - [4226] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(7474), - [anon_sym_PIPE_PIPE] = ACTIONS(7476), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4227] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_where] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4228] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4251), - [sym__alpha_identifier] = ACTIONS(4621), - [anon_sym_AT] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4621), - [anon_sym_as] = ACTIONS(4621), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_LPAREN] = ACTIONS(4623), - [anon_sym_COMMA] = ACTIONS(7493), - [anon_sym_LT] = ACTIONS(4621), - [anon_sym_GT] = ACTIONS(4621), - [anon_sym_where] = ACTIONS(4621), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_get] = ACTIONS(4621), - [anon_sym_set] = ACTIONS(4621), - [anon_sym_STAR] = ACTIONS(4623), - [sym_label] = ACTIONS(4623), - [anon_sym_in] = ACTIONS(4621), - [anon_sym_DOT_DOT] = ACTIONS(4623), - [anon_sym_QMARK_COLON] = ACTIONS(4623), - [anon_sym_AMP_AMP] = ACTIONS(4623), - [anon_sym_PIPE_PIPE] = ACTIONS(4623), - [anon_sym_else] = ACTIONS(4621), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_BANG_EQ] = ACTIONS(4621), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4623), - [anon_sym_EQ_EQ] = ACTIONS(4621), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4623), - [anon_sym_LT_EQ] = ACTIONS(4623), - [anon_sym_GT_EQ] = ACTIONS(4623), - [anon_sym_BANGin] = ACTIONS(4623), - [anon_sym_is] = ACTIONS(4621), - [anon_sym_BANGis] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4621), - [anon_sym_DASH] = ACTIONS(4621), - [anon_sym_SLASH] = ACTIONS(4621), - [anon_sym_PERCENT] = ACTIONS(4623), - [anon_sym_as_QMARK] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_BANG_BANG] = ACTIONS(4623), - [anon_sym_suspend] = ACTIONS(4621), - [anon_sym_sealed] = ACTIONS(4621), - [anon_sym_annotation] = ACTIONS(4621), - [anon_sym_data] = ACTIONS(4621), - [anon_sym_inner] = ACTIONS(4621), - [anon_sym_value] = ACTIONS(4621), - [anon_sym_override] = ACTIONS(4621), - [anon_sym_lateinit] = ACTIONS(4621), - [anon_sym_public] = ACTIONS(4621), - [anon_sym_private] = ACTIONS(4621), - [anon_sym_internal] = ACTIONS(4621), - [anon_sym_protected] = ACTIONS(4621), - [anon_sym_tailrec] = ACTIONS(4621), - [anon_sym_operator] = ACTIONS(4621), - [anon_sym_infix] = ACTIONS(4621), - [anon_sym_inline] = ACTIONS(4621), - [anon_sym_external] = ACTIONS(4621), - [sym_property_modifier] = ACTIONS(4621), - [anon_sym_abstract] = ACTIONS(4621), - [anon_sym_final] = ACTIONS(4621), - [anon_sym_open] = ACTIONS(4621), - [anon_sym_vararg] = ACTIONS(4621), - [anon_sym_noinline] = ACTIONS(4621), - [anon_sym_crossinline] = ACTIONS(4621), - [anon_sym_expect] = ACTIONS(4621), - [anon_sym_actual] = ACTIONS(4621), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4623), - [sym__automatic_semicolon] = ACTIONS(4623), - [sym_safe_nav] = ACTIONS(4623), - [sym_multiline_comment] = ACTIONS(3), - }, - [4229] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, [4230] = { - [sym_class_body] = STATE(3584), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(7495), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(5516), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_RPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_while] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4379), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [aux_sym__delegation_specifiers_repeat1] = STATE(4230), + [sym__alpha_identifier] = ACTIONS(4611), + [anon_sym_AT] = ACTIONS(4613), + [anon_sym_LBRACK] = ACTIONS(4613), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_as] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4613), + [anon_sym_RBRACE] = ACTIONS(4613), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym_COMMA] = ACTIONS(7436), + [anon_sym_LT] = ACTIONS(4611), + [anon_sym_GT] = ACTIONS(4611), + [anon_sym_where] = ACTIONS(4611), + [anon_sym_SEMI] = ACTIONS(4613), + [anon_sym_get] = ACTIONS(4611), + [anon_sym_set] = ACTIONS(4611), + [anon_sym_STAR] = ACTIONS(4613), + [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_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(4613), + [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_value] = 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), [sym_multiline_comment] = ACTIONS(3), }, [4231] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_where] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(7424), + [anon_sym_PIPE_PIPE] = ACTIONS(7426), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4232] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_where] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3141), - [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_DOT_DOT] = ACTIONS(3143), - [anon_sym_QMARK_COLON] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3141), - [anon_sym_inner] = ACTIONS(3141), - [anon_sym_value] = ACTIONS(3141), - [anon_sym_expect] = ACTIONS(3141), - [anon_sym_actual] = ACTIONS(3141), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3143), - [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(7053), + [sym_function_body] = STATE(4026), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4142), + [anon_sym_AT] = ACTIONS(4144), + [anon_sym_LBRACK] = ACTIONS(4144), + [anon_sym_DOT] = ACTIONS(4142), + [anon_sym_as] = ACTIONS(4142), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_LPAREN] = ACTIONS(4144), + [anon_sym_LT] = ACTIONS(4142), + [anon_sym_GT] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym_get] = ACTIONS(4142), + [anon_sym_set] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [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_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(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(4142), + [anon_sym_sealed] = ACTIONS(4142), + [anon_sym_annotation] = ACTIONS(4142), + [anon_sym_data] = ACTIONS(4142), + [anon_sym_inner] = ACTIONS(4142), + [anon_sym_value] = 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), }, [4233] = { - [sym_function_body] = STATE(3890), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_as] = ACTIONS(4264), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_LT] = ACTIONS(4264), - [anon_sym_GT] = ACTIONS(4264), - [anon_sym_SEMI] = ACTIONS(4266), - [anon_sym_get] = ACTIONS(4264), - [anon_sym_set] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4266), - [sym_label] = ACTIONS(4266), - [anon_sym_in] = ACTIONS(4264), - [anon_sym_DOT_DOT] = ACTIONS(4266), - [anon_sym_QMARK_COLON] = ACTIONS(4266), - [anon_sym_AMP_AMP] = ACTIONS(4266), - [anon_sym_PIPE_PIPE] = ACTIONS(4266), - [anon_sym_else] = ACTIONS(4264), - [anon_sym_COLON_COLON] = ACTIONS(4266), - [anon_sym_BANG_EQ] = ACTIONS(4264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4266), - [anon_sym_EQ_EQ] = ACTIONS(4264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4266), - [anon_sym_LT_EQ] = ACTIONS(4266), - [anon_sym_GT_EQ] = ACTIONS(4266), - [anon_sym_BANGin] = ACTIONS(4266), - [anon_sym_is] = ACTIONS(4264), - [anon_sym_BANGis] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_SLASH] = ACTIONS(4264), - [anon_sym_PERCENT] = ACTIONS(4266), - [anon_sym_as_QMARK] = ACTIONS(4266), - [anon_sym_PLUS_PLUS] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4266), - [anon_sym_BANG_BANG] = ACTIONS(4266), - [anon_sym_suspend] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_annotation] = ACTIONS(4264), - [anon_sym_data] = ACTIONS(4264), - [anon_sym_inner] = ACTIONS(4264), - [anon_sym_value] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_lateinit] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_tailrec] = ACTIONS(4264), - [anon_sym_operator] = ACTIONS(4264), - [anon_sym_infix] = ACTIONS(4264), - [anon_sym_inline] = ACTIONS(4264), - [anon_sym_external] = ACTIONS(4264), - [sym_property_modifier] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_final] = ACTIONS(4264), - [anon_sym_open] = ACTIONS(4264), - [anon_sym_vararg] = ACTIONS(4264), - [anon_sym_noinline] = ACTIONS(4264), - [anon_sym_crossinline] = ACTIONS(4264), - [anon_sym_expect] = ACTIONS(4264), - [anon_sym_actual] = ACTIONS(4264), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(7424), + [anon_sym_PIPE_PIPE] = ACTIONS(7426), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4266), - [sym__automatic_semicolon] = ACTIONS(4266), - [sym_safe_nav] = ACTIONS(4266), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4234] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_where] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_where] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4235] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_where] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3072), + [anon_sym_SEMI] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(7424), + [anon_sym_PIPE_PIPE] = ACTIONS(7426), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3074), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4236] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_where] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_where] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4237] = { - [sym_function_body] = STATE(3902), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4194), - [anon_sym_AT] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_DOT] = ACTIONS(4194), - [anon_sym_as] = ACTIONS(4194), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4196), - [anon_sym_LPAREN] = ACTIONS(4196), - [anon_sym_LT] = ACTIONS(4194), - [anon_sym_GT] = ACTIONS(4194), - [anon_sym_SEMI] = ACTIONS(4196), - [anon_sym_get] = ACTIONS(4194), - [anon_sym_set] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4196), - [sym_label] = ACTIONS(4196), - [anon_sym_in] = ACTIONS(4194), - [anon_sym_DOT_DOT] = ACTIONS(4196), - [anon_sym_QMARK_COLON] = ACTIONS(4196), - [anon_sym_AMP_AMP] = ACTIONS(4196), - [anon_sym_PIPE_PIPE] = ACTIONS(4196), - [anon_sym_else] = ACTIONS(4194), - [anon_sym_COLON_COLON] = ACTIONS(4196), - [anon_sym_BANG_EQ] = ACTIONS(4194), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4196), - [anon_sym_EQ_EQ] = ACTIONS(4194), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4196), - [anon_sym_LT_EQ] = ACTIONS(4196), - [anon_sym_GT_EQ] = ACTIONS(4196), - [anon_sym_BANGin] = ACTIONS(4196), - [anon_sym_is] = ACTIONS(4194), - [anon_sym_BANGis] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4194), - [anon_sym_SLASH] = ACTIONS(4194), - [anon_sym_PERCENT] = ACTIONS(4196), - [anon_sym_as_QMARK] = ACTIONS(4196), - [anon_sym_PLUS_PLUS] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4196), - [anon_sym_BANG_BANG] = ACTIONS(4196), - [anon_sym_suspend] = ACTIONS(4194), - [anon_sym_sealed] = ACTIONS(4194), - [anon_sym_annotation] = ACTIONS(4194), - [anon_sym_data] = ACTIONS(4194), - [anon_sym_inner] = ACTIONS(4194), - [anon_sym_value] = ACTIONS(4194), - [anon_sym_override] = ACTIONS(4194), - [anon_sym_lateinit] = ACTIONS(4194), - [anon_sym_public] = ACTIONS(4194), - [anon_sym_private] = ACTIONS(4194), - [anon_sym_internal] = ACTIONS(4194), - [anon_sym_protected] = ACTIONS(4194), - [anon_sym_tailrec] = ACTIONS(4194), - [anon_sym_operator] = ACTIONS(4194), - [anon_sym_infix] = ACTIONS(4194), - [anon_sym_inline] = ACTIONS(4194), - [anon_sym_external] = ACTIONS(4194), - [sym_property_modifier] = ACTIONS(4194), - [anon_sym_abstract] = ACTIONS(4194), - [anon_sym_final] = ACTIONS(4194), - [anon_sym_open] = ACTIONS(4194), - [anon_sym_vararg] = ACTIONS(4194), - [anon_sym_noinline] = ACTIONS(4194), - [anon_sym_crossinline] = ACTIONS(4194), - [anon_sym_expect] = ACTIONS(4194), - [anon_sym_actual] = ACTIONS(4194), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4196), - [sym__automatic_semicolon] = ACTIONS(4196), - [sym_safe_nav] = ACTIONS(4196), + [aux_sym__delegation_specifiers_repeat1] = STATE(4240), + [sym__alpha_identifier] = ACTIONS(4587), + [anon_sym_AT] = ACTIONS(4589), + [anon_sym_LBRACK] = ACTIONS(4589), + [anon_sym_DOT] = ACTIONS(4587), + [anon_sym_as] = ACTIONS(4587), + [anon_sym_LBRACE] = ACTIONS(4589), + [anon_sym_RBRACE] = ACTIONS(4589), + [anon_sym_LPAREN] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(7439), + [anon_sym_LT] = ACTIONS(4587), + [anon_sym_GT] = ACTIONS(4587), + [anon_sym_where] = ACTIONS(4587), + [anon_sym_SEMI] = ACTIONS(4589), + [anon_sym_get] = ACTIONS(4587), + [anon_sym_set] = ACTIONS(4587), + [anon_sym_STAR] = ACTIONS(4589), + [sym_label] = ACTIONS(4589), + [anon_sym_in] = ACTIONS(4587), + [anon_sym_DOT_DOT] = ACTIONS(4589), + [anon_sym_QMARK_COLON] = ACTIONS(4589), + [anon_sym_AMP_AMP] = ACTIONS(4589), + [anon_sym_PIPE_PIPE] = ACTIONS(4589), + [anon_sym_else] = ACTIONS(4587), + [anon_sym_COLON_COLON] = ACTIONS(4589), + [anon_sym_BANG_EQ] = ACTIONS(4587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4589), + [anon_sym_EQ_EQ] = ACTIONS(4587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4589), + [anon_sym_LT_EQ] = ACTIONS(4589), + [anon_sym_GT_EQ] = ACTIONS(4589), + [anon_sym_BANGin] = ACTIONS(4589), + [anon_sym_is] = ACTIONS(4587), + [anon_sym_BANGis] = ACTIONS(4589), + [anon_sym_PLUS] = ACTIONS(4587), + [anon_sym_DASH] = ACTIONS(4587), + [anon_sym_SLASH] = ACTIONS(4587), + [anon_sym_PERCENT] = ACTIONS(4589), + [anon_sym_as_QMARK] = ACTIONS(4589), + [anon_sym_PLUS_PLUS] = ACTIONS(4589), + [anon_sym_DASH_DASH] = ACTIONS(4589), + [anon_sym_BANG_BANG] = ACTIONS(4589), + [anon_sym_suspend] = ACTIONS(4587), + [anon_sym_sealed] = ACTIONS(4587), + [anon_sym_annotation] = ACTIONS(4587), + [anon_sym_data] = ACTIONS(4587), + [anon_sym_inner] = ACTIONS(4587), + [anon_sym_value] = ACTIONS(4587), + [anon_sym_override] = ACTIONS(4587), + [anon_sym_lateinit] = ACTIONS(4587), + [anon_sym_public] = ACTIONS(4587), + [anon_sym_private] = ACTIONS(4587), + [anon_sym_internal] = ACTIONS(4587), + [anon_sym_protected] = ACTIONS(4587), + [anon_sym_tailrec] = ACTIONS(4587), + [anon_sym_operator] = ACTIONS(4587), + [anon_sym_infix] = ACTIONS(4587), + [anon_sym_inline] = ACTIONS(4587), + [anon_sym_external] = ACTIONS(4587), + [sym_property_modifier] = ACTIONS(4587), + [anon_sym_abstract] = ACTIONS(4587), + [anon_sym_final] = ACTIONS(4587), + [anon_sym_open] = ACTIONS(4587), + [anon_sym_vararg] = ACTIONS(4587), + [anon_sym_noinline] = ACTIONS(4587), + [anon_sym_crossinline] = ACTIONS(4587), + [anon_sym_expect] = ACTIONS(4587), + [anon_sym_actual] = ACTIONS(4587), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4589), + [sym__automatic_semicolon] = ACTIONS(4589), + [sym_safe_nav] = ACTIONS(4589), [sym_multiline_comment] = ACTIONS(3), }, [4238] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4225), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(4541), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3076), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4239] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(7474), - [anon_sym_PIPE_PIPE] = ACTIONS(7476), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(7053), + [sym_class_body] = STATE(3453), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(7441), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_RPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_while] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), [sym_multiline_comment] = ACTIONS(3), }, [4240] = { - [sym_function_body] = STATE(3861), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4385), - [anon_sym_AT] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_DOT] = ACTIONS(4385), - [anon_sym_as] = ACTIONS(4385), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym_LT] = ACTIONS(4385), - [anon_sym_GT] = ACTIONS(4385), - [anon_sym_SEMI] = ACTIONS(4387), - [anon_sym_get] = ACTIONS(4385), - [anon_sym_set] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(4387), - [sym_label] = ACTIONS(4387), - [anon_sym_in] = ACTIONS(4385), - [anon_sym_DOT_DOT] = ACTIONS(4387), - [anon_sym_QMARK_COLON] = ACTIONS(4387), - [anon_sym_AMP_AMP] = ACTIONS(4387), - [anon_sym_PIPE_PIPE] = ACTIONS(4387), - [anon_sym_else] = ACTIONS(4385), - [anon_sym_COLON_COLON] = ACTIONS(4387), - [anon_sym_BANG_EQ] = ACTIONS(4385), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4387), - [anon_sym_EQ_EQ] = ACTIONS(4385), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4387), - [anon_sym_LT_EQ] = ACTIONS(4387), - [anon_sym_GT_EQ] = ACTIONS(4387), - [anon_sym_BANGin] = ACTIONS(4387), - [anon_sym_is] = ACTIONS(4385), - [anon_sym_BANGis] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4385), - [anon_sym_SLASH] = ACTIONS(4385), - [anon_sym_PERCENT] = ACTIONS(4387), - [anon_sym_as_QMARK] = ACTIONS(4387), - [anon_sym_PLUS_PLUS] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4387), - [anon_sym_BANG_BANG] = ACTIONS(4387), - [anon_sym_suspend] = ACTIONS(4385), - [anon_sym_sealed] = ACTIONS(4385), - [anon_sym_annotation] = ACTIONS(4385), - [anon_sym_data] = ACTIONS(4385), - [anon_sym_inner] = ACTIONS(4385), - [anon_sym_value] = ACTIONS(4385), - [anon_sym_override] = ACTIONS(4385), - [anon_sym_lateinit] = ACTIONS(4385), - [anon_sym_public] = ACTIONS(4385), - [anon_sym_private] = ACTIONS(4385), - [anon_sym_internal] = ACTIONS(4385), - [anon_sym_protected] = ACTIONS(4385), - [anon_sym_tailrec] = ACTIONS(4385), - [anon_sym_operator] = ACTIONS(4385), - [anon_sym_infix] = ACTIONS(4385), - [anon_sym_inline] = ACTIONS(4385), - [anon_sym_external] = ACTIONS(4385), - [sym_property_modifier] = ACTIONS(4385), - [anon_sym_abstract] = ACTIONS(4385), - [anon_sym_final] = ACTIONS(4385), - [anon_sym_open] = ACTIONS(4385), - [anon_sym_vararg] = ACTIONS(4385), - [anon_sym_noinline] = ACTIONS(4385), - [anon_sym_crossinline] = ACTIONS(4385), - [anon_sym_expect] = ACTIONS(4385), - [anon_sym_actual] = ACTIONS(4385), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4387), - [sym__automatic_semicolon] = ACTIONS(4387), - [sym_safe_nav] = ACTIONS(4387), + [aux_sym__delegation_specifiers_repeat1] = STATE(4230), + [sym__alpha_identifier] = ACTIONS(4513), + [anon_sym_AT] = ACTIONS(4515), + [anon_sym_LBRACK] = ACTIONS(4515), + [anon_sym_DOT] = ACTIONS(4513), + [anon_sym_as] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4515), + [anon_sym_RBRACE] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4515), + [anon_sym_COMMA] = ACTIONS(7439), + [anon_sym_LT] = ACTIONS(4513), + [anon_sym_GT] = ACTIONS(4513), + [anon_sym_where] = ACTIONS(4513), + [anon_sym_SEMI] = ACTIONS(4515), + [anon_sym_get] = ACTIONS(4513), + [anon_sym_set] = ACTIONS(4513), + [anon_sym_STAR] = ACTIONS(4515), + [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_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(4515), + [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_value] = 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), }, [4241] = { - [sym_function_body] = STATE(4005), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4452), - [anon_sym_AT] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_DOT] = ACTIONS(4452), - [anon_sym_as] = ACTIONS(4452), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4454), - [anon_sym_LPAREN] = ACTIONS(4454), - [anon_sym_LT] = ACTIONS(4452), - [anon_sym_GT] = 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_value] = 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_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(7424), + [anon_sym_PIPE_PIPE] = ACTIONS(7426), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4242] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3125), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(7053), + [sym_function_body] = STATE(3833), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4097), + [anon_sym_AT] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(4099), + [anon_sym_DOT] = ACTIONS(4097), + [anon_sym_as] = ACTIONS(4097), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_LPAREN] = ACTIONS(4099), + [anon_sym_LT] = ACTIONS(4097), + [anon_sym_GT] = ACTIONS(4097), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_STAR] = ACTIONS(4099), + [sym_label] = ACTIONS(4099), + [anon_sym_in] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4099), + [anon_sym_QMARK_COLON] = ACTIONS(4099), + [anon_sym_AMP_AMP] = ACTIONS(4099), + [anon_sym_PIPE_PIPE] = ACTIONS(4099), + [anon_sym_else] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4099), + [anon_sym_BANG_EQ] = ACTIONS(4097), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4099), + [anon_sym_EQ_EQ] = ACTIONS(4097), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4099), + [anon_sym_LT_EQ] = ACTIONS(4099), + [anon_sym_GT_EQ] = ACTIONS(4099), + [anon_sym_BANGin] = ACTIONS(4099), + [anon_sym_is] = ACTIONS(4097), + [anon_sym_BANGis] = ACTIONS(4099), + [anon_sym_PLUS] = ACTIONS(4097), + [anon_sym_DASH] = ACTIONS(4097), + [anon_sym_SLASH] = ACTIONS(4097), + [anon_sym_PERCENT] = ACTIONS(4099), + [anon_sym_as_QMARK] = ACTIONS(4099), + [anon_sym_PLUS_PLUS] = ACTIONS(4099), + [anon_sym_DASH_DASH] = ACTIONS(4099), + [anon_sym_BANG_BANG] = ACTIONS(4099), + [anon_sym_suspend] = ACTIONS(4097), + [anon_sym_sealed] = ACTIONS(4097), + [anon_sym_annotation] = ACTIONS(4097), + [anon_sym_data] = ACTIONS(4097), + [anon_sym_inner] = ACTIONS(4097), + [anon_sym_value] = ACTIONS(4097), + [anon_sym_override] = ACTIONS(4097), + [anon_sym_lateinit] = ACTIONS(4097), + [anon_sym_public] = ACTIONS(4097), + [anon_sym_private] = ACTIONS(4097), + [anon_sym_internal] = ACTIONS(4097), + [anon_sym_protected] = ACTIONS(4097), + [anon_sym_tailrec] = ACTIONS(4097), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_infix] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym_external] = ACTIONS(4097), + [sym_property_modifier] = ACTIONS(4097), + [anon_sym_abstract] = ACTIONS(4097), + [anon_sym_final] = ACTIONS(4097), + [anon_sym_open] = ACTIONS(4097), + [anon_sym_vararg] = ACTIONS(4097), + [anon_sym_noinline] = ACTIONS(4097), + [anon_sym_crossinline] = ACTIONS(4097), + [anon_sym_expect] = ACTIONS(4097), + [anon_sym_actual] = ACTIONS(4097), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4099), + [sym__automatic_semicolon] = ACTIONS(4099), + [sym_safe_nav] = ACTIONS(4099), [sym_multiline_comment] = ACTIONS(3), }, [4243] = { - [sym_function_body] = STATE(3897), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4327), - [anon_sym_AT] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4329), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_as] = ACTIONS(4327), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4329), - [anon_sym_LPAREN] = ACTIONS(4329), - [anon_sym_LT] = ACTIONS(4327), - [anon_sym_GT] = ACTIONS(4327), - [anon_sym_SEMI] = ACTIONS(4329), - [anon_sym_get] = ACTIONS(4327), - [anon_sym_set] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4329), - [sym_label] = ACTIONS(4329), - [anon_sym_in] = ACTIONS(4327), - [anon_sym_DOT_DOT] = ACTIONS(4329), - [anon_sym_QMARK_COLON] = ACTIONS(4329), - [anon_sym_AMP_AMP] = ACTIONS(4329), - [anon_sym_PIPE_PIPE] = ACTIONS(4329), - [anon_sym_else] = ACTIONS(4327), - [anon_sym_COLON_COLON] = ACTIONS(4329), - [anon_sym_BANG_EQ] = ACTIONS(4327), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4329), - [anon_sym_EQ_EQ] = ACTIONS(4327), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4329), - [anon_sym_LT_EQ] = ACTIONS(4329), - [anon_sym_GT_EQ] = ACTIONS(4329), - [anon_sym_BANGin] = ACTIONS(4329), - [anon_sym_is] = ACTIONS(4327), - [anon_sym_BANGis] = ACTIONS(4329), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_SLASH] = ACTIONS(4327), - [anon_sym_PERCENT] = ACTIONS(4329), - [anon_sym_as_QMARK] = ACTIONS(4329), - [anon_sym_PLUS_PLUS] = ACTIONS(4329), - [anon_sym_DASH_DASH] = ACTIONS(4329), - [anon_sym_BANG_BANG] = ACTIONS(4329), - [anon_sym_suspend] = ACTIONS(4327), - [anon_sym_sealed] = ACTIONS(4327), - [anon_sym_annotation] = ACTIONS(4327), - [anon_sym_data] = ACTIONS(4327), - [anon_sym_inner] = ACTIONS(4327), - [anon_sym_value] = ACTIONS(4327), - [anon_sym_override] = ACTIONS(4327), - [anon_sym_lateinit] = ACTIONS(4327), - [anon_sym_public] = ACTIONS(4327), - [anon_sym_private] = ACTIONS(4327), - [anon_sym_internal] = ACTIONS(4327), - [anon_sym_protected] = ACTIONS(4327), - [anon_sym_tailrec] = ACTIONS(4327), - [anon_sym_operator] = ACTIONS(4327), - [anon_sym_infix] = ACTIONS(4327), - [anon_sym_inline] = ACTIONS(4327), - [anon_sym_external] = ACTIONS(4327), - [sym_property_modifier] = ACTIONS(4327), - [anon_sym_abstract] = ACTIONS(4327), - [anon_sym_final] = ACTIONS(4327), - [anon_sym_open] = ACTIONS(4327), - [anon_sym_vararg] = ACTIONS(4327), - [anon_sym_noinline] = ACTIONS(4327), - [anon_sym_crossinline] = ACTIONS(4327), - [anon_sym_expect] = ACTIONS(4327), - [anon_sym_actual] = ACTIONS(4327), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4329), - [sym__automatic_semicolon] = ACTIONS(4329), - [sym_safe_nav] = ACTIONS(4329), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3044), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(7424), + [anon_sym_PIPE_PIPE] = ACTIONS(7426), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4244] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(7474), - [anon_sym_PIPE_PIPE] = ACTIONS(7476), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3187), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3137), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(7424), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7430), + [anon_sym_EQ_EQ] = ACTIONS(7428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7430), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4245] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3129), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(7474), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_where] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4246] = { - [sym_function_body] = STATE(3841), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4156), - [anon_sym_AT] = ACTIONS(4158), - [anon_sym_LBRACK] = ACTIONS(4158), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_as] = ACTIONS(4156), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(4158), - [anon_sym_LT] = ACTIONS(4156), - [anon_sym_GT] = 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_value] = 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_function_body] = STATE(3828), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4443), + [anon_sym_AT] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_as] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_LT] = ACTIONS(4443), + [anon_sym_GT] = ACTIONS(4443), + [anon_sym_SEMI] = ACTIONS(4445), + [anon_sym_get] = ACTIONS(4443), + [anon_sym_set] = ACTIONS(4443), + [anon_sym_STAR] = ACTIONS(4445), + [sym_label] = ACTIONS(4445), + [anon_sym_in] = ACTIONS(4443), + [anon_sym_DOT_DOT] = ACTIONS(4445), + [anon_sym_QMARK_COLON] = ACTIONS(4445), + [anon_sym_AMP_AMP] = ACTIONS(4445), + [anon_sym_PIPE_PIPE] = ACTIONS(4445), + [anon_sym_else] = ACTIONS(4443), + [anon_sym_COLON_COLON] = ACTIONS(4445), + [anon_sym_BANG_EQ] = ACTIONS(4443), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4445), + [anon_sym_EQ_EQ] = ACTIONS(4443), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4445), + [anon_sym_LT_EQ] = ACTIONS(4445), + [anon_sym_GT_EQ] = ACTIONS(4445), + [anon_sym_BANGin] = ACTIONS(4445), + [anon_sym_is] = ACTIONS(4443), + [anon_sym_BANGis] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4443), + [anon_sym_DASH] = ACTIONS(4443), + [anon_sym_SLASH] = ACTIONS(4443), + [anon_sym_PERCENT] = ACTIONS(4445), + [anon_sym_as_QMARK] = ACTIONS(4445), + [anon_sym_PLUS_PLUS] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4445), + [anon_sym_BANG_BANG] = ACTIONS(4445), + [anon_sym_suspend] = ACTIONS(4443), + [anon_sym_sealed] = ACTIONS(4443), + [anon_sym_annotation] = ACTIONS(4443), + [anon_sym_data] = ACTIONS(4443), + [anon_sym_inner] = ACTIONS(4443), + [anon_sym_value] = ACTIONS(4443), + [anon_sym_override] = ACTIONS(4443), + [anon_sym_lateinit] = ACTIONS(4443), + [anon_sym_public] = ACTIONS(4443), + [anon_sym_private] = ACTIONS(4443), + [anon_sym_internal] = ACTIONS(4443), + [anon_sym_protected] = ACTIONS(4443), + [anon_sym_tailrec] = ACTIONS(4443), + [anon_sym_operator] = ACTIONS(4443), + [anon_sym_infix] = ACTIONS(4443), + [anon_sym_inline] = ACTIONS(4443), + [anon_sym_external] = ACTIONS(4443), + [sym_property_modifier] = ACTIONS(4443), + [anon_sym_abstract] = ACTIONS(4443), + [anon_sym_final] = ACTIONS(4443), + [anon_sym_open] = ACTIONS(4443), + [anon_sym_vararg] = ACTIONS(4443), + [anon_sym_noinline] = ACTIONS(4443), + [anon_sym_crossinline] = ACTIONS(4443), + [anon_sym_expect] = ACTIONS(4443), + [anon_sym_actual] = ACTIONS(4443), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4445), + [sym__automatic_semicolon] = ACTIONS(4445), + [sym_safe_nav] = ACTIONS(4445), [sym_multiline_comment] = ACTIONS(3), }, [4247] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_where] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4248] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(7474), - [anon_sym_PIPE_PIPE] = ACTIONS(7476), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7420), + [anon_sym_where] = ACTIONS(3084), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(7432), + [anon_sym_GT_EQ] = ACTIONS(7432), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4249] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(7474), - [anon_sym_PIPE_PIPE] = ACTIONS(7476), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(7053), + [sym_function_body] = STATE(3826), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4077), + [anon_sym_AT] = ACTIONS(4079), + [anon_sym_LBRACK] = ACTIONS(4079), + [anon_sym_DOT] = ACTIONS(4077), + [anon_sym_as] = ACTIONS(4077), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4079), + [anon_sym_LPAREN] = ACTIONS(4079), + [anon_sym_LT] = ACTIONS(4077), + [anon_sym_GT] = ACTIONS(4077), + [anon_sym_SEMI] = ACTIONS(4079), + [anon_sym_get] = ACTIONS(4077), + [anon_sym_set] = ACTIONS(4077), + [anon_sym_STAR] = ACTIONS(4079), + [sym_label] = ACTIONS(4079), + [anon_sym_in] = ACTIONS(4077), + [anon_sym_DOT_DOT] = ACTIONS(4079), + [anon_sym_QMARK_COLON] = ACTIONS(4079), + [anon_sym_AMP_AMP] = ACTIONS(4079), + [anon_sym_PIPE_PIPE] = ACTIONS(4079), + [anon_sym_else] = ACTIONS(4077), + [anon_sym_COLON_COLON] = ACTIONS(4079), + [anon_sym_BANG_EQ] = ACTIONS(4077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4079), + [anon_sym_EQ_EQ] = ACTIONS(4077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4079), + [anon_sym_LT_EQ] = ACTIONS(4079), + [anon_sym_GT_EQ] = ACTIONS(4079), + [anon_sym_BANGin] = ACTIONS(4079), + [anon_sym_is] = ACTIONS(4077), + [anon_sym_BANGis] = ACTIONS(4079), + [anon_sym_PLUS] = ACTIONS(4077), + [anon_sym_DASH] = ACTIONS(4077), + [anon_sym_SLASH] = ACTIONS(4077), + [anon_sym_PERCENT] = ACTIONS(4079), + [anon_sym_as_QMARK] = ACTIONS(4079), + [anon_sym_PLUS_PLUS] = ACTIONS(4079), + [anon_sym_DASH_DASH] = ACTIONS(4079), + [anon_sym_BANG_BANG] = ACTIONS(4079), + [anon_sym_suspend] = ACTIONS(4077), + [anon_sym_sealed] = ACTIONS(4077), + [anon_sym_annotation] = ACTIONS(4077), + [anon_sym_data] = ACTIONS(4077), + [anon_sym_inner] = ACTIONS(4077), + [anon_sym_value] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4077), + [anon_sym_lateinit] = ACTIONS(4077), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_internal] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_tailrec] = ACTIONS(4077), + [anon_sym_operator] = ACTIONS(4077), + [anon_sym_infix] = ACTIONS(4077), + [anon_sym_inline] = ACTIONS(4077), + [anon_sym_external] = ACTIONS(4077), + [sym_property_modifier] = ACTIONS(4077), + [anon_sym_abstract] = ACTIONS(4077), + [anon_sym_final] = ACTIONS(4077), + [anon_sym_open] = ACTIONS(4077), + [anon_sym_vararg] = ACTIONS(4077), + [anon_sym_noinline] = ACTIONS(4077), + [anon_sym_crossinline] = ACTIONS(4077), + [anon_sym_expect] = ACTIONS(4077), + [anon_sym_actual] = ACTIONS(4077), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4079), + [sym__automatic_semicolon] = ACTIONS(4079), + [sym_safe_nav] = ACTIONS(4079), [sym_multiline_comment] = ACTIONS(3), }, [4250] = { - [sym_function_body] = STATE(3985), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4175), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_LBRACK] = ACTIONS(4177), - [anon_sym_DOT] = ACTIONS(4175), - [anon_sym_as] = ACTIONS(4175), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_LT] = ACTIONS(4175), - [anon_sym_GT] = ACTIONS(4175), - [anon_sym_SEMI] = ACTIONS(4177), - [anon_sym_get] = ACTIONS(4175), - [anon_sym_set] = ACTIONS(4175), - [anon_sym_STAR] = ACTIONS(4177), - [sym_label] = ACTIONS(4177), - [anon_sym_in] = ACTIONS(4175), - [anon_sym_DOT_DOT] = ACTIONS(4177), - [anon_sym_QMARK_COLON] = ACTIONS(4177), - [anon_sym_AMP_AMP] = ACTIONS(4177), - [anon_sym_PIPE_PIPE] = ACTIONS(4177), - [anon_sym_else] = ACTIONS(4175), - [anon_sym_COLON_COLON] = ACTIONS(4177), - [anon_sym_BANG_EQ] = ACTIONS(4175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4177), - [anon_sym_EQ_EQ] = ACTIONS(4175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4177), - [anon_sym_LT_EQ] = ACTIONS(4177), - [anon_sym_GT_EQ] = ACTIONS(4177), - [anon_sym_BANGin] = ACTIONS(4177), - [anon_sym_is] = ACTIONS(4175), - [anon_sym_BANGis] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4175), - [anon_sym_DASH] = ACTIONS(4175), - [anon_sym_SLASH] = ACTIONS(4175), - [anon_sym_PERCENT] = ACTIONS(4177), - [anon_sym_as_QMARK] = ACTIONS(4177), - [anon_sym_PLUS_PLUS] = ACTIONS(4177), - [anon_sym_DASH_DASH] = ACTIONS(4177), - [anon_sym_BANG_BANG] = ACTIONS(4177), - [anon_sym_suspend] = ACTIONS(4175), - [anon_sym_sealed] = ACTIONS(4175), - [anon_sym_annotation] = ACTIONS(4175), - [anon_sym_data] = ACTIONS(4175), - [anon_sym_inner] = ACTIONS(4175), - [anon_sym_value] = ACTIONS(4175), - [anon_sym_override] = ACTIONS(4175), - [anon_sym_lateinit] = ACTIONS(4175), - [anon_sym_public] = ACTIONS(4175), - [anon_sym_private] = ACTIONS(4175), - [anon_sym_internal] = ACTIONS(4175), - [anon_sym_protected] = ACTIONS(4175), - [anon_sym_tailrec] = ACTIONS(4175), - [anon_sym_operator] = ACTIONS(4175), - [anon_sym_infix] = ACTIONS(4175), - [anon_sym_inline] = ACTIONS(4175), - [anon_sym_external] = ACTIONS(4175), - [sym_property_modifier] = ACTIONS(4175), - [anon_sym_abstract] = ACTIONS(4175), - [anon_sym_final] = ACTIONS(4175), - [anon_sym_open] = ACTIONS(4175), - [anon_sym_vararg] = ACTIONS(4175), - [anon_sym_noinline] = ACTIONS(4175), - [anon_sym_crossinline] = ACTIONS(4175), - [anon_sym_expect] = ACTIONS(4175), - [anon_sym_actual] = ACTIONS(4175), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4177), - [sym__automatic_semicolon] = ACTIONS(4177), - [sym_safe_nav] = ACTIONS(4177), + [sym__alpha_identifier] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4349), + [anon_sym_LBRACK] = ACTIONS(4349), + [anon_sym_DOT] = ACTIONS(4347), + [anon_sym_as] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_LPAREN] = ACTIONS(4349), + [anon_sym_COMMA] = ACTIONS(4349), + [anon_sym_by] = ACTIONS(7400), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [sym_label] = ACTIONS(4349), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_DOT_DOT] = ACTIONS(4349), + [anon_sym_QMARK_COLON] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_PIPE_PIPE] = ACTIONS(4349), + [anon_sym_else] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_BANG_EQ] = ACTIONS(4347), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4349), + [anon_sym_EQ_EQ] = ACTIONS(4347), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4349), + [anon_sym_LT_EQ] = ACTIONS(4349), + [anon_sym_GT_EQ] = ACTIONS(4349), + [anon_sym_BANGin] = ACTIONS(4349), + [anon_sym_is] = ACTIONS(4347), + [anon_sym_BANGis] = ACTIONS(4349), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_PERCENT] = ACTIONS(4349), + [anon_sym_as_QMARK] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_BANG_BANG] = ACTIONS(4349), + [anon_sym_suspend] = ACTIONS(4347), + [anon_sym_sealed] = ACTIONS(4347), + [anon_sym_annotation] = ACTIONS(4347), + [anon_sym_data] = ACTIONS(4347), + [anon_sym_inner] = ACTIONS(4347), + [anon_sym_value] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_lateinit] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_internal] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_tailrec] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_infix] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym_external] = ACTIONS(4347), + [sym_property_modifier] = ACTIONS(4347), + [anon_sym_abstract] = ACTIONS(4347), + [anon_sym_final] = ACTIONS(4347), + [anon_sym_open] = ACTIONS(4347), + [anon_sym_vararg] = ACTIONS(4347), + [anon_sym_noinline] = ACTIONS(4347), + [anon_sym_crossinline] = ACTIONS(4347), + [anon_sym_expect] = ACTIONS(4347), + [anon_sym_actual] = ACTIONS(4347), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4349), + [sym__automatic_semicolon] = ACTIONS(4349), + [sym_safe_nav] = ACTIONS(4349), [sym_multiline_comment] = ACTIONS(3), }, [4251] = { - [aux_sym__delegation_specifiers_repeat1] = STATE(4225), - [sym__alpha_identifier] = ACTIONS(4539), - [anon_sym_AT] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4541), - [anon_sym_DOT] = ACTIONS(4539), - [anon_sym_as] = ACTIONS(4539), - [anon_sym_LBRACE] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(7493), - [anon_sym_LT] = ACTIONS(4539), - [anon_sym_GT] = ACTIONS(4539), - [anon_sym_where] = ACTIONS(4539), - [anon_sym_SEMI] = ACTIONS(4541), - [anon_sym_get] = ACTIONS(4539), - [anon_sym_set] = ACTIONS(4539), - [anon_sym_STAR] = ACTIONS(4541), - [sym_label] = ACTIONS(4541), - [anon_sym_in] = ACTIONS(4539), - [anon_sym_DOT_DOT] = ACTIONS(4541), - [anon_sym_QMARK_COLON] = ACTIONS(4541), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE_PIPE] = ACTIONS(4541), - [anon_sym_else] = ACTIONS(4539), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym_BANG_EQ] = ACTIONS(4539), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4541), - [anon_sym_EQ_EQ] = ACTIONS(4539), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4541), - [anon_sym_LT_EQ] = ACTIONS(4541), - [anon_sym_GT_EQ] = ACTIONS(4541), - [anon_sym_BANGin] = ACTIONS(4541), - [anon_sym_is] = ACTIONS(4539), - [anon_sym_BANGis] = ACTIONS(4541), - [anon_sym_PLUS] = ACTIONS(4539), - [anon_sym_DASH] = ACTIONS(4539), - [anon_sym_SLASH] = ACTIONS(4539), - [anon_sym_PERCENT] = ACTIONS(4541), - [anon_sym_as_QMARK] = ACTIONS(4541), - [anon_sym_PLUS_PLUS] = ACTIONS(4541), - [anon_sym_DASH_DASH] = ACTIONS(4541), - [anon_sym_BANG_BANG] = ACTIONS(4541), - [anon_sym_suspend] = ACTIONS(4539), - [anon_sym_sealed] = ACTIONS(4539), - [anon_sym_annotation] = ACTIONS(4539), - [anon_sym_data] = ACTIONS(4539), - [anon_sym_inner] = ACTIONS(4539), - [anon_sym_value] = ACTIONS(4539), - [anon_sym_override] = ACTIONS(4539), - [anon_sym_lateinit] = ACTIONS(4539), - [anon_sym_public] = ACTIONS(4539), - [anon_sym_private] = ACTIONS(4539), - [anon_sym_internal] = ACTIONS(4539), - [anon_sym_protected] = ACTIONS(4539), - [anon_sym_tailrec] = ACTIONS(4539), - [anon_sym_operator] = ACTIONS(4539), - [anon_sym_infix] = ACTIONS(4539), - [anon_sym_inline] = ACTIONS(4539), - [anon_sym_external] = ACTIONS(4539), - [sym_property_modifier] = ACTIONS(4539), - [anon_sym_abstract] = ACTIONS(4539), - [anon_sym_final] = ACTIONS(4539), - [anon_sym_open] = ACTIONS(4539), - [anon_sym_vararg] = ACTIONS(4539), - [anon_sym_noinline] = ACTIONS(4539), - [anon_sym_crossinline] = ACTIONS(4539), - [anon_sym_expect] = ACTIONS(4539), - [anon_sym_actual] = ACTIONS(4539), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4541), - [sym__automatic_semicolon] = ACTIONS(4541), - [sym_safe_nav] = ACTIONS(4541), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_where] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7422), + [anon_sym_DOT_DOT] = ACTIONS(7412), + [anon_sym_QMARK_COLON] = ACTIONS(7414), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(7434), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7416), + [anon_sym_DASH] = ACTIONS(7416), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4252] = { - [sym__alpha_identifier] = ACTIONS(4493), - [anon_sym_AT] = ACTIONS(4495), - [anon_sym_LBRACK] = ACTIONS(4495), - [anon_sym_DOT] = ACTIONS(4493), - [anon_sym_as] = ACTIONS(4493), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_RBRACE] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym_COMMA] = ACTIONS(4495), - [anon_sym_by] = ACTIONS(7444), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_where] = ACTIONS(4493), - [anon_sym_SEMI] = ACTIONS(4495), - [anon_sym_get] = ACTIONS(4493), - [anon_sym_set] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4495), - [sym_label] = ACTIONS(4495), - [anon_sym_in] = ACTIONS(4493), - [anon_sym_DOT_DOT] = ACTIONS(4495), - [anon_sym_QMARK_COLON] = ACTIONS(4495), - [anon_sym_AMP_AMP] = ACTIONS(4495), - [anon_sym_PIPE_PIPE] = ACTIONS(4495), - [anon_sym_else] = ACTIONS(4493), - [anon_sym_COLON_COLON] = ACTIONS(4495), - [anon_sym_BANG_EQ] = ACTIONS(4493), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4495), - [anon_sym_EQ_EQ] = ACTIONS(4493), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4495), - [anon_sym_LT_EQ] = ACTIONS(4495), - [anon_sym_GT_EQ] = ACTIONS(4495), - [anon_sym_BANGin] = ACTIONS(4495), - [anon_sym_is] = ACTIONS(4493), - [anon_sym_BANGis] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_PERCENT] = ACTIONS(4495), - [anon_sym_as_QMARK] = ACTIONS(4495), - [anon_sym_PLUS_PLUS] = ACTIONS(4495), - [anon_sym_DASH_DASH] = ACTIONS(4495), - [anon_sym_BANG_BANG] = ACTIONS(4495), - [anon_sym_suspend] = ACTIONS(4493), - [anon_sym_sealed] = ACTIONS(4493), - [anon_sym_annotation] = ACTIONS(4493), - [anon_sym_data] = ACTIONS(4493), - [anon_sym_inner] = ACTIONS(4493), - [anon_sym_value] = ACTIONS(4493), - [anon_sym_override] = ACTIONS(4493), - [anon_sym_lateinit] = ACTIONS(4493), - [anon_sym_public] = ACTIONS(4493), - [anon_sym_private] = ACTIONS(4493), - [anon_sym_internal] = ACTIONS(4493), - [anon_sym_protected] = ACTIONS(4493), - [anon_sym_tailrec] = ACTIONS(4493), - [anon_sym_operator] = ACTIONS(4493), - [anon_sym_infix] = ACTIONS(4493), - [anon_sym_inline] = ACTIONS(4493), - [anon_sym_external] = ACTIONS(4493), - [sym_property_modifier] = ACTIONS(4493), - [anon_sym_abstract] = ACTIONS(4493), - [anon_sym_final] = ACTIONS(4493), - [anon_sym_open] = ACTIONS(4493), - [anon_sym_vararg] = ACTIONS(4493), - [anon_sym_noinline] = ACTIONS(4493), - [anon_sym_crossinline] = ACTIONS(4493), - [anon_sym_expect] = ACTIONS(4493), - [anon_sym_actual] = ACTIONS(4493), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4495), - [sym__automatic_semicolon] = ACTIONS(4495), - [sym_safe_nav] = ACTIONS(4495), + [sym_function_body] = STATE(3951), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4087), + [anon_sym_AT] = ACTIONS(4089), + [anon_sym_LBRACK] = ACTIONS(4089), + [anon_sym_DOT] = ACTIONS(4087), + [anon_sym_as] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4089), + [anon_sym_LPAREN] = ACTIONS(4089), + [anon_sym_LT] = ACTIONS(4087), + [anon_sym_GT] = ACTIONS(4087), + [anon_sym_SEMI] = ACTIONS(4089), + [anon_sym_get] = ACTIONS(4087), + [anon_sym_set] = ACTIONS(4087), + [anon_sym_STAR] = ACTIONS(4089), + [sym_label] = ACTIONS(4089), + [anon_sym_in] = ACTIONS(4087), + [anon_sym_DOT_DOT] = ACTIONS(4089), + [anon_sym_QMARK_COLON] = ACTIONS(4089), + [anon_sym_AMP_AMP] = ACTIONS(4089), + [anon_sym_PIPE_PIPE] = ACTIONS(4089), + [anon_sym_else] = ACTIONS(4087), + [anon_sym_COLON_COLON] = ACTIONS(4089), + [anon_sym_BANG_EQ] = ACTIONS(4087), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4089), + [anon_sym_EQ_EQ] = ACTIONS(4087), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4089), + [anon_sym_LT_EQ] = ACTIONS(4089), + [anon_sym_GT_EQ] = ACTIONS(4089), + [anon_sym_BANGin] = ACTIONS(4089), + [anon_sym_is] = ACTIONS(4087), + [anon_sym_BANGis] = ACTIONS(4089), + [anon_sym_PLUS] = ACTIONS(4087), + [anon_sym_DASH] = ACTIONS(4087), + [anon_sym_SLASH] = ACTIONS(4087), + [anon_sym_PERCENT] = ACTIONS(4089), + [anon_sym_as_QMARK] = ACTIONS(4089), + [anon_sym_PLUS_PLUS] = ACTIONS(4089), + [anon_sym_DASH_DASH] = ACTIONS(4089), + [anon_sym_BANG_BANG] = ACTIONS(4089), + [anon_sym_suspend] = ACTIONS(4087), + [anon_sym_sealed] = ACTIONS(4087), + [anon_sym_annotation] = ACTIONS(4087), + [anon_sym_data] = ACTIONS(4087), + [anon_sym_inner] = ACTIONS(4087), + [anon_sym_value] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4087), + [anon_sym_lateinit] = ACTIONS(4087), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_internal] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_tailrec] = ACTIONS(4087), + [anon_sym_operator] = ACTIONS(4087), + [anon_sym_infix] = ACTIONS(4087), + [anon_sym_inline] = ACTIONS(4087), + [anon_sym_external] = ACTIONS(4087), + [sym_property_modifier] = ACTIONS(4087), + [anon_sym_abstract] = ACTIONS(4087), + [anon_sym_final] = ACTIONS(4087), + [anon_sym_open] = ACTIONS(4087), + [anon_sym_vararg] = ACTIONS(4087), + [anon_sym_noinline] = ACTIONS(4087), + [anon_sym_crossinline] = ACTIONS(4087), + [anon_sym_expect] = ACTIONS(4087), + [anon_sym_actual] = ACTIONS(4087), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4089), + [sym__automatic_semicolon] = ACTIONS(4089), + [sym_safe_nav] = ACTIONS(4089), [sym_multiline_comment] = ACTIONS(3), }, [4253] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(7474), - [anon_sym_PIPE_PIPE] = ACTIONS(7476), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(7053), + [sym_function_body] = STATE(3991), + [sym__block] = STATE(3874), + [sym__alpha_identifier] = ACTIONS(4451), + [anon_sym_AT] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_DOT] = ACTIONS(4451), + [anon_sym_as] = ACTIONS(4451), + [anon_sym_EQ] = ACTIONS(7273), + [anon_sym_LBRACE] = ACTIONS(6648), + [anon_sym_RBRACE] = ACTIONS(4453), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_SEMI] = ACTIONS(4453), + [anon_sym_get] = ACTIONS(4451), + [anon_sym_set] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4453), + [sym_label] = ACTIONS(4453), + [anon_sym_in] = ACTIONS(4451), + [anon_sym_DOT_DOT] = ACTIONS(4453), + [anon_sym_QMARK_COLON] = ACTIONS(4453), + [anon_sym_AMP_AMP] = ACTIONS(4453), + [anon_sym_PIPE_PIPE] = ACTIONS(4453), + [anon_sym_else] = ACTIONS(4451), + [anon_sym_COLON_COLON] = ACTIONS(4453), + [anon_sym_BANG_EQ] = ACTIONS(4451), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4453), + [anon_sym_EQ_EQ] = ACTIONS(4451), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4453), + [anon_sym_LT_EQ] = ACTIONS(4453), + [anon_sym_GT_EQ] = ACTIONS(4453), + [anon_sym_BANGin] = ACTIONS(4453), + [anon_sym_is] = ACTIONS(4451), + [anon_sym_BANGis] = ACTIONS(4453), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_PERCENT] = ACTIONS(4453), + [anon_sym_as_QMARK] = ACTIONS(4453), + [anon_sym_PLUS_PLUS] = ACTIONS(4453), + [anon_sym_DASH_DASH] = ACTIONS(4453), + [anon_sym_BANG_BANG] = ACTIONS(4453), + [anon_sym_suspend] = ACTIONS(4451), + [anon_sym_sealed] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4451), + [anon_sym_data] = ACTIONS(4451), + [anon_sym_inner] = ACTIONS(4451), + [anon_sym_value] = ACTIONS(4451), + [anon_sym_override] = ACTIONS(4451), + [anon_sym_lateinit] = ACTIONS(4451), + [anon_sym_public] = ACTIONS(4451), + [anon_sym_private] = ACTIONS(4451), + [anon_sym_internal] = ACTIONS(4451), + [anon_sym_protected] = ACTIONS(4451), + [anon_sym_tailrec] = ACTIONS(4451), + [anon_sym_operator] = ACTIONS(4451), + [anon_sym_infix] = ACTIONS(4451), + [anon_sym_inline] = ACTIONS(4451), + [anon_sym_external] = ACTIONS(4451), + [sym_property_modifier] = ACTIONS(4451), + [anon_sym_abstract] = ACTIONS(4451), + [anon_sym_final] = ACTIONS(4451), + [anon_sym_open] = ACTIONS(4451), + [anon_sym_vararg] = ACTIONS(4451), + [anon_sym_noinline] = ACTIONS(4451), + [anon_sym_crossinline] = ACTIONS(4451), + [anon_sym_expect] = ACTIONS(4451), + [anon_sym_actual] = ACTIONS(4451), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4453), + [sym__automatic_semicolon] = ACTIONS(4453), + [sym_safe_nav] = ACTIONS(4453), [sym_multiline_comment] = ACTIONS(3), }, [4254] = { - [sym_function_body] = STATE(3889), - [sym__block] = STATE(3975), - [sym__alpha_identifier] = ACTIONS(4150), - [anon_sym_AT] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_DOT] = ACTIONS(4150), - [anon_sym_as] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(6759), - [anon_sym_RBRACE] = ACTIONS(4152), - [anon_sym_LPAREN] = ACTIONS(4152), - [anon_sym_LT] = ACTIONS(4150), - [anon_sym_GT] = 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_value] = 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_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1793), + [sym__comparison_operator] = STATE(1761), + [sym__in_operator] = STATE(1758), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1757), + [sym__multiplicative_operator] = STATE(1752), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1751), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_COMMA] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_where] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3143), + [anon_sym_get] = ACTIONS(3141), + [anon_sym_set] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(7410), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3143), + [anon_sym_QMARK_COLON] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3143), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_BANGin] = ACTIONS(3143), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3143), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(7418), + [anon_sym_PERCENT] = ACTIONS(7410), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3141), + [anon_sym_inner] = ACTIONS(3141), + [anon_sym_value] = ACTIONS(3141), + [anon_sym_expect] = ACTIONS(3141), + [anon_sym_actual] = ACTIONS(3141), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3143), + [sym__automatic_semicolon] = ACTIONS(3143), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4255] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1511), - [sym__comparison_operator] = STATE(1509), - [sym__in_operator] = STATE(1507), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1506), - [sym__multiplicative_operator] = STATE(1501), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1497), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_COMMA] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7464), - [anon_sym_where] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7466), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7468), - [anon_sym_DOT_DOT] = ACTIONS(7470), - [anon_sym_QMARK_COLON] = ACTIONS(7472), - [anon_sym_AMP_AMP] = ACTIONS(7474), - [anon_sym_PIPE_PIPE] = ACTIONS(7476), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7478), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7480), - [anon_sym_EQ_EQ] = ACTIONS(7478), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7480), - [anon_sym_LT_EQ] = ACTIONS(7482), - [anon_sym_GT_EQ] = ACTIONS(7482), - [anon_sym_BANGin] = ACTIONS(7484), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [anon_sym_SLASH] = ACTIONS(7488), - [anon_sym_PERCENT] = ACTIONS(7466), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(7053), + [sym_class_body] = STATE(3513), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(7443), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(5444), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_RPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_while] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), [sym_multiline_comment] = ACTIONS(3), }, [4256] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3129), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4257] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7521), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_where] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4240), - [sym_label] = ACTIONS(4240), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(7451), + [anon_sym_COMMA] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_where] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), [sym_multiline_comment] = ACTIONS(3), }, [4258] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3044), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4259] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4260] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3121), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_class_body] = STATE(3928), + [sym__alpha_identifier] = ACTIONS(4325), + [anon_sym_AT] = ACTIONS(4327), + [anon_sym_COLON] = ACTIONS(7473), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4325), + [anon_sym_as] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_LPAREN] = ACTIONS(4327), + [anon_sym_LT] = ACTIONS(4325), + [anon_sym_GT] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym_get] = ACTIONS(4325), + [anon_sym_set] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [sym_label] = ACTIONS(4327), + [anon_sym_in] = ACTIONS(4325), + [anon_sym_DOT_DOT] = ACTIONS(4327), + [anon_sym_QMARK_COLON] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_PIPE_PIPE] = ACTIONS(4327), + [anon_sym_else] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_BANG_EQ] = ACTIONS(4325), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4327), + [anon_sym_EQ_EQ] = ACTIONS(4325), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4327), + [anon_sym_LT_EQ] = ACTIONS(4327), + [anon_sym_GT_EQ] = ACTIONS(4327), + [anon_sym_BANGin] = ACTIONS(4327), + [anon_sym_is] = ACTIONS(4325), + [anon_sym_BANGis] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_SLASH] = ACTIONS(4325), + [anon_sym_PERCENT] = ACTIONS(4327), + [anon_sym_as_QMARK] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_BANG_BANG] = ACTIONS(4327), + [anon_sym_suspend] = ACTIONS(4325), + [anon_sym_sealed] = ACTIONS(4325), + [anon_sym_annotation] = ACTIONS(4325), + [anon_sym_data] = ACTIONS(4325), + [anon_sym_inner] = ACTIONS(4325), + [anon_sym_value] = ACTIONS(4325), + [anon_sym_override] = ACTIONS(4325), + [anon_sym_lateinit] = ACTIONS(4325), + [anon_sym_public] = ACTIONS(4325), + [anon_sym_private] = ACTIONS(4325), + [anon_sym_internal] = ACTIONS(4325), + [anon_sym_protected] = ACTIONS(4325), + [anon_sym_tailrec] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_infix] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym_external] = ACTIONS(4325), + [sym_property_modifier] = ACTIONS(4325), + [anon_sym_abstract] = ACTIONS(4325), + [anon_sym_final] = ACTIONS(4325), + [anon_sym_open] = ACTIONS(4325), + [anon_sym_vararg] = ACTIONS(4325), + [anon_sym_noinline] = ACTIONS(4325), + [anon_sym_crossinline] = ACTIONS(4325), + [anon_sym_expect] = ACTIONS(4325), + [anon_sym_actual] = ACTIONS(4325), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4327), + [sym__automatic_semicolon] = ACTIONS(4327), + [sym_safe_nav] = ACTIONS(4327), [sym_multiline_comment] = ACTIONS(3), }, [4261] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3189), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_while] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4262] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3125), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4263] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4264] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3133), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4265] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4266] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4267] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4268] = { - [sym_class_body] = STATE(3864), - [sym__alpha_identifier] = ACTIONS(4405), - [anon_sym_AT] = ACTIONS(4407), - [anon_sym_COLON] = ACTIONS(7525), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_DOT] = ACTIONS(4405), - [anon_sym_as] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_LT] = ACTIONS(4405), - [anon_sym_GT] = ACTIONS(4405), - [anon_sym_SEMI] = ACTIONS(4407), - [anon_sym_get] = ACTIONS(4405), - [anon_sym_set] = ACTIONS(4405), - [anon_sym_STAR] = ACTIONS(4407), - [sym_label] = ACTIONS(4407), - [anon_sym_in] = ACTIONS(4405), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_QMARK_COLON] = ACTIONS(4407), - [anon_sym_AMP_AMP] = ACTIONS(4407), - [anon_sym_PIPE_PIPE] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4405), - [anon_sym_COLON_COLON] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4405), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4407), - [anon_sym_EQ_EQ] = ACTIONS(4405), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4407), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4407), - [anon_sym_BANGin] = ACTIONS(4407), - [anon_sym_is] = ACTIONS(4405), - [anon_sym_BANGis] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4405), - [anon_sym_DASH] = ACTIONS(4405), - [anon_sym_SLASH] = ACTIONS(4405), - [anon_sym_PERCENT] = ACTIONS(4407), - [anon_sym_as_QMARK] = ACTIONS(4407), - [anon_sym_PLUS_PLUS] = ACTIONS(4407), - [anon_sym_DASH_DASH] = ACTIONS(4407), - [anon_sym_BANG_BANG] = ACTIONS(4407), - [anon_sym_suspend] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_annotation] = ACTIONS(4405), - [anon_sym_data] = ACTIONS(4405), - [anon_sym_inner] = ACTIONS(4405), - [anon_sym_value] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_lateinit] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_tailrec] = ACTIONS(4405), - [anon_sym_operator] = ACTIONS(4405), - [anon_sym_infix] = ACTIONS(4405), - [anon_sym_inline] = ACTIONS(4405), - [anon_sym_external] = ACTIONS(4405), - [sym_property_modifier] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_final] = ACTIONS(4405), - [anon_sym_open] = ACTIONS(4405), - [anon_sym_vararg] = ACTIONS(4405), - [anon_sym_noinline] = ACTIONS(4405), - [anon_sym_crossinline] = ACTIONS(4405), - [anon_sym_expect] = ACTIONS(4405), - [anon_sym_actual] = ACTIONS(4405), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4407), - [sym__automatic_semicolon] = ACTIONS(4407), - [sym_safe_nav] = ACTIONS(4407), - [sym_multiline_comment] = ACTIONS(3), - }, - [4269] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7527), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), - [sym_multiline_comment] = ACTIONS(3), - }, - [4270] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3090), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4271] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(7529), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_where] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4272] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), + [4265] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(6709), + [anon_sym_LPAREN] = ACTIONS(6656), [anon_sym_RPAREN] = ACTIONS(3143), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), [anon_sym_SEMI] = ACTIONS(3143), [anon_sym_get] = ACTIONS(3141), [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), [anon_sym_in] = ACTIONS(3141), [anon_sym_while] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), @@ -462449,7 +462200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(6727), + [anon_sym_COLON_COLON] = ACTIONS(6674), [anon_sym_BANG_EQ] = ACTIONS(3141), [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), [anon_sym_EQ_EQ] = ACTIONS(3141), @@ -462461,12 +462212,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), [anon_sym_data] = ACTIONS(3141), [anon_sym_inner] = ACTIONS(3141), [anon_sym_value] = ACTIONS(3141), @@ -462474,2106 +462225,2770 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_actual] = ACTIONS(3141), [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(6727), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4266] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7475), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, + [4267] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4268] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3078), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3076), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4269] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4270] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3080), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4271] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4272] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4273] = { - [sym_class_body] = STATE(4030), - [sym__alpha_identifier] = ACTIONS(4377), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_COLON] = ACTIONS(7531), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_DOT] = ACTIONS(4377), - [anon_sym_as] = ACTIONS(4377), - [anon_sym_LBRACE] = ACTIONS(5812), - [anon_sym_RBRACE] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4377), - [anon_sym_GT] = ACTIONS(4377), - [anon_sym_SEMI] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4377), - [anon_sym_set] = ACTIONS(4377), - [anon_sym_STAR] = ACTIONS(4379), - [sym_label] = ACTIONS(4379), - [anon_sym_in] = ACTIONS(4377), - [anon_sym_DOT_DOT] = ACTIONS(4379), - [anon_sym_QMARK_COLON] = ACTIONS(4379), - [anon_sym_AMP_AMP] = ACTIONS(4379), - [anon_sym_PIPE_PIPE] = ACTIONS(4379), - [anon_sym_else] = ACTIONS(4377), - [anon_sym_COLON_COLON] = ACTIONS(4379), - [anon_sym_BANG_EQ] = ACTIONS(4377), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4379), - [anon_sym_EQ_EQ] = ACTIONS(4377), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4379), - [anon_sym_LT_EQ] = ACTIONS(4379), - [anon_sym_GT_EQ] = ACTIONS(4379), - [anon_sym_BANGin] = ACTIONS(4379), - [anon_sym_is] = ACTIONS(4377), - [anon_sym_BANGis] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4377), - [anon_sym_DASH] = ACTIONS(4377), - [anon_sym_SLASH] = ACTIONS(4377), - [anon_sym_PERCENT] = ACTIONS(4379), - [anon_sym_as_QMARK] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [anon_sym_BANG_BANG] = ACTIONS(4379), - [anon_sym_suspend] = ACTIONS(4377), - [anon_sym_sealed] = ACTIONS(4377), - [anon_sym_annotation] = ACTIONS(4377), - [anon_sym_data] = ACTIONS(4377), - [anon_sym_inner] = ACTIONS(4377), - [anon_sym_value] = ACTIONS(4377), - [anon_sym_override] = ACTIONS(4377), - [anon_sym_lateinit] = ACTIONS(4377), - [anon_sym_public] = ACTIONS(4377), - [anon_sym_private] = ACTIONS(4377), - [anon_sym_internal] = ACTIONS(4377), - [anon_sym_protected] = ACTIONS(4377), - [anon_sym_tailrec] = ACTIONS(4377), - [anon_sym_operator] = ACTIONS(4377), - [anon_sym_infix] = ACTIONS(4377), - [anon_sym_inline] = ACTIONS(4377), - [anon_sym_external] = ACTIONS(4377), - [sym_property_modifier] = ACTIONS(4377), - [anon_sym_abstract] = ACTIONS(4377), - [anon_sym_final] = ACTIONS(4377), - [anon_sym_open] = ACTIONS(4377), - [anon_sym_vararg] = ACTIONS(4377), - [anon_sym_noinline] = ACTIONS(4377), - [anon_sym_crossinline] = ACTIONS(4377), - [anon_sym_expect] = ACTIONS(4377), - [anon_sym_actual] = ACTIONS(4377), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4379), - [sym__automatic_semicolon] = ACTIONS(4379), - [sym_safe_nav] = ACTIONS(4379), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4274] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7533), - [anon_sym_COMMA] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4226), - [sym_label] = ACTIONS(4226), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3086), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4275] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_COMMA] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_where] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [sym_label] = ACTIONS(4846), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7477), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_where] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4220), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), }, [4276] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_COMMA] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_where] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(7479), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7475), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), [sym_multiline_comment] = ACTIONS(3), }, [4277] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(6727), + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7481), + [anon_sym_COMMA] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_where] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4188), + [sym_label] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), }, [4278] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(6727), + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_where] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_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(4842), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), [sym_multiline_comment] = ACTIONS(3), }, [4279] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(7537), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7527), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym_class_body] = STATE(4005), + [sym__alpha_identifier] = ACTIONS(4353), + [anon_sym_AT] = ACTIONS(4355), + [anon_sym_COLON] = ACTIONS(7485), + [anon_sym_LBRACK] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4353), + [anon_sym_as] = ACTIONS(4353), + [anon_sym_LBRACE] = ACTIONS(5746), + [anon_sym_RBRACE] = ACTIONS(4355), + [anon_sym_LPAREN] = ACTIONS(4355), + [anon_sym_LT] = ACTIONS(4353), + [anon_sym_GT] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(4355), + [anon_sym_get] = ACTIONS(4353), + [anon_sym_set] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4355), + [sym_label] = ACTIONS(4355), + [anon_sym_in] = ACTIONS(4353), + [anon_sym_DOT_DOT] = ACTIONS(4355), + [anon_sym_QMARK_COLON] = ACTIONS(4355), + [anon_sym_AMP_AMP] = ACTIONS(4355), + [anon_sym_PIPE_PIPE] = ACTIONS(4355), + [anon_sym_else] = ACTIONS(4353), + [anon_sym_COLON_COLON] = ACTIONS(4355), + [anon_sym_BANG_EQ] = ACTIONS(4353), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4355), + [anon_sym_EQ_EQ] = ACTIONS(4353), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4355), + [anon_sym_LT_EQ] = ACTIONS(4355), + [anon_sym_GT_EQ] = ACTIONS(4355), + [anon_sym_BANGin] = ACTIONS(4355), + [anon_sym_is] = ACTIONS(4353), + [anon_sym_BANGis] = ACTIONS(4355), + [anon_sym_PLUS] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4353), + [anon_sym_SLASH] = ACTIONS(4353), + [anon_sym_PERCENT] = ACTIONS(4355), + [anon_sym_as_QMARK] = ACTIONS(4355), + [anon_sym_PLUS_PLUS] = ACTIONS(4355), + [anon_sym_DASH_DASH] = ACTIONS(4355), + [anon_sym_BANG_BANG] = ACTIONS(4355), + [anon_sym_suspend] = ACTIONS(4353), + [anon_sym_sealed] = ACTIONS(4353), + [anon_sym_annotation] = ACTIONS(4353), + [anon_sym_data] = ACTIONS(4353), + [anon_sym_inner] = ACTIONS(4353), + [anon_sym_value] = ACTIONS(4353), + [anon_sym_override] = ACTIONS(4353), + [anon_sym_lateinit] = ACTIONS(4353), + [anon_sym_public] = ACTIONS(4353), + [anon_sym_private] = ACTIONS(4353), + [anon_sym_internal] = ACTIONS(4353), + [anon_sym_protected] = ACTIONS(4353), + [anon_sym_tailrec] = ACTIONS(4353), + [anon_sym_operator] = ACTIONS(4353), + [anon_sym_infix] = ACTIONS(4353), + [anon_sym_inline] = ACTIONS(4353), + [anon_sym_external] = ACTIONS(4353), + [sym_property_modifier] = ACTIONS(4353), + [anon_sym_abstract] = ACTIONS(4353), + [anon_sym_final] = ACTIONS(4353), + [anon_sym_open] = ACTIONS(4353), + [anon_sym_vararg] = ACTIONS(4353), + [anon_sym_noinline] = ACTIONS(4353), + [anon_sym_crossinline] = ACTIONS(4353), + [anon_sym_expect] = ACTIONS(4353), + [anon_sym_actual] = ACTIONS(4353), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4355), + [sym__automatic_semicolon] = ACTIONS(4355), + [sym_safe_nav] = ACTIONS(4355), [sym_multiline_comment] = ACTIONS(3), }, [4280] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4281] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3115), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_GT] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_get] = ACTIONS(3159), - [anon_sym_set] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_QMARK_COLON] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3159), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3159), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3159), - [anon_sym_inner] = ACTIONS(3159), - [anon_sym_value] = ACTIONS(3159), - [anon_sym_expect] = ACTIONS(3159), - [anon_sym_actual] = ACTIONS(3159), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3161), - [sym__automatic_semicolon] = ACTIONS(3161), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3115), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_QMARK_COLON] = ACTIONS(3117), + [anon_sym_AMP_AMP] = ACTIONS(3117), + [anon_sym_PIPE_PIPE] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3115), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3117), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3117), + [anon_sym_BANGin] = ACTIONS(3117), + [anon_sym_is] = ACTIONS(3115), + [anon_sym_BANGis] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3115), + [anon_sym_inner] = ACTIONS(3115), + [anon_sym_value] = ACTIONS(3115), + [anon_sym_expect] = ACTIONS(3115), + [anon_sym_actual] = ACTIONS(3115), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3117), + [sym__automatic_semicolon] = ACTIONS(3117), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4282] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_DOT_DOT] = ACTIONS(3195), - [anon_sym_QMARK_COLON] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3193), - [anon_sym_inner] = ACTIONS(3193), - [anon_sym_value] = ACTIONS(3193), - [anon_sym_expect] = ACTIONS(3193), - [anon_sym_actual] = ACTIONS(3193), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3195), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7507), + [anon_sym_EQ_EQ] = ACTIONS(7505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3124), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4283] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_while] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7545), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_while] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7513), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), [sym_multiline_comment] = ACTIONS(3), }, [4284] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3050), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3127), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3127), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3054), + [anon_sym_GT] = ACTIONS(3050), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3050), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(3052), + [anon_sym_AMP_AMP] = ACTIONS(3052), + [anon_sym_PIPE_PIPE] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3050), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3050), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3052), + [anon_sym_EQ_EQ] = ACTIONS(3050), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3052), + [anon_sym_LT_EQ] = ACTIONS(3052), + [anon_sym_GT_EQ] = ACTIONS(3052), + [anon_sym_BANGin] = ACTIONS(3052), + [anon_sym_is] = ACTIONS(3050), + [anon_sym_BANGis] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3050), + [anon_sym_inner] = ACTIONS(3050), + [anon_sym_value] = ACTIONS(3050), + [anon_sym_expect] = ACTIONS(3050), + [anon_sym_actual] = ACTIONS(3050), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3052), + [sym__automatic_semicolon] = ACTIONS(3052), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4285] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_PIPE_PIPE] = ACTIONS(7561), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3150), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_else] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7507), + [anon_sym_EQ_EQ] = ACTIONS(7505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3082), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4286] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(7567), - [anon_sym_RPAREN] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_while] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7515), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4188), + [sym_label] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_while] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), }, [4287] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3131), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3129), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3131), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(3078), + [anon_sym_PIPE_PIPE] = ACTIONS(3078), + [anon_sym_else] = ACTIONS(3076), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7507), + [anon_sym_EQ_EQ] = ACTIONS(7505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3078), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4288] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3090), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_PIPE_PIPE] = ACTIONS(7561), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3090), - [sym_safe_nav] = ACTIONS(7053), + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_RPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(7517), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_while] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7513), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), [sym_multiline_comment] = ACTIONS(3), }, [4289] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_PIPE_PIPE] = ACTIONS(7561), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3108), - [sym_safe_nav] = ACTIONS(7053), + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(7519), + [anon_sym_RPAREN] = ACTIONS(4842), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_while] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_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(4842), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), [sym_multiline_comment] = ACTIONS(3), }, [4290] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(7569), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [sym_label] = ACTIONS(4846), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_while] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_GT] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3130), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(3132), + [anon_sym_AMP_AMP] = ACTIONS(3132), + [anon_sym_PIPE_PIPE] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3130), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3132), + [anon_sym_EQ_EQ] = ACTIONS(3130), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3132), + [anon_sym_LT_EQ] = ACTIONS(3132), + [anon_sym_GT_EQ] = ACTIONS(3132), + [anon_sym_BANGin] = ACTIONS(3132), + [anon_sym_is] = ACTIONS(3130), + [anon_sym_BANGis] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3132), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4291] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3116), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3116), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3114), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(3116), - [anon_sym_PIPE_PIPE] = ACTIONS(3116), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3114), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3116), - [anon_sym_EQ_EQ] = ACTIONS(3114), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3116), - [anon_sym_LT_EQ] = ACTIONS(3116), - [anon_sym_GT_EQ] = ACTIONS(3116), - [anon_sym_BANGin] = ACTIONS(3116), - [anon_sym_is] = ACTIONS(3114), - [anon_sym_BANGis] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3116), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3139), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3139), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7507), + [anon_sym_EQ_EQ] = ACTIONS(7505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3139), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4292] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3123), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3123), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7507), + [anon_sym_EQ_EQ] = ACTIONS(7505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4293] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_PIPE_PIPE] = ACTIONS(7561), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_else] = ACTIONS(3111), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7507), + [anon_sym_EQ_EQ] = ACTIONS(7505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3113), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4294] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(7571), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_while] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7545), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7507), + [anon_sym_EQ_EQ] = ACTIONS(7505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3128), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4295] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_PIPE_PIPE] = ACTIONS(7561), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3112), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3086), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(3086), + [anon_sym_PIPE_PIPE] = ACTIONS(3086), + [anon_sym_else] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3084), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3086), + [anon_sym_EQ_EQ] = ACTIONS(3084), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3086), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3086), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4296] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7573), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4240), - [sym_label] = ACTIONS(4240), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_while] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_SEMI] = ACTIONS(3059), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3059), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4297] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_GT] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3166), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(3168), - [anon_sym_AMP_AMP] = ACTIONS(3168), - [anon_sym_PIPE_PIPE] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3168), - [anon_sym_EQ_EQ] = ACTIONS(3166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3168), - [anon_sym_LT_EQ] = ACTIONS(3168), - [anon_sym_GT_EQ] = ACTIONS(3168), - [anon_sym_BANGin] = ACTIONS(3168), - [anon_sym_is] = ACTIONS(3166), - [anon_sym_BANGis] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3166), - [anon_sym_inner] = ACTIONS(3166), - [anon_sym_value] = ACTIONS(3166), - [anon_sym_expect] = ACTIONS(3166), - [anon_sym_actual] = ACTIONS(3166), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3168), - [sym__automatic_semicolon] = ACTIONS(3168), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3067), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_SEMI] = ACTIONS(3067), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3067), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_BANGin] = ACTIONS(3067), + [anon_sym_is] = ACTIONS(3065), + [anon_sym_BANGis] = ACTIONS(3067), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3067), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4298] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3135), - [sym_safe_nav] = ACTIONS(7053), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7521), + [anon_sym_RPAREN] = ACTIONS(4220), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4220), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_while] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), }, [4299] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_GT] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(3152), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(3154), - [anon_sym_AMP_AMP] = ACTIONS(3154), - [anon_sym_PIPE_PIPE] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(3152), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3154), - [anon_sym_EQ_EQ] = ACTIONS(3152), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3154), - [anon_sym_LT_EQ] = ACTIONS(3154), - [anon_sym_GT_EQ] = ACTIONS(3154), - [anon_sym_BANGin] = ACTIONS(3154), - [anon_sym_is] = ACTIONS(3152), - [anon_sym_BANGis] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3154), - [sym_safe_nav] = ACTIONS(7053), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_else] = ACTIONS(3044), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7507), + [anon_sym_EQ_EQ] = ACTIONS(7505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4300] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_PIPE_PIPE] = ACTIONS(7561), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3191), - [sym_safe_nav] = ACTIONS(7053), + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(7523), + [anon_sym_RPAREN] = ACTIONS(4852), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_while] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), [sym_multiline_comment] = ACTIONS(3), }, [4301] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(7495), + [anon_sym_DOT_DOT] = ACTIONS(7497), + [anon_sym_QMARK_COLON] = ACTIONS(7499), + [anon_sym_AMP_AMP] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_else] = ACTIONS(3107), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(7505), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7507), + [anon_sym_EQ_EQ] = ACTIONS(7505), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7509), + [anon_sym_GT_EQ] = ACTIONS(7509), + [anon_sym_BANGin] = ACTIONS(7511), + [anon_sym_is] = ACTIONS(7001), + [anon_sym_BANGis] = ACTIONS(7003), + [anon_sym_PLUS] = ACTIONS(7489), + [anon_sym_DASH] = ACTIONS(7489), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym__automatic_semicolon] = ACTIONS(3109), + [sym_safe_nav] = ACTIONS(6995), + [sym_multiline_comment] = ACTIONS(3), + }, + [4302] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), + [sym__alpha_identifier] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(6981), + [anon_sym_LT] = ACTIONS(3104), + [anon_sym_GT] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [sym_label] = ACTIONS(6987), + [anon_sym_in] = ACTIONS(3100), + [anon_sym_DOT_DOT] = ACTIONS(3102), + [anon_sym_QMARK_COLON] = ACTIONS(3102), + [anon_sym_AMP_AMP] = ACTIONS(3102), + [anon_sym_PIPE_PIPE] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(6995), + [anon_sym_BANG_EQ] = ACTIONS(3100), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3102), + [anon_sym_EQ_EQ] = ACTIONS(3100), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3102), + [anon_sym_LT_EQ] = ACTIONS(3102), + [anon_sym_GT_EQ] = ACTIONS(3102), + [anon_sym_BANGin] = ACTIONS(3102), + [anon_sym_is] = ACTIONS(3100), + [anon_sym_BANGis] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_PERCENT] = ACTIONS(3102), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), + [anon_sym_data] = ACTIONS(3100), + [anon_sym_inner] = ACTIONS(3100), + [anon_sym_value] = ACTIONS(3100), + [anon_sym_expect] = ACTIONS(3100), + [anon_sym_actual] = ACTIONS(3100), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3102), + [sym__automatic_semicolon] = ACTIONS(3102), + [sym_safe_nav] = ACTIONS(6995), + [sym_multiline_comment] = ACTIONS(3), + }, + [4303] = { + [sym_indexing_suffix] = STATE(5250), + [sym_navigation_suffix] = STATE(5249), + [sym_call_suffix] = STATE(5248), + [sym_annotated_lambda] = STATE(5246), + [sym_type_arguments] = STATE(8030), + [sym_value_arguments] = STATE(4556), + [sym_lambda_literal] = STATE(5245), + [sym__equality_operator] = STATE(1592), + [sym__comparison_operator] = STATE(1595), + [sym__in_operator] = STATE(1611), + [sym__is_operator] = STATE(6036), + [sym__additive_operator] = STATE(1612), + [sym__multiplicative_operator] = STATE(1617), + [sym__as_operator] = STATE(6035), + [sym__postfix_unary_operator] = STATE(5244), + [sym__member_access_operator] = STATE(7822), + [sym_annotation] = STATE(8343), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1633), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8343), [sym__alpha_identifier] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6975), + [anon_sym_DOT] = ACTIONS(6977), + [anon_sym_as] = ACTIONS(6979), [anon_sym_LBRACE] = ACTIONS(25), [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(7035), + [anon_sym_LPAREN] = ACTIONS(6981), [anon_sym_LT] = ACTIONS(3145), [anon_sym_GT] = ACTIONS(3141), [anon_sym_SEMI] = ACTIONS(3143), [anon_sym_get] = ACTIONS(3141), [anon_sym_set] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), + [anon_sym_STAR] = ACTIONS(7487), + [sym_label] = ACTIONS(6987), [anon_sym_in] = ACTIONS(3141), [anon_sym_DOT_DOT] = ACTIONS(3143), [anon_sym_QMARK_COLON] = ACTIONS(3143), [anon_sym_AMP_AMP] = ACTIONS(3143), [anon_sym_PIPE_PIPE] = ACTIONS(3143), [anon_sym_else] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(7053), + [anon_sym_COLON_COLON] = ACTIONS(6995), [anon_sym_BANG_EQ] = ACTIONS(3141), [anon_sym_BANG_EQ_EQ] = ACTIONS(3143), [anon_sym_EQ_EQ] = ACTIONS(3141), @@ -464585,12 +465000,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(3143), [anon_sym_PLUS] = ACTIONS(3141), [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7487), + [anon_sym_as_QMARK] = ACTIONS(7007), + [anon_sym_PLUS_PLUS] = ACTIONS(7009), + [anon_sym_DASH_DASH] = ACTIONS(7009), + [anon_sym_BANG_BANG] = ACTIONS(7009), [anon_sym_data] = ACTIONS(3141), [anon_sym_inner] = ACTIONS(3141), [anon_sym_value] = ACTIONS(3141), @@ -464599,16306 +465014,15940 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(3), [sym__backtick_identifier] = ACTIONS(3143), [sym__automatic_semicolon] = ACTIONS(3143), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4302] = { - [sym_indexing_suffix] = STATE(5147), - [sym_navigation_suffix] = STATE(5146), - [sym_call_suffix] = STATE(5144), - [sym_annotated_lambda] = STATE(5139), - [sym_type_arguments] = STATE(8125), - [sym_value_arguments] = STATE(4545), - [sym_lambda_literal] = STATE(5124), - [sym__equality_operator] = STATE(1846), - [sym__comparison_operator] = STATE(1849), - [sym__in_operator] = STATE(1870), - [sym__is_operator] = STATE(6132), - [sym__additive_operator] = STATE(1874), - [sym__multiplicative_operator] = STATE(1894), - [sym__as_operator] = STATE(6131), - [sym__postfix_unary_operator] = STATE(5106), - [sym__member_access_operator] = STATE(7776), - [sym_annotation] = STATE(8339), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1896), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8339), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(7029), - [anon_sym_DOT] = ACTIONS(7031), - [anon_sym_as] = ACTIONS(7033), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_LPAREN] = ACTIONS(7035), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7539), - [sym_label] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(7549), - [anon_sym_DOT_DOT] = ACTIONS(7551), - [anon_sym_QMARK_COLON] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7559), - [anon_sym_PIPE_PIPE] = ACTIONS(7561), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_COLON_COLON] = ACTIONS(7053), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_BANGin] = ACTIONS(7557), - [anon_sym_is] = ACTIONS(7063), - [anon_sym_BANGis] = ACTIONS(7065), - [anon_sym_PLUS] = ACTIONS(7541), - [anon_sym_DASH] = ACTIONS(7541), - [anon_sym_SLASH] = ACTIONS(7543), - [anon_sym_PERCENT] = ACTIONS(7539), - [anon_sym_as_QMARK] = ACTIONS(7069), - [anon_sym_PLUS_PLUS] = ACTIONS(7071), - [anon_sym_DASH_DASH] = ACTIONS(7071), - [anon_sym_BANG_BANG] = ACTIONS(7071), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym__automatic_semicolon] = ACTIONS(3096), - [sym_safe_nav] = ACTIONS(7053), - [sym_multiline_comment] = ACTIONS(3), - }, - [4303] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7575), - [anon_sym_RPAREN] = ACTIONS(4226), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4226), - [sym_label] = ACTIONS(4226), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_while] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), + [sym_safe_nav] = ACTIONS(6995), [sym_multiline_comment] = ACTIONS(3), }, [4304] = { - [sym__alpha_identifier] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4226), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(7577), - [anon_sym_LT] = ACTIONS(4228), - [anon_sym_GT] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(4226), - [anon_sym_get] = ACTIONS(4228), - [anon_sym_set] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4226), - [sym_label] = ACTIONS(4226), - [anon_sym_in] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(4226), - [anon_sym_QMARK_COLON] = ACTIONS(4226), - [anon_sym_AMP_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4226), - [anon_sym_else] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(4226), - [anon_sym_BANG_EQ] = ACTIONS(4228), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4228), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4226), - [anon_sym_GT_EQ] = ACTIONS(4226), - [anon_sym_BANGin] = ACTIONS(4226), - [anon_sym_is] = ACTIONS(4228), - [anon_sym_BANGis] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_SLASH] = ACTIONS(4228), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_as_QMARK] = ACTIONS(4226), - [anon_sym_PLUS_PLUS] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4226), - [anon_sym_BANG_BANG] = ACTIONS(4226), - [anon_sym_suspend] = ACTIONS(4228), - [anon_sym_sealed] = ACTIONS(4228), - [anon_sym_annotation] = ACTIONS(4228), - [anon_sym_data] = ACTIONS(4228), - [anon_sym_inner] = ACTIONS(4228), - [anon_sym_value] = ACTIONS(4228), - [anon_sym_override] = ACTIONS(4228), - [anon_sym_lateinit] = ACTIONS(4228), - [anon_sym_public] = ACTIONS(4228), - [anon_sym_private] = ACTIONS(4228), - [anon_sym_internal] = ACTIONS(4228), - [anon_sym_protected] = ACTIONS(4228), - [anon_sym_tailrec] = ACTIONS(4228), - [anon_sym_operator] = ACTIONS(4228), - [anon_sym_infix] = ACTIONS(4228), - [anon_sym_inline] = ACTIONS(4228), - [anon_sym_external] = ACTIONS(4228), - [sym_property_modifier] = ACTIONS(4228), - [anon_sym_abstract] = ACTIONS(4228), - [anon_sym_final] = ACTIONS(4228), - [anon_sym_open] = ACTIONS(4228), - [anon_sym_vararg] = ACTIONS(4228), - [anon_sym_noinline] = ACTIONS(4228), - [anon_sym_crossinline] = ACTIONS(4228), - [anon_sym_expect] = ACTIONS(4228), - [anon_sym_actual] = ACTIONS(4228), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4226), - [sym__automatic_semicolon] = ACTIONS(4226), - [sym_safe_nav] = ACTIONS(4226), + [sym__alpha_identifier] = ACTIONS(4850), + [anon_sym_AT] = ACTIONS(4852), + [anon_sym_LBRACK] = ACTIONS(4852), + [anon_sym_DOT] = ACTIONS(4850), + [anon_sym_as] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4852), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_LPAREN] = ACTIONS(7525), + [anon_sym_LT] = ACTIONS(4850), + [anon_sym_GT] = ACTIONS(4850), + [anon_sym_SEMI] = ACTIONS(4852), + [anon_sym_get] = ACTIONS(4850), + [anon_sym_set] = ACTIONS(4850), + [anon_sym_STAR] = ACTIONS(4852), + [sym_label] = ACTIONS(4852), + [anon_sym_in] = ACTIONS(4850), + [anon_sym_DOT_DOT] = ACTIONS(4852), + [anon_sym_QMARK_COLON] = ACTIONS(4852), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_PIPE_PIPE] = ACTIONS(4852), + [anon_sym_else] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [anon_sym_BANG_EQ] = ACTIONS(4850), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4852), + [anon_sym_EQ_EQ] = ACTIONS(4850), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4852), + [anon_sym_LT_EQ] = ACTIONS(4852), + [anon_sym_GT_EQ] = ACTIONS(4852), + [anon_sym_BANGin] = ACTIONS(4852), + [anon_sym_is] = ACTIONS(4850), + [anon_sym_BANGis] = ACTIONS(4852), + [anon_sym_PLUS] = ACTIONS(4850), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_SLASH] = ACTIONS(4850), + [anon_sym_PERCENT] = ACTIONS(4852), + [anon_sym_as_QMARK] = ACTIONS(4852), + [anon_sym_PLUS_PLUS] = ACTIONS(4852), + [anon_sym_DASH_DASH] = ACTIONS(4852), + [anon_sym_BANG_BANG] = ACTIONS(4852), + [anon_sym_suspend] = ACTIONS(4850), + [anon_sym_sealed] = ACTIONS(4850), + [anon_sym_annotation] = ACTIONS(4850), + [anon_sym_data] = ACTIONS(4850), + [anon_sym_inner] = ACTIONS(4850), + [anon_sym_value] = ACTIONS(4850), + [anon_sym_override] = ACTIONS(4850), + [anon_sym_lateinit] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_internal] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_tailrec] = ACTIONS(4850), + [anon_sym_operator] = ACTIONS(4850), + [anon_sym_infix] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_external] = ACTIONS(4850), + [sym_property_modifier] = ACTIONS(4850), + [anon_sym_abstract] = ACTIONS(4850), + [anon_sym_final] = ACTIONS(4850), + [anon_sym_open] = ACTIONS(4850), + [anon_sym_vararg] = ACTIONS(4850), + [anon_sym_noinline] = ACTIONS(4850), + [anon_sym_crossinline] = ACTIONS(4850), + [anon_sym_expect] = ACTIONS(4850), + [anon_sym_actual] = ACTIONS(4850), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4852), + [sym__automatic_semicolon] = ACTIONS(4852), + [sym_safe_nav] = ACTIONS(4852), [sym_multiline_comment] = ACTIONS(3), }, [4305] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(8836), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7579), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4366), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7535), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4306] = { - [sym__alpha_identifier] = ACTIONS(4852), - [anon_sym_AT] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_DOT] = ACTIONS(4852), - [anon_sym_as] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4854), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(7583), - [anon_sym_LT] = ACTIONS(4852), - [anon_sym_GT] = ACTIONS(4852), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_get] = ACTIONS(4852), - [anon_sym_set] = ACTIONS(4852), - [anon_sym_STAR] = ACTIONS(4854), - [sym_label] = ACTIONS(4854), - [anon_sym_in] = ACTIONS(4852), - [anon_sym_DOT_DOT] = ACTIONS(4854), - [anon_sym_QMARK_COLON] = ACTIONS(4854), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_PIPE_PIPE] = ACTIONS(4854), - [anon_sym_else] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [anon_sym_BANG_EQ] = ACTIONS(4852), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4854), - [anon_sym_EQ_EQ] = ACTIONS(4852), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4854), - [anon_sym_LT_EQ] = ACTIONS(4854), - [anon_sym_GT_EQ] = ACTIONS(4854), - [anon_sym_BANGin] = ACTIONS(4854), - [anon_sym_is] = ACTIONS(4852), - [anon_sym_BANGis] = ACTIONS(4854), - [anon_sym_PLUS] = ACTIONS(4852), - [anon_sym_DASH] = ACTIONS(4852), - [anon_sym_SLASH] = ACTIONS(4852), - [anon_sym_PERCENT] = ACTIONS(4854), - [anon_sym_as_QMARK] = ACTIONS(4854), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [anon_sym_BANG_BANG] = ACTIONS(4854), - [anon_sym_suspend] = ACTIONS(4852), - [anon_sym_sealed] = ACTIONS(4852), - [anon_sym_annotation] = ACTIONS(4852), - [anon_sym_data] = ACTIONS(4852), - [anon_sym_inner] = ACTIONS(4852), - [anon_sym_value] = ACTIONS(4852), - [anon_sym_override] = ACTIONS(4852), - [anon_sym_lateinit] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_internal] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_tailrec] = ACTIONS(4852), - [anon_sym_operator] = ACTIONS(4852), - [anon_sym_infix] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_external] = ACTIONS(4852), - [sym_property_modifier] = ACTIONS(4852), - [anon_sym_abstract] = ACTIONS(4852), - [anon_sym_final] = ACTIONS(4852), - [anon_sym_open] = ACTIONS(4852), - [anon_sym_vararg] = ACTIONS(4852), - [anon_sym_noinline] = ACTIONS(4852), - [anon_sym_crossinline] = ACTIONS(4852), - [anon_sym_expect] = ACTIONS(4852), - [anon_sym_actual] = ACTIONS(4852), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4854), - [sym__automatic_semicolon] = ACTIONS(4854), - [sym_safe_nav] = ACTIONS(4854), - [sym_multiline_comment] = ACTIONS(3), - }, - [4307] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(8985), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7585), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4308] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(9050), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7587), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4309] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(9061), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7589), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4310] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(8996), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7591), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4311] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7593), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4342), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7563), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4307] = { + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4326), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7565), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4308] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8865), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7567), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4309] = { + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7563), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), + [sym_multiline_comment] = ACTIONS(3), + }, + [4310] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8795), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7571), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), + }, + [4311] = { + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7573), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), [sym_multiline_comment] = ACTIONS(3), }, [4312] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(8891), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7595), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7575), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4313] = { - [sym__alpha_identifier] = ACTIONS(4924), - [anon_sym_AT] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_LBRACE] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_SEMI] = ACTIONS(7597), - [anon_sym_get] = ACTIONS(4924), - [anon_sym_set] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4926), - [sym_label] = ACTIONS(4926), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_QMARK_COLON] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_else] = ACTIONS(7593), - [anon_sym_COLON_COLON] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4924), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4924), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_BANGin] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4924), - [anon_sym_BANGis] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_as_QMARK] = ACTIONS(4926), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_BANG_BANG] = ACTIONS(4926), - [anon_sym_suspend] = ACTIONS(4924), - [anon_sym_sealed] = ACTIONS(4924), - [anon_sym_annotation] = ACTIONS(4924), - [anon_sym_data] = ACTIONS(4924), - [anon_sym_inner] = ACTIONS(4924), - [anon_sym_value] = ACTIONS(4924), - [anon_sym_override] = ACTIONS(4924), - [anon_sym_lateinit] = ACTIONS(4924), - [anon_sym_public] = ACTIONS(4924), - [anon_sym_private] = ACTIONS(4924), - [anon_sym_internal] = ACTIONS(4924), - [anon_sym_protected] = ACTIONS(4924), - [anon_sym_tailrec] = ACTIONS(4924), - [anon_sym_operator] = ACTIONS(4924), - [anon_sym_infix] = ACTIONS(4924), - [anon_sym_inline] = ACTIONS(4924), - [anon_sym_external] = ACTIONS(4924), - [sym_property_modifier] = ACTIONS(4924), - [anon_sym_abstract] = ACTIONS(4924), - [anon_sym_final] = ACTIONS(4924), - [anon_sym_open] = ACTIONS(4924), - [anon_sym_vararg] = ACTIONS(4924), - [anon_sym_noinline] = ACTIONS(4924), - [anon_sym_crossinline] = ACTIONS(4924), - [anon_sym_expect] = ACTIONS(4924), - [anon_sym_actual] = ACTIONS(4924), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7577), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4926), - [sym__automatic_semicolon] = ACTIONS(4926), - [sym_safe_nav] = ACTIONS(4926), [sym_multiline_comment] = ACTIONS(3), }, [4314] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(9037), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7599), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4313), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7579), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4315] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(9057), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7601), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7581), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4316] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(9043), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7603), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7583), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4317] = { - [sym__alpha_identifier] = ACTIONS(4242), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4242), - [anon_sym_as] = ACTIONS(4242), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(7605), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_get] = ACTIONS(4242), - [anon_sym_set] = ACTIONS(4242), - [anon_sym_STAR] = ACTIONS(4240), - [sym_label] = ACTIONS(4240), - [anon_sym_in] = ACTIONS(4242), - [anon_sym_DOT_DOT] = ACTIONS(4240), - [anon_sym_QMARK_COLON] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_else] = ACTIONS(4242), - [anon_sym_COLON_COLON] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4242), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4240), - [anon_sym_EQ_EQ] = ACTIONS(4242), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4240), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_BANGin] = ACTIONS(4240), - [anon_sym_is] = ACTIONS(4242), - [anon_sym_BANGis] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4240), - [anon_sym_as_QMARK] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_BANG_BANG] = ACTIONS(4240), - [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_value] = 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_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4316), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7585), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4240), - [sym__automatic_semicolon] = ACTIONS(4240), - [sym_safe_nav] = ACTIONS(4240), [sym_multiline_comment] = ACTIONS(3), }, [4318] = { - [sym__alpha_identifier] = ACTIONS(4844), - [anon_sym_AT] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_DOT] = ACTIONS(4844), - [anon_sym_as] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(7607), - [anon_sym_LT] = ACTIONS(4844), - [anon_sym_GT] = ACTIONS(4844), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_get] = ACTIONS(4844), - [anon_sym_set] = ACTIONS(4844), - [anon_sym_STAR] = ACTIONS(4846), - [sym_label] = ACTIONS(4846), - [anon_sym_in] = ACTIONS(4844), - [anon_sym_DOT_DOT] = ACTIONS(4846), - [anon_sym_QMARK_COLON] = ACTIONS(4846), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_PIPE_PIPE] = ACTIONS(4846), - [anon_sym_else] = ACTIONS(4844), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [anon_sym_BANG_EQ] = ACTIONS(4844), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4846), - [anon_sym_EQ_EQ] = ACTIONS(4844), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4846), - [anon_sym_LT_EQ] = ACTIONS(4846), - [anon_sym_GT_EQ] = ACTIONS(4846), - [anon_sym_BANGin] = ACTIONS(4846), - [anon_sym_is] = ACTIONS(4844), - [anon_sym_BANGis] = ACTIONS(4846), - [anon_sym_PLUS] = ACTIONS(4844), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_SLASH] = ACTIONS(4844), - [anon_sym_PERCENT] = ACTIONS(4846), - [anon_sym_as_QMARK] = ACTIONS(4846), - [anon_sym_PLUS_PLUS] = ACTIONS(4846), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_BANG_BANG] = ACTIONS(4846), - [anon_sym_suspend] = ACTIONS(4844), - [anon_sym_sealed] = ACTIONS(4844), - [anon_sym_annotation] = ACTIONS(4844), - [anon_sym_data] = ACTIONS(4844), - [anon_sym_inner] = ACTIONS(4844), - [anon_sym_value] = ACTIONS(4844), - [anon_sym_override] = ACTIONS(4844), - [anon_sym_lateinit] = ACTIONS(4844), - [anon_sym_public] = ACTIONS(4844), - [anon_sym_private] = ACTIONS(4844), - [anon_sym_internal] = ACTIONS(4844), - [anon_sym_protected] = ACTIONS(4844), - [anon_sym_tailrec] = ACTIONS(4844), - [anon_sym_operator] = ACTIONS(4844), - [anon_sym_infix] = ACTIONS(4844), - [anon_sym_inline] = ACTIONS(4844), - [anon_sym_external] = ACTIONS(4844), - [sym_property_modifier] = ACTIONS(4844), - [anon_sym_abstract] = ACTIONS(4844), - [anon_sym_final] = ACTIONS(4844), - [anon_sym_open] = ACTIONS(4844), - [anon_sym_vararg] = ACTIONS(4844), - [anon_sym_noinline] = ACTIONS(4844), - [anon_sym_crossinline] = ACTIONS(4844), - [anon_sym_expect] = ACTIONS(4844), - [anon_sym_actual] = ACTIONS(4844), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4846), - [sym__automatic_semicolon] = ACTIONS(4846), - [sym_safe_nav] = ACTIONS(4846), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7579), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4319] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(8892), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7609), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7587), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4320] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(8981), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7611), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4338), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7587), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4321] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [aux_sym_indexing_suffix_repeat1] = STATE(8973), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7613), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7581), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7589), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4322] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7615), - [anon_sym_RPAREN] = ACTIONS(7615), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7591), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4323] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7625), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7593), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4324] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(7653), - [anon_sym_typealias] = ACTIONS(7656), - [anon_sym_class] = ACTIONS(7659), - [anon_sym_interface] = ACTIONS(7659), - [anon_sym_enum] = ACTIONS(7662), - [anon_sym_constructor] = ACTIONS(7665), - [anon_sym_RBRACE] = ACTIONS(7668), - [anon_sym_val] = ACTIONS(7670), - [anon_sym_var] = ACTIONS(7670), - [anon_sym_init] = ACTIONS(7673), - [anon_sym_companion] = ACTIONS(7676), - [anon_sym_object] = ACTIONS(7679), - [anon_sym_fun] = ACTIONS(7682), - [anon_sym_get] = ACTIONS(7685), - [anon_sym_set] = ACTIONS(7688), - [anon_sym_suspend] = ACTIONS(7691), - [anon_sym_sealed] = ACTIONS(7694), - [anon_sym_annotation] = ACTIONS(7694), - [anon_sym_data] = ACTIONS(7694), - [anon_sym_inner] = ACTIONS(7694), - [anon_sym_value] = ACTIONS(7694), - [anon_sym_override] = ACTIONS(7697), - [anon_sym_lateinit] = ACTIONS(7697), - [anon_sym_public] = ACTIONS(7700), - [anon_sym_private] = ACTIONS(7700), - [anon_sym_internal] = ACTIONS(7700), - [anon_sym_protected] = ACTIONS(7700), - [anon_sym_tailrec] = ACTIONS(7691), - [anon_sym_operator] = ACTIONS(7691), - [anon_sym_infix] = ACTIONS(7691), - [anon_sym_inline] = ACTIONS(7691), - [anon_sym_external] = ACTIONS(7691), - [sym_property_modifier] = ACTIONS(7703), - [anon_sym_abstract] = ACTIONS(7706), - [anon_sym_final] = ACTIONS(7706), - [anon_sym_open] = ACTIONS(7706), - [anon_sym_vararg] = ACTIONS(7709), - [anon_sym_noinline] = ACTIONS(7709), - [anon_sym_crossinline] = ACTIONS(7709), - [anon_sym_expect] = ACTIONS(7712), - [anon_sym_actual] = ACTIONS(7712), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4323), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7595), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4325] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4356), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7715), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4318), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7597), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4326] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7717), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7595), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4327] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4361), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7719), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4319), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7599), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4328] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7721), - [anon_sym_RPAREN] = ACTIONS(7721), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8949), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7601), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4329] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4311), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7603), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4330] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7723), - [anon_sym_RPAREN] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4312), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7581), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4331] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7726), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8842), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7605), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4332] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7728), - [anon_sym_RPAREN] = ACTIONS(7728), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7607), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4333] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7730), - [anon_sym_RPAREN] = ACTIONS(7730), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), - [sym_multiline_comment] = ACTIONS(3), - }, - [4334] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4323), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7732), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4321), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7609), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, - [4335] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [4334] = { + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8888), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7611), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, - [4336] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), + [4335] = { + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(7613), + [anon_sym_typealias] = ACTIONS(7616), [anon_sym_class] = ACTIONS(7619), [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7734), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_enum] = ACTIONS(7622), + [anon_sym_constructor] = ACTIONS(7625), + [anon_sym_RBRACE] = ACTIONS(7628), + [anon_sym_val] = ACTIONS(7630), + [anon_sym_var] = ACTIONS(7630), + [anon_sym_init] = ACTIONS(7633), + [anon_sym_companion] = ACTIONS(7636), + [anon_sym_object] = ACTIONS(7639), + [anon_sym_fun] = ACTIONS(7642), + [anon_sym_get] = ACTIONS(7645), + [anon_sym_set] = ACTIONS(7648), + [anon_sym_suspend] = ACTIONS(7651), + [anon_sym_sealed] = ACTIONS(7654), + [anon_sym_annotation] = ACTIONS(7654), + [anon_sym_data] = ACTIONS(7654), + [anon_sym_inner] = ACTIONS(7654), + [anon_sym_value] = ACTIONS(7654), + [anon_sym_override] = ACTIONS(7657), + [anon_sym_lateinit] = ACTIONS(7657), + [anon_sym_public] = ACTIONS(7660), + [anon_sym_private] = ACTIONS(7660), + [anon_sym_internal] = ACTIONS(7660), + [anon_sym_protected] = ACTIONS(7660), + [anon_sym_tailrec] = ACTIONS(7651), + [anon_sym_operator] = ACTIONS(7651), + [anon_sym_infix] = ACTIONS(7651), + [anon_sym_inline] = ACTIONS(7651), + [anon_sym_external] = ACTIONS(7651), + [sym_property_modifier] = ACTIONS(7663), + [anon_sym_abstract] = ACTIONS(7666), + [anon_sym_final] = ACTIONS(7666), + [anon_sym_open] = ACTIONS(7666), + [anon_sym_vararg] = ACTIONS(7669), + [anon_sym_noinline] = ACTIONS(7669), + [anon_sym_crossinline] = ACTIONS(7669), + [anon_sym_expect] = ACTIONS(7672), + [anon_sym_actual] = ACTIONS(7672), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, + [4336] = { + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(7675), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7677), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), + [sym_multiline_comment] = ACTIONS(3), + }, [4337] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4382), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7736), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4856), + [anon_sym_AT] = ACTIONS(4858), + [anon_sym_LBRACK] = ACTIONS(4858), + [anon_sym_DOT] = ACTIONS(4856), + [anon_sym_as] = ACTIONS(4856), + [anon_sym_LBRACE] = ACTIONS(4858), + [anon_sym_RBRACE] = ACTIONS(4858), + [anon_sym_LPAREN] = ACTIONS(4858), + [anon_sym_LT] = ACTIONS(4856), + [anon_sym_GT] = ACTIONS(4856), + [anon_sym_SEMI] = ACTIONS(4858), + [anon_sym_get] = ACTIONS(4856), + [anon_sym_set] = ACTIONS(4856), + [anon_sym_STAR] = ACTIONS(4858), + [sym_label] = ACTIONS(4858), + [anon_sym_in] = ACTIONS(4856), + [anon_sym_DOT_DOT] = ACTIONS(4858), + [anon_sym_QMARK_COLON] = ACTIONS(4858), + [anon_sym_AMP_AMP] = ACTIONS(4858), + [anon_sym_PIPE_PIPE] = ACTIONS(4858), + [anon_sym_else] = ACTIONS(7677), + [anon_sym_COLON_COLON] = ACTIONS(4858), + [anon_sym_BANG_EQ] = ACTIONS(4856), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4858), + [anon_sym_EQ_EQ] = ACTIONS(4856), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4858), + [anon_sym_LT_EQ] = ACTIONS(4858), + [anon_sym_GT_EQ] = ACTIONS(4858), + [anon_sym_BANGin] = ACTIONS(4858), + [anon_sym_is] = ACTIONS(4856), + [anon_sym_BANGis] = ACTIONS(4858), + [anon_sym_PLUS] = ACTIONS(4856), + [anon_sym_DASH] = ACTIONS(4856), + [anon_sym_SLASH] = ACTIONS(4856), + [anon_sym_PERCENT] = ACTIONS(4858), + [anon_sym_as_QMARK] = ACTIONS(4858), + [anon_sym_PLUS_PLUS] = ACTIONS(4858), + [anon_sym_DASH_DASH] = ACTIONS(4858), + [anon_sym_BANG_BANG] = ACTIONS(4858), + [anon_sym_suspend] = ACTIONS(4856), + [anon_sym_sealed] = ACTIONS(4856), + [anon_sym_annotation] = ACTIONS(4856), + [anon_sym_data] = ACTIONS(4856), + [anon_sym_inner] = ACTIONS(4856), + [anon_sym_value] = ACTIONS(4856), + [anon_sym_override] = ACTIONS(4856), + [anon_sym_lateinit] = ACTIONS(4856), + [anon_sym_public] = ACTIONS(4856), + [anon_sym_private] = ACTIONS(4856), + [anon_sym_internal] = ACTIONS(4856), + [anon_sym_protected] = ACTIONS(4856), + [anon_sym_tailrec] = ACTIONS(4856), + [anon_sym_operator] = ACTIONS(4856), + [anon_sym_infix] = ACTIONS(4856), + [anon_sym_inline] = ACTIONS(4856), + [anon_sym_external] = ACTIONS(4856), + [sym_property_modifier] = ACTIONS(4856), + [anon_sym_abstract] = ACTIONS(4856), + [anon_sym_final] = ACTIONS(4856), + [anon_sym_open] = ACTIONS(4856), + [anon_sym_vararg] = ACTIONS(4856), + [anon_sym_noinline] = ACTIONS(4856), + [anon_sym_crossinline] = ACTIONS(4856), + [anon_sym_expect] = ACTIONS(4856), + [anon_sym_actual] = ACTIONS(4856), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4858), + [sym__automatic_semicolon] = ACTIONS(4858), + [sym_safe_nav] = ACTIONS(4858), [sym_multiline_comment] = ACTIONS(3), }, [4338] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4357), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7738), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7679), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4339] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7740), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [anon_sym_DASH_GT] = ACTIONS(7740), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4309), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7681), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4340] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4347), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7742), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8841), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7683), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4341] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7742), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7685), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4342] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4359), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7744), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7687), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4343] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4336), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7746), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4322), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7689), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4344] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7748), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4341), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7691), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4345] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7750), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8911), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7693), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4346] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7752), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7695), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4347] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7754), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(9017), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7697), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4348] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4358), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7699), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4349] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4344), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7756), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4376), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7701), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4350] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_RBRACK] = ACTIONS(7758), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7758), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8883), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7703), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4351] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7756), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4222), + [anon_sym_AT] = ACTIONS(4220), + [anon_sym_LBRACK] = ACTIONS(4220), + [anon_sym_DOT] = ACTIONS(4222), + [anon_sym_as] = ACTIONS(4222), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(7705), + [anon_sym_LT] = ACTIONS(4222), + [anon_sym_GT] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4220), + [anon_sym_get] = ACTIONS(4222), + [anon_sym_set] = ACTIONS(4222), + [anon_sym_STAR] = ACTIONS(4220), + [sym_label] = ACTIONS(4220), + [anon_sym_in] = ACTIONS(4222), + [anon_sym_DOT_DOT] = ACTIONS(4220), + [anon_sym_QMARK_COLON] = ACTIONS(4220), + [anon_sym_AMP_AMP] = ACTIONS(4220), + [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [anon_sym_else] = ACTIONS(4222), + [anon_sym_COLON_COLON] = ACTIONS(4220), + [anon_sym_BANG_EQ] = ACTIONS(4222), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4220), + [anon_sym_EQ_EQ] = ACTIONS(4222), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4220), + [anon_sym_LT_EQ] = ACTIONS(4220), + [anon_sym_GT_EQ] = ACTIONS(4220), + [anon_sym_BANGin] = ACTIONS(4220), + [anon_sym_is] = ACTIONS(4222), + [anon_sym_BANGis] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4222), + [anon_sym_DASH] = ACTIONS(4222), + [anon_sym_SLASH] = ACTIONS(4222), + [anon_sym_PERCENT] = ACTIONS(4220), + [anon_sym_as_QMARK] = ACTIONS(4220), + [anon_sym_PLUS_PLUS] = ACTIONS(4220), + [anon_sym_DASH_DASH] = ACTIONS(4220), + [anon_sym_BANG_BANG] = ACTIONS(4220), + [anon_sym_suspend] = ACTIONS(4222), + [anon_sym_sealed] = ACTIONS(4222), + [anon_sym_annotation] = ACTIONS(4222), + [anon_sym_data] = ACTIONS(4222), + [anon_sym_inner] = ACTIONS(4222), + [anon_sym_value] = ACTIONS(4222), + [anon_sym_override] = ACTIONS(4222), + [anon_sym_lateinit] = ACTIONS(4222), + [anon_sym_public] = ACTIONS(4222), + [anon_sym_private] = ACTIONS(4222), + [anon_sym_internal] = ACTIONS(4222), + [anon_sym_protected] = ACTIONS(4222), + [anon_sym_tailrec] = ACTIONS(4222), + [anon_sym_operator] = ACTIONS(4222), + [anon_sym_infix] = ACTIONS(4222), + [anon_sym_inline] = ACTIONS(4222), + [anon_sym_external] = ACTIONS(4222), + [sym_property_modifier] = ACTIONS(4222), + [anon_sym_abstract] = ACTIONS(4222), + [anon_sym_final] = ACTIONS(4222), + [anon_sym_open] = ACTIONS(4222), + [anon_sym_vararg] = ACTIONS(4222), + [anon_sym_noinline] = ACTIONS(4222), + [anon_sym_crossinline] = ACTIONS(4222), + [anon_sym_expect] = ACTIONS(4222), + [anon_sym_actual] = ACTIONS(4222), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4220), + [sym__automatic_semicolon] = ACTIONS(4220), + [sym_safe_nav] = ACTIONS(4220), [sym_multiline_comment] = ACTIONS(3), }, [4352] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4369), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7760), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4370), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7707), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4353] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7762), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4190), + [anon_sym_AT] = ACTIONS(4188), + [anon_sym_LBRACK] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4190), + [anon_sym_as] = ACTIONS(4190), + [anon_sym_LBRACE] = ACTIONS(4188), + [anon_sym_RBRACE] = ACTIONS(4188), + [anon_sym_LPAREN] = ACTIONS(7709), + [anon_sym_LT] = ACTIONS(4190), + [anon_sym_GT] = ACTIONS(4190), + [anon_sym_SEMI] = ACTIONS(4188), + [anon_sym_get] = ACTIONS(4190), + [anon_sym_set] = ACTIONS(4190), + [anon_sym_STAR] = ACTIONS(4188), + [sym_label] = ACTIONS(4188), + [anon_sym_in] = ACTIONS(4190), + [anon_sym_DOT_DOT] = ACTIONS(4188), + [anon_sym_QMARK_COLON] = ACTIONS(4188), + [anon_sym_AMP_AMP] = ACTIONS(4188), + [anon_sym_PIPE_PIPE] = ACTIONS(4188), + [anon_sym_else] = ACTIONS(4190), + [anon_sym_COLON_COLON] = ACTIONS(4188), + [anon_sym_BANG_EQ] = ACTIONS(4190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4188), + [anon_sym_EQ_EQ] = ACTIONS(4190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4188), + [anon_sym_LT_EQ] = ACTIONS(4188), + [anon_sym_GT_EQ] = ACTIONS(4188), + [anon_sym_BANGin] = ACTIONS(4188), + [anon_sym_is] = ACTIONS(4190), + [anon_sym_BANGis] = ACTIONS(4188), + [anon_sym_PLUS] = ACTIONS(4190), + [anon_sym_DASH] = ACTIONS(4190), + [anon_sym_SLASH] = ACTIONS(4190), + [anon_sym_PERCENT] = ACTIONS(4188), + [anon_sym_as_QMARK] = ACTIONS(4188), + [anon_sym_PLUS_PLUS] = ACTIONS(4188), + [anon_sym_DASH_DASH] = ACTIONS(4188), + [anon_sym_BANG_BANG] = ACTIONS(4188), + [anon_sym_suspend] = ACTIONS(4190), + [anon_sym_sealed] = ACTIONS(4190), + [anon_sym_annotation] = ACTIONS(4190), + [anon_sym_data] = ACTIONS(4190), + [anon_sym_inner] = ACTIONS(4190), + [anon_sym_value] = ACTIONS(4190), + [anon_sym_override] = ACTIONS(4190), + [anon_sym_lateinit] = ACTIONS(4190), + [anon_sym_public] = ACTIONS(4190), + [anon_sym_private] = ACTIONS(4190), + [anon_sym_internal] = ACTIONS(4190), + [anon_sym_protected] = ACTIONS(4190), + [anon_sym_tailrec] = ACTIONS(4190), + [anon_sym_operator] = ACTIONS(4190), + [anon_sym_infix] = ACTIONS(4190), + [anon_sym_inline] = ACTIONS(4190), + [anon_sym_external] = ACTIONS(4190), + [sym_property_modifier] = ACTIONS(4190), + [anon_sym_abstract] = ACTIONS(4190), + [anon_sym_final] = ACTIONS(4190), + [anon_sym_open] = ACTIONS(4190), + [anon_sym_vararg] = ACTIONS(4190), + [anon_sym_noinline] = ACTIONS(4190), + [anon_sym_crossinline] = ACTIONS(4190), + [anon_sym_expect] = ACTIONS(4190), + [anon_sym_actual] = ACTIONS(4190), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4188), + [sym__automatic_semicolon] = ACTIONS(4188), + [sym_safe_nav] = ACTIONS(4188), [sym_multiline_comment] = ACTIONS(3), }, [4354] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7764), - [anon_sym_RPAREN] = ACTIONS(7764), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4356), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7711), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4355] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4346), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7766), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7713), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4356] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7768), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7715), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4357] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7770), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4355), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7717), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4358] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4341), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7772), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7719), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4359] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7774), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4373), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7719), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4360] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4367), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7770), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7717), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4361] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7776), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), - [sym_line_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(4840), + [anon_sym_AT] = ACTIONS(4842), + [anon_sym_LBRACK] = ACTIONS(4842), + [anon_sym_DOT] = ACTIONS(4840), + [anon_sym_as] = ACTIONS(4840), + [anon_sym_LBRACE] = ACTIONS(4842), + [anon_sym_RBRACE] = ACTIONS(4842), + [anon_sym_LPAREN] = ACTIONS(7721), + [anon_sym_LT] = ACTIONS(4840), + [anon_sym_GT] = ACTIONS(4840), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym_get] = ACTIONS(4840), + [anon_sym_set] = ACTIONS(4840), + [anon_sym_STAR] = ACTIONS(4842), + [sym_label] = ACTIONS(4842), + [anon_sym_in] = ACTIONS(4840), + [anon_sym_DOT_DOT] = ACTIONS(4842), + [anon_sym_QMARK_COLON] = ACTIONS(4842), + [anon_sym_AMP_AMP] = ACTIONS(4842), + [anon_sym_PIPE_PIPE] = ACTIONS(4842), + [anon_sym_else] = ACTIONS(4840), + [anon_sym_COLON_COLON] = ACTIONS(4842), + [anon_sym_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(4842), + [anon_sym_as_QMARK] = ACTIONS(4842), + [anon_sym_PLUS_PLUS] = ACTIONS(4842), + [anon_sym_DASH_DASH] = ACTIONS(4842), + [anon_sym_BANG_BANG] = ACTIONS(4842), + [anon_sym_suspend] = ACTIONS(4840), + [anon_sym_sealed] = ACTIONS(4840), + [anon_sym_annotation] = ACTIONS(4840), + [anon_sym_data] = ACTIONS(4840), + [anon_sym_inner] = ACTIONS(4840), + [anon_sym_value] = ACTIONS(4840), + [anon_sym_override] = ACTIONS(4840), + [anon_sym_lateinit] = ACTIONS(4840), + [anon_sym_public] = ACTIONS(4840), + [anon_sym_private] = ACTIONS(4840), + [anon_sym_internal] = ACTIONS(4840), + [anon_sym_protected] = ACTIONS(4840), + [anon_sym_tailrec] = ACTIONS(4840), + [anon_sym_operator] = ACTIONS(4840), + [anon_sym_infix] = ACTIONS(4840), + [anon_sym_inline] = ACTIONS(4840), + [anon_sym_external] = ACTIONS(4840), + [sym_property_modifier] = ACTIONS(4840), + [anon_sym_abstract] = ACTIONS(4840), + [anon_sym_final] = ACTIONS(4840), + [anon_sym_open] = ACTIONS(4840), + [anon_sym_vararg] = ACTIONS(4840), + [anon_sym_noinline] = ACTIONS(4840), + [anon_sym_crossinline] = ACTIONS(4840), + [anon_sym_expect] = ACTIONS(4840), + [anon_sym_actual] = ACTIONS(4840), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4842), + [sym__automatic_semicolon] = ACTIONS(4842), + [sym_safe_nav] = ACTIONS(4842), [sym_multiline_comment] = ACTIONS(3), }, [4362] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7778), - [anon_sym_RPAREN] = ACTIONS(7778), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4346), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7723), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4363] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4365), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7780), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4360), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7725), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4364] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4388), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7774), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7727), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4365] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7782), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4364), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7729), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4366] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4368), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7782), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7731), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4367] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7784), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8866), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4368] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7786), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8815), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7735), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4369] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7788), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7737), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4370] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4383), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7788), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7739), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4371] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4375), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7790), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4332), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7739), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4372] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4353), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7792), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4369), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7695), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4373] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7794), - [anon_sym_RPAREN] = ACTIONS(7794), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_val] = ACTIONS(29), + [anon_sym_var] = ACTIONS(29), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), + [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4374] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7796), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4315), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7743), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4375] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7798), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [aux_sym_indexing_suffix_repeat1] = STATE(8797), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7569), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4376] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4387), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7800), + [sym_type_alias] = STATE(9285), + [sym__declaration] = STATE(9285), + [sym_class_declaration] = STATE(9285), + [sym_binding_pattern_kind] = STATE(6194), + [aux_sym__class_member_declarations] = STATE(4335), + [sym__class_member_declaration] = STATE(9285), + [sym_anonymous_initializer] = STATE(9285), + [sym_companion_object] = STATE(9285), + [sym_function_declaration] = STATE(9285), + [sym_property_declaration] = STATE(9285), + [sym_getter] = STATE(9285), + [sym_setter] = STATE(9285), + [sym_object_declaration] = STATE(9285), + [sym_secondary_constructor] = STATE(9285), + [sym_modifiers] = STATE(7841), + [sym__modifier] = STATE(5532), + [sym_class_modifier] = STATE(5532), + [sym_member_modifier] = STATE(5532), + [sym_visibility_modifier] = STATE(5532), + [sym_function_modifier] = STATE(5532), + [sym_inheritance_modifier] = STATE(5532), + [sym_parameter_modifier] = STATE(5532), + [sym_platform_modifier] = STATE(5532), + [sym_annotation] = STATE(5532), + [sym__single_annotation] = STATE(5732), + [sym__multi_annotation] = STATE(5732), + [aux_sym_modifiers_repeat1] = STATE(5532), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_typealias] = ACTIONS(7527), + [anon_sym_class] = ACTIONS(7529), + [anon_sym_interface] = ACTIONS(7529), + [anon_sym_enum] = ACTIONS(7531), + [anon_sym_constructor] = ACTIONS(7533), + [anon_sym_RBRACE] = ACTIONS(7747), [anon_sym_val] = ACTIONS(29), [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [anon_sym_init] = ACTIONS(7537), + [anon_sym_companion] = ACTIONS(7539), + [anon_sym_object] = ACTIONS(7541), + [anon_sym_fun] = ACTIONS(7543), + [anon_sym_get] = ACTIONS(7545), + [anon_sym_set] = ACTIONS(7547), + [anon_sym_suspend] = ACTIONS(7549), + [anon_sym_sealed] = ACTIONS(7551), + [anon_sym_annotation] = ACTIONS(7551), + [anon_sym_data] = ACTIONS(7551), + [anon_sym_inner] = ACTIONS(7551), + [anon_sym_value] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7553), + [anon_sym_lateinit] = ACTIONS(7553), + [anon_sym_public] = ACTIONS(7555), + [anon_sym_private] = ACTIONS(7555), + [anon_sym_internal] = ACTIONS(7555), + [anon_sym_protected] = ACTIONS(7555), + [anon_sym_tailrec] = ACTIONS(7549), + [anon_sym_operator] = ACTIONS(7549), + [anon_sym_infix] = ACTIONS(7549), + [anon_sym_inline] = ACTIONS(7549), + [anon_sym_external] = ACTIONS(7549), + [sym_property_modifier] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(7557), + [anon_sym_final] = ACTIONS(7557), + [anon_sym_open] = ACTIONS(7557), + [anon_sym_vararg] = ACTIONS(7559), + [anon_sym_noinline] = ACTIONS(7559), + [anon_sym_crossinline] = ACTIONS(7559), + [anon_sym_expect] = ACTIONS(7561), + [anon_sym_actual] = ACTIONS(7561), [sym_line_comment] = ACTIONS(3), [sym_multiline_comment] = ACTIONS(3), }, [4377] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7802), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_RBRACK] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4378] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4351), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7804), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7751), + [anon_sym_RPAREN] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4379] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4345), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7806), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_RPAREN] = ACTIONS(7753), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4380] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4374), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7625), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4381] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4331), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7808), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3940), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(3947), + [anon_sym_set] = ACTIONS(3947), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3943), + [sym_label] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3945), + [anon_sym_sealed] = ACTIONS(3945), + [anon_sym_annotation] = ACTIONS(3945), + [anon_sym_data] = ACTIONS(3947), + [anon_sym_inner] = ACTIONS(3947), + [anon_sym_value] = ACTIONS(3947), + [anon_sym_override] = ACTIONS(3945), + [anon_sym_lateinit] = ACTIONS(3945), + [anon_sym_public] = ACTIONS(3945), + [anon_sym_private] = ACTIONS(3945), + [anon_sym_internal] = ACTIONS(3945), + [anon_sym_protected] = ACTIONS(3945), + [anon_sym_tailrec] = ACTIONS(3945), + [anon_sym_operator] = ACTIONS(3945), + [anon_sym_infix] = ACTIONS(3945), + [anon_sym_inline] = ACTIONS(3945), + [anon_sym_external] = ACTIONS(3945), + [sym_property_modifier] = ACTIONS(3945), + [anon_sym_abstract] = ACTIONS(3945), + [anon_sym_final] = ACTIONS(3945), + [anon_sym_open] = ACTIONS(3945), + [anon_sym_vararg] = ACTIONS(3945), + [anon_sym_noinline] = ACTIONS(3945), + [anon_sym_crossinline] = ACTIONS(3945), + [anon_sym_expect] = ACTIONS(3947), + [anon_sym_actual] = ACTIONS(3947), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [4382] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7808), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), - [sym_line_comment] = ACTIONS(3), - [sym_multiline_comment] = ACTIONS(3), + [sym__alpha_identifier] = ACTIONS(3938), + [anon_sym_AT] = ACTIONS(3970), + [anon_sym_LBRACK] = ACTIONS(3943), + [anon_sym_LBRACE] = ACTIONS(3943), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_object] = ACTIONS(3938), + [anon_sym_fun] = ACTIONS(3938), + [anon_sym_get] = ACTIONS(3975), + [anon_sym_set] = ACTIONS(3975), + [anon_sym_this] = ACTIONS(3938), + [anon_sym_super] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3943), + [sym_label] = ACTIONS(3938), + [anon_sym_null] = ACTIONS(3938), + [anon_sym_if] = ACTIONS(3938), + [anon_sym_when] = ACTIONS(3938), + [anon_sym_try] = ACTIONS(3938), + [anon_sym_throw] = ACTIONS(3938), + [anon_sym_return] = ACTIONS(3938), + [anon_sym_continue] = ACTIONS(3938), + [anon_sym_break] = ACTIONS(3938), + [anon_sym_COLON_COLON] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3938), + [anon_sym_DASH] = ACTIONS(3938), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_BANG] = ACTIONS(3943), + [anon_sym_suspend] = ACTIONS(3973), + [anon_sym_sealed] = ACTIONS(3973), + [anon_sym_annotation] = ACTIONS(3973), + [anon_sym_data] = ACTIONS(3975), + [anon_sym_inner] = ACTIONS(3975), + [anon_sym_value] = ACTIONS(3975), + [anon_sym_override] = ACTIONS(3973), + [anon_sym_lateinit] = ACTIONS(3973), + [anon_sym_public] = ACTIONS(3973), + [anon_sym_private] = ACTIONS(3973), + [anon_sym_internal] = ACTIONS(3973), + [anon_sym_protected] = ACTIONS(3973), + [anon_sym_tailrec] = ACTIONS(3973), + [anon_sym_operator] = ACTIONS(3973), + [anon_sym_infix] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym_external] = ACTIONS(3973), + [sym_property_modifier] = ACTIONS(3973), + [anon_sym_abstract] = ACTIONS(3973), + [anon_sym_final] = ACTIONS(3973), + [anon_sym_open] = ACTIONS(3973), + [anon_sym_vararg] = ACTIONS(3973), + [anon_sym_noinline] = ACTIONS(3973), + [anon_sym_crossinline] = ACTIONS(3973), + [anon_sym_expect] = ACTIONS(3975), + [anon_sym_actual] = ACTIONS(3975), + [sym_line_comment] = ACTIONS(3), + [anon_sym_return_AT] = ACTIONS(3943), + [anon_sym_continue_AT] = ACTIONS(3943), + [anon_sym_break_AT] = ACTIONS(3943), + [anon_sym_this_AT] = ACTIONS(3943), + [anon_sym_super_AT] = ACTIONS(3943), + [sym_real_literal] = ACTIONS(3943), + [sym_integer_literal] = ACTIONS(3938), + [sym_hex_literal] = ACTIONS(3943), + [sym_bin_literal] = ACTIONS(3943), + [anon_sym_true] = ACTIONS(3938), + [anon_sym_false] = ACTIONS(3938), + [anon_sym_SQUOTE] = ACTIONS(3943), + [sym__backtick_identifier] = ACTIONS(3943), + [sym_multiline_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(3943), }, [4383] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7810), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7756), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(7756), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4384] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4377), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7812), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4385] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4392), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7814), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7758), + [anon_sym_RPAREN] = ACTIONS(7758), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4386] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7760), + [anon_sym_RPAREN] = ACTIONS(7760), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4387] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7816), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4388] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7818), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7762), + [anon_sym_RPAREN] = ACTIONS(7762), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4389] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1974), - [sym__comparison_operator] = STATE(1975), - [sym__in_operator] = STATE(1977), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1990), - [sym__multiplicative_operator] = STATE(2000), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(2003), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_COMMA] = ACTIONS(7820), - [anon_sym_RPAREN] = ACTIONS(7820), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7295), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7297), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7299), - [anon_sym_DOT_DOT] = ACTIONS(7301), - [anon_sym_QMARK_COLON] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7305), - [anon_sym_PIPE_PIPE] = ACTIONS(7307), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7309), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7309), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7311), - [anon_sym_LT_EQ] = ACTIONS(7313), - [anon_sym_GT_EQ] = ACTIONS(7313), - [anon_sym_BANGin] = ACTIONS(7315), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7317), - [anon_sym_DASH] = ACTIONS(7317), - [anon_sym_SLASH] = ACTIONS(7319), - [anon_sym_PERCENT] = ACTIONS(7297), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(3124), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4390] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4391), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7822), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7764), + [anon_sym_RPAREN] = ACTIONS(7764), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4391] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7824), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7766), + [anon_sym_RPAREN] = ACTIONS(7766), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4392] = { - [sym_type_alias] = STATE(9347), - [sym__declaration] = STATE(9347), - [sym_class_declaration] = STATE(9347), - [aux_sym__class_member_declarations] = STATE(4324), - [sym__class_member_declaration] = STATE(9347), - [sym_anonymous_initializer] = STATE(9347), - [sym_companion_object] = STATE(9347), - [sym_function_declaration] = STATE(9347), - [sym_property_declaration] = STATE(9347), - [sym_getter] = STATE(9347), - [sym_setter] = STATE(9347), - [sym_object_declaration] = STATE(9347), - [sym_secondary_constructor] = STATE(9347), - [sym_modifiers] = STATE(8012), - [sym__modifier] = STATE(5507), - [sym_class_modifier] = STATE(5507), - [sym_member_modifier] = STATE(5507), - [sym_visibility_modifier] = STATE(5507), - [sym_function_modifier] = STATE(5507), - [sym_inheritance_modifier] = STATE(5507), - [sym_parameter_modifier] = STATE(5507), - [sym_platform_modifier] = STATE(5507), - [sym_annotation] = STATE(5507), - [sym__single_annotation] = STATE(5728), - [sym__multi_annotation] = STATE(5728), - [aux_sym_modifiers_repeat1] = STATE(5507), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_typealias] = ACTIONS(7617), - [anon_sym_class] = ACTIONS(7619), - [anon_sym_interface] = ACTIONS(7619), - [anon_sym_enum] = ACTIONS(7621), - [anon_sym_constructor] = ACTIONS(7623), - [anon_sym_RBRACE] = ACTIONS(7822), - [anon_sym_val] = ACTIONS(29), - [anon_sym_var] = ACTIONS(29), - [anon_sym_init] = ACTIONS(7627), - [anon_sym_companion] = ACTIONS(7629), - [anon_sym_object] = ACTIONS(7631), - [anon_sym_fun] = ACTIONS(7633), - [anon_sym_get] = ACTIONS(7635), - [anon_sym_set] = ACTIONS(7637), - [anon_sym_suspend] = ACTIONS(7639), - [anon_sym_sealed] = ACTIONS(7641), - [anon_sym_annotation] = ACTIONS(7641), - [anon_sym_data] = ACTIONS(7641), - [anon_sym_inner] = ACTIONS(7641), - [anon_sym_value] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_lateinit] = ACTIONS(7643), - [anon_sym_public] = ACTIONS(7645), - [anon_sym_private] = ACTIONS(7645), - [anon_sym_internal] = ACTIONS(7645), - [anon_sym_protected] = ACTIONS(7645), - [anon_sym_tailrec] = ACTIONS(7639), - [anon_sym_operator] = ACTIONS(7639), - [anon_sym_infix] = ACTIONS(7639), - [anon_sym_inline] = ACTIONS(7639), - [anon_sym_external] = ACTIONS(7639), - [sym_property_modifier] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(7647), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_open] = ACTIONS(7647), - [anon_sym_vararg] = ACTIONS(7649), - [anon_sym_noinline] = ACTIONS(7649), - [anon_sym_crossinline] = ACTIONS(7649), - [anon_sym_expect] = ACTIONS(7651), - [anon_sym_actual] = ACTIONS(7651), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7768), + [anon_sym_RPAREN] = ACTIONS(7768), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4393] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_get] = ACTIONS(4009), - [anon_sym_set] = ACTIONS(4009), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3995), - [sym_label] = ACTIONS(3990), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(4007), - [anon_sym_sealed] = ACTIONS(4007), - [anon_sym_annotation] = ACTIONS(4007), - [anon_sym_data] = ACTIONS(4009), - [anon_sym_inner] = ACTIONS(4009), - [anon_sym_value] = ACTIONS(4009), - [anon_sym_override] = ACTIONS(4007), - [anon_sym_lateinit] = ACTIONS(4007), - [anon_sym_public] = ACTIONS(4007), - [anon_sym_private] = ACTIONS(4007), - [anon_sym_internal] = ACTIONS(4007), - [anon_sym_protected] = ACTIONS(4007), - [anon_sym_tailrec] = ACTIONS(4007), - [anon_sym_operator] = ACTIONS(4007), - [anon_sym_infix] = ACTIONS(4007), - [anon_sym_inline] = ACTIONS(4007), - [anon_sym_external] = ACTIONS(4007), - [sym_property_modifier] = ACTIONS(4007), - [anon_sym_abstract] = ACTIONS(4007), - [anon_sym_final] = ACTIONS(4007), - [anon_sym_open] = ACTIONS(4007), - [anon_sym_vararg] = ACTIONS(4007), - [anon_sym_noinline] = ACTIONS(4007), - [anon_sym_crossinline] = ACTIONS(4007), - [anon_sym_expect] = ACTIONS(4009), - [anon_sym_actual] = ACTIONS(4009), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7770), + [anon_sym_RPAREN] = ACTIONS(7770), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), }, [4394] = { - [sym__alpha_identifier] = ACTIONS(3990), - [anon_sym_AT] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym_object] = ACTIONS(3990), - [anon_sym_fun] = ACTIONS(3990), - [anon_sym_get] = ACTIONS(3999), - [anon_sym_set] = ACTIONS(3999), - [anon_sym_this] = ACTIONS(3990), - [anon_sym_super] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3995), - [sym_label] = ACTIONS(3990), - [anon_sym_null] = ACTIONS(3990), - [anon_sym_if] = ACTIONS(3990), - [anon_sym_when] = ACTIONS(3990), - [anon_sym_try] = ACTIONS(3990), - [anon_sym_throw] = ACTIONS(3990), - [anon_sym_return] = ACTIONS(3990), - [anon_sym_continue] = ACTIONS(3990), - [anon_sym_break] = ACTIONS(3990), - [anon_sym_COLON_COLON] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_suspend] = ACTIONS(3997), - [anon_sym_sealed] = ACTIONS(3997), - [anon_sym_annotation] = ACTIONS(3997), - [anon_sym_data] = ACTIONS(3999), - [anon_sym_inner] = ACTIONS(3999), - [anon_sym_value] = ACTIONS(3999), - [anon_sym_override] = ACTIONS(3997), - [anon_sym_lateinit] = ACTIONS(3997), - [anon_sym_public] = ACTIONS(3997), - [anon_sym_private] = ACTIONS(3997), - [anon_sym_internal] = ACTIONS(3997), - [anon_sym_protected] = ACTIONS(3997), - [anon_sym_tailrec] = ACTIONS(3997), - [anon_sym_operator] = ACTIONS(3997), - [anon_sym_infix] = ACTIONS(3997), - [anon_sym_inline] = ACTIONS(3997), - [anon_sym_external] = ACTIONS(3997), - [sym_property_modifier] = ACTIONS(3997), - [anon_sym_abstract] = ACTIONS(3997), - [anon_sym_final] = ACTIONS(3997), - [anon_sym_open] = ACTIONS(3997), - [anon_sym_vararg] = ACTIONS(3997), - [anon_sym_noinline] = ACTIONS(3997), - [anon_sym_crossinline] = ACTIONS(3997), - [anon_sym_expect] = ACTIONS(3999), - [anon_sym_actual] = ACTIONS(3999), - [sym_line_comment] = ACTIONS(3), - [anon_sym_return_AT] = ACTIONS(3995), - [anon_sym_continue_AT] = ACTIONS(3995), - [anon_sym_break_AT] = ACTIONS(3995), - [anon_sym_this_AT] = ACTIONS(3995), - [anon_sym_super_AT] = ACTIONS(3995), - [sym_real_literal] = ACTIONS(3995), - [sym_integer_literal] = ACTIONS(3990), - [sym_hex_literal] = ACTIONS(3995), - [sym_bin_literal] = ACTIONS(3995), - [anon_sym_true] = ACTIONS(3990), - [anon_sym_false] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3995), - [sym__backtick_identifier] = ACTIONS(3995), - [sym_multiline_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(3995), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1551), + [sym__comparison_operator] = STATE(1554), + [sym__in_operator] = STATE(1556), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1560), + [sym__multiplicative_operator] = STATE(1562), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1578), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(7772), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7241), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7243), + [anon_sym_DASH_GT] = ACTIONS(7772), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7245), + [anon_sym_DOT_DOT] = ACTIONS(7247), + [anon_sym_QMARK_COLON] = ACTIONS(7249), + [anon_sym_AMP_AMP] = ACTIONS(7251), + [anon_sym_PIPE_PIPE] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7257), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7257), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_BANGin] = ACTIONS(7261), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7265), + [anon_sym_PERCENT] = ACTIONS(7243), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), + [sym_multiline_comment] = ACTIONS(3), }, [4395] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7826), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7774), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4396] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7828), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7776), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4397] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7830), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7778), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4398] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7832), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7780), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4399] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7834), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7782), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4400] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7836), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7784), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4401] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7838), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4402] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7840), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7788), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4403] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7842), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7790), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4404] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7844), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7792), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4405] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7846), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4406] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7848), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7796), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4407] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7850), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7798), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4408] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7852), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7800), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4409] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7854), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4410] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7856), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7804), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4411] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7858), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4412] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7860), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7808), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4413] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7862), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4414] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7864), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7812), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4415] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7866), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4416] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7868), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7816), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4417] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7870), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4418] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7872), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7820), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4419] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7874), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7822), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4420] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7876), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7824), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4421] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7878), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7826), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4422] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7880), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7828), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4423] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7882), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4424] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7884), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7832), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4425] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7886), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4426] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7888), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7836), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4427] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7890), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4428] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7892), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_RBRACE] = ACTIONS(7840), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4429] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7894), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4430] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7896), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7844), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4431] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7898), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4432] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7900), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7848), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4433] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7902), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4434] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7904), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7852), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4435] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7906), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4436] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7908), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7856), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4437] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7910), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4438] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7912), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7860), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4439] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7914), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7862), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4440] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7916), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4441] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7918), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7866), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4442] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7920), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7868), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4443] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7922), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7870), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4444] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7924), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7872), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4445] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7926), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4446] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7928), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4447] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7930), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7878), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4448] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7932), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7880), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4449] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7934), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7882), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4450] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7936), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7884), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4451] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7938), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7886), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4452] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7940), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7888), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4453] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7942), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7890), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4454] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7944), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7892), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4455] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7946), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7894), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4456] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7948), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7896), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4457] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7950), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7898), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4458] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7952), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7900), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4459] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7954), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7902), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4460] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7956), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7904), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4461] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7958), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7906), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4462] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7960), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7908), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4463] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7962), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7910), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4464] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7964), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7912), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4465] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7914), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4466] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7916), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4467] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7970), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7918), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4468] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7972), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7920), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4469] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7974), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7922), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4470] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7976), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7924), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4471] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7978), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7926), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4472] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7980), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7928), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4473] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7982), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7930), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4474] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7984), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7932), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4475] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7986), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7934), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4476] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7988), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7936), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4477] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7990), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7938), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4478] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7992), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7940), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4479] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7994), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7942), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4480] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7996), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7944), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4481] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(7998), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7946), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4482] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7948), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4483] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8002), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7950), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4484] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8004), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7952), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4485] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7954), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4486] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8008), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7956), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4487] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8010), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7958), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4488] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8012), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7960), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4489] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8014), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7962), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4490] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8016), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7964), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4491] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8018), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7966), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4492] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8020), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7968), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4493] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8022), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4494] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8024), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4495] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8026), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7974), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4496] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8028), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7976), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4497] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8030), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7978), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4498] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8032), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7980), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4499] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8034), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7982), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4500] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8036), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7984), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4501] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8038), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7986), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4502] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8040), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7988), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4503] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8042), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7990), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4504] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8044), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7992), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4505] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8046), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7994), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4506] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8048), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7996), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4507] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8050), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(7998), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4508] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8052), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8000), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4509] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8054), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8002), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4510] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8056), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8004), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4511] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8058), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8006), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4512] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8060), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8008), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4513] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8062), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8010), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4514] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8064), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8012), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4515] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8066), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8014), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4516] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8068), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8016), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4517] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8070), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8018), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4518] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8072), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8020), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4519] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8074), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8022), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4520] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8076), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8024), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4521] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8078), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8026), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4522] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(8080), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8028), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4523] = { - [sym_indexing_suffix] = STATE(4834), - [sym_navigation_suffix] = STATE(4836), - [sym_call_suffix] = STATE(4837), - [sym_annotated_lambda] = STATE(4838), - [sym_type_arguments] = STATE(8262), - [sym_value_arguments] = STATE(4524), - [sym_lambda_literal] = STATE(4839), - [sym__equality_operator] = STATE(1793), - [sym__comparison_operator] = STATE(1791), - [sym__in_operator] = STATE(1790), - [sym__is_operator] = STATE(6222), - [sym__additive_operator] = STATE(1788), - [sym__multiplicative_operator] = STATE(1787), - [sym__as_operator] = STATE(6225), - [sym__postfix_unary_operator] = STATE(4840), - [sym__member_access_operator] = STATE(7657), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [sym_simple_identifier] = STATE(1786), - [sym__lexical_identifier] = STATE(5465), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(6703), - [anon_sym_DOT] = ACTIONS(6705), - [anon_sym_as] = ACTIONS(6707), - [anon_sym_LBRACE] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(6709), - [anon_sym_RPAREN] = ACTIONS(8082), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_GT] = ACTIONS(7497), - [anon_sym_get] = ACTIONS(3092), - [anon_sym_set] = ACTIONS(3092), - [anon_sym_STAR] = ACTIONS(7499), - [sym_label] = ACTIONS(6715), - [anon_sym_in] = ACTIONS(7501), - [anon_sym_DOT_DOT] = ACTIONS(7503), - [anon_sym_QMARK_COLON] = ACTIONS(7505), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_COLON_COLON] = ACTIONS(6727), - [anon_sym_BANG_EQ] = ACTIONS(7509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(7511), - [anon_sym_EQ_EQ] = ACTIONS(7509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(7511), - [anon_sym_LT_EQ] = ACTIONS(7513), - [anon_sym_GT_EQ] = ACTIONS(7513), - [anon_sym_BANGin] = ACTIONS(7515), - [anon_sym_is] = ACTIONS(6737), - [anon_sym_BANGis] = ACTIONS(6739), - [anon_sym_PLUS] = ACTIONS(7517), - [anon_sym_DASH] = ACTIONS(7517), - [anon_sym_SLASH] = ACTIONS(7519), - [anon_sym_PERCENT] = ACTIONS(7499), - [anon_sym_as_QMARK] = ACTIONS(6743), - [anon_sym_PLUS_PLUS] = ACTIONS(6745), - [anon_sym_DASH_DASH] = ACTIONS(6745), - [anon_sym_BANG_BANG] = ACTIONS(6745), - [anon_sym_data] = ACTIONS(3092), - [anon_sym_inner] = ACTIONS(3092), - [anon_sym_value] = ACTIONS(3092), - [anon_sym_expect] = ACTIONS(3092), - [anon_sym_actual] = ACTIONS(3092), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(1788), - [sym_safe_nav] = ACTIONS(6727), + [sym_indexing_suffix] = STATE(4748), + [sym_navigation_suffix] = STATE(4749), + [sym_call_suffix] = STATE(4750), + [sym_annotated_lambda] = STATE(4751), + [sym_type_arguments] = STATE(8210), + [sym_value_arguments] = STATE(4526), + [sym_lambda_literal] = STATE(4752), + [sym__equality_operator] = STATE(1779), + [sym__comparison_operator] = STATE(1778), + [sym__in_operator] = STATE(1777), + [sym__is_operator] = STATE(6314), + [sym__additive_operator] = STATE(1776), + [sym__multiplicative_operator] = STATE(1775), + [sym__as_operator] = STATE(6383), + [sym__postfix_unary_operator] = STATE(4753), + [sym__member_access_operator] = STATE(7782), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [sym_simple_identifier] = STATE(1774), + [sym__lexical_identifier] = STATE(5458), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(1674), + [anon_sym_LBRACK] = ACTIONS(6650), + [anon_sym_DOT] = ACTIONS(6652), + [anon_sym_as] = ACTIONS(6654), + [anon_sym_LBRACE] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(8030), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_GT] = ACTIONS(7453), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(7445), + [sym_label] = ACTIONS(6662), + [anon_sym_in] = ACTIONS(7455), + [anon_sym_DOT_DOT] = ACTIONS(7457), + [anon_sym_QMARK_COLON] = ACTIONS(7459), + [anon_sym_AMP_AMP] = ACTIONS(7461), + [anon_sym_PIPE_PIPE] = ACTIONS(7463), + [anon_sym_COLON_COLON] = ACTIONS(6674), + [anon_sym_BANG_EQ] = ACTIONS(7465), + [anon_sym_BANG_EQ_EQ] = ACTIONS(7467), + [anon_sym_EQ_EQ] = ACTIONS(7465), + [anon_sym_EQ_EQ_EQ] = ACTIONS(7467), + [anon_sym_LT_EQ] = ACTIONS(7469), + [anon_sym_GT_EQ] = ACTIONS(7469), + [anon_sym_BANGin] = ACTIONS(7471), + [anon_sym_is] = ACTIONS(6684), + [anon_sym_BANGis] = ACTIONS(6686), + [anon_sym_PLUS] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7445), + [anon_sym_as_QMARK] = ACTIONS(6690), + [anon_sym_PLUS_PLUS] = ACTIONS(6692), + [anon_sym_DASH_DASH] = ACTIONS(6692), + [anon_sym_BANG_BANG] = ACTIONS(6692), + [anon_sym_data] = ACTIONS(3048), + [anon_sym_inner] = ACTIONS(3048), + [anon_sym_value] = ACTIONS(3048), + [anon_sym_expect] = ACTIONS(3048), + [anon_sym_actual] = ACTIONS(3048), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(1736), + [sym_safe_nav] = ACTIONS(6674), [sym_multiline_comment] = ACTIONS(3), }, [4524] = { - [sym_annotated_lambda] = STATE(4880), - [sym_lambda_literal] = STATE(4839), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(3986), - [anon_sym_AT] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_RBRACK] = ACTIONS(3988), - [anon_sym_DOT] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3988), - [anon_sym_COMMA] = ACTIONS(3988), - [anon_sym_RPAREN] = ACTIONS(3988), - [anon_sym_LT] = ACTIONS(3986), - [anon_sym_GT] = ACTIONS(3986), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(3988), - [anon_sym_get] = ACTIONS(3986), - [anon_sym_set] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_DASH_GT] = ACTIONS(3988), - [sym_label] = ACTIONS(3988), - [anon_sym_in] = ACTIONS(3986), - [anon_sym_while] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3988), - [anon_sym_QMARK_COLON] = ACTIONS(3988), - [anon_sym_AMP_AMP] = ACTIONS(3988), - [anon_sym_PIPE_PIPE] = ACTIONS(3988), - [anon_sym_else] = ACTIONS(3986), - [anon_sym_COLON_COLON] = ACTIONS(3988), - [anon_sym_PLUS_EQ] = ACTIONS(3988), - [anon_sym_DASH_EQ] = ACTIONS(3988), - [anon_sym_STAR_EQ] = ACTIONS(3988), - [anon_sym_SLASH_EQ] = ACTIONS(3988), - [anon_sym_PERCENT_EQ] = ACTIONS(3988), - [anon_sym_BANG_EQ] = ACTIONS(3986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(3988), - [anon_sym_EQ_EQ] = ACTIONS(3986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3988), - [anon_sym_LT_EQ] = ACTIONS(3988), - [anon_sym_GT_EQ] = ACTIONS(3988), - [anon_sym_BANGin] = ACTIONS(3988), - [anon_sym_is] = ACTIONS(3986), - [anon_sym_BANGis] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3986), - [anon_sym_SLASH] = ACTIONS(3986), - [anon_sym_PERCENT] = ACTIONS(3986), - [anon_sym_as_QMARK] = ACTIONS(3988), - [anon_sym_PLUS_PLUS] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3988), - [anon_sym_BANG_BANG] = ACTIONS(3988), - [anon_sym_data] = ACTIONS(3986), - [anon_sym_inner] = ACTIONS(3986), - [anon_sym_value] = ACTIONS(3986), - [anon_sym_expect] = ACTIONS(3986), - [anon_sym_actual] = ACTIONS(3986), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(3988), - [sym_safe_nav] = ACTIONS(3988), + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_RBRACK] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_RPAREN] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [anon_sym_DASH_GT] = ACTIONS(3952), + [sym_label] = ACTIONS(3952), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3981), + [anon_sym_DASH_EQ] = ACTIONS(3981), + [anon_sym_STAR_EQ] = ACTIONS(3981), + [anon_sym_SLASH_EQ] = ACTIONS(3981), + [anon_sym_PERCENT_EQ] = ACTIONS(3981), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [anon_sym_expect] = ACTIONS(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), [sym_multiline_comment] = ACTIONS(3), }, [4525] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_RBRACK] = ACTIONS(4020), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_RPAREN] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4020), - [sym_label] = ACTIONS(4020), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_while] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [anon_sym_PLUS_EQ] = ACTIONS(4047), - [anon_sym_DASH_EQ] = ACTIONS(4047), - [anon_sym_STAR_EQ] = ACTIONS(4047), - [anon_sym_SLASH_EQ] = ACTIONS(4047), - [anon_sym_PERCENT_EQ] = ACTIONS(4047), - [anon_sym_BANG_EQ] = ACTIONS(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), + [sym_indexing_suffix] = STATE(7131), + [sym_navigation_suffix] = STATE(7131), + [sym__postfix_unary_operator] = STATE(7131), + [sym__member_access_operator] = STATE(7782), + [sym__postfix_unary_suffix] = STATE(7131), + [aux_sym__postfix_unary_expression_repeat1] = STATE(7131), + [sym__alpha_identifier] = ACTIONS(3950), + [anon_sym_AT] = ACTIONS(3952), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_RBRACK] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3957), + [anon_sym_as] = ACTIONS(3950), + [anon_sym_EQ] = ACTIONS(3960), + [anon_sym_LBRACE] = ACTIONS(3952), + [anon_sym_RBRACE] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(3952), + [anon_sym_COMMA] = ACTIONS(3952), + [anon_sym_RPAREN] = ACTIONS(3952), + [anon_sym_LT] = ACTIONS(3950), + [anon_sym_GT] = ACTIONS(3950), + [anon_sym_where] = ACTIONS(3950), + [anon_sym_SEMI] = ACTIONS(3952), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_STAR] = ACTIONS(3950), + [anon_sym_DASH_GT] = ACTIONS(3952), + [sym_label] = ACTIONS(3952), + [anon_sym_in] = ACTIONS(3950), + [anon_sym_while] = ACTIONS(3950), + [anon_sym_DOT_DOT] = ACTIONS(3952), + [anon_sym_QMARK_COLON] = ACTIONS(3952), + [anon_sym_AMP_AMP] = ACTIONS(3952), + [anon_sym_PIPE_PIPE] = ACTIONS(3952), + [anon_sym_else] = ACTIONS(3950), + [anon_sym_COLON_COLON] = ACTIONS(3962), + [anon_sym_PLUS_EQ] = ACTIONS(3965), + [anon_sym_DASH_EQ] = ACTIONS(3965), + [anon_sym_STAR_EQ] = ACTIONS(3965), + [anon_sym_SLASH_EQ] = ACTIONS(3965), + [anon_sym_PERCENT_EQ] = ACTIONS(3965), + [anon_sym_BANG_EQ] = ACTIONS(3950), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3952), + [anon_sym_EQ_EQ] = ACTIONS(3950), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3952), + [anon_sym_LT_EQ] = ACTIONS(3952), + [anon_sym_GT_EQ] = ACTIONS(3952), + [anon_sym_BANGin] = ACTIONS(3952), + [anon_sym_is] = ACTIONS(3950), + [anon_sym_BANGis] = ACTIONS(3952), + [anon_sym_PLUS] = ACTIONS(3950), + [anon_sym_DASH] = ACTIONS(3950), + [anon_sym_SLASH] = ACTIONS(3950), + [anon_sym_PERCENT] = ACTIONS(3950), + [anon_sym_as_QMARK] = ACTIONS(3952), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_BANG_BANG] = ACTIONS(3967), + [anon_sym_data] = ACTIONS(3950), + [anon_sym_inner] = ACTIONS(3950), + [anon_sym_value] = ACTIONS(3950), + [anon_sym_expect] = ACTIONS(3950), + [anon_sym_actual] = ACTIONS(3950), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3952), + [sym_safe_nav] = ACTIONS(3962), [sym_multiline_comment] = ACTIONS(3), }, [4526] = { - [sym_annotated_lambda] = STATE(4833), - [sym_lambda_literal] = STATE(4839), - [sym_annotation] = STATE(8331), - [sym__single_annotation] = STATE(5919), - [sym__multi_annotation] = STATE(5919), - [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8331), - [sym__alpha_identifier] = ACTIONS(4040), - [anon_sym_AT] = ACTIONS(4042), - [anon_sym_LBRACK] = ACTIONS(4042), - [anon_sym_RBRACK] = ACTIONS(4042), - [anon_sym_DOT] = ACTIONS(4040), - [anon_sym_as] = ACTIONS(4040), - [anon_sym_EQ] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_LPAREN] = ACTIONS(4042), - [anon_sym_COMMA] = ACTIONS(4042), - [anon_sym_RPAREN] = ACTIONS(4042), - [anon_sym_LT] = ACTIONS(4040), - [anon_sym_GT] = ACTIONS(4040), - [anon_sym_where] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym_get] = ACTIONS(4040), - [anon_sym_set] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4040), - [anon_sym_DASH_GT] = ACTIONS(4042), - [sym_label] = ACTIONS(4042), - [anon_sym_in] = ACTIONS(4040), - [anon_sym_while] = ACTIONS(4040), - [anon_sym_DOT_DOT] = ACTIONS(4042), - [anon_sym_QMARK_COLON] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_PIPE_PIPE] = ACTIONS(4042), - [anon_sym_else] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_PLUS_EQ] = ACTIONS(4042), - [anon_sym_DASH_EQ] = ACTIONS(4042), - [anon_sym_STAR_EQ] = ACTIONS(4042), - [anon_sym_SLASH_EQ] = ACTIONS(4042), - [anon_sym_PERCENT_EQ] = ACTIONS(4042), - [anon_sym_BANG_EQ] = ACTIONS(4040), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4042), - [anon_sym_EQ_EQ] = ACTIONS(4040), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4042), - [anon_sym_LT_EQ] = ACTIONS(4042), - [anon_sym_GT_EQ] = ACTIONS(4042), - [anon_sym_BANGin] = ACTIONS(4042), - [anon_sym_is] = ACTIONS(4040), - [anon_sym_BANGis] = ACTIONS(4042), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_SLASH] = ACTIONS(4040), - [anon_sym_PERCENT] = ACTIONS(4040), - [anon_sym_as_QMARK] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_BANG_BANG] = ACTIONS(4042), - [anon_sym_data] = ACTIONS(4040), - [anon_sym_inner] = ACTIONS(4040), - [anon_sym_value] = ACTIONS(4040), - [anon_sym_expect] = ACTIONS(4040), - [anon_sym_actual] = ACTIONS(4040), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4042), - [sym_safe_nav] = ACTIONS(4042), + [sym_annotated_lambda] = STATE(4789), + [sym_lambda_literal] = STATE(4752), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(4000), + [anon_sym_AT] = ACTIONS(4002), + [anon_sym_LBRACK] = ACTIONS(4002), + [anon_sym_RBRACK] = ACTIONS(4002), + [anon_sym_DOT] = ACTIONS(4000), + [anon_sym_as] = ACTIONS(4000), + [anon_sym_EQ] = ACTIONS(4000), + [anon_sym_LBRACE] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_LPAREN] = ACTIONS(4002), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RPAREN] = ACTIONS(4002), + [anon_sym_LT] = ACTIONS(4000), + [anon_sym_GT] = ACTIONS(4000), + [anon_sym_where] = ACTIONS(4000), + [anon_sym_SEMI] = ACTIONS(4002), + [anon_sym_get] = ACTIONS(4000), + [anon_sym_set] = ACTIONS(4000), + [anon_sym_STAR] = ACTIONS(4000), + [anon_sym_DASH_GT] = ACTIONS(4002), + [sym_label] = ACTIONS(4002), + [anon_sym_in] = ACTIONS(4000), + [anon_sym_while] = ACTIONS(4000), + [anon_sym_DOT_DOT] = ACTIONS(4002), + [anon_sym_QMARK_COLON] = ACTIONS(4002), + [anon_sym_AMP_AMP] = ACTIONS(4002), + [anon_sym_PIPE_PIPE] = ACTIONS(4002), + [anon_sym_else] = ACTIONS(4000), + [anon_sym_COLON_COLON] = ACTIONS(4002), + [anon_sym_PLUS_EQ] = ACTIONS(4002), + [anon_sym_DASH_EQ] = ACTIONS(4002), + [anon_sym_STAR_EQ] = ACTIONS(4002), + [anon_sym_SLASH_EQ] = ACTIONS(4002), + [anon_sym_PERCENT_EQ] = ACTIONS(4002), + [anon_sym_BANG_EQ] = ACTIONS(4000), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4002), + [anon_sym_EQ_EQ] = ACTIONS(4000), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4002), + [anon_sym_LT_EQ] = ACTIONS(4002), + [anon_sym_GT_EQ] = ACTIONS(4002), + [anon_sym_BANGin] = ACTIONS(4002), + [anon_sym_is] = ACTIONS(4000), + [anon_sym_BANGis] = ACTIONS(4002), + [anon_sym_PLUS] = ACTIONS(4000), + [anon_sym_DASH] = ACTIONS(4000), + [anon_sym_SLASH] = ACTIONS(4000), + [anon_sym_PERCENT] = ACTIONS(4000), + [anon_sym_as_QMARK] = ACTIONS(4002), + [anon_sym_PLUS_PLUS] = ACTIONS(4002), + [anon_sym_DASH_DASH] = ACTIONS(4002), + [anon_sym_BANG_BANG] = ACTIONS(4002), + [anon_sym_data] = ACTIONS(4000), + [anon_sym_inner] = ACTIONS(4000), + [anon_sym_value] = ACTIONS(4000), + [anon_sym_expect] = ACTIONS(4000), + [anon_sym_actual] = ACTIONS(4000), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4002), + [sym_safe_nav] = ACTIONS(4002), [sym_multiline_comment] = ACTIONS(3), }, [4527] = { - [sym_indexing_suffix] = STATE(7170), - [sym_navigation_suffix] = STATE(7170), - [sym__postfix_unary_operator] = STATE(7170), - [sym__member_access_operator] = STATE(7657), - [sym__postfix_unary_suffix] = STATE(7170), - [aux_sym__postfix_unary_expression_repeat1] = STATE(7170), - [sym__alpha_identifier] = ACTIONS(4018), - [anon_sym_AT] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4022), - [anon_sym_RBRACK] = ACTIONS(4020), - [anon_sym_DOT] = ACTIONS(4025), - [anon_sym_as] = ACTIONS(4018), - [anon_sym_EQ] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4020), - [anon_sym_LPAREN] = ACTIONS(4020), - [anon_sym_COMMA] = ACTIONS(4020), - [anon_sym_RPAREN] = ACTIONS(4020), - [anon_sym_LT] = ACTIONS(4018), - [anon_sym_GT] = ACTIONS(4018), - [anon_sym_where] = ACTIONS(4018), - [anon_sym_SEMI] = ACTIONS(4020), - [anon_sym_get] = ACTIONS(4018), - [anon_sym_set] = ACTIONS(4018), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_DASH_GT] = ACTIONS(4020), - [sym_label] = ACTIONS(4020), - [anon_sym_in] = ACTIONS(4018), - [anon_sym_while] = ACTIONS(4018), - [anon_sym_DOT_DOT] = ACTIONS(4020), - [anon_sym_QMARK_COLON] = ACTIONS(4020), - [anon_sym_AMP_AMP] = ACTIONS(4020), - [anon_sym_PIPE_PIPE] = ACTIONS(4020), - [anon_sym_else] = ACTIONS(4018), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [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(4018), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4020), - [anon_sym_EQ_EQ] = ACTIONS(4018), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4020), - [anon_sym_LT_EQ] = ACTIONS(4020), - [anon_sym_GT_EQ] = ACTIONS(4020), - [anon_sym_BANGin] = ACTIONS(4020), - [anon_sym_is] = ACTIONS(4018), - [anon_sym_BANGis] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4018), - [anon_sym_SLASH] = ACTIONS(4018), - [anon_sym_PERCENT] = ACTIONS(4018), - [anon_sym_as_QMARK] = ACTIONS(4020), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_BANG_BANG] = ACTIONS(4035), - [anon_sym_data] = ACTIONS(4018), - [anon_sym_inner] = ACTIONS(4018), - [anon_sym_value] = ACTIONS(4018), - [anon_sym_expect] = ACTIONS(4018), - [anon_sym_actual] = ACTIONS(4018), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4020), - [sym_safe_nav] = ACTIONS(4030), + [sym_annotated_lambda] = STATE(4815), + [sym_lambda_literal] = STATE(4752), + [sym_annotation] = STATE(8351), + [sym__single_annotation] = STATE(6059), + [sym__multi_annotation] = STATE(6059), + [aux_sym__annotated_delegation_specifier_repeat1] = STATE(8351), + [sym__alpha_identifier] = ACTIONS(3932), + [anon_sym_AT] = ACTIONS(3934), + [anon_sym_LBRACK] = ACTIONS(3934), + [anon_sym_RBRACK] = ACTIONS(3934), + [anon_sym_DOT] = ACTIONS(3932), + [anon_sym_as] = ACTIONS(3932), + [anon_sym_EQ] = ACTIONS(3932), + [anon_sym_LBRACE] = ACTIONS(3934), + [anon_sym_RBRACE] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3934), + [anon_sym_COMMA] = ACTIONS(3934), + [anon_sym_RPAREN] = ACTIONS(3934), + [anon_sym_LT] = ACTIONS(3932), + [anon_sym_GT] = ACTIONS(3932), + [anon_sym_where] = ACTIONS(3932), + [anon_sym_SEMI] = ACTIONS(3934), + [anon_sym_get] = ACTIONS(3932), + [anon_sym_set] = ACTIONS(3932), + [anon_sym_STAR] = ACTIONS(3932), + [anon_sym_DASH_GT] = ACTIONS(3934), + [sym_label] = ACTIONS(3934), + [anon_sym_in] = ACTIONS(3932), + [anon_sym_while] = ACTIONS(3932), + [anon_sym_DOT_DOT] = ACTIONS(3934), + [anon_sym_QMARK_COLON] = ACTIONS(3934), + [anon_sym_AMP_AMP] = ACTIONS(3934), + [anon_sym_PIPE_PIPE] = ACTIONS(3934), + [anon_sym_else] = ACTIONS(3932), + [anon_sym_COLON_COLON] = ACTIONS(3934), + [anon_sym_PLUS_EQ] = ACTIONS(3934), + [anon_sym_DASH_EQ] = ACTIONS(3934), + [anon_sym_STAR_EQ] = ACTIONS(3934), + [anon_sym_SLASH_EQ] = ACTIONS(3934), + [anon_sym_PERCENT_EQ] = ACTIONS(3934), + [anon_sym_BANG_EQ] = ACTIONS(3932), + [anon_sym_BANG_EQ_EQ] = ACTIONS(3934), + [anon_sym_EQ_EQ] = ACTIONS(3932), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3934), + [anon_sym_LT_EQ] = ACTIONS(3934), + [anon_sym_GT_EQ] = ACTIONS(3934), + [anon_sym_BANGin] = ACTIONS(3934), + [anon_sym_is] = ACTIONS(3932), + [anon_sym_BANGis] = ACTIONS(3934), + [anon_sym_PLUS] = ACTIONS(3932), + [anon_sym_DASH] = ACTIONS(3932), + [anon_sym_SLASH] = ACTIONS(3932), + [anon_sym_PERCENT] = ACTIONS(3932), + [anon_sym_as_QMARK] = ACTIONS(3934), + [anon_sym_PLUS_PLUS] = ACTIONS(3934), + [anon_sym_DASH_DASH] = ACTIONS(3934), + [anon_sym_BANG_BANG] = ACTIONS(3934), + [anon_sym_data] = ACTIONS(3932), + [anon_sym_inner] = ACTIONS(3932), + [anon_sym_value] = ACTIONS(3932), + [anon_sym_expect] = ACTIONS(3932), + [anon_sym_actual] = ACTIONS(3932), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(3934), + [sym_safe_nav] = ACTIONS(3934), [sym_multiline_comment] = ACTIONS(3), }, [4528] = { - [sym_catch_block] = STATE(4538), - [sym_finally_block] = STATE(4844), - [aux_sym_try_expression_repeat1] = STATE(4538), - [sym__alpha_identifier] = ACTIONS(4104), - [anon_sym_AT] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_RBRACK] = ACTIONS(4106), - [anon_sym_DOT] = ACTIONS(4104), - [anon_sym_as] = ACTIONS(4104), - [anon_sym_EQ] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_RPAREN] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_where] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_get] = ACTIONS(4104), - [anon_sym_set] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4104), - [anon_sym_DASH_GT] = ACTIONS(4106), - [sym_label] = ACTIONS(4106), - [anon_sym_in] = ACTIONS(4104), - [anon_sym_while] = ACTIONS(4104), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_QMARK_COLON] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_else] = ACTIONS(4104), - [anon_sym_catch] = ACTIONS(8084), - [anon_sym_finally] = ACTIONS(8086), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_BANG_EQ] = ACTIONS(4104), - [anon_sym_BANG_EQ_EQ] = ACTIONS(4106), - [anon_sym_EQ_EQ] = ACTIONS(4104), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4106), - [anon_sym_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_EQ] = ACTIONS(4106), - [anon_sym_BANGin] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4104), - [anon_sym_BANGis] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_as_QMARK] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_BANG_BANG] = ACTIONS(4106), - [anon_sym_data] = ACTIONS(4104), - [anon_sym_inner] = ACTIONS(4104), - [anon_sym_value] = ACTIONS(4104), - [anon_sym_expect] = ACTIONS(4104), - [anon_sym_actual] = ACTIONS(4104), - [sym_line_comment] = ACTIONS(3), - [sym__backtick_identifier] = ACTIONS(4106), - [sym_safe_nav] = ACTIONS(4106), + [sym_catch_block] = STATE(4531), + [sym_finally_block] = STATE(4817), + [aux_sym_try_expression_repeat1] = STATE(4531), + [sym__alpha_identifier] = ACTIONS(4044), + [anon_sym_AT] = ACTIONS(4046), + [anon_sym_LBRACK] = ACTIONS(4046), + [anon_sym_RBRACK] = ACTIONS(4046), + [anon_sym_DOT] = ACTIONS(4044), + [anon_sym_as] = ACTIONS(4044), + [anon_sym_EQ] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_RBRACE] = ACTIONS(4046), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_COMMA] = ACTIONS(4046), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_where] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_get] = ACTIONS(4044), + [anon_sym_set] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4044), + [anon_sym_DASH_GT] = ACTIONS(4046), + [sym_label] = ACTIONS(4046), + [anon_sym_in] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_DOT_DOT] = ACTIONS(4046), + [anon_sym_QMARK_COLON] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_else] = ACTIONS(4044), + [anon_sym_catch] = ACTIONS(8032), + [anon_sym_finally] = ACTIONS(8034), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_PLUS_EQ] = ACTIONS(4046), + [anon_sym_DASH_EQ] = ACTIONS(4046), + [anon_sym_STAR_EQ] = ACTIONS(4046), + [anon_sym_SLASH_EQ] = ACTIONS(4046), + [anon_sym_PERCENT_EQ] = ACTIONS(4046), + [anon_sym_BANG_EQ] = ACTIONS(4044), + [anon_sym_BANG_EQ_EQ] = ACTIONS(4046), + [anon_sym_EQ_EQ] = ACTIONS(4044), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4046), + [anon_sym_LT_EQ] = ACTIONS(4046), + [anon_sym_GT_EQ] = ACTIONS(4046), + [anon_sym_BANGin] = ACTIONS(4046), + [anon_sym_is] = ACTIONS(4044), + [anon_sym_BANGis] = ACTIONS(4046), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_SLASH] = ACTIONS(4044), + [anon_sym_PERCENT] = ACTIONS(4044), + [anon_sym_as_QMARK] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_BANG_BANG] = ACTIONS(4046), + [anon_sym_data] = ACTIONS(4044), + [anon_sym_inner] = ACTIONS(4044), + [anon_sym_value] = ACTIONS(4044), + [anon_sym_expect] = ACTIONS(4044), + [anon_sym_actual] = ACTIONS(4044), + [sym_line_comment] = ACTIONS(3), + [sym__backtick_identifier] = ACTIONS(4046), + [sym_safe_nav] = ACTIONS(4046), [sym_multiline_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3995), 28, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3990), 34, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [71] = 5, - ACTIONS(8088), 1, - anon_sym_DOT, - STATE(4531), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4143), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4145), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_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, - [146] = 5, - ACTIONS(8091), 1, - anon_sym_DOT, - STATE(4531), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4187), 27, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4189), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - 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, - [221] = 10, - ACTIONS(5490), 1, + [0] = 10, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8094), 1, + ACTIONS(8036), 1, anon_sym_COLON, - ACTIONS(8096), 1, + ACTIONS(8038), 1, anon_sym_EQ, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4579), 1, + STATE(4603), 1, sym_type_constraints, - STATE(4728), 1, + STATE(4773), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4133), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4135), 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, - [306] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4122), 29, - anon_sym_COLON, + ACTIONS(4142), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -480916,12 +480965,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4124), 33, + ACTIONS(4144), 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, @@ -480950,86 +480998,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [377] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8100), 1, - anon_sym_COLON, - STATE(4614), 1, - sym_type_constraints, - STATE(4855), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4150), 23, - anon_sym_DOT, - anon_sym_as, + [85] = 5, + ACTIONS(8042), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4152), 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, - [462] = 3, + STATE(4613), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 28, + ACTIONS(4119), 27, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -481039,7 +481016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LT, anon_sym_AMP, sym__quest, anon_sym_STAR, @@ -481058,8 +481034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4122), 34, - anon_sym_COLON, + ACTIONS(4117), 33, anon_sym_DOT, anon_sym_by, anon_sym_where, @@ -481093,159 +481068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [533] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8102), 1, - anon_sym_COLON, - STATE(4612), 1, - sym_type_constraints, - STATE(4708), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4156), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4158), 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, - [618] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3990), 29, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3995), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_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, - [689] = 5, - ACTIONS(8104), 1, + [160] = 5, + ACTIONS(8044), 1, anon_sym_catch, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4538), 2, + STATE(4531), 2, sym_catch_block, aux_sym_try_expression_repeat1, - ACTIONS(4126), 26, + ACTIONS(4110), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -481272,162 +481104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4128), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_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, - [764] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8107), 1, - anon_sym_COLON, - STATE(4609), 1, - sym_type_constraints, - STATE(4754), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4194), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4196), 32, + ACTIONS(4112), 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, - [849] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, anon_sym_LBRACE, - ACTIONS(8109), 1, - anon_sym_COLON, - STATE(4605), 1, - sym_type_constraints, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4175), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4177), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -481456,15 +481138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [934] = 5, - ACTIONS(8111), 1, - anon_sym_LT, - STATE(4602), 1, - sym_type_arguments, + [235] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 27, + ACTIONS(4095), 28, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -481474,6 +481152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_LT, anon_sym_AMP, sym__quest, anon_sym_STAR, @@ -481492,7 +481171,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4169), 33, + ACTIONS(4093), 34, + anon_sym_COLON, anon_sym_DOT, anon_sym_by, anon_sym_where, @@ -481526,25 +481206,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [1009] = 5, - ACTIONS(8113), 1, - anon_sym_LT, - STATE(4553), 1, - sym_type_arguments, + [306] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8047), 1, + anon_sym_COLON, + STATE(4580), 1, + sym_type_constraints, + STATE(4781), 1, + sym__block, + STATE(4791), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4169), 27, + ACTIONS(4123), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, + anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -481562,12 +481248,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4171), 33, + ACTIONS(4125), 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, @@ -481596,15 +481281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1084] = 5, - ACTIONS(8115), 1, - anon_sym_DOT, - STATE(4530), 1, - aux_sym_user_type_repeat1, + [391] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 27, + ACTIONS(3938), 29, + anon_sym_COLON, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -481632,7 +481315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4164), 33, + ACTIONS(3943), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -481666,104 +481349,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1159] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - STATE(4612), 1, - sym_type_constraints, - STATE(4708), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [462] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 23, - anon_sym_DOT, - anon_sym_as, + ACTIONS(3943), 28, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3938), 34, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4158), 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, - [1241] = 7, - STATE(5089), 1, - sym_annotated_lambda, - STATE(5124), 1, - sym_lambda_literal, + [533] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8339), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(3986), 24, + ACTIONS(4093), 29, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -481778,16 +481451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3988), 31, - sym__automatic_semicolon, + ACTIONS(4095), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -481810,16 +481485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1319] = 5, - ACTIONS(8118), 1, - sym__quest, - STATE(4556), 1, - aux_sym_nullable_type_repeat1, + [604] = 5, + ACTIONS(8049), 1, + anon_sym_DOT, + STATE(4541), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4276), 26, - anon_sym_DOT, + ACTIONS(4103), 27, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -481828,6 +481502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -481845,7 +481521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4278), 33, + ACTIONS(4105), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -481879,22 +481555,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1393] = 3, + [679] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8052), 1, + anon_sym_COLON, + STATE(4584), 1, + sym_type_constraints, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 28, + ACTIONS(4087), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -481912,12 +481597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 33, + ACTIONS(4089), 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, @@ -481946,23 +481630,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1463] = 4, - ACTIONS(8120), 1, - anon_sym_AMP, + [764] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8054), 1, + anon_sym_COLON, + STATE(4583), 1, + sym_type_constraints, + STATE(4722), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 27, + ACTIONS(4077), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -481980,12 +481672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4317), 33, + ACTIONS(4079), 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, @@ -482014,98 +481705,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1535] = 11, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4044), 1, - anon_sym_EQ, - STATE(7657), 1, - sym__member_access_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4030), 2, - sym_safe_nav, - anon_sym_COLON_COLON, - ACTIONS(4035), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(4047), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - STATE(7170), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(4020), 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(4018), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [1621] = 9, - ACTIONS(5490), 1, + [849] = 10, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8096), 1, + ACTIONS(8038), 1, anon_sym_EQ, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4609), 1, + ACTIONS(8056), 1, + anon_sym_COLON, + STATE(4588), 1, sym_type_constraints, - STATE(4754), 1, + STATE(4697), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 23, + ACTIONS(4097), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -482129,7 +481747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 32, + ACTIONS(4099), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482162,29 +481780,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1703] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - STATE(4605), 1, - sym_type_constraints, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [934] = 5, + ACTIONS(8058), 1, + anon_sym_DOT, + STATE(4543), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 23, - anon_sym_DOT, + ACTIONS(4070), 27, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -482202,11 +481816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 32, + ACTIONS(4072), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -482235,24 +481850,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1785] = 5, - ACTIONS(8122), 1, - sym__quest, - STATE(4552), 1, - aux_sym_nullable_type_repeat1, + [1009] = 5, + ACTIONS(8061), 1, + anon_sym_LT, + STATE(4564), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4282), 26, + ACTIONS(4117), 27, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_by, - anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -482270,7 +481886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4284), 33, + ACTIONS(4119), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482304,12 +481920,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1859] = 3, + [1084] = 5, + ACTIONS(8063), 1, + anon_sym_DOT, + STATE(4543), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4305), 28, - anon_sym_DOT, + ACTIONS(4129), 27, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -482337,7 +481956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4307), 33, + ACTIONS(4131), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482371,15 +481990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [1929] = 5, - ACTIONS(8118), 1, - sym__quest, - STATE(4556), 1, - aux_sym_nullable_type_repeat1, + [1159] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 26, + ACTIONS(4129), 28, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -482389,6 +482004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -482406,7 +482023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 33, + ACTIONS(4131), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482440,26 +482057,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2003] = 4, - ACTIONS(8125), 1, - anon_sym_AMP, + [1229] = 7, + STATE(5204), 1, + sym_annotated_lambda, + STATE(5245), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 27, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8343), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(3932), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -482474,18 +482096,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4317), 33, + ACTIONS(3934), 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, @@ -482508,19 +482128,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2075] = 5, - ACTIONS(8127), 1, + [1307] = 5, + ACTIONS(8066), 1, + anon_sym_DOT, + STATE(4546), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4131), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, sym__quest, - STATE(4552), 1, - aux_sym_nullable_type_repeat1, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4129), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [1381] = 8, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8069), 1, + anon_sym_COLON, + STATE(4780), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4248), 26, + ACTIONS(4250), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -482543,12 +482236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4250), 33, + ACTIONS(4252), 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, @@ -482577,29 +482269,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2149] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - STATE(4604), 1, - sym_type_constraints, - STATE(4699), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [1461] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 23, + ACTIONS(4244), 28, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -482617,11 +482302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 32, + ACTIONS(4246), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -482650,25 +482336,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2231] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, + [1531] = 8, + ACTIONS(5410), 1, anon_sym_LBRACE, - STATE(4598), 1, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5607), 1, + anon_sym_COLON, + STATE(4692), 1, sym_type_constraints, - STATE(4787), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + STATE(4702), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 23, + ACTIONS(3236), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -482690,7 +482375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 32, + ACTIONS(3240), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482723,26 +482408,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2313] = 8, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, + [1611] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8129), 1, + ACTIONS(8071), 1, anon_sym_COLON, - STATE(4772), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + STATE(4617), 1, + sym_type_constraints, + STATE(4710), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 24, + ACTIONS(4202), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -482762,7 +482447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4208), 32, + ACTIONS(4204), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -482795,15 +482480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2393] = 5, - ACTIONS(8131), 1, + [1691] = 5, + ACTIONS(8073), 1, anon_sym_DOT, - STATE(4560), 1, + STATE(4546), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 27, + ACTIONS(4072), 27, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -482831,7 +482516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4187), 32, + ACTIONS(4070), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -482864,28 +482549,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [2467] = 8, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8134), 1, - anon_sym_COLON, - STATE(4804), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [1765] = 4, + ACTIONS(8075), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 24, + ACTIONS(4164), 27, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -482903,11 +482583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 32, + ACTIONS(4166), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -482936,24 +482617,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2547] = 7, - STATE(5124), 1, - sym_lambda_literal, - STATE(5194), 1, - sym_annotated_lambda, + [1837] = 11, + ACTIONS(3954), 1, + anon_sym_LBRACK, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(3960), 1, + anon_sym_EQ, + STATE(7782), 1, + sym__member_access_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8339), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - ACTIONS(4040), 24, + ACTIONS(3962), 2, + sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(3967), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(3965), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7131), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(3952), 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(3950), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [1923] = 5, + ACTIONS(8077), 1, + sym__quest, + STATE(4569), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4264), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -482961,6 +482712,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, @@ -482975,16 +482727,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4042), 31, - sym__automatic_semicolon, + ACTIONS(4266), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_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, + [1997] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(5578), 1, + anon_sym_COLON, + STATE(4658), 1, + sym_type_constraints, + STATE(4804), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3226), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3230), 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, @@ -483007,25 +482833,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2625] = 3, + [2077] = 7, + STATE(5226), 1, + sym_annotated_lambda, + STATE(5245), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4187), 28, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8343), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(4000), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -483040,18 +482872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4189), 33, + ACTIONS(4002), 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, @@ -483074,165 +482904,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2695] = 5, - ACTIONS(8136), 1, - anon_sym_DOT, - STATE(4560), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4145), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4143), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [2769] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, + [2155] = 9, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8138), 1, - anon_sym_COLON, - STATE(4660), 1, - sym_type_constraints, - STATE(4713), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4200), 24, - anon_sym_DOT, - anon_sym_as, + ACTIONS(8038), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4202), 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, - [2849] = 8, - ACTIONS(5484), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5663), 1, - anon_sym_COLON, - STATE(4629), 1, + STATE(4579), 1, sym_type_constraints, - STATE(4810), 1, - sym_enum_class_body, + STATE(4781), 1, + sym__block, + STATE(4835), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 24, + ACTIONS(4260), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -483254,7 +482944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 32, + ACTIONS(4262), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483287,21 +482977,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [2929] = 8, - ACTIONS(5490), 1, + [2237] = 8, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(5494), 1, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8140), 1, + ACTIONS(8079), 1, anon_sym_COLON, - STATE(4683), 1, + STATE(4674), 1, sym_type_constraints, - STATE(4842), 1, + STATE(4760), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 24, + ACTIONS(4274), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -483326,7 +483016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 32, + ACTIONS(4276), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483359,96 +483049,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3009] = 11, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(4025), 1, - anon_sym_DOT, - ACTIONS(4028), 1, - anon_sym_EQ, - STATE(7657), 1, - sym__member_access_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4030), 2, - sym_safe_nav, - anon_sym_COLON_COLON, - ACTIONS(4035), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - ACTIONS(4033), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - STATE(7170), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(4020), 20, - sym__automatic_semicolon, - anon_sym_AT, + [2317] = 8, + ACTIONS(5410), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - sym__backtick_identifier, - ACTIONS(4018), 22, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5416), 1, anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [3095] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8142), 1, + ACTIONS(8081), 1, anon_sym_COLON, - STATE(4650), 1, + STATE(4691), 1, sym_type_constraints, - STATE(4842), 1, + STATE(4710), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 24, + ACTIONS(4202), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -483473,7 +483088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 32, + ACTIONS(4204), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483506,21 +483121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3175] = 8, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, + [2397] = 8, + ACTIONS(5410), 1, anon_sym_LBRACE, - ACTIONS(5661), 1, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5590), 1, anon_sym_COLON, - STATE(4651), 1, + STATE(4690), 1, sym_type_constraints, - STATE(4775), 1, - sym_class_body, + STATE(4733), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(3218), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -483545,7 +483160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 32, + ACTIONS(3222), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483578,24 +483193,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3255] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, + [2477] = 9, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(5659), 1, - anon_sym_COLON, - STATE(4643), 1, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + STATE(4604), 1, sym_type_constraints, - STATE(4775), 1, - sym_enum_class_body, + STATE(4781), 1, + sym__block, + STATE(4821), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(4230), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -483617,7 +483233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 32, + ACTIONS(4232), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483650,22 +483266,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3335] = 3, + [2559] = 8, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8083), 1, + anon_sym_COLON, + STATE(4781), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 28, + ACTIONS(4196), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -483683,12 +483305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4311), 33, + ACTIONS(4198), 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, @@ -483717,24 +483338,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3405] = 8, - ACTIONS(5490), 1, + [2639] = 9, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(5494), 1, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8144), 1, - anon_sym_COLON, - STATE(4691), 1, + STATE(4603), 1, sym_type_constraints, - STATE(4722), 1, - sym_class_body, + STATE(4773), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 24, + ACTIONS(4142), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -483756,7 +483378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 32, + ACTIONS(4144), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -483789,28 +483411,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3485] = 8, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8146), 1, - anon_sym_COLON, - STATE(4870), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [2721] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 24, + ACTIONS(4234), 28, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -483828,11 +483444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4291), 32, + ACTIONS(4236), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -483861,28 +483478,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3565] = 8, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(5655), 1, - anon_sym_COLON, - STATE(4639), 1, - sym_type_constraints, - STATE(4764), 1, - sym_class_body, + [2791] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 24, + ACTIONS(4148), 28, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -483900,11 +483511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3292), 32, + ACTIONS(4150), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -483933,93 +483545,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3645] = 5, - ACTIONS(8148), 1, + [2861] = 11, + ACTIONS(3954), 1, + anon_sym_LBRACK, + ACTIONS(3957), 1, anon_sym_DOT, - STATE(4564), 1, - aux_sym_user_type_repeat1, + ACTIONS(3978), 1, + anon_sym_EQ, + STATE(7782), 1, + sym__member_access_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 27, + ACTIONS(3962), 2, + sym_safe_nav, + anon_sym_COLON_COLON, + ACTIONS(3967), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + ACTIONS(3981), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + STATE(7131), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(3952), 20, sym__automatic_semicolon, - sym__string_start, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_as_QMARK, sym__backtick_identifier, - ACTIONS(4162), 32, - anon_sym_by, + ACTIONS(3950), 22, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [3719] = 7, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, + [2947] = 8, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4617), 1, - sym_type_constraints, - STATE(4799), 1, - sym_class_body, + ACTIONS(8085), 1, + anon_sym_COLON, + STATE(4781), 1, + sym__block, + STATE(4832), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4468), 24, + ACTIONS(4238), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -484039,7 +483659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4470), 32, + ACTIONS(4240), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484072,24 +483692,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3796] = 7, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, + [3027] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4734), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + ACTIONS(5605), 1, + anon_sym_COLON, + STATE(4689), 1, + sym_type_constraints, + STATE(4733), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 24, + ACTIONS(3218), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -484109,7 +483731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 32, + ACTIONS(3222), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484142,21 +483764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3873] = 7, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - STATE(4855), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [3107] = 5, + ACTIONS(8087), 1, + sym__quest, + STATE(4569), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 24, + ACTIONS(4280), 26, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -484179,11 +483799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 32, + ACTIONS(4282), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -484212,24 +483833,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [3950] = 7, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4683), 1, - sym_type_constraints, - STATE(4842), 1, - sym_class_body, + [3181] = 5, + ACTIONS(8090), 1, + sym__quest, + STATE(4554), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 24, + ACTIONS(4208), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -484249,11 +483868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 32, + ACTIONS(4210), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -484282,26 +483902,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4027] = 7, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4671), 1, - sym_type_constraints, - STATE(4718), 1, - sym_class_body, + [3255] = 4, + ACTIONS(8092), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 24, + ACTIONS(4164), 27, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -484319,11 +483936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4509), 32, + ACTIONS(4166), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -484352,25 +483970,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4104] = 3, + [3327] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + STATE(4588), 1, + sym_type_constraints, + STATE(4697), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4419), 27, + ACTIONS(4097), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -484384,12 +484010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4421), 33, + ACTIONS(4099), 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, @@ -484418,20 +484043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4173] = 6, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(8150), 1, - anon_sym_COLON, - STATE(4720), 1, - sym_class_body, + [3409] = 5, + ACTIONS(8090), 1, + sym__quest, + STATE(4554), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4405), 25, + ACTIONS(4270), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -484454,11 +484078,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4407), 32, + ACTIONS(4272), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -484487,25 +484112,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4248] = 3, + [3483] = 5, + ACTIONS(8094), 1, + anon_sym_DOT, + STATE(4551), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3990), 28, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4105), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4103), 32, anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [3557] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + STATE(4584), 1, + sym_type_constraints, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4087), 23, + anon_sym_DOT, + anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -484520,15 +484221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3995), 32, - sym__automatic_semicolon, + ACTIONS(4089), 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, @@ -484553,19 +484254,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4317] = 7, - ACTIONS(5484), 1, + [3639] = 8, + ACTIONS(5410), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5416), 1, anon_sym_where, - STATE(4666), 1, + ACTIONS(8096), 1, + anon_sym_COLON, + STATE(4676), 1, sym_type_constraints, - STATE(4773), 1, + STATE(4759), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 24, + ACTIONS(4152), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -484590,7 +484293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 32, + ACTIONS(4154), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484623,30 +484326,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4394] = 7, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4677), 1, - sym_type_constraints, - STATE(4773), 1, - sym_class_body, + [3719] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 24, + ACTIONS(4331), 27, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -484660,11 +484358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 32, + ACTIONS(4333), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -484693,19 +484392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4471] = 7, - ACTIONS(8096), 1, + [3788] = 7, + ACTIONS(8038), 1, anon_sym_EQ, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4804), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 24, + ACTIONS(4196), 24, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -484730,7 +484429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 32, + ACTIONS(4198), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484763,24 +484462,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4548] = 7, - ACTIONS(5484), 1, + [3865] = 7, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - STATE(4657), 1, - sym_type_constraints, - STATE(4779), 1, - sym_enum_class_body, + STATE(4781), 1, + sym__block, + STATE(4859), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4460), 24, + ACTIONS(4443), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -484800,7 +484499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4462), 32, + ACTIONS(4445), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484833,24 +484532,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4625] = 7, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, + [3942] = 7, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4691), 1, - sym_type_constraints, STATE(4722), 1, - sym_class_body, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 24, + ACTIONS(4077), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -484870,7 +484569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 32, + ACTIONS(4079), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484903,19 +484602,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4702] = 7, - ACTIONS(5484), 1, + [4019] = 7, + ACTIONS(5410), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5416), 1, anon_sym_where, STATE(4660), 1, sym_type_constraints, - STATE(4713), 1, + STATE(4811), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 24, + ACTIONS(4447), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -484940,7 +484639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 32, + ACTIONS(4449), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -484973,21 +484672,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4779] = 5, - ACTIONS(8152), 1, - aux_sym_unsigned_literal_token1, - ACTIONS(8154), 1, - anon_sym_L, + [4096] = 7, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + STATE(4676), 1, + sym_type_constraints, + STATE(4759), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4499), 25, + ACTIONS(4152), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -485007,12 +484709,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4501), 33, + ACTIONS(4154), 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, @@ -485041,14 +484742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4852] = 3, + [4173] = 7, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 27, + ACTIONS(4087), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -485058,8 +484766,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, @@ -485073,12 +484779,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 33, + ACTIONS(4089), 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, @@ -485107,91 +484812,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [4921] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + [4250] = 7, + ACTIONS(8038), 1, anon_sym_EQ, + ACTIONS(8040), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4256), 33, - anon_sym_DOT, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [4990] = 3, + STATE(4697), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 28, - anon_sym_COLON, + ACTIONS(4097), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -485206,15 +484849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4124), 32, - sym__automatic_semicolon, + ACTIONS(4099), 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, @@ -485239,89 +484882,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5059] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4311), 27, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, + [4327] = 7, + ACTIONS(5410), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4309), 33, - anon_sym_DOT, - anon_sym_by, + ACTIONS(5416), 1, anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [5128] = 6, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - anon_sym_COLON, - STATE(4785), 1, - sym_class_body, + STATE(4670), 1, + sym_type_constraints, + STATE(4772), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 25, + ACTIONS(4359), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -485341,7 +484919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 32, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485374,89 +484952,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5203] = 7, - ACTIONS(8158), 1, - anon_sym_catch, - ACTIONS(8160), 1, - anon_sym_finally, - STATE(5132), 1, - sym_finally_block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4619), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4104), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4106), 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, - [5280] = 7, - ACTIONS(8096), 1, + [4404] = 7, + ACTIONS(8038), 1, anon_sym_EQ, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4791), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, + STATE(4837), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 24, + ACTIONS(4416), 24, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -485481,7 +484989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 32, + ACTIONS(4418), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485514,85 +485022,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5357] = 3, + [4481] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 27, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4398), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4400), 33, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4187), 33, + [4550] = 7, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + STATE(4773), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4142), 24, anon_sym_DOT, - anon_sym_by, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [5426] = 7, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(4144), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [4627] = 7, + ACTIONS(5416), 1, anon_sym_where, - STATE(4685), 1, + ACTIONS(5432), 1, + anon_sym_LBRACE, + STATE(4662), 1, sym_type_constraints, - STATE(4704), 1, - sym_enum_class_body, + STATE(4772), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4359), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -485617,7 +485195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 32, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485650,24 +485228,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5503] = 7, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, + [4704] = 7, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4729), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + STATE(4677), 1, + sym_type_constraints, + STATE(4693), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4393), 24, + ACTIONS(4335), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -485687,7 +485265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4395), 32, + ACTIONS(4337), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -485720,11 +485298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5580] = 3, + [4781] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 27, + ACTIONS(4131), 27, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -485752,7 +485330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4305), 33, + ACTIONS(4129), 33, anon_sym_DOT, anon_sym_by, anon_sym_where, @@ -485786,21 +485364,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [5649] = 5, - ACTIONS(8162), 1, - anon_sym_by, - STATE(4711), 1, - sym_value_arguments, + [4850] = 7, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, + anon_sym_LBRACE, + STATE(4685), 1, + sym_type_constraints, + STATE(4699), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 25, + ACTIONS(4455), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -485820,12 +485401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 33, + ACTIONS(4457), 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, @@ -485854,26 +485434,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5722] = 7, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - STATE(4787), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [4927] = 4, + ACTIONS(4162), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 24, + ACTIONS(4158), 27, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_while, @@ -485891,17 +485468,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 32, + ACTIONS(4160), 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, @@ -485924,21 +485501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5799] = 7, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, - anon_sym_LBRACE, - STATE(4699), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [4998] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 24, + ACTIONS(4369), 27, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -485948,6 +485518,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, @@ -485961,11 +485533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 32, + ACTIONS(4371), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -485994,89 +485567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [5876] = 7, - ACTIONS(5490), 1, + [5067] = 7, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(5494), 1, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4674), 1, + STATE(4617), 1, sym_type_constraints, - STATE(4704), 1, + STATE(4710), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4425), 32, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [5953] = 7, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - STATE(4650), 1, - sym_type_constraints, - STATE(4842), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4268), 24, + ACTIONS(4202), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -486101,7 +485604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 32, + ACTIONS(4204), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486134,24 +485637,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6030] = 7, - ACTIONS(5484), 1, + [5144] = 7, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - STATE(4667), 1, - sym_type_constraints, - STATE(4746), 1, - sym_enum_class_body, + STATE(4781), 1, + sym__block, + STATE(4841), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4415), 24, + ACTIONS(4451), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -486171,7 +485674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4417), 32, + ACTIONS(4453), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486204,21 +485707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6107] = 7, - ACTIONS(8096), 1, - anon_sym_EQ, + [5221] = 5, ACTIONS(8098), 1, - anon_sym_LBRACE, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + anon_sym_DOT, + STATE(4541), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 24, - anon_sym_DOT, + ACTIONS(4103), 25, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -486241,11 +485741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 32, + ACTIONS(4105), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -486274,27 +485775,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6184] = 4, - ACTIONS(4325), 1, - anon_sym_DASH_GT, + [5294] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 27, + ACTIONS(4343), 27, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - 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, @@ -486308,7 +485807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 32, + ACTIONS(4345), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486319,6 +485818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -486341,18 +485841,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6255] = 5, - ACTIONS(8164), 1, - anon_sym_DOT, - STATE(4530), 1, - aux_sym_user_type_repeat1, + [5363] = 5, + ACTIONS(8101), 1, + anon_sym_by, + STATE(4885), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 25, + ACTIONS(4347), 25, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -486375,7 +485875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4164), 33, + ACTIONS(4349), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486409,24 +485909,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6328] = 7, - ACTIONS(8096), 1, - anon_sym_EQ, - ACTIONS(8098), 1, + [5436] = 7, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4754), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + STATE(4674), 1, + sym_type_constraints, + STATE(4760), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 24, + ACTIONS(4274), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -486446,7 +485946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 32, + ACTIONS(4276), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486479,11 +485979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6405] = 3, + [5513] = 5, + ACTIONS(8103), 1, + aux_sym_unsigned_literal_token1, + ACTIONS(8105), 1, + anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4446), 27, + ACTIONS(4402), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -486496,8 +486000,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, @@ -486511,7 +486013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4448), 33, + ACTIONS(4404), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486545,19 +486047,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6474] = 7, - ACTIONS(8096), 1, + [5586] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4093), 28, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, anon_sym_EQ, - ACTIONS(8098), 1, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4095), 32, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(4708), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [5655] = 7, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + STATE(4781), 1, + sym__block, + STATE(4821), 1, sym_function_body, - STATE(4871), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 24, + anon_sym_DOT, + 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_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4232), 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, + [5732] = 7, + ACTIONS(8038), 1, + anon_sym_EQ, + ACTIONS(8040), 1, + anon_sym_LBRACE, + STATE(4781), 1, sym__block, + STATE(4835), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 24, + ACTIONS(4260), 24, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -486582,7 +486220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 32, + ACTIONS(4262), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486615,25 +486253,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6551] = 3, + [5809] = 7, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + STATE(4691), 1, + sym_type_constraints, + STATE(4710), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4401), 27, + ACTIONS(4202), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -486647,12 +486290,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4403), 33, + ACTIONS(4204), 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, + [5886] = 7, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, anon_sym_LBRACE, + STATE(4678), 1, + sym_type_constraints, + STATE(4704), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4412), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4414), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -486681,18 +486393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6620] = 3, + [5963] = 7, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + STATE(4654), 1, + sym_type_constraints, + STATE(4828), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 26, - anon_sym_COLON, + ACTIONS(4420), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -486712,12 +486430,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4599), 33, + ACTIONS(4422), 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, @@ -486746,15 +486463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6688] = 5, - ACTIONS(5494), 1, + [6040] = 6, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4697), 1, + ACTIONS(8107), 1, + anon_sym_COLON, + STATE(4830), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 25, + ACTIONS(4353), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -486780,7 +486499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4674), 32, + ACTIONS(4355), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -486813,15 +486532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6760] = 5, - ACTIONS(8167), 1, - anon_sym_DOT, - STATE(4641), 1, - aux_sym_user_type_repeat1, + [6115] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 26, + ACTIONS(3938), 28, + anon_sym_COLON, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -486848,7 +486565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4164), 31, + ACTIONS(3943), 32, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -486858,6 +486575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -486880,28 +486598,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6832] = 5, - ACTIONS(8170), 1, - anon_sym_catch, + [6184] = 7, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + STATE(4682), 1, + sym_type_constraints, + STATE(4693), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4619), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - ACTIONS(4126), 25, + ACTIONS(4335), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -486915,16 +486635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4128), 31, - sym__automatic_semicolon, + ACTIONS(4337), 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, @@ -486947,31 +486668,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [6904] = 10, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(8173), 1, - anon_sym_COLON, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_LBRACE, - STATE(5046), 1, - sym_type_constraints, - STATE(5319), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + [6261] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4177), 22, + ACTIONS(4150), 27, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -486988,7 +486700,10 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4175), 30, + ACTIONS(4148), 33, + anon_sym_DOT, + anon_sym_by, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -487019,80 +486734,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [6986] = 5, - ACTIONS(8179), 1, - anon_sym_COMMA, - STATE(4663), 1, - aux_sym_type_constraints_repeat1, + [6330] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4371), 25, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4246), 27, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4244), 33, + anon_sym_DOT, + anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4373), 32, - sym_safe_nav, + [6399] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4236), 27, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_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_COMMA, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [7058] = 4, - ACTIONS(8162), 1, + ACTIONS(4234), 33, + anon_sym_DOT, anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [6468] = 7, + ACTIONS(8109), 1, + anon_sym_catch, + ACTIONS(8111), 1, + anon_sym_finally, + STATE(5208), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 25, + STATE(4688), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4044), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -487103,7 +486890,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, @@ -487118,18 +486904,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 33, + ACTIONS(4046), 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, @@ -487152,15 +486936,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7128] = 3, + [6545] = 6, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(8113), 1, + anon_sym_COLON, + STATE(4767), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4553), 26, + ACTIONS(4325), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -487183,12 +486972,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4556), 33, + ACTIONS(4327), 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, @@ -487217,23 +487005,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7196] = 3, + [6620] = 5, + ACTIONS(8115), 1, + anon_sym_LT, + STATE(4865), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4559), 26, + ACTIONS(4117), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_by, - anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -487248,18 +487040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4561), 33, + ACTIONS(4119), 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, @@ -487282,12 +487072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7264] = 3, + [6692] = 5, + ACTIONS(5432), 1, + anon_sym_LBRACE, + STATE(4693), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 26, - anon_sym_COLON, + ACTIONS(4335), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -487313,12 +487106,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 33, + ACTIONS(4337), 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, @@ -487347,18 +487139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7332] = 5, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4764), 1, - sym_class_body, + [6764] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 25, + ACTIONS(4634), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -487381,11 +487170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3292), 32, + ACTIONS(4636), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -487414,11 +487204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7404] = 3, + [6832] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4545), 26, + ACTIONS(4642), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -487445,7 +487235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4547), 33, + ACTIONS(4644), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -487479,83 +487269,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7472] = 3, + [6900] = 5, + ACTIONS(8073), 1, + anon_sym_DOT, + STATE(4551), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4529), 26, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4105), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4103), 32, anon_sym_by, - anon_sym_LT, - anon_sym_GT, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4532), 33, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_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, - [7540] = 5, - ACTIONS(5484), 1, - anon_sym_LBRACE, - STATE(4713), 1, - sym_enum_class_body, + [6972] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 25, + ACTIONS(4652), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -487578,11 +487367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 32, + ACTIONS(4654), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -487611,96 +487401,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [7612] = 3, + [7040] = 5, + ACTIONS(8117), 1, + sym__quest, + STATE(4622), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4724), 26, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4282), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4280), 32, + anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4726), 33, - sym_safe_nav, + [7112] = 5, + ACTIONS(8120), 1, + sym__quest, + STATE(4624), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4272), 25, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [7680] = 10, - ACTIONS(5754), 1, + ACTIONS(4270), 32, + anon_sym_by, anon_sym_where, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_LBRACE, - ACTIONS(8181), 1, - anon_sym_COLON, - STATE(5056), 1, - sym_type_constraints, - STATE(5399), 1, - sym__block, - STATE(5411), 1, - sym_function_body, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [7184] = 5, + ACTIONS(8122), 1, + sym__quest, + STATE(4622), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 22, + ACTIONS(4266), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -487717,7 +487569,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4194), 30, + ACTIONS(4264), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -487748,96 +487602,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [7762] = 3, + [7256] = 4, + ACTIONS(4162), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4535), 26, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4160), 26, + 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, + sym__quest, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4158), 32, + anon_sym_by, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4537), 33, - sym_safe_nav, + [7326] = 4, + ACTIONS(8124), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4166), 26, + 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, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [7830] = 10, - ACTIONS(5754), 1, + ACTIONS(4164), 32, + anon_sym_by, anon_sym_where, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_LBRACE, - ACTIONS(8183), 1, - anon_sym_COLON, - STATE(5032), 1, - sym_type_constraints, - STATE(5362), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [7396] = 4, + ACTIONS(8126), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4158), 22, + ACTIONS(4166), 26, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -487854,7 +487767,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4156), 30, + ACTIONS(4164), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -487885,13 +487800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [7912] = 4, - ACTIONS(4325), 1, - anon_sym_DASH_GT, + [7466] = 5, + ACTIONS(8120), 1, + sym__quest, + STATE(4624), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 26, + ACTIONS(4210), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -487901,7 +487818,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, @@ -487918,7 +487834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4321), 32, + ACTIONS(4208), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -487951,15 +487867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [7982] = 3, + [7538] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4720), 26, - anon_sym_COLON, + ACTIONS(4656), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -487982,7 +487898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4722), 33, + ACTIONS(4659), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -488016,81 +487932,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8050] = 4, - ACTIONS(8185), 1, - anon_sym_AMP, + [7606] = 4, + ACTIONS(8101), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 26, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4347), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4349), 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, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4315), 32, + [7676] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4599), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, anon_sym_by, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [8120] = 5, - ACTIONS(8187), 1, - anon_sym_DOT, - STATE(4637), 1, - aux_sym_user_type_repeat1, + ACTIONS(4601), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_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, + [7744] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4187), 26, + ACTIONS(4670), 26, + anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -488099,10 +488077,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -488117,16 +488094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4189), 31, - sym__automatic_semicolon, + ACTIONS(4673), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -488149,14 +488128,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8192] = 4, - ACTIONS(8190), 1, - anon_sym_AT2, + [7812] = 5, + ACTIONS(8128), 1, + anon_sym_COMMA, + STATE(4633), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 26, + ACTIONS(4373), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4375), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [7884] = 4, + STATE(4680), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4513), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -488182,8 +488227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 32, + ACTIONS(4515), 33, sym_safe_nav, + anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, @@ -488215,18 +488261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8262] = 5, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4722), 1, - sym_class_body, + [7954] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 25, + ACTIONS(4676), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -488249,11 +488292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 32, + ACTIONS(4678), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -488282,25 +488326,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8334] = 10, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(8175), 1, + [8022] = 5, + ACTIONS(8131), 1, + anon_sym_COMMA, + STATE(4633), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4388), 25, + anon_sym_DOT, + anon_sym_as, anon_sym_EQ, - ACTIONS(8177), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4390), 32, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8192), 1, + 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8094] = 10, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8133), 1, anon_sym_COLON, - STATE(5001), 1, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5036), 1, sym_type_constraints, - STATE(5377), 1, + STATE(5312), 1, sym_function_body, - STATE(5399), 1, + STATE(5344), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4152), 22, + ACTIONS(4125), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -488323,7 +488434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4150), 30, + ACTIONS(4123), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -488354,15 +488465,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [8416] = 5, - ACTIONS(8194), 1, + [8176] = 5, + ACTIONS(8131), 1, + anon_sym_COMMA, + STATE(4636), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4394), 25, anon_sym_DOT, - STATE(4637), 1, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4396), 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, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [8248] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4270), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4272), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_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, + [8316] = 5, + ACTIONS(8139), 1, + anon_sym_DOT, + STATE(4643), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4143), 26, + ACTIONS(4070), 26, anon_sym_as, anon_sym_EQ, anon_sym_by, @@ -488389,7 +488632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4145), 31, + ACTIONS(4072), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -488421,25 +488664,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8488] = 10, - ACTIONS(5770), 1, + [8388] = 10, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8197), 1, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8142), 1, anon_sym_COLON, - ACTIONS(8199), 1, + ACTIONS(8144), 1, anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4943), 1, - sym_type_constraints, - STATE(5134), 1, + STATE(4773), 1, sym_function_body, - STATE(5152), 1, + STATE(4781), 1, sym__block, + STATE(5021), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4133), 22, + ACTIONS(4142), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -488448,6 +488691,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, @@ -488462,14 +488706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4135), 30, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -488493,21 +488736,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8570] = 5, - ACTIONS(5484), 1, + [8470] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4842), 1, - sym_enum_class_body, + ACTIONS(8144), 1, + anon_sym_EQ, + ACTIONS(8146), 1, + anon_sym_COLON, + STATE(4697), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5025), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 25, + ACTIONS(4097), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -488527,17 +488778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 32, + ACTIONS(4099), 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, @@ -488560,31 +488808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8642] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8203), 1, - anon_sym_COLON, - STATE(4942), 1, - sym_type_constraints, - STATE(5079), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [8552] = 5, + ACTIONS(8148), 1, + anon_sym_DOT, + STATE(4643), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 22, - anon_sym_DOT, + ACTIONS(4129), 26, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -488601,11 +488843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 30, + ACTIONS(4131), 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, @@ -488632,21 +488875,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8724] = 5, - ACTIONS(5484), 1, + [8624] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4775), 1, - sym_enum_class_body, + ACTIONS(8144), 1, + anon_sym_EQ, + ACTIONS(8151), 1, + anon_sym_COLON, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5028), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 25, + ACTIONS(4087), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -488666,17 +488917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 32, + ACTIONS(4089), 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, @@ -488699,27 +488947,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8796] = 5, - ACTIONS(8205), 1, - anon_sym_LT, - STATE(4806), 1, - sym_type_arguments, + [8706] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + ACTIONS(8153), 1, + anon_sym_COLON, + STATE(4722), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5031), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4169), 26, + ACTIONS(4077), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, + anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -488734,15 +488989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4171), 31, - sym__automatic_semicolon, + ACTIONS(4079), 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, @@ -488766,18 +489019,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8868] = 3, + [8788] = 10, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + ACTIONS(8155), 1, + anon_sym_COLON, + STATE(5047), 1, + sym_type_constraints, + STATE(5323), 1, + sym_function_body, + STATE(5344), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4758), 26, + ACTIONS(4079), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4077), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [8870] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + ACTIONS(8157), 1, anon_sym_COLON, + STATE(4781), 1, + sym__block, + STATE(4791), 1, + sym_function_body, + STATE(5033), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4123), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -488797,18 +489133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4760), 33, + ACTIONS(4125), 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, @@ -488831,23 +489163,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [8936] = 4, - ACTIONS(8207), 1, - anon_sym_AMP, + [8952] = 10, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + ACTIONS(8159), 1, + anon_sym_COLON, + STATE(5054), 1, + sym_type_constraints, + STATE(5343), 1, + sym_function_body, + STATE(5344), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 26, + ACTIONS(4089), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4087), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9034] = 10, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8135), 1, anon_sym_EQ, + ACTIONS(8137), 1, anon_sym_LBRACE, + ACTIONS(8161), 1, + anon_sym_COLON, + STATE(5060), 1, + sym_type_constraints, + STATE(5344), 1, + sym__block, + STATE(5361), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4099), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - sym__quest, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -488864,9 +489276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4315), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(4097), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -488897,33 +489307,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [9006] = 10, - ACTIONS(5770), 1, + [9116] = 10, + ACTIONS(5720), 1, anon_sym_where, - ACTIONS(8199), 1, + ACTIONS(8135), 1, anon_sym_EQ, - ACTIONS(8201), 1, + ACTIONS(8137), 1, anon_sym_LBRACE, - ACTIONS(8209), 1, + ACTIONS(8163), 1, anon_sym_COLON, - STATE(4935), 1, + STATE(5039), 1, sym_type_constraints, - STATE(5152), 1, + STATE(5344), 1, sym__block, - STATE(5213), 1, + STATE(5370), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 22, + ACTIONS(4144), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4142), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [9198] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4495), 26, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -488938,15 +489410,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 30, - sym__automatic_semicolon, + ACTIONS(4497), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -488969,15 +489444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9088] = 5, - ACTIONS(5484), 1, + [9266] = 5, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4773), 1, - sym_enum_class_body, + STATE(4804), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 25, + ACTIONS(3226), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -489003,7 +489478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 32, + ACTIONS(3230), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489036,15 +489511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9160] = 5, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4842), 1, - sym_class_body, + [9338] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 25, + ACTIONS(4525), 26, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -489070,11 +489542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 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, @@ -489103,15 +489576,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9232] = 3, + [9406] = 5, + ACTIONS(5410), 1, + anon_sym_LBRACE, + STATE(4854), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 26, + ACTIONS(4630), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -489134,12 +489610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4595), 33, + ACTIONS(4632), 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, @@ -489168,33 +489643,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9300] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8211), 1, - anon_sym_COLON, - STATE(4932), 1, - sym_type_constraints, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, + [9478] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 22, + ACTIONS(4583), 26, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -489209,15 +489674,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 30, - sym__automatic_semicolon, + ACTIONS(4585), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -489240,82 +489708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9382] = 5, - ACTIONS(8213), 1, - sym__quest, - STATE(4654), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4284), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4282), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [9454] = 3, + [9546] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4276), 26, + ACTIONS(4503), 26, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -489338,7 +489739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4278), 33, + ACTIONS(4505), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489372,82 +489773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9522] = 5, - ACTIONS(8216), 1, - sym__quest, - STATE(4672), 1, - aux_sym_nullable_type_repeat1, + [9614] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4278), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4276), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [9594] = 5, - ACTIONS(5484), 1, - anon_sym_LBRACE, - STATE(4788), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4716), 25, + ACTIONS(4499), 26, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -489473,11 +489804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4718), 32, + ACTIONS(4501), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -489506,12 +489838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9666] = 3, + [9682] = 5, + ACTIONS(5432), 1, + anon_sym_LBRACE, + STATE(4760), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4633), 26, - anon_sym_COLON, + ACTIONS(4274), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -489537,12 +489872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4635), 33, + ACTIONS(4276), 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, @@ -489571,11 +489905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9734] = 3, + [9754] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4658), 26, + ACTIONS(4521), 26, anon_sym_COLON, anon_sym_DOT, anon_sym_as, @@ -489602,7 +489936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4660), 33, + ACTIONS(4523), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489636,15 +489970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9802] = 5, - ACTIONS(5484), 1, + [9822] = 5, + ACTIONS(5410), 1, anon_sym_LBRACE, - STATE(4746), 1, + STATE(4828), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4415), 25, + ACTIONS(4420), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -489670,7 +490004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4417), 32, + ACTIONS(4422), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489703,29 +490037,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9874] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8218), 1, - anon_sym_COLON, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(4988), 1, - sym_type_constraints, + [9894] = 4, + ACTIONS(8165), 1, + anon_sym_AT2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 23, + ACTIONS(4698), 26, + anon_sym_AT, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -489745,14 +490070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 29, + ACTIONS(4700), 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, @@ -489775,33 +490103,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [9956] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, + [9964] = 5, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8222), 1, - anon_sym_COLON, - STATE(4928), 1, - sym_type_constraints, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + STATE(4819), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 22, + ACTIONS(4618), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -489816,15 +490137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 30, - sym__automatic_semicolon, + ACTIONS(4620), 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, @@ -489847,15 +490170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10038] = 5, - ACTIONS(8179), 1, - anon_sym_COMMA, - STATE(4687), 1, - aux_sym_type_constraints_repeat1, + [10036] = 5, + ACTIONS(5410), 1, + anon_sym_LBRACE, + STATE(4733), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4389), 25, + ACTIONS(3218), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -489881,14 +490204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4391), 32, + ACTIONS(3222), 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, @@ -489914,15 +490237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10110] = 5, - ACTIONS(5494), 1, + [10108] = 5, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4879), 1, + STATE(4724), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4668), 25, + ACTIONS(4517), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -489948,7 +490271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4670), 32, + ACTIONS(4519), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -489981,26 +490304,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10182] = 5, - ACTIONS(8224), 1, - anon_sym_COMMA, - STATE(4665), 1, - aux_sym__delegation_specifiers_repeat1, + [10180] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8167), 1, + anon_sym_COLON, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, + anon_sym_LBRACE, + STATE(4940), 1, + sym_type_constraints, + STATE(5102), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 25, + ACTIONS(4123), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -490015,17 +490345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4639), 32, + ACTIONS(4125), 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_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -490048,26 +490376,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10254] = 5, - ACTIONS(5484), 1, + [10262] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(4704), 1, - sym_enum_class_body, + ACTIONS(8173), 1, + anon_sym_COLON, + STATE(4948), 1, + sym_type_constraints, + STATE(5093), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 25, + ACTIONS(4077), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -490082,17 +490417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 32, + ACTIONS(4079), 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, @@ -490115,15 +490448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10326] = 5, - ACTIONS(5484), 1, - anon_sym_LBRACE, - STATE(4779), 1, - sym_enum_class_body, + [10344] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4460), 25, + ACTIONS(4509), 26, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -490149,11 +490479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4462), 32, + ACTIONS(4511), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -490182,26 +490513,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10398] = 5, - ACTIONS(5484), 1, - anon_sym_LBRACE, - STATE(4810), 1, - sym_enum_class_body, + [10412] = 5, + ACTIONS(8175), 1, + anon_sym_DOT, + STATE(4640), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 25, - anon_sym_DOT, + ACTIONS(4103), 26, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -490216,17 +490548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 32, + ACTIONS(4105), 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, @@ -490249,92 +490580,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10470] = 5, - ACTIONS(8136), 1, - anon_sym_DOT, - STATE(4564), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4162), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [10542] = 10, - ACTIONS(5490), 1, + [10484] = 10, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, + ACTIONS(8169), 1, anon_sym_EQ, - ACTIONS(8227), 1, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8178), 1, anon_sym_COLON, - STATE(4754), 1, + STATE(4952), 1, + sym_type_constraints, + STATE(5215), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, - STATE(4998), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 23, + ACTIONS(4087), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -490343,7 +490607,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, @@ -490358,13 +490621,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 29, + ACTIONS(4089), 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, @@ -490388,15 +490652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10624] = 5, - ACTIONS(5494), 1, + [10566] = 5, + ACTIONS(5410), 1, anon_sym_LBRACE, - STATE(4799), 1, - sym_class_body, + STATE(4819), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4468), 25, + ACTIONS(4618), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -490422,7 +490686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4470), 32, + ACTIONS(4620), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490455,92 +490719,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10696] = 5, - ACTIONS(8229), 1, - sym__quest, - STATE(4654), 1, - aux_sym_nullable_type_repeat1, + [10638] = 5, + ACTIONS(5432), 1, + anon_sym_LBRACE, + STATE(4733), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 25, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(3218), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3222), 32, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4248), 32, - anon_sym_by, + [10710] = 10, + ACTIONS(5760), 1, anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8180), 1, + anon_sym_COLON, + STATE(4946), 1, + sym_type_constraints, + STATE(5168), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4097), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [10768] = 10, - ACTIONS(5490), 1, + ACTIONS(4099), 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, + [10792] = 10, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, + ACTIONS(8169), 1, anon_sym_EQ, - ACTIONS(8231), 1, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8182), 1, anon_sym_COLON, - STATE(4708), 1, + STATE(4956), 1, + sym_type_constraints, + STATE(5146), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, - STATE(5007), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 23, + ACTIONS(4142), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -490549,7 +490885,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, @@ -490564,13 +490899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 29, + ACTIONS(4144), 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, @@ -490594,15 +490930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10850] = 5, - ACTIONS(5494), 1, + [10874] = 5, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4776), 1, + STATE(4704), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 25, + ACTIONS(4412), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -490628,7 +490964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 32, + ACTIONS(4414), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490661,13 +490997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10922] = 4, - STATE(4665), 1, - aux_sym__delegation_specifiers_repeat1, + [10946] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 25, + ACTIONS(4563), 26, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -490693,7 +491028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4541), 33, + ACTIONS(4565), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490727,29 +491062,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [10992] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [11014] = 5, + ACTIONS(5410), 1, anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - ACTIONS(8233), 1, - anon_sym_COLON, - STATE(4855), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(4976), 1, - sym_type_constraints, + STATE(4811), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 23, + ACTIONS(4447), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -490769,14 +491096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 29, + ACTIONS(4449), 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, @@ -490799,15 +491129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11074] = 5, - ACTIONS(5494), 1, + [11086] = 5, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4704), 1, + STATE(4772), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 25, + ACTIONS(4359), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -490833,7 +491163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 32, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -490866,29 +491196,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11146] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [11158] = 5, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - ACTIONS(8235), 1, - anon_sym_COLON, - STATE(4728), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5053), 1, - sym_type_constraints, + STATE(4699), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4133), 23, + ACTIONS(4455), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -490908,14 +491230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4135), 29, + ACTIONS(4457), 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, @@ -490938,87 +491263,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11228] = 10, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_LBRACE, - ACTIONS(8237), 1, - anon_sym_COLON, - STATE(4991), 1, - sym_type_constraints, - STATE(5388), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + [11230] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4135), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4133), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4595), 26, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [11310] = 3, + ACTIONS(4597), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_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, + [11298] = 5, + ACTIONS(8184), 1, + anon_sym_COMMA, + STATE(4680), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4605), 26, + ACTIONS(4611), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -491041,7 +491362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4607), 33, + ACTIONS(4613), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491049,7 +491370,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, @@ -491075,15 +491395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11378] = 5, - ACTIONS(5494), 1, + [11370] = 5, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4775), 1, + STATE(4701), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 25, + ACTIONS(4591), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491109,7 +491429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 32, + ACTIONS(4593), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491142,12 +491462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11450] = 3, + [11442] = 5, + ACTIONS(5410), 1, + anon_sym_LBRACE, + STATE(4772), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4601), 26, - anon_sym_COLON, + ACTIONS(4359), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491173,12 +491496,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4603), 33, + ACTIONS(4361), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -491207,15 +491529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11518] = 5, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4773), 1, - sym_class_body, + [11514] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 25, + ACTIONS(4567), 26, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491241,11 +491560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 32, + ACTIONS(4569), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -491274,11 +491594,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11590] = 3, + [11582] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4609), 26, + ACTIONS(4638), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491305,7 +491625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4611), 33, + ACTIONS(4640), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491339,15 +491659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11658] = 5, - ACTIONS(5484), 1, + [11650] = 5, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(4776), 1, - sym_enum_class_body, + STATE(4768), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 25, + ACTIONS(4607), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491373,7 +491693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 32, + ACTIONS(4609), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491406,15 +491726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11730] = 3, + [11722] = 5, + ACTIONS(5410), 1, + anon_sym_LBRACE, + STATE(4702), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4629), 26, + ACTIONS(3236), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -491437,12 +491760,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4631), 33, + ACTIONS(3240), 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, @@ -491471,15 +491793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11798] = 5, - ACTIONS(8239), 1, - anon_sym_COMMA, - STATE(4687), 1, - aux_sym_type_constraints_repeat1, + [11794] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4431), 25, + ACTIONS(4603), 26, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491505,7 +491824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4433), 32, + ACTIONS(4605), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491513,6 +491832,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, @@ -491538,12 +491858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11870] = 3, + [11862] = 5, + ACTIONS(8187), 1, + anon_sym_catch, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4648), 26, - anon_sym_COLON, + STATE(4688), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + ACTIONS(4110), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491554,8 +491878,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, @@ -491569,18 +491893,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4650), 33, + ACTIONS(4112), 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, @@ -491603,79 +491925,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [11938] = 5, - ACTIONS(8216), 1, - sym__quest, - STATE(4672), 1, - aux_sym_nullable_type_repeat1, + [11934] = 5, + ACTIONS(5432), 1, + anon_sym_LBRACE, + STATE(4710), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 25, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4202), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4204), 32, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4295), 32, - anon_sym_by, + [12006] = 5, + ACTIONS(5410), 1, + anon_sym_LBRACE, + STATE(4710), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4202), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [12010] = 3, + ACTIONS(4204), 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, + [12078] = 5, + ACTIONS(5410), 1, + anon_sym_LBRACE, + STATE(4693), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4613), 26, - anon_sym_COLON, + ACTIONS(4335), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491701,12 +492093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4615), 33, + ACTIONS(4337), 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, @@ -491735,15 +492126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12078] = 5, - ACTIONS(5494), 1, + [12150] = 5, + ACTIONS(5410), 1, anon_sym_LBRACE, - STATE(4718), 1, - sym_class_body, + STATE(4759), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 25, + ACTIONS(4152), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491769,7 +492160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4509), 32, + ACTIONS(4154), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491802,15 +492193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12150] = 5, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4848), 1, - sym_class_body, + [12222] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4644), 25, + ACTIONS(4359), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491836,11 +492223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4646), 32, + ACTIONS(4361), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -491869,11 +492257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12222] = 3, + [12289] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4018), 25, + ACTIONS(5049), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491899,7 +492287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4020), 33, + ACTIONS(5051), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491933,11 +492321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12289] = 3, + [12356] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 25, + ACTIONS(123), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -491963,7 +492351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 33, + ACTIONS(121), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -491997,26 +492385,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12356] = 8, - ACTIONS(5490), 1, + [12423] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5101), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(5494), 1, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5103), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8242), 1, - anon_sym_COLON, - STATE(4691), 1, - sym_type_constraints, - STATE(4722), 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, + [12490] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 24, + ACTIONS(4142), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -492036,14 +492479,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 29, + ACTIONS(4144), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -492066,26 +492513,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12433] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5878), 1, - anon_sym_COLON, - STATE(4643), 1, - sym_type_constraints, - STATE(4775), 1, - sym_enum_class_body, + [12557] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(5113), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -492105,14 +492543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 29, + ACTIONS(5115), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -492135,11 +492577,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12510] = 3, + [12624] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4940), 25, + ACTIONS(4607), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -492165,7 +492607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4942), 33, + ACTIONS(4609), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492199,11 +492641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12577] = 3, + [12691] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4882), 25, + ACTIONS(5129), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -492229,7 +492671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4884), 33, + ACTIONS(5131), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492263,11 +492705,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12644] = 3, + [12758] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 25, + ACTIONS(5137), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -492293,7 +492735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 33, + ACTIONS(5139), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492327,26 +492769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12711] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8244), 1, - anon_sym_COLON, - STATE(4650), 1, - sym_type_constraints, - STATE(4842), 1, - sym_enum_class_body, + [12825] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 24, + ACTIONS(4152), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -492366,14 +492799,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 29, + ACTIONS(4154), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -492396,26 +492833,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12788] = 8, - ACTIONS(5490), 1, + [12892] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5141), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(5494), 1, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5143), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8246), 1, - anon_sym_COLON, - STATE(4683), 1, - sym_type_constraints, - STATE(4842), 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, + [12959] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 24, + ACTIONS(4455), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -492435,14 +492927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 29, + ACTIONS(4457), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -492465,26 +492961,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12865] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5944), 1, - anon_sym_COLON, - STATE(4629), 1, - sym_type_constraints, - STATE(4810), 1, - sym_enum_class_body, + [13026] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 24, + ACTIONS(1744), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -492504,14 +492991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 29, + ACTIONS(1746), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -492534,26 +493025,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [12942] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, + [13093] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5149), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(8248), 1, - anon_sym_COLON, - STATE(4660), 1, - sym_type_constraints, - STATE(4713), 1, - sym_enum_class_body, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5151), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [13160] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 24, + ACTIONS(5161), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -492573,14 +493119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 29, + ACTIONS(5163), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -492603,11 +493153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13019] = 3, + [13227] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 25, + ACTIONS(4097), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -492633,7 +493183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 33, + ACTIONS(4099), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492667,11 +493217,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13086] = 3, + [13294] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4886), 25, + ACTIONS(5157), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -492697,7 +493247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4888), 33, + ACTIONS(5159), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492731,11 +493281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13153] = 3, + [13361] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5205), 25, + ACTIONS(4335), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -492761,7 +493311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5207), 33, + ACTIONS(4337), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492795,11 +493345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13220] = 3, + [13428] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 25, + ACTIONS(5153), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -492825,7 +493375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1736), 33, + ACTIONS(5155), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492859,11 +493409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13287] = 3, + [13495] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 25, + ACTIONS(3236), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -492889,7 +493439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 33, + ACTIONS(3240), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492923,11 +493473,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13354] = 3, + [13562] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4419), 25, + ACTIONS(5145), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -492953,7 +493503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4421), 33, + ACTIONS(5147), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -492987,11 +493537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13421] = 3, + [13629] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5197), 25, + ACTIONS(1770), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -493017,7 +493567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5199), 33, + ACTIONS(1772), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493051,11 +493601,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13488] = 3, + [13696] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5842), 1, + anon_sym_COLON, + STATE(5034), 1, + sym_type_constraints, + STATE(5088), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3226), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3230), 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, + [13773] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5213), 25, + ACTIONS(5133), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -493081,7 +493700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5215), 33, + ACTIONS(5135), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493115,11 +493734,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13555] = 3, + [13840] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4431), 25, + ACTIONS(5125), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -493145,7 +493764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4433), 33, + ACTIONS(5127), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493179,22 +493798,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13622] = 3, + [13907] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8190), 1, + anon_sym_COLON, + STATE(4995), 1, + sym_type_constraints, + STATE(5228), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4415), 25, + ACTIONS(4274), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493209,18 +493836,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4417), 33, + ACTIONS(4276), 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, @@ -493243,22 +493867,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13689] = 3, + [13984] = 8, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5850), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5082), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4589), 25, + ACTIONS(3218), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493273,18 +493905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4591), 33, + ACTIONS(3222), 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, @@ -493307,13 +493936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13756] = 4, - ACTIONS(8250), 1, - anon_sym_COLON_COLON, + [14061] = 4, + ACTIONS(6420), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4944), 25, + ACTIONS(4214), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -493339,14 +493968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4946), 32, + ACTIONS(4217), 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, @@ -493356,6 +493984,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, @@ -493372,11 +494001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13825] = 3, + [14130] = 4, + ACTIONS(6406), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 25, + ACTIONS(4182), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -493402,14 +494033,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 33, + ACTIONS(4185), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -493436,23 +494066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13892] = 8, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8253), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5166), 1, - sym_function_body, + [14199] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 23, + ACTIONS(4087), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -493460,6 +494081,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, @@ -493474,15 +494096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4291), 30, - sym__automatic_semicolon, + ACTIONS(4089), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -493505,22 +494130,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [13969] = 3, + [14266] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5868), 1, + anon_sym_COLON, + STATE(5048), 1, + sym_type_constraints, + STATE(5082), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4468), 25, + ACTIONS(3218), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493535,18 +494168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4470), 33, + ACTIONS(3222), 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, @@ -493569,11 +494199,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14036] = 3, + [14343] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 25, + ACTIONS(5117), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -493599,7 +494229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 33, + ACTIONS(5119), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493633,22 +494263,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14103] = 3, + [14410] = 8, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8192), 1, + anon_sym_COLON, + STATE(4967), 1, + sym_type_constraints, + STATE(5175), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4878), 25, + ACTIONS(4202), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493663,18 +494301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4880), 33, + ACTIONS(4204), 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, @@ -493697,22 +494332,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14170] = 3, + [14487] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8194), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_constraints, + STATE(5175), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4826), 25, + ACTIONS(4202), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493727,18 +494370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4828), 33, + ACTIONS(4204), 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, @@ -493761,22 +494401,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14237] = 3, + [14564] = 8, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5794), 1, + anon_sym_COLON, + STATE(5012), 1, + sym_type_constraints, + STATE(5191), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 25, + ACTIONS(3236), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -493791,18 +494439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4509), 33, + ACTIONS(3240), 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, @@ -493825,11 +494470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14304] = 3, + [14641] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4549), 25, + ACTIONS(4611), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -493855,7 +494500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4551), 33, + ACTIONS(4613), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -493889,27 +494534,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14371] = 10, - ACTIONS(5770), 1, + [14708] = 8, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8201), 1, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(8255), 1, + ACTIONS(8196), 1, anon_sym_COLON, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5213), 1, - sym_function_body, - STATE(5223), 1, + STATE(4974), 1, sym_type_constraints, + STATE(5158), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 22, + ACTIONS(4152), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -493930,13 +494572,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 29, + ACTIONS(4154), 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, @@ -493960,11 +494603,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14452] = 3, + [14785] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5015), 25, + ACTIONS(5029), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -493990,7 +494633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5017), 33, + ACTIONS(5031), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494024,15 +494667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14519] = 3, + [14852] = 4, + ACTIONS(8198), 1, + anon_sym_LT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5071), 25, + ACTIONS(5007), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, @@ -494054,7 +494698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5073), 33, + ACTIONS(5009), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494088,11 +494732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14586] = 3, + [14921] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5063), 25, + ACTIONS(1580), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494118,7 +494762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5065), 33, + ACTIONS(1578), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494152,11 +494796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14653] = 3, + [14988] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 25, + ACTIONS(4202), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494182,7 +494826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 33, + ACTIONS(4204), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494216,11 +494860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14720] = 3, + [15055] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5067), 25, + ACTIONS(5019), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494246,7 +494890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5069), 33, + ACTIONS(5021), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494280,11 +494924,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14787] = 3, + [15122] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 25, + ACTIONS(3950), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494310,7 +494954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5163), 33, + ACTIONS(3952), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494344,16 +494988,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14854] = 4, - ACTIONS(6482), 1, - anon_sym_LPAREN, + [15189] = 6, + ACTIONS(5011), 1, + anon_sym_EQ, + ACTIONS(8200), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 25, + ACTIONS(5013), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4992), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -494376,13 +495027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4237), 32, + ACTIONS(4994), 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, @@ -494392,12 +495044,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, @@ -494409,13 +495055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14923] = 4, - ACTIONS(6486), 1, - anon_sym_LPAREN, + [15262] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4220), 25, + ACTIONS(5007), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494441,13 +495085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4223), 32, + ACTIONS(5009), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -494474,11 +495119,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [14992] = 3, + [15329] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5081), 25, + ACTIONS(5003), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494504,7 +495149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5083), 33, + ACTIONS(5005), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494538,11 +495183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15059] = 3, + [15396] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4393), 25, + ACTIONS(5089), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494568,7 +495213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4395), 33, + ACTIONS(5091), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494602,11 +495247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15126] = 3, + [15463] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5201), 25, + ACTIONS(4888), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494632,7 +495277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5203), 33, + ACTIONS(4890), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494666,21 +495311,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15193] = 5, - ACTIONS(4920), 1, - anon_sym_EQ, + [15530] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4922), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4419), 24, + ACTIONS(4988), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -494703,7 +495341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4421), 28, + ACTIONS(4990), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494721,6 +495359,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, @@ -494732,11 +495375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15264] = 3, + [15597] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4904), 25, + ACTIONS(4984), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494762,7 +495405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4906), 33, + ACTIONS(4986), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494796,26 +495439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15331] = 8, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(5918), 1, - anon_sym_COLON, - STATE(4639), 1, - sym_type_constraints, - STATE(4764), 1, - sym_class_body, + [15664] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 24, + ACTIONS(4976), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -494835,14 +495469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3292), 29, + ACTIONS(4978), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -494865,11 +495503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15408] = 3, + [15731] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4864), 25, + ACTIONS(4972), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494895,7 +495533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4866), 33, + ACTIONS(4974), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494929,11 +495567,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15475] = 3, + [15798] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5169), 25, + ACTIONS(4968), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -494959,7 +495597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5171), 33, + ACTIONS(4970), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -494993,31 +495631,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15542] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4924), 1, - sym_type_constraints, - STATE(5110), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [15865] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 22, + ACTIONS(4964), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495032,15 +495661,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 30, - sym__automatic_semicolon, + ACTIONS(4966), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -495063,26 +495695,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15621] = 8, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(5940), 1, - anon_sym_COLON, - STATE(4651), 1, - sym_type_constraints, - STATE(4775), 1, - sym_class_body, + [15932] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(4960), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -495102,14 +495725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 29, + ACTIONS(4962), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -495132,11 +495759,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15698] = 3, + [15999] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(211), 25, + ACTIONS(4956), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -495162,7 +495789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(209), 33, + ACTIONS(4958), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495196,11 +495823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15765] = 3, + [16066] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 25, + ACTIONS(4952), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -495226,7 +495853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5187), 33, + ACTIONS(4954), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495260,11 +495887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15832] = 3, + [16133] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5089), 25, + ACTIONS(4948), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -495290,7 +495917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5091), 33, + ACTIONS(4950), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495324,11 +495951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15899] = 3, + [16200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4460), 25, + ACTIONS(4000), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -495354,7 +495981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4462), 33, + ACTIONS(4002), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495388,31 +496015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [15966] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4926), 1, - sym_type_constraints, - STATE(5116), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [16267] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 22, + ACTIONS(4940), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495427,15 +496045,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 30, - sym__automatic_semicolon, + ACTIONS(4942), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -495458,11 +496079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16045] = 3, + [16334] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1816), 25, + ACTIONS(4936), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -495488,7 +496109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1818), 33, + ACTIONS(4938), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495522,11 +496143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16112] = 3, + [16401] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 25, + ACTIONS(4980), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -495552,7 +496173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 33, + ACTIONS(4982), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495586,31 +496207,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16179] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4928), 1, - sym_type_constraints, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [16468] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 22, + ACTIONS(4932), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495625,15 +496237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 30, - sym__automatic_semicolon, + ACTIONS(4934), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -495656,11 +496271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16258] = 3, + [16535] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 25, + ACTIONS(5093), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -495686,7 +496301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 33, + ACTIONS(5095), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495720,23 +496335,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16325] = 9, - ACTIONS(5490), 1, + [16602] = 9, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, + ACTIONS(8169), 1, anon_sym_EQ, - STATE(4708), 1, + ACTIONS(8171), 1, + anon_sym_LBRACE, + STATE(4909), 1, + sym_type_constraints, + STATE(5129), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, - STATE(5007), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 23, + ACTIONS(4260), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -495745,7 +496360,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, @@ -495760,13 +496374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 29, + ACTIONS(4262), 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, @@ -495790,15 +496405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16404] = 5, - ACTIONS(8259), 1, - anon_sym_SEMI, - ACTIONS(8261), 1, - anon_sym_else, + [16681] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 24, + ACTIONS(4928), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -495810,6 +496421,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, @@ -495823,7 +496435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 32, + ACTIONS(4930), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495833,6 +496445,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, @@ -495856,11 +496469,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16475] = 3, + [16748] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 25, + ACTIONS(4447), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -495886,7 +496499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 33, + ACTIONS(4449), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -495920,31 +496533,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16542] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4932), 1, - sym_type_constraints, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, + [16815] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 22, + ACTIONS(4412), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -495959,15 +496563,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 30, - sym__automatic_semicolon, + ACTIONS(4414), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -495990,22 +496597,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16621] = 3, + [16882] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, + anon_sym_LBRACE, + STATE(4954), 1, + sym_type_constraints, + STATE(5134), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1790), 25, + ACTIONS(4230), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496020,18 +496636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1792), 33, + ACTIONS(4232), 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, @@ -496054,13 +496667,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16688] = 4, - ACTIONS(8261), 1, + [16961] = 4, + ACTIONS(8203), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 24, + ACTIONS(4856), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -496085,7 +496698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 33, + ACTIONS(4858), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -496119,23 +496732,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16757] = 9, - ACTIONS(5490), 1, + [17030] = 9, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, + ACTIONS(8169), 1, anon_sym_EQ, - STATE(4754), 1, + ACTIONS(8171), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_type_constraints, + STATE(5146), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, - STATE(4998), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 23, + ACTIONS(4142), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -496144,7 +496757,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, @@ -496159,13 +496771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 29, + ACTIONS(4144), 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, @@ -496189,33 +496802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16836] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - ACTIONS(8263), 1, - anon_sym_COLON, - STATE(5134), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - STATE(5153), 1, - sym_type_constraints, + [17109] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4133), 22, + ACTIONS(5085), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496230,14 +496832,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4135), 29, - sym__automatic_semicolon, + ACTIONS(5087), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -496260,31 +496866,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16917] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4935), 1, - sym_type_constraints, - STATE(5152), 1, - sym__block, - STATE(5213), 1, - sym_function_body, + [17176] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 22, + ACTIONS(4884), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496299,15 +496896,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 30, - sym__automatic_semicolon, + ACTIONS(4886), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -496330,25 +496930,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [16996] = 10, - ACTIONS(5770), 1, + [17243] = 9, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, + ACTIONS(8169), 1, anon_sym_EQ, - ACTIONS(8265), 1, - anon_sym_COLON, - STATE(5074), 1, + ACTIONS(8171), 1, + anon_sym_LBRACE, + STATE(4946), 1, sym_type_constraints, - STATE(5079), 1, + STATE(5168), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 22, + ACTIONS(4097), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -496371,13 +496969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 29, + ACTIONS(4099), 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, @@ -496401,27 +497000,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17077] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(4988), 1, - sym_type_constraints, + [17322] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 23, + ACTIONS(5081), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -496441,14 +497030,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 29, + ACTIONS(5083), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -496471,11 +497064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17156] = 3, + [17389] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5133), 25, + ACTIONS(4710), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -496501,7 +497094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5135), 33, + ACTIONS(4712), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -496535,11 +497128,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17223] = 3, + [17456] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 25, + ACTIONS(4920), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -496565,7 +497158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 33, + ACTIONS(4922), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -496599,26 +497192,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17290] = 8, - ACTIONS(8199), 1, + [17523] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8169), 1, anon_sym_EQ, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8267), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5253), 1, + STATE(4952), 1, + sym_type_constraints, + STATE(5215), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 23, + ACTIONS(4087), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -496637,7 +497231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4208), 30, + ACTIONS(4089), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -496668,27 +497262,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17367] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4699), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(4987), 1, - sym_type_constraints, + [17602] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 23, + ACTIONS(5057), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -496708,14 +497292,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 29, + ACTIONS(5059), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -496738,30 +497326,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17446] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5934), 1, - anon_sym_COLON, - STATE(4962), 1, - sym_type_constraints, - STATE(5087), 1, - sym_class_body, + [17669] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 23, + ACTIONS(4618), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -496776,15 +497356,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3292), 30, - sym__automatic_semicolon, + ACTIONS(4620), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -496807,23 +497390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17523] = 8, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8269), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5193), 1, - sym_function_body, + [17736] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 23, + ACTIONS(4230), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -496831,6 +497405,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, @@ -496845,15 +497420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 30, - sym__automatic_semicolon, + ACTIONS(4232), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -496876,27 +497454,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17600] = 9, - ACTIONS(5490), 1, + [17803] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4999), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(8098), 1, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5001), 33, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4787), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(4985), 1, - sym_type_constraints, + anon_sym_RBRACE, + anon_sym_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, + [17870] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 23, + ACTIONS(5053), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -496916,14 +497548,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 29, + ACTIONS(5055), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -496946,11 +497582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17679] = 3, + [17937] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4999), 25, + ACTIONS(1738), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -496976,7 +497612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5001), 33, + ACTIONS(1740), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497010,11 +497646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17746] = 3, + [18004] = 4, + ACTIONS(8205), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 25, + ACTIONS(4850), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497040,14 +497678,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5167), 33, + ACTIONS(4852), 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, @@ -497074,14 +497711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17813] = 3, + [18073] = 5, + ACTIONS(8207), 1, + sym__quest, + STATE(4783), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 25, + ACTIONS(4208), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -497089,7 +497731,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, @@ -497104,18 +497745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 33, + ACTIONS(4210), 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, @@ -497138,22 +497777,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17880] = 3, + [18144] = 4, + ACTIONS(8209), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 25, + ACTIONS(4164), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -497168,18 +497810,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 33, + ACTIONS(4166), 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, @@ -497202,11 +497842,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [17947] = 3, + [18213] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4890), 25, + ACTIONS(4912), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497232,7 +497872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4892), 33, + ACTIONS(4914), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497266,11 +497906,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18014] = 3, + [18280] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 25, + ACTIONS(5023), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497296,7 +497936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 33, + ACTIONS(5025), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497330,11 +497970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18081] = 3, + [18347] = 4, + ACTIONS(8211), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4900), 25, + ACTIONS(4840), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497360,14 +498002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4902), 33, + ACTIONS(4842), 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, @@ -497394,11 +498035,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18148] = 3, + [18416] = 5, + ACTIONS(8213), 1, + sym__quest, + STATE(4807), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1822), 25, + ACTIONS(4264), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4266), 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, + [18487] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4908), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497424,7 +498131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1824), 33, + ACTIONS(4910), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497458,19 +498165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18215] = 5, - ACTIONS(4908), 1, + [18554] = 5, + ACTIONS(4884), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4910), 5, + ACTIONS(4886), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - ACTIONS(4442), 24, + ACTIONS(4343), 24, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -497495,7 +498202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 28, + ACTIONS(4345), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497524,11 +498231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18286] = 3, + [18625] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4716), 25, + ACTIONS(4044), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497554,7 +498261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4718), 33, + ACTIONS(4046), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497588,16 +498295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18353] = 4, - ACTIONS(8271), 1, - anon_sym_LT, + [18692] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4894), 24, + ACTIONS(4900), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, @@ -497619,7 +498325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4896), 33, + ACTIONS(4902), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497653,11 +498359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18422] = 3, + [18759] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1429), 25, + ACTIONS(4892), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497683,7 +498389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1427), 33, + ACTIONS(4894), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497717,11 +498423,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18489] = 3, + [18826] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5193), 25, + ACTIONS(3932), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497747,7 +498453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5195), 33, + ACTIONS(3934), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497781,11 +498487,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18556] = 3, + [18893] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1796), 25, + ACTIONS(1754), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497811,7 +498517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1798), 33, + ACTIONS(1756), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497845,13 +498551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18623] = 4, - ACTIONS(8273), 1, - anon_sym_LPAREN, + [18960] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 25, + ACTIONS(4077), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497877,13 +498581,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4240), 32, + ACTIONS(4079), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -497910,11 +498615,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18692] = 3, + [19027] = 8, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8215), 1, + anon_sym_COLON, + STATE(5180), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4770), 25, + ACTIONS(4238), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4240), 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, + [19104] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3065), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -497940,7 +498714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4772), 33, + ACTIONS(3067), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -497974,11 +498748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18759] = 3, + [19171] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3420), 25, + ACTIONS(4846), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498004,7 +498778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3422), 33, + ACTIONS(4848), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498038,11 +498812,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18826] = 3, + [19238] = 8, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8217), 1, + anon_sym_COLON, + STATE(5193), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4196), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4198), 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, + [19315] = 4, + ACTIONS(8219), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 25, + ACTIONS(4190), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498068,14 +498913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 33, + ACTIONS(4188), 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, @@ -498102,11 +498946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18893] = 3, + [19384] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5101), 25, + ACTIONS(4924), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498132,7 +498976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5103), 33, + ACTIONS(4926), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498166,13 +499010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [18960] = 4, - ACTIONS(8275), 1, - anon_sym_LPAREN, + [19451] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4228), 25, + ACTIONS(4832), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498198,13 +499040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4226), 32, + ACTIONS(4834), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -498231,11 +499074,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19029] = 3, + [19518] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5129), 25, + ACTIONS(4822), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498261,7 +499104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5131), 33, + ACTIONS(4824), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498295,11 +499138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19096] = 3, + [19585] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5141), 25, + ACTIONS(4814), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498325,7 +499168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5143), 33, + ACTIONS(4816), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498359,23 +499202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19163] = 6, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(6999), 1, - anon_sym_LPAREN, + [19652] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4220), 24, + ACTIONS(4810), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -498398,13 +499232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4223), 27, + 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, @@ -498415,73 +499250,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [19236] = 6, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(7003), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3995), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - ACTIONS(4234), 24, - anon_sym_DOT, - 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_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4237), 27, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -498493,13 +499266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19309] = 4, - ACTIONS(8277), 1, - anon_sym_LPAREN, + [19719] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4844), 25, + ACTIONS(5041), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498525,13 +499296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4846), 32, + ACTIONS(5043), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -498558,14 +499330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19378] = 3, + [19786] = 5, + ACTIONS(8207), 1, + sym__quest, + STATE(4783), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4932), 25, + ACTIONS(4270), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -498573,7 +499350,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, @@ -498588,18 +499364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4934), 33, + ACTIONS(4272), 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, @@ -498622,11 +499396,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19445] = 3, + [19857] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5043), 25, + ACTIONS(4274), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498652,7 +499426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5045), 33, + ACTIONS(4276), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498686,24 +499460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19512] = 4, - ACTIONS(8279), 1, - anon_sym_LPAREN, + [19924] = 4, + ACTIONS(8221), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 25, + ACTIONS(4164), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -498718,17 +499493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4854), 32, + ACTIONS(4166), 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, @@ -498751,11 +499525,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19581] = 3, + [19993] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4860), 25, + ACTIONS(3218), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498781,7 +499555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4862), 33, + ACTIONS(3222), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -498815,14 +499589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19648] = 3, + [20060] = 5, + ACTIONS(8223), 1, + sym__quest, + STATE(4807), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 25, + ACTIONS(4280), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -498830,7 +499609,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, @@ -498845,18 +499623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4674), 33, + ACTIONS(4282), 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, @@ -498879,11 +499655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19715] = 3, + [20131] = 4, + ACTIONS(8226), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5157), 25, + ACTIONS(4222), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498909,14 +499687,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5159), 33, + ACTIONS(4220), 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, @@ -498943,11 +499720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19782] = 3, + [20200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4766), 25, + ACTIONS(1682), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -498973,7 +499750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4768), 33, + ACTIONS(1684), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499007,11 +499784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19849] = 3, + [20267] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4971), 25, + ACTIONS(4802), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -499037,7 +499814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4973), 33, + ACTIONS(4804), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499071,11 +499848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19916] = 3, + [20334] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3312), 25, + ACTIONS(4420), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -499101,7 +499878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3316), 33, + ACTIONS(4422), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499135,11 +499912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [19983] = 3, + [20401] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 25, + ACTIONS(4792), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -499165,7 +499942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4208), 33, + ACTIONS(4794), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499199,11 +499976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20050] = 3, + [20468] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5173), 25, + ACTIONS(5045), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -499229,7 +500006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5175), 33, + ACTIONS(5047), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499263,24 +500040,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20117] = 3, + [20535] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4305), 27, + ACTIONS(5121), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -499295,16 +500070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4307), 31, - sym__automatic_semicolon, + ACTIONS(5123), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -499327,24 +500104,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20184] = 3, + [20602] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 27, + ACTIONS(4780), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -499359,16 +500134,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4311), 31, - sym__automatic_semicolon, + ACTIONS(4782), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -499391,30 +500168,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20251] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8281), 1, - anon_sym_COLON, - STATE(5025), 1, - sym_type_constraints, - STATE(5196), 1, - sym_class_body, + [20669] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 23, + ACTIONS(4776), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -499429,15 +500198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 30, - sym__automatic_semicolon, + ACTIONS(4778), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -499460,24 +500232,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20328] = 3, + [20736] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 27, + ACTIONS(4788), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -499492,16 +500262,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4258), 31, - sym__automatic_semicolon, + ACTIONS(4790), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -499524,11 +500296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20395] = 3, + [20803] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 25, + ACTIONS(4770), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -499554,7 +500326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 33, + ACTIONS(4772), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499588,23 +500360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20462] = 6, - ACTIONS(4948), 1, - anon_sym_EQ, - ACTIONS(8250), 1, - anon_sym_COLON_COLON, + [20870] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4944), 24, + ACTIONS(5037), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -499627,7 +500390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4946), 27, + ACTIONS(5039), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499644,6 +500407,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, @@ -499655,22 +500424,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20535] = 3, + [20937] = 4, + ACTIONS(4162), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 25, + ACTIONS(4158), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -499685,18 +500457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3292), 33, + ACTIONS(4160), 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, @@ -499719,11 +500489,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20602] = 3, + [21006] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3189), 25, + ACTIONS(4260), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -499749,7 +500519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3191), 33, + ACTIONS(4262), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499783,11 +500553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20669] = 3, + [21073] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4894), 25, + ACTIONS(1764), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -499813,7 +500583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4896), 33, + ACTIONS(1766), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499847,11 +500617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20736] = 3, + [21140] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4955), 25, + ACTIONS(5033), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -499877,7 +500647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4957), 33, + ACTIONS(5035), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499911,11 +500681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20803] = 3, + [21207] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4908), 25, + ACTIONS(4238), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -499941,7 +500711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4910), 33, + ACTIONS(4240), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -499975,11 +500745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20870] = 3, + [21274] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4967), 25, + ACTIONS(3296), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500005,7 +500775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4969), 33, + ACTIONS(3298), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500039,11 +500809,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [20937] = 3, + [21341] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4975), 25, + ACTIONS(4732), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500069,7 +500839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4977), 33, + ACTIONS(4734), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500103,11 +500873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21004] = 3, + [21408] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4991), 25, + ACTIONS(5109), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500133,7 +500903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4993), 33, + ACTIONS(5111), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500167,25 +500937,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21071] = 4, - ACTIONS(4325), 1, - anon_sym_DASH_GT, + [21475] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4321), 26, + ACTIONS(4630), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -500200,16 +500967,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4323), 31, - sym__automatic_semicolon, + ACTIONS(4632), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -500232,14 +501001,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21140] = 3, + [21542] = 5, + ACTIONS(4888), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5093), 25, + ACTIONS(4890), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4331), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -500262,7 +501038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5095), 33, + ACTIONS(4333), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500280,11 +501056,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, @@ -500296,11 +501067,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21207] = 3, + [21613] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5097), 25, + ACTIONS(5015), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500326,7 +501097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5099), 33, + ACTIONS(5017), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500360,11 +501131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21274] = 3, + [21680] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4995), 25, + ACTIONS(4347), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500390,7 +501161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4997), 33, + ACTIONS(4349), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500424,11 +501195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21341] = 3, + [21747] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5003), 25, + ACTIONS(4416), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500454,7 +501225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5005), 33, + ACTIONS(4418), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500488,24 +501259,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21408] = 3, + [21814] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4187), 27, + ACTIONS(4726), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -500520,16 +501289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4189), 31, - sym__automatic_semicolon, + ACTIONS(4728), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -500552,33 +501323,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21475] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - ACTIONS(8283), 1, - anon_sym_COLON, - STATE(5143), 1, - sym_type_constraints, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [21881] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 22, + ACTIONS(4722), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -500593,14 +501353,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 29, - sym__automatic_semicolon, + ACTIONS(4724), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -500623,11 +501387,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21556] = 3, + [21948] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5007), 25, + ACTIONS(4443), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500653,7 +501417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5009), 33, + ACTIONS(4445), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500687,11 +501451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21623] = 3, + [22015] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5011), 25, + ACTIONS(3368), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500717,7 +501481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5013), 33, + ACTIONS(3370), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500751,11 +501515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21690] = 3, + [22082] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5039), 25, + ACTIONS(4451), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500781,7 +501545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5041), 33, + ACTIONS(4453), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500815,11 +501579,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21757] = 3, + [22149] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 25, + ACTIONS(3226), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500845,7 +501609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 33, + ACTIONS(3230), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500879,11 +501643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21824] = 3, + [22216] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4762), 25, + ACTIONS(4718), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500909,7 +501673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4764), 33, + ACTIONS(4720), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -500943,11 +501707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21891] = 3, + [22283] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5027), 25, + ACTIONS(3096), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -500973,7 +501737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5029), 33, + ACTIONS(3098), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501007,11 +501771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [21958] = 3, + [22350] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5209), 25, + ACTIONS(4714), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -501037,7 +501801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5211), 33, + ACTIONS(4716), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501071,11 +501835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22025] = 3, + [22417] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5023), 25, + ACTIONS(5077), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -501101,7 +501865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5025), 33, + ACTIONS(5079), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501135,11 +501899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22092] = 3, + [22484] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 25, + ACTIONS(4916), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -501165,7 +501929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5183), 33, + ACTIONS(4918), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501199,17 +501963,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22159] = 3, + [22551] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(5886), 1, + anon_sym_COLON, + STATE(4658), 1, + sym_type_constraints, + STATE(4804), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5031), 25, + ACTIONS(3226), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -501229,18 +502002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5033), 33, + ACTIONS(3230), 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, @@ -501263,17 +502032,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22226] = 3, + [22628] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(8228), 1, + anon_sym_COLON, + STATE(4674), 1, + sym_type_constraints, + STATE(4760), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5035), 25, + ACTIONS(4274), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -501293,18 +502071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5037), 33, + ACTIONS(4276), 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, @@ -501327,17 +502101,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22293] = 3, + [22705] = 8, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5892), 1, + anon_sym_COLON, + STATE(4690), 1, + sym_type_constraints, + STATE(4733), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3986), 25, + ACTIONS(3218), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -501357,18 +502140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3988), 33, + ACTIONS(3222), 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, @@ -501391,17 +502170,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22360] = 3, + [22782] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(5884), 1, + anon_sym_COLON, + STATE(4689), 1, + sym_type_constraints, + STATE(4733), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 25, + ACTIONS(3218), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -501421,18 +502209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5049), 33, + ACTIONS(3222), 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, @@ -501455,17 +502239,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22427] = 3, + [22859] = 8, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8230), 1, + anon_sym_COLON, + STATE(4691), 1, + sym_type_constraints, + STATE(4710), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5051), 25, + ACTIONS(4202), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -501485,18 +502278,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5053), 33, + ACTIONS(4204), 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, @@ -501519,33 +502308,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22494] = 10, - ACTIONS(5770), 1, + [22936] = 8, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8201), 1, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - ACTIONS(8285), 1, + ACTIONS(8232), 1, anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, - STATE(5259), 1, + STATE(4617), 1, sym_type_constraints, + STATE(4710), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 22, + ACTIONS(4202), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -501560,13 +502347,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 29, - sym__automatic_semicolon, + ACTIONS(4204), 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, @@ -501590,17 +502377,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22575] = 3, + [23013] = 8, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5866), 1, + anon_sym_COLON, + STATE(4692), 1, + sym_type_constraints, + STATE(4702), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 25, + ACTIONS(3236), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -501620,18 +502416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 33, + ACTIONS(3240), 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, @@ -501654,21 +502446,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22642] = 8, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, + [23090] = 8, + ACTIONS(5410), 1, anon_sym_LBRACE, - ACTIONS(5946), 1, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8234), 1, anon_sym_COLON, - STATE(4999), 1, + STATE(4676), 1, sym_type_constraints, - STATE(5098), 1, + STATE(4759), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 23, + ACTIONS(4152), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -501678,6 +502470,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, @@ -501692,14 +502485,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 30, - sym__automatic_semicolon, + ACTIONS(4154), 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, @@ -501723,11 +502515,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22719] = 3, + [23167] = 9, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5019), 1, + sym_type_constraints, + STATE(5344), 1, + sym__block, + STATE(5399), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4262), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4260), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [23246] = 9, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5027), 1, + sym_type_constraints, + STATE(5344), 1, + sym__block, + STATE(5377), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5055), 25, + ACTIONS(4232), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4230), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [23325] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4944), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -501753,7 +502685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5057), 33, + ACTIONS(4946), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501787,22 +502719,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22786] = 3, + [23392] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8236), 1, + anon_sym_COLON, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5102), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5236), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1808), 25, + ACTIONS(4123), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -501817,18 +502760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1810), 33, + ACTIONS(4125), 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, @@ -501851,11 +502790,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22853] = 3, + [23473] = 9, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5039), 1, + sym_type_constraints, + STATE(5344), 1, + sym__block, + STATE(5370), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4144), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4142), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [23552] = 9, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5060), 1, + sym_type_constraints, + STATE(5344), 1, + sym__block, + STATE(5361), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4099), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4097), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [23631] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4979), 25, + ACTIONS(4876), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -501881,7 +502960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4981), 33, + ACTIONS(4878), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -501915,30 +502994,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22920] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5942), 1, - anon_sym_COLON, - STATE(5020), 1, - sym_type_constraints, - STATE(5098), 1, - sym_class_body, + [23698] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 23, + ACTIONS(4904), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -501953,15 +503024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 30, - sym__automatic_semicolon, + ACTIONS(4906), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -501984,11 +503058,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [22997] = 3, + [23765] = 9, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5054), 1, + sym_type_constraints, + STATE(5343), 1, + sym_function_body, + STATE(5344), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 25, + ACTIONS(4089), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4087), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [23844] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4896), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -502014,7 +503158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 33, + ACTIONS(4898), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -502048,26 +503192,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23064] = 8, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, + [23911] = 8, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8287), 1, + ACTIONS(8240), 1, anon_sym_COLON, - STATE(4963), 1, - sym_type_constraints, - STATE(5247), 1, - sym_enum_class_body, + STATE(5234), 1, + sym__block, + STATE(5235), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 23, + ACTIONS(4250), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -502086,7 +503230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 30, + ACTIONS(4252), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -502117,30 +503261,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23141] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8289), 1, - anon_sym_COLON, - STATE(5004), 1, - sym_type_constraints, - STATE(5247), 1, - sym_class_body, + [23988] = 6, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(6931), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 23, + ACTIONS(3943), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4182), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502155,26 +503300,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 30, - sym__automatic_semicolon, + ACTIONS(4185), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -502186,14 +503328,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23218] = 3, + [24061] = 6, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(6927), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5019), 25, + ACTIONS(3943), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4214), 24, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -502216,14 +503367,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5021), 33, + ACTIONS(4217), 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, @@ -502234,11 +503384,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, @@ -502250,87 +503395,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23285] = 9, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_LBRACE, - STATE(5032), 1, - sym_type_constraints, - STATE(5362), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + [24134] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4158), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4156), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4234), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_AMP, + sym__quest, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [23364] = 3, + ACTIONS(4236), 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, + [24201] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5028), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5075), 25, + ACTIONS(4087), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -502350,18 +503499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5077), 33, + ACTIONS(4089), 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, @@ -502384,22 +503529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23431] = 3, + [24280] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4963), 25, + ACTIONS(4129), 27, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502414,18 +503561,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4965), 33, + ACTIONS(4131), 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, @@ -502448,17 +503593,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23498] = 3, + [24347] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4697), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5025), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 25, + ACTIONS(4097), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -502478,18 +503633,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 33, + ACTIONS(4099), 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, @@ -502512,17 +503663,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23565] = 3, + [24426] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4773), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5021), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 25, + ACTIONS(4142), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -502542,18 +503703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4639), 33, + ACTIONS(4144), 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, @@ -502576,92 +503733,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23632] = 9, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_LBRACE, - STATE(5006), 1, - sym_type_constraints, - STATE(5366), 1, - sym_function_body, - STATE(5399), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4266), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4264), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [23711] = 3, + [24505] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4920), 25, + ACTIONS(4244), 27, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502676,18 +503765,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4922), 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, @@ -502710,17 +503797,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23778] = 3, + [24572] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4821), 1, + sym_function_body, + STATE(5020), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5105), 25, + ACTIONS(4230), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -502740,18 +503837,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5107), 33, + ACTIONS(4232), 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, @@ -502774,15 +503867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23845] = 5, - ACTIONS(8291), 1, - sym__quest, - STATE(4865), 1, - aux_sym_nullable_type_repeat1, + [24651] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4295), 25, + ACTIONS(4148), 27, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -502792,6 +503881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -502808,7 +503899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4297), 31, + ACTIONS(4150), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -502840,22 +503931,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23916] = 3, + [24718] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + ACTIONS(8242), 1, + anon_sym_COLON, + STATE(5091), 1, + sym_type_constraints, + STATE(5093), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4916), 25, + ACTIONS(4077), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502870,18 +503972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4918), 33, + ACTIONS(4079), 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, @@ -502904,25 +504002,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [23983] = 4, - ACTIONS(8293), 1, - anon_sym_AMP, + [24799] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4835), 1, + sym_function_body, + STATE(5018), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 26, + ACTIONS(4260), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -502937,15 +504042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4317), 31, - sym__automatic_semicolon, + ACTIONS(4262), 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, @@ -502969,11 +504072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24052] = 3, + [24878] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4868), 25, + ACTIONS(4331), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -502999,7 +504102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4870), 33, + ACTIONS(4333), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503033,11 +504136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24119] = 3, + [24945] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5059), 25, + ACTIONS(4343), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -503063,7 +504166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5061), 33, + ACTIONS(4345), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503097,88 +504200,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24186] = 5, - ACTIONS(8295), 1, - sym__quest, - STATE(4866), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4248), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, + [25012] = 10, + ACTIONS(5760), 1, anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4250), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(8171), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [24257] = 5, - ACTIONS(8297), 1, - sym__quest, - STATE(4866), 1, - aux_sym_nullable_type_repeat1, + ACTIONS(8238), 1, + anon_sym_EQ, + ACTIONS(8244), 1, + anon_sym_COLON, + STATE(5145), 1, + sym_type_constraints, + STATE(5146), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4282), 25, + ACTIONS(4142), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -503197,15 +504241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4284), 31, + ACTIONS(4144), 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, @@ -503229,11 +504271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24328] = 3, + [25093] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4874), 25, + ACTIONS(4373), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -503259,7 +504301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4876), 33, + ACTIONS(4375), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503293,25 +504335,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24395] = 4, - ACTIONS(8300), 1, - anon_sym_AMP, + [25160] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4315), 26, + ACTIONS(4872), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503326,16 +504365,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4317), 31, - sym__automatic_semicolon, + ACTIONS(4874), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -503358,30 +504399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24464] = 8, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, - anon_sym_LBRACE, - ACTIONS(5938), 1, - anon_sym_COLON, - STATE(4961), 1, - sym_type_constraints, - STATE(5163), 1, - sym_enum_class_body, + [25227] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 23, + ACTIONS(4646), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503396,15 +504429,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 30, - sym__automatic_semicolon, + ACTIONS(4648), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -503427,11 +504463,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24541] = 3, + [25294] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5117), 25, + ACTIONS(4864), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -503457,7 +504493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5119), 33, + ACTIONS(4866), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503491,22 +504527,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24608] = 3, + [25361] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + ACTIONS(8246), 1, + anon_sym_COLON, + STATE(5168), 1, + sym_function_body, + STATE(5169), 1, + sym_type_constraints, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4987), 25, + ACTIONS(4097), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -503521,18 +504568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4989), 33, + ACTIONS(4099), 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, @@ -503555,19 +504598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24675] = 5, - ACTIONS(8291), 1, - sym__quest, - STATE(4865), 1, - aux_sym_nullable_type_repeat1, + [25442] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4276), 25, + ACTIONS(4666), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -503575,6 +504613,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, @@ -503589,16 +504628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4278), 31, - sym__automatic_semicolon, + ACTIONS(4668), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -503621,11 +504662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24746] = 3, + [25509] = 4, + ACTIONS(8200), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4912), 25, + ACTIONS(4992), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -503651,7 +504694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4914), 33, + ACTIONS(4994), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503668,7 +504711,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, @@ -503685,11 +504727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24813] = 3, + [25578] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5125), 25, + ACTIONS(4880), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -503715,7 +504757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5127), 33, + ACTIONS(4882), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503749,24 +504791,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24880] = 8, - ACTIONS(5770), 1, + [25645] = 10, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(5782), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8302), 1, + ACTIONS(8238), 1, + anon_sym_EQ, + ACTIONS(8248), 1, anon_sym_COLON, - STATE(4995), 1, + STATE(5215), 1, + sym_function_body, + STATE(5216), 1, sym_type_constraints, - STATE(5236), 1, - sym_enum_class_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 23, + ACTIONS(4087), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -503787,14 +504832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 30, + ACTIONS(4089), 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, @@ -503818,11 +504862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [24957] = 3, + [25726] = 5, + ACTIONS(8203), 1, + anon_sym_else, + ACTIONS(8250), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4104), 25, + ACTIONS(4856), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -503834,7 +504882,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, @@ -503848,7 +504895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4106), 33, + ACTIONS(4858), 32, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503858,7 +504905,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, @@ -503882,11 +504928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25024] = 3, + [25797] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5149), 25, + ACTIONS(4868), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -503912,7 +504958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5151), 33, + ACTIONS(4870), 33, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -503946,14 +504992,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25091] = 3, + [25864] = 7, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, + anon_sym_LBRACE, + STATE(5166), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 25, + ACTIONS(4451), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -503961,7 +505014,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, @@ -503976,18 +505028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5191), 33, + ACTIONS(4453), 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, @@ -504010,11 +505059,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25158] = 3, + [25938] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4983), 25, + ACTIONS(4398), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -504025,8 +505074,9 @@ 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, @@ -504040,18 +505090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4985), 33, + ACTIONS(4400), 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, @@ -504074,17 +505122,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25225] = 3, + [26004] = 8, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + ACTIONS(8252), 1, + anon_sym_COLON, + STATE(4781), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4040), 25, + ACTIONS(4196), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -504104,18 +505160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4042), 33, + ACTIONS(4198), 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, @@ -504138,157 +505190,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25292] = 9, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + [26080] = 8, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(5056), 1, - sym_type_constraints, - STATE(5399), 1, - sym__block, - STATE(5411), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4196), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4194), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [25371] = 9, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(8175), 1, + ACTIONS(8144), 1, anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_LBRACE, - STATE(5021), 1, - sym_type_constraints, - STATE(5399), 1, + ACTIONS(8254), 1, + anon_sym_COLON, + STATE(4781), 1, sym__block, - STATE(5410), 1, + STATE(4832), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4262), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4260), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [25450] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3114), 25, + ACTIONS(4238), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -504308,18 +505228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3116), 33, + ACTIONS(4240), 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, @@ -504342,22 +505258,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25517] = 3, + [26156] = 7, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_where, + STATE(5014), 1, + sym_type_constraints, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5153), 25, + ACTIONS(4412), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504372,18 +505294,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5155), 33, + ACTIONS(4414), 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, @@ -504406,23 +505325,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25584] = 9, - ACTIONS(5754), 1, + [26230] = 8, + ACTIONS(5720), 1, anon_sym_where, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + ACTIONS(5728), 1, anon_sym_LBRACE, - STATE(5046), 1, + ACTIONS(8256), 1, + anon_sym_COLON, + STATE(5291), 1, sym_type_constraints, - STATE(5319), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + STATE(5365), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4177), 22, + ACTIONS(4154), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -504445,7 +505362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4175), 30, + ACTIONS(4152), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -504476,22 +505393,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [25663] = 3, + [26306] = 7, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(4967), 1, + sym_type_constraints, + STATE(5175), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4838), 25, + ACTIONS(4202), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504506,18 +505429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4840), 33, + ACTIONS(4204), 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, @@ -504540,14 +505460,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25730] = 3, + [26380] = 5, + ACTIONS(8258), 1, + anon_sym_DOT, + STATE(4640), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5113), 25, - anon_sym_DOT, + ACTIONS(4103), 24, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -504555,7 +505479,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, @@ -504570,18 +505493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5115), 33, + ACTIONS(4105), 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, @@ -504604,22 +505525,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25797] = 3, + [26450] = 7, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_where, + STATE(4995), 1, + sym_type_constraints, + STATE(5228), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5121), 25, + ACTIONS(4274), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -504634,18 +505561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5123), 33, + ACTIONS(4276), 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, @@ -504668,15 +505592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25864] = 5, - ACTIONS(8304), 1, + [26524] = 5, + ACTIONS(8261), 1, aux_sym_unsigned_literal_token1, - ACTIONS(8306), 1, + ACTIONS(8263), 1, anon_sym_L, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4499), 24, + ACTIONS(4402), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -504701,7 +505625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4501), 31, + ACTIONS(4404), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -504733,21 +505657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [25934] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, + [26594] = 8, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(5948), 1, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8265), 1, anon_sym_COLON, - STATE(5020), 1, + STATE(4967), 1, sym_type_constraints, - STATE(5098), 1, - sym_class_body, + STATE(5175), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 23, + ACTIONS(4202), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -504771,7 +505695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 29, + ACTIONS(4204), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -504801,156 +505725,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26010] = 8, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, - anon_sym_LBRACE, - ACTIONS(8308), 1, - anon_sym_COLON, - STATE(4995), 1, - sym_type_constraints, - STATE(5236), 1, - sym_enum_class_body, + [26670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4202), 29, + ACTIONS(4678), 25, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [26086] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, + ACTIONS(4676), 32, + anon_sym_by, anon_sym_where, - ACTIONS(6020), 1, - anon_sym_COLON, - STATE(4962), 1, - sym_type_constraints, - STATE(5087), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3288), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3292), 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, - [26162] = 3, + [26736] = 8, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(5728), 1, + anon_sym_LBRACE, + ACTIONS(5938), 1, + anon_sym_COLON, + STATE(5261), 1, + sym_type_constraints, + STATE(5350), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4556), 25, + ACTIONS(3240), 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, @@ -504967,9 +505825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4553), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(3236), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -505000,290 +505856,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [26228] = 5, - ACTIONS(8310), 1, - anon_sym_DOT, - STATE(4641), 1, - aux_sym_user_type_repeat1, + [26812] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 24, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4164), 31, + ACTIONS(4673), 25, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [26298] = 8, - ACTIONS(5770), 1, + ACTIONS(4670), 32, + anon_sym_by, anon_sym_where, - ACTIONS(5782), 1, - anon_sym_LBRACE, - ACTIONS(8313), 1, - anon_sym_COLON, - STATE(4963), 1, - sym_type_constraints, - STATE(5247), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4268), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4270), 29, + [26878] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4601), 25, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [26374] = 8, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - ACTIONS(8315), 1, - anon_sym_COLON, - STATE(4804), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4327), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4599), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4329), 29, - sym_safe_nav, + [26944] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4659), 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_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [26450] = 8, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - ACTIONS(8317), 1, - anon_sym_COLON, - STATE(4772), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4206), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4656), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4208), 29, - sym_safe_nav, + [27010] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4654), 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_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [26526] = 8, - ACTIONS(8098), 1, + ACTIONS(4652), 32, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [27076] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8220), 1, + ACTIONS(8238), 1, anon_sym_EQ, - ACTIONS(8319), 1, - anon_sym_COLON, - STATE(4870), 1, + STATE(5215), 1, sym_function_body, - STATE(4871), 1, + STATE(5216), 1, + sym_type_constraints, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 23, + ACTIONS(4087), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -505292,7 +506133,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, @@ -505307,13 +506147,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4291), 29, + ACTIONS(4089), 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, @@ -505337,161 +506177,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26602] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [27154] = 8, + ACTIONS(5714), 1, anon_sym_LBRACE, - ACTIONS(8321), 1, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8267), 1, anon_sym_COLON, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5198), 1, + STATE(5307), 1, sym_type_constraints, + STATE(5334), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4204), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4202), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4177), 29, - sym_safe_nav, + [27230] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4644), 25, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [26682] = 7, - ACTIONS(5770), 1, + ACTIONS(4642), 32, + anon_sym_by, anon_sym_where, - ACTIONS(5782), 1, - anon_sym_LBRACE, - STATE(4972), 1, - sym_type_constraints, - STATE(5158), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4423), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4425), 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, - [26756] = 7, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, + [27296] = 7, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(4963), 1, - sym_type_constraints, - STATE(5247), 1, - sym_enum_class_body, + STATE(5126), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 23, + ACTIONS(4443), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -505510,7 +506344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 30, + ACTIONS(4445), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -505541,94 +506375,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26830] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5213), 1, - sym_function_body, - STATE(5223), 1, - sym_type_constraints, + [27370] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4640), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4638), 32, + 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_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4158), 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, - [26908] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, + [27436] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5143), 1, + ACTIONS(5760), 1, + anon_sym_where, + STATE(4979), 1, sym_type_constraints, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + STATE(5175), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 22, + ACTIONS(4202), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -505649,13 +506474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 29, + ACTIONS(4204), 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, @@ -505679,20 +506505,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [26986] = 3, + [27510] = 8, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(5728), 1, + anon_sym_LBRACE, + ACTIONS(8269), 1, + anon_sym_COLON, + STATE(5298), 1, + sym_type_constraints, + STATE(5334), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4547), 25, + ACTIONS(4204), 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, @@ -505709,9 +506542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4545), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(4202), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -505742,19 +506573,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [27052] = 7, - ACTIONS(5770), 1, + [27586] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8271), 1, + anon_sym_COLON, + STATE(4979), 1, + sym_type_constraints, + STATE(5175), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4202), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4204), 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, + [27662] = 8, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(5782), 1, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(4995), 1, + ACTIONS(5958), 1, + anon_sym_COLON, + STATE(5012), 1, sym_type_constraints, - STATE(5236), 1, + STATE(5191), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 23, + ACTIONS(3236), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -505778,14 +506679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 30, + ACTIONS(3240), 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, @@ -505809,20 +506709,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27126] = 3, + [27738] = 8, + ACTIONS(5714), 1, + anon_sym_LBRACE, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(5946), 1, + anon_sym_COLON, + STATE(5294), 1, + sym_type_constraints, + STATE(5321), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4532), 25, + ACTIONS(3222), 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, @@ -505839,9 +506746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4529), 32, - anon_sym_by, - anon_sym_where, + ACTIONS(3218), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -505872,11 +506777,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [27192] = 3, + [27814] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 25, + ACTIONS(4636), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -505902,7 +506807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4593), 32, + ACTIONS(4634), 32, anon_sym_by, anon_sym_where, anon_sym_object, @@ -505935,95 +506840,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [27258] = 8, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(5800), 1, + [27880] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8325), 1, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8273), 1, anon_sym_COLON, - STATE(5281), 1, + STATE(4995), 1, sym_type_constraints, - STATE(5341), 1, - sym_enum_class_body, + STATE(5228), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4202), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4200), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4274), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [27334] = 8, - ACTIONS(5748), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(6018), 1, - anon_sym_COLON, - STATE(5260), 1, - sym_type_constraints, - STATE(5343), 1, - sym_class_body, + ACTIONS(4276), 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, + [27956] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 22, + ACTIONS(4272), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -506040,7 +506938,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3288), 30, + ACTIONS(4270), 32, + anon_sym_by, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -506071,26 +506971,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [27410] = 5, - ACTIONS(8327), 1, - anon_sym_COMMA, - STATE(4665), 1, - aux_sym__delegation_specifiers_repeat1, + [28022] = 8, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5990), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5082), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 25, + ACTIONS(3218), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -506105,14 +507009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4541), 30, + ACTIONS(3222), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -506136,11 +507039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27480] = 3, + [28098] = 5, + ACTIONS(8275), 1, + anon_sym_by, + STATE(5083), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 26, + ACTIONS(4347), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -506152,8 +507059,6 @@ 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, @@ -506167,7 +507072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 31, + ACTIONS(4349), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506199,94 +507104,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27546] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, + [28168] = 8, + ACTIONS(5720), 1, anon_sym_where, - ACTIONS(8329), 1, + ACTIONS(5728), 1, + anon_sym_LBRACE, + ACTIONS(5988), 1, anon_sym_COLON, - STATE(5025), 1, + STATE(5305), 1, sym_type_constraints, - STATE(5196), 1, - sym_class_body, + STATE(5321), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3222), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3218), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4301), 29, + [28244] = 8, + ACTIONS(5714), 1, + anon_sym_LBRACE, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(8277), 1, + anon_sym_COLON, + STATE(5289), 1, + sym_type_constraints, + STATE(5319), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4276), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [27622] = 5, - ACTIONS(8327), 1, - anon_sym_COMMA, - STATE(4910), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(4274), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [28320] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5934), 1, + anon_sym_COLON, + STATE(5034), 1, + sym_type_constraints, + STATE(5088), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4621), 25, + ACTIONS(3226), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -506301,14 +507278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4623), 30, + ACTIONS(3230), 29, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -506332,33 +507308,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27692] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [28396] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - ACTIONS(8331), 1, - anon_sym_COLON, - STATE(4708), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5073), 1, + ACTIONS(5760), 1, + anon_sym_where, + STATE(4968), 1, sym_type_constraints, + STATE(5123), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 21, + ACTIONS(4455), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -506366,51 +507337,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 29, + ACTIONS(4457), 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, - [27772] = 5, - ACTIONS(7113), 1, + [28470] = 5, + ACTIONS(7038), 1, anon_sym_by, - STATE(5224), 1, + STATE(5081), 1, sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 24, + ACTIONS(4349), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -506435,7 +507408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4493), 31, + ACTIONS(4347), 31, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -506467,92 +507440,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [27842] = 7, - ACTIONS(5764), 1, + [28540] = 8, + ACTIONS(5714), 1, anon_sym_LBRACE, - ACTIONS(5770), 1, + ACTIONS(5720), 1, anon_sym_where, - STATE(4977), 1, + ACTIONS(5962), 1, + anon_sym_COLON, + STATE(5282), 1, sym_type_constraints, - STATE(5065), 1, + STATE(5382), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3230), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3226), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4509), 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, - [27916] = 10, - ACTIONS(5490), 1, + [28616] = 10, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - ACTIONS(8333), 1, + ACTIONS(8279), 1, anon_sym_COLON, - STATE(4754), 1, - sym_function_body, - STATE(4871), 1, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4781), 1, sym__block, - STATE(5243), 1, + STATE(4791), 1, + sym_function_body, + STATE(5138), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 21, + ACTIONS(4123), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -506574,7 +507548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 29, + ACTIONS(4125), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506604,19 +507578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [27996] = 7, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, + [28696] = 7, + ACTIONS(5760), 1, anon_sym_where, - STATE(5004), 1, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(4971), 1, sym_type_constraints, - STATE(5247), 1, - sym_class_body, + STATE(5174), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 23, + ACTIONS(4335), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -506640,7 +507614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 30, + ACTIONS(4337), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -506671,22 +507645,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28070] = 7, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, + [28770] = 9, + ACTIONS(5760), 1, anon_sym_where, - STATE(5016), 1, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5127), 1, sym_type_constraints, - STATE(5208), 1, - sym_class_body, + STATE(5129), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 23, + ACTIONS(4260), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -506707,14 +507684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 30, + ACTIONS(4262), 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, @@ -506738,25 +507714,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28144] = 10, - ACTIONS(5490), 1, + [28848] = 10, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, + ACTIONS(8281), 1, anon_sym_EQ, - ACTIONS(8335), 1, + ACTIONS(8283), 1, anon_sym_COLON, - STATE(4855), 1, + STATE(4773), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, - STATE(5216), 1, + STATE(5230), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 21, + ACTIONS(4142), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -506778,7 +507754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 29, + ACTIONS(4144), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -506808,223 +507784,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28224] = 3, + [28928] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4561), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4343), 26, + anon_sym_DOT, + anon_sym_as, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4559), 32, - anon_sym_by, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_catch, + anon_sym_finally, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [28290] = 8, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(5800), 1, - anon_sym_LBRACE, - ACTIONS(6044), 1, - anon_sym_COLON, - STATE(5289), 1, - sym_type_constraints, - STATE(5328), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3298), 22, + ACTIONS(4345), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3294), 30, - anon_sym_object, - anon_sym_fun, + [28994] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + ACTIONS(8285), 1, + anon_sym_COLON, + STATE(4722), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5164), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4077), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [28366] = 8, - ACTIONS(5748), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(8337), 1, - anon_sym_COLON, - STATE(5296), 1, - sym_type_constraints, - STATE(5379), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4270), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4079), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4268), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [28442] = 7, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, + [29074] = 7, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5104), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + STATE(4991), 1, + sym_type_constraints, + STATE(5130), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 23, + ACTIONS(4420), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -507043,7 +507953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 30, + ACTIONS(4422), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507074,21 +507984,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28516] = 5, - ACTIONS(8339), 1, - anon_sym_by, - STATE(5233), 1, - sym_value_arguments, + [29148] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5168), 1, + sym_function_body, + STATE(5169), 1, + sym_type_constraints, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 24, + ACTIONS(4097), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -507107,15 +508023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 31, + ACTIONS(4099), 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, @@ -507139,19 +508053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28586] = 7, - ACTIONS(8199), 1, + [29226] = 7, + ACTIONS(8169), 1, anon_sym_EQ, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(5110), 1, + STATE(5193), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 23, + ACTIONS(4196), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -507175,7 +508089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 30, + ACTIONS(4198), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507206,24 +508120,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28660] = 3, + [29300] = 8, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + ACTIONS(8287), 1, + anon_sym_COLON, + STATE(4780), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4419), 26, + ACTIONS(4250), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -507237,15 +508158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4421), 31, - sym__automatic_semicolon, + ACTIONS(4252), 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, @@ -507269,19 +508188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28726] = 7, - ACTIONS(8199), 1, + [29376] = 7, + ACTIONS(8169), 1, anon_sym_EQ, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(5116), 1, + STATE(5171), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 23, + ACTIONS(4416), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -507305,7 +508224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 30, + ACTIONS(4418), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507336,31 +508255,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28800] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8341), 1, - anon_sym_COLON, - STATE(5004), 1, - sym_type_constraints, - STATE(5247), 1, - sym_class_body, + [29450] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 23, + ACTIONS(4331), 26, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, anon_sym_else, + anon_sym_catch, + anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -507374,13 +508286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 29, + ACTIONS(4333), 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, @@ -507404,28 +508318,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [28876] = 7, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, + [29516] = 10, + ACTIONS(5416), 1, anon_sym_where, - STATE(5025), 1, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + ACTIONS(8289), 1, + anon_sym_COLON, + STATE(4697), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5213), 1, sym_type_constraints, - STATE(5196), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 23, + ACTIONS(4097), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -507433,62 +508352,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 30, - sym__automatic_semicolon, + ACTIONS(4099), 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, - [28950] = 7, - ACTIONS(5764), 1, + [29596] = 7, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - STATE(5000), 1, - sym_type_constraints, - STATE(5158), 1, - sym_class_body, + STATE(5093), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 23, + ACTIONS(4077), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -507507,7 +508424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, + ACTIONS(4079), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507538,24 +508455,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29024] = 7, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, + [29670] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + ACTIONS(5760), 1, + anon_sym_where, + STATE(4973), 1, + sym_type_constraints, + STATE(5174), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 23, + ACTIONS(4335), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -507574,7 +508491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 30, + ACTIONS(4337), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507605,147 +508522,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29098] = 3, + [29744] = 7, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(4974), 1, + sym_type_constraints, + STATE(5158), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4607), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(4152), 23, + anon_sym_DOT, + anon_sym_as, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4605), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [29164] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4611), 25, + ACTIONS(4154), 30, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4609), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [29230] = 7, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, + [29818] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 23, + ACTIONS(4369), 26, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -507754,6 +508605,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, @@ -507767,11 +508620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 30, + ACTIONS(4371), 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, @@ -507798,80 +508652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29304] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4631), 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, + [29884] = 5, + ACTIONS(8291), 1, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4629), 32, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [29370] = 6, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(8343), 1, - anon_sym_COLON, - STATE(5227), 1, - sym_class_body, + STATE(4680), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4405), 24, + ACTIONS(4513), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -507882,6 +508671,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, @@ -507896,14 +508686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4407), 30, - sym__automatic_semicolon, + ACTIONS(4515), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -507927,25 +508717,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29442] = 9, - ACTIONS(5770), 1, + [29954] = 8, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8201), 1, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, - STATE(5259), 1, + ACTIONS(8293), 1, + anon_sym_COLON, + STATE(4974), 1, sym_type_constraints, + STATE(5158), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 22, + ACTIONS(4152), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -507966,7 +508755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 29, + ACTIONS(4154), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -507996,92 +508785,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29520] = 8, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(5800), 1, - anon_sym_LBRACE, - ACTIONS(8345), 1, - anon_sym_COLON, - STATE(5266), 1, - sym_type_constraints, - STATE(5379), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4270), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4268), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [29596] = 7, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, + [30030] = 7, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(5063), 1, - sym_type_constraints, - STATE(5208), 1, - sym_enum_class_body, + STATE(5146), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 23, + ACTIONS(4142), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -508100,7 +508821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 30, + ACTIONS(4144), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508131,21 +508852,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29670] = 8, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, + [30104] = 7, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(6042), 1, - anon_sym_COLON, - STATE(4961), 1, + ACTIONS(5760), 1, + anon_sym_where, + STATE(4981), 1, sym_type_constraints, - STATE(5163), 1, - sym_enum_class_body, + STATE(5148), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 23, + ACTIONS(4359), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -508169,13 +508888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 29, + ACTIONS(4361), 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, @@ -508199,19 +508919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29746] = 7, - ACTIONS(8199), 1, + [30178] = 7, + ACTIONS(8169), 1, anon_sym_EQ, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(5152), 1, - sym__block, - STATE(5213), 1, + STATE(5215), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 23, + ACTIONS(4087), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -508235,7 +508955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 30, + ACTIONS(4089), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508266,21 +508986,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29820] = 7, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, + [30252] = 6, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5079), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + ACTIONS(8295), 1, + anon_sym_COLON, + STATE(5092), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 23, + ACTIONS(4353), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -508302,7 +509021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 30, + ACTIONS(4355), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508333,17 +509052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29894] = 6, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(8347), 1, - anon_sym_COLON, - STATE(5222), 1, - sym_class_body, + [30324] = 5, + ACTIONS(8291), 1, + anon_sym_COMMA, + STATE(4944), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 24, + ACTIONS(4587), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -508354,6 +509071,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, @@ -508368,14 +509086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 30, - sym__automatic_semicolon, + ACTIONS(4589), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -508399,24 +509117,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [29966] = 7, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, + [30394] = 7, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5152), 1, - sym__block, - STATE(5235), 1, - sym_function_body, + STATE(4983), 1, + sym_type_constraints, + STATE(5140), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4393), 23, + ACTIONS(4447), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -508435,7 +509153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4395), 30, + ACTIONS(4449), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508466,90 +509184,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30040] = 8, - ACTIONS(5748), 1, + [30468] = 7, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(6016), 1, - anon_sym_COLON, - STATE(5303), 1, - sym_type_constraints, - STATE(5369), 1, - sym_class_body, + STATE(5168), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3276), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4097), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [30116] = 7, - ACTIONS(5770), 1, + ACTIONS(4099), 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, + [30542] = 9, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(5782), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(5010), 1, - sym_type_constraints, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5134), 1, + sym_function_body, STATE(5136), 1, - sym_enum_class_body, + sym_type_constraints, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4415), 23, + ACTIONS(4230), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, @@ -508570,14 +509290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4417), 30, + ACTIONS(4232), 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, @@ -508601,27 +509320,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30190] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, + [30620] = 7, + ACTIONS(8169), 1, anon_sym_EQ, - STATE(5107), 1, - sym_type_constraints, - STATE(5110), 1, + ACTIONS(8171), 1, + anon_sym_LBRACE, + STATE(5129), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 22, + ACTIONS(4260), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -508640,13 +509356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 29, + ACTIONS(4262), 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, @@ -508670,21 +509387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30268] = 8, - ACTIONS(5770), 1, + [30694] = 7, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(5782), 1, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(6000), 1, - anon_sym_COLON, - STATE(4999), 1, + STATE(4977), 1, sym_type_constraints, - STATE(5098), 1, + STATE(5148), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 23, + ACTIONS(4359), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -508708,13 +509423,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 29, + ACTIONS(4361), 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, @@ -508738,87 +509454,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30344] = 3, + [30768] = 7, + ACTIONS(8169), 1, + anon_sym_EQ, + ACTIONS(8171), 1, + anon_sym_LBRACE, + STATE(5134), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4278), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4276), 32, - anon_sym_by, + ACTIONS(4230), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [30410] = 7, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, + ACTIONS(4232), 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, + [30842] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5152), 1, - sym__block, - STATE(5234), 1, - sym_function_body, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(6010), 1, + anon_sym_COLON, + STATE(5048), 1, + sym_type_constraints, + STATE(5082), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 23, + ACTIONS(3218), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -508837,14 +509559,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 30, + ACTIONS(3222), 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, @@ -508868,21 +509589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30484] = 7, - ACTIONS(8199), 1, - anon_sym_EQ, - ACTIONS(8201), 1, + [30918] = 6, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5152), 1, - sym__block, - STATE(5193), 1, - sym_function_body, + ACTIONS(8297), 1, + anon_sym_COLON, + STATE(5195), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 23, + ACTIONS(4325), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -508904,7 +509624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 30, + ACTIONS(4327), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -508935,87 +509655,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30558] = 3, + [30990] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + ACTIONS(8299), 1, + anon_sym_COLON, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5192), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4401), 26, + ACTIONS(4087), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4403), 31, - sym__automatic_semicolon, + ACTIONS(4089), 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, - [30624] = 3, + [31070] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5145), 1, + sym_type_constraints, + STATE(5146), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4446), 26, + ACTIONS(4142), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, anon_sym_else, - anon_sym_catch, - anon_sym_finally, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -509029,15 +509764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4448), 31, + ACTIONS(4144), 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, @@ -509061,28 +509794,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30690] = 7, - ACTIONS(5770), 1, + [31148] = 9, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(5782), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4989), 1, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4773), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5230), 1, sym_type_constraints, - STATE(5114), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4460), 23, + ACTIONS(4142), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -509090,65 +509826,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4462), 30, - sym__automatic_semicolon, + ACTIONS(4144), 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, - [30764] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, + [31225] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5116), 1, - sym_function_body, - STATE(5117), 1, - sym_type_constraints, - STATE(5152), 1, - sym__block, + STATE(5088), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 22, + ACTIONS(3226), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -509167,13 +509895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 29, + ACTIONS(3230), 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, @@ -509197,96 +509926,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30842] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [31294] = 8, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, + ACTIONS(8238), 1, anon_sym_EQ, - ACTIONS(8349), 1, + ACTIONS(8301), 1, anon_sym_COLON, - STATE(4728), 1, + STATE(5180), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, - STATE(5111), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4133), 21, + ACTIONS(4238), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4135), 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, - [30922] = 7, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - STATE(5019), 1, - sym_type_constraints, - STATE(5181), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4468), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -509303,14 +509963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4470), 30, + ACTIONS(4240), 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, @@ -509334,25 +509993,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [30996] = 8, - ACTIONS(5748), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(8351), 1, - anon_sym_COLON, - STATE(5269), 1, - sym_type_constraints, - STATE(5412), 1, - sym_class_body, + [31369] = 5, + ACTIONS(8303), 1, + anon_sym_COMMA, + STATE(4964), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 22, + ACTIONS(4375), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -509371,7 +510026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4299), 30, + ACTIONS(4373), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -509402,83 +510057,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [31072] = 8, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(5800), 1, - anon_sym_LBRACE, - ACTIONS(6002), 1, - anon_sym_COLON, - STATE(5277), 1, - sym_type_constraints, - STATE(5369), 1, - sym_enum_class_body, + [31438] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3276), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4525), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [31148] = 5, - ACTIONS(5782), 1, + ACTIONS(4527), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(5236), 1, - sym_enum_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [31503] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 24, + ACTIONS(4603), 25, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -509503,11 +510149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 30, + ACTIONS(4605), 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, @@ -509534,15 +510181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31217] = 5, - ACTIONS(5764), 1, + [31568] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5196), 1, - sym_class_body, + STATE(5174), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 24, + ACTIONS(4335), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -509567,7 +510214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 30, + ACTIONS(4337), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509598,15 +510245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31286] = 5, - ACTIONS(5782), 1, + [31637] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5208), 1, - sym_enum_class_body, + STATE(5150), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 24, + ACTIONS(4607), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -509631,7 +510278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 30, + ACTIONS(4609), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509662,15 +510309,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31355] = 3, + [31706] = 4, + STATE(5053), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4605), 25, + ACTIONS(4513), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -509692,7 +510340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4607), 31, + ACTIONS(4515), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -509724,22 +510372,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31420] = 3, + [31773] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5192), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4609), 25, + ACTIONS(4087), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -509747,64 +510404,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4611), 31, - sym__automatic_semicolon, + ACTIONS(4089), 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, - [31485] = 8, - ACTIONS(8201), 1, + [31850] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - ACTIONS(8353), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5253), 1, - sym_function_body, + STATE(5148), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 22, + ACTIONS(4359), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -509823,13 +510473,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4208), 29, + ACTIONS(4361), 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, @@ -509853,15 +510504,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31560] = 3, + [31919] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5082), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4629), 25, + ACTIONS(3218), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -509883,12 +510537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4631), 31, + ACTIONS(3222), 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, @@ -509915,12 +510568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31625] = 3, + [31988] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5148), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4724), 25, - anon_sym_COLON, + ACTIONS(4359), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -509945,12 +510601,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4726), 31, + ACTIONS(4361), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -509977,15 +510632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31690] = 5, - ACTIONS(8355), 1, - anon_sym_COMMA, - STATE(5030), 1, - aux_sym_type_constraints_repeat1, + [32057] = 5, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5140), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4371), 24, + ACTIONS(4447), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -510010,14 +510665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4373), 30, + ACTIONS(4449), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -510041,21 +510696,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31759] = 8, - ACTIONS(8098), 1, + [32126] = 8, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, + ACTIONS(8281), 1, anon_sym_EQ, - ACTIONS(8357), 1, + ACTIONS(8306), 1, anon_sym_COLON, - STATE(4772), 1, + STATE(4780), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 22, + ACTIONS(4250), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -510078,7 +510733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4208), 29, + ACTIONS(4252), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -510108,27 +510763,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31834] = 6, - ACTIONS(5494), 1, + [32201] = 5, + ACTIONS(8308), 1, + anon_sym_COMMA, + STATE(4964), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4390), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(8359), 1, - anon_sym_COLON, - STATE(4720), 1, - sym_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4388), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [32270] = 5, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5137), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4405), 24, + ACTIONS(4618), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -510143,13 +510860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4407), 29, + ACTIONS(4620), 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, @@ -510173,15 +510891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31905] = 5, - ACTIONS(5782), 1, - anon_sym_LBRACE, - STATE(5119), 1, - sym_enum_class_body, + [32339] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 24, + ACTIONS(4563), 25, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -510206,11 +510921,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 30, + ACTIONS(4565), 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, @@ -510237,31 +510953,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [31974] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [32404] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4787), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5206), 1, - sym_type_constraints, + STATE(5174), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 21, + ACTIONS(4335), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -510269,62 +510979,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 29, + ACTIONS(4337), 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, - [32051] = 8, - ACTIONS(8098), 1, + [32473] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, + ACTIONS(8281), 1, anon_sym_EQ, - ACTIONS(8361), 1, - anon_sym_COLON, - STATE(4870), 1, + STATE(4697), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, + STATE(5213), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 22, + ACTIONS(4097), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -510342,7 +511055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4291), 29, + ACTIONS(4099), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -510372,15 +511085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32126] = 5, - ACTIONS(5764), 1, + [32550] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5167), 1, + STATE(5137), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4644), 24, + ACTIONS(4618), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -510405,7 +511118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4646), 30, + ACTIONS(4620), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510436,28 +511149,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32195] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4708), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [32619] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 23, + ACTIONS(4583), 25, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -510472,13 +511179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 29, + ACTIONS(4585), 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, @@ -510502,15 +511211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32268] = 5, - ACTIONS(5764), 1, + [32684] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - STATE(5181), 1, - sym_class_body, + STATE(5130), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4468), 24, + ACTIONS(4420), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -510535,7 +511244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4470), 30, + ACTIONS(4422), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510566,12 +511275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32337] = 3, + [32753] = 4, + ACTIONS(8310), 1, + anon_sym_AT2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4758), 25, - anon_sym_COLON, + ACTIONS(4698), 25, + anon_sym_AT, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -510596,10 +511307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4760), 31, + ACTIONS(4700), 30, sym__automatic_semicolon, sym_safe_nav, - anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, @@ -510628,82 +511338,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32402] = 5, - ACTIONS(8363), 1, - anon_sym_COMMA, - STATE(5008), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4541), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + [32820] = 8, + ACTIONS(8171), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4539), 31, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [32471] = 3, + ACTIONS(8238), 1, + anon_sym_EQ, + ACTIONS(8312), 1, + anon_sym_COLON, + STATE(5193), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4559), 25, + ACTIONS(4196), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -510722,15 +511375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4561), 31, + ACTIONS(4198), 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, @@ -510754,11 +511405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32536] = 3, + [32895] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4553), 25, + ACTIONS(4270), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -510784,7 +511435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4556), 31, + ACTIONS(4272), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -510816,84 +511467,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32601] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4599), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, + [32960] = 8, + ACTIONS(8040), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4597), 32, + ACTIONS(8281), 1, + anon_sym_EQ, + ACTIONS(8314), 1, anon_sym_COLON, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [32666] = 3, + STATE(4781), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4597), 25, - anon_sym_COLON, + ACTIONS(4196), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -510901,64 +511498,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4599), 31, - sym__automatic_semicolon, + ACTIONS(4198), 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, - [32731] = 5, - ACTIONS(8365), 1, - anon_sym_COMMA, - STATE(5013), 1, - aux_sym__delegation_specifiers_repeat1, + [33035] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4621), 24, + ACTIONS(4196), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -510973,14 +511570,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4623), 30, - sym__automatic_semicolon, + ACTIONS(4198), 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, @@ -511004,28 +511600,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32800] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4791), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [33108] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 23, + ACTIONS(4634), 25, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -511040,13 +511630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 29, + ACTIONS(4636), 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, @@ -511070,11 +511662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [32873] = 3, + [33173] = 5, + ACTIONS(8308), 1, + anon_sym_COMMA, + STATE(4976), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4635), 24, + ACTIONS(4396), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -511099,9 +511695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4633), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4394), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -511132,28 +511726,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [32938] = 7, - ACTIONS(8098), 1, + [33242] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4787), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + STATE(5065), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 23, + ACTIONS(4630), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -511168,13 +511759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 29, + ACTIONS(4632), 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, @@ -511198,28 +511790,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33011] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4699), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [33311] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 23, + ACTIONS(4521), 25, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -511234,13 +511820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 29, + ACTIONS(4523), 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, @@ -511264,18 +511852,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33084] = 5, - ACTIONS(5782), 1, - anon_sym_LBRACE, - STATE(5109), 1, - sym_enum_class_body, + [33376] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4716), 24, + ACTIONS(4638), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -511297,11 +511882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4718), 30, + ACTIONS(4640), 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, @@ -511328,18 +511914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33153] = 5, - ACTIONS(8367), 1, - anon_sym_COMMA, - STATE(4990), 1, - aux_sym_type_constraints_repeat1, + [33441] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4431), 24, + ACTIONS(4642), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -511361,7 +511944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4433), 30, + ACTIONS(4644), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511369,6 +511952,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, @@ -511392,276 +511976,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33222] = 7, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + [33506] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5377), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + STATE(5118), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4152), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4150), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4412), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [33295] = 5, - ACTIONS(8370), 1, - anon_sym_COMMA, - STATE(5058), 1, - aux_sym_type_constraints_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4373), 24, + ACTIONS(4414), 30, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4371), 30, - anon_sym_object, - anon_sym_fun, + [33575] = 8, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + ACTIONS(8316), 1, + anon_sym_COLON, + STATE(4781), 1, + sym__block, + STATE(4832), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4238), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [33364] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4537), 24, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4240), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4535), 32, - anon_sym_COLON, + [33650] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4652), 25, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_by, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [33429] = 7, - ACTIONS(5748), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_where, - STATE(5269), 1, - sym_type_constraints, - STATE(5412), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4301), 22, + ACTIONS(4654), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4299), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [33502] = 5, - ACTIONS(5782), 1, - anon_sym_LBRACE, - STATE(5136), 1, - sym_enum_class_body, + [33715] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4415), 24, + ACTIONS(4656), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -511683,11 +512199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4417), 30, + ACTIONS(4659), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, @@ -511714,25 +512231,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33571] = 5, - ACTIONS(5764), 1, + [33780] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(5072), 1, - sym_class_body, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4821), 1, + sym_function_body, + STATE(5238), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4668), 24, + ACTIONS(4230), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -511740,53 +512263,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4670), 30, - sym__automatic_semicolon, + ACTIONS(4232), 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, - [33640] = 3, + [33857] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4648), 25, - anon_sym_COLON, + ACTIONS(4599), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -511808,7 +512329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4650), 31, + ACTIONS(4601), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -511840,28 +512361,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33705] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [33922] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 23, + ACTIONS(4509), 25, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -511876,13 +512391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 29, + ACTIONS(4511), 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, @@ -511906,18 +512423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33778] = 5, - ACTIONS(5782), 1, - anon_sym_LBRACE, - STATE(5247), 1, - sym_enum_class_body, + [33987] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 24, + ACTIONS(4670), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -511939,11 +512453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 30, + ACTIONS(4673), 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, @@ -511970,18 +512485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33847] = 5, - ACTIONS(5764), 1, - anon_sym_LBRACE, - STATE(5119), 1, - sym_class_body, + [34052] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 24, + ACTIONS(4676), 25, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -512003,11 +512515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 30, + ACTIONS(4678), 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, @@ -512034,23 +512547,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [33916] = 7, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_LBRACE, - STATE(5362), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + [34117] = 5, + ACTIONS(8318), 1, + anon_sym_COMMA, + STATE(5017), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4158), 22, + ACTIONS(4589), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -512069,7 +512579,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4156), 30, + ACTIONS(4587), 31, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512100,25 +512611,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [33989] = 5, - ACTIONS(5782), 1, + [34186] = 6, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(5163), 1, - sym_enum_class_body, + ACTIONS(8320), 1, + anon_sym_COLON, + STATE(4830), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 24, + ACTIONS(4353), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512133,14 +512646,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 30, - sym__automatic_semicolon, + ACTIONS(4355), 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, @@ -512164,25 +512676,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34058] = 7, - ACTIONS(5748), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + [34257] = 9, + ACTIONS(5416), 1, anon_sym_where, - STATE(5276), 1, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4835), 1, + sym_function_body, + STATE(5247), 1, sym_type_constraints, - STATE(5365), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 22, + ACTIONS(4260), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4262), 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, + [34334] = 4, + ACTIONS(7038), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -512199,7 +512775,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4507), 30, + ACTIONS(4347), 31, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512230,25 +512807,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [34131] = 5, - ACTIONS(5764), 1, + [34401] = 6, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(5208), 1, + ACTIONS(8322), 1, + anon_sym_COLON, + STATE(4767), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 24, + ACTIONS(4325), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512263,14 +512842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 30, - sym__automatic_semicolon, + ACTIONS(4327), 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, @@ -512294,85 +512872,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34200] = 7, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(5800), 1, - anon_sym_LBRACE, - STATE(5266), 1, - sym_type_constraints, - STATE(5379), 1, - sym_enum_class_body, + [34472] = 5, + ACTIONS(8324), 1, + anon_sym_COMMA, + STATE(5009), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4268), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4373), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [34273] = 7, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + ACTIONS(4375), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(5349), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + 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, + [34541] = 7, + ACTIONS(5714), 1, + anon_sym_LBRACE, + ACTIONS(5720), 1, + anon_sym_where, + STATE(5289), 1, + sym_type_constraints, + STATE(5319), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 22, + ACTIONS(4276), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -512395,7 +512971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4452), 30, + ACTIONS(4274), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -512426,28 +513002,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [34346] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4754), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [34614] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 23, + ACTIONS(4495), 25, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512462,13 +513032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 29, + ACTIONS(4497), 31, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -512492,95 +513064,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34419] = 5, - ACTIONS(8372), 1, - anon_sym_COMMA, - STATE(5008), 1, - aux_sym__delegation_specifiers_repeat1, + [34679] = 5, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5158), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4639), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4637), 31, + ACTIONS(4152), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [34488] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5198), 1, - sym_type_constraints, + ACTIONS(4154), 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, + [34748] = 5, + ACTIONS(8327), 1, + anon_sym_COMMA, + STATE(5024), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 21, + ACTIONS(4587), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512588,51 +513154,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 29, + ACTIONS(4589), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34565] = 5, - ACTIONS(5782), 1, + [34817] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5114), 1, - sym_enum_class_body, + STATE(5123), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4460), 24, + ACTIONS(4455), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -512657,7 +513225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4462), 30, + ACTIONS(4457), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -512688,31 +513256,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34634] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [34886] = 8, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, + ACTIONS(8238), 1, anon_sym_EQ, - STATE(4708), 1, - sym_function_body, - STATE(4871), 1, + ACTIONS(8329), 1, + anon_sym_COLON, + STATE(5234), 1, sym__block, - STATE(5073), 1, - sym_type_constraints, + STATE(5235), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 21, + ACTIONS(4250), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512720,58 +513286,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 29, + ACTIONS(4252), 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, - [34711] = 3, + [34961] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4720), 25, + ACTIONS(4511), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4509), 32, anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [35026] = 5, + ACTIONS(8318), 1, + anon_sym_COMMA, + STATE(5045), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4515), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4513), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [35095] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4859), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4443), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512786,15 +513485,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4722), 31, - sym__automatic_semicolon, + ACTIONS(4445), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -512818,25 +513515,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34776] = 5, - ACTIONS(8365), 1, - anon_sym_COMMA, - STATE(5049), 1, - aux_sym__delegation_specifiers_repeat1, + [35168] = 7, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5344), 1, + sym__block, + STATE(5392), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4445), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4443), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [35241] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4835), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 24, + ACTIONS(4260), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512851,14 +513617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4541), 30, - sym__automatic_semicolon, + ACTIONS(4262), 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, @@ -512882,22 +513647,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34845] = 3, + [35314] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4821), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4658), 25, - anon_sym_COLON, + ACTIONS(4230), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512912,15 +513683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4660), 31, - sym__automatic_semicolon, + ACTIONS(4232), 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, @@ -512944,30 +513713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [34910] = 8, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - ACTIONS(8375), 1, - anon_sym_COLON, - STATE(4804), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [35387] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 22, + ACTIONS(4503), 25, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -512975,51 +513736,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 29, + ACTIONS(4505), 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, - [34985] = 5, - ACTIONS(5764), 1, + [35452] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5158), 1, + STATE(5087), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4517), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -513044,7 +513808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, + ACTIONS(4519), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513075,15 +513839,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35054] = 3, + [35521] = 5, + ACTIONS(8327), 1, + anon_sym_COMMA, + STATE(5053), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4545), 25, + ACTIONS(4513), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -513105,7 +513872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4547), 31, + ACTIONS(4515), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513113,7 +513880,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, @@ -513137,91 +513903,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35119] = 7, - ACTIONS(5748), 1, + [35590] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_where, - STATE(5296), 1, - sym_type_constraints, - STATE(5379), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4270), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4268), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [35192] = 5, - ACTIONS(5764), 1, - anon_sym_LBRACE, - STATE(5165), 1, - sym_class_body, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4773), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 24, + ACTIONS(4142), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513236,14 +513939,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4674), 30, - sym__automatic_semicolon, + ACTIONS(4144), 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, @@ -513267,15 +513969,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35261] = 5, - ACTIONS(5764), 1, - anon_sym_LBRACE, - STATE(5247), 1, - sym_class_body, + [35663] = 4, + ACTIONS(8275), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 24, + ACTIONS(4347), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -513300,11 +514000,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 30, + ACTIONS(4349), 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, @@ -513331,19 +514032,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35330] = 7, - ACTIONS(8175), 1, + [35730] = 7, + ACTIONS(8135), 1, anon_sym_EQ, - ACTIONS(8177), 1, + ACTIONS(8137), 1, anon_sym_LBRACE, - STATE(5366), 1, - sym_function_body, - STATE(5399), 1, + STATE(5344), 1, sym__block, + STATE(5399), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 22, + ACTIONS(4262), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513366,7 +514067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4264), 30, + ACTIONS(4260), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513397,81 +514098,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [35403] = 7, - ACTIONS(5748), 1, + [35803] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(5754), 1, - anon_sym_where, - STATE(5267), 1, - sym_type_constraints, - STATE(5408), 1, - sym_class_body, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4697), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4468), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4097), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [35476] = 3, + ACTIONS(4099), 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, + [35876] = 5, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5082), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4529), 25, + ACTIONS(3218), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -513493,12 +514197,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4532), 31, + ACTIONS(3222), 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, @@ -513525,15 +514228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35541] = 5, - ACTIONS(5764), 1, - anon_sym_LBRACE, - STATE(5098), 1, - sym_class_body, + [35945] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(4595), 25, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -513558,11 +514258,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 30, + ACTIONS(4597), 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, @@ -513589,25 +514290,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35610] = 5, - ACTIONS(5764), 1, + [36010] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(5065), 1, - sym_class_body, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 24, + ACTIONS(4087), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513622,14 +514326,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4509), 30, - sym__automatic_semicolon, + ACTIONS(4089), 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, @@ -513653,22 +514356,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35679] = 3, + [36083] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4601), 25, + ACTIONS(4523), 24, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4521), 32, anon_sym_COLON, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [36148] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4722), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4077), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -513683,15 +514454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4603), 31, - sym__automatic_semicolon, + ACTIONS(4079), 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, @@ -513715,13 +514484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35744] = 4, - ACTIONS(8339), 1, - anon_sym_by, + [36221] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5228), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 24, + ACTIONS(4274), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -513746,12 +514517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 31, + ACTIONS(4276), 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, @@ -513778,21 +514548,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [35811] = 4, - ACTIONS(7113), 1, - anon_sym_by, + [36290] = 7, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(5728), 1, + anon_sym_LBRACE, + STATE(5302), 1, + sym_type_constraints, + STATE(5383), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 24, + ACTIONS(4422), 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, @@ -513809,8 +514583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4493), 31, - anon_sym_where, + ACTIONS(4420), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513841,19 +514614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [35878] = 7, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(5800), 1, + [36363] = 7, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, anon_sym_LBRACE, - STATE(5295), 1, - sym_type_constraints, - STATE(5392), 1, - sym_enum_class_body, + STATE(5323), 1, + sym_function_body, + STATE(5344), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 22, + ACTIONS(4079), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -513876,7 +514649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4427), 30, + ACTIONS(4077), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -513907,15 +514680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [35951] = 5, - ACTIONS(8355), 1, + [36436] = 5, + ACTIONS(8331), 1, anon_sym_COMMA, - STATE(4990), 1, + STATE(5064), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4389), 24, + ACTIONS(4394), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -513940,7 +514713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4391), 30, + ACTIONS(4396), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -513971,15 +514744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36020] = 5, - ACTIONS(5782), 1, + [36505] = 5, + ACTIONS(5756), 1, anon_sym_LBRACE, - STATE(5098), 1, - sym_enum_class_body, + STATE(5190), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(4591), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -514004,7 +514777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 30, + ACTIONS(4593), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514035,19 +514808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36089] = 7, - ACTIONS(8175), 1, + [36574] = 7, + ACTIONS(8135), 1, anon_sym_EQ, - ACTIONS(8177), 1, + ACTIONS(8137), 1, anon_sym_LBRACE, - STATE(5399), 1, + STATE(5344), 1, sym__block, - STATE(5411), 1, + STATE(5377), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 22, + ACTIONS(4232), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -514070,7 +514843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4194), 30, + ACTIONS(4230), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514101,20 +514874,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36162] = 5, - ACTIONS(8363), 1, - anon_sym_COMMA, - STATE(4979), 1, - aux_sym__delegation_specifiers_repeat1, + [36647] = 7, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(5728), 1, + anon_sym_LBRACE, + STATE(5287), 1, + sym_type_constraints, + STATE(5374), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4623), 23, + ACTIONS(4449), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -514133,8 +514909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4621), 31, - anon_sym_where, + ACTIONS(4447), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514165,81 +514940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36231] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4276), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_by, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4278), 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, - [36296] = 7, - ACTIONS(5748), 1, + [36720] = 7, + ACTIONS(5714), 1, anon_sym_LBRACE, - ACTIONS(5754), 1, + ACTIONS(5720), 1, anon_sym_where, - STATE(5280), 1, + STATE(5288), 1, sym_type_constraints, - STATE(5392), 1, + STATE(5368), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 22, + ACTIONS(4361), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -514262,7 +514975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4427), 30, + ACTIONS(4359), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514293,143 +515006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36369] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4535), 25, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4537), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [36793] = 7, + ACTIONS(5714), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [36434] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4633), 25, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5720), 1, anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4635), 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, - [36499] = 7, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(5800), 1, - anon_sym_LBRACE, - STATE(5281), 1, + STATE(5299), 1, sym_type_constraints, - STATE(5341), 1, - sym_enum_class_body, + STATE(5333), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4202), 22, + ACTIONS(4414), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -514452,7 +515041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4200), 30, + ACTIONS(4412), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514483,19 +515072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36572] = 7, - ACTIONS(5754), 1, + [36866] = 7, + ACTIONS(5720), 1, anon_sym_where, - ACTIONS(5800), 1, + ACTIONS(5728), 1, anon_sym_LBRACE, STATE(5298), 1, sym_type_constraints, - STATE(5324), 1, + STATE(5334), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4462), 22, + ACTIONS(4204), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -514518,7 +515107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4460), 30, + ACTIONS(4202), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514549,12 +515138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36645] = 3, + [36939] = 5, + ACTIONS(5766), 1, + anon_sym_LBRACE, + STATE(5191), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4613), 25, - anon_sym_COLON, + ACTIONS(3236), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -514579,12 +515171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4615), 31, + ACTIONS(3240), 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, @@ -514611,15 +515202,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36710] = 3, + [37008] = 5, + ACTIONS(8333), 1, + anon_sym_COMMA, + STATE(5045), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4593), 25, + ACTIONS(4613), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4611), 31, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37077] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4499), 25, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_by, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -514641,7 +515296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4595), 31, + ACTIONS(4501), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -514673,27 +515328,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36775] = 6, - ACTIONS(5494), 1, + [37142] = 7, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, anon_sym_LBRACE, - ACTIONS(8377), 1, - anon_sym_COLON, - STATE(4785), 1, + STATE(5343), 1, + sym_function_body, + STATE(5344), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4089), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4087), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [37215] = 5, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5175), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 24, + ACTIONS(4202), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -514708,13 +515427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 29, + ACTIONS(4204), 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, @@ -514738,17 +515458,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [36846] = 3, + [37284] = 7, + ACTIONS(5714), 1, + anon_sym_LBRACE, + ACTIONS(5720), 1, + anon_sym_where, + STATE(5307), 1, + sym_type_constraints, + STATE(5334), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4660), 24, + ACTIONS(4204), 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, @@ -514767,9 +515493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4658), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4202), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514800,15 +515524,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36911] = 5, - ACTIONS(8379), 1, - anon_sym_COMMA, - STATE(5044), 1, - aux_sym_type_constraints_repeat1, + [37357] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 24, + ACTIONS(4585), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -514833,7 +515553,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4431), 30, + ACTIONS(4583), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514864,86 +515586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [36980] = 4, - STATE(5049), 1, - aux_sym__delegation_specifiers_repeat1, + [37422] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4541), 31, + ACTIONS(4527), 24, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [37047] = 7, - ACTIONS(8175), 1, anon_sym_EQ, - ACTIONS(8177), 1, anon_sym_LBRACE, - STATE(5399), 1, - sym__block, - STATE(5410), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4262), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -514962,7 +515615,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4260), 30, + ACTIONS(4525), 32, + anon_sym_COLON, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -514993,147 +515648,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37120] = 7, - ACTIONS(8098), 1, + [37487] = 7, + ACTIONS(5714), 1, anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4729), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + ACTIONS(5720), 1, + anon_sym_where, + STATE(5260), 1, + sym_type_constraints, + STATE(5356), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4393), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4395), 29, - sym_safe_nav, + ACTIONS(4457), 22, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [37193] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4734), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4385), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4455), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4387), 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, - [37266] = 5, - ACTIONS(8382), 1, + [37560] = 5, + ACTIONS(8336), 1, anon_sym_COMMA, - STATE(5049), 1, + STATE(5053), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 24, + ACTIONS(4611), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -515158,7 +515747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4639), 30, + ACTIONS(4613), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -515189,150 +515778,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37335] = 5, - ACTIONS(5764), 1, - anon_sym_LBRACE, - STATE(5087), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3288), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3292), 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, - [37404] = 8, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, + [37629] = 7, + ACTIONS(8135), 1, anon_sym_EQ, - ACTIONS(8385), 1, - anon_sym_COLON, - STATE(5152), 1, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5344), 1, sym__block, - STATE(5166), 1, + STATE(5361), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4099), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4097), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4291), 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, - [37479] = 7, - ACTIONS(5754), 1, - anon_sym_where, - ACTIONS(5800), 1, + [37702] = 7, + ACTIONS(5714), 1, anon_sym_LBRACE, - STATE(5283), 1, + ACTIONS(5720), 1, + anon_sym_where, + STATE(5293), 1, sym_type_constraints, - STATE(5327), 1, - sym_enum_class_body, + STATE(5357), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 22, + ACTIONS(4337), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -515355,7 +515879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4423), 30, + ACTIONS(4335), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -515386,85 +515910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37552] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4855), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4150), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4152), 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, - [37625] = 7, - ACTIONS(5754), 1, + [37775] = 7, + ACTIONS(5720), 1, anon_sym_where, - ACTIONS(5800), 1, + ACTIONS(5728), 1, anon_sym_LBRACE, - STATE(5287), 1, + STATE(5291), 1, sym_type_constraints, - STATE(5320), 1, + STATE(5365), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4417), 22, + ACTIONS(4154), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -515487,7 +515945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4415), 30, + ACTIONS(4152), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -515518,28 +515976,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37698] = 7, - ACTIONS(8098), 1, + [37848] = 5, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(8220), 1, - anon_sym_EQ, - STATE(4804), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + STATE(5175), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 23, + ACTIONS(4202), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -515554,13 +516009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 29, + ACTIONS(4204), 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, @@ -515584,19 +516040,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [37771] = 7, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + [37917] = 7, + ACTIONS(5720), 1, + anon_sym_where, + ACTIONS(5728), 1, anon_sym_LBRACE, - STATE(5319), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + STATE(5300), 1, + sym_type_constraints, + STATE(5357), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4177), 22, + ACTIONS(4337), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -515619,7 +516075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4175), 30, + ACTIONS(4335), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -515650,19 +516106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37844] = 7, - ACTIONS(5748), 1, - anon_sym_LBRACE, - ACTIONS(5754), 1, + [37990] = 7, + ACTIONS(5720), 1, anon_sym_where, - STATE(5286), 1, + ACTIONS(5728), 1, + anon_sym_LBRACE, + STATE(5290), 1, sym_type_constraints, - STATE(5327), 1, - sym_class_body, + STATE(5368), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 22, + ACTIONS(4361), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -515685,7 +516141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4423), 30, + ACTIONS(4359), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -515716,21 +516172,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37917] = 5, - ACTIONS(8370), 1, - anon_sym_COMMA, - STATE(5044), 1, - aux_sym_type_constraints_repeat1, + [38063] = 7, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5344), 1, + sym__block, + STATE(5370), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4391), 24, + ACTIONS(4144), 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, @@ -515749,7 +516207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4389), 30, + ACTIONS(4142), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -515780,29 +516238,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [37986] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [38136] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, + ACTIONS(8144), 1, anon_sym_EQ, - STATE(4699), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, - STATE(5084), 1, - sym_type_constraints, + STATE(4841), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 21, + ACTIONS(4451), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -515812,65 +516267,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 29, + ACTIONS(4453), 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, - [38063] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [38209] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, + ACTIONS(8144), 1, anon_sym_EQ, - STATE(4754), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, - STATE(5243), 1, - sym_type_constraints, + STATE(4837), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 21, + ACTIONS(4416), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -515880,50 +516333,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 29, + ACTIONS(4418), 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, - [38140] = 4, - ACTIONS(8387), 1, - anon_sym_AT2, + [38282] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4662), 25, + ACTIONS(4567), 25, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4569), 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, + [38347] = 5, + ACTIONS(8331), 1, + anon_sym_COMMA, + STATE(5009), 1, + aux_sym_type_constraints_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4388), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -515948,14 +516465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4664), 30, + ACTIONS(4390), 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, @@ -515979,25 +516496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38207] = 8, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - ACTIONS(8389), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5193), 1, - sym_function_body, + [38416] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 22, + ACTIONS(4944), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -516016,13 +516525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 29, + ACTIONS(4946), 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, @@ -516046,15 +516557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38282] = 5, - ACTIONS(5782), 1, - anon_sym_LBRACE, - STATE(5158), 1, - sym_enum_class_body, + [38480] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4732), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -516079,11 +516586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 30, + ACTIONS(4734), 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, @@ -516110,12 +516618,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38351] = 3, + [38544] = 4, + ACTIONS(8339), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4652), 25, - anon_sym_COLON, + ACTIONS(4856), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -516126,7 +516635,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, @@ -516140,7 +516648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4654), 31, + ACTIONS(4858), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516172,11 +516680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38416] = 3, + [38610] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4468), 24, + ACTIONS(5033), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -516201,7 +516709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4470), 31, + ACTIONS(5035), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516233,11 +516741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38480] = 3, + [38674] = 5, + ACTIONS(8339), 1, + anon_sym_else, + ACTIONS(8341), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5089), 24, + ACTIONS(4856), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -516248,7 +516760,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, @@ -516262,7 +516773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5091), 31, + ACTIONS(4858), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516271,7 +516782,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, @@ -516294,11 +516804,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38544] = 3, + [38742] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4860), 24, + ACTIONS(5029), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -516323,7 +516833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4862), 31, + ACTIONS(5031), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -516355,17 +516865,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38608] = 4, - ACTIONS(8391), 1, - anon_sym_LPAREN, + [38806] = 4, + ACTIONS(8343), 1, + anon_sym_LT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 24, + ACTIONS(5007), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, - anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, @@ -516386,13 +516895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4240), 30, + ACTIONS(5009), 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, @@ -516417,23 +516927,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [38674] = 6, - ACTIONS(5748), 1, - anon_sym_LBRACE, - ACTIONS(8393), 1, - anon_sym_COLON, - STATE(5361), 1, - sym_class_body, + [38872] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4379), 22, + ACTIONS(4866), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -516450,7 +516956,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4377), 30, + ACTIONS(4864), 31, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -516481,23 +516988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [38744] = 6, - ACTIONS(5748), 1, - anon_sym_LBRACE, - ACTIONS(8395), 1, - anon_sym_COLON, - STATE(5409), 1, - sym_class_body, + [38936] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4407), 22, + ACTIONS(4870), 24, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -516514,7 +517017,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4405), 30, + ACTIONS(4868), 31, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -516545,392 +517049,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [38814] = 3, + [39000] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4639), 31, + ACTIONS(4874), 24, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [38878] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4983), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4872), 31, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4985), 31, + [39064] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4605), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [38942] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4754), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4194), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4603), 32, + anon_sym_COLON, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4196), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [39014] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5213), 1, - sym_function_body, + [39128] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4158), 29, + ACTIONS(4597), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [39086] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4971), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4595), 32, + anon_sym_COLON, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4973), 31, + [39192] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4878), 24, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [39150] = 8, - ACTIONS(5490), 1, + ACTIONS(4876), 31, anon_sym_where, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(6150), 1, - anon_sym_COLON, - STATE(4639), 1, - sym_type_constraints, - STATE(4764), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3288), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(3292), 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, - [39224] = 4, - ACTIONS(8397), 1, - anon_sym_LPAREN, + [39256] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4228), 24, + ACTIONS(1580), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -516955,13 +517322,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4226), 30, + ACTIONS(1578), 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, @@ -516986,72 +517354,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39290] = 3, + [39320] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5153), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4569), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4567), 32, + anon_sym_COLON, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5155), 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, - [39354] = 3, + [39384] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 24, + ACTIONS(3296), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517076,7 +517444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 31, + ACTIONS(3298), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517108,16 +517476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39418] = 3, + [39448] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 25, + ACTIONS(4882), 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, @@ -517138,7 +517505,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4431), 30, + ACTIONS(4880), 31, + anon_sym_where, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -517169,72 +517537,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [39482] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5197), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5199), 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, - [39546] = 3, + [39512] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4979), 24, + ACTIONS(4202), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517259,7 +517566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4981), 31, + ACTIONS(4204), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517291,11 +517598,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39610] = 3, + [39576] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3114), 24, + ACTIONS(4880), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517320,7 +517627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3116), 31, + ACTIONS(4882), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517352,76 +517659,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39674] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4787), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4264), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4266), 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, - [39746] = 3, + [39640] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 24, + ACTIONS(4611), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517446,7 +517688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 31, + ACTIONS(4613), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517478,11 +517720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39810] = 3, + [39704] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5075), 24, + ACTIONS(5019), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517507,7 +517749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5077), 31, + ACTIONS(5021), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517539,11 +517781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39874] = 3, + [39768] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 24, + ACTIONS(3950), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517568,7 +517810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 31, + ACTIONS(3952), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517600,72 +517842,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [39938] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4591), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4589), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [40002] = 3, + [39832] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4040), 24, + ACTIONS(5117), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517690,7 +517871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4042), 31, + ACTIONS(5119), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517722,11 +517903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40066] = 3, + [39896] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5189), 24, + ACTIONS(4274), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517751,7 +517932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5191), 31, + ACTIONS(4276), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517783,11 +517964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40130] = 3, + [39960] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 24, + ACTIONS(4565), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -517795,7 +517976,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, @@ -517812,7 +517992,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5193), 31, + ACTIONS(4563), 32, + anon_sym_COLON, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -517844,72 +518025,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [40194] = 3, + [40024] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 24, + ACTIONS(4331), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4333), 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, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5185), 31, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + [40088] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5215), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4087), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [40258] = 3, + ACTIONS(4089), 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, + [40160] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5027), 24, + ACTIONS(5015), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517934,7 +518180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5029), 31, + ACTIONS(5017), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -517966,11 +518212,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40322] = 3, + [40224] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5039), 24, + ACTIONS(4087), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -517995,7 +518241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5041), 31, + ACTIONS(4089), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518027,11 +518273,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40386] = 3, + [40288] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5043), 24, + ACTIONS(5125), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -518056,7 +518302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5045), 31, + ACTIONS(5127), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518088,78 +518334,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40450] = 3, + [40352] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 24, + ACTIONS(5133), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5135), 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, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5169), 31, + [40416] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1770), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [40514] = 3, + ACTIONS(1772), 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, + [40480] = 6, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(8345), 1, + anon_sym_COLON, + STATE(5195), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4916), 24, + ACTIONS(4325), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -518178,15 +518490,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4918), 31, + ACTIONS(4327), 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, @@ -518210,11 +518520,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40578] = 3, + [40550] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 24, + ACTIONS(5145), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -518239,7 +518549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 31, + ACTIONS(5147), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518271,23 +518581,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40642] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5193), 1, - sym_function_body, + [40614] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 22, + ACTIONS(3218), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -518306,13 +518610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 29, + ACTIONS(3222), 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, @@ -518336,11 +518642,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40714] = 3, + [40678] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 24, + ACTIONS(3236), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -518365,7 +518671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 31, + ACTIONS(3240), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518397,11 +518703,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40778] = 3, + [40742] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5071), 24, + ACTIONS(5113), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -518426,7 +518732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5073), 31, + ACTIONS(5115), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518458,11 +518764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40842] = 3, + [40806] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5059), 24, + ACTIONS(4077), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -518487,7 +518793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5061), 31, + ACTIONS(4079), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518519,11 +518825,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40906] = 3, + [40870] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4868), 24, + ACTIONS(4347), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -518548,7 +518854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4870), 31, + ACTIONS(4349), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518580,14 +518886,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [40970] = 3, + [40934] = 6, + ACTIONS(5011), 1, + anon_sym_EQ, + ACTIONS(8347), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5141), 24, + ACTIONS(5013), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4992), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -518609,7 +518924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5143), 31, + ACTIONS(4994), 25, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518624,12 +518939,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, @@ -518641,11 +518950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41034] = 3, + [41004] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5129), 24, + ACTIONS(5153), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -518670,7 +518979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5131), 31, + ACTIONS(5155), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -518702,84 +519011,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41098] = 3, + [41068] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5051), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4501), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4499), 32, + anon_sym_COLON, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5053), 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, - [41162] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5104), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [41132] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 22, + ACTIONS(3226), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -518798,13 +519101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 29, + ACTIONS(3230), 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, @@ -518828,11 +519133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41234] = 3, + [41196] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4981), 24, + ACTIONS(4505), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -518840,7 +519145,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, @@ -518857,7 +519161,8 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4979), 31, + ACTIONS(4503), 32, + anon_sym_COLON, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -518889,150 +519194,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [41298] = 3, + [41260] = 6, + ACTIONS(5714), 1, + anon_sym_LBRACE, + ACTIONS(8350), 1, + anon_sym_COLON, + STATE(5317), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5101), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5103), 31, + ACTIONS(4327), 22, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [41362] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4452), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + ACTIONS(4325), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(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, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [41426] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4855), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [41330] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 22, + ACTIONS(3096), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -519040,47 +519280,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 29, + ACTIONS(3098), 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, - [41498] = 3, + [41394] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3420), 24, + ACTIONS(5049), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -519105,7 +519348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3422), 31, + ACTIONS(5051), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519137,11 +519380,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41562] = 3, + [41458] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4920), 24, + ACTIONS(5007), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -519166,7 +519409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4922), 31, + ACTIONS(5009), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519198,11 +519441,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41626] = 3, + [41522] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4716), 24, + ACTIONS(4916), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -519227,7 +519470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4718), 31, + ACTIONS(4918), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519259,17 +519502,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41690] = 3, + [41586] = 6, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(8352), 1, + anon_sym_COLON, + STATE(5092), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5097), 24, + ACTIONS(4353), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -519288,15 +519536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5099), 31, + ACTIONS(4355), 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, @@ -519320,21 +519566,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [41754] = 3, + [41656] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(6114), 1, + anon_sym_COLON, + STATE(4658), 1, + sym_type_constraints, + STATE(4804), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 24, + ACTIONS(3226), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -519342,186 +519596,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 31, - sym__automatic_semicolon, + ACTIONS(3230), 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, - [41818] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5110), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [41730] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4266), 29, + ACTIONS(4349), 24, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [41890] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1822), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4347), 31, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(1824), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [41794] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [41954] = 3, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4841), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4900), 24, + ACTIONS(4451), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -519529,50 +519722,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4902), 31, - sym__automatic_semicolon, + ACTIONS(4453), 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, - [42018] = 3, + [41866] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4963), 24, + ACTIONS(4455), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -519597,7 +519787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4965), 31, + ACTIONS(4457), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519629,72 +519819,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42082] = 3, + [41930] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5193), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4497), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4495), 32, + anon_sym_COLON, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5195), 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, - [42146] = 3, + [41994] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4864), 24, + ACTIONS(4373), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -519719,7 +519909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4866), 31, + ACTIONS(4375), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519751,11 +519941,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42210] = 3, + [42058] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4837), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4416), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4418), 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, + [42130] = 6, + ACTIONS(5714), 1, + anon_sym_LBRACE, + ACTIONS(8354), 1, + anon_sym_COLON, + STATE(5386), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4355), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4353), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [42200] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4766), 24, + ACTIONS(4607), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -519780,7 +520099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4768), 31, + ACTIONS(4609), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519812,11 +520131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42274] = 3, + [42264] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5047), 24, + ACTIONS(4896), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -519841,7 +520160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5049), 31, + ACTIONS(4898), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519873,11 +520192,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42338] = 3, + [42328] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5019), 24, + ACTIONS(5003), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -519902,7 +520221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5021), 31, + ACTIONS(5005), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519934,11 +520253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42402] = 3, + [42392] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5169), 24, + ACTIONS(4904), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -519963,7 +520282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5171), 31, + ACTIONS(4906), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -519995,17 +520314,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42466] = 3, + [42456] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5126), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4890), 24, + ACTIONS(4443), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -520024,15 +520349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4892), 31, + ACTIONS(4445), 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, @@ -520056,13 +520379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42530] = 4, - ACTIONS(8399), 1, - anon_sym_LPAREN, + [42528] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4844), 24, + ACTIONS(3368), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -520087,13 +520408,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4846), 30, + ACTIONS(3370), 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, @@ -520118,16 +520440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42596] = 4, - ACTIONS(8401), 1, - anon_sym_LT, + [42592] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4894), 23, + ACTIONS(4443), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, + anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, @@ -520148,7 +520469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4896), 31, + ACTIONS(4445), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520180,11 +520501,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42662] = 3, + [42656] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1429), 24, + ACTIONS(4630), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -520209,7 +520530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1427), 31, + ACTIONS(4632), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520241,11 +520562,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42726] = 3, + [42720] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(8356), 1, + anon_sym_COLON, + STATE(4674), 1, + sym_type_constraints, + STATE(4760), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5149), 24, + ACTIONS(4274), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4276), 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, + [42794] = 8, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(6126), 1, + anon_sym_COLON, + STATE(4690), 1, + sym_type_constraints, + STATE(4733), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3218), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3222), 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, + [42868] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1764), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -520270,7 +520723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5151), 31, + ACTIONS(1766), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520302,11 +520755,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42790] = 3, + [42932] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5055), 24, + ACTIONS(4260), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -520331,7 +520784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5057), 31, + ACTIONS(4262), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520363,82 +520816,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [42854] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4104), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4106), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [42996] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [42918] = 3, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 24, + ACTIONS(4196), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -520446,118 +520845,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 31, - sym__automatic_semicolon, + ACTIONS(4198), 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, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [42982] = 4, - ACTIONS(8403), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4852), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4854), 30, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43048] = 3, + [43068] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5129), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4460), 24, + ACTIONS(4260), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -520576,15 +520916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4462), 31, + ACTIONS(4262), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -520608,11 +520946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43112] = 3, + [43140] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5125), 24, + ACTIONS(5037), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -520637,7 +520975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5127), 31, + ACTIONS(5039), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520669,25 +521007,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43176] = 8, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, + [43204] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8405), 1, - anon_sym_COLON, - STATE(4683), 1, - sym_type_constraints, - STATE(4842), 1, - sym_class_body, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4722), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 21, + ACTIONS(4077), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -520705,7 +521042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 29, + ACTIONS(4079), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -520735,11 +521072,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43250] = 3, + [43276] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3986), 24, + ACTIONS(5045), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -520764,7 +521101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3988), 31, + ACTIONS(5047), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520796,11 +521133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43314] = 3, + [43340] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4999), 24, + ACTIONS(4420), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -520825,7 +521162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5001), 31, + ACTIONS(4422), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520857,11 +521194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43378] = 3, + [43404] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4826), 24, + ACTIONS(4888), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -520886,7 +521223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4828), 31, + ACTIONS(4890), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520918,11 +521255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43442] = 3, + [43468] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4932), 24, + ACTIONS(1682), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -520947,7 +521284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4934), 31, + ACTIONS(1684), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -520979,86 +521316,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43506] = 7, - ACTIONS(8201), 1, + [43532] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5116), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4260), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4262), 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, - [43578] = 3, + ACTIONS(6116), 1, + anon_sym_COLON, + STATE(4689), 1, + sym_type_constraints, + STATE(4733), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5035), 24, + ACTIONS(3218), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521066,50 +521346,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5037), 31, - sym__automatic_semicolon, + ACTIONS(3222), 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, - [43642] = 3, + [43606] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 24, + ACTIONS(5053), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521134,7 +521411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 31, + ACTIONS(5055), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521166,17 +521443,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43706] = 3, + [43670] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5134), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5031), 24, + ACTIONS(4230), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -521195,15 +521478,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5033), 31, + ACTIONS(4232), 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, @@ -521227,11 +521508,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43770] = 3, + [43742] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5023), 24, + ACTIONS(4230), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521256,7 +521537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5025), 31, + ACTIONS(4232), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521288,72 +521569,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43834] = 3, + [43806] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4650), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4648), 32, - anon_sym_COLON, + ACTIONS(4343), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [43898] = 3, + ACTIONS(4345), 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, + [43870] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1734), 24, + ACTIONS(4618), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521378,7 +521659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1736), 31, + ACTIONS(4620), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521410,11 +521691,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [43962] = 3, + [43934] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5161), 24, + ACTIONS(5057), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521439,7 +521720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5163), 31, + ACTIONS(5059), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521471,11 +521752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44026] = 3, + [43998] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4762), 24, + ACTIONS(4710), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521500,7 +521781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4764), 31, + ACTIONS(4712), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521532,11 +521813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44090] = 3, + [44062] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4987), 24, + ACTIONS(4726), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521561,7 +521842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4989), 31, + ACTIONS(4728), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521593,23 +521874,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44154] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5079), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [44126] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 22, + ACTIONS(5093), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -521628,13 +521903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 29, + ACTIONS(5095), 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, @@ -521658,11 +521935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44226] = 3, + [44190] = 4, + ACTIONS(8347), 1, + anon_sym_COLON_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4018), 24, + ACTIONS(4992), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521687,7 +521966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4020), 31, + ACTIONS(4994), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521702,7 +521981,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, @@ -521719,11 +521997,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44290] = 3, + [44256] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5011), 24, + ACTIONS(4646), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521748,7 +522026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5013), 31, + ACTIONS(4648), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521780,11 +522058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44354] = 3, + [44320] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5007), 24, + ACTIONS(4988), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521809,7 +522087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5009), 31, + ACTIONS(4990), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521841,21 +522119,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44418] = 3, + [44384] = 8, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8358), 1, + anon_sym_COLON, + STATE(4691), 1, + sym_type_constraints, + STATE(4710), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5003), 24, + ACTIONS(4202), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -521863,50 +522149,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5005), 31, - sym__automatic_semicolon, + ACTIONS(4204), 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, - [44482] = 3, + [44458] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4754), 24, + ACTIONS(1738), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521931,7 +522214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4756), 31, + ACTIONS(1740), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -521963,11 +522246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44546] = 3, + [44522] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4995), 24, + ACTIONS(4447), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -521992,7 +522275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4997), 31, + ACTIONS(4449), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522024,11 +522307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44610] = 3, + [44586] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4991), 24, + ACTIONS(1754), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -522053,7 +522336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4993), 31, + ACTIONS(1756), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522085,11 +522368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44674] = 3, + [44650] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5093), 24, + ACTIONS(123), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -522114,7 +522397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5095), 31, + ACTIONS(121), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522146,72 +522429,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44738] = 3, + [44714] = 6, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(7203), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4652), 32, - anon_sym_COLON, + ACTIONS(3943), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4182), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [44802] = 3, + ACTIONS(4185), 25, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [44784] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 24, + ACTIONS(5101), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -522236,7 +522522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 31, + ACTIONS(5103), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522268,14 +522554,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44866] = 3, + [44848] = 6, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(7209), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4882), 24, + ACTIONS(3943), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4214), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -522297,14 +522592,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4884), 31, + ACTIONS(4217), 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, @@ -522313,11 +522607,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, @@ -522329,21 +522618,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [44930] = 3, + [44918] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4940), 24, + ACTIONS(4087), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522351,50 +522647,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4942), 31, - sym__automatic_semicolon, + ACTIONS(4089), 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, - [44994] = 3, + [44990] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5117), 24, + ACTIONS(5077), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -522419,7 +522712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5119), 31, + ACTIONS(5079), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522451,11 +522744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45058] = 3, + [45054] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5177), 24, + ACTIONS(4714), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -522480,7 +522773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5179), 31, + ACTIONS(4716), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522512,11 +522805,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45122] = 3, + [45118] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4975), 24, + ACTIONS(4718), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -522541,7 +522834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4977), 31, + ACTIONS(4720), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522573,22 +522866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45186] = 6, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(8407), 1, - anon_sym_COLON, - STATE(5222), 1, - sym_class_body, + [45182] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 23, + ACTIONS(4142), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -522607,13 +522895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 29, + ACTIONS(4144), 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, @@ -522637,90 +522927,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45256] = 3, + [45246] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5146), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4639), 24, + ACTIONS(4142), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4144), 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_COMMA, - anon_sym_STAR, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4637), 31, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + [45318] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5166), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4451), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [45320] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8409), 1, - anon_sym_COLON, - STATE(4650), 1, - sym_type_constraints, - STATE(4842), 1, - sym_enum_class_body, + ACTIONS(4453), 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, + [45390] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 21, + ACTIONS(4451), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -522728,47 +523079,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 29, + ACTIONS(4453), 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, - [45394] = 3, + [45454] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4967), 24, + ACTIONS(5089), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -522793,7 +523147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4969), 31, + ACTIONS(5091), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522825,11 +523179,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45458] = 3, + [45518] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5201), 24, + ACTIONS(4864), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -522854,7 +523208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5203), 31, + ACTIONS(4866), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -522886,22 +523240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45522] = 6, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(8411), 1, - anon_sym_COLON, - STATE(5227), 1, - sym_class_body, + [45582] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4405), 23, + ACTIONS(4359), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -522920,13 +523269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4407), 29, + ACTIONS(4361), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -522950,11 +523301,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45592] = 3, + [45646] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5173), 24, + ACTIONS(4335), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -522979,7 +523330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5175), 31, + ACTIONS(4337), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523011,21 +523362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45656] = 5, - ACTIONS(4908), 1, - anon_sym_EQ, + [45710] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4910), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4442), 23, + ACTIONS(4722), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -523047,7 +523391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 26, + ACTIONS(4724), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523063,6 +523407,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, @@ -523074,21 +523423,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45724] = 3, + [45774] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(8360), 1, + anon_sym_COLON, + STATE(4617), 1, + sym_type_constraints, + STATE(4710), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3189), 24, + ACTIONS(4202), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -523096,50 +523453,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3191), 31, - sym__automatic_semicolon, + ACTIONS(4204), 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, + [45848] = 8, + ACTIONS(5410), 1, anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(6108), 1, + anon_sym_COLON, + STATE(4692), 1, + sym_type_constraints, + STATE(4702), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3236), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3240), 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, - [45788] = 3, + [45922] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5105), 24, + ACTIONS(4984), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -523164,7 +523584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5107), 31, + ACTIONS(4986), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523196,11 +523616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45852] = 3, + [45986] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4549), 24, + ACTIONS(4416), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -523225,7 +523645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4551), 31, + ACTIONS(4418), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523257,78 +523677,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [45916] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4551), 25, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_EQ, + [46050] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4549), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [45980] = 3, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5171), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4672), 24, + ACTIONS(4416), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -523347,15 +523712,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4674), 31, + ACTIONS(4418), 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, @@ -523379,11 +523742,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46044] = 3, + [46122] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4874), 24, + ACTIONS(4666), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -523408,7 +523771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4876), 31, + ACTIONS(4668), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523440,23 +523803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46108] = 6, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(7283), 1, - anon_sym_LPAREN, + [46186] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4234), 23, + ACTIONS(4868), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -523478,13 +523832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4237), 25, + ACTIONS(4870), 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, @@ -523493,6 +523848,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, @@ -523504,11 +523864,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46178] = 3, + [46250] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4908), 24, + ACTIONS(4375), 25, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4373), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [46314] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5129), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -523533,7 +523954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4910), 31, + ACTIONS(5131), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523565,15 +523986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46242] = 3, + [46378] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 24, + ACTIONS(4648), 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, @@ -523594,8 +524016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4493), 31, - anon_sym_where, + ACTIONS(4646), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -523626,11 +524047,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [46306] = 3, + [46442] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5181), 24, + ACTIONS(5109), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -523655,7 +524076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5183), 31, + ACTIONS(5111), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523687,133 +524108,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46370] = 3, + [46506] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(5187), 31, + ACTIONS(4613), 24, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [46434] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5205), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4611), 31, anon_sym_where, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(5207), 31, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [46498] = 3, + [46570] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1808), 24, + ACTIONS(4980), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -523838,7 +524198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1810), 31, + ACTIONS(4982), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523870,11 +524230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46562] = 3, + [46634] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4904), 24, + ACTIONS(5137), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -523899,7 +524259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4906), 31, + ACTIONS(5139), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -523931,13 +524291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46626] = 4, - ACTIONS(6674), 1, - anon_sym_LPAREN, + [46698] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4220), 24, + ACTIONS(4152), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -523962,13 +524320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4223), 30, + ACTIONS(4154), 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, @@ -523993,21 +524352,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46692] = 3, + [46762] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4697), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4442), 24, + ACTIONS(4097), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -524015,50 +524381,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4444), 31, - sym__automatic_semicolon, + ACTIONS(4099), 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, - [46756] = 3, + [46834] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 24, + ACTIONS(4238), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -524083,7 +524446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4208), 31, + ACTIONS(4240), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524115,11 +524478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46820] = 3, + [46898] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5209), 24, + ACTIONS(5141), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -524144,7 +524507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5211), 31, + ACTIONS(5143), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524176,13 +524539,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46884] = 4, - ACTIONS(8413), 1, - anon_sym_else, + [46962] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 23, + ACTIONS(5081), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -524193,6 +524554,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, @@ -524206,7 +524568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 31, + ACTIONS(5083), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524238,11 +524600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [46950] = 3, + [47026] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4507), 24, + ACTIONS(1744), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -524267,7 +524629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4509), 31, + ACTIONS(1746), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524299,23 +524661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47014] = 6, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(7287), 1, - anon_sym_LPAREN, + [47090] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4220), 23, + ACTIONS(4770), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -524337,102 +524690,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4223), 25, + ACTIONS(4772), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [47084] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4699), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4260), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4262), 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, - [47156] = 3, + [47154] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4886), 24, + ACTIONS(4976), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -524457,7 +524751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4888), 31, + ACTIONS(4978), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524489,11 +524783,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47220] = 3, + [47218] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5015), 24, + ACTIONS(4972), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -524518,7 +524812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5017), 31, + ACTIONS(4974), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524550,11 +524844,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47284] = 3, + [47282] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4912), 24, + ACTIONS(4968), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -524579,7 +524873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4914), 31, + ACTIONS(4970), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524611,15 +524905,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47348] = 5, - ACTIONS(8413), 1, - anon_sym_else, - ACTIONS(8415), 1, - anon_sym_SEMI, + [47346] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 23, + ACTIONS(4964), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -524630,6 +524920,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, @@ -524643,7 +524934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 30, + ACTIONS(4966), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524652,6 +524943,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, @@ -524674,156 +524966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47416] = 8, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(8417), 1, - anon_sym_COLON, - STATE(4691), 1, - sym_type_constraints, - STATE(4722), 1, - sym_class_body, + [47410] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 21, + ACTIONS(4776), 24, anon_sym_DOT, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4301), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [47490] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, anon_sym_EQ, - STATE(4804), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4327), 22, - anon_sym_DOT, - anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4329), 29, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [47562] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5235), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4393), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, anon_sym_STAR, anon_sym_in, anon_sym_else, @@ -524840,13 +524995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4395), 29, + ACTIONS(4778), 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, @@ -524870,24 +525027,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47634] = 7, - ACTIONS(8098), 1, + [47474] = 8, + ACTIONS(5410), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4791), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8362), 1, + anon_sym_COLON, + STATE(4676), 1, + sym_type_constraints, + STATE(4759), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 22, + ACTIONS(4152), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -524905,7 +525063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 29, + ACTIONS(4154), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -524935,11 +525093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47706] = 3, + [47548] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4431), 24, + ACTIONS(4780), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -524964,7 +525122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4433), 31, + ACTIONS(4782), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -524996,11 +525154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47770] = 3, + [47612] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4423), 24, + ACTIONS(4872), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -525025,7 +525183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4425), 31, + ACTIONS(4874), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525057,18 +525215,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47834] = 3, + [47676] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4760), 23, + ACTIONS(5121), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(5123), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_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, + [47740] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4668), 25, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -525085,9 +525306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4758), 32, - anon_sym_COLON, - anon_sym_where, + ACTIONS(4666), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -525118,11 +525337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [47898] = 3, + [47804] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5081), 24, + ACTIONS(4788), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -525147,7 +525366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5083), 31, + ACTIONS(4790), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525179,11 +525398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [47962] = 3, + [47868] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5133), 24, + ACTIONS(4792), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -525208,7 +525427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5135), 31, + ACTIONS(4794), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525240,29 +525459,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48026] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(6166), 1, - anon_sym_COLON, - STATE(4643), 1, - sym_type_constraints, - STATE(4775), 1, - sym_enum_class_body, + [47932] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 21, + ACTIONS(4802), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525270,47 +525481,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 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, - [48100] = 3, + [47996] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 24, + ACTIONS(5149), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -525335,7 +525549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 31, + ACTIONS(5151), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525367,13 +525581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48164] = 4, - ACTIONS(6670), 1, - anon_sym_LPAREN, + [48060] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4234), 24, + ACTIONS(5161), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -525398,13 +525610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4237), 30, + ACTIONS(5163), 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, @@ -525429,89 +525642,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48230] = 3, + [48124] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4773), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4615), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4142), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4144), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4613), 32, - anon_sym_COLON, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + [48196] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5193), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4196), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [48294] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4708), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + ACTIONS(4198), 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, + [48268] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 22, + ACTIONS(4097), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525519,65 +525794,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 29, + ACTIONS(4099), 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, - [48366] = 8, - ACTIONS(5484), 1, + [48332] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8419), 1, - anon_sym_COLON, - STATE(4660), 1, - sym_type_constraints, - STATE(4713), 1, - sym_enum_class_body, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5168), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 21, + ACTIONS(4097), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -525585,47 +525861,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 29, + ACTIONS(4099), 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, - [48440] = 3, + [48404] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5113), 24, + ACTIONS(5041), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -525650,7 +525927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5115), 31, + ACTIONS(5043), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525682,11 +525959,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48504] = 3, + [48468] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3312), 24, + ACTIONS(4810), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -525711,7 +525988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3316), 31, + ACTIONS(4812), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525743,72 +526020,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48568] = 3, + [48532] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4603), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4601), 32, - anon_sym_COLON, + ACTIONS(4846), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [48632] = 3, + ACTIONS(4848), 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, + [48596] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4838), 24, + ACTIONS(4814), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -525833,7 +526110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4840), 31, + ACTIONS(4816), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525865,11 +526142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48696] = 3, + [48660] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4770), 24, + ACTIONS(4822), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -525894,7 +526171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4772), 31, + ACTIONS(4824), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -525926,23 +526203,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48760] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, + [48724] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 22, + ACTIONS(5085), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -525961,13 +526232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 29, + ACTIONS(5087), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, @@ -525991,151 +526264,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [48832] = 3, + [48788] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 24, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5213), 31, + ACTIONS(4832), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [48896] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4726), 23, + ACTIONS(4834), 31, sym__automatic_semicolon, - sym__string_start, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4724), 32, - anon_sym_COLON, + [48852] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4924), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [48960] = 8, - ACTIONS(5484), 1, + ACTIONS(4926), 31, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(6138), 1, - anon_sym_COLON, - STATE(4629), 1, - sym_type_constraints, - STATE(4810), 1, - sym_enum_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [48916] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 21, + ACTIONS(3065), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -526143,47 +526408,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 29, + ACTIONS(3067), 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, - [49034] = 3, + [48980] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4878), 24, + ACTIONS(3932), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -526208,7 +526476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4880), 31, + ACTIONS(3934), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526240,11 +526508,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49098] = 3, + [49044] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4589), 24, + ACTIONS(4892), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -526269,7 +526537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4591), 31, + ACTIONS(4894), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526301,11 +526569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49162] = 3, + [49108] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5165), 24, + ACTIONS(4412), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -526330,7 +526598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5167), 31, + ACTIONS(4414), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526362,23 +526630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49226] = 6, - ACTIONS(4948), 1, - anon_sym_EQ, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + [49172] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4944), 23, + ACTIONS(4876), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -526400,7 +526659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4946), 25, + ACTIONS(4878), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526415,6 +526674,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, @@ -526426,25 +526691,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49296] = 8, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, + [49236] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(6180), 1, - anon_sym_COLON, - STATE(4651), 1, - sym_type_constraints, - STATE(4775), 1, - sym_class_body, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4821), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 21, + ACTIONS(4230), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -526462,7 +526726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 29, + ACTIONS(4232), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -526492,11 +526756,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49370] = 3, + [49308] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4894), 24, + ACTIONS(4900), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -526521,7 +526785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4896), 31, + ACTIONS(4902), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526553,11 +526817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49434] = 3, + [49372] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5213), 24, + ACTIONS(4044), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -526582,7 +526846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5215), 31, + ACTIONS(4046), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526614,11 +526878,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49498] = 3, + [49436] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4393), 24, + ACTIONS(4908), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -526643,7 +526907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4395), 31, + ACTIONS(4910), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526675,11 +526939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49562] = 3, + [49500] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5067), 24, + ACTIONS(5023), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -526704,7 +526968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5069), 31, + ACTIONS(5025), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526736,11 +527000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49626] = 3, + [49564] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4415), 24, + ACTIONS(4912), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -526765,7 +527029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4417), 31, + ACTIONS(4914), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526797,17 +527061,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49690] = 3, + [49628] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8238), 1, + anon_sym_EQ, + STATE(5093), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5063), 24, + ACTIONS(4077), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -526826,15 +527096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5065), 31, + ACTIONS(4079), 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, @@ -526858,11 +527126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49754] = 3, + [49700] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1816), 24, + ACTIONS(4999), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -526887,7 +527155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1818), 31, + ACTIONS(5001), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -526919,19 +527187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49818] = 7, - ACTIONS(8098), 1, + [49764] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8323), 1, + ACTIONS(8281), 1, anon_sym_EQ, - STATE(4729), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, + STATE(4835), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4393), 22, + ACTIONS(4260), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -526954,7 +527222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4395), 29, + ACTIONS(4262), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -526984,11 +527252,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49890] = 3, + [49836] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4959), 24, + ACTIONS(4920), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527013,7 +527281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4961), 31, + ACTIONS(4922), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527045,72 +527313,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [49954] = 3, + [49900] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4722), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4720), 32, - anon_sym_COLON, + ACTIONS(4884), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [50018] = 3, + ACTIONS(4886), 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, + [49964] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(211), 24, + ACTIONS(4928), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527135,7 +527403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(209), 31, + ACTIONS(4930), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527167,28 +527435,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50082] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [50028] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 22, + ACTIONS(4932), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527196,47 +527457,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 29, + ACTIONS(4934), 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, - [50154] = 3, + [50092] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5121), 24, + ACTIONS(5157), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527261,7 +527525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5123), 31, + ACTIONS(5159), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527293,11 +527557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50218] = 3, + [50156] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 24, + ACTIONS(4936), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527322,7 +527586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3292), 31, + ACTIONS(4938), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527354,11 +527618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50282] = 3, + [50220] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4419), 24, + ACTIONS(4940), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527383,7 +527647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4421), 31, + ACTIONS(4942), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527415,11 +527679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50346] = 3, + [50284] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4427), 24, + ACTIONS(4000), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527444,7 +527708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4429), 31, + ACTIONS(4002), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527476,21 +527740,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50410] = 3, + [50348] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8281), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4859), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1790), 24, + ACTIONS(4443), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -527498,62 +527769,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1792), 31, - sym__automatic_semicolon, + ACTIONS(4445), 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, - [50474] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5234), 1, - sym_function_body, + [50420] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 22, + ACTIONS(4948), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -527572,13 +527834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 29, + ACTIONS(4950), 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, @@ -527602,11 +527866,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50546] = 3, + [50484] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5157), 24, + ACTIONS(4952), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527631,7 +527895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(5159), 31, + ACTIONS(4954), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527663,11 +527927,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50610] = 3, + [50548] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4955), 24, + ACTIONS(4956), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527692,7 +527956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4957), 31, + ACTIONS(4958), 31, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527724,13 +527988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50674] = 4, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, + [50612] = 4, + ACTIONS(6565), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4944), 24, + ACTIONS(4182), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527755,14 +528019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4946), 30, + ACTIONS(4185), 30, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, sym_label, @@ -527770,6 +528033,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, @@ -527786,11 +528050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50740] = 3, + [50678] = 4, + ACTIONS(6561), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 24, + ACTIONS(4214), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527815,14 +528081,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 31, + ACTIONS(4217), 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, @@ -527847,19 +528112,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50804] = 5, - ACTIONS(4920), 1, + [50744] = 5, + ACTIONS(4888), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4922), 5, + ACTIONS(4890), 5, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - ACTIONS(4419), 23, + ACTIONS(4331), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -527883,7 +528148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4421), 26, + ACTIONS(4333), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -527910,11 +528175,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50872] = 3, + [50812] = 4, + ACTIONS(8364), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4850), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4852), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [50878] = 4, + ACTIONS(8366), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 24, + ACTIONS(4840), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -527939,14 +528268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 31, + ACTIONS(4842), 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, @@ -527971,14 +528299,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [50936] = 3, + [50944] = 5, + ACTIONS(4884), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 24, + ACTIONS(4886), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4343), 23, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, @@ -528000,7 +528335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 31, + ACTIONS(4345), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -528016,11 +528351,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, @@ -528032,28 +528362,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51000] = 7, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8323), 1, - anon_sym_EQ, - STATE(4734), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [51012] = 4, + ACTIONS(8368), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 22, + ACTIONS(4190), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528061,47 +528386,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 29, + ACTIONS(4188), 30, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51072] = 3, + [51078] = 4, + ACTIONS(8370), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1796), 24, + ACTIONS(4222), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -528126,14 +528455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(1798), 31, + ACTIONS(4220), 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, @@ -528158,23 +528486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51136] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8257), 1, - anon_sym_EQ, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [51144] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 22, + ACTIONS(4960), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_STAR, @@ -528193,13 +528515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 29, + ACTIONS(4962), 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, @@ -528224,14 +528548,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_BANG, sym__backtick_identifier, [51208] = 5, - ACTIONS(5748), 1, + ACTIONS(5714), 1, anon_sym_LBRACE, - STATE(5412), 1, + STATE(5366), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 22, + ACTIONS(4609), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -528254,7 +528578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4299), 30, + ACTIONS(4607), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528286,14 +528610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym__alpha_identifier, [51275] = 5, - ACTIONS(5800), 1, + ACTIONS(5728), 1, anon_sym_LBRACE, - STATE(5369), 1, + STATE(5365), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 22, + ACTIONS(4154), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -528316,7 +528640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3276), 30, + ACTIONS(4152), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528348,24 +528672,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_false, sym__alpha_identifier, [51342] = 10, - ACTIONS(5490), 1, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8424), 1, + ACTIONS(8372), 1, anon_sym_COLON, - ACTIONS(8426), 1, + ACTIONS(8374), 1, anon_sym_EQ, - STATE(4728), 1, + STATE(4697), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, - STATE(5516), 1, + STATE(5523), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4133), 21, + ACTIONS(4097), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -528387,7 +528711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4135), 26, + ACTIONS(4099), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -528414,149 +528738,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51419] = 5, - ACTIONS(5748), 1, - anon_sym_LBRACE, - STATE(5385), 1, - sym_class_body, + [51419] = 4, + ACTIONS(8376), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4670), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4190), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4188), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4668), 30, - anon_sym_object, - anon_sym_fun, + [51484] = 10, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_EQ, + ACTIONS(8378), 1, + anon_sym_COLON, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5544), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4087), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [51486] = 5, - ACTIONS(8432), 1, - sym__automatic_semicolon, - STATE(5436), 1, - sym__semi, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8430), 22, - sym__string_start, + ACTIONS(4089), 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_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(8428), 30, - anon_sym_object, - anon_sym_fun, + [51561] = 4, + ACTIONS(8380), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4840), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [51553] = 10, - ACTIONS(5490), 1, + ACTIONS(4842), 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, + [51626] = 10, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8374), 1, anon_sym_EQ, - ACTIONS(8434), 1, + ACTIONS(8382), 1, anon_sym_COLON, - STATE(4855), 1, + STATE(4722), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, - STATE(5509), 1, + STATE(5537), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 21, + ACTIONS(4077), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -528578,7 +528967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 26, + ACTIONS(4079), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -528605,81 +528994,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51630] = 5, - ACTIONS(5800), 1, - anon_sym_LBRACE, - STATE(5392), 1, - sym_enum_class_body, + [51703] = 4, + ACTIONS(8384), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4427), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4850), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [51697] = 5, - ACTIONS(5748), 1, + ACTIONS(4852), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(5336), 1, - sym_class_body, + 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, + [51768] = 5, + ACTIONS(8390), 1, + sym__automatic_semicolon, + STATE(5465), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4674), 22, - sym__automatic_semicolon, + ACTIONS(8388), 22, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -528698,7 +529086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4672), 30, + ACTIONS(8386), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528729,81 +529117,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51764] = 5, - ACTIONS(5748), 1, - anon_sym_LBRACE, - STATE(5369), 1, - sym_class_body, + [51835] = 5, + ACTIONS(8392), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 22, + ACTIONS(4185), 2, sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3276), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(3938), 23, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [51831] = 5, - ACTIONS(5748), 1, + ACTIONS(3943), 28, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(5365), 1, - sym_class_body, + anon_sym_COMMA, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [51902] = 5, + ACTIONS(8399), 1, + sym__automatic_semicolon, + STATE(5446), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 22, - sym__automatic_semicolon, + ACTIONS(8397), 22, sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -528822,7 +529210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4507), 30, + ACTIONS(8395), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -528853,25 +529241,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [51898] = 10, - ACTIONS(5490), 1, + [51969] = 10, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8374), 1, anon_sym_EQ, - ACTIONS(8436), 1, + ACTIONS(8401), 1, anon_sym_COLON, - STATE(4708), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, - STATE(5479), 1, + STATE(4791), 1, + sym_function_body, + STATE(5527), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 21, + ACTIONS(4123), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -528893,7 +529281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 26, + ACTIONS(4125), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -528920,32 +529308,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [51975] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8438), 1, - anon_sym_COLON, - ACTIONS(8440), 1, + [52046] = 6, + ACTIONS(3938), 1, anon_sym_EQ, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - STATE(5468), 1, - sym_type_constraints, + ACTIONS(7275), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 20, + ACTIONS(3943), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4214), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -528953,22 +529339,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 27, - sym__automatic_semicolon, + ACTIONS(4217), 24, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -528981,86 +529366,83 @@ 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, - [52052] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, + [52115] = 8, + ACTIONS(5011), 1, anon_sym_EQ, - ACTIONS(8442), 1, + ACTIONS(8347), 1, + anon_sym_COLON_COLON, + ACTIONS(8403), 1, anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, - STATE(5425), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 20, + ACTIONS(4138), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(5013), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4992), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 27, + ACTIONS(4994), 23, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52129] = 4, - ACTIONS(8444), 1, + [52188] = 4, + ACTIONS(6728), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 24, + ACTIONS(4214), 24, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -529085,7 +529467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4240), 29, + ACTIONS(4217), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -529115,32 +529497,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52194] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, + [52253] = 6, + ACTIONS(3938), 1, anon_sym_EQ, - ACTIONS(8446), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5213), 1, - sym_function_body, - STATE(5428), 1, - sym_type_constraints, + ACTIONS(7283), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 20, + ACTIONS(3943), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4182), 23, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529148,22 +529528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 27, - sym__automatic_semicolon, + ACTIONS(4185), 24, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -529176,150 +529555,206 @@ 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, - [52271] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - ACTIONS(8448), 1, - anon_sym_COLON, - STATE(5079), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - STATE(5432), 1, - sym_type_constraints, + [52322] = 4, + ACTIONS(8405), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 20, + ACTIONS(4856), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, - anon_sym_else, + anon_sym_while, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 27, - sym__automatic_semicolon, + ACTIONS(4858), 30, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52348] = 5, - ACTIONS(5748), 1, + [52387] = 6, + ACTIONS(5432), 1, anon_sym_LBRACE, - STATE(5408), 1, + ACTIONS(8407), 1, + anon_sym_COLON, + STATE(4767), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 22, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4325), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4327), 29, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4468), 30, - anon_sym_object, - anon_sym_fun, + [52456] = 5, + ACTIONS(8409), 1, + anon_sym_by, + STATE(4885), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4347), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [52415] = 5, - ACTIONS(5800), 1, + ACTIONS(4349), 30, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(5379), 1, - sym_enum_class_body, + 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, + [52523] = 5, + ACTIONS(5714), 1, + anon_sym_LBRACE, + STATE(5382), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 22, + ACTIONS(3230), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529342,7 +529777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4268), 30, + ACTIONS(3226), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529373,21 +529808,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52482] = 4, - ACTIONS(8450), 1, - anon_sym_LPAREN, + [52590] = 6, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(8411), 1, + anon_sym_COLON, + STATE(4830), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4228), 24, + ACTIONS(4353), 22, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_while, anon_sym_else, @@ -529397,69 +529835,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4226), 29, + ACTIONS(4355), 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, - [52547] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - ACTIONS(8452), 1, - anon_sym_COLON, - STATE(5134), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - STATE(5434), 1, - sym_type_constraints, + [52659] = 4, + ACTIONS(6732), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4133), 20, + ACTIONS(4182), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -529467,49 +529895,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4135), 27, - sym__automatic_semicolon, + ACTIONS(4185), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52624] = 5, - ACTIONS(5748), 1, + [52724] = 5, + ACTIONS(5714), 1, anon_sym_LBRACE, - STATE(5327), 1, + STATE(5319), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 22, + ACTIONS(4276), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529532,7 +529963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4423), 30, + ACTIONS(4274), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529563,144 +529994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52691] = 5, - ACTIONS(5800), 1, + [52791] = 5, + ACTIONS(5728), 1, anon_sym_LBRACE, - STATE(5320), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4417), 22, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4415), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [52758] = 10, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - ACTIONS(8454), 1, - anon_sym_COLON, - STATE(4754), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5480), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4194), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4196), 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, - [52835] = 5, - ACTIONS(5800), 1, - anon_sym_LBRACE, - STATE(5338), 1, + STATE(5321), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4756), 22, + ACTIONS(3222), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529723,7 +530025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4754), 30, + ACTIONS(3218), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529754,25 +530056,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [52902] = 10, - ACTIONS(5490), 1, + [52858] = 10, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(8098), 1, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8374), 1, anon_sym_EQ, - ACTIONS(8456), 1, + ACTIONS(8413), 1, anon_sym_COLON, - STATE(4719), 1, + STATE(4773), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, - STATE(5523), 1, + STATE(5485), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 21, + ACTIONS(4142), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -529794,7 +530096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 26, + ACTIONS(4144), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -529821,34 +530123,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [52979] = 8, - ACTIONS(4948), 1, - anon_sym_EQ, - ACTIONS(8421), 1, - anon_sym_COLON_COLON, - ACTIONS(8458), 1, - anon_sym_COLON, + [52935] = 4, + ACTIONS(8415), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(4953), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4944), 21, + ACTIONS(4222), 24, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, anon_sym_STAR, anon_sym_in, + anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -529862,19 +530154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4946), 23, - sym__automatic_semicolon, + ACTIONS(4220), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, @@ -529886,15 +530184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53052] = 5, - ACTIONS(5748), 1, + [53000] = 5, + ACTIONS(5714), 1, anon_sym_LBRACE, - STATE(5338), 1, + STATE(5321), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4756), 22, + ACTIONS(3222), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529917,7 +530215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4754), 30, + ACTIONS(3218), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -529948,15 +530246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53119] = 5, - ACTIONS(5800), 1, + [53067] = 5, + ACTIONS(5728), 1, anon_sym_LBRACE, - STATE(5324), 1, + STATE(5383), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4462), 22, + ACTIONS(4422), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -529979,7 +530277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4460), 30, + ACTIONS(4420), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -530010,78 +530308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53186] = 6, - ACTIONS(5494), 1, + [53134] = 5, + ACTIONS(5714), 1, anon_sym_LBRACE, - ACTIONS(8460), 1, - anon_sym_COLON, - STATE(4720), 1, + STATE(5376), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4405), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4407), 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, - [53255] = 5, - ACTIONS(5800), 1, - anon_sym_LBRACE, - STATE(5341), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4202), 22, + ACTIONS(4620), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -530104,7 +530339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4200), 30, + ACTIONS(4618), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -530135,76 +530370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53322] = 4, - ACTIONS(6747), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4234), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4237), 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, - [53387] = 5, - ACTIONS(5748), 1, + [53201] = 5, + ACTIONS(5714), 1, anon_sym_LBRACE, - STATE(5343), 1, + STATE(5333), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 22, + ACTIONS(4414), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -530227,7 +530401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3288), 30, + ACTIONS(4412), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -530258,199 +530432,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53454] = 5, - ACTIONS(8462), 1, - anon_sym_by, - STATE(4711), 1, - sym_value_arguments, + [53268] = 5, + ACTIONS(5728), 1, + anon_sym_LBRACE, + STATE(5376), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4495), 30, - sym_safe_nav, + ACTIONS(4620), 22, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [53521] = 4, - ACTIONS(8464), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4844), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4618), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4846), 29, - sym_safe_nav, + [53335] = 5, + ACTIONS(5728), 1, + anon_sym_LBRACE, + STATE(5374), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4449), 22, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [53586] = 4, - ACTIONS(8466), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4852), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4447), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4854), 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, - [53651] = 5, - ACTIONS(5800), 1, + [53402] = 5, + ACTIONS(5714), 1, anon_sym_LBRACE, - STATE(5327), 1, - sym_enum_class_body, + STATE(5322), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 22, + ACTIONS(4519), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -530473,7 +530587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4423), 30, + ACTIONS(4517), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -530504,15 +530618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53718] = 5, - ACTIONS(5748), 1, + [53469] = 5, + ACTIONS(5714), 1, anon_sym_LBRACE, - STATE(5392), 1, + STATE(5368), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 22, + ACTIONS(4361), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -530535,7 +530649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4427), 30, + ACTIONS(4359), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -530566,76 +530680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53785] = 4, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4220), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4223), 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, - [53850] = 5, - ACTIONS(5800), 1, + [53536] = 5, + ACTIONS(5714), 1, anon_sym_LBRACE, - STATE(5363), 1, - sym_enum_class_body, + STATE(5334), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4718), 22, + ACTIONS(4204), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -530658,7 +530711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4716), 30, + ACTIONS(4202), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -530689,150 +530742,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [53917] = 5, - ACTIONS(8468), 1, - anon_sym_LPAREN, + [53603] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8417), 1, + anon_sym_COLON, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5215), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5443), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4237), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3990), 23, - anon_sym_COLON, + ACTIONS(4087), 20, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3995), 28, + ACTIONS(4089), 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_DASH_GT, + anon_sym_SEMI, + anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [53984] = 5, - ACTIONS(8471), 1, - anon_sym_LPAREN, + [53680] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + ACTIONS(8421), 1, + anon_sym_COLON, + STATE(5168), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5455), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4223), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3990), 23, - anon_sym_COLON, + ACTIONS(4097), 20, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3995), 28, + ACTIONS(4099), 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_DASH_GT, + anon_sym_SEMI, + anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54051] = 6, - ACTIONS(5494), 1, + [53757] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8474), 1, + ACTIONS(8419), 1, + anon_sym_EQ, + ACTIONS(8423), 1, anon_sym_COLON, - STATE(4785), 1, - sym_class_body, + STATE(5146), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5463), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 22, + ACTIONS(4142), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -530846,18 +530915,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 29, + ACTIONS(4144), 27, + 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, @@ -530876,15 +530943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54120] = 5, - ACTIONS(5748), 1, + [53834] = 5, + ACTIONS(5728), 1, anon_sym_LBRACE, - STATE(5316), 1, - sym_class_body, + STATE(5357), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4646), 22, + ACTIONS(4337), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -530907,7 +530974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4644), 30, + ACTIONS(4335), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -530938,15 +531005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54187] = 5, - ACTIONS(5748), 1, + [53901] = 5, + ACTIONS(5714), 1, anon_sym_LBRACE, - STATE(5379), 1, + STATE(5356), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 22, + ACTIONS(4457), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -530969,7 +531036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4268), 30, + ACTIONS(4455), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -531000,15 +531067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54254] = 5, - ACTIONS(5800), 1, + [53968] = 5, + ACTIONS(5728), 1, anon_sym_LBRACE, - STATE(5328), 1, + STATE(5368), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3298), 22, + ACTIONS(4361), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -531031,7 +531098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3294), 30, + ACTIONS(4359), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -531062,19 +531129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54321] = 5, - ACTIONS(8480), 1, - sym__automatic_semicolon, - STATE(5441), 1, - sym__semi, + [54035] = 5, + ACTIONS(5714), 1, + anon_sym_LBRACE, + STATE(5352), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8478), 22, + ACTIONS(4593), 22, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, @@ -531093,7 +531160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8476), 30, + ACTIONS(4591), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -531124,93 +531191,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54388] = 6, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(7354), 1, - anon_sym_LPAREN, + [54102] = 5, + ACTIONS(5728), 1, + anon_sym_LBRACE, + STATE(5390), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4220), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4632), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4630), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4223), 24, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + [54169] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [54457] = 6, - ACTIONS(3990), 1, + ACTIONS(8419), 1, anon_sym_EQ, - ACTIONS(7331), 1, - anon_sym_LPAREN, + ACTIONS(8425), 1, + anon_sym_COLON, + STATE(5102), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5435), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4234), 23, + ACTIONS(4123), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -531218,21 +531286,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4237), 24, + ACTIONS(4125), 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, @@ -531245,81 +531314,147 @@ 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, - [54526] = 4, - ACTIONS(8482), 1, - anon_sym_else, + [54246] = 5, + ACTIONS(5728), 1, + anon_sym_LBRACE, + STATE(5350), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3240), 22, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3236), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4926), 30, - sym_safe_nav, + [54313] = 5, + ACTIONS(5728), 1, + anon_sym_LBRACE, + STATE(5334), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 22, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [54591] = 5, - ACTIONS(8482), 1, + ACTIONS(4202), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - ACTIONS(8484), 1, - anon_sym_SEMI, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [54380] = 5, + ACTIONS(8427), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 23, + ACTIONS(4217), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3938), 23, + anon_sym_COLON, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -531329,7 +531464,6 @@ 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, @@ -531343,14 +531477,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 29, + ACTIONS(3943), 28, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -531373,200 +531506,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54658] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, + [54447] = 5, + ACTIONS(5714), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5523), 1, - sym_type_constraints, + STATE(5357), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4177), 26, - sym_safe_nav, + ACTIONS(4337), 22, + sym__automatic_semicolon, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [54732] = 4, - ACTIONS(8462), 1, - anon_sym_by, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4493), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + ACTIONS(4335), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4495), 30, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, + [54514] = 10, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [54796] = 4, - ACTIONS(8486), 1, - anon_sym_else, + ACTIONS(8419), 1, + anon_sym_EQ, + ACTIONS(8430), 1, + anon_sym_COLON, + STATE(5093), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5437), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 22, + ACTIONS(4077), 20, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 30, + ACTIONS(4079), 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, - [54860] = 5, - ACTIONS(8486), 1, + [54591] = 5, + ACTIONS(8405), 1, anon_sym_else, - ACTIONS(8488), 1, + ACTIONS(8432), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 22, + ACTIONS(4856), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -531576,6 +531653,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, @@ -531589,14 +531667,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 29, - sym__automatic_semicolon, + ACTIONS(4858), 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, @@ -531619,11 +531697,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [54926] = 3, + [54658] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1798), 23, + ACTIONS(5095), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -531647,7 +531725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1796), 30, + ACTIONS(5093), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -531678,24 +531756,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [54988] = 3, + [54720] = 4, + ACTIONS(6801), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 23, - sym__automatic_semicolon, + ACTIONS(3943), 21, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LT, anon_sym_STAR, anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -531706,7 +531784,9 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1790), 30, + ACTIONS(3938), 31, + anon_sym_DOT, + anon_sym_val, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -531714,20 +531794,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_in, + anon_sym_for, + anon_sym_while, + anon_sym_do, anon_sym_null, anon_sym_if, - anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, - anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -531737,11 +531816,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55050] = 3, + [54784] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5179), 23, + ACTIONS(4079), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -531765,7 +531844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5177), 30, + ACTIONS(4077), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -531796,129 +531875,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55112] = 3, + [54846] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4697), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5523), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5095), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5093), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4097), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, + anon_sym_while, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [55174] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3298), 23, - sym__automatic_semicolon, - sym__string_start, + ACTIONS(4099), 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_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3294), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [55236] = 3, + [54920] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4262), 23, + ACTIONS(5051), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -531942,7 +531968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4260), 30, + ACTIONS(5049), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -531973,11 +531999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55298] = 3, + [54982] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4462), 23, + ACTIONS(1740), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532001,7 +532027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4460), 30, + ACTIONS(1738), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532032,11 +532058,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55360] = 3, + [55044] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4708), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5544), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4087), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4089), 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, + [55118] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4768), 23, + ACTIONS(5083), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532060,7 +532151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4766), 30, + ACTIONS(5081), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532091,11 +532182,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55422] = 3, + [55180] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1736), 23, + ACTIONS(5087), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532119,7 +532210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1734), 30, + ACTIONS(5085), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532150,11 +532241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55484] = 3, + [55242] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5207), 23, + ACTIONS(4414), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532178,7 +532269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5205), 30, + ACTIONS(4412), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532209,11 +532300,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55546] = 3, + [55304] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4718), 23, + ACTIONS(5091), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532237,7 +532328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4716), 30, + ACTIONS(5089), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532268,11 +532359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55608] = 3, + [55366] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5175), 23, + ACTIONS(4204), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532296,7 +532387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5173), 30, + ACTIONS(4202), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532327,76 +532418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55670] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4754), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5480), 1, - sym_type_constraints, + [55428] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4196), 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, - [55744] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4756), 23, + ACTIONS(5119), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532420,7 +532446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4754), 30, + ACTIONS(5117), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532451,11 +532477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55806] = 3, + [55490] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4202), 23, + ACTIONS(4089), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532479,7 +532505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4200), 30, + ACTIONS(4087), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532510,73 +532536,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55868] = 6, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(7398), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3995), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4234), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4237), 24, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [55936] = 3, + [55552] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 23, + ACTIONS(5127), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532600,7 +532564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5043), 30, + ACTIONS(5125), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -532631,143 +532595,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [55998] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8490), 1, - anon_sym_COLON, - ACTIONS(8492), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, - STATE(5589), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4194), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4196), 26, - sym__automatic_semicolon, - sym_safe_nav, + [55614] = 25, + ACTIONS(3150), 1, 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, - [56074] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, + ACTIONS(3174), 1, sym_property_modifier, - ACTIONS(8494), 1, + ACTIONS(8434), 1, anon_sym_COLON, - ACTIONS(8496), 1, + ACTIONS(8436), 1, anon_sym_constructor, - ACTIONS(8498), 1, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(8500), 1, + ACTIONS(8440), 1, anon_sym_LPAREN, - ACTIONS(8502), 1, + ACTIONS(8442), 1, anon_sym_LT, - ACTIONS(8504), 1, + ACTIONS(8444), 1, anon_sym_where, - STATE(5497), 1, + STATE(5521), 1, sym_type_parameters, - STATE(8392), 1, + STATE(8372), 1, sym_primary_constructor, - STATE(8599), 1, + STATE(8530), 1, sym__class_parameters, - STATE(8701), 1, + STATE(8704), 1, sym_type_constraints, - STATE(9453), 1, - sym_enum_class_body, - STATE(9754), 1, + STATE(9370), 1, + sym_class_body, + STATE(9835), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3206), 2, + ACTIONS(3154), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7643), 2, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7651), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5728), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7647), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7649), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7645), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7641), 5, + ACTIONS(7551), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7639), 6, + ACTIONS(7549), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5507), 10, + STATE(5532), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -532778,79 +532676,27 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [56180] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4884), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + [55720] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4882), 30, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_in, - anon_sym_null, - anon_sym_if, - anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [56242] = 5, - ACTIONS(8506), 1, - anon_sym_COMMA, - STATE(5334), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4773), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + STATE(5485), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 22, + ACTIONS(4142), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -532868,18 +532714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4639), 29, + ACTIONS(4144), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -532898,71 +532741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [56308] = 4, - ACTIONS(8509), 1, - anon_sym_LPAREN, + [55794] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4228), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4226), 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, - [56372] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4942), 23, + ACTIONS(5135), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -532986,7 +532769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4940), 30, + ACTIONS(5133), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533017,11 +532800,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56434] = 3, + [55856] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5017), 23, + ACTIONS(1772), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533045,7 +532828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5015), 30, + ACTIONS(1770), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533076,11 +532859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56496] = 3, + [55918] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4902), 23, + ACTIONS(5147), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533104,7 +532887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4900), 30, + ACTIONS(5145), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533135,22 +532918,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56558] = 4, - ACTIONS(8511), 1, - anon_sym_LPAREN, + [55980] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4821), 1, + sym_function_body, + STATE(5511), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 23, + ACTIONS(4230), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -533158,48 +532950,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4240), 29, - sym__automatic_semicolon, + ACTIONS(4232), 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, - [56622] = 3, + [56054] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5001), 23, + ACTIONS(3240), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533223,7 +533011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4999), 30, + ACTIONS(3236), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533254,11 +533042,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56684] = 3, + [56116] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4417), 23, + ACTIONS(5155), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533282,7 +533070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4415), 30, + ACTIONS(5153), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533313,19 +533101,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56746] = 4, - ACTIONS(8513), 1, - anon_sym_LPAREN, + [56178] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4854), 22, + ACTIONS(4457), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -533342,7 +533129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4852), 30, + ACTIONS(4455), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533373,11 +533160,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56810] = 3, + [56240] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 23, + ACTIONS(4337), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533401,7 +533188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4299), 30, + ACTIONS(4335), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533432,25 +533219,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56872] = 5, - ACTIONS(8515), 1, - anon_sym_LT, - STATE(5526), 1, - sym_type_arguments, + [56302] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 20, + ACTIONS(5159), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -533461,9 +533247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4169), 31, - anon_sym_DOT, - anon_sym_val, + ACTIONS(5157), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533471,19 +533255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -533493,70 +533278,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [56938] = 3, + [56364] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5129), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5453), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5203), 23, + ACTIONS(4260), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4262), 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, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(5201), 30, - anon_sym_object, - anon_sym_fun, + [56438] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5134), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5464), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4230), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [57000] = 3, + ACTIONS(4232), 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, + [56512] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(209), 23, + ACTIONS(5001), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533580,7 +533436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(211), 30, + ACTIONS(4999), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533611,70 +533467,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57062] = 3, + [56574] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5146), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5463), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 23, + ACTIONS(4142), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4144), 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_BANG_BANG, + sym__backtick_identifier, + [56648] = 9, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8040), 1, anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4835), 1, + sym_function_body, + STATE(5512), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4260), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4262), 26, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3276), 30, - anon_sym_object, - anon_sym_fun, + [56722] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5168), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5455), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4097), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4099), 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, + [56796] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5215), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5443), 1, + sym_type_constraints, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4087), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [57124] = 3, + ACTIONS(4089), 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, + [56870] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5073), 23, + ACTIONS(4099), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533698,7 +533755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5071), 30, + ACTIONS(4097), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533729,11 +533786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57186] = 3, + [56932] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5143), 23, + ACTIONS(5025), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533757,7 +533814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5141), 30, + ACTIONS(5023), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533788,11 +533845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57248] = 3, + [56994] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4888), 23, + ACTIONS(4333), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533816,7 +533873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4886), 30, + ACTIONS(4331), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533847,11 +533904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57310] = 3, + [57056] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5091), 23, + ACTIONS(5163), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533875,7 +533932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5089), 30, + ACTIONS(5161), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533906,11 +533963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57372] = 3, + [57118] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5131), 23, + ACTIONS(5151), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -533934,7 +533991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5129), 30, + ACTIONS(5149), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -533965,71 +534022,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57434] = 4, - STATE(5334), 1, - aux_sym__delegation_specifiers_repeat1, + [57180] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4541), 30, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_STAR, - anon_sym_DASH_GT, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [57498] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1818), 23, + ACTIONS(1746), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534053,7 +534050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1816), 30, + ACTIONS(1744), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534084,205 +534081,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57560] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - ACTIONS(8517), 1, - anon_sym_COLON, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - STATE(5556), 1, - sym_type_constraints, + [57242] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4177), 26, + ACTIONS(5143), 23, sym__automatic_semicolon, - sym_safe_nav, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [57636] = 4, - ACTIONS(6848), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4234), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5141), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4237), 29, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_this, + anon_sym_super, sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [57700] = 4, - ACTIONS(6852), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4220), 23, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4223), 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, - [57764] = 4, - ACTIONS(8519), 1, - anon_sym_LPAREN, + [57304] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4846), 22, + ACTIONS(4154), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -534299,7 +534168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4844), 30, + ACTIONS(4152), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534330,30 +534199,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57828] = 7, - ACTIONS(8523), 1, - anon_sym_AT, - ACTIONS(8528), 1, - sym_label, + [57366] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5359), 2, - sym_annotation, - aux_sym__statement_repeat1, - STATE(5552), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8526), 19, + ACTIONS(5043), 23, + sym__automatic_semicolon, sym__string_start, + anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -534364,26 +534227,28 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8521), 28, + ACTIONS(5041), 30, 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_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -534393,11 +534258,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57898] = 3, + [57428] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1824), 23, + ACTIONS(5139), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534421,7 +534286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1822), 30, + ACTIONS(5137), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534452,11 +534317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [57960] = 3, + [57490] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4772), 23, + ACTIONS(4345), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534480,7 +534345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4770), 30, + ACTIONS(4343), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534511,11 +534376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58022] = 3, + [57552] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 23, + ACTIONS(5131), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534539,7 +534404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4194), 30, + ACTIONS(5129), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534570,70 +534435,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58084] = 3, + [57614] = 6, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(7312), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5103), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5101), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(3943), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4182), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [58146] = 3, + ACTIONS(4185), 24, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [57682] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5041), 23, + ACTIONS(4609), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534657,7 +534525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5039), 30, + ACTIONS(4607), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534688,11 +534556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58208] = 3, + [57744] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 23, + ACTIONS(4361), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534716,7 +534584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4468), 30, + ACTIONS(4359), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534747,11 +534615,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58270] = 3, + [57806] = 6, + ACTIONS(3938), 1, + anon_sym_EQ, + ACTIONS(7382), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 23, + ACTIONS(3943), 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(4214), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4217), 24, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [57874] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5115), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534775,7 +534705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4452), 30, + ACTIONS(5113), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534806,24 +534736,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58332] = 4, - ACTIONS(6882), 1, - anon_sym_COLON, + [57936] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 21, + ACTIONS(5035), 23, + sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, anon_sym_return_AT, anon_sym_continue_AT, anon_sym_break_AT, @@ -534834,9 +534764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3990), 31, - anon_sym_DOT, - anon_sym_val, + ACTIONS(5033), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534844,19 +534772,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_this, anon_sym_super, sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, + anon_sym_in, anon_sym_null, anon_sym_if, + anon_sym_else, anon_sym_when, anon_sym_try, anon_sym_throw, anon_sym_return, anon_sym_continue, anon_sym_break, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -534866,11 +534795,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58396] = 3, + [57998] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5029), 23, + ACTIONS(4144), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534894,7 +534823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5027), 30, + ACTIONS(4142), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534925,11 +534854,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58458] = 3, + [58060] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 23, + ACTIONS(5103), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -534953,7 +534882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4268), 30, + ACTIONS(5101), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -534984,11 +534913,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58520] = 3, + [58122] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5135), 23, + ACTIONS(121), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535012,7 +534941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5133), 30, + ACTIONS(123), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535043,28 +534972,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58582] = 6, - ACTIONS(7023), 1, - anon_sym_LPAREN, + [58184] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 3, - anon_sym_in, - anon_sym_else, - anon_sym_is, - ACTIONS(4240), 4, + ACTIONS(1756), 23, sym__automatic_semicolon, - anon_sym_RBRACE, - anon_sym_BANGin, - anon_sym_BANGis, - ACTIONS(4237), 18, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_return_AT, @@ -535077,7 +535000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4234), 27, + ACTIONS(1754), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535085,14 +535008,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, @@ -535105,76 +535031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58650] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4787), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5504), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4264), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4266), 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, - [58724] = 3, + [58246] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5199), 23, + ACTIONS(4449), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535198,7 +535059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5197), 30, + ACTIONS(4447), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535229,11 +535090,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58786] = 3, + [58308] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4906), 23, + ACTIONS(4712), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535257,7 +535118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4904), 30, + ACTIONS(4710), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535288,11 +535149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58848] = 3, + [58370] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3422), 23, + ACTIONS(5059), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535316,7 +535177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3420), 30, + ACTIONS(5057), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535347,11 +535208,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58910] = 3, + [58432] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5159), 23, + ACTIONS(4620), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535375,7 +535236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5157), 30, + ACTIONS(4618), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535406,11 +535267,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [58972] = 3, + [58494] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4158), 23, + ACTIONS(3222), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535434,7 +535295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4156), 30, + ACTIONS(3218), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535465,11 +535326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59034] = 3, + [58556] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3316), 23, + ACTIONS(4232), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535493,7 +535354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3312), 30, + ACTIONS(4230), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535524,11 +535385,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59096] = 3, + [58618] = 25, + ACTIONS(3150), 1, + anon_sym_AT, + ACTIONS(3174), 1, + sym_property_modifier, + ACTIONS(8436), 1, + anon_sym_constructor, + ACTIONS(8440), 1, + anon_sym_LPAREN, + ACTIONS(8442), 1, + anon_sym_LT, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(8446), 1, + anon_sym_COLON, + ACTIONS(8448), 1, + anon_sym_LBRACE, + STATE(5529), 1, + sym_type_parameters, + STATE(8392), 1, + sym_primary_constructor, + STATE(8530), 1, + sym__class_parameters, + STATE(8749), 1, + sym_type_constraints, + STATE(9370), 1, + sym_enum_class_body, + STATE(9835), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3154), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7553), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7561), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7557), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7559), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7555), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7551), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7549), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5532), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [58724] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 23, + ACTIONS(5055), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535552,7 +535494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4427), 30, + ACTIONS(5053), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535583,28 +535525,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59158] = 6, - ACTIONS(7019), 1, - anon_sym_LPAREN, + [58786] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4228), 3, - anon_sym_in, - anon_sym_else, - anon_sym_is, - ACTIONS(4226), 4, + ACTIONS(1684), 23, sym__automatic_semicolon, - anon_sym_RBRACE, - anon_sym_BANGin, - anon_sym_BANGis, - ACTIONS(4223), 18, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_return_AT, @@ -535617,7 +535553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4220), 27, + ACTIONS(1682), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535625,14 +535561,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, @@ -535645,77 +535584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59226] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - ACTIONS(8531), 1, - anon_sym_COLON, - STATE(5134), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - STATE(5540), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4133), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4135), 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, - [59302] = 3, + [58848] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3191), 23, + ACTIONS(4422), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535739,7 +535612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(3189), 30, + ACTIONS(4420), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535770,11 +535643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59364] = 3, + [58910] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4421), 23, + ACTIONS(5047), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535798,7 +535671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4419), 30, + ACTIONS(5045), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535829,11 +535702,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59426] = 3, + [58972] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4918), 23, + ACTIONS(5039), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535857,7 +535730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4916), 30, + ACTIONS(5037), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535888,11 +535761,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59488] = 3, + [59034] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4985), 23, + ACTIONS(4262), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -535916,7 +535789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4983), 30, + ACTIONS(4260), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -535947,21 +535820,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59550] = 4, - ACTIONS(8533), 1, - anon_sym_LPAREN, + [59096] = 8, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + ACTIONS(8450), 1, + anon_sym_COLON, + STATE(5180), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4844), 23, + ACTIONS(4238), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -535970,62 +535850,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4846), 29, + ACTIONS(4240), 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, - [59614] = 10, - ACTIONS(5770), 1, + [59168] = 10, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - ACTIONS(8535), 1, + ACTIONS(8452), 1, anon_sym_COLON, - STATE(5079), 1, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5146), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, - STATE(5545), 1, + STATE(5573), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 20, + ACTIONS(4142), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -536046,7 +535923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 26, + ACTIONS(4144), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -536073,11 +535950,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [59690] = 3, + [59244] = 8, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + ACTIONS(8456), 1, + anon_sym_COLON, + STATE(5193), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4152), 23, + ACTIONS(4196), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(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, + [59316] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1766), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536101,7 +536042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4150), 30, + ACTIONS(1764), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536132,76 +536073,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59752] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4708), 1, - sym_function_body, - STATE(4871), 1, - sym__block, - STATE(5479), 1, - sym_type_constraints, + [59378] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4276), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4274), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, - anon_sym_while, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4158), 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, - [59826] = 3, + [59440] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4866), 23, + ACTIONS(4632), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536225,7 +536160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4864), 30, + ACTIONS(4630), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536256,73 +536191,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [59888] = 6, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(7414), 1, - anon_sym_LPAREN, + [59502] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - ACTIONS(4220), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3298), 23, + sym__automatic_semicolon, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3296), 30, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_STAR, + anon_sym_this, + anon_sym_super, + sym_label, anon_sym_in, + anon_sym_null, + anon_sym_if, anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4223), 24, - sym__automatic_semicolon, - sym_safe_nav, + [59564] = 25, + ACTIONS(3150), 1, anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(3174), 1, + sym_property_modifier, + ACTIONS(8436), 1, + anon_sym_constructor, + ACTIONS(8440), 1, + anon_sym_LPAREN, + ACTIONS(8442), 1, + anon_sym_LT, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(8448), 1, anon_sym_LBRACE, + ACTIONS(8458), 1, + anon_sym_COLON, + STATE(5494), 1, + sym_type_parameters, + STATE(8382), 1, + sym_primary_constructor, + STATE(8530), 1, + sym__class_parameters, + STATE(8635), 1, + sym_type_constraints, + STATE(9277), 1, + sym_enum_class_body, + STATE(9835), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3200), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - anon_sym_SEMI, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [59956] = 3, + ACTIONS(7553), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7561), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7557), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7559), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7555), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7551), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7549), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5532), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [59670] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 23, + ACTIONS(5017), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536346,7 +536359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4423), 30, + ACTIONS(5015), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536377,23 +536390,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60018] = 9, - ACTIONS(5770), 1, + [59732] = 10, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5213), 1, + ACTIONS(8460), 1, + anon_sym_COLON, + STATE(5168), 1, sym_function_body, - STATE(5428), 1, + STATE(5234), 1, + sym__block, + STATE(5555), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 20, + ACTIONS(4097), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -536414,14 +536429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 27, + ACTIONS(4099), 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, @@ -536442,11 +536456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [60092] = 3, + [59808] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4828), 23, + ACTIONS(3370), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536470,7 +536484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4826), 30, + ACTIONS(3368), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536501,70 +536515,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60154] = 3, + [59870] = 4, + ACTIONS(8462), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 23, - sym__automatic_semicolon, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3288), 30, - anon_sym_object, - anon_sym_fun, + ACTIONS(4222), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, + anon_sym_STAR, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [60216] = 3, + ACTIONS(4220), 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, + [59934] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4876), 23, + ACTIONS(4946), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536588,7 +536603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4874), 30, + ACTIONS(4944), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536619,79 +536634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60278] = 10, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - ACTIONS(8537), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5213), 1, - sym_function_body, - STATE(5529), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4156), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4158), 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, - [60354] = 4, - ACTIONS(8539), 1, + [59996] = 4, + ACTIONS(8464), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 23, + ACTIONS(4190), 23, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -536715,7 +536664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4854), 29, + ACTIONS(4188), 29, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -536745,11 +536694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [60418] = 3, + [60060] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4989), 23, + ACTIONS(4906), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536773,7 +536722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4987), 30, + ACTIONS(4904), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536804,92 +536753,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60480] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8496), 1, - anon_sym_constructor, - ACTIONS(8498), 1, - anon_sym_LBRACE, - ACTIONS(8500), 1, - anon_sym_LPAREN, - ACTIONS(8502), 1, - anon_sym_LT, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(8541), 1, - anon_sym_COLON, - STATE(5492), 1, - sym_type_parameters, - STATE(8380), 1, - sym_primary_constructor, - STATE(8599), 1, - sym__class_parameters, - STATE(8771), 1, - sym_type_constraints, - STATE(9381), 1, - sym_enum_class_body, - STATE(9754), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3238), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7649), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7645), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7639), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5507), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [60586] = 3, + [60122] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 23, + ACTIONS(4898), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536913,7 +536781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4442), 30, + ACTIONS(4896), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -536944,13 +536812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60648] = 4, - ACTIONS(8543), 1, + [60184] = 4, + ACTIONS(8466), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4240), 22, + ACTIONS(4220), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -536973,7 +536841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4242), 30, + ACTIONS(4222), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537004,233 +536872,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [60712] = 8, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - ACTIONS(8545), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5166), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4289), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4291), 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, - [60784] = 9, - ACTIONS(5770), 1, + [60248] = 10, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, - STATE(5425), 1, - sym_type_constraints, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4194), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4196), 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, - [60858] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8496), 1, - anon_sym_constructor, - ACTIONS(8500), 1, - anon_sym_LPAREN, - ACTIONS(8502), 1, - anon_sym_LT, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(8547), 1, + ACTIONS(8468), 1, anon_sym_COLON, - ACTIONS(8549), 1, - anon_sym_LBRACE, - STATE(5488), 1, - sym_type_parameters, - STATE(8357), 1, - sym_primary_constructor, - STATE(8599), 1, - sym__class_parameters, - STATE(8666), 1, - sym_type_constraints, - STATE(9284), 1, - sym_class_body, - STATE(9754), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3248), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7649), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7645), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7639), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5507), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [60964] = 9, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4699), 1, + STATE(5215), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, - STATE(5477), 1, + STATE(5591), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 21, + ACTIONS(4087), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -537238,7 +536898,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, @@ -537252,13 +536911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 26, + ACTIONS(4089), 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, @@ -537279,13 +536938,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61038] = 4, - ACTIONS(8551), 1, + [60324] = 4, + ACTIONS(8470), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4226), 22, + ACTIONS(4188), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537308,7 +536967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4228), 30, + ACTIONS(4190), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537339,11 +536998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61102] = 3, + [60388] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4674), 23, + ACTIONS(3230), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537367,7 +537026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4672), 30, + ACTIONS(3226), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537398,11 +537057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61164] = 3, + [60450] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4880), 23, + ACTIONS(3098), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537426,7 +537085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4878), 30, + ACTIONS(3096), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537457,11 +537116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61226] = 3, + [60512] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 23, + ACTIONS(4445), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537485,7 +537144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4264), 30, + ACTIONS(4443), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537516,18 +537175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61288] = 3, + [60574] = 4, + ACTIONS(8472), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4177), 23, + ACTIONS(4842), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -537544,7 +537204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4175), 30, + ACTIONS(4840), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537575,18 +537235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61350] = 3, + [60638] = 4, + ACTIONS(8474), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 23, + ACTIONS(4852), 22, sym__automatic_semicolon, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_BANGin, @@ -537603,7 +537264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4507), 30, + ACTIONS(4850), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537634,23 +537295,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61412] = 9, - ACTIONS(5770), 1, + [60702] = 10, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5145), 1, + ACTIONS(8476), 1, + anon_sym_COLON, + STATE(5093), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, - STATE(5468), 1, + STATE(5579), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 20, + ACTIONS(4077), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -537671,14 +537334,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 27, + ACTIONS(4079), 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, @@ -537699,11 +537361,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61486] = 3, + [60778] = 4, + ACTIONS(8478), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4840), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4842), 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, + [60842] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 23, + ACTIONS(4918), 23, sym__automatic_semicolon, sym__string_start, anon_sym_AT, @@ -537727,7 +537449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(1808), 30, + ACTIONS(4916), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -537758,21 +537480,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [61548] = 8, - ACTIONS(8201), 1, + [60904] = 8, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, + ACTIONS(8419), 1, anon_sym_EQ, - ACTIONS(8553), 1, + ACTIONS(8480), 1, anon_sym_COLON, - STATE(5152), 1, + STATE(5234), 1, sym__block, - STATE(5253), 1, + STATE(5235), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 21, + ACTIONS(4250), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -537794,7 +537516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4208), 27, + ACTIONS(4252), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -537822,109 +537544,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61620] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8496), 1, - anon_sym_constructor, - ACTIONS(8500), 1, + [60976] = 4, + ACTIONS(8482), 1, anon_sym_LPAREN, - ACTIONS(8502), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4850), 23, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, anon_sym_LT, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(8549), 1, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4852), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8555), 1, - anon_sym_COLON, + 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, + [61040] = 5, + ACTIONS(8484), 1, + anon_sym_LT, STATE(5514), 1, - sym_type_parameters, - STATE(8383), 1, - sym_primary_constructor, - STATE(8599), 1, - sym__class_parameters, - STATE(8652), 1, - sym_type_constraints, - STATE(9453), 1, - sym_class_body, - STATE(9754), 1, - sym_modifiers, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3206), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, + ACTIONS(4119), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4117), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7649), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7645), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [61106] = 4, + ACTIONS(8486), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4856), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7639), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5507), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [61726] = 8, - ACTIONS(8201), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4858), 30, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8440), 1, + 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, + [61170] = 5, + ACTIONS(8486), 1, + anon_sym_else, + ACTIONS(8488), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4856), 22, + anon_sym_DOT, + anon_sym_as, anon_sym_EQ, - ACTIONS(8557), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5193), 1, - sym_function_body, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4858), 29, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [61236] = 4, + ACTIONS(6851), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 21, + ACTIONS(4214), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -537933,63 +537809,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 27, + ACTIONS(4217), 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, - [61798] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - STATE(5110), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - STATE(5422), 1, - sym_type_constraints, + [61300] = 4, + ACTIONS(6855), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 20, + ACTIONS(4182), 23, anon_sym_DOT, anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, + anon_sym_STAR, anon_sym_in, anon_sym_else, anon_sym_BANG_EQ, @@ -537998,22 +537869,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 27, + ACTIONS(4185), 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, + [61364] = 4, + ACTIONS(8409), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4347), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4349), 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, @@ -538032,23 +537966,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61872] = 9, - ACTIONS(5770), 1, + [61428] = 10, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5116), 1, + ACTIONS(8490), 1, + anon_sym_COLON, + STATE(5102), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, - STATE(5446), 1, + STATE(5547), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 20, + ACTIONS(4123), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -538069,14 +538005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 27, + ACTIONS(4125), 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, @@ -538097,19 +538032,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [61946] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5234), 1, - sym_function_body, + [61504] = 4, + STATE(5419), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 21, + ACTIONS(4513), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -538118,6 +538047,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, @@ -538131,16 +538061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 27, - sym__automatic_semicolon, + ACTIONS(4515), 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, @@ -538159,156 +538092,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62015] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, + [61568] = 7, + ACTIONS(8494), 1, + anon_sym_AT, + ACTIONS(8499), 1, + sym_label, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5415), 2, + sym_annotation, + aux_sym__statement_repeat1, + STATE(5553), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8497), 19, + sym__string_start, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5213), 1, - sym_function_body, - STATE(5529), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8492), 28, + 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, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [61638] = 25, + ACTIONS(3150), 1, + anon_sym_AT, + ACTIONS(3174), 1, + sym_property_modifier, + ACTIONS(8436), 1, + anon_sym_constructor, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(8440), 1, + anon_sym_LPAREN, + ACTIONS(8442), 1, + anon_sym_LT, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(8502), 1, + anon_sym_COLON, + STATE(5489), 1, + sym_type_parameters, + STATE(8398), 1, + sym_primary_constructor, + STATE(8530), 1, + sym__class_parameters, + STATE(8710), 1, sym_type_constraints, + STATE(9243), 1, + sym_class_body, + STATE(9835), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3186), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7553), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7561), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7557), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7559), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7555), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7551), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7549), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5532), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [61744] = 6, + ACTIONS(6892), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4222), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4220), 4, + sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4217), 18, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4214), 27, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4158), 26, + [61812] = 6, + ACTIONS(6896), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4190), 3, + anon_sym_in, + anon_sym_else, + anon_sym_is, + ACTIONS(4188), 4, sym__automatic_semicolon, - sym_safe_nav, + anon_sym_RBRACE, + anon_sym_BANGin, + anon_sym_BANGis, + ACTIONS(4185), 18, + sym__string_start, anon_sym_AT, anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, sym__backtick_identifier, - [62088] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - STATE(5104), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4452), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + ACTIONS(4182), 27, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_BANG, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4454), 27, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, + [61880] = 5, + ACTIONS(8504), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [62157] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - STATE(5110), 1, - sym_function_body, - STATE(5152), 1, - sym__block, - STATE(5541), 1, - sym_type_constraints, + STATE(5419), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 20, + ACTIONS(4611), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538322,15 +538391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 26, - sym__automatic_semicolon, + ACTIONS(4613), 29, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, + anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -538349,27 +538421,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62230] = 7, - ACTIONS(8201), 1, + [61946] = 8, + ACTIONS(5410), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5193), 1, - sym_function_body, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(6204), 1, + anon_sym_COLON, + STATE(4692), 1, + sym_type_constraints, + STATE(4702), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 21, + ACTIONS(3236), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538383,14 +538457,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 27, - sym__automatic_semicolon, + ACTIONS(3240), 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, @@ -538411,27 +538484,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62299] = 7, - ACTIONS(8201), 1, + [62017] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + ACTIONS(8507), 1, + anon_sym_COLON, + STATE(4674), 1, + sym_type_constraints, + STATE(4760), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 21, + ACTIONS(4274), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -538445,14 +538520,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 27, - sym__automatic_semicolon, + ACTIONS(4276), 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, @@ -538473,74 +538547,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62368] = 23, - ACTIONS(3314), 1, + [62088] = 25, + ACTIONS(3150), 1, anon_sym_AT, - ACTIONS(5249), 1, - anon_sym_SEMI, - ACTIONS(7635), 1, - anon_sym_get, - ACTIONS(7637), 1, - anon_sym_set, - ACTIONS(8559), 1, - anon_sym_EQ, - ACTIONS(8561), 1, - anon_sym_by, - ACTIONS(8563), 1, - anon_sym_where, - ACTIONS(8573), 1, + ACTIONS(3174), 1, sym_property_modifier, - STATE(5588), 1, + ACTIONS(3186), 1, + anon_sym_while, + ACTIONS(8509), 1, + anon_sym_COLON, + ACTIONS(8511), 1, + anon_sym_constructor, + ACTIONS(8513), 1, + anon_sym_LBRACE, + ACTIONS(8515), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_LT, + ACTIONS(8519), 1, + anon_sym_where, + STATE(5563), 1, + sym_type_parameters, + STATE(8415), 1, + sym_primary_constructor, + STATE(8771), 1, + sym__class_parameters, + STATE(8803), 1, sym_type_constraints, - STATE(5640), 1, - sym_property_delegate, - STATE(9312), 1, + STATE(9651), 1, + sym_class_body, + STATE(9999), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9444), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(7551), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(7549), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5532), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -538551,21 +538627,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [62469] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, + [62193] = 8, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8581), 1, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8521), 1, anon_sym_COLON, - STATE(5025), 1, + STATE(4974), 1, sym_type_constraints, - STATE(5196), 1, - sym_class_body, + STATE(5158), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 20, + ACTIONS(4152), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -538586,7 +538662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 27, + ACTIONS(4154), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -538614,19 +538690,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62540] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5256), 1, - sym_function_body, + [62264] = 4, + ACTIONS(8523), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 21, + ACTIONS(4190), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -538635,6 +538705,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, @@ -538648,16 +538719,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 27, - sym__automatic_semicolon, + ACTIONS(4188), 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, @@ -538676,74 +538749,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62609] = 23, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(7635), 1, + [62327] = 4, + ACTIONS(8525), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4222), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, - ACTIONS(7637), 1, anon_sym_set, - ACTIONS(8561), 1, - anon_sym_by, - ACTIONS(8563), 1, - anon_sym_where, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8583), 1, - anon_sym_EQ, - ACTIONS(8585), 1, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4220), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(5569), 1, - sym_type_constraints, - STATE(5630), 1, - sym_property_delegate, - STATE(9312), 1, + 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, + [62390] = 24, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8531), 1, + anon_sym_COMMA, + ACTIONS(8533), 1, + anon_sym_RPAREN, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9005), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3316), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - STATE(9384), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -538754,15 +538887,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [62710] = 5, - ACTIONS(8587), 1, + [62493] = 5, + ACTIONS(8559), 1, anon_sym_DOT, - STATE(5435), 1, + STATE(5467), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 20, + ACTIONS(4105), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -538783,7 +538916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4143), 30, + ACTIONS(4103), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -538814,11 +538947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62775] = 3, + [62558] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 21, + ACTIONS(4095), 21, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -538840,7 +538973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4122), 31, + ACTIONS(4093), 31, anon_sym_DOT, anon_sym_val, anon_sym_object, @@ -538872,19 +539005,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [62836] = 7, - ACTIONS(8201), 1, + [62619] = 24, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8561), 1, + anon_sym_COMMA, + ACTIONS(8563), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(8812), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [62722] = 24, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8565), 1, + anon_sym_COMMA, + ACTIONS(8567), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9073), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [62825] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, + ACTIONS(8419), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5213), 1, + STATE(5193), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 21, + ACTIONS(4196), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -538906,7 +539197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 27, + ACTIONS(4198), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -538934,21 +539225,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62905] = 8, - ACTIONS(5770), 1, + [62894] = 23, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5215), 1, + anon_sym_SEMI, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8569), 1, + anon_sym_EQ, + ACTIONS(8571), 1, + anon_sym_by, + ACTIONS(8573), 1, anon_sym_where, - ACTIONS(5782), 1, + ACTIONS(8583), 1, + sym_property_modifier, + STATE(5594), 1, + sym_type_constraints, + STATE(5633), 1, + sym_property_delegate, + STATE(9327), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1746), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9392), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [62995] = 8, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8374), 1, + anon_sym_EQ, + ACTIONS(8591), 1, anon_sym_COLON, - STATE(4963), 1, - sym_type_constraints, - STATE(5247), 1, - sym_enum_class_body, + STATE(4781), 1, + sym__block, + STATE(4832), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 20, + ACTIONS(4238), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -538956,6 +539325,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, @@ -538969,14 +539339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 27, - sym__automatic_semicolon, + ACTIONS(4240), 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, @@ -538997,24 +539366,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [62976] = 7, - ACTIONS(8201), 1, + [63066] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5079), 1, + STATE(5168), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, + STATE(5555), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 21, + ACTIONS(4097), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -539031,14 +539403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 27, + ACTIONS(4099), 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, @@ -539059,192 +539430,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63045] = 5, - ACTIONS(8591), 1, - anon_sym_DOT, - STATE(5435), 1, - aux_sym_user_type_repeat1, + [63139] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5093), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 20, - sym__string_start, + ACTIONS(4077), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4079), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(4187), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + [63208] = 8, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_EQ, + ACTIONS(8593), 1, + anon_sym_COLON, + STATE(4781), 1, + sym__block, + STATE(4824), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4196), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, + anon_sym_in, anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63110] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8596), 22, - sym__string_start, + ACTIONS(4198), 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_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(8594), 30, - anon_sym_object, - anon_sym_fun, + [63279] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5215), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4087), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, anon_sym_in, - anon_sym_null, - anon_sym_if, anon_sym_else, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [63171] = 23, - ACTIONS(3314), 1, + ACTIONS(4089), 27, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(5251), 1, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(7635), 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, + [63348] = 24, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8595), 1, + anon_sym_COMMA, + ACTIONS(8597), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(8986), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, anon_sym_get, - ACTIONS(7637), 1, anon_sym_set, - ACTIONS(8561), 1, - anon_sym_by, - ACTIONS(8563), 1, - anon_sym_where, - ACTIONS(8573), 1, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [63451] = 25, + ACTIONS(3150), 1, + anon_sym_AT, + ACTIONS(3154), 1, + anon_sym_while, + ACTIONS(3174), 1, sym_property_modifier, - ACTIONS(8598), 1, - anon_sym_EQ, - STATE(5567), 1, + ACTIONS(8511), 1, + anon_sym_constructor, + ACTIONS(8515), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_LT, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8599), 1, + anon_sym_COLON, + ACTIONS(8601), 1, + anon_sym_LBRACE, + STATE(5592), 1, + sym_type_parameters, + STATE(8418), 1, + sym_primary_constructor, + STATE(8771), 1, + sym__class_parameters, + STATE(8950), 1, sym_type_constraints, - STATE(5629), 1, - sym_property_delegate, - STATE(9312), 1, + STATE(9941), 1, + sym_enum_class_body, + STATE(9999), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9333), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(7551), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(7549), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5532), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539255,29 +539776,22 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [63272] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8600), 1, - anon_sym_COLON, - STATE(5004), 1, - sym_type_constraints, - STATE(5247), 1, - sym_class_body, + [63556] = 4, + ACTIONS(8603), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 20, + ACTIONS(4856), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_else, + anon_sym_while, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -539290,16 +539804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 27, - sym__automatic_semicolon, + ACTIONS(4858), 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, @@ -539318,25 +539835,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63343] = 8, - ACTIONS(5770), 1, + [63619] = 5, + ACTIONS(8603), 1, + anon_sym_else, + ACTIONS(8605), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4856), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_where, - ACTIONS(5782), 1, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4858), 29, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(6294), 1, - anon_sym_COLON, - STATE(4961), 1, - sym_type_constraints, - STATE(5163), 1, - sym_enum_class_body, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_DASH_GT, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [63684] = 24, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8607), 1, + anon_sym_COMMA, + ACTIONS(8609), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(8932), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [63787] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5168), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 20, + ACTIONS(4097), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -539353,7 +540008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 27, + ACTIONS(4099), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -539381,28 +540036,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63414] = 8, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, - anon_sym_LBRACE, - ACTIONS(8602), 1, - anon_sym_COLON, - STATE(4995), 1, - sym_type_constraints, - STATE(5236), 1, - sym_enum_class_body, + [63856] = 24, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8611), 1, + anon_sym_COMMA, + ACTIONS(8613), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(8996), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [63959] = 4, + ACTIONS(8615), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 20, + ACTIONS(4840), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -539416,16 +540144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 27, - sym__automatic_semicolon, + ACTIONS(4842), 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, @@ -539444,11 +540174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63485] = 3, + [64022] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8430), 22, + ACTIONS(8619), 22, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -539471,7 +540201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(8428), 30, + ACTIONS(8617), 30, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -539502,88 +540232,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [63546] = 8, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, + [64083] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(6316), 1, - anon_sym_COLON, - STATE(4999), 1, - sym_type_constraints, - STATE(5098), 1, - sym_enum_class_body, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5171), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 20, + ACTIONS(4416), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3280), 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, - [63617] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, anon_sym_where, - ACTIONS(6320), 1, - anon_sym_COLON, - STATE(4962), 1, - sym_type_constraints, - STATE(5087), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3288), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, anon_sym_get, anon_sym_set, anon_sym_in, @@ -539600,7 +540266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3292), 27, + ACTIONS(4418), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -539628,76 +540294,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63688] = 25, - ACTIONS(3202), 1, + [64152] = 23, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3248), 1, - anon_sym_while, - ACTIONS(8604), 1, - anon_sym_COLON, - ACTIONS(8606), 1, - anon_sym_constructor, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(8610), 1, - anon_sym_LPAREN, - ACTIONS(8612), 1, - anon_sym_LT, - ACTIONS(8614), 1, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8571), 1, + anon_sym_by, + ACTIONS(8573), 1, anon_sym_where, - STATE(5568), 1, - sym_type_parameters, - STATE(8404), 1, - sym_primary_constructor, - STATE(8702), 1, - sym__class_parameters, - STATE(8942), 1, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8621), 1, + anon_sym_EQ, + ACTIONS(8623), 1, + anon_sym_SEMI, + STATE(5575), 1, sym_type_constraints, - STATE(9461), 1, + STATE(5627), 1, + sym_property_delegate, + STATE(9327), 1, sym_modifiers, - STATE(9474), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7643), 2, + ACTIONS(3286), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7651), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5728), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7647), 3, + STATE(9326), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7649), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7645), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7641), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7639), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5507), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539708,27 +540372,24 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [63793] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, + [64253] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8419), 1, anon_sym_EQ, - STATE(5116), 1, + STATE(5166), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, - STATE(5571), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 20, + ACTIONS(4451), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -539745,13 +540406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 26, + ACTIONS(4453), 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, @@ -539772,19 +540434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63866] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - STATE(5110), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [64322] = 4, + ACTIONS(8625), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 21, + ACTIONS(4850), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -539793,6 +540449,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, @@ -539806,16 +540463,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 27, - sym__automatic_semicolon, + ACTIONS(4852), 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, @@ -539834,22 +540493,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63935] = 4, - ACTIONS(8616), 1, - anon_sym_LPAREN, + [64385] = 9, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5129), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5561), 1, + sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 22, + ACTIONS(4260), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -539863,18 +540530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4240), 29, + ACTIONS(4262), 26, + 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_STAR, - anon_sym_DASH_GT, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, @@ -539893,76 +540557,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [63998] = 25, - ACTIONS(3202), 1, + [64458] = 24, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(3226), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(3238), 1, - anon_sym_while, - ACTIONS(8606), 1, - anon_sym_constructor, - ACTIONS(8610), 1, - anon_sym_LPAREN, - ACTIONS(8612), 1, - anon_sym_LT, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8618), 1, - anon_sym_COLON, - ACTIONS(8620), 1, - anon_sym_LBRACE, - STATE(5581), 1, - sym_type_parameters, - STATE(8434), 1, - sym_primary_constructor, - STATE(8702), 1, - sym__class_parameters, - STATE(8813), 1, - sym_type_constraints, - STATE(9461), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8627), 1, + anon_sym_COMMA, + ACTIONS(8629), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, sym_modifiers, - STATE(9619), 1, - sym_enum_class_body, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9015), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7643), 2, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7651), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5728), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7647), 3, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7649), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7645), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7639), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5507), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -539973,19 +540636,19 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [64103] = 7, - ACTIONS(8201), 1, + [64561] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, + ACTIONS(8419), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5235), 1, + STATE(5126), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4393), 21, + ACTIONS(4443), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -540007,7 +540670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4395), 27, + ACTIONS(4445), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540035,18 +540698,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64172] = 4, - ACTIONS(8622), 1, - anon_sym_LPAREN, + [64630] = 8, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(6212), 1, + anon_sym_COLON, + STATE(4690), 1, + sym_type_constraints, + STATE(4733), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4228), 22, + ACTIONS(3218), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -540064,18 +540734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4226), 29, + ACTIONS(3222), 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, @@ -540094,29 +540761,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64235] = 8, - ACTIONS(8098), 1, + [64701] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8419), 1, anon_sym_EQ, - ACTIONS(8624), 1, - anon_sym_COLON, - STATE(4870), 1, + STATE(5146), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 21, + ACTIONS(4142), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -540130,13 +540795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4291), 26, + ACTIONS(4144), 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, @@ -540157,101 +540823,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64306] = 23, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(7635), 1, - anon_sym_get, - ACTIONS(7637), 1, - anon_sym_set, - ACTIONS(8561), 1, - anon_sym_by, - ACTIONS(8563), 1, - anon_sym_where, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8626), 1, - anon_sym_EQ, - ACTIONS(8628), 1, - anon_sym_SEMI, - STATE(5537), 1, - sym_type_constraints, - STATE(5645), 1, - sym_property_delegate, - STATE(9312), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3350), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9311), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [64407] = 9, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8201), 1, + [64770] = 8, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8374), 1, anon_sym_EQ, - STATE(5145), 1, + ACTIONS(8631), 1, + anon_sym_COLON, + STATE(4780), 1, sym_function_body, - STATE(5152), 1, + STATE(4781), 1, sym__block, - STATE(5556), 1, - sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 20, + ACTIONS(4250), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -540259,6 +540845,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, @@ -540272,13 +540859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 26, - sym__automatic_semicolon, + ACTIONS(4252), 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, @@ -540299,101 +540886,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64480] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3206), 1, - anon_sym_while, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8606), 1, - anon_sym_constructor, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(8610), 1, - anon_sym_LPAREN, - ACTIONS(8612), 1, - anon_sym_LT, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8630), 1, - anon_sym_COLON, - STATE(5572), 1, - sym_type_parameters, - STATE(8406), 1, - sym_primary_constructor, - STATE(8702), 1, - sym__class_parameters, - STATE(9070), 1, - sym_type_constraints, - STATE(9461), 1, - sym_modifiers, - STATE(9719), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7649), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7645), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7639), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5507), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [64585] = 8, - ACTIONS(5764), 1, + [64841] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(5770), 1, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(6304), 1, + ACTIONS(8633), 1, anon_sym_COLON, - STATE(5020), 1, + STATE(4995), 1, sym_type_constraints, - STATE(5098), 1, + STATE(5228), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 20, + ACTIONS(4274), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -540414,7 +540921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 27, + ACTIONS(4276), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540442,22 +540949,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64656] = 4, - ACTIONS(8632), 1, - anon_sym_else, + [64912] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3943), 21, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3938), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [64973] = 8, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(6222), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5082), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 21, + ACTIONS(3218), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -540470,19 +541042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 30, + ACTIONS(3222), 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, @@ -540501,23 +541070,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64719] = 9, - ACTIONS(5770), 1, + [65044] = 9, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8201), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5256), 1, + STATE(5146), 1, sym_function_body, - STATE(5589), 1, + STATE(5234), 1, + sym__block, + STATE(5573), 1, sym_type_constraints, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 20, + ACTIONS(4142), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -540538,7 +541107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 26, + ACTIONS(4144), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -540565,24 +541134,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64792] = 5, - ACTIONS(8632), 1, - anon_sym_else, - ACTIONS(8634), 1, - anon_sym_SEMI, + [65117] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(6206), 1, + anon_sym_COLON, + STATE(4689), 1, + sym_type_constraints, + STATE(4733), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 21, + ACTIONS(3218), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -540595,18 +541170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 29, + ACTIONS(3222), 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, @@ -540625,21 +541197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64857] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, + [65188] = 8, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8636), 1, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(6266), 1, anon_sym_COLON, - STATE(4660), 1, + STATE(5012), 1, sym_type_constraints, - STATE(4713), 1, + STATE(5191), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 21, + ACTIONS(3236), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -540647,7 +541219,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, @@ -540661,13 +541232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 26, + ACTIONS(3240), 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, @@ -540688,107 +541260,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [64928] = 23, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(5271), 1, - anon_sym_SEMI, - ACTIONS(7635), 1, - anon_sym_get, - ACTIONS(7637), 1, - anon_sym_set, - ACTIONS(8561), 1, - anon_sym_by, - ACTIONS(8563), 1, - anon_sym_where, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8638), 1, - anon_sym_EQ, - STATE(5546), 1, - sym_type_constraints, - STATE(5638), 1, - sym_property_delegate, - STATE(9312), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1798), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9132), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [65029] = 8, - ACTIONS(5484), 1, + [65259] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(6318), 1, - anon_sym_COLON, - STATE(4629), 1, - sym_type_constraints, - STATE(4810), 1, - sym_enum_class_body, + ACTIONS(8419), 1, + anon_sym_EQ, + STATE(5134), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 21, + ACTIONS(4230), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -540802,13 +541294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 26, + ACTIONS(4232), 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, @@ -540829,29 +541322,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65100] = 8, - ACTIONS(8098), 1, + [65328] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8419), 1, anon_sym_EQ, - ACTIONS(8640), 1, - anon_sym_COLON, - STATE(4772), 1, + STATE(5129), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 21, + ACTIONS(4260), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -540865,13 +541356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4208), 26, + ACTIONS(4262), 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, @@ -540892,21 +541384,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65171] = 8, - ACTIONS(5490), 1, + [65397] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8397), 22, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(8395), 30, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_in, + anon_sym_null, + anon_sym_if, + anon_sym_else, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [65458] = 24, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8635), 1, + anon_sym_COMMA, + ACTIONS(8637), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(8856), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [65561] = 5, + ACTIONS(8559), 1, + anon_sym_DOT, + STATE(5481), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4072), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4070), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [65626] = 8, + ACTIONS(5416), 1, anon_sym_where, - ACTIONS(5494), 1, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8642), 1, + ACTIONS(6278), 1, anon_sym_COLON, - STATE(4683), 1, + STATE(4658), 1, sym_type_constraints, - STATE(4842), 1, + STATE(4804), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 21, + ACTIONS(3226), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -540928,7 +541617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 26, + ACTIONS(3230), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -540955,21 +541644,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65242] = 8, - ACTIONS(5484), 1, - anon_sym_LBRACE, - ACTIONS(5490), 1, + [65697] = 9, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8644), 1, - anon_sym_COLON, - STATE(4650), 1, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5215), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5591), 1, sym_type_constraints, - STATE(4842), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 21, + ACTIONS(4087), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -540977,7 +541668,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, @@ -540991,13 +541681,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 26, + ACTIONS(4089), 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, @@ -541018,79 +541708,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65313] = 3, + [65770] = 24, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8639), 1, + anon_sym_COMMA, + ACTIONS(8641), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(8825), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 21, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3990), 31, - anon_sym_DOT, + ACTIONS(8535), 2, anon_sym_val, - anon_sym_object, - anon_sym_fun, + anon_sym_var, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [65374] = 8, - ACTIONS(8098), 1, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [65873] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - ACTIONS(8646), 1, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(6202), 1, anon_sym_COLON, - STATE(4804), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + STATE(5048), 1, + sym_type_constraints, + STATE(5082), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 21, + ACTIONS(3218), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -541098,7 +541809,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, @@ -541112,13 +541822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 26, + ACTIONS(3222), 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, @@ -541139,21 +541850,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65445] = 8, - ACTIONS(5490), 1, - anon_sym_where, - ACTIONS(5494), 1, + [65944] = 25, + ACTIONS(3150), 1, + anon_sym_AT, + ACTIONS(3154), 1, + anon_sym_while, + ACTIONS(3174), 1, + sym_property_modifier, + ACTIONS(8511), 1, + anon_sym_constructor, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(6324), 1, + ACTIONS(8515), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_LT, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8643), 1, anon_sym_COLON, - STATE(4651), 1, + STATE(5559), 1, + sym_type_parameters, + STATE(8446), 1, + sym_primary_constructor, + STATE(8771), 1, + sym__class_parameters, + STATE(9044), 1, sym_type_constraints, - STATE(4775), 1, + STATE(9941), 1, sym_class_body, + STATE(9999), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7553), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7561), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7557), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7559), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7555), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7551), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7549), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5532), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66049] = 8, + ACTIONS(5410), 1, + anon_sym_LBRACE, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8645), 1, + anon_sym_COLON, + STATE(4691), 1, + sym_type_constraints, + STATE(4710), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 21, + ACTIONS(4202), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -541175,7 +541966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 26, + ACTIONS(4204), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -541202,27 +541993,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65516] = 7, - ACTIONS(8201), 1, + [66120] = 8, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8440), 1, - anon_sym_EQ, - STATE(5116), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + ACTIONS(8647), 1, + anon_sym_COLON, + STATE(4617), 1, + sym_type_constraints, + STATE(4710), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 21, + ACTIONS(4202), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, + anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -541236,14 +542029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 27, - sym__automatic_semicolon, + ACTIONS(4204), 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, @@ -541264,21 +542056,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65585] = 8, - ACTIONS(5484), 1, + [66191] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(5490), 1, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(6326), 1, + ACTIONS(6260), 1, anon_sym_COLON, - STATE(4643), 1, + STATE(5034), 1, sym_type_constraints, - STATE(4775), 1, - sym_enum_class_body, + STATE(5088), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 21, + ACTIONS(3226), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -541286,7 +542078,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, @@ -541300,13 +542091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 26, + ACTIONS(3230), 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, @@ -541327,21 +542119,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65656] = 8, - ACTIONS(5490), 1, + [66262] = 25, + ACTIONS(3150), 1, + anon_sym_AT, + ACTIONS(3174), 1, + sym_property_modifier, + ACTIONS(3200), 1, + anon_sym_while, + ACTIONS(8511), 1, + anon_sym_constructor, + ACTIONS(8515), 1, + anon_sym_LPAREN, + ACTIONS(8517), 1, + anon_sym_LT, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8601), 1, + anon_sym_LBRACE, + ACTIONS(8649), 1, + anon_sym_COLON, + STATE(5572), 1, + sym_type_parameters, + STATE(8406), 1, + sym_primary_constructor, + STATE(8771), 1, + sym__class_parameters, + STATE(9004), 1, + sym_type_constraints, + STATE(9999), 1, + sym_modifiers, + STATE(10028), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7553), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7561), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7557), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7559), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7555), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7551), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7549), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5532), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66367] = 23, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5197), 1, + anon_sym_SEMI, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8571), 1, + anon_sym_by, + ACTIONS(8573), 1, + anon_sym_where, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8651), 1, + anon_sym_EQ, + STATE(5581), 1, + sym_type_constraints, + STATE(5630), 1, + sym_property_delegate, + STATE(9327), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1772), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9240), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66468] = 9, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(5494), 1, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8648), 1, - anon_sym_COLON, - STATE(4691), 1, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5134), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + STATE(5571), 1, sym_type_constraints, - STATE(4722), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 21, + ACTIONS(4230), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -541349,7 +542301,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, @@ -541363,13 +542314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 26, + ACTIONS(4232), 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, @@ -541390,22 +542341,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65727] = 4, - ACTIONS(8650), 1, - anon_sym_LPAREN, + [66541] = 8, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8653), 1, + anon_sym_COLON, + STATE(4967), 1, + sym_type_constraints, + STATE(5175), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4844), 22, + ACTIONS(4202), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -541419,18 +542376,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4846), 29, + ACTIONS(4204), 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, @@ -541449,102 +542404,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65790] = 25, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3206), 1, - anon_sym_while, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8606), 1, - anon_sym_constructor, - ACTIONS(8610), 1, - anon_sym_LPAREN, - ACTIONS(8612), 1, - anon_sym_LT, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, + [66612] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8652), 1, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8655), 1, anon_sym_COLON, - STATE(5570), 1, - sym_type_parameters, - STATE(8446), 1, - sym_primary_constructor, - STATE(8702), 1, - sym__class_parameters, - STATE(8945), 1, + STATE(4979), 1, sym_type_constraints, - STATE(9461), 1, - sym_modifiers, - STATE(9719), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7649), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7645), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7639), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5507), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [65895] = 4, - ACTIONS(8654), 1, - anon_sym_LPAREN, + STATE(5175), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 22, + ACTIONS(4202), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -541558,18 +542439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4854), 29, + ACTIONS(4204), 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, @@ -541588,15 +542467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [65958] = 5, - ACTIONS(8587), 1, + [66683] = 5, + ACTIONS(8657), 1, anon_sym_DOT, - STATE(5430), 1, + STATE(5481), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 20, + ACTIONS(4131), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -541617,7 +542496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(4162), 30, + ACTIONS(4129), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -541648,136 +542527,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [66023] = 8, - ACTIONS(5490), 1, + [66748] = 23, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5213), 1, + anon_sym_SEMI, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8571), 1, + anon_sym_by, + ACTIONS(8573), 1, anon_sym_where, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(6336), 1, - anon_sym_COLON, - STATE(4639), 1, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8660), 1, + anon_sym_EQ, + STATE(5590), 1, sym_type_constraints, - STATE(4764), 1, - sym_class_body, + STATE(5637), 1, + sym_property_delegate, + STATE(9327), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_while, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1740), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9296), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3292), 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, - [66094] = 23, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [66849] = 23, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8660), 1, - anon_sym_COMMA, - ACTIONS(8662), 1, - anon_sym_RPAREN, - ACTIONS(8678), 1, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8571), 1, + anon_sym_by, + ACTIONS(8573), 1, + anon_sym_where, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, + ACTIONS(8662), 1, + anon_sym_EQ, + ACTIONS(8664), 1, + anon_sym_SEMI, + STATE(5596), 1, + sym_type_constraints, + STATE(5642), 1, + sym_property_delegate, + STATE(9327), 1, sym_modifiers, - STATE(8816), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(3298), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, + STATE(9428), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -541788,19 +542683,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66194] = 7, - ACTIONS(8098), 1, + [66950] = 8, + ACTIONS(5410), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4787), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + ACTIONS(5416), 1, + anon_sym_where, + ACTIONS(8666), 1, + anon_sym_COLON, + STATE(4676), 1, + sym_type_constraints, + STATE(4759), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 21, + ACTIONS(4152), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -541822,7 +542719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 26, + ACTIONS(4154), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -541849,20 +542746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66262] = 5, - ACTIONS(8688), 1, - anon_sym_COMMA, - STATE(5522), 1, - aux_sym__delegation_specifiers_repeat1, + [67021] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4821), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4621), 22, + ACTIONS(4230), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -541880,11 +542780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4623), 27, + ACTIONS(4232), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -541908,19 +542807,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66326] = 7, - ACTIONS(8098), 1, + [67089] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4131), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4754), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4129), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [67149] = 8, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(6344), 1, + anon_sym_COLON, + STATE(5057), 1, + sym_type_constraints, + STATE(5082), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 21, + ACTIONS(3218), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -541928,7 +542886,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, @@ -541942,13 +542899,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 26, + ACTIONS(3222), 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, @@ -541969,27 +542926,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66394] = 7, - ACTIONS(8098), 1, + [67219] = 6, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4719), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + ACTIONS(8668), 1, + anon_sym_COLON, + STATE(5092), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 21, + ACTIONS(4353), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -542003,13 +542958,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 26, + ACTIONS(4355), 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, @@ -542030,73 +542986,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66462] = 23, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + [67285] = 23, + ACTIONS(3150), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(3174), 1, sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8690), 1, - anon_sym_COMMA, - ACTIONS(8692), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, + ACTIONS(8436), 1, + anon_sym_constructor, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(8440), 1, + anon_sym_LPAREN, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(8670), 1, + anon_sym_COLON, + STATE(8388), 1, + sym_primary_constructor, + STATE(8530), 1, + sym__class_parameters, + STATE(8741), 1, + sym_type_constraints, + STATE(9364), 1, + sym_class_body, + STATE(9835), 1, sym_modifiers, - STATE(8931), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(3230), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(7551), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7549), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5532), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -542107,73 +543063,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66562] = 23, - ACTIONS(8656), 1, + [67385] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8694), 1, - anon_sym_COMMA, - ACTIONS(8696), 1, + ACTIONS(8672), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(7739), 1, sym_modifiers, - STATE(8856), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, sym_class_parameter, - STATE(9491), 1, + STATE(9612), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(8535), 2, anon_sym_val, anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -542184,83 +543140,78 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66662] = 8, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - ACTIONS(8698), 1, - anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5166), 1, - sym_function_body, + [67485] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4289), 20, + ACTIONS(4150), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4148), 31, anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(4291), 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, - [66732] = 8, - ACTIONS(8201), 1, + [67545] = 8, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8454), 1, anon_sym_EQ, - ACTIONS(8700), 1, + ACTIONS(8674), 1, anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5193), 1, + STATE(5180), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 20, + ACTIONS(4238), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -542281,7 +543232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 26, + ACTIONS(4240), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542308,21 +543259,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66802] = 8, - ACTIONS(8201), 1, + [67615] = 8, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8454), 1, anon_sym_EQ, - ACTIONS(8702), 1, + ACTIONS(8676), 1, anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5253), 1, + STATE(5193), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4206), 20, + ACTIONS(4196), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -542343,7 +543294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4208), 26, + ACTIONS(4198), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542370,73 +543321,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [66872] = 23, - ACTIONS(1810), 1, - anon_sym_while, - ACTIONS(3314), 1, + [67685] = 23, + ACTIONS(3150), 1, anon_sym_AT, - ACTIONS(5379), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, + ACTIONS(3174), 1, sym_property_modifier, - ACTIONS(8704), 1, - anon_sym_EQ, - ACTIONS(8706), 1, - anon_sym_by, - ACTIONS(8708), 1, + ACTIONS(8436), 1, + anon_sym_constructor, + ACTIONS(8440), 1, + anon_sym_LPAREN, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - STATE(5599), 1, + ACTIONS(8448), 1, + anon_sym_LBRACE, + ACTIONS(8678), 1, + anon_sym_COLON, + STATE(8373), 1, + sym_primary_constructor, + STATE(8530), 1, + sym__class_parameters, + STATE(8656), 1, sym_type_constraints, - STATE(5654), 1, - sym_property_delegate, - STATE(9365), 1, + STATE(9250), 1, + sym_enum_class_body, + STATE(9835), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(3240), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9497), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(7551), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(7549), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5532), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -542447,22 +543398,25 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [66972] = 6, - ACTIONS(5764), 1, + [67785] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8714), 1, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(8680), 1, anon_sym_COLON, - STATE(5222), 1, + STATE(4995), 1, + sym_type_constraints, + STATE(5228), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 21, + ACTIONS(4274), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -542479,14 +543433,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 27, + ACTIONS(4276), 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, @@ -542507,73 +543460,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67038] = 23, - ACTIONS(3202), 1, + [67855] = 23, + ACTIONS(1740), 1, + anon_sym_while, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(3226), 1, + ACTIONS(5358), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8496), 1, - anon_sym_constructor, - ACTIONS(8500), 1, - anon_sym_LPAREN, - ACTIONS(8504), 1, + ACTIONS(8682), 1, + anon_sym_EQ, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8686), 1, anon_sym_where, - ACTIONS(8549), 1, - anon_sym_LBRACE, - ACTIONS(8716), 1, - anon_sym_COLON, - STATE(8389), 1, - sym_primary_constructor, - STATE(8599), 1, - sym__class_parameters, - STATE(8703), 1, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + STATE(5597), 1, sym_type_constraints, - STATE(9443), 1, - sym_class_body, - STATE(9754), 1, + STATE(5662), 1, + sym_property_delegate, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7643), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7651), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5728), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7647), 3, + STATE(10035), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7649), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7645), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7641), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7639), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5507), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -542584,132 +543537,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67138] = 5, - ACTIONS(8718), 1, - anon_sym_LPAREN, - STATE(5585), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7096), 19, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(7094), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [67202] = 23, - ACTIONS(3314), 1, + [67955] = 23, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(3316), 1, + ACTIONS(3298), 1, anon_sym_while, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8706), 1, + ACTIONS(8684), 1, anon_sym_by, - ACTIONS(8708), 1, + ACTIONS(8686), 1, anon_sym_where, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8721), 1, + ACTIONS(8692), 1, anon_sym_EQ, - ACTIONS(8723), 1, + ACTIONS(8694), 1, anon_sym_SEMI, - STATE(5610), 1, + STATE(5598), 1, sym_type_constraints, - STATE(5657), 1, + STATE(5649), 1, sym_property_delegate, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9772), 2, + STATE(10086), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -542720,21 +543614,175 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67302] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, + [68055] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8696), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68155] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8698), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68255] = 8, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(8725), 1, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8700), 1, anon_sym_COLON, - STATE(5025), 1, + STATE(4967), 1, sym_type_constraints, - STATE(5196), 1, - sym_class_body, + STATE(5175), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4299), 20, + ACTIONS(4202), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -542755,7 +543803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4301), 26, + ACTIONS(4204), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -542782,96 +543830,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67372] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(8496), 1, - anon_sym_constructor, - ACTIONS(8498), 1, - anon_sym_LBRACE, - ACTIONS(8500), 1, - anon_sym_LPAREN, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(8727), 1, - anon_sym_COLON, - STATE(8362), 1, - sym_primary_constructor, - STATE(8599), 1, - sym__class_parameters, - STATE(8648), 1, - sym_type_constraints, - STATE(9267), 1, - sym_enum_class_body, - STATE(9754), 1, - sym_modifiers, + [68325] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3298), 2, + ACTIONS(4333), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7649), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7645), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(4888), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7639), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5507), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [67472] = 7, - ACTIONS(8098), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4890), 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, + [68387] = 8, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(4804), 1, - sym_function_body, - STATE(4871), 1, + ACTIONS(8702), 1, + anon_sym_COLON, + STATE(5234), 1, sym__block, + STATE(5235), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 21, + ACTIONS(4250), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -542879,7 +543910,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, @@ -542893,13 +543923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 26, + ACTIONS(4252), 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, @@ -542920,14 +543950,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67540] = 4, + [68457] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8704), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68557] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8706), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68657] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 2, + ACTIONS(4345), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(4908), 22, + ACTIONS(4884), 22, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -542950,7 +544134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4910), 27, + ACTIONS(4886), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -542978,73 +544162,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [67602] = 23, - ACTIONS(8656), 1, + [68719] = 23, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(3286), 1, + anon_sym_while, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8686), 1, + anon_sym_where, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + ACTIONS(8708), 1, + anon_sym_EQ, + ACTIONS(8710), 1, + anon_sym_SEMI, + STATE(5599), 1, + sym_type_constraints, + STATE(5650), 1, + sym_property_delegate, + STATE(9211), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9872), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [68819] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8729), 1, - anon_sym_COMMA, - ACTIONS(8731), 1, + ACTIONS(8712), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(7739), 1, sym_modifiers, - STATE(9045), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, sym_class_parameter, - STATE(9491), 1, + STATE(9612), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(8535), 2, anon_sym_val, anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -543055,64 +544316,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67702] = 14, - ACTIONS(8733), 1, + [68919] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8752), 1, + ACTIONS(8549), 1, sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8714), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8738), 2, + ACTIONS(8535), 2, anon_sym_val, anon_sym_var, - ACTIONS(8746), 2, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8761), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5728), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8755), 3, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8758), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8749), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8743), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8740), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8736), 10, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - STATE(5496), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -543123,73 +544393,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67784] = 23, - ACTIONS(3202), 1, + [69019] = 23, + ACTIONS(1746), 1, + anon_sym_while, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(3226), 1, + ACTIONS(5396), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8496), 1, - anon_sym_constructor, - ACTIONS(8498), 1, - anon_sym_LBRACE, - ACTIONS(8500), 1, - anon_sym_LPAREN, - ACTIONS(8504), 1, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8686), 1, anon_sym_where, - ACTIONS(8764), 1, - anon_sym_COLON, - STATE(8369), 1, - sym_primary_constructor, - STATE(8599), 1, - sym__class_parameters, - STATE(8684), 1, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + ACTIONS(8716), 1, + anon_sym_EQ, + STATE(5608), 1, sym_type_constraints, - STATE(9426), 1, - sym_enum_class_body, - STATE(9754), 1, + STATE(5647), 1, + sym_property_delegate, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(7643), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7651), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5728), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7647), 3, + STATE(9939), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7649), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7645), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7641), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7639), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5507), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -543200,78 +544470,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [67884] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4258), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + [69119] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4256), 31, - anon_sym_DOT, - anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [67944] = 8, - ACTIONS(5770), 1, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(5782), 1, - anon_sym_LBRACE, - ACTIONS(6398), 1, + ACTIONS(8718), 1, anon_sym_COLON, - STATE(4999), 1, + STATE(4979), 1, sym_type_constraints, - STATE(5098), 1, - sym_enum_class_body, + STATE(5175), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3276), 20, + ACTIONS(4202), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -543292,7 +544505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3280), 26, + ACTIONS(4204), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543319,19 +544532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68014] = 7, - ACTIONS(8098), 1, + [69189] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8374), 1, anon_sym_EQ, - STATE(4734), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, + STATE(4835), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 21, + ACTIONS(4260), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -543353,7 +544566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 26, + ACTIONS(4262), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -543380,96 +544593,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68082] = 23, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8766), 1, - anon_sym_COMMA, - ACTIONS(8768), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(8790), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [68182] = 7, - ACTIONS(8098), 1, + [69257] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8374), 1, anon_sym_EQ, - STATE(4729), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, + STATE(4859), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4393), 21, + ACTIONS(4443), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -543491,7 +544627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4395), 26, + ACTIONS(4445), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -543518,21 +544654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68250] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, + [69325] = 8, + ACTIONS(5760), 1, anon_sym_where, - ACTIONS(6402), 1, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(6338), 1, anon_sym_COLON, - STATE(4962), 1, + STATE(5012), 1, sym_type_constraints, - STATE(5087), 1, - sym_class_body, + STATE(5191), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3288), 20, + ACTIONS(3236), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -543553,7 +544689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3292), 26, + ACTIONS(3240), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -543580,27 +544716,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68320] = 7, - ACTIONS(8098), 1, + [69395] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4236), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4791), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4234), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [69455] = 5, + ACTIONS(8720), 1, + anon_sym_by, + STATE(5083), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 21, + ACTIONS(4347), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, @@ -543614,13 +544803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4454), 26, + ACTIONS(4349), 28, + 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, @@ -543641,295 +544832,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68388] = 23, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(3350), 1, - anon_sym_while, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8706), 1, - anon_sym_by, - ACTIONS(8708), 1, - anon_sym_where, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - ACTIONS(8770), 1, - anon_sym_EQ, - ACTIONS(8772), 1, - anon_sym_SEMI, - STATE(5605), 1, - sym_type_constraints, - STATE(5647), 1, - sym_property_delegate, - STATE(9365), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9595), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [68488] = 23, - ACTIONS(1798), 1, - anon_sym_while, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(5400), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8706), 1, - anon_sym_by, - ACTIONS(8708), 1, - anon_sym_where, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - ACTIONS(8774), 1, - anon_sym_EQ, - STATE(5613), 1, - sym_type_constraints, - STATE(5655), 1, - sym_property_delegate, - STATE(9365), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9819), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [68588] = 14, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(8780), 1, - sym_property_modifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, - anon_sym_expect, - anon_sym_actual, - ACTIONS(8778), 2, - anon_sym_val, - anon_sym_var, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7649), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7645), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7639), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - ACTIONS(8776), 10, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - STATE(5496), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [68670] = 23, - ACTIONS(8656), 1, + [69519] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8784), 1, + ACTIONS(8722), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(7739), 1, sym_modifiers, - STATE(9064), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, sym_class_parameter, - STATE(9491), 1, + STATE(9612), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(8535), 2, anon_sym_val, anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -543940,19 +544909,21 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [68770] = 7, - ACTIONS(8098), 1, + [69619] = 8, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, - anon_sym_EQ, - STATE(4708), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(6348), 1, + anon_sym_COLON, + STATE(5048), 1, + sym_type_constraints, + STATE(5082), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 21, + ACTIONS(3218), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -543960,7 +544931,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, @@ -543974,13 +544944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 26, + ACTIONS(3222), 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, @@ -544001,25 +544971,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68838] = 8, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, + [69689] = 6, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8786), 1, + ACTIONS(8724), 1, anon_sym_COLON, - STATE(4995), 1, - sym_type_constraints, - STATE(5236), 1, - sym_enum_class_body, + STATE(5195), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4200), 20, + ACTIONS(4325), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -544036,13 +545003,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4202), 26, + ACTIONS(4327), 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, @@ -544063,73 +545031,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [68908] = 23, - ACTIONS(8656), 1, + [69755] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8788), 1, - anon_sym_COMMA, - ACTIONS(8790), 1, + ACTIONS(8726), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(7739), 1, sym_modifiers, - STATE(8972), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, sym_class_parameter, - STATE(9491), 1, + STATE(9612), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(8535), 2, anon_sym_val, anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544140,73 +545108,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69008] = 23, - ACTIONS(1818), 1, - anon_sym_while, - ACTIONS(3314), 1, + [69855] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(5377), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8706), 1, - anon_sym_by, - ACTIONS(8708), 1, - anon_sym_where, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - ACTIONS(8792), 1, - anon_sym_EQ, - STATE(5602), 1, - sym_type_constraints, - STATE(5661), 1, - sym_property_delegate, - STATE(9365), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8728), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - STATE(9808), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544217,135 +545185,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69108] = 8, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(6396), 1, - anon_sym_COLON, - STATE(5020), 1, - sym_type_constraints, - STATE(5098), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3276), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(3280), 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, - [69178] = 23, - ACTIONS(3202), 1, + [69955] = 23, + ACTIONS(3150), 1, anon_sym_AT, - ACTIONS(3226), 1, + ACTIONS(3174), 1, sym_property_modifier, - ACTIONS(8496), 1, + ACTIONS(8436), 1, anon_sym_constructor, - ACTIONS(8500), 1, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(8440), 1, anon_sym_LPAREN, - ACTIONS(8504), 1, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(8549), 1, - anon_sym_LBRACE, - ACTIONS(8794), 1, + ACTIONS(8730), 1, anon_sym_COLON, - STATE(8353), 1, + STATE(8367), 1, sym_primary_constructor, - STATE(8599), 1, + STATE(8530), 1, sym__class_parameters, - STATE(8765), 1, + STATE(8628), 1, sym_type_constraints, - STATE(9426), 1, + STATE(9450), 1, sym_class_body, - STATE(9754), 1, + STATE(9835), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(3222), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(7643), 2, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7651), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5728), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7647), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7649), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7645), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7641), 5, + ACTIONS(7551), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7639), 6, + ACTIONS(7549), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5507), 10, + STATE(5532), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544356,76 +545262,81 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69278] = 3, + [70055] = 8, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(6334), 1, + anon_sym_COLON, + STATE(5034), 1, + sym_type_constraints, + STATE(5088), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4187), 31, + ACTIONS(3226), 20, anon_sym_DOT, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [69338] = 7, - ACTIONS(8098), 1, + ACTIONS(3230), 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, + [70125] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8374), 1, anon_sym_EQ, - STATE(4855), 1, + STATE(4773), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 21, + ACTIONS(4142), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -544447,7 +545358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 26, + ACTIONS(4144), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -544474,130 +545385,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69406] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4311), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4309), 31, - anon_sym_DOT, - anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, + [70193] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - [69466] = 23, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8796), 1, - anon_sym_COMMA, - ACTIONS(8798), 1, + ACTIONS(8732), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(7739), 1, sym_modifiers, - STATE(9048), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, sym_class_parameter, - STATE(9491), 1, + STATE(9612), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(8535), 2, anon_sym_val, anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544608,133 +545462,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69566] = 6, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(8800), 1, - anon_sym_COLON, - STATE(5227), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4405), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4407), 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, - [69632] = 23, - ACTIONS(8656), 1, + [70293] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8802), 1, - anon_sym_COMMA, - ACTIONS(8804), 1, + ACTIONS(8734), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(7739), 1, sym_modifiers, - STATE(9019), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, sym_class_parameter, - STATE(9491), 1, + STATE(9612), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(8535), 2, anon_sym_val, anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -544745,79 +545539,100 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [69732] = 5, - ACTIONS(8806), 1, + [70393] = 23, + ACTIONS(1772), 1, + anon_sym_while, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5259), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8684), 1, anon_sym_by, - STATE(5233), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4493), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(8686), 1, anon_sym_where, + ACTIONS(8688), 1, anon_sym_get, + ACTIONS(8690), 1, 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(8736), 1, + anon_sym_EQ, + STATE(5607), 1, + sym_type_constraints, + STATE(5651), 1, + sym_property_delegate, + STATE(9211), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10016), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4495), 28, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [70493] = 7, + ACTIONS(8040), 1, 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, - [69796] = 5, - ACTIONS(8688), 1, - anon_sym_COMMA, - STATE(5334), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4722), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 22, + ACTIONS(4077), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -544835,11 +545650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4541), 27, + ACTIONS(4079), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -544863,19 +545677,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69860] = 7, - ACTIONS(8098), 1, + [70561] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8426), 1, + ACTIONS(8374), 1, anon_sym_EQ, - STATE(4699), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, + STATE(4824), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 21, + ACTIONS(4196), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -544897,7 +545711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 26, + ACTIONS(4198), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -544924,21 +545738,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69928] = 8, - ACTIONS(5770), 1, + [70629] = 23, + ACTIONS(3150), 1, + anon_sym_AT, + ACTIONS(3174), 1, + sym_property_modifier, + ACTIONS(8436), 1, + anon_sym_constructor, + ACTIONS(8440), 1, + anon_sym_LPAREN, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(5782), 1, + ACTIONS(8448), 1, anon_sym_LBRACE, - ACTIONS(8808), 1, + ACTIONS(8738), 1, anon_sym_COLON, - STATE(4963), 1, + STATE(8363), 1, + sym_primary_constructor, + STATE(8530), 1, + sym__class_parameters, + STATE(8665), 1, sym_type_constraints, - STATE(5247), 1, + STATE(9450), 1, + sym_enum_class_body, + STATE(9835), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3222), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(7553), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7561), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7557), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7559), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7555), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7551), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7549), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5532), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [70729] = 8, + ACTIONS(5760), 1, + anon_sym_where, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(8740), 1, + anon_sym_COLON, + STATE(4974), 1, + sym_type_constraints, + STATE(5158), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 20, + ACTIONS(4152), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -544959,7 +545850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 26, + ACTIONS(4154), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -544986,136 +545877,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [69998] = 4, + [70799] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8742), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4421), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(4920), 22, - anon_sym_DOT, - anon_sym_as, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, 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, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4922), 27, - sym_safe_nav, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [70899] = 14, + ACTIONS(3150), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [70060] = 3, + ACTIONS(8748), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4305), 31, - anon_sym_DOT, + ACTIONS(7553), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(7561), 2, + anon_sym_expect, + anon_sym_actual, + ACTIONS(8746), 2, anon_sym_val, + anon_sym_var, + STATE(5732), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(7557), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(7559), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(7555), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(7551), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7549), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + ACTIONS(8744), 10, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, anon_sym_object, anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [70120] = 8, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(5782), 1, + STATE(5545), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [70981] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(6394), 1, - anon_sym_COLON, - STATE(4961), 1, - sym_type_constraints, - STATE(5163), 1, - sym_enum_class_body, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4837), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3294), 20, + ACTIONS(4416), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -545123,6 +546042,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, @@ -545136,13 +546056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3298), 26, - sym__automatic_semicolon, + ACTIONS(4418), 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, @@ -545163,21 +546083,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70190] = 8, - ACTIONS(5764), 1, + [71049] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8750), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71149] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8752), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7739), 1, + sym_modifiers, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [71249] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_where, - ACTIONS(8810), 1, - anon_sym_COLON, - STATE(5004), 1, - sym_type_constraints, - STATE(5247), 1, - sym_class_body, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4781), 1, + sym__block, + STATE(4841), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4268), 20, + ACTIONS(4451), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -545185,6 +546257,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, @@ -545198,13 +546271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4270), 26, - sym__automatic_semicolon, + ACTIONS(4453), 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, @@ -545225,19 +546298,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70260] = 7, - ACTIONS(8201), 1, + [71317] = 7, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8374), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5256), 1, + STATE(4708), 1, sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4194), 20, + ACTIONS(4087), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -545245,6 +546318,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, @@ -545258,13 +546332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4196), 26, - sym__automatic_semicolon, + ACTIONS(4089), 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, @@ -545285,16 +546359,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70327] = 3, + [71385] = 5, + ACTIONS(8754), 1, + anon_sym_LPAREN, + STATE(5560), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 20, + ACTIONS(7048), 19, sym__string_start, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_PLUS_PLUS, @@ -545310,7 +546387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7185), 30, + ACTIONS(7046), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -545341,72 +546418,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [70386] = 23, - ACTIONS(8656), 1, + [71449] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8812), 1, - anon_sym_RBRACE, - ACTIONS(8814), 1, - anon_sym_SEMI, - STATE(6073), 1, + ACTIONS(8757), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(8270), 1, + STATE(7739), 1, sym_modifiers, - STATE(8361), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, sym_simple_identifier, - STATE(8679), 1, - sym_enum_entry, - STATE(9342), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545417,91 +546495,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70485] = 23, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8816), 1, - anon_sym_RBRACE, - ACTIONS(8818), 1, - anon_sym_SEMI, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8270), 1, - sym_modifiers, - STATE(8361), 1, - sym_simple_identifier, - STATE(8679), 1, - sym_enum_entry, - STATE(9148), 1, - sym__enum_entries, + [71549] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, + ACTIONS(4246), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4244), 31, + anon_sym_DOT, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [70584] = 5, - ACTIONS(8820), 1, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [71609] = 5, + ACTIONS(8759), 1, anon_sym_COMMA, - STATE(5533), 1, + STATE(5546), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4637), 21, + ACTIONS(4587), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -545510,6 +546569,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, @@ -545523,14 +546583,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4639), 27, - sym__automatic_semicolon, + ACTIONS(4589), 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, @@ -545551,72 +546611,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [70647] = 23, - ACTIONS(8656), 1, + [71673] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8823), 1, - anon_sym_RBRACE, - ACTIONS(8825), 1, - anon_sym_SEMI, - STATE(6073), 1, + ACTIONS(8761), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(8270), 1, + STATE(7739), 1, sym_modifiers, - STATE(8361), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, sym_simple_identifier, - STATE(8679), 1, - sym_enum_entry, - STATE(9194), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545627,72 +546688,73 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70746] = 23, - ACTIONS(8656), 1, + [71773] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8827), 1, - anon_sym_RBRACE, - ACTIONS(8829), 1, - anon_sym_SEMI, - STATE(6073), 1, + ACTIONS(8763), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(8270), 1, + STATE(7739), 1, sym_modifiers, - STATE(8361), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, + sym_class_parameter, + STATE(9612), 1, sym_simple_identifier, - STATE(8679), 1, - sym_enum_entry, - STATE(9144), 1, - sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545703,127 +546765,125 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [70845] = 4, - ACTIONS(4442), 1, - anon_sym_while, + [71873] = 7, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_EQ, + STATE(4697), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4908), 22, + ACTIONS(4097), 21, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4910), 27, + ACTIONS(4099), 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, - [70906] = 21, - ACTIONS(3314), 1, + [71941] = 14, + ACTIONS(8765), 1, anon_sym_AT, - ACTIONS(7635), 1, - anon_sym_get, - ACTIONS(7637), 1, - anon_sym_set, - ACTIONS(8561), 1, - anon_sym_by, - ACTIONS(8573), 1, + ACTIONS(8784), 1, sym_property_modifier, - ACTIONS(8583), 1, - anon_sym_EQ, - ACTIONS(8585), 1, - anon_sym_SEMI, - STATE(5630), 1, - sym_property_delegate, - STATE(9312), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3316), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8770), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8778), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8793), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9384), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(8787), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8790), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8781), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8775), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8772), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + ACTIONS(8768), 10, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5545), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -545834,21 +546894,20 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71001] = 6, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(8831), 1, - anon_sym_COLON, - STATE(4785), 1, - sym_class_body, + [72023] = 5, + ACTIONS(8759), 1, + anon_sym_COMMA, + STATE(5419), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 21, + ACTIONS(4513), 22, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -545866,10 +546925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 26, + ACTIONS(4515), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -545893,18 +546953,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71066] = 4, - ACTIONS(8806), 1, - anon_sym_by, + [72087] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5093), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4493), 21, + ACTIONS(4077), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -545921,15 +546986,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4495), 28, + ACTIONS(4079), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -545950,19 +547013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71127] = 7, - ACTIONS(8201), 1, + [72154] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5079), 1, + STATE(5193), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4150), 20, + ACTIONS(4196), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -545983,7 +547046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4152), 26, + ACTIONS(4198), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -546010,132 +547073,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71194] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - STATE(5104), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [72221] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4452), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4878), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4876), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, sym__alpha_identifier, - ACTIONS(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_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [71261] = 23, - ACTIONS(8656), 1, + [72280] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8833), 1, + ACTIONS(8796), 1, anon_sym_RBRACE, - ACTIONS(8835), 1, + ACTIONS(8798), 1, anon_sym_SEMI, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8270), 1, + STATE(8229), 1, sym_modifiers, STATE(8361), 1, sym_simple_identifier, - STATE(8679), 1, + STATE(8666), 1, sym_enum_entry, - STATE(9295), 1, + STATE(9400), 1, sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546146,71 +547205,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71360] = 22, - ACTIONS(8656), 1, + [72379] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8837), 1, - anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(8800), 1, + anon_sym_RBRACE, + ACTIONS(8802), 1, + anon_sym_SEMI, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(8229), 1, sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, + STATE(8361), 1, sym_simple_identifier, + STATE(8666), 1, + sym_enum_entry, + STATE(9383), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546221,72 +547281,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71457] = 23, - ACTIONS(8656), 1, + [72478] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8839), 1, + ACTIONS(8804), 1, anon_sym_RBRACE, - ACTIONS(8841), 1, + ACTIONS(8806), 1, anon_sym_SEMI, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8270), 1, + STATE(8229), 1, sym_modifiers, STATE(8361), 1, sym_simple_identifier, - STATE(8679), 1, + STATE(8666), 1, sym_enum_entry, - STATE(9173), 1, + STATE(9351), 1, sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546297,19 +547357,134 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [71556] = 7, - ACTIONS(8201), 1, + [72577] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7105), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7103), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [72636] = 6, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(8808), 1, + anon_sym_COLON, + STATE(4830), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4353), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4355), 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, + [72701] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5213), 1, + STATE(5146), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4156), 20, + ACTIONS(4142), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -546330,11 +547505,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4158), 26, + ACTIONS(4144), 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, + [72768] = 5, + ACTIONS(8810), 1, + anon_sym_COMMA, + STATE(5576), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4587), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4589), 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, @@ -546357,93 +547590,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71623] = 21, - ACTIONS(3314), 1, + [72831] = 23, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(5227), 1, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8812), 1, + anon_sym_RBRACE, + ACTIONS(8814), 1, anon_sym_SEMI, - ACTIONS(7635), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8229), 1, + sym_modifiers, + STATE(8361), 1, + sym_simple_identifier, + STATE(8666), 1, + sym_enum_entry, + STATE(9244), 1, + sym__enum_entries, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8537), 2, anon_sym_get, - ACTIONS(7637), 1, anon_sym_set, - ACTIONS(8561), 1, - anon_sym_by, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8843), 1, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [72930] = 4, + ACTIONS(4343), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4884), 22, + anon_sym_DOT, + anon_sym_as, anon_sym_EQ, - STATE(5632), 1, - sym_property_delegate, - STATE(9312), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4886), 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, + [72991] = 23, + ACTIONS(3150), 1, + anon_sym_AT, + ACTIONS(3174), 1, + sym_property_modifier, + ACTIONS(3222), 1, + anon_sym_while, + ACTIONS(8511), 1, + anon_sym_constructor, + ACTIONS(8513), 1, + anon_sym_LBRACE, + ACTIONS(8515), 1, + anon_sym_LPAREN, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8816), 1, + anon_sym_COLON, + STATE(8425), 1, + sym_primary_constructor, + STATE(8771), 1, + sym__class_parameters, + STATE(9006), 1, + sym_type_constraints, + STATE(9999), 1, sym_modifiers, + STATE(10052), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - STATE(9442), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(7551), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [71718] = 7, - ACTIONS(8201), 1, + ACTIONS(7549), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5532), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [73090] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4882), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4880), 30, + anon_sym_val, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [73149] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5193), 1, + STATE(5126), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4327), 20, + ACTIONS(4443), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -546464,7 +547888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4329), 26, + ACTIONS(4445), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -546491,89 +547915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71785] = 23, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8845), 1, - anon_sym_RBRACE, - ACTIONS(8847), 1, - anon_sym_SEMI, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8270), 1, - sym_modifiers, - STATE(8361), 1, - sym_simple_identifier, - STATE(8679), 1, - sym_enum_entry, - STATE(9198), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [71884] = 4, - ACTIONS(4419), 1, + [73216] = 4, + ACTIONS(4331), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4920), 22, + ACTIONS(4888), 22, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -546596,7 +547944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4922), 27, + ACTIONS(4890), 27, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -546624,146 +547972,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [71945] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + [73277] = 23, + ACTIONS(3150), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(3174), 1, sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8849), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, + ACTIONS(3230), 1, + anon_sym_while, + ACTIONS(8511), 1, + anon_sym_constructor, + ACTIONS(8513), 1, + anon_sym_LBRACE, + ACTIONS(8515), 1, + anon_sym_LPAREN, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8818), 1, + anon_sym_COLON, + STATE(8414), 1, + sym_primary_constructor, + STATE(8771), 1, + sym__class_parameters, + STATE(8941), 1, + sym_type_constraints, + STATE(9938), 1, + sym_class_body, + STATE(9999), 1, sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [72042] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8851), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(7551), 5, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(7549), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5532), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546774,127 +548048,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72139] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7134), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(7132), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [72198] = 22, - ACTIONS(8656), 1, + [73376] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8853), 1, - anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(8820), 1, + anon_sym_RBRACE, + ACTIONS(8822), 1, + anon_sym_SEMI, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(8229), 1, sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, + STATE(8361), 1, sym_simple_identifier, + STATE(8666), 1, + sym_enum_entry, + STATE(9196), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -546905,15 +548124,13 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72295] = 5, - ACTIONS(8855), 1, - anon_sym_COMMA, - STATE(5533), 1, + [73475] = 4, + STATE(5588), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 21, + ACTIONS(4513), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -546935,7 +548152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4541), 27, + ACTIONS(4515), 28, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -546943,6 +548160,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, @@ -546963,79 +548181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72358] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7169), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(7167), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [72417] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - STATE(5116), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [73536] = 4, + ACTIONS(8720), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4260), 20, + ACTIONS(4347), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -547052,13 +548209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4262), 26, + ACTIONS(4349), 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, @@ -547079,146 +548238,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [72484] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8857), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [72581] = 22, - ACTIONS(8656), 1, + [73597] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8859), 1, - anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(8824), 1, + anon_sym_RBRACE, + ACTIONS(8826), 1, + anon_sym_SEMI, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(8229), 1, sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, + STATE(8361), 1, sym_simple_identifier, + STATE(8666), 1, + sym_enum_entry, + STATE(9179), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -547229,11 +548314,11 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72678] = 3, + [73696] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 20, + ACTIONS(4874), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -547254,7 +548339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5169), 30, + ACTIONS(4872), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -547285,11 +548370,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [72737] = 3, + [73755] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7199), 20, + ACTIONS(7111), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -547310,7 +548395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7197), 30, + ACTIONS(7109), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -547341,71 +548426,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [72796] = 22, - ACTIONS(8656), 1, + [73814] = 22, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8861), 1, - anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(7739), 1, sym_modifiers, - STATE(9368), 1, + STATE(8233), 1, + sym_binding_pattern_kind, + STATE(9266), 1, sym_class_parameter, - STATE(9491), 1, + STATE(9612), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(8535), 2, anon_sym_val, anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -547416,203 +548501,132 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [72893] = 3, + [73911] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5129), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(5185), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, + ACTIONS(4260), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [72952] = 23, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(4262), 26, + sym__automatic_semicolon, + sym_safe_nav, anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8863), 1, + anon_sym_LBRACK, anon_sym_RBRACE, - ACTIONS(8865), 1, + anon_sym_LPAREN, anon_sym_SEMI, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8270), 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, + [73978] = 23, + ACTIONS(3150), 1, + anon_sym_AT, + ACTIONS(3174), 1, + sym_property_modifier, + ACTIONS(3240), 1, + anon_sym_while, + ACTIONS(8511), 1, + anon_sym_constructor, + ACTIONS(8515), 1, + anon_sym_LPAREN, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8601), 1, + anon_sym_LBRACE, + ACTIONS(8828), 1, + anon_sym_COLON, + STATE(8437), 1, + sym_primary_constructor, + STATE(8771), 1, + sym__class_parameters, + STATE(8970), 1, + sym_type_constraints, + STATE(9999), 1, sym_modifiers, - STATE(8361), 1, - sym_simple_identifier, - STATE(8679), 1, - sym_enum_entry, - STATE(9397), 1, - sym__enum_entries, + STATE(10011), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [73051] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8867), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(7551), 5, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(7549), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5532), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -547623,19 +548637,19 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73148] = 7, - ACTIONS(8201), 1, + [74077] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8454), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5234), 1, + STATE(5134), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4385), 20, + ACTIONS(4230), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -547656,7 +548670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4387), 26, + ACTIONS(4232), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -547683,19 +548697,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73215] = 7, - ACTIONS(8201), 1, + [74144] = 6, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5235), 1, - sym_function_body, + ACTIONS(8830), 1, + anon_sym_COLON, + STATE(4767), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4393), 20, + ACTIONS(4325), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -547703,6 +548715,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, @@ -547716,13 +548729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4395), 26, - sym__automatic_semicolon, + ACTIONS(4327), 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, @@ -547743,296 +548756,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73282] = 21, - ACTIONS(3314), 1, + [74209] = 21, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(5271), 1, - anon_sym_SEMI, - ACTIONS(7635), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8561), 1, + ACTIONS(8571), 1, anon_sym_by, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8638), 1, + ACTIONS(8662), 1, anon_sym_EQ, - STATE(5638), 1, - sym_property_delegate, - STATE(9312), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1798), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9132), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [73377] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3292), 1, - anon_sym_while, - ACTIONS(8606), 1, - anon_sym_constructor, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(8610), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8869), 1, - anon_sym_COLON, - STATE(8425), 1, - sym_primary_constructor, - STATE(8702), 1, - sym__class_parameters, - STATE(8910), 1, - sym_type_constraints, - STATE(9461), 1, - sym_modifiers, - STATE(9699), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7649), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7645), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7639), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5507), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [73476] = 21, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(5249), 1, + ACTIONS(8664), 1, anon_sym_SEMI, - ACTIONS(7635), 1, - anon_sym_get, - ACTIONS(7637), 1, - anon_sym_set, - ACTIONS(8559), 1, - anon_sym_EQ, - ACTIONS(8561), 1, - anon_sym_by, - ACTIONS(8573), 1, - sym_property_modifier, - STATE(5640), 1, + STATE(5642), 1, sym_property_delegate, - STATE(9312), 1, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 2, + ACTIONS(3298), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9444), 2, + STATE(9428), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [73571] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8606), 1, - anon_sym_constructor, - ACTIONS(8610), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, - anon_sym_LBRACE, - ACTIONS(8871), 1, - anon_sym_COLON, - STATE(8400), 1, - sym_primary_constructor, - STATE(8702), 1, - sym__class_parameters, - STATE(8918), 1, - sym_type_constraints, - STATE(9461), 1, - sym_modifiers, - STATE(9861), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7649), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7645), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7641), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7639), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5507), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -548043,23 +548830,20 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [73670] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - STATE(5110), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [74304] = 5, + ACTIONS(8810), 1, + anon_sym_COMMA, + STATE(5588), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4264), 20, + ACTIONS(4513), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -548076,11 +548860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4266), 26, + ACTIONS(4515), 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, @@ -548103,387 +548888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [73737] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, - sym_property_modifier, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8606), 1, - anon_sym_constructor, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(8610), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8873), 1, - anon_sym_COLON, - STATE(8437), 1, - sym_primary_constructor, - STATE(8702), 1, - sym__class_parameters, - STATE(8798), 1, - sym_type_constraints, - STATE(9461), 1, - sym_modifiers, - STATE(9861), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7643), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(7651), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5728), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(7647), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(7649), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(7645), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(7641), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(7639), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5507), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [73836] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8875), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [73933] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8877), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74030] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8879), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74127] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8881), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74224] = 3, + [74367] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7127), 20, + ACTIONS(7093), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -548504,7 +548913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(7125), 30, + ACTIONS(7091), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -548535,11 +548944,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [74283] = 3, + [74426] = 5, + ACTIONS(4182), 1, + anon_sym_while, + ACTIONS(8832), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3938), 22, + anon_sym_DOT, + anon_sym_as, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_STAR, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(3943), 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, + [74489] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5215), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4087), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4089), 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, + [74556] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 20, + ACTIONS(4866), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -548560,7 +549087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5193), 30, + ACTIONS(4864), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -548591,223 +549118,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [74342] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8883), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74439] = 23, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + [74615] = 21, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8885), 1, - anon_sym_RBRACE, - ACTIONS(8887), 1, + ACTIONS(5215), 1, anon_sym_SEMI, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8270), 1, - sym_modifiers, - STATE(8361), 1, - sym_simple_identifier, - STATE(8679), 1, - sym_enum_entry, - STATE(9376), 1, - sym__enum_entries, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8666), 2, + ACTIONS(7545), 1, anon_sym_get, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74538] = 23, - ACTIONS(3202), 1, - anon_sym_AT, - ACTIONS(3226), 1, + ACTIONS(8569), 1, + anon_sym_EQ, + ACTIONS(8571), 1, + anon_sym_by, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(3298), 1, - anon_sym_while, - ACTIONS(8606), 1, - anon_sym_constructor, - ACTIONS(8610), 1, - anon_sym_LPAREN, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, - anon_sym_LBRACE, - ACTIONS(8889), 1, - anon_sym_COLON, - STATE(8408), 1, - sym_primary_constructor, - STATE(8702), 1, - sym__class_parameters, - STATE(9006), 1, - sym_type_constraints, - STATE(9461), 1, + STATE(5633), 1, + sym_property_delegate, + STATE(9327), 1, sym_modifiers, - STATE(9701), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7643), 2, + ACTIONS(1746), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(7651), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5728), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(7647), 3, + STATE(9392), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(7649), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(7645), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(7641), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(7639), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5507), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -548818,71 +549192,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74637] = 22, - ACTIONS(8656), 1, + [74710] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8891), 1, - anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(8835), 1, + anon_sym_RBRACE, + ACTIONS(8837), 1, + anon_sym_SEMI, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(8229), 1, sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, + STATE(8361), 1, sym_simple_identifier, + STATE(8666), 1, + sym_enum_entry, + STATE(9177), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -548893,71 +549268,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74734] = 22, - ACTIONS(8656), 1, + [74809] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(8893), 1, - anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(8839), 1, + anon_sym_RBRACE, + ACTIONS(8841), 1, + anon_sym_SEMI, + STATE(6361), 1, sym__lexical_identifier, - STATE(7846), 1, + STATE(8229), 1, sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, + STATE(8361), 1, sym_simple_identifier, + STATE(8666), 1, + sym_enum_entry, + STATE(9204), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -548968,86 +549344,67 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [74831] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8895), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, + [74908] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(4870), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(4868), 30, anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [74928] = 3, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [74967] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 20, + ACTIONS(7135), 20, sym__string_start, anon_sym_AT, anon_sym_LBRACK, @@ -549068,7 +549425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_bin_literal, anon_sym_SQUOTE, sym__backtick_identifier, - ACTIONS(5213), 30, + ACTIONS(7133), 30, anon_sym_val, anon_sym_object, anon_sym_fun, @@ -549099,230 +549456,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym__alpha_identifier, - [74987] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, - anon_sym_AT, - ACTIONS(8678), 1, - sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8897), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, + [75026] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(7147), 20, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(7145), 30, anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8684), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5864), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8672), 3, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_for, + anon_sym_while, + anon_sym_do, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8682), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8676), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8668), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5669), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [75084] = 5, - ACTIONS(4220), 1, - anon_sym_while, - ACTIONS(8899), 1, - anon_sym_LPAREN, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [75085] = 7, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5171), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3990), 22, + ACTIONS(4416), 20, anon_sym_DOT, anon_sym_as, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_STAR, anon_sym_in, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3995), 26, + ACTIONS(4418), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_STAR, sym_label, anon_sym_DOT_DOT, anon_sym_QMARK_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, anon_sym_BANG_EQ_EQ, anon_sym_EQ_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_BANGin, anon_sym_BANGis, + anon_sym_PERCENT, anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75147] = 21, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(5251), 1, - anon_sym_SEMI, - ACTIONS(7635), 1, - anon_sym_get, - ACTIONS(7637), 1, - anon_sym_set, - ACTIONS(8561), 1, - anon_sym_by, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8598), 1, - anon_sym_EQ, - STATE(5629), 1, - sym_property_delegate, - STATE(9312), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1810), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9333), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [75242] = 7, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(8492), 1, - anon_sym_EQ, - STATE(5145), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [75152] = 5, + ACTIONS(8843), 1, + anon_sym_COMMA, + STATE(5588), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4175), 20, + ACTIONS(4611), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -549339,11 +549602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4177), 26, + ACTIONS(4613), 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, @@ -549366,74 +549630,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75309] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4981), 20, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, + [75215] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(4979), 30, - anon_sym_val, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_for, - anon_sym_while, - anon_sym_do, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [75368] = 4, - STATE(5533), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5166), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4539), 21, + ACTIONS(4451), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, - anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -549450,15 +549663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4541), 28, + ACTIONS(4453), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -549479,17 +549690,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75429] = 6, - ACTIONS(5494), 1, + [75282] = 21, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5197), 1, + anon_sym_SEMI, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8571), 1, + anon_sym_by, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8651), 1, + anon_sym_EQ, + STATE(5630), 1, + sym_property_delegate, + STATE(9327), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1772), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9240), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75377] = 7, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8902), 1, - anon_sym_COLON, - STATE(4720), 1, - sym_class_body, + ACTIONS(8454), 1, + anon_sym_EQ, + STATE(5168), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4405), 21, + ACTIONS(4097), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -549497,7 +549784,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, @@ -549511,13 +549797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4407), 26, + ACTIONS(4099), 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, @@ -549538,71 +549824,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75494] = 22, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + [75444] = 23, + ACTIONS(3150), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(3174), 1, sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(8904), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, + ACTIONS(3222), 1, + anon_sym_while, + ACTIONS(8511), 1, + anon_sym_constructor, + ACTIONS(8515), 1, + anon_sym_LPAREN, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8601), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(8451), 1, + sym_primary_constructor, + STATE(8771), 1, + sym__class_parameters, + STATE(9033), 1, + sym_type_constraints, + STATE(9999), 1, sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, + STATE(10052), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(7553), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(7561), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5732), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(7557), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(7559), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(7555), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(7551), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(7549), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5532), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -549613,15 +549900,15 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75591] = 5, - ACTIONS(4234), 1, + [75543] = 5, + ACTIONS(4214), 1, anon_sym_while, - ACTIONS(8906), 1, + ACTIONS(8848), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3990), 22, + ACTIONS(3938), 22, anon_sym_DOT, anon_sym_as, anon_sym_EQ, @@ -549644,7 +549931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(3995), 26, + ACTIONS(3943), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -549671,294 +549958,439 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [75654] = 5, - ACTIONS(8855), 1, - anon_sym_COMMA, - STATE(5554), 1, - aux_sym__delegation_specifiers_repeat1, + [75606] = 21, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5219), 1, + anon_sym_SEMI, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8571), 1, + anon_sym_by, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8851), 1, + anon_sym_EQ, + STATE(5638), 1, + sym_property_delegate, + STATE(9327), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4621), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(1756), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9446), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75701] = 23, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(4623), 27, - sym__automatic_semicolon, - sym_safe_nav, + ACTIONS(8529), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(8549), 1, + sym_property_modifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8853), 1, anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(8855), 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, - [75717] = 4, - ACTIONS(8909), 1, - anon_sym_LPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8229), 1, + sym_modifiers, + STATE(8361), 1, + sym_simple_identifier, + STATE(8666), 1, + sym_enum_entry, + STATE(9386), 1, + sym__enum_entries, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4844), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8555), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5861), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4846), 27, - sym__automatic_semicolon, - sym_safe_nav, + ACTIONS(8551), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8553), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8547), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8539), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5674), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75800] = 21, + ACTIONS(3266), 1, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5213), 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, - [75777] = 3, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8571), 1, + anon_sym_by, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8660), 1, + anon_sym_EQ, + STATE(5637), 1, + sym_property_delegate, + STATE(9327), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4124), 47, - anon_sym_AT, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(1740), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9296), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75895] = 21, + ACTIONS(1772), 1, + anon_sym_while, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5259), 1, anon_sym_SEMI, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8688), 1, anon_sym_get, + ACTIONS(8690), 1, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8736), 1, + anon_sym_EQ, + STATE(5651), 1, + sym_property_delegate, + STATE(9211), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10016), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, + anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [75989] = 21, + ACTIONS(1740), 1, + anon_sym_while, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5358), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, sym_property_modifier, + ACTIONS(8682), 1, + anon_sym_EQ, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + STATE(5662), 1, + sym_property_delegate, + STATE(9211), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(10035), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [75835] = 4, - ACTIONS(8911), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4924), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_where, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4926), 28, - sym__automatic_semicolon, - sym_safe_nav, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [76083] = 21, + ACTIONS(3266), 1, 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, - [75895] = 21, - ACTIONS(1798), 1, + ACTIONS(3298), 1, anon_sym_while, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(5400), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8706), 1, + ACTIONS(8684), 1, anon_sym_by, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8774), 1, + ACTIONS(8692), 1, anon_sym_EQ, - STATE(5655), 1, + ACTIONS(8694), 1, + anon_sym_SEMI, + STATE(5649), 1, sym_property_delegate, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9819), 2, + STATE(10086), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -549969,69 +550401,69 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [75989] = 21, - ACTIONS(8656), 1, + [76177] = 21, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8658), 1, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8270), 1, + STATE(8229), 1, sym_modifiers, STATE(8361), 1, sym_simple_identifier, - STATE(8933), 1, + STATE(8958), 1, sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, + ACTIONS(8537), 2, anon_sym_get, anon_sym_set, - ACTIONS(8670), 2, + ACTIONS(8541), 2, anon_sym_sealed, anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8913), 2, + ACTIONS(8857), 2, anon_sym_RBRACE, anon_sym_SEMI, - STATE(5864), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, + ACTIONS(8543), 3, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550042,17 +550474,17 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76083] = 6, - ACTIONS(5764), 1, + [76271] = 6, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(8915), 1, + ACTIONS(8859), 1, anon_sym_COLON, - STATE(5222), 1, + STATE(5092), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4377), 20, + ACTIONS(4353), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -550073,7 +550505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4379), 26, + ACTIONS(4355), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -550100,88 +550532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76147] = 21, - ACTIONS(1810), 1, - anon_sym_while, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(5379), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8704), 1, - anon_sym_EQ, - ACTIONS(8706), 1, - anon_sym_by, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - STATE(5654), 1, - sym_property_delegate, - STATE(9365), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9497), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76241] = 5, - ACTIONS(8911), 1, - anon_sym_else, - ACTIONS(8917), 1, - anon_sym_SEMI, + [76335] = 4, + ACTIONS(8861), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 20, + ACTIONS(4850), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -550190,6 +550547,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, @@ -550202,15 +550560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 27, + ACTIONS(4852), 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, @@ -550230,13 +550588,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76303] = 4, - ACTIONS(8919), 1, + [76395] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4093), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4095), 47, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [76453] = 4, + ACTIONS(8863), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 21, + ACTIONS(4856), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -550245,7 +550658,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, @@ -550258,13 +550670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4854), 27, + ACTIONS(4858), 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, @@ -550286,86 +550699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76363] = 21, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(3316), 1, - anon_sym_while, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8706), 1, - anon_sym_by, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - ACTIONS(8721), 1, - anon_sym_EQ, - ACTIONS(8723), 1, + [76513] = 5, + ACTIONS(8863), 1, + anon_sym_else, + ACTIONS(8865), 1, anon_sym_SEMI, - STATE(5657), 1, - sym_property_delegate, - STATE(9365), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9772), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [76457] = 4, - ACTIONS(8921), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4228), 21, + ACTIONS(4856), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -550374,7 +550716,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, @@ -550387,15 +550728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4226), 27, + ACTIONS(4858), 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, @@ -550415,13 +550756,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76517] = 4, - ACTIONS(8923), 1, + [76575] = 4, + ACTIONS(8867), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 21, + ACTIONS(4840), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -550443,7 +550784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4240), 27, + ACTIONS(4842), 27, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -550471,62 +550812,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76577] = 14, - ACTIONS(8925), 1, + [76635] = 21, + ACTIONS(1746), 1, + anon_sym_while, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8940), 1, + ACTIONS(5396), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, sym_property_modifier, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + ACTIONS(8716), 1, + anon_sym_EQ, + STATE(5647), 1, + sym_property_delegate, + STATE(9211), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8738), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8934), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8949), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8943), 3, + STATE(9939), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8946), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8937), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8931), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8928), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8736), 8, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - STATE(5608), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550537,69 +550885,69 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76657] = 21, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + [76729] = 21, + ACTIONS(1756), 1, + anon_sym_while, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(5363), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8270), 1, + ACTIONS(8684), 1, + anon_sym_by, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + ACTIONS(8869), 1, + anon_sym_EQ, + STATE(5660), 1, + sym_property_delegate, + STATE(9211), 1, sym_modifiers, - STATE(8361), 1, - sym_simple_identifier, - STATE(8933), 1, - sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - ACTIONS(8952), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - STATE(5864), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, + STATE(9908), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550610,69 +550958,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76751] = 21, - ACTIONS(1818), 1, - anon_sym_while, - ACTIONS(3314), 1, + [76823] = 14, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(5377), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, + ACTIONS(8871), 1, sym_property_modifier, - ACTIONS(8706), 1, - anon_sym_by, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - ACTIONS(8792), 1, - anon_sym_EQ, - STATE(5661), 1, - sym_property_delegate, - STATE(9365), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + ACTIONS(8746), 2, + anon_sym_val, + anon_sym_var, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9808), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + ACTIONS(8744), 8, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5614), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550683,19 +551024,72 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [76845] = 5, - ACTIONS(8954), 1, + [76903] = 4, + ACTIONS(8873), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4190), 21, + anon_sym_DOT, + anon_sym_as, anon_sym_LT, - STATE(5628), 1, - sym_type_arguments, + anon_sym_GT, + anon_sym_where, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4188), 27, + sym__automatic_semicolon, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [76963] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4169), 2, + ACTIONS(3938), 2, anon_sym_val, anon_sym_var, - ACTIONS(4171), 45, + ACTIONS(3943), 47, anon_sym_AT, + anon_sym_COLON, anon_sym_DOT, anon_sym_typealias, anon_sym_EQ, @@ -550705,6 +551099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, + anon_sym_LT, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -550740,21 +551135,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [76907] = 6, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(8956), 1, - anon_sym_COLON, - STATE(5227), 1, - sym_class_body, + [77021] = 4, + ACTIONS(8875), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4405), 20, + ACTIONS(4222), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, anon_sym_GT, + anon_sym_where, anon_sym_get, anon_sym_set, anon_sym_in, @@ -550771,13 +551163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4407), 26, + ACTIONS(4220), 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, @@ -550798,69 +551191,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [76971] = 21, - ACTIONS(1792), 1, - anon_sym_while, - ACTIONS(3314), 1, + [77081] = 21, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(5445), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, + ACTIONS(8549), 1, sym_property_modifier, - ACTIONS(8706), 1, - anon_sym_by, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - ACTIONS(8958), 1, - anon_sym_EQ, - STATE(5662), 1, - sym_property_delegate, - STATE(9365), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8229), 1, sym_modifiers, + STATE(8361), 1, + sym_simple_identifier, + STATE(8958), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + ACTIONS(8877), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - STATE(9554), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550871,69 +551264,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77065] = 21, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + [77175] = 14, + ACTIONS(8879), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(8894), 1, sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7846), 1, - sym_modifiers, - STATE(9368), 1, - sym_class_parameter, - STATE(9491), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8664), 2, + ACTIONS(8770), 2, anon_sym_val, anon_sym_var, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8888), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8903), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, + ACTIONS(8897), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8900), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8891), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8885), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8882), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + ACTIONS(8768), 8, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + STATE(5614), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -550944,16 +551330,77 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [77159] = 3, + [77255] = 6, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(8906), 1, + anon_sym_COLON, + STATE(5195), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4325), 20, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4327), 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, + [77319] = 5, + ACTIONS(8908), 1, + anon_sym_LT, + STATE(5632), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3990), 2, + ACTIONS(4117), 2, anon_sym_val, anon_sym_var, - ACTIONS(3995), 47, + ACTIONS(4119), 45, anon_sym_AT, - anon_sym_COLON, anon_sym_DOT, anon_sym_typealias, anon_sym_EQ, @@ -550963,7 +551410,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, - anon_sym_LT, anon_sym_where, anon_sym_object, anon_sym_fun, @@ -550999,79 +551445,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77217] = 14, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(8960), 1, - sym_property_modifier, + [77381] = 4, + ACTIONS(8910), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - ACTIONS(8778), 2, - anon_sym_val, - anon_sym_var, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(4190), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - ACTIONS(8776), 8, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - STATE(5608), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [77297] = 4, - ACTIONS(8962), 1, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4188), 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, + [77440] = 4, + ACTIONS(8912), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4844), 21, + ACTIONS(4222), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -551093,7 +551528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4846), 26, + ACTIONS(4220), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -551120,18 +551555,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77356] = 5, - ACTIONS(8964), 1, + [77499] = 5, + ACTIONS(8914), 1, anon_sym_DOT, - STATE(5618), 1, + STATE(5619), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4187), 2, + ACTIONS(4129), 2, anon_sym_val, anon_sym_var, - ACTIONS(4189), 44, + ACTIONS(4131), 44, anon_sym_AT, anon_sym_typealias, anon_sym_EQ, @@ -551176,13 +551611,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77417] = 4, - ACTIONS(8967), 1, + [77560] = 5, + ACTIONS(8427), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4220), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3943), 19, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3938), 26, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [77621] = 5, + ACTIONS(8392), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4228), 21, + ACTIONS(4188), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(3943), 19, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3938), 26, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [77682] = 4, + ACTIONS(8917), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4856), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -551191,7 +551738,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, @@ -551204,12 +551750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4226), 26, + ACTIONS(4858), 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, @@ -551231,18 +551778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77476] = 5, - ACTIONS(8969), 1, + [77741] = 5, + ACTIONS(8919), 1, anon_sym_DOT, - STATE(5618), 1, + STATE(5619), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4143), 2, + ACTIONS(4070), 2, anon_sym_val, anon_sym_var, - ACTIONS(4145), 44, + ACTIONS(4072), 44, anon_sym_AT, anon_sym_typealias, anon_sym_EQ, @@ -551287,13 +551834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77537] = 4, - ACTIONS(8971), 1, - anon_sym_LPAREN, + [77802] = 5, + ACTIONS(8917), 1, + anon_sym_else, + ACTIONS(8921), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 21, + ACTIONS(4856), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -551302,7 +551851,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, @@ -551315,14 +551863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4854), 26, + ACTIONS(4858), 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, @@ -551342,13 +551890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77596] = 4, - ACTIONS(8973), 1, + [77863] = 4, + ACTIONS(8923), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 21, + ACTIONS(4850), 21, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -551370,7 +551918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4240), 26, + ACTIONS(4852), 26, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -551397,69 +551945,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77655] = 5, - ACTIONS(8468), 1, + [77922] = 4, + ACTIONS(8925), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4240), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3995), 19, - sym__string_start, + ACTIONS(4840), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_while, + anon_sym_else, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4842), 26, + sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_COLON_COLON, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, + anon_sym_BANG_BANG, sym__backtick_identifier, - ACTIONS(3990), 26, - anon_sym_object, - anon_sym_fun, + [77981] = 18, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(7545), 1, anon_sym_get, + ACTIONS(7547), 1, 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, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8664), 1, + anon_sym_SEMI, + STATE(9327), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3298), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9428), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78067] = 4, + ACTIONS(8927), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4856), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, sym__alpha_identifier, - [77716] = 4, - ACTIONS(8975), 1, - anon_sym_else, + ACTIONS(4858), 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, + [78125] = 4, + ACTIONS(8929), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 20, + ACTIONS(4190), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -551467,7 +552136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -551480,14 +552149,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 27, + ACTIONS(4188), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_STAR, sym_label, @@ -551508,15 +552176,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77775] = 5, - ACTIONS(8975), 1, - anon_sym_else, - ACTIONS(8977), 1, + [78183] = 18, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5215), 1, anon_sym_SEMI, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8583), 1, + sym_property_modifier, + STATE(9327), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1746), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, + anon_sym_override, + anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9392), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, + anon_sym_suspend, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78269] = 4, + ACTIONS(8931), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 20, + ACTIONS(4222), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -551524,7 +552258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_while, + anon_sym_else, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -551537,14 +552271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 26, + ACTIONS(4220), 26, + sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_STAR, sym_label, anon_sym_DOT_DOT, @@ -551564,70 +552298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [77836] = 5, - ACTIONS(8471), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4226), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(3995), 19, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3990), 26, - anon_sym_object, - anon_sym_fun, - anon_sym_get, - anon_sym_set, - anon_sym_this, - anon_sym_super, - sym_label, - anon_sym_null, - anon_sym_if, - anon_sym_when, - anon_sym_try, - anon_sym_throw, - anon_sym_return, - anon_sym_continue, - anon_sym_break, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [77897] = 3, + [78327] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 2, + ACTIONS(4234), 2, anon_sym_val, anon_sym_var, - ACTIONS(4258), 45, + ACTIONS(4236), 45, anon_sym_AT, anon_sym_DOT, anon_sym_typealias, @@ -551673,117 +552351,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [77953] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4305), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4307), 45, + [78383] = 18, + ACTIONS(3266), 1, anon_sym_AT, - anon_sym_DOT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, + ACTIONS(5219), 1, anon_sym_SEMI, + ACTIONS(7545), 1, anon_sym_get, + ACTIONS(7547), 1, anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + ACTIONS(8583), 1, + sym_property_modifier, + STATE(9327), 1, + sym_modifiers, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1756), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9446), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + ACTIONS(8587), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 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, + STATE(5609), 10, + sym__modifier, + sym_class_modifier, + sym_member_modifier, + sym_visibility_modifier, + sym_function_modifier, + sym_inheritance_modifier, + sym_parameter_modifier, + sym_platform_modifier, + sym_annotation, + aux_sym_modifiers_repeat1, + [78469] = 5, + ACTIONS(4222), 1, + anon_sym_while, + ACTIONS(8848), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3943), 19, + sym__string_start, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3938), 26, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - [78009] = 18, - ACTIONS(3314), 1, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [78529] = 5, + ACTIONS(4190), 1, + anon_sym_while, + ACTIONS(8832), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3943), 19, + sym__string_start, anon_sym_AT, - ACTIONS(5271), 1, - anon_sym_SEMI, - ACTIONS(7635), 1, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG, + anon_sym_return_AT, + anon_sym_continue_AT, + anon_sym_break_AT, + anon_sym_this_AT, + anon_sym_super_AT, + sym_real_literal, + sym_hex_literal, + sym_bin_literal, + anon_sym_SQUOTE, + sym__backtick_identifier, + ACTIONS(3938), 26, + anon_sym_object, + anon_sym_fun, anon_sym_get, - ACTIONS(7637), 1, anon_sym_set, - ACTIONS(8573), 1, + anon_sym_this, + anon_sym_super, + sym_label, + anon_sym_null, + anon_sym_if, + anon_sym_when, + anon_sym_try, + anon_sym_throw, + anon_sym_return, + anon_sym_continue, + anon_sym_break, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym_integer_literal, + anon_sym_true, + anon_sym_false, + sym__alpha_identifier, + [78589] = 20, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8529), 1, + anon_sym_AT, + ACTIONS(8549), 1, sym_property_modifier, - STATE(9312), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8229), 1, sym_modifiers, + STATE(8361), 1, + sym_simple_identifier, + STATE(8958), 1, + sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1798), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8537), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8555), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - STATE(9132), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(8543), 3, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5674), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -551794,64 +552599,64 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78095] = 18, - ACTIONS(3314), 1, + [78679] = 18, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(5249), 1, + ACTIONS(5197), 1, anon_sym_SEMI, - ACTIONS(7635), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - STATE(9312), 1, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 2, + ACTIONS(1772), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9444), 2, + STATE(9240), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -551862,117 +552667,64 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78181] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4309), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4311), 45, - anon_sym_AT, - anon_sym_DOT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [78237] = 18, - ACTIONS(3314), 1, + [78765] = 18, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(5217), 1, + ACTIONS(5223), 1, anon_sym_SEMI, - ACTIONS(7635), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - STATE(9312), 1, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1736), 2, + ACTIONS(1684), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9251), 2, + STATE(9379), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -551983,68 +552735,13 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78323] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4187), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(4189), 45, - anon_sym_AT, - anon_sym_DOT, - anon_sym_typealias, - anon_sym_EQ, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, + [78851] = 4, + ACTIONS(8933), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_object, - anon_sym_fun, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [78379] = 5, - ACTIONS(8979), 1, - anon_sym_SEMI, - ACTIONS(8981), 1, - anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4924), 19, + ACTIONS(4840), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -552052,59 +552749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_get, anon_sym_set, anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4926), 26, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON_COLON, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [78439] = 4, - ACTIONS(8981), 1, anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4924), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, anon_sym_BANG_EQ, anon_sym_EQ_EQ, anon_sym_is, @@ -552117,14 +552762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4926), 27, + ACTIONS(4842), 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, @@ -552145,190 +552789,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [78497] = 4, - ACTIONS(8983), 1, - anon_sym_LPAREN, + [78909] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4242), 20, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_else, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4240), 26, - sym__automatic_semicolon, - sym_safe_nav, + ACTIONS(4148), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4150), 45, 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, - [78555] = 5, - ACTIONS(4228), 1, - anon_sym_while, - ACTIONS(8899), 1, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3995), 19, - sym__string_start, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3990), 26, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, anon_sym_object, anon_sym_fun, + anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_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_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [78615] = 18, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(5227), 1, - anon_sym_SEMI, - ACTIONS(7635), 1, - anon_sym_get, - ACTIONS(7637), 1, - anon_sym_set, - ACTIONS(8573), 1, - sym_property_modifier, - STATE(9312), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9442), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [78701] = 4, - ACTIONS(8985), 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, + [78965] = 4, + ACTIONS(8935), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4228), 20, + ACTIONS(4850), 20, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -552349,7 +552869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4226), 26, + ACTIONS(4852), 26, sym__automatic_semicolon, sym_safe_nav, anon_sym_AT, @@ -552376,64 +552896,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [78759] = 18, - ACTIONS(3314), 1, + [79023] = 18, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(5251), 1, + ACTIONS(5213), 1, anon_sym_SEMI, - ACTIONS(7635), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - STATE(9312), 1, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, + ACTIONS(1740), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9333), 2, + STATE(9296), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552444,122 +552964,121 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [78845] = 5, - ACTIONS(4242), 1, - anon_sym_while, - ACTIONS(8906), 1, - anon_sym_LPAREN, + [79109] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 19, - sym__string_start, + ACTIONS(4244), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4246), 45, anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG, - anon_sym_return_AT, - anon_sym_continue_AT, - anon_sym_break_AT, - anon_sym_this_AT, - anon_sym_super_AT, - sym_real_literal, - sym_hex_literal, - sym_bin_literal, - anon_sym_SQUOTE, - sym__backtick_identifier, - ACTIONS(3990), 26, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, anon_sym_object, anon_sym_fun, + anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_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_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym_integer_literal, - anon_sym_true, - anon_sym_false, - sym__alpha_identifier, - [78905] = 4, - ACTIONS(8987), 1, - anon_sym_LPAREN, + [79165] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4844), 20, + ACTIONS(4129), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4131), 45, + anon_sym_AT, anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, + anon_sym_typealias, + anon_sym_EQ, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_object, + anon_sym_fun, + anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_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_AMP, + sym__quest, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4846), 26, - sym__automatic_semicolon, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + [79221] = 5, + ACTIONS(8927), 1, + anon_sym_else, + ACTIONS(8937), 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, - [78963] = 4, - ACTIONS(8989), 1, - anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4852), 20, + ACTIONS(4856), 19, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -552567,7 +553086,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, @@ -552580,14 +553098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4854), 26, + ACTIONS(4858), 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, @@ -552607,66 +553125,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [79021] = 20, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8658), 1, + [79281] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8678), 1, + ACTIONS(7545), 1, + anon_sym_get, + ACTIONS(7547), 1, + anon_sym_set, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8270), 1, + STATE(9327), 1, sym_modifiers, - STATE(8361), 1, - sym_simple_identifier, - STATE(8933), 1, - sym_enum_entry, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(3298), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8684), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8672), 3, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8680), 3, + STATE(9428), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5669), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552677,64 +553191,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79111] = 18, - ACTIONS(3314), 1, + [79364] = 18, + ACTIONS(1756), 1, + anon_sym_while, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(7635), 1, + ACTIONS(5363), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8585), 1, - anon_sym_SEMI, - STATE(9312), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3316), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9384), 2, + STATE(9908), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552745,62 +553258,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79197] = 17, - ACTIONS(3314), 1, + [79449] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(7635), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - STATE(9312), 1, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3422), 2, + ACTIONS(3370), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9165), 2, + STATE(9405), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552811,63 +553324,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79280] = 18, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(3316), 1, + [79532] = 18, + ACTIONS(1740), 1, anon_sym_while, - ACTIONS(8573), 1, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(5358), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8723), 1, - anon_sym_SEMI, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9772), 2, + STATE(10035), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552878,62 +553391,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79365] = 17, - ACTIONS(3314), 1, + [79617] = 18, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(7635), 1, + ACTIONS(3298), 1, + anon_sym_while, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8573), 1, - sym_property_modifier, - STATE(9312), 1, + ACTIONS(8694), 1, + anon_sym_SEMI, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1736), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9251), 2, + STATE(10086), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -552944,171 +553458,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79448] = 6, - ACTIONS(8250), 1, - anon_sym_COLON_COLON, - ACTIONS(8458), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4944), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4946), 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, - [79509] = 5, - ACTIONS(8250), 1, - anon_sym_COLON_COLON, - ACTIONS(8991), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4944), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - anon_sym_get, - anon_sym_set, - anon_sym_in, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_is, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - ACTIONS(4946), 25, - sym_safe_nav, - anon_sym_AT, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - sym_label, - anon_sym_DOT_DOT, - anon_sym_QMARK_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_BANGin, - anon_sym_BANGis, - anon_sym_PERCENT, - anon_sym_as_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - sym__backtick_identifier, - [79568] = 17, - ACTIONS(3314), 1, + [79702] = 18, + ACTIONS(1746), 1, + anon_sym_while, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(7635), 1, + ACTIONS(5396), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8573), 1, - sym_property_modifier, - STATE(9312), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9442), 2, + STATE(9939), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553119,62 +553525,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79651] = 17, - ACTIONS(3314), 1, + [79787] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(7635), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - STATE(9312), 1, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3316), 2, + ACTIONS(1740), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9384), 2, + STATE(9296), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553185,18 +553591,18 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79734] = 5, - ACTIONS(8969), 1, + [79870] = 5, + ACTIONS(8919), 1, anon_sym_DOT, - STATE(5620), 1, + STATE(5623), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 2, + ACTIONS(4103), 2, anon_sym_val, anon_sym_var, - ACTIONS(4164), 42, + ACTIONS(4105), 42, anon_sym_AT, anon_sym_typealias, anon_sym_EQ, @@ -553239,63 +553645,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [79793] = 18, - ACTIONS(1798), 1, - anon_sym_while, - ACTIONS(3314), 1, + [79929] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(5400), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(7547), 1, anon_sym_set, - STATE(9365), 1, + ACTIONS(8583), 1, + sym_property_modifier, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(1684), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9819), 2, + STATE(9379), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553306,82 +553711,67 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [79878] = 18, - ACTIONS(1792), 1, - anon_sym_while, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(5445), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - STATE(9365), 1, - sym_modifiers, + [80012] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(4093), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4095), 43, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_where, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9554), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [79963] = 5, - ACTIONS(8250), 1, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [80067] = 5, + ACTIONS(8200), 1, anon_sym_COLON_COLON, - ACTIONS(8993), 1, + ACTIONS(8939), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4944), 19, + ACTIONS(4992), 19, anon_sym_DOT, anon_sym_as, anon_sym_LT, @@ -553401,7 +553791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - ACTIONS(4946), 25, + ACTIONS(4994), 25, sym_safe_nav, anon_sym_AT, anon_sym_LBRACK, @@ -553427,82 +553817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BANG_BANG, sym__backtick_identifier, - [80022] = 18, - ACTIONS(1818), 1, - anon_sym_while, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(5377), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - STATE(9365), 1, - sym_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8569), 2, - anon_sym_override, - anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9808), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - ACTIONS(8577), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(8571), 4, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, - anon_sym_suspend, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - STATE(5616), 10, - sym__modifier, - sym_class_modifier, - sym_member_modifier, - sym_visibility_modifier, - sym_function_modifier, - sym_inheritance_modifier, - sym_parameter_modifier, - sym_platform_modifier, - sym_annotation, - aux_sym_modifiers_repeat1, - [80107] = 3, + [80126] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4122), 3, + ACTIONS(3938), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4124), 43, + ACTIONS(3943), 43, anon_sym_AT, anon_sym_COLON, anon_sym_DOT, @@ -553546,62 +553869,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80162] = 17, - ACTIONS(3314), 1, + [80181] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(7635), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - STATE(9312), 1, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 2, + ACTIONS(1766), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9444), 2, + STATE(9418), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553612,62 +553935,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80245] = 17, - ACTIONS(3314), 1, + [80264] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(7635), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - STATE(9312), 1, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1798), 2, + ACTIONS(1756), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9132), 2, + STATE(9446), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553678,63 +554001,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80328] = 18, - ACTIONS(1810), 1, + [80347] = 18, + ACTIONS(1684), 1, anon_sym_while, - ACTIONS(3314), 1, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(5379), 1, + ACTIONS(5319), 1, anon_sym_SEMI, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9497), 2, + STATE(9888), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553745,63 +554068,62 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80413] = 18, - ACTIONS(1736), 1, - anon_sym_while, - ACTIONS(3314), 1, + [80432] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(5336), 1, - anon_sym_SEMI, - ACTIONS(8573), 1, - sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(7547), 1, anon_sym_set, - STATE(9365), 1, + ACTIONS(8583), 1, + sym_property_modifier, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(1772), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9718), 2, + STATE(9240), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553812,62 +554134,63 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80498] = 17, - ACTIONS(3314), 1, + [80515] = 18, + ACTIONS(1772), 1, + anon_sym_while, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(7635), 1, + ACTIONS(5259), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, + sym_property_modifier, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(8690), 1, anon_sym_set, - ACTIONS(8573), 1, - sym_property_modifier, - STATE(9312), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9333), 2, + STATE(10016), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553878,62 +554201,116 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80581] = 17, - ACTIONS(3314), 1, + [80600] = 5, + ACTIONS(8200), 1, + anon_sym_COLON_COLON, + ACTIONS(8941), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4992), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + ACTIONS(4994), 25, + sym_safe_nav, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + sym_label, + anon_sym_DOT_DOT, + anon_sym_QMARK_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_BANGin, + anon_sym_BANGis, + anon_sym_PERCENT, + anon_sym_as_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + sym__backtick_identifier, + [80659] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(7635), 1, + ACTIONS(7545), 1, anon_sym_get, - ACTIONS(7637), 1, + ACTIONS(7547), 1, anon_sym_set, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - STATE(9312), 1, + STATE(9327), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1824), 2, + ACTIONS(1746), 2, sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9224), 2, + STATE(9392), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -553944,113 +554321,116 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80664] = 3, + [80742] = 6, + ACTIONS(8200), 1, + anon_sym_COLON_COLON, + ACTIONS(8403), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3990), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(3995), 43, - anon_sym_AT, - anon_sym_COLON, + ACTIONS(4138), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(4992), 19, anon_sym_DOT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_as, anon_sym_LT, - anon_sym_where, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_GT, anon_sym_get, anon_sym_set, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + anon_sym_in, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_is, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [80719] = 17, - ACTIONS(1810), 1, + sym__alpha_identifier, + ACTIONS(4994), 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, + [80803] = 17, + ACTIONS(1766), 1, anon_sym_while, - ACTIONS(3314), 1, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9497), 2, + STATE(9875), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554061,61 +554441,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80801] = 17, - ACTIONS(1792), 1, + [80885] = 17, + ACTIONS(1756), 1, anon_sym_while, - ACTIONS(3314), 1, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9554), 2, + STATE(9908), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554126,61 +554506,58 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80883] = 17, - ACTIONS(1818), 1, - anon_sym_while, - ACTIONS(3314), 1, + [80967] = 14, + ACTIONS(8768), 1, + sym__backtick_identifier, + ACTIONS(8943), 1, anon_sym_AT, - ACTIONS(8573), 1, + ACTIONS(8958), 1, sym_property_modifier, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - STATE(9365), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8952), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8967), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - STATE(9808), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(8961), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8964), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8955), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8770), 5, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + sym__alpha_identifier, + ACTIONS(8949), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8946), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5668), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554191,57 +554568,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [80965] = 13, - ACTIONS(8658), 1, + [81043] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8776), 1, - sym__backtick_identifier, - ACTIONS(8995), 1, + ACTIONS(3298), 1, + anon_sym_while, + ACTIONS(8583), 1, sym_property_modifier, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + STATE(9211), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8670), 2, - anon_sym_sealed, - anon_sym_annotation, - ACTIONS(8674), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - STATE(5864), 2, + ACTIONS(8589), 2, + anon_sym_expect, + anon_sym_actual, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8680), 3, + STATE(10086), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8682), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8676), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8668), 6, + ACTIONS(8577), 5, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - ACTIONS(8778), 10, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - STATE(5675), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554252,61 +554633,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81039] = 17, - ACTIONS(3314), 1, - anon_sym_AT, - ACTIONS(3316), 1, + [81125] = 17, + ACTIONS(1746), 1, anon_sym_while, - ACTIONS(8573), 1, + ACTIONS(3266), 1, + anon_sym_AT, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9772), 2, + STATE(9939), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554317,61 +554698,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81121] = 17, - ACTIONS(1736), 1, + [81207] = 17, + ACTIONS(1772), 1, anon_sym_while, - ACTIONS(3314), 1, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9718), 2, + STATE(10016), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554382,61 +554763,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81203] = 17, - ACTIONS(1798), 1, - anon_sym_while, - ACTIONS(3314), 1, + [81289] = 17, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8573), 1, + ACTIONS(3370), 1, + anon_sym_while, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9819), 2, + STATE(9869), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554447,61 +554828,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81285] = 17, - ACTIONS(1824), 1, + [81371] = 17, + ACTIONS(1684), 1, anon_sym_while, - ACTIONS(3314), 1, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(8573), 1, + ACTIONS(8583), 1, sym_property_modifier, - ACTIONS(8710), 1, + ACTIONS(8688), 1, anon_sym_get, - ACTIONS(8712), 1, + ACTIONS(8690), 1, anon_sym_set, - STATE(9365), 1, + STATE(9211), 1, sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5778), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - STATE(9913), 2, + STATE(9888), 2, sym_getter, sym_setter, - ACTIONS(8575), 3, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554512,61 +554893,57 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81367] = 17, - ACTIONS(3314), 1, + [81453] = 13, + ACTIONS(8529), 1, anon_sym_AT, - ACTIONS(3422), 1, - anon_sym_while, - ACTIONS(8573), 1, + ACTIONS(8744), 1, + sym__backtick_identifier, + ACTIONS(8970), 1, sym_property_modifier, - ACTIONS(8710), 1, - anon_sym_get, - ACTIONS(8712), 1, - anon_sym_set, - STATE(9365), 1, - sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8569), 2, + ACTIONS(8541), 2, + anon_sym_sealed, + anon_sym_annotation, + ACTIONS(8545), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(8579), 2, - anon_sym_expect, - anon_sym_actual, - STATE(5778), 2, + STATE(5861), 2, sym__single_annotation, sym__multi_annotation, - STATE(9799), 2, - sym_getter, - sym_setter, - ACTIONS(8575), 3, + ACTIONS(8551), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(8577), 3, + ACTIONS(8553), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(8571), 4, + ACTIONS(8547), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8567), 5, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - ACTIONS(8565), 6, + ACTIONS(8539), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5616), 10, + ACTIONS(8746), 10, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + STATE(5668), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554577,58 +554954,61 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81449] = 14, - ACTIONS(8736), 1, - sym__backtick_identifier, - ACTIONS(8997), 1, + [81527] = 17, + ACTIONS(1740), 1, + anon_sym_while, + ACTIONS(3266), 1, anon_sym_AT, - ACTIONS(9012), 1, + ACTIONS(8583), 1, sym_property_modifier, + ACTIONS(8688), 1, + anon_sym_get, + ACTIONS(8690), 1, + anon_sym_set, + STATE(9211), 1, + sym_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9006), 2, + ACTIONS(8579), 2, anon_sym_override, anon_sym_lateinit, - ACTIONS(9021), 2, + ACTIONS(8589), 2, anon_sym_expect, anon_sym_actual, - STATE(5864), 2, + STATE(5774), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9015), 3, + STATE(10035), 2, + sym_getter, + sym_setter, + ACTIONS(8585), 3, anon_sym_abstract, anon_sym_final, anon_sym_open, - ACTIONS(9018), 3, + ACTIONS(8587), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - ACTIONS(9009), 4, + ACTIONS(8581), 4, anon_sym_public, anon_sym_private, anon_sym_internal, anon_sym_protected, - ACTIONS(8738), 5, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, - sym__alpha_identifier, - ACTIONS(9003), 5, + ACTIONS(8577), 5, anon_sym_sealed, anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - ACTIONS(9000), 6, + ACTIONS(8575), 6, anon_sym_suspend, anon_sym_tailrec, anon_sym_operator, anon_sym_infix, anon_sym_inline, anon_sym_external, - STATE(5675), 10, + STATE(5609), 10, sym__modifier, sym_class_modifier, sym_member_modifier, @@ -554639,34 +555019,28 @@ static const uint16_t ts_small_parse_table[] = { sym_platform_modifier, sym_annotation, aux_sym_modifiers_repeat1, - [81525] = 8, - ACTIONS(4169), 1, - sym__alpha_identifier, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9024), 1, - anon_sym_COLON, - STATE(6571), 1, - sym_type_arguments, + [81609] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 4, + ACTIONS(3943), 9, + anon_sym_AT, + anon_sym_COLON, anon_sym_DOT, + anon_sym_EQ, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(4183), 5, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(4181), 30, + ACTIONS(3938), 34, + anon_sym_val, + anon_sym_var, anon_sym_by, anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -554693,19 +555067,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81587] = 5, - ACTIONS(9026), 1, + sym__alpha_identifier, + [81661] = 5, + ACTIONS(8972), 1, anon_sym_LT, - STATE(5708), 1, + STATE(5709), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4169), 3, + ACTIONS(4117), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4171), 38, + ACTIONS(4119), 38, anon_sym_AT, anon_sym_DOT, anon_sym_typealias, @@ -554744,30 +555119,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81643] = 4, - ACTIONS(9028), 1, - anon_sym_LT, - STATE(5695), 1, - sym_type_arguments, + [81717] = 4, + ACTIONS(8974), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 41, - sym__automatic_semicolon, + ACTIONS(3938), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(3943), 39, anon_sym_AT, anon_sym_DOT, - anon_sym_EQ, - anon_sym_LBRACE, - 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_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -554785,7 +555161,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, @@ -554794,28 +555169,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81697] = 3, + [81771] = 8, + ACTIONS(4117), 1, + sym__alpha_identifier, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(8976), 1, + anon_sym_COLON, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 9, - anon_sym_AT, - anon_sym_COLON, + ACTIONS(4119), 4, anon_sym_DOT, - anon_sym_EQ, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(4122), 34, - anon_sym_val, - anon_sym_var, + ACTIONS(4138), 5, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(4136), 30, anon_sym_by, anon_sym_where, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -554842,12 +555223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [81749] = 3, + [81833] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 9, + ACTIONS(4095), 9, anon_sym_AT, anon_sym_COLON, anon_sym_DOT, @@ -554857,7 +555237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(3990), 34, + ACTIONS(4093), 34, anon_sym_val, anon_sym_var, anon_sym_by, @@ -554892,31 +555272,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [81801] = 4, - ACTIONS(9030), 1, - anon_sym_COLON, + [81885] = 4, + ACTIONS(8978), 1, + anon_sym_LT, + STATE(5701), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3990), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(3995), 39, + ACTIONS(4119), 41, + sym__automatic_semicolon, anon_sym_AT, anon_sym_DOT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -554934,6 +555313,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, @@ -554942,33 +555322,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81855] = 8, - ACTIONS(4169), 1, - sym__alpha_identifier, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9032), 1, - anon_sym_COLON, - STATE(6571), 1, - sym_type_arguments, + [81939] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 3, + ACTIONS(3943), 11, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_EQ, - anon_sym_SEMI, - ACTIONS(4171), 4, + anon_sym_COLON, anon_sym_DOT, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(4181), 31, + ACTIONS(3938), 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, @@ -554995,11 +555369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [81916] = 3, + sym__alpha_identifier, + [81990] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 11, + ACTIONS(4095), 11, sym__automatic_semicolon, anon_sym_AT, anon_sym_COLON, @@ -555011,7 +555386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, sym__quest, sym__backtick_identifier, - ACTIONS(4122), 31, + ACTIONS(4093), 31, anon_sym_by, anon_sym_where, anon_sym_get, @@ -555043,13 +555418,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [81967] = 3, - ACTIONS(4122), 1, + [82041] = 5, + ACTIONS(8980), 1, + anon_sym_DOT, + STATE(5687), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4103), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4105), 37, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82096] = 3, + ACTIONS(3938), 1, sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 41, + ACTIONS(3943), 41, sym__automatic_semicolon, anon_sym_AT, anon_sym_COLON, @@ -555091,27 +555516,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82018] = 3, + [82147] = 5, + ACTIONS(8982), 1, + anon_sym_DOT, + STATE(5686), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 11, - sym__automatic_semicolon, + ACTIONS(4129), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4131), 37, anon_sym_AT, - anon_sym_COLON, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82202] = 5, + ACTIONS(8980), 1, anon_sym_DOT, - anon_sym_EQ, - anon_sym_RBRACE, + STATE(5686), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4070), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4072), 37, + anon_sym_AT, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, anon_sym_LPAREN, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82257] = 8, + ACTIONS(4117), 1, + sym__alpha_identifier, + ACTIONS(6454), 1, anon_sym_LT, + ACTIONS(8985), 1, + anon_sym_COLON, + STATE(6547), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4138), 3, + anon_sym_AT, + anon_sym_EQ, anon_sym_SEMI, + ACTIONS(4119), 4, + anon_sym_DOT, + anon_sym_LPAREN, sym__quest, sym__backtick_identifier, - ACTIONS(3990), 31, + ACTIONS(4136), 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, @@ -555138,28 +555669,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [82069] = 5, - ACTIONS(9034), 1, + [82318] = 3, + ACTIONS(4093), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4095), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, anon_sym_DOT, - STATE(5688), 1, - aux_sym_user_type_repeat1, + anon_sym_as, + anon_sym_EQ, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [82369] = 4, + ACTIONS(8974), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4143), 3, + ACTIONS(3938), 2, anon_sym_val, anon_sym_var, - sym_property_modifier, - ACTIONS(4145), 37, + ACTIONS(3943), 38, anon_sym_AT, + anon_sym_DOT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, - anon_sym_constructor, anon_sym_LPAREN, - anon_sym_companion, + anon_sym_LT, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -555181,6 +555756,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, @@ -555189,20 +555765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82124] = 5, - ACTIONS(9034), 1, - anon_sym_DOT, - STATE(5686), 1, - aux_sym_user_type_repeat1, + [82421] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4162), 3, + ACTIONS(4129), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4164), 37, + ACTIONS(4131), 38, anon_sym_AT, + anon_sym_DOT, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -555239,20 +555812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82179] = 5, - ACTIONS(9036), 1, - anon_sym_DOT, - STATE(5688), 1, - aux_sym_user_type_repeat1, + [82471] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4187), 3, + ACTIONS(4148), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4189), 37, + ACTIONS(4150), 38, anon_sym_AT, + anon_sym_DOT, anon_sym_typealias, anon_sym_class, anon_sym_interface, @@ -555289,29 +555859,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82234] = 3, - ACTIONS(3990), 1, - sym_property_modifier, + [82521] = 27, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8987), 1, + anon_sym_AT, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(8991), 1, + anon_sym_COMMA, + ACTIONS(8993), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7288), 1, + sym_annotation, + STATE(8013), 1, + sym_parameter_modifiers, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(8336), 1, + sym_simple_identifier, + STATE(8829), 1, + sym__function_value_parameter, + STATE(8853), 1, + sym_parameter, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 41, - sym__automatic_semicolon, + STATE(7209), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7211), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7338), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9797), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [82619] = 27, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8987), 1, + anon_sym_AT, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(8997), 1, + anon_sym_COMMA, + ACTIONS(8999), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7288), 1, + sym_annotation, + STATE(8013), 1, + sym_parameter_modifiers, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(8336), 1, + sym_simple_identifier, + STATE(8853), 1, + sym_parameter, + STATE(8943), 1, + sym__function_value_parameter, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7209), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7211), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7338), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9797), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [82717] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 12, anon_sym_AT, - anon_sym_COLON, anon_sym_DOT, - anon_sym_as, anon_sym_EQ, - anon_sym_constructor, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, + anon_sym_RPAREN, + anon_sym_GT, anon_sym_AMP, sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4148), 29, + anon_sym_get, + anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -555329,6 +556039,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, @@ -555337,28 +556048,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82285] = 3, + [82767] = 27, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8987), 1, + anon_sym_AT, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9001), 1, + anon_sym_COMMA, + ACTIONS(9003), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7288), 1, + sym_annotation, + STATE(8013), 1, + sym_parameter_modifiers, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(8336), 1, + sym_simple_identifier, + STATE(8853), 1, + sym_parameter, + STATE(9016), 1, + sym__function_value_parameter, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7209), 2, + sym__type_modifier, + aux_sym_type_modifiers_repeat1, + STATE(7211), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7338), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(9797), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [82865] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9039), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7668), 38, + ACTIONS(4246), 12, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_RBRACE, - anon_sym_init, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym_label, + ACTIONS(4244), 29, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -555376,6 +556157,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, @@ -555384,26 +556166,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82335] = 2, + [82915] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 41, - sym__automatic_semicolon, + ACTIONS(4244), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4246), 38, anon_sym_AT, anon_sym_DOT, - anon_sym_EQ, - anon_sym_LBRACE, - 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_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -555421,7 +556205,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, @@ -555430,27 +556213,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82383] = 3, + [82965] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4311), 12, + ACTIONS(4131), 41, + sym__automatic_semicolon, anon_sym_AT, anon_sym_DOT, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym_label, - ACTIONS(4309), 29, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -555477,141 +556259,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82433] = 27, - ACTIONS(7374), 1, + [83013] = 27, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9041), 1, + ACTIONS(8987), 1, anon_sym_AT, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9045), 1, + ACTIONS(9005), 1, anon_sym_COMMA, - ACTIONS(9047), 1, + ACTIONS(9007), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7314), 1, + STATE(7288), 1, sym_annotation, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8337), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(8988), 1, + STATE(8857), 1, sym__function_value_parameter, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7208), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7217), 2, + STATE(7209), 2, sym__type_modifier, aux_sym_type_modifiers_repeat1, - STATE(7295), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(9737), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [82531] = 27, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9041), 1, - anon_sym_AT, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9051), 1, - anon_sym_COMMA, - ACTIONS(9053), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7314), 1, - sym_annotation, - STATE(8008), 1, - sym_parameter_modifiers, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8820), 1, - sym_parameter, - STATE(9010), 1, - sym__function_value_parameter, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7208), 2, + STATE(7211), 2, sym_parameter_modifier, aux_sym_parameter_modifiers_repeat1, - STATE(7217), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7295), 2, + STATE(7338), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(9737), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555619,11 +556330,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [82629] = 2, + [83111] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 41, + ACTIONS(4236), 41, sym__automatic_semicolon, anon_sym_AT, anon_sym_DOT, @@ -555665,27 +556376,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82677] = 3, + [83159] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 12, + ACTIONS(4095), 41, + sym__automatic_semicolon, anon_sym_AT, + anon_sym_COLON, anon_sym_DOT, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym_label, - ACTIONS(4256), 29, + anon_sym_by, + anon_sym_LT, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -555712,23 +556422,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82727] = 3, + [83207] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4187), 3, + ACTIONS(9009), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4189), 38, + ACTIONS(7628), 38, anon_sym_AT, - anon_sym_DOT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, anon_sym_constructor, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_init, anon_sym_companion, anon_sym_object, anon_sym_fun, @@ -555759,141 +556469,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [82777] = 27, - ACTIONS(7374), 1, + [83257] = 27, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9041), 1, + ACTIONS(8987), 1, anon_sym_AT, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9055), 1, + ACTIONS(9011), 1, anon_sym_COMMA, - ACTIONS(9057), 1, + ACTIONS(9013), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7314), 1, + STATE(7288), 1, sym_annotation, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8337), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9001), 1, + STATE(8876), 1, sym__function_value_parameter, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7208), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7217), 2, + STATE(7209), 2, sym__type_modifier, aux_sym_type_modifiers_repeat1, - STATE(7295), 2, + STATE(7211), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7338), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(9737), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [83355] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 41, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + 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, - [82875] = 27, - ACTIONS(7374), 1, + [83403] = 27, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9041), 1, + ACTIONS(8987), 1, anon_sym_AT, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9059), 1, + ACTIONS(9015), 1, anon_sym_COMMA, - ACTIONS(9061), 1, + ACTIONS(9017), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7314), 1, + STATE(7288), 1, sym_annotation, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8337), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8814), 1, - sym__function_value_parameter, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9732), 1, + STATE(8855), 1, + sym__function_value_parameter, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7208), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7217), 2, + STATE(7209), 2, sym__type_modifier, aux_sym_type_modifiers_repeat1, - STATE(7295), 2, + STATE(7211), 2, + sym_parameter_modifier, + aux_sym_parameter_modifiers_repeat1, + STATE(7338), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(9737), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -555901,23 +556657,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [82973] = 3, + [83501] = 5, + ACTIONS(9019), 1, + anon_sym_LPAREN, + STATE(5722), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4256), 3, + ACTIONS(7046), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4258), 38, + ACTIONS(7048), 36, anon_sym_AT, - anon_sym_DOT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, anon_sym_constructor, - anon_sym_LPAREN, anon_sym_companion, anon_sym_object, anon_sym_fun, @@ -555948,11 +556706,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83023] = 2, + [83555] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 41, + ACTIONS(3943), 41, sym__automatic_semicolon, anon_sym_AT, anon_sym_COLON, @@ -555994,26 +556752,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83071] = 2, + [83603] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4311), 41, - sym__automatic_semicolon, + ACTIONS(4234), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4236), 38, anon_sym_AT, anon_sym_DOT, - anon_sym_EQ, - anon_sym_LBRACE, - 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_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -556031,7 +556791,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, @@ -556040,28 +556799,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83119] = 4, - ACTIONS(9030), 1, - anon_sym_COLON, + [83653] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3990), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(3995), 38, + ACTIONS(4150), 41, + sym__automatic_semicolon, anon_sym_AT, anon_sym_DOT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_object, - anon_sym_fun, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -556088,18 +556845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83171] = 2, + [83701] = 4, + ACTIONS(9021), 1, + anon_sym_DOT, + STATE(5712), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 41, + ACTIONS(4072), 38, sym__automatic_semicolon, anon_sym_AT, - anon_sym_DOT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_by, anon_sym_where, @@ -556134,28 +556892,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83219] = 3, + [83752] = 4, + ACTIONS(9023), 1, + anon_sym_DOT, + STATE(5712), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4309), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(4311), 38, + ACTIONS(4131), 38, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_DOT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_LPAREN, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -556173,6 +556930,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, @@ -556181,90 +556939,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83269] = 27, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9041), 1, - anon_sym_AT, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9063), 1, - anon_sym_COMMA, - ACTIONS(9065), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7314), 1, - sym_annotation, - STATE(8008), 1, - sym_parameter_modifiers, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8820), 1, - sym_parameter, - STATE(9009), 1, - sym__function_value_parameter, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, + [83803] = 4, + ACTIONS(9026), 1, + anon_sym_DOT, + STATE(5711), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7208), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7217), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7295), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(9737), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + ACTIONS(4105), 38, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_AMP, + sym__quest, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + 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, - [83367] = 5, - ACTIONS(9067), 1, - anon_sym_LPAREN, - STATE(5759), 1, - sym_value_arguments, + [83854] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7094), 3, + ACTIONS(7145), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7096), 36, + ACTIONS(7147), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -556301,23 +557031,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83421] = 3, + [83902] = 4, + ACTIONS(9028), 1, + sym__quest, + STATE(5749), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4272), 37, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [83952] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4305), 3, + ACTIONS(7109), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4307), 38, + ACTIONS(7111), 36, anon_sym_AT, - anon_sym_DOT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, anon_sym_constructor, - anon_sym_LPAREN, anon_sym_companion, anon_sym_object, anon_sym_fun, @@ -556348,70 +557122,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83471] = 27, - ACTIONS(7374), 1, + [84000] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9041), 1, - anon_sym_AT, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9069), 1, - anon_sym_COMMA, - ACTIONS(9071), 1, - anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7314), 1, - sym_annotation, - STATE(8008), 1, - sym_parameter_modifiers, - STATE(8026), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8799), 1, - sym__function_value_parameter, - STATE(8820), 1, - sym_parameter, - STATE(9732), 1, + STATE(8800), 1, + sym_type_projection, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7208), 2, - sym_parameter_modifier, - aux_sym_parameter_modifiers_repeat1, - STATE(7217), 2, - sym__type_modifier, - aux_sym_type_modifiers_repeat1, - STATE(7295), 2, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(9737), 4, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556419,73 +557188,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [83569] = 2, + [84090] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 41, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_LT, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_AMP, - sym__quest, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, + ACTIONS(4872), 3, + anon_sym_val, + anon_sym_var, sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [83617] = 4, - ACTIONS(9073), 1, - anon_sym_DOT, - STATE(5713), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 38, - sym__automatic_semicolon, + ACTIONS(4874), 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_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -556503,7 +557225,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, @@ -556512,27 +557233,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83668] = 4, - ACTIONS(9075), 1, - anon_sym_DOT, - STATE(5712), 1, - aux_sym_user_type_repeat1, + [84138] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 38, - sym__automatic_semicolon, + ACTIONS(9036), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9034), 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_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -556550,7 +557270,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, @@ -556559,27 +557278,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83719] = 4, - ACTIONS(9078), 1, - anon_sym_DOT, - STATE(5712), 1, - aux_sym_user_type_repeat1, + [84186] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 38, - sym__automatic_semicolon, + ACTIONS(4868), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4870), 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_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_AMP, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -556597,7 +557315,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, @@ -556606,15 +557323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83770] = 3, + [84234] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9082), 3, + ACTIONS(9040), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(9080), 36, + ACTIONS(9038), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -556651,25 +557368,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83818] = 3, - ACTIONS(4325), 1, - anon_sym_DASH_GT, + [84282] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 38, - sym__automatic_semicolon, + ACTIONS(4880), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(4882), 36, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -556687,7 +557405,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, @@ -556696,131 +557413,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [83866] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8806), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [83956] = 24, - ACTIONS(7374), 1, + [84330] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8946), 1, + STATE(8927), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -556828,288 +557479,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [84046] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9035), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, + [84420] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [84136] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7133), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(7135), 36, anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8903), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [84226] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8802), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84316] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + [84468] = 5, + ACTIONS(9042), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9058), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [84406] = 4, - ACTIONS(9088), 1, - sym__quest, - STATE(5732), 1, - aux_sym_nullable_type_repeat1, + STATE(5765), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 37, - sym__automatic_semicolon, + ACTIONS(7046), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7048), 35, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -557138,155 +557571,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84456] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8991), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, + [84520] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [84546] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9046), 3, + anon_sym_val, + anon_sym_var, + sym_property_modifier, + ACTIONS(9044), 36, anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9025), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84636] = 5, - ACTIONS(9090), 1, - anon_sym_LPAREN, - STATE(5764), 1, - sym_value_arguments, + [84568] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7094), 2, + ACTIONS(4876), 3, anon_sym_val, anon_sym_var, - ACTIONS(7096), 35, + sym_property_modifier, + ACTIONS(4878), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, anon_sym_interface, anon_sym_enum, + anon_sym_constructor, + anon_sym_companion, anon_sym_object, anon_sym_fun, anon_sym_get, @@ -557308,7 +557653,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, @@ -557317,65 +557661,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84688] = 24, - ACTIONS(7374), 1, + [84616] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8859), 1, + STATE(8860), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557383,65 +557727,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [84778] = 24, - ACTIONS(7374), 1, + [84706] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9402), 1, + STATE(8928), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557449,15 +557793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [84868] = 3, + [84796] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7132), 3, + ACTIONS(9050), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7134), 36, + ACTIONS(9048), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -557494,111 +557838,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [84916] = 4, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9092), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(3995), 6, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4007), 31, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [84966] = 24, - ACTIONS(7374), 1, + [84844] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9054), 1, + STATE(8974), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557606,15 +557904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [85056] = 3, + [84934] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4979), 3, + ACTIONS(7103), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(4981), 36, + ACTIONS(7105), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -557651,112 +557949,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85104] = 4, - ACTIONS(9094), 1, - sym__quest, - STATE(5758), 1, - aux_sym_nullable_type_repeat1, + [84982] = 24, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(8978), 1, + sym_type_projection, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 37, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85154] = 3, + [85072] = 24, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(8968), 1, + sym_type_projection, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(5187), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85202] = 4, + [85162] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9096), 2, + ACTIONS(9052), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(3995), 6, + ACTIONS(3943), 6, anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3997), 31, + ACTIONS(3945), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -557788,177 +558127,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [85252] = 4, - ACTIONS(9088), 1, - sym__quest, - STATE(5732), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4278), 37, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [85302] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8793), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [85392] = 24, - ACTIONS(7374), 1, + [85212] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9065), 1, + STATE(9026), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -557966,65 +558193,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [85482] = 24, - ACTIONS(7374), 1, + [85302] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8871), 1, + STATE(8833), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558032,65 +558259,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [85572] = 24, - ACTIONS(7374), 1, + [85392] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8861), 1, + STATE(9031), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558098,65 +558325,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [85662] = 24, - ACTIONS(7374), 1, + [85482] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8895), 1, + STATE(9012), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558164,65 +558391,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [85752] = 24, - ACTIONS(7374), 1, + [85572] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8844), 1, + STATE(9038), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558230,26 +558457,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [85842] = 3, + [85662] = 3, + ACTIONS(4162), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7197), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7199), 36, + ACTIONS(4160), 38, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -558267,6 +558493,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, @@ -558275,15 +558502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85890] = 3, + [85710] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7125), 3, + ACTIONS(7091), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7127), 36, + ACTIONS(7093), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -558320,69 +558547,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85938] = 3, + [85758] = 24, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9094), 1, + sym_type_projection, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7185), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(7187), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [85986] = 3, + [85848] = 4, + ACTIONS(9028), 1, + sym__quest, + STATE(5749), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5193), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(5195), 36, + ACTIONS(4210), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -558402,6 +558650,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, @@ -558410,65 +558659,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86034] = 24, - ACTIONS(7374), 1, + [85898] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8829), 1, + STATE(9050), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558476,24 +558725,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [86124] = 3, + [85988] = 4, + ACTIONS(9054), 1, + sym__quest, + STATE(5746), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9100), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(9098), 36, + ACTIONS(4282), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -558513,6 +558762,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, @@ -558521,69 +558771,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86172] = 3, + [86038] = 24, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9074), 1, + sym_type_projection, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3997), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(9096), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86128] = 24, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9059), 1, + sym_type_projection, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86220] = 3, + [86218] = 4, + ACTIONS(9057), 1, + sym__quest, + STATE(5746), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5169), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(5171), 36, + ACTIONS(4266), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -558603,6 +558940,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, @@ -558615,11 +558953,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9104), 3, + ACTIONS(3945), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(9102), 36, + ACTIONS(9052), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -558656,110 +558994,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86316] = 3, + [86316] = 24, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(8980), 1, + sym_type_projection, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9108), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(9106), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86364] = 24, - ACTIONS(7374), 1, + [86406] = 24, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9086), 1, + ACTIONS(9032), 1, anon_sym_STAR, - STATE(5918), 1, + STATE(5993), 1, sym_type_projection_modifiers, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8904), 1, + STATE(9049), 1, sym_type_projection, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, + ACTIONS(7375), 2, anon_sym_in, anon_sym_out, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7212), 3, + STATE(7205), 3, sym__type_projection_modifier, sym_variance_modifier, aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9382), 4, + STATE(9330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -558767,60 +559126,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [86454] = 3, + [86496] = 24, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9067), 1, + sym_type_projection, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4007), 3, - anon_sym_val, - anon_sym_var, - sym_property_modifier, - ACTIONS(9092), 36, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_constructor, - anon_sym_companion, - anon_sym_object, - anon_sym_fun, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86502] = 3, + [86586] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9112), 3, + ACTIONS(3973), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(9110), 36, + ACTIONS(9059), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -558857,81 +559237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86550] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8984), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [86640] = 4, - ACTIONS(9114), 1, + [86634] = 4, + ACTIONS(9061), 1, anon_sym_DOT, - STATE(5620), 1, + STATE(5623), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 37, + ACTIONS(4105), 37, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -558969,15 +559283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86690] = 3, + [86684] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7167), 3, + ACTIONS(4864), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(7169), 36, + ACTIONS(4866), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -559014,61 +559328,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86738] = 4, - ACTIONS(9116), 1, - sym__quest, - STATE(5758), 1, - aux_sym_nullable_type_repeat1, + [86732] = 24, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9290), 1, + sym_type_projection, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 37, - sym__automatic_semicolon, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [86822] = 24, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_STAR, + STATE(5993), 1, + sym_type_projection_modifiers, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9088), 1, + sym_type_projection, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7205), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9330), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86788] = 3, + [86912] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5213), 3, + ACTIONS(9065), 3, anon_sym_val, anon_sym_var, sym_property_modifier, - ACTIONS(5215), 36, + ACTIONS(9063), 36, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -559105,89 +559505,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86836] = 24, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9086), 1, - anon_sym_STAR, - STATE(5918), 1, - sym_type_projection_modifiers, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8915), 1, - sym_type_projection, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7212), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9382), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [86926] = 4, - ACTIONS(9078), 1, - anon_sym_DOT, - STATE(5713), 1, - aux_sym_user_type_repeat1, + [86960] = 4, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 36, - sym__automatic_semicolon, + ACTIONS(9059), 2, anon_sym_AT, - anon_sym_EQ, + sym__backtick_identifier, + ACTIONS(3943), 6, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_by, - anon_sym_where, anon_sym_SEMI, + ACTIONS(3973), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559216,13 +559550,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [86975] = 3, - ACTIONS(9119), 1, - anon_sym_AMP, + sym__alpha_identifier, + [87010] = 4, + ACTIONS(9021), 1, + anon_sym_DOT, + STATE(5711), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 37, + ACTIONS(4105), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -559233,7 +559570,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_get, anon_sym_set, - sym__quest, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -559260,13 +559596,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87022] = 3, - ACTIONS(9121), 1, + [87059] = 3, + ACTIONS(9067), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 37, + ACTIONS(4166), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -559304,23 +559640,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87069] = 3, + [87106] = 3, + ACTIONS(9069), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5213), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(5215), 35, + ACTIONS(4166), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_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, @@ -559347,15 +559684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87115] = 4, - ACTIONS(9123), 1, - sym__quest, - STATE(5789), 1, - aux_sym_nullable_type_repeat1, + [87153] = 3, + ACTIONS(9071), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 35, + ACTIONS(4166), 36, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -559364,6 +559699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, anon_sym_while, anon_sym_suspend, anon_sym_sealed, @@ -559391,14 +559727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87163] = 3, + [87199] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9100), 2, + ACTIONS(4880), 2, anon_sym_val, anon_sym_var, - ACTIONS(9098), 35, + ACTIONS(4882), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -559434,20 +559770,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87209] = 2, + [87245] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4278), 37, - sym__automatic_semicolon, + ACTIONS(7133), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7135), 35, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559476,11 +559813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87253] = 2, + [87291] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4607), 37, + ACTIONS(4654), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -559518,21 +559855,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87297] = 4, - ACTIONS(9030), 1, - anon_sym_COLON, + [87335] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, + ACTIONS(4272), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT, - sym__backtick_identifier, - ACTIONS(3990), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559561,22 +559897,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [87345] = 3, + [87379] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3997), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9096), 35, + ACTIONS(4636), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559605,21 +559939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87391] = 3, + [87423] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5185), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(5187), 35, + ACTIONS(4640), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559648,23 +559981,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87437] = 3, - ACTIONS(9125), 1, - anon_sym_AMP, + [87467] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 36, + ACTIONS(4644), 37, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, - sym__quest, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -559691,21 +560023,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87483] = 3, + [87511] = 5, + ACTIONS(9073), 1, + anon_sym_LT, + STATE(5824), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7125), 2, + ACTIONS(4119), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4117), 31, anon_sym_val, anon_sym_var, - ACTIONS(7127), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559734,63 +560067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87529] = 3, - ACTIONS(4325), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4323), 36, - anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, - anon_sym_get, - anon_sym_set, - sym__quest, - anon_sym_while, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [87575] = 2, + sym__alpha_identifier, + [87561] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4561), 37, - sym__automatic_semicolon, + ACTIONS(4876), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(4878), 35, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -559819,14 +560111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87619] = 3, + [87607] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5193), 2, + ACTIONS(7103), 2, anon_sym_val, anon_sym_var, - ACTIONS(5195), 35, + ACTIONS(7105), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -559862,11 +560154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87665] = 2, + [87653] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4556), 37, + ACTIONS(4659), 37, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -559904,14 +560196,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87709] = 3, + [87697] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7132), 2, + ACTIONS(3945), 2, anon_sym_val, anon_sym_var, - ACTIONS(7134), 35, + ACTIONS(9052), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -559947,24 +560239,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87755] = 4, - ACTIONS(9123), 1, - sym__quest, - STATE(5789), 1, - aux_sym_nullable_type_repeat1, + [87743] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4278), 35, + ACTIONS(4601), 37, + sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -559991,22 +560281,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87803] = 5, - ACTIONS(9127), 1, - anon_sym_LT, - STATE(5822), 1, - sym_type_arguments, + [87787] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 4, + ACTIONS(4673), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4169), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -560035,22 +560323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [87853] = 3, + [87831] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9104), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9102), 35, + ACTIONS(4678), 37, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -560079,14 +560365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87899] = 3, + [87875] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9108), 2, + ACTIONS(4868), 2, anon_sym_val, anon_sym_var, - ACTIONS(9106), 35, + ACTIONS(4870), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -560122,24 +560408,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87945] = 4, - ACTIONS(9129), 1, - sym__quest, - STATE(5783), 1, - aux_sym_nullable_type_repeat1, + [87921] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 35, + ACTIONS(7145), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7147), 35, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -560166,14 +560451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [87993] = 3, + [87967] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9082), 2, + ACTIONS(4864), 2, anon_sym_val, anon_sym_var, - ACTIONS(9080), 35, + ACTIONS(4866), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -560209,23 +560494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88039] = 3, + [88013] = 4, + ACTIONS(9075), 1, + sym__quest, + STATE(5783), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9112), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(9110), 35, + ACTIONS(4282), 35, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -560252,14 +560538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88085] = 3, + [88061] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5169), 2, + ACTIONS(4872), 2, anon_sym_val, anon_sym_var, - ACTIONS(5171), 35, + ACTIONS(4874), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -560295,20 +560581,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88131] = 2, + [88107] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4631), 37, - sym__automatic_semicolon, + ACTIONS(7109), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7111), 35, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -560337,23 +560624,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88175] = 3, + [88153] = 4, + ACTIONS(9078), 1, + sym__quest, + STATE(5787), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7197), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(7199), 35, + ACTIONS(4272), 35, anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -560380,15 +560668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88221] = 4, - ACTIONS(9132), 1, + [88201] = 4, + ACTIONS(9080), 1, sym__quest, STATE(5783), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 35, + ACTIONS(4266), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -560424,21 +560712,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88269] = 3, + [88249] = 4, + ACTIONS(8974), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7167), 2, + ACTIONS(3943), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3938), 31, anon_sym_val, anon_sym_var, - ACTIONS(7169), 35, - anon_sym_AT, - anon_sym_typealias, - anon_sym_class, - anon_sym_interface, - anon_sym_enum, - anon_sym_object, - anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -560467,22 +560755,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88315] = 2, + sym__alpha_identifier, + [88297] = 3, + ACTIONS(9082), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4532), 37, - sym__automatic_semicolon, + ACTIONS(4166), 36, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -560509,22 +560799,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88359] = 2, + [88343] = 3, + ACTIONS(4162), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4547), 37, - sym__automatic_semicolon, + ACTIONS(4160), 36, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, + sym__quest, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -560551,14 +560842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88403] = 3, + [88389] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4007), 2, + ACTIONS(9065), 2, anon_sym_val, anon_sym_var, - ACTIONS(9092), 35, + ACTIONS(9063), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -560594,14 +560885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88449] = 3, + [88435] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4979), 2, + ACTIONS(3973), 2, anon_sym_val, anon_sym_var, - ACTIONS(4981), 35, + ACTIONS(9059), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -560637,22 +560928,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88495] = 2, + [88481] = 4, + ACTIONS(9078), 1, + sym__quest, + STATE(5787), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 37, - sym__automatic_semicolon, + ACTIONS(4210), 35, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -560679,20 +560972,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88539] = 2, + [88529] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4611), 37, - sym__automatic_semicolon, + ACTIONS(9036), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9034), 35, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -560721,14 +561015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88583] = 3, + [88575] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7185), 2, + ACTIONS(9046), 2, anon_sym_val, anon_sym_var, - ACTIONS(7187), 35, + ACTIONS(9044), 35, anon_sym_AT, anon_sym_typealias, anon_sym_class, @@ -560764,23 +561058,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88629] = 3, - ACTIONS(9134), 1, - anon_sym_AMP, + [88621] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 36, + ACTIONS(9050), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9048), 35, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, - sym__quest, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -560807,20 +561101,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88675] = 3, - ACTIONS(9024), 1, - anon_sym_COLON, + [88667] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 35, - sym__automatic_semicolon, + ACTIONS(9040), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(9038), 35, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -560849,19 +561144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88720] = 2, + [88713] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4591), 36, - sym__automatic_semicolon, + ACTIONS(7091), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(7093), 35, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, + anon_sym_typealias, + anon_sym_class, + anon_sym_interface, + anon_sym_enum, + anon_sym_object, + anon_sym_fun, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -560890,11 +561187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88763] = 2, + [88759] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4551), 36, + ACTIONS(4375), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -560931,21 +561228,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88806] = 5, - ACTIONS(9136), 1, - anon_sym_DOT, - STATE(5807), 1, - aux_sym_user_type_repeat1, + [88802] = 4, + ACTIONS(9084), 1, + anon_sym_COMMA, + STATE(5803), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 3, + ACTIONS(4390), 34, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4143), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -560974,22 +561271,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [88855] = 5, - ACTIONS(9136), 1, - anon_sym_DOT, - STATE(5802), 1, - aux_sym_user_type_repeat1, + [88849] = 3, + ACTIONS(8976), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 3, + ACTIONS(4138), 35, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4162), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -561018,22 +561313,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [88904] = 4, - ACTIONS(9138), 1, - anon_sym_COMMA, - STATE(5806), 1, - aux_sym_type_constraints_repeat1, + [88894] = 5, + ACTIONS(9086), 1, + anon_sym_DOT, + STATE(5807), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4373), 34, - sym__automatic_semicolon, + ACTIONS(4105), 3, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_SEMI, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4103), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -561062,15 +561356,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88951] = 4, - ACTIONS(9140), 1, + sym__alpha_identifier, + [88943] = 4, + ACTIONS(9088), 1, anon_sym_COMMA, - STATE(5805), 1, + STATE(5803), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 34, + ACTIONS(4375), 34, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -561105,19 +561400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [88998] = 4, - ACTIONS(9138), 1, - anon_sym_COMMA, - STATE(5805), 1, - aux_sym_type_constraints_repeat1, + [88990] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4391), 34, + ACTIONS(4648), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_by, anon_sym_SEMI, anon_sym_get, @@ -561148,19 +561441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89045] = 5, - ACTIONS(9143), 1, + [89033] = 5, + ACTIONS(9091), 1, anon_sym_DOT, - STATE(5807), 1, + STATE(5805), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4131), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4187), 31, + ACTIONS(4129), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -561192,11 +561485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89094] = 2, + [89082] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 36, + ACTIONS(4668), 36, sym__automatic_semicolon, anon_sym_AT, anon_sym_EQ, @@ -561233,20 +561526,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89137] = 2, + [89125] = 5, + ACTIONS(9086), 1, + anon_sym_DOT, + STATE(5805), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4591), 35, + ACTIONS(4072), 3, anon_sym_AT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_SEMI, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4070), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -561273,20 +561569,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89179] = 5, - ACTIONS(9146), 1, - anon_sym_LPAREN, - STATE(5858), 1, - sym_value_arguments, + sym__alpha_identifier, + [89174] = 4, + ACTIONS(9084), 1, + anon_sym_COMMA, + STATE(5800), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7096), 2, + ACTIONS(4396), 34, + sym__automatic_semicolon, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7094), 31, - anon_sym_val, - anon_sym_var, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_by, + anon_sym_SEMI, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -561315,17 +561613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89227] = 2, + [89221] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4611), 35, + ACTIONS(4648), 35, anon_sym_AT, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_by, - anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -561356,11 +561653,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89269] = 2, + [89263] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4631), 35, + ACTIONS(4640), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -561396,16 +561693,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89311] = 2, + [89305] = 4, + ACTIONS(9094), 1, + anon_sym_COMMA, + STATE(5811), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4556), 35, + ACTIONS(4375), 33, anon_sym_AT, anon_sym_EQ, - anon_sym_COMMA, anon_sym_by, - anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -561436,16 +561735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89353] = 2, + [89351] = 4, + ACTIONS(9097), 1, + anon_sym_COMMA, + STATE(5811), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4547), 35, + ACTIONS(4390), 33, anon_sym_AT, anon_sym_EQ, - anon_sym_COMMA, anon_sym_by, - anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -561476,20 +561777,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89395] = 2, + [89397] = 4, + ACTIONS(9097), 1, + anon_sym_COMMA, + STATE(5812), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4627), 35, - sym__automatic_semicolon, + ACTIONS(4396), 33, 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -561516,20 +561819,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89437] = 3, + [89443] = 3, + ACTIONS(8985), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 4, + ACTIONS(4138), 34, anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4187), 31, - anon_sym_val, - anon_sym_var, + 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, @@ -561556,12 +561860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89481] = 2, + [89487] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4551), 35, + ACTIONS(4375), 35, anon_sym_AT, anon_sym_EQ, anon_sym_LBRACE, @@ -561597,11 +561900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89523] = 2, + [89529] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4532), 35, + ACTIONS(4272), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -561637,20 +561940,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89565] = 2, + [89571] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4619), 35, - sym__automatic_semicolon, + ACTIONS(4636), 35, anon_sym_AT, anon_sym_EQ, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -561677,20 +561980,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89607] = 2, + [89613] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 35, + ACTIONS(4682), 35, + 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, @@ -561717,16 +562020,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89649] = 2, + [89655] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 35, + ACTIONS(4644), 35, anon_sym_AT, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_by, + anon_sym_where, anon_sym_SEMI, anon_sym_get, anon_sym_set, @@ -561757,16 +562060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89691] = 3, + [89697] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 4, + ACTIONS(4150), 4, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4305), 31, + ACTIONS(4148), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -561798,20 +562101,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [89735] = 2, + [89741] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4607), 35, + ACTIONS(4246), 4, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4244), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -561838,15 +562141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89777] = 3, - ACTIONS(9032), 1, - anon_sym_COLON, + sym__alpha_identifier, + [89785] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 34, + ACTIONS(4654), 35, anon_sym_AT, anon_sym_EQ, + anon_sym_COMMA, anon_sym_by, anon_sym_where, anon_sym_SEMI, @@ -561879,20 +562182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89821] = 4, - ACTIONS(9030), 1, - anon_sym_COLON, + [89827] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 6, + ACTIONS(4131), 4, anon_sym_AT, anon_sym_DOT, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LT, - sym_label, - ACTIONS(3990), 28, + sym__backtick_identifier, + ACTIONS(4129), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -561921,20 +562222,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89867] = 2, + sym__alpha_identifier, + [89871] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4561), 35, + ACTIONS(4236), 4, anon_sym_AT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4234), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -561961,20 +562263,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [89909] = 3, + sym__alpha_identifier, + [89915] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 4, + ACTIONS(4668), 35, anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4256), 31, - anon_sym_val, - anon_sym_var, + 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, @@ -562001,22 +562304,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [89953] = 5, - ACTIONS(9148), 1, - anon_sym_LT, - STATE(5866), 1, - sym_type_arguments, + [89957] = 4, + ACTIONS(8974), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 5, + ACTIONS(3943), 6, anon_sym_AT, anon_sym_DOT, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LT, sym_label, - ACTIONS(4169), 28, + ACTIONS(3938), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -562045,16 +562346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90001] = 3, + [90003] = 5, + ACTIONS(9099), 1, + anon_sym_LPAREN, + STATE(5853), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4311), 4, + ACTIONS(7048), 2, anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4309), 31, + ACTIONS(7046), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -562086,22 +562389,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90045] = 4, - ACTIONS(9150), 1, - anon_sym_COMMA, - STATE(5830), 1, - aux_sym_type_constraints_repeat1, + [90051] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 33, + ACTIONS(4708), 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_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -562128,18 +562429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90091] = 4, - ACTIONS(9153), 1, - anon_sym_COMMA, - STATE(5830), 1, - aux_sym_type_constraints_repeat1, + [90093] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4391), 33, + ACTIONS(4678), 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, @@ -562170,18 +562469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90137] = 4, - ACTIONS(9153), 1, - anon_sym_COMMA, - STATE(5831), 1, - aux_sym_type_constraints_repeat1, + [90135] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4373), 33, + ACTIONS(4659), 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, @@ -562212,11 +562509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90183] = 2, + [90177] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4278), 35, + ACTIONS(4601), 35, anon_sym_AT, anon_sym_EQ, anon_sym_COMMA, @@ -562252,18 +562549,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90225] = 2, + [90219] = 5, + ACTIONS(9101), 1, + anon_sym_LT, + STATE(5878), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4710), 35, - sym__automatic_semicolon, + ACTIONS(4119), 5, anon_sym_AT, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4117), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -562292,21 +562592,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90267] = 3, - ACTIONS(4411), 1, - sym_property_modifier, + [90267] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4413), 33, - sym__automatic_semicolon, + ACTIONS(4673), 35, anon_sym_AT, - anon_sym_COLON, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + 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, @@ -562324,6 +562623,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, @@ -562332,21 +562632,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90310] = 3, - ACTIONS(4456), 1, - sym_property_modifier, + [90309] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4458), 33, + ACTIONS(4664), 35, sym__automatic_semicolon, anon_sym_AT, - anon_sym_COLON, - anon_sym_constructor, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_by, anon_sym_where, + anon_sym_SEMI, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -562364,6 +562663,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, @@ -562372,22 +562672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90353] = 5, - ACTIONS(9155), 1, - anon_sym_DOT, - STATE(5837), 1, - aux_sym_user_type_repeat1, + [90351] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 4, + ACTIONS(4664), 34, anon_sym_AT, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_label, - ACTIONS(4187), 28, + anon_sym_EQ, + anon_sym_by, + anon_sym_where, + anon_sym_SEMI, anon_sym_get, anon_sym_set, + anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -562414,11 +562711,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90400] = 2, + [90392] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4627), 34, + ACTIONS(4708), 34, anon_sym_AT, anon_sym_EQ, anon_sym_by, @@ -562453,11 +562750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90441] = 2, + [90433] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4619), 34, + ACTIONS(4682), 34, anon_sym_AT, anon_sym_EQ, anon_sym_by, @@ -562492,19 +562789,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90482] = 2, + [90474] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4710), 34, + ACTIONS(4095), 6, anon_sym_AT, - anon_sym_EQ, - anon_sym_by, - anon_sym_where, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LT, + sym_label, + ACTIONS(4093), 28, anon_sym_get, anon_sym_set, - anon_sym_while, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -562531,20 +562829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90523] = 3, + [90517] = 3, + ACTIONS(4382), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 6, + ACTIONS(4384), 33, + sym__automatic_semicolon, anon_sym_AT, - anon_sym_DOT, + anon_sym_COLON, + anon_sym_constructor, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LT, - sym_label, - ACTIONS(4122), 28, - anon_sym_get, - anon_sym_set, + anon_sym_where, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -562562,7 +562861,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, @@ -562571,20 +562869,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90566] = 5, - ACTIONS(9158), 1, - anon_sym_DOT, - STATE(5843), 1, - aux_sym_user_type_repeat1, + [90560] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 4, + ACTIONS(3943), 6, anon_sym_AT, + anon_sym_DOT, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_LT, sym_label, - ACTIONS(4162), 28, + ACTIONS(3938), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -562613,20 +562909,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90613] = 5, - ACTIONS(9158), 1, + [90603] = 5, + ACTIONS(9103), 1, anon_sym_DOT, - STATE(5837), 1, + STATE(5842), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 4, + ACTIONS(4072), 4, anon_sym_AT, anon_sym_LBRACE, anon_sym_LPAREN, sym_label, - ACTIONS(4143), 28, + ACTIONS(4070), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -562655,18 +562951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90660] = 3, + [90650] = 5, + ACTIONS(9105), 1, + anon_sym_DOT, + STATE(5842), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 6, + ACTIONS(4131), 4, anon_sym_AT, - anon_sym_DOT, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_LT, sym_label, - ACTIONS(3990), 28, + ACTIONS(4129), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -562690,78 +562988,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_final, anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [90703] = 21, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9160), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(8026), 1, - sym__simple_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8690), 1, - sym_user_type, - STATE(8958), 1, - sym_parameter, - STATE(9450), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8966), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90781] = 3, + [90697] = 5, + ACTIONS(9103), 1, + anon_sym_DOT, + STATE(5841), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 2, + ACTIONS(4105), 4, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5169), 31, - anon_sym_val, - anon_sym_var, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4103), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -562790,72 +563035,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [90823] = 21, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9160), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(8026), 1, - sym__simple_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8690), 1, - sym_user_type, - STATE(8958), 1, - sym_parameter, - STATE(9450), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, + [90744] = 3, + ACTIONS(4321), 1, + sym_property_modifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8894), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, + ACTIONS(4323), 33, + sym__automatic_semicolon, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [90901] = 3, + [90787] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7127), 2, + ACTIONS(7147), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7125), 31, + ACTIONS(7145), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -562887,131 +563114,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [90943] = 21, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9160), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(8026), 1, - sym__simple_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8690), 1, - sym_user_type, - STATE(8958), 1, - sym_parameter, - STATE(9450), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8914), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [91021] = 21, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9160), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(8026), 1, - sym__simple_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8690), 1, - sym_user_type, - STATE(8958), 1, - sym_parameter, - STATE(9450), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8840), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [91099] = 3, + [90829] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 5, + ACTIONS(4131), 5, anon_sym_AT, anon_sym_DOT, anon_sym_LBRACE, anon_sym_LPAREN, sym_label, - ACTIONS(4187), 28, + ACTIONS(4129), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -563040,14 +563153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91141] = 3, + [90871] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 2, + ACTIONS(4874), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7185), 31, + ACTIONS(4872), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -563079,128 +563192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91183] = 21, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9160), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(8026), 1, - sym__simple_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8690), 1, - sym_user_type, - STATE(8958), 1, - sym_parameter, - STATE(9450), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(9072), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [91261] = 21, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9160), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(8026), 1, - sym__simple_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8690), 1, - sym_user_type, - STATE(8958), 1, - sym_parameter, - STATE(9450), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8825), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [91339] = 3, + [90913] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7169), 2, + ACTIONS(9063), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7167), 31, + ACTIONS(9065), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -563232,20 +563231,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91381] = 3, - ACTIONS(4456), 1, - sym_property_modifier, + [90955] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4458), 32, + ACTIONS(9059), 2, anon_sym_AT, - anon_sym_COLON, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_while, + sym__backtick_identifier, + ACTIONS(3973), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -563263,6 +563260,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, @@ -563271,151 +563269,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91423] = 21, - ACTIONS(7374), 1, + sym__alpha_identifier, + [90997] = 21, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9160), 1, + ACTIONS(9108), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8337), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8690), 1, + STATE(8755), 1, sym_user_type, - STATE(8958), 1, + STATE(8823), 1, sym_parameter, - STATE(9450), 1, + STATE(9393), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9052), 4, + STATE(9093), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [91501] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5215), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5213), 31, - anon_sym_val, - anon_sym_var, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [91543] = 20, - ACTIONS(7374), 1, + [91075] = 21, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9160), 1, + ACTIONS(9108), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8337), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(9732), 1, + STATE(8755), 1, + sym_user_type, + STATE(8823), 1, + sym_parameter, + STATE(9393), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8958), 5, - sym_parameter, + STATE(8937), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563423,19 +563384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [91619] = 5, - ACTIONS(9162), 1, - anon_sym_LPAREN, - STATE(6084), 1, - sym_value_arguments, + [91153] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7096), 3, + ACTIONS(4870), 2, anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7094), 28, + sym__backtick_identifier, + ACTIONS(4868), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -563464,14 +563422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91665] = 3, + sym__alpha_identifier, + [91195] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9106), 2, + ACTIONS(4882), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(9108), 31, + ACTIONS(4880), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -563503,77 +563462,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91707] = 21, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9160), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(8026), 1, - sym__simple_user_type, - STATE(8337), 1, - sym_simple_identifier, - STATE(8690), 1, - sym_user_type, - STATE(8958), 1, - sym_parameter, - STATE(9450), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, + [91237] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8961), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + ACTIONS(7111), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7109), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91785] = 3, - ACTIONS(4411), 1, - sym_property_modifier, + sym__alpha_identifier, + [91279] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4413), 32, + ACTIONS(7135), 2, anon_sym_AT, - anon_sym_COLON, - anon_sym_constructor, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_while, + sym__backtick_identifier, + ACTIONS(7133), 31, + anon_sym_val, + anon_sym_var, + anon_sym_get, + anon_sym_set, anon_sym_suspend, anon_sym_sealed, anon_sym_annotation, @@ -563591,6 +563530,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, @@ -563599,14 +563539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91827] = 3, + sym__alpha_identifier, + [91321] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7134), 2, + ACTIONS(7093), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7132), 31, + ACTIONS(7091), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -563638,56 +563579,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [91869] = 21, - ACTIONS(7374), 1, + [91363] = 21, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9160), 1, + ACTIONS(9108), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8337), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8690), 1, + STATE(8755), 1, sym_user_type, - STATE(8958), 1, + STATE(8823), 1, sym_parameter, - STATE(9450), 1, + STATE(9393), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8969), 4, + STATE(8822), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563695,17 +563636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [91947] = 3, + [91441] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 5, + ACTIONS(9052), 2, anon_sym_AT, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_label, - ACTIONS(4305), 28, + sym__backtick_identifier, + ACTIONS(3945), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -563734,14 +563674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [91989] = 3, + sym__alpha_identifier, + [91483] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9092), 2, + ACTIONS(4866), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(4007), 31, + ACTIONS(4864), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -563773,56 +563714,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92031] = 21, - ACTIONS(7374), 1, + [91525] = 21, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9160), 1, + ACTIONS(9108), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8337), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8690), 1, + STATE(8755), 1, sym_user_type, - STATE(8958), 1, + STATE(8823), 1, sym_parameter, - STATE(9450), 1, + STATE(9393), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8919), 4, + STATE(8895), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -563830,14 +563771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92109] = 3, + [91603] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9098), 2, + ACTIONS(7105), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(9100), 31, + ACTIONS(7103), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -563869,14 +563810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92151] = 3, + [91645] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9096), 2, + ACTIONS(9048), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(3997), 31, + ACTIONS(9050), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -563908,14 +563849,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92193] = 3, + [91687] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9102), 2, + ACTIONS(4878), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(9104), 31, + ACTIONS(4876), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -563947,133 +563888,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92235] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7199), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7197), 31, - anon_sym_val, - anon_sym_var, - anon_sym_get, - anon_sym_set, + [91729] = 21, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, + ACTIONS(8527), 1, sym__alpha_identifier, - [92277] = 3, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9108), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(8149), 1, + sym__simple_user_type, + STATE(8336), 1, + sym_simple_identifier, + STATE(8755), 1, + sym_user_type, + STATE(8823), 1, + sym_parameter, + STATE(9393), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5193), 31, - anon_sym_val, - anon_sym_var, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8826), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [91807] = 21, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - [92319] = 3, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9108), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(8149), 1, + sym__simple_user_type, + STATE(8336), 1, + sym_simple_identifier, + STATE(8755), 1, + sym_user_type, + STATE(8823), 1, + sym_parameter, + STATE(9393), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4981), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4979), 31, - anon_sym_val, - anon_sym_var, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9087), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [92361] = 3, + [91885] = 5, + ACTIONS(9110), 1, + anon_sym_LPAREN, + STATE(6385), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9110), 2, + ACTIONS(7048), 3, anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9112), 31, - anon_sym_val, - anon_sym_var, + anon_sym_LBRACE, + sym_label, + ACTIONS(7046), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -564102,57 +564043,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [92403] = 21, - ACTIONS(7374), 1, + [91931] = 21, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9160), 1, + ACTIONS(9108), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8337), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8690), 1, + STATE(8755), 1, sym_user_type, - STATE(8958), 1, + STATE(8823), 1, sym_parameter, - STATE(9450), 1, + STATE(9393), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9005), 4, + STATE(9072), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564160,14 +564100,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92481] = 3, + [92009] = 3, + ACTIONS(4382), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4384), 32, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [92051] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 2, + ACTIONS(9038), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5185), 31, + ACTIONS(9040), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -564199,14 +564178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92523] = 3, + [92093] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9080), 2, + ACTIONS(9034), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(9082), 31, + ACTIONS(9036), 31, anon_sym_val, anon_sym_var, anon_sym_get, @@ -564238,54 +564217,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [92565] = 20, - ACTIONS(7374), 1, + [92135] = 21, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9108), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8338), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(9046), 1, - sym_variable_declaration, - STATE(9732), 1, + STATE(8755), 1, + sym_user_type, + STATE(8823), 1, + sym_parameter, + STATE(9393), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9737), 4, + STATE(8992), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564293,53 +564274,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92640] = 19, - ACTIONS(7374), 1, + [92213] = 20, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9108), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8337), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9361), 5, + STATE(8823), 5, sym_parameter, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564347,109 +564330,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92713] = 20, - ACTIONS(7374), 1, + [92289] = 21, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9108), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8338), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(9012), 1, - sym_variable_declaration, - STATE(9732), 1, + STATE(8755), 1, + sym_user_type, + STATE(8823), 1, + sym_parameter, + STATE(9393), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9737), 4, + STATE(8924), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92367] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9044), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9046), 31, + anon_sym_val, + anon_sym_var, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [92788] = 20, - ACTIONS(7374), 1, + sym__alpha_identifier, + [92409] = 21, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9108), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8338), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8858), 1, - sym_variable_declaration, - STATE(9732), 1, + STATE(8755), 1, + sym_user_type, + STATE(8823), 1, + sym_parameter, + STATE(9393), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9737), 4, + STATE(9002), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564457,109 +564483,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [92863] = 20, - ACTIONS(7374), 1, + [92487] = 3, + ACTIONS(4321), 1, + sym_property_modifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4323), 32, + anon_sym_AT, + anon_sym_COLON, + anon_sym_constructor, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_while, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [92529] = 21, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9108), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(8338), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8872), 1, - sym_variable_declaration, - STATE(9732), 1, + STATE(8755), 1, + sym_user_type, + STATE(8823), 1, + sym_parameter, + STATE(9393), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9737), 4, + STATE(8852), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [92607] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4236), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LPAREN, + sym_label, + ACTIONS(4234), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [92938] = 20, - ACTIONS(7374), 1, + [92649] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8338), 1, + STATE(8336), 1, sym_simple_identifier, - STATE(8954), 1, - sym_variable_declaration, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9737), 4, + STATE(9245), 5, + sym_parameter, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564567,54 +564672,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93013] = 20, - ACTIONS(7374), 1, + [92722] = 20, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(8338), 1, + STATE(8342), 1, sym_simple_identifier, - STATE(8977), 1, + STATE(8939), 1, sym_variable_declaration, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9737), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564622,52 +564727,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93088] = 19, - ACTIONS(255), 1, + [92797] = 20, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(8149), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(8322), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(8342), 1, + sym_simple_identifier, + STATE(8914), 1, + sym_variable_declaration, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3109), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564675,52 +564782,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93160] = 19, - ACTIONS(7374), 1, + [92872] = 20, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(8342), 1, + sym_simple_identifier, + STATE(8835), 1, + sym_variable_declaration, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8764), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564728,105 +564837,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93232] = 19, - ACTIONS(255), 1, + [92947] = 20, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(8149), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(8322), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(8342), 1, + sym_simple_identifier, + STATE(9021), 1, + sym_variable_declaration, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3839), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1437), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [93304] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9168), 1, - anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, - sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4554), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5406), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564834,52 +564892,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93376] = 19, - ACTIONS(431), 1, + [93022] = 20, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(3370), 1, - sym_user_type, - STATE(6410), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8884), 1, + sym_variable_declaration, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, - sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + sym_line_comment, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3648), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564887,52 +564947,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93448] = 19, - ACTIONS(557), 1, + [93097] = 20, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, - sym_simple_identifier, - STATE(2864), 1, - sym_user_type, - STATE(6424), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(8342), 1, + sym_simple_identifier, + STATE(8802), 1, + sym_variable_declaration, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3053), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564940,52 +565002,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93520] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [93172] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9112), 1, + sym__alpha_identifier, + ACTIONS(9114), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9118), 1, anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9120), 1, + sym__backtick_identifier, + STATE(2819), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2872), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2888), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(3078), 1, sym_user_type, - STATE(6440), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9667), 1, sym_parenthesized_user_type, + STATE(10110), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3080), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5310), 4, + STATE(3454), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -564993,52 +565055,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93592] = 19, - ACTIONS(255), 1, + [93244] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, sym_simple_identifier, - STATE(3027), 1, - sym_user_type, - STATE(6413), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6462), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(1878), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7375), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3842), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1437), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565046,52 +565108,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93664] = 19, - ACTIONS(115), 1, + [93316] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6440), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5493), 4, + STATE(836), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565099,52 +565161,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93736] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [93388] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(4627), 1, sym_user_type, STATE(6413), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4213), 4, + STATE(5186), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565152,105 +565214,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93808] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + [93460] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, - sym__lexical_identifier, - STATE(6495), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2710), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7358), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [93880] = 19, - ACTIONS(7), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5199), 4, + STATE(8736), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565258,52 +565267,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [93952] = 19, - ACTIONS(7374), 1, + [93532] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6428), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8333), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9816), 1, sym_function_type_parameters, + STATE(9930), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9280), 4, + STATE(8383), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565311,52 +565320,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94024] = 19, - ACTIONS(431), 1, + [93604] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6488), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2709), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7357), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(8637), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565364,52 +565373,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94096] = 19, - ACTIONS(7374), 1, + [93676] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9656), 4, + STATE(10069), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565417,52 +565426,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94168] = 19, - ACTIONS(7), 1, + [93748] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6414), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5547), 4, + STATE(853), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565470,52 +565479,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94240] = 19, - ACTIONS(115), 1, + [93820] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6440), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9684), 1, sym_parenthesized_user_type, + STATE(10100), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5500), 4, + STATE(3632), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565523,52 +565532,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94312] = 19, - ACTIONS(115), 1, + [93892] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6440), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9684), 1, sym_parenthesized_user_type, + STATE(10100), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5502), 4, + STATE(3636), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565576,52 +565585,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94384] = 19, - ACTIONS(115), 1, + [93964] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(8322), 1, sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4680), 4, + STATE(8478), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565629,52 +565638,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94456] = 19, - ACTIONS(7381), 1, + [94036] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - ACTIONS(9200), 1, - sym__backtick_identifier, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6439), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9601), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4933), 4, + STATE(3639), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565682,52 +565691,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94528] = 19, - ACTIONS(115), 1, + [94108] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(3438), 1, sym_user_type, - STATE(6440), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9706), 1, sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5326), 4, + STATE(4100), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565735,52 +565744,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94600] = 19, - ACTIONS(7), 1, + [94180] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4862), 1, + STATE(3438), 1, sym_user_type, - STATE(6414), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9706), 1, sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5566), 4, + STATE(4104), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565788,52 +565797,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94672] = 19, - ACTIONS(7374), 1, + [94252] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9648), 4, + STATE(8721), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565841,52 +565850,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94744] = 19, - ACTIONS(255), 1, + [94324] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(3438), 1, sym_user_type, - STATE(6413), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3858), 4, + STATE(4106), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565894,52 +565903,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94816] = 19, - ACTIONS(7374), 1, + [94396] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9737), 4, + STATE(8731), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -565947,52 +565956,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94888] = 19, - ACTIONS(7), 1, + [94468] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5099), 4, + STATE(8729), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566000,52 +566009,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [94960] = 19, - ACTIONS(431), 1, + [94540] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6525), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2323), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7583), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(8720), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566053,52 +566062,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95032] = 19, - ACTIONS(7374), 1, + [94612] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9690), 4, + STATE(8716), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566106,52 +566115,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95104] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [94684] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + ACTIONS(9148), 1, + anon_sym_LPAREN, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(3438), 1, sym_user_type, - STATE(9732), 1, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(3440), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(4129), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1600), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [94756] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, + sym_user_type, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, + sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8777), 4, + STATE(854), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566159,52 +566221,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95176] = 19, - ACTIONS(255), 1, + [94828] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, - anon_sym_LPAREN, STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, sym_simple_identifier, - STATE(6484), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6504), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2640), 2, + STATE(2029), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7382), 2, + STATE(7384), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566212,52 +566274,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95248] = 19, - ACTIONS(115), 1, + [94900] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(8322), 1, sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5389), 4, + STATE(8644), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566265,52 +566327,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95320] = 19, - ACTIONS(115), 1, + [94972] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(3438), 1, sym_user_type, - STATE(6440), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9706), 1, sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5372), 4, + STATE(4143), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566318,52 +566380,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95392] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [95044] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9260), 4, + STATE(4631), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566371,15 +566433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95464] = 3, + [95116] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7134), 3, + ACTIONS(4874), 3, anon_sym_AT, anon_sym_LBRACE, sym_label, - ACTIONS(7132), 28, + ACTIONS(4872), 28, anon_sym_get, anon_sym_set, anon_sym_suspend, @@ -566408,52 +566470,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [95504] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [95156] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6492), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(2726), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7576), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8686), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566461,52 +566523,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95576] = 19, - ACTIONS(431), 1, + [95228] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(2869), 1, sym_user_type, - STATE(6410), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3645), 4, + STATE(2863), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566514,52 +566576,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95648] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [95300] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8738), 4, + STATE(4960), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566567,52 +566629,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95720] = 19, - ACTIONS(431), 1, + [95372] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6521), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(3365), 1, sym__simple_user_type, + STATE(3438), 1, + sym_user_type, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, + sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2321), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7551), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(3440), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(4253), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566620,52 +566682,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95792] = 19, - ACTIONS(7374), 1, + [95444] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8735), 4, + STATE(8674), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566673,52 +566735,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95864] = 19, - ACTIONS(431), 1, + [95516] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2999), 1, + sym_user_type, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, + sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3000), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3468), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95588] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9144), 1, + anon_sym_LPAREN, + ACTIONS(9146), 1, + anon_sym_dynamic, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(2869), 1, sym_user_type, - STATE(6410), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3643), 4, + STATE(2936), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566726,52 +566841,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [95936] = 19, - ACTIONS(7374), 1, + [95660] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8734), 4, + STATE(8680), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566779,105 +566894,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96008] = 19, - ACTIONS(431), 1, + [95732] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(2869), 1, sym_user_type, - STATE(6410), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3642), 4, + STATE(2865), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1858), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [95804] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4870), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4868), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [96080] = 19, - ACTIONS(431), 1, + [95844] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(2999), 1, sym_user_type, - STATE(6410), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3640), 4, + STATE(3744), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566885,52 +567037,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96152] = 19, - ACTIONS(557), 1, + [95916] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3830), 4, + STATE(8743), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566938,52 +567090,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96224] = 19, - ACTIONS(557), 1, + [95988] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3845), 4, + STATE(8702), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -566991,52 +567143,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96296] = 19, - ACTIONS(7374), 1, + [96060] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(9519), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [96132] = 19, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, + sym_simple_identifier, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, + sym_user_type, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, + sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8754), 4, + STATE(3742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567044,52 +567249,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96368] = 19, - ACTIONS(557), 1, + [96204] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6424), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3204), 4, + STATE(3255), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567097,52 +567302,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96440] = 19, - ACTIONS(557), 1, + [96276] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6424), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3851), 4, + STATE(3737), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567150,52 +567355,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96512] = 19, - ACTIONS(255), 1, + [96348] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9152), 1, anon_sym_LPAREN, - STATE(2881), 1, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(6491), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(4552), 1, + sym_user_type, + STATE(6431), 1, sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + STATE(9911), 1, + sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2374), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7515), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(4570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1437), 7, + STATE(4874), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567203,52 +567408,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96584] = 19, - ACTIONS(7374), 1, + [96420] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8714), 4, + STATE(9797), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567256,52 +567461,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96656] = 19, - ACTIONS(255), 1, + [96492] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6413), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4220), 4, + STATE(3242), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567309,52 +567514,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96728] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + [96564] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, anon_sym_LPAREN, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2961), 1, - sym_simple_identifier, - STATE(6473), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2369), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7568), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1437), 7, + STATE(8677), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567362,52 +567567,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96800] = 19, - ACTIONS(255), 1, + [96636] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(4552), 1, sym_user_type, - STATE(6413), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3740), 4, + STATE(4871), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567415,52 +567620,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96872] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [96708] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8728), 4, + STATE(5214), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567468,52 +567673,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [96944] = 19, - ACTIONS(255), 1, + [96780] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(4552), 1, sym_user_type, - STATE(6413), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3744), 4, + STATE(4869), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567521,52 +567726,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97016] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [96852] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8742), 4, + STATE(4868), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567574,52 +567779,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97088] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [96924] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9114), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9118), 1, + anon_sym_dynamic, + ACTIONS(9120), 1, + sym__backtick_identifier, + STATE(2819), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(2872), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(2888), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(3078), 1, sym_user_type, - STATE(9732), 1, + STATE(6426), 1, + sym_type_modifiers, + STATE(9667), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10110), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3080), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8746), 4, + STATE(3637), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567627,52 +567832,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97160] = 19, - ACTIONS(7381), 1, + [96996] = 19, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - ACTIONS(9212), 1, - sym__backtick_identifier, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6409), 1, - sym_type_modifiers, - STATE(7861), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8322), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(9666), 1, - sym_parenthesized_user_type, - STATE(9684), 1, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9319), 4, + STATE(4866), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567680,52 +567885,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97232] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [97068] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, - anon_sym_LPAREN, ACTIONS(9166), 1, + sym__alpha_identifier, + ACTIONS(9168), 1, + anon_sym_LPAREN, + ACTIONS(9172), 1, anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9174), 1, + sym__backtick_identifier, + STATE(5611), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(5616), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(5755), 1, + sym__simple_user_type, + STATE(5789), 1, sym_user_type, - STATE(6413), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9736), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9811), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(5793), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3747), 4, + STATE(5831), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567733,105 +567938,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97304] = 19, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9214), 1, - sym__alpha_identifier, - ACTIONS(9216), 1, - anon_sym_LPAREN, - ACTIONS(9220), 1, - sym__backtick_identifier, - STATE(2856), 1, - sym__lexical_identifier, - STATE(2956), 1, - sym_simple_identifier, - STATE(6461), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + [97140] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2290), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7450), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9218), 7, + ACTIONS(4866), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4864), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [97376] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [97180] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + ACTIONS(9148), 1, + anon_sym_LPAREN, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(3438), 1, sym_user_type, - STATE(9732), 1, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8755), 4, + STATE(4157), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567839,52 +568028,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97448] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + [97252] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9166), 1, + sym__alpha_identifier, + ACTIONS(9168), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9172), 1, + anon_sym_dynamic, + ACTIONS(9174), 1, + sym__backtick_identifier, + STATE(5611), 1, sym__lexical_identifier, - STATE(823), 1, + STATE(5616), 1, sym_simple_identifier, - STATE(6496), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(5755), 1, sym__simple_user_type, + STATE(5789), 1, + sym_user_type, + STATE(6440), 1, + sym_type_modifiers, + STATE(9736), 1, + sym_parenthesized_user_type, + STATE(9811), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(617), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7415), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(5793), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(5817), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567892,52 +568081,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97520] = 19, - ACTIONS(7374), 1, + [97324] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9694), 4, + STATE(8714), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567945,52 +568134,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97592] = 19, - ACTIONS(7), 1, + [97396] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6414), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4902), 4, + STATE(4131), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -567998,52 +568187,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97664] = 19, - ACTIONS(255), 1, + [97468] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(3438), 1, sym_user_type, - STATE(6413), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3748), 4, + STATE(4224), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568051,52 +568240,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97736] = 19, - ACTIONS(255), 1, + [97540] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6428), 1, + sym_type_modifiers, + STATE(6584), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9816), 1, sym_function_type_parameters, + STATE(9930), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3753), 4, + STATE(8314), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568104,52 +568293,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97808] = 19, - ACTIONS(345), 1, + [97612] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(855), 1, + STATE(3438), 1, sym_user_type, - STATE(6423), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1094), 4, + STATE(4183), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568157,52 +568346,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97880] = 19, - ACTIONS(345), 1, + [97684] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(855), 1, + STATE(3438), 1, sym_user_type, - STATE(6423), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1089), 4, + STATE(4188), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568210,52 +568399,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [97952] = 19, - ACTIONS(345), 1, + [97756] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(855), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6423), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1088), 4, + STATE(2820), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568263,52 +568452,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98024] = 19, - ACTIONS(431), 1, + [97828] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6468), 1, + STATE(6525), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2410), 2, + STATE(2425), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7537), 2, + STATE(7508), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568316,52 +568505,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98096] = 19, - ACTIONS(431), 1, + [97900] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6466), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2413), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7531), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(9419), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568369,52 +568558,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98168] = 19, - ACTIONS(7381), 1, + [97972] = 19, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - ACTIONS(9200), 1, - sym__backtick_identifier, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(3438), 1, sym_user_type, - STATE(6439), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9601), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4904), 4, + STATE(4191), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568422,52 +568611,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98240] = 19, - ACTIONS(431), 1, + [98044] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(8322), 1, sym_user_type, - STATE(6410), 1, - sym_type_modifiers, - STATE(9521), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3865), 4, + STATE(8744), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568475,52 +568664,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98312] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [98116] = 19, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9178), 1, + anon_sym_LPAREN, ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9202), 1, - anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, sym_simple_identifier, - STATE(6447), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(6434), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7972), 1, sym__simple_user_type, + STATE(8325), 1, + sym_user_type, + STATE(9876), 1, + sym_parenthesized_user_type, + STATE(9935), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2434), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7486), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(5744), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1437), 7, + STATE(8349), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568528,52 +568717,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98384] = 19, - ACTIONS(7374), 1, + [98188] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9532), 4, + STATE(8701), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568581,52 +568770,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98456] = 19, - ACTIONS(557), 1, + [98260] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3624), 4, + STATE(8673), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568634,52 +568823,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98528] = 19, - ACTIONS(7374), 1, + [98332] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8712), 4, + STATE(8700), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568687,105 +568876,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98600] = 19, - ACTIONS(345), 1, + [98404] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9222), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, - sym_simple_identifier, - STATE(6465), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(566), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7447), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [98672] = 19, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - ACTIONS(9212), 1, - sym__backtick_identifier, - STATE(5678), 1, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(6409), 1, - sym_type_modifiers, - STATE(7861), 1, - sym__simple_user_type, - STATE(8322), 1, + STATE(2869), 1, sym_user_type, - STATE(9666), 1, - sym_parenthesized_user_type, + STATE(6417), 1, + sym_type_modifiers, STATE(9684), 1, + sym_parenthesized_user_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5792), 4, + STATE(2873), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568793,52 +568929,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98744] = 19, - ACTIONS(255), 1, + [98476] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6413), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4198), 4, + STATE(2916), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568846,52 +568982,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98816] = 19, - ACTIONS(557), 1, + [98548] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6424), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3623), 4, + STATE(844), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568899,52 +569035,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98888] = 19, - ACTIONS(7374), 1, + [98620] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8709), 4, + STATE(9834), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -568952,105 +569088,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [98960] = 19, - ACTIONS(345), 1, + [98692] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9158), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, - sym_simple_identifier, - STATE(6464), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(560), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7451), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [99032] = 19, - ACTIONS(7374), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8707), 4, + STATE(5182), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569058,52 +569141,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99104] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [98764] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9112), 1, + sym__alpha_identifier, + ACTIONS(9114), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9118), 1, anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9120), 1, + sym__backtick_identifier, + STATE(2819), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2872), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(2888), 1, + sym__simple_user_type, + STATE(3078), 1, sym_user_type, - STATE(6414), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9667), 1, sym_parenthesized_user_type, + STATE(10110), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3080), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5418), 4, + STATE(3695), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569111,52 +569194,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99176] = 19, - ACTIONS(7), 1, + [98836] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6414), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5419), 4, + STATE(3538), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569164,52 +569247,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99248] = 19, - ACTIONS(7381), 1, + [98908] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9228), 1, - sym__alpha_identifier, - ACTIONS(9230), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9234), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - ACTIONS(9236), 1, - sym__backtick_identifier, - STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(5756), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4668), 1, sym__simple_user_type, - STATE(5772), 1, + STATE(4779), 1, sym_user_type, - STATE(6429), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9466), 1, - sym_parenthesized_user_type, - STATE(9895), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5765), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5839), 4, + STATE(4953), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9232), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569217,52 +569300,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99320] = 19, - ACTIONS(557), 1, + [98980] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3622), 4, + STATE(8719), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569270,52 +569353,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99392] = 19, - ACTIONS(7), 1, + [99052] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6414), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5413), 4, + STATE(980), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569323,52 +569406,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99464] = 19, - ACTIONS(7), 1, + [99124] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5404), 4, + STATE(8675), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569376,52 +569459,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99536] = 19, - ACTIONS(7), 1, + [99196] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5393), 4, + STATE(8684), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569429,52 +569512,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99608] = 19, - ACTIONS(431), 1, + [99268] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(2999), 1, sym_user_type, - STATE(6410), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3866), 4, + STATE(3515), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569482,52 +569565,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99680] = 19, - ACTIONS(7374), 1, + [99340] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8705), 4, + STATE(8698), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569535,52 +569618,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99752] = 19, - ACTIONS(557), 1, + [99412] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6424), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3621), 4, + STATE(2909), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569588,52 +569671,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99824] = 19, - ACTIONS(7), 1, + [99484] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5205), 4, + STATE(8676), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569641,52 +569724,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99896] = 19, - ACTIONS(7374), 1, + [99556] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8284), 4, + STATE(8683), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569694,52 +569777,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [99968] = 19, - ACTIONS(557), 1, + [99628] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6424), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3620), 4, + STATE(2900), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569747,52 +569830,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100040] = 19, - ACTIONS(255), 1, + [99700] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6413), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3433), 4, + STATE(2875), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569800,52 +569883,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100112] = 19, - ACTIONS(345), 1, + [99772] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9162), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(823), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(6446), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(2943), 1, sym__simple_user_type, + STATE(2999), 1, + sym_user_type, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, + sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(547), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7525), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(3000), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(3347), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569853,52 +569936,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100184] = 19, - ACTIONS(255), 1, + [99844] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9162), 1, anon_sym_LPAREN, - STATE(2881), 1, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(6463), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(2943), 1, sym__simple_user_type, + STATE(2999), 1, + sym_user_type, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, + sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2445), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7508), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(3000), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1437), 7, + STATE(3534), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -569906,105 +569989,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100256] = 19, - ACTIONS(7374), 1, + [99916] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8831), 4, + STATE(8728), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [99988] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4878), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4876), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [100328] = 19, - ACTIONS(345), 1, + [100028] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9158), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(823), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(6456), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(4668), 1, sym__simple_user_type, + STATE(4779), 1, + sym_user_type, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, + sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(568), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7540), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(4778), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(4934), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570012,52 +570132,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100400] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + [100100] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, anon_sym_LPAREN, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2961), 1, - sym_simple_identifier, - STATE(6489), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2641), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7399), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1437), 7, + STATE(8756), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570065,52 +570185,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100472] = 19, - ACTIONS(431), 1, + [100172] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(830), 1, sym_user_type, - STATE(6410), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3876), 4, + STATE(842), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570118,52 +570238,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100544] = 19, - ACTIONS(115), 1, + [100244] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(8322), 1, sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8718), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [100316] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5047), 4, + STATE(8671), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570171,52 +570344,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100616] = 19, - ACTIONS(255), 1, + [100388] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, - anon_sym_LPAREN, STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, sym_simple_identifier, - STATE(6458), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6461), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2444), 2, + STATE(2657), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7363), 2, + STATE(7572), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570224,52 +570397,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100688] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, + [100460] = 19, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, + STATE(4552), 1, sym_user_type, - STATE(6440), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9803), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5048), 4, + STATE(4596), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570277,52 +570450,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100760] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [100532] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6456), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(2334), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7446), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9455), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570330,52 +570503,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100832] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, + [100604] = 19, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, + STATE(4552), 1, sym_user_type, - STATE(6440), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9803), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5055), 4, + STATE(4586), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570383,52 +570556,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100904] = 19, - ACTIONS(7), 1, + [100676] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4552), 1, sym_user_type, - STATE(6414), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5421), 4, + STATE(4578), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570436,52 +570609,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [100976] = 19, - ACTIONS(7381), 1, + [100748] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9192), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9194), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - anon_sym_dynamic, - ACTIONS(9200), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4529), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(8322), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9601), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5340), 4, + STATE(9435), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570489,52 +570662,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101048] = 19, - ACTIONS(255), 1, + [100820] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3434), 4, + STATE(9487), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570542,52 +570715,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101120] = 19, - ACTIONS(431), 1, + [100892] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(2999), 1, sym_user_type, - STATE(6410), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4036), 4, + STATE(3533), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570595,52 +570768,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101192] = 19, - ACTIONS(345), 1, + [100964] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(855), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6423), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(886), 4, + STATE(3529), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570648,52 +570821,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101264] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [101036] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6434), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8325), 1, sym_user_type, - STATE(9732), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8645), 4, + STATE(5806), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570701,52 +570874,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101336] = 19, - ACTIONS(7381), 1, + [101108] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - ACTIONS(9212), 1, - sym__backtick_identifier, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(6409), 1, - sym_type_modifiers, - STATE(7861), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4668), 1, sym__simple_user_type, - STATE(8322), 1, + STATE(4779), 1, sym_user_type, - STATE(9666), 1, - sym_parenthesized_user_type, - STATE(9684), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8342), 4, + STATE(4929), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570754,52 +570927,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101408] = 19, - ACTIONS(345), 1, + [101180] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + STATE(2881), 1, + sym_simple_identifier, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(6521), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, - STATE(821), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2635), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7555), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [101252] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, sym_simple_identifier, - STATE(855), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6423), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(904), 4, + STATE(985), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570807,52 +571033,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101480] = 19, - ACTIONS(7374), 1, + [101324] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8634), 4, + STATE(8668), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570860,52 +571086,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101552] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [101396] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6465), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(2324), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7546), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8627), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570913,52 +571139,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101624] = 19, - ACTIONS(7), 1, + [101468] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4862), 1, + STATE(3438), 1, sym_user_type, - STATE(6414), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9706), 1, sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5140), 4, + STATE(3801), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -570966,52 +571192,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101696] = 19, - ACTIONS(345), 1, + [101540] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(855), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6423), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(875), 4, + STATE(1117), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571019,52 +571245,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101768] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [101612] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + ACTIONS(9148), 1, + anon_sym_LPAREN, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(3438), 1, sym_user_type, - STATE(9732), 1, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8741), 4, + STATE(4228), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571072,52 +571298,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101840] = 19, - ACTIONS(115), 1, + [101684] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6440), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4973), 4, + STATE(1309), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571125,43 +571351,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101912] = 19, - ACTIONS(345), 1, + [101756] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(855), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6423), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, @@ -571170,7 +571396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571178,52 +571404,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [101984] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [101828] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(6434), 1, + sym_type_modifiers, + STATE(7972), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(8325), 1, sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9876), 1, sym_parenthesized_user_type, + STATE(9935), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4587), 4, + STATE(8346), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571231,52 +571457,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102056] = 19, - ACTIONS(7), 1, + [101900] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6414), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5449), 4, + STATE(1295), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571284,52 +571510,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102128] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + [101972] = 19, + ACTIONS(9030), 1, anon_sym_AT, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9186), 1, + sym__alpha_identifier, ACTIONS(9188), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + ACTIONS(9192), 1, + sym__backtick_identifier, + STATE(5679), 1, sym_simple_identifier, - STATE(4862), 1, - sym_user_type, - STATE(6414), 1, + STATE(5682), 1, + sym__lexical_identifier, + STATE(6478), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(5483), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7540), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5457), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1908), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9190), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571337,52 +571563,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102200] = 19, - ACTIONS(7), 1, + [102044] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6414), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5420), 4, + STATE(903), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571390,52 +571616,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102272] = 19, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9214), 1, + [102116] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9216), 1, - anon_sym_LPAREN, - ACTIONS(9220), 1, + ACTIONS(419), 1, sym__backtick_identifier, - STATE(2856), 1, - sym__lexical_identifier, - STATE(2956), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, sym_simple_identifier, - STATE(6483), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, + sym_user_type, + STATE(6432), 1, sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + STATE(9660), 1, + sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2283), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7381), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(840), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9218), 7, + STATE(1306), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571443,52 +571669,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102344] = 19, - ACTIONS(115), 1, + [102188] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, - anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, - sym_user_type, - STATE(6440), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(6467), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2603), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7390), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4578), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571496,52 +571722,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102416] = 19, - ACTIONS(7), 1, + [102260] = 19, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9194), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2882), 1, sym_simple_identifier, - STATE(4862), 1, - sym_user_type, - STATE(6414), 1, + STATE(6510), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2253), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7387), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5095), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1908), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571549,52 +571775,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102488] = 19, - ACTIONS(345), 1, + [102332] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(855), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6423), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(907), 4, + STATE(924), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571602,52 +571828,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102560] = 19, - ACTIONS(7), 1, + [102404] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6414), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5424), 4, + STATE(2973), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571655,52 +571881,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102632] = 19, + [102476] = 19, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2999), 1, sym_user_type, - STATE(6440), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4601), 4, + STATE(2998), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571708,52 +571934,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102704] = 19, - ACTIONS(7374), 1, + [102548] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8638), 4, + STATE(8967), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571761,105 +571987,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102776] = 19, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9238), 1, - sym__alpha_identifier, - ACTIONS(9240), 1, - anon_sym_LPAREN, - ACTIONS(9244), 1, - sym__backtick_identifier, - STATE(5680), 1, - sym__lexical_identifier, - STATE(5682), 1, - sym_simple_identifier, - STATE(6526), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + [102620] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5490), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7433), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9242), 7, + ACTIONS(7147), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7145), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [102848] = 19, - ACTIONS(7374), 1, + [102660] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8644), 4, + STATE(8686), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571867,52 +572077,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102920] = 19, - ACTIONS(345), 1, + [102732] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(6519), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(6488), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(598), 2, + STATE(2671), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7434), 2, + STATE(7385), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571920,52 +572130,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [102992] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [102804] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6434), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8325), 1, sym_user_type, - STATE(9732), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8646), 4, + STATE(9359), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -571973,52 +572183,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103064] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [102876] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9200), 1, + anon_sym_dynamic, + ACTIONS(9202), 1, + sym__backtick_identifier, + STATE(6427), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(8319), 1, + sym__lexical_identifier, + STATE(8329), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8525), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8868), 1, sym_user_type, - STATE(9732), 1, + STATE(9779), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9851), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8850), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8649), 4, + STATE(8478), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572026,52 +572236,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103136] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [102948] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9200), 1, + anon_sym_dynamic, + ACTIONS(9202), 1, + sym__backtick_identifier, + STATE(6427), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(8319), 1, + sym__lexical_identifier, + STATE(8329), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8525), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8868), 1, sym_user_type, - STATE(9732), 1, + STATE(9779), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9851), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8850), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8653), 4, + STATE(8314), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572079,52 +572289,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103208] = 19, - ACTIONS(255), 1, + [103020] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4143), 4, + STATE(9917), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572132,52 +572342,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103280] = 19, - ACTIONS(345), 1, + [103092] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(855), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6423), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1238), 4, + STATE(2992), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572185,52 +572395,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103352] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [103164] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(823), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(6487), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(585), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7593), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8757), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572238,105 +572448,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103424] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, - anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4862), 1, - sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, - sym_parenthesized_user_type, + [103236] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5453), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1908), 7, + ACTIONS(7093), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7091), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [103496] = 19, - ACTIONS(7), 1, + [103276] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6414), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9684), 1, sym_parenthesized_user_type, + STATE(10100), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5228), 4, + STATE(3512), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572344,52 +572538,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103568] = 19, - ACTIONS(7374), 1, + [103348] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9662), 4, + STATE(8730), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572397,52 +572591,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103640] = 19, - ACTIONS(7374), 1, + [103420] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8692), 4, + STATE(8687), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572450,52 +572644,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103712] = 19, - ACTIONS(7), 1, + [103492] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4862), 1, + STATE(3438), 1, sym_user_type, - STATE(6414), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9706), 1, sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5445), 4, + STATE(3820), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572503,52 +572697,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103784] = 19, - ACTIONS(431), 1, + [103564] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(6515), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(2869), 1, + sym_user_type, + STATE(6417), 1, sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + STATE(9684), 1, + sym_parenthesized_user_type, + STATE(10100), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2677), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7444), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(2868), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(3197), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572556,52 +572750,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103856] = 19, - ACTIONS(7), 1, + [103636] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5423), 4, + STATE(8688), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572609,52 +572803,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [103928] = 19, - ACTIONS(557), 1, + [103708] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6424), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3257), 4, + STATE(5219), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572662,52 +572856,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104000] = 19, - ACTIONS(557), 1, + [103780] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6424), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2947), 4, + STATE(5225), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572715,52 +572909,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104072] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [103852] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2999), 1, sym_user_type, - STATE(9732), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8683), 4, + STATE(2989), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572768,52 +572962,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104144] = 19, - ACTIONS(7374), 1, + [103924] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8752), 4, + STATE(10032), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572821,52 +573015,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104216] = 19, - ACTIONS(557), 1, + [103996] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3237), 4, + STATE(8639), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572874,52 +573068,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104288] = 19, - ACTIONS(7381), 1, + [104068] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9214), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9248), 1, - anon_sym_dynamic, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2939), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, - STATE(3075), 1, + STATE(8322), 1, sym_user_type, - STATE(6438), 1, - sym_type_modifiers, - STATE(9700), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9917), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3111), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3445), 4, + STATE(8690), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9218), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572927,52 +573121,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104360] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [104140] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(823), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(6494), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(575), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7587), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8751), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -572980,52 +573174,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104432] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [104212] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2999), 1, sym_user_type, - STATE(9732), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8301), 4, + STATE(4099), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573033,52 +573227,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104504] = 19, - ACTIONS(255), 1, + [104284] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(3438), 1, sym_user_type, - STATE(6413), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3541), 4, + STATE(3765), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573086,52 +573280,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104576] = 19, - ACTIONS(431), 1, + [104356] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(8322), 1, sym_user_type, - STATE(6410), 1, - sym_type_modifiers, - STATE(9521), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3863), 4, + STATE(8711), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573139,52 +573333,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104648] = 19, - ACTIONS(7381), 1, + [104428] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9214), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9248), 1, - anon_sym_dynamic, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2939), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, - STATE(3075), 1, + STATE(8322), 1, sym_user_type, - STATE(6438), 1, - sym_type_modifiers, - STATE(9700), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9917), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3111), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3655), 4, + STATE(8912), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9218), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573192,52 +573386,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104720] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [104500] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8496), 4, + STATE(5006), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573245,52 +573439,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104792] = 19, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9214), 1, + [104572] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9248), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2939), 1, + STATE(2912), 1, + sym_simple_identifier, + STATE(2943), 1, sym__simple_user_type, - STATE(3075), 1, + STATE(2999), 1, sym_user_type, - STATE(6438), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9700), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9917), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3111), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3517), 4, + STATE(2980), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9218), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573298,52 +573492,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104864] = 19, - ACTIONS(115), 1, + [104644] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6440), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9684), 1, sym_parenthesized_user_type, + STATE(10100), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5059), 4, + STATE(3509), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573351,52 +573545,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [104936] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [104716] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9200), 1, + anon_sym_dynamic, + ACTIONS(9202), 1, + sym__backtick_identifier, + STATE(6427), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(8319), 1, + sym__lexical_identifier, + STATE(8329), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8525), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8868), 1, sym_user_type, - STATE(9732), 1, + STATE(9779), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9851), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8850), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8700), 4, + STATE(8316), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573404,52 +573598,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105008] = 19, - ACTIONS(115), 1, + [104788] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(8322), 1, sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5009), 4, + STATE(8732), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573457,52 +573651,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105080] = 19, - ACTIONS(7381), 1, + [104860] = 19, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9228), 1, - sym__alpha_identifier, - ACTIONS(9230), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9234), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - ACTIONS(9236), 1, - sym__backtick_identifier, - STATE(5611), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5615), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(5756), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(5772), 1, + STATE(3438), 1, sym_user_type, - STATE(6429), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9466), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9895), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5765), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5817), 4, + STATE(3894), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9232), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573510,52 +573704,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105152] = 19, - ACTIONS(557), 1, + [104932] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, sym_user_type, - STATE(6424), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2910), 4, + STATE(4014), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573563,52 +573757,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105224] = 19, - ACTIONS(7374), 1, + [105004] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8640), 4, + STATE(8733), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573616,52 +573810,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105296] = 19, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + [105076] = 19, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(9206), 1, - anon_sym_LPAREN, - ACTIONS(9210), 1, - anon_sym_dynamic, - ACTIONS(9212), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9194), 1, + anon_sym_LPAREN, + STATE(2819), 1, sym__lexical_identifier, - STATE(6409), 1, + STATE(2882), 1, + sym_simple_identifier, + STATE(6475), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7861), 1, + STATE(7850), 1, sym__simple_user_type, - STATE(8322), 1, - sym_user_type, - STATE(9666), 1, - sym_parenthesized_user_type, - STATE(9684), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2303), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7361), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5801), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9208), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573669,52 +573863,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105368] = 19, - ACTIONS(431), 1, + [105148] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, sym_user_type, - STATE(6410), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4158), 4, + STATE(4164), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573722,105 +573916,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105440] = 19, - ACTIONS(7374), 1, + [105220] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8779), 4, + STATE(8657), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [105292] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7135), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7133), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [105512] = 19, - ACTIONS(345), 1, + [105332] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, - anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + sym__lexical_identifier, + STATE(823), 1, sym_simple_identifier, - STATE(855), 1, - sym_user_type, - STATE(6423), 1, + STATE(6513), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(555), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7563), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(834), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573828,52 +574059,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105584] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [105404] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7105), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7103), 28, + anon_sym_get, + anon_sym_set, anon_sym_suspend, - ACTIONS(8656), 1, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [105444] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9144), 1, + anon_sym_LPAREN, + ACTIONS(9146), 1, + anon_sym_dynamic, + STATE(2783), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(9732), 1, + STATE(6417), 1, + sym_type_modifiers, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8719), 4, + STATE(2926), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573881,52 +574149,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105656] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [105516] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6433), 1, - sym_type_modifiers, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + ACTIONS(9144), 1, + anon_sym_LPAREN, + ACTIONS(9146), 1, + anon_sym_dynamic, + STATE(2783), 1, sym__simple_user_type, - STATE(8349), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(9771), 1, + STATE(6417), 1, + sym_type_modifiers, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9776), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8284), 4, + STATE(2918), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573934,52 +574202,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105728] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [105588] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + ACTIONS(9140), 1, + anon_sym_dynamic, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4627), 1, sym_user_type, - STATE(9732), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8629), 4, + STATE(4852), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -573987,52 +574255,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105800] = 19, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9214), 1, + [105660] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9246), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9248), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2817), 1, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, sym_simple_identifier, - STATE(2856), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(2939), 1, - sym__simple_user_type, - STATE(3075), 1, + STATE(2869), 1, sym_user_type, - STATE(6438), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9700), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9917), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3111), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3662), 4, + STATE(3500), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9218), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574040,52 +574308,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105872] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [105732] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9144), 1, + anon_sym_LPAREN, + ACTIONS(9146), 1, + anon_sym_dynamic, + STATE(2783), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(9732), 1, + STATE(6417), 1, + sym_type_modifiers, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8665), 4, + STATE(2915), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574093,52 +574361,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [105944] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [105804] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + ACTIONS(9148), 1, + anon_sym_LPAREN, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(3438), 1, sym_user_type, - STATE(9732), 1, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8685), 4, + STATE(3532), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574146,142 +574414,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106016] = 19, - ACTIONS(7374), 1, + [105876] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8756), 4, + STATE(8738), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [106088] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4122), 14, - anon_sym_by, - anon_sym_where, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [105948] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(4124), 17, - anon_sym_AT, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_SEMI, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - [106128] = 19, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, sym_user_type, - STATE(6424), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2882), 4, + STATE(4150), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574289,52 +574520,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106200] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [106020] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(823), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(6527), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(550), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7557), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8747), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574342,52 +574573,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106272] = 19, - ACTIONS(7374), 1, + [106092] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8743), 4, + STATE(8735), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574395,52 +574626,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106344] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [106164] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3370), 1, - sym_user_type, - STATE(6410), 1, + STATE(6434), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(7972), 1, + sym__simple_user_type, + STATE(8325), 1, + sym_user_type, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3957), 4, + STATE(5769), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574448,142 +574679,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106416] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [106236] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + ACTIONS(9148), 1, + anon_sym_LPAREN, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(3438), 1, sym_user_type, - STATE(9732), 1, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9089), 4, + STATE(3548), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [106488] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3990), 14, - anon_sym_by, - anon_sym_where, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [106308] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(3995), 17, - anon_sym_AT, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_SEMI, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, + ACTIONS(419), 1, sym__backtick_identifier, - [106528] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(9732), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8642), 4, + STATE(1149), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574591,52 +574785,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106600] = 19, - ACTIONS(7374), 1, + [106380] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8636), 4, + STATE(8697), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574644,52 +574838,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106672] = 19, - ACTIONS(345), 1, + [106452] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(855), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6423), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(839), 4, + STATE(3498), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574697,52 +574891,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106744] = 19, - ACTIONS(431), 1, + [106524] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(2869), 1, sym_user_type, - STATE(6410), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3736), 4, + STATE(3492), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574750,52 +574944,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106816] = 19, - ACTIONS(345), 1, + [106596] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + STATE(2881), 1, sym_simple_identifier, - STATE(855), 1, - sym_user_type, - STATE(6423), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6509), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2349), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7527), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(838), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574803,52 +574997,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106888] = 19, - ACTIONS(557), 1, + [106668] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, sym_user_type, - STATE(6424), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2901), 4, + STATE(3559), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574856,52 +575050,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [106960] = 19, - ACTIONS(7374), 1, + [106740] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8729), 4, + STATE(8693), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574909,52 +575103,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107032] = 19, - ACTIONS(557), 1, + [106812] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2906), 4, + STATE(9924), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -574962,52 +575156,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107104] = 19, - ACTIONS(345), 1, + [106884] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(837), 4, + STATE(9575), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575015,142 +575209,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107176] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [106956] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2999), 1, sym_user_type, - STATE(9732), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8731), 4, + STATE(3305), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [107248] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5215), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5213), 28, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [107288] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [107028] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(4627), 1, sym_user_type, - STATE(6440), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9676), 1, sym_parenthesized_user_type, + STATE(10127), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4710), 4, + STATE(4853), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575158,52 +575315,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107360] = 19, + [107100] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6414), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9544), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4938), 4, + STATE(5451), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575211,52 +575368,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107432] = 19, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9204), 1, + [107172] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9212), 1, - sym__backtick_identifier, - STATE(5678), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + STATE(2881), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6409), 1, + STATE(6511), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7861), 1, + STATE(7850), 1, sym__simple_user_type, - STATE(8322), 1, - sym_user_type, - STATE(9666), 1, - sym_parenthesized_user_type, - STATE(9684), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2316), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7531), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9433), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9208), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575264,52 +575421,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107504] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [107244] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(9732), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8626), 4, + STATE(1273), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575317,52 +575474,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107576] = 19, - ACTIONS(7374), 1, + [107316] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8775), 4, + STATE(8778), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575370,52 +575527,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107648] = 19, - ACTIONS(345), 1, + [107388] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(835), 4, + STATE(8649), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575423,52 +575580,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107720] = 19, - ACTIONS(7374), 1, + [107460] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8715), 4, + STATE(8692), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575476,52 +575633,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107792] = 19, - ACTIONS(431), 1, + [107532] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(2869), 1, sym_user_type, - STATE(6410), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4185), 4, + STATE(3244), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575529,52 +575686,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107864] = 19, - ACTIONS(255), 1, + [107604] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6413), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3317), 4, + STATE(1269), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575582,52 +575739,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [107936] = 19, - ACTIONS(7374), 1, + [107676] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8781), 4, + STATE(8764), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575635,52 +575792,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108008] = 19, - ACTIONS(345), 1, + [107748] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(855), 1, + STATE(3438), 1, sym_user_type, - STATE(6423), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1239), 4, + STATE(3592), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575688,52 +575845,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108080] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [107820] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2999), 1, sym_user_type, - STATE(9732), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8688), 4, + STATE(3435), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575741,52 +575898,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108152] = 19, - ACTIONS(7374), 1, + [107892] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8760), 4, + STATE(8691), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575794,105 +575951,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108224] = 19, - ACTIONS(431), 1, + [107964] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(8322), 1, sym_user_type, - STATE(6410), 1, - sym_type_modifiers, - STATE(9521), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(3834), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [108296] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9168), 1, - anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, - sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, - sym_parenthesized_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4554), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5060), 4, + STATE(8759), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575900,52 +576004,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108368] = 19, - ACTIONS(557), 1, + [108036] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6424), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2991), 4, + STATE(5170), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -575953,52 +576057,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108440] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [108108] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2999), 1, sym_user_type, - STATE(9732), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8770), 4, + STATE(3508), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576006,52 +576110,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108512] = 19, - ACTIONS(255), 1, + [108180] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9148), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(6486), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, + STATE(3438), 1, + sym_user_type, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, + sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2610), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7362), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(3440), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1437), 7, + STATE(3600), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576059,52 +576163,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108584] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [108252] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(9732), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8753), 4, + STATE(1264), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576112,52 +576216,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108656] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [108324] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2999), 1, sym_user_type, - STATE(9732), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8651), 4, + STATE(3337), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576165,52 +576269,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108728] = 19, - ACTIONS(7374), 1, + [108396] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8676), 4, + STATE(5809), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576218,52 +576322,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108800] = 19, - ACTIONS(431), 1, + [108468] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(830), 1, sym_user_type, - STATE(6410), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3554), 4, + STATE(1305), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576271,52 +576375,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108872] = 19, - ACTIONS(7), 1, + [108540] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5081), 4, + STATE(8753), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576324,52 +576428,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [108944] = 19, - ACTIONS(431), 1, + [108612] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(830), 1, sym_user_type, - STATE(6410), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3733), 4, + STATE(1240), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576377,52 +576481,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109016] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [108684] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8927), 4, + STATE(5194), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576430,52 +576534,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109088] = 19, - ACTIONS(431), 1, + [108756] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(830), 1, sym_user_type, - STATE(6410), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4147), 4, + STATE(1236), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576483,52 +576587,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109160] = 19, - ACTIONS(255), 1, + [108828] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, - anon_sym_LPAREN, STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, sym_simple_identifier, - STATE(6474), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6505), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1660), 2, + STATE(2362), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7423), 2, + STATE(7514), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576536,105 +576640,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109232] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9202), 1, - anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, - sym_simple_identifier, - STATE(6520), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + [108900] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1672), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7562), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(7111), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(7109), 28, anon_sym_get, anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [109304] = 19, - ACTIONS(557), 1, + [108940] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6424), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2848), 4, + STATE(3190), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576642,52 +576730,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109376] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [109012] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + STATE(2881), 1, + sym_simple_identifier, + STATE(2894), 1, sym__lexical_identifier, - STATE(6433), 1, + STATE(6498), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + STATE(7850), 1, sym__simple_user_type, - STATE(8349), 1, - sym_user_type, - STATE(9771), 1, - sym_parenthesized_user_type, - STATE(9776), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(2350), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7511), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8301), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576695,52 +576783,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109448] = 19, - ACTIONS(557), 1, + [109084] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6424), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2833), 4, + STATE(3186), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576748,52 +576836,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109520] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [109156] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + ACTIONS(9148), 1, + anon_sym_LPAREN, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(3438), 1, sym_user_type, - STATE(9732), 1, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8724), 4, + STATE(3953), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576801,52 +576889,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109592] = 19, - ACTIONS(7381), 1, + [109228] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - ACTIONS(9212), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - STATE(5678), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(4535), 1, sym__lexical_identifier, - STATE(6409), 1, - sym_type_modifiers, - STATE(7861), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(8322), 1, + STATE(4627), 1, sym_user_type, - STATE(9666), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(9684), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8341), 4, + STATE(4856), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576854,52 +576942,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109664] = 19, - ACTIONS(557), 1, + [109300] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6424), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2822), 4, + STATE(3094), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576907,52 +576995,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109736] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [109372] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8722), 4, + STATE(5478), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -576960,52 +577048,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109808] = 19, - ACTIONS(7374), 1, + [109444] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8720), 4, + STATE(8739), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577013,52 +577101,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109880] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [109516] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6434), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8325), 1, sym_user_type, - STATE(9732), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8725), 4, + STATE(8334), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577066,52 +577154,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [109952] = 19, - ACTIONS(557), 1, + [109588] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(4552), 1, sym_user_type, - STATE(6424), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2879), 4, + STATE(4557), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577119,52 +577207,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110024] = 19, - ACTIONS(7374), 1, + [109660] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9518), 4, + STATE(8715), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577172,52 +577260,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110096] = 19, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9250), 1, + [109732] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9252), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(419), 1, sym__backtick_identifier, - STATE(5676), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, sym_simple_identifier, - STATE(5685), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6481), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(830), 1, + sym_user_type, + STATE(6432), 1, sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + STATE(9660), 1, + sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5429), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7475), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(840), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9254), 7, + STATE(1177), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577225,52 +577313,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110168] = 19, - ACTIONS(345), 1, + [109804] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(821), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(855), 1, + STATE(4552), 1, sym_user_type, - STATE(6423), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1240), 4, + STATE(4561), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577278,52 +577366,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110240] = 19, - ACTIONS(7374), 1, + [109876] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8717), 4, + STATE(8784), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577331,105 +577419,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110312] = 19, - ACTIONS(557), 1, + [109948] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2816), 4, + STATE(8779), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [110384] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, - sym__lexical_identifier, - STATE(6502), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2384), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7405), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577437,52 +577472,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110456] = 19, - ACTIONS(7374), 1, + [110020] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9759), 4, + STATE(8773), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577490,52 +577525,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110528] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [110092] = 19, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, + ACTIONS(9206), 1, + sym__alpha_identifier, + ACTIONS(9210), 1, + sym__backtick_identifier, + STATE(5681), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(5708), 1, sym__lexical_identifier, - STATE(6497), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(5713), 1, sym__simple_user_type, + STATE(5762), 1, + sym_user_type, + STATE(6436), 1, + sym_type_modifiers, + STATE(9593), 1, + sym_function_type_parameters, + STATE(9823), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2350), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7452), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(5744), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(5806), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577543,52 +577578,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110600] = 19, + [110164] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6414), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9544), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5078), 4, + STATE(5460), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577596,52 +577631,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110672] = 19, - ACTIONS(7), 1, + [110236] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4552), 1, sym_user_type, - STATE(6414), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5083), 4, + STATE(4563), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577649,52 +577684,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110744] = 19, - ACTIONS(345), 1, + [110308] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(872), 4, + STATE(8772), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577702,52 +577737,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110816] = 19, - ACTIONS(345), 1, + [110380] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, - anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(855), 1, - sym_user_type, - STATE(6423), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(6450), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2378), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7499), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(869), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577755,52 +577790,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110888] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [110452] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(855), 1, + STATE(4627), 1, sym_user_type, - STATE(6423), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(893), 4, + STATE(5207), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577808,52 +577843,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [110960] = 19, - ACTIONS(7381), 1, + [110524] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9228), 1, - sym__alpha_identifier, - ACTIONS(9230), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9234), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9236), 1, + ACTIONS(9206), 1, + sym__alpha_identifier, + ACTIONS(9210), 1, sym__backtick_identifier, - STATE(5611), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(5615), 1, + STATE(5708), 1, sym__lexical_identifier, - STATE(5756), 1, + STATE(5713), 1, sym__simple_user_type, - STATE(5772), 1, + STATE(5762), 1, sym_user_type, - STATE(6429), 1, + STATE(6436), 1, sym_type_modifiers, - STATE(9466), 1, - sym_parenthesized_user_type, - STATE(9895), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9823), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5765), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5823), 4, + STATE(5828), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9232), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577861,52 +577896,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111032] = 19, - ACTIONS(255), 1, + [110596] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3056), 4, + STATE(8636), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577914,52 +577949,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111104] = 19, - ACTIONS(255), 1, + [110668] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(6467), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(6481), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2322), 2, + STATE(2627), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7564), 2, + STATE(7462), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -577967,52 +578002,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111176] = 19, - ACTIONS(255), 1, + [110740] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6413), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2971), 4, + STATE(2991), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578020,52 +578055,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111248] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [110812] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8762), 4, + STATE(4572), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578073,89 +578108,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111320] = 3, + [110884] = 19, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9148), 1, + anon_sym_LPAREN, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, + sym_user_type, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, + sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, - sym_line_comment, - ACTIONS(5195), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5193), 28, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, + sym_line_comment, + STATE(3440), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3721), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1600), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, anon_sym_expect, anon_sym_actual, - [111360] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [110956] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9144), 1, + anon_sym_LPAREN, + ACTIONS(9146), 1, + anon_sym_dynamic, + STATE(2783), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(9732), 1, + STATE(6417), 1, + sym_type_modifiers, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9599), 4, + STATE(3046), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578163,52 +578214,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111432] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [111028] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(4627), 1, sym_user_type, STATE(6413), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2972), 4, + STATE(5349), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578216,52 +578267,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111504] = 19, - ACTIONS(7374), 1, + [111100] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8766), 4, + STATE(8645), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578269,52 +578320,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111576] = 19, - ACTIONS(255), 1, + [111172] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(823), 1, sym_simple_identifier, - STATE(6451), 1, + STATE(6466), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2607), 2, + STATE(609), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7406), 2, + STATE(7420), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578322,52 +578373,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111648] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [111244] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6434), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8325), 1, sym_user_type, - STATE(9732), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8768), 4, + STATE(9247), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578375,52 +578426,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111720] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [111316] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(4627), 1, sym_user_type, STATE(6413), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2974), 4, + STATE(4857), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578428,52 +578479,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111792] = 19, - ACTIONS(431), 1, + [111388] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6517), 1, + STATE(6458), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2648), 2, + STATE(2360), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7455), 2, + STATE(7489), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578481,52 +578532,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111864] = 19, - ACTIONS(345), 1, + [111460] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(855), 1, + STATE(3438), 1, sym_user_type, - STATE(6423), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(944), 4, + STATE(3603), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578534,52 +578585,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [111936] = 19, - ACTIONS(7381), 1, + [111532] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9206), 1, - anon_sym_LPAREN, - ACTIONS(9210), 1, - anon_sym_dynamic, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6409), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7861), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, STATE(8322), 1, sym_user_type, - STATE(9666), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9684), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8347), 4, + STATE(8775), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578587,52 +578638,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112008] = 19, - ACTIONS(345), 1, + [111604] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(855), 1, + STATE(3438), 1, sym_user_type, - STATE(6423), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1098), 4, + STATE(3609), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578640,105 +578691,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112080] = 19, - ACTIONS(7381), 1, + [111676] = 19, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9228), 1, - sym__alpha_identifier, - ACTIONS(9230), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9234), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - ACTIONS(9236), 1, - sym__backtick_identifier, - STATE(5611), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5615), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(5756), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(5772), 1, + STATE(3438), 1, sym_user_type, - STATE(6429), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9466), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9895), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5765), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(5809), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9232), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [112152] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8774), 4, + STATE(3616), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578746,52 +578744,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112224] = 19, - ACTIONS(255), 1, + [111748] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(6479), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(6501), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2170), 2, + STATE(2388), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7395), 2, + STATE(7389), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578799,89 +578797,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112296] = 3, + [111820] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7169), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7167), 28, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8670), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [112336] = 19, - ACTIONS(255), 1, + [111892] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2976), 4, + STATE(8679), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578889,52 +578903,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112408] = 19, - ACTIONS(115), 1, + [111964] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(8322), 1, sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4796), 4, + STATE(8696), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578942,52 +578956,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112480] = 19, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + [112036] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9238), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9240), 1, - anon_sym_LPAREN, - ACTIONS(9244), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5680), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(5682), 1, - sym_simple_identifier, - STATE(6462), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6428), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(6584), 1, + sym_simple_identifier, + STATE(8109), 1, sym__simple_user_type, + STATE(8333), 1, + sym_user_type, + STATE(9816), 1, + sym_function_type_parameters, + STATE(9930), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5505), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7585), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9242), 7, + STATE(8366), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -578995,52 +579009,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112552] = 19, - ACTIONS(255), 1, + [112108] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9152), 1, anon_sym_LPAREN, - STATE(2881), 1, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(6477), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(4552), 1, + sym_user_type, + STATE(6431), 1, sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + STATE(9911), 1, + sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2168), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7396), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(4570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1437), 7, + STATE(5121), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579048,52 +579062,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112624] = 19, - ACTIONS(557), 1, + [112180] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2948), 4, + STATE(8699), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579101,52 +579115,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112696] = 19, - ACTIONS(557), 1, + [112252] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6424), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2945), 4, + STATE(5434), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579154,52 +579168,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112768] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [112324] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(823), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(6453), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(622), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7430), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8769), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579207,52 +579221,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112840] = 19, + [112396] = 19, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + STATE(2881), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, - sym_user_type, - STATE(6440), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6489), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(1853), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7372), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5011), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579260,52 +579274,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112912] = 19, - ACTIONS(557), 1, + [112468] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2919), 4, + STATE(5825), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579313,52 +579327,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [112984] = 19, - ACTIONS(431), 1, + [112540] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(4609), 1, + sym__lexical_identifier, + STATE(4616), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(4779), 1, sym_user_type, - STATE(6410), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9521), 1, - sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3546), 4, + STATE(5000), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579366,52 +579380,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113056] = 19, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + [112612] = 4, + ACTIONS(9212), 1, anon_sym_AT, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9206), 1, - anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9215), 2, + anon_sym_LBRACE, + sym_label, + ACTIONS(2030), 28, + anon_sym_get, + anon_sym_set, + anon_sym_suspend, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [112654] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9212), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6409), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7861), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, STATE(8322), 1, sym_user_type, - STATE(9666), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9684), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9401), 4, + STATE(8746), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579419,52 +579471,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113128] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [112726] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + ACTIONS(9140), 1, + anon_sym_dynamic, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4627), 1, sym_user_type, - STATE(9732), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9769), 4, + STATE(4916), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579472,52 +579524,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113200] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [112798] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9740), 4, + STATE(4880), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579525,52 +579577,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113272] = 19, - ACTIONS(431), 1, + [112870] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, sym_user_type, - STATE(6410), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3550), 4, + STATE(3924), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579578,52 +579630,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113344] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [112942] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9178), 1, + anon_sym_LPAREN, + ACTIONS(9182), 1, + anon_sym_dynamic, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(5708), 1, + sym__lexical_identifier, + STATE(5713), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(5762), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6436), 1, + sym_type_modifiers, + STATE(9593), 1, sym_function_type_parameters, + STATE(9823), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8696), 4, + STATE(5777), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579631,52 +579683,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113416] = 19, - ACTIONS(345), 1, + [113014] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(855), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6423), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1297), 4, + STATE(3319), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579684,52 +579736,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113488] = 19, - ACTIONS(7374), 1, + [113086] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6428), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8333), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9816), 1, sym_function_type_parameters, + STATE(9930), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8664), 4, + STATE(8380), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579737,52 +579789,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113560] = 19, - ACTIONS(557), 1, + [113158] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(4552), 1, sym_user_type, - STATE(6424), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3167), 4, + STATE(5117), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579790,52 +579842,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113632] = 19, - ACTIONS(7374), 1, + [113230] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8695), 4, + STATE(9969), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579843,52 +579895,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113704] = 19, - ACTIONS(7374), 1, + [113302] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8694), 4, + STATE(9967), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579896,52 +579948,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113776] = 19, - ACTIONS(431), 1, + [113374] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(2999), 1, sym_user_type, - STATE(6410), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3556), 4, + STATE(4121), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -579949,52 +580001,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113848] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [113446] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8691), 4, + STATE(4989), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580002,52 +580054,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113920] = 19, - ACTIONS(431), 1, + [113518] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6428), 1, + sym_type_modifiers, + STATE(6584), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(8333), 1, sym_user_type, - STATE(6410), 1, - sym_type_modifiers, - STATE(9521), 1, - sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9816), 1, sym_function_type_parameters, + STATE(9930), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3557), 4, + STATE(8396), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580055,52 +580107,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [113992] = 19, - ACTIONS(7381), 1, + [113590] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9192), 1, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - ACTIONS(9200), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(4627), 1, sym_user_type, - STATE(6439), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9601), 1, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5350), 4, + STATE(4903), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580108,52 +580160,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114064] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [113662] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6434), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8325), 1, sym_user_type, - STATE(9732), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9708), 4, + STATE(9456), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580161,52 +580213,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114136] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + [113734] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(823), 1, - sym_simple_identifier, - STATE(6471), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(431), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7448), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(8734), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580214,52 +580266,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114208] = 19, - ACTIONS(345), 1, + [113806] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(6469), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(6514), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(436), 2, + STATE(2630), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7454), 2, + STATE(7445), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580267,52 +580319,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114280] = 19, - ACTIONS(7381), 1, + [113878] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9206), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9258), 1, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - STATE(5678), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(5710), 1, + STATE(5708), 1, sym__lexical_identifier, - STATE(5711), 1, + STATE(5713), 1, sym__simple_user_type, - STATE(5763), 1, + STATE(5762), 1, sym_user_type, - STATE(6425), 1, + STATE(6436), 1, sym_type_modifiers, - STATE(9529), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9597), 1, + STATE(9823), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5768), 4, + STATE(5804), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9260), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580320,52 +580372,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114352] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [113950] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(6434), 1, + sym_type_modifiers, + STATE(7972), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(8325), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3144), 4, + STATE(5777), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580373,52 +580425,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114424] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [114022] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6433), 1, - sym_type_modifiers, - STATE(6584), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8349), 1, + STATE(2999), 1, sym_user_type, - STATE(9771), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9776), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8359), 4, + STATE(4215), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580426,89 +580478,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114496] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7199), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7197), 28, - anon_sym_get, - anon_sym_set, + [114094] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [114536] = 19, - ACTIONS(345), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(932), 4, + STATE(8747), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580516,52 +580531,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114608] = 19, - ACTIONS(7), 1, + [114166] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6414), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9684), 1, sym_parenthesized_user_type, + STATE(10100), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4945), 4, + STATE(2956), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580569,52 +580584,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114680] = 19, - ACTIONS(255), 1, + [114238] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6413), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3173), 4, + STATE(4203), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580622,52 +580637,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114752] = 19, - ACTIONS(431), 1, + [114310] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6498), 1, + STATE(6446), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2697), 2, + STATE(2412), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7573), 2, + STATE(7405), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580675,52 +580690,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114824] = 19, + [114382] = 19, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2999), 1, sym_user_type, - STATE(6440), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4558), 4, + STATE(4119), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580728,52 +580743,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114896] = 19, + [114454] = 19, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2999), 1, sym_user_type, - STATE(6440), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4557), 4, + STATE(4200), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580781,52 +580796,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [114968] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [114526] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, + ACTIONS(9166), 1, + sym__alpha_identifier, ACTIONS(9168), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9172), 1, anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9174), 1, + sym__backtick_identifier, + STATE(5611), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(5616), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(5755), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(5789), 1, sym_user_type, STATE(6440), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9736), 1, sym_parenthesized_user_type, + STATE(9811), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(5793), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4551), 4, + STATE(5836), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580834,52 +580849,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115040] = 19, - ACTIONS(431), 1, + [114598] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(2999), 1, sym_user_type, - STATE(6410), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4159), 4, + STATE(3560), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580887,52 +580902,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115112] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [114670] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(4627), 1, sym_user_type, - STATE(6440), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9676), 1, sym_parenthesized_user_type, + STATE(10127), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4550), 4, + STATE(5329), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580940,52 +580955,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115184] = 19, - ACTIONS(345), 1, + [114742] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9152), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(823), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(6457), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(4552), 1, + sym_user_type, + STATE(6431), 1, sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + STATE(9911), 1, + sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(430), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7472), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(4570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(4823), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -580993,52 +581008,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115256] = 19, + [114814] = 19, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2999), 1, sym_user_type, - STATE(6440), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4544), 4, + STATE(3561), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581046,52 +581061,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115328] = 19, - ACTIONS(345), 1, + [114886] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9148), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(6455), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, + STATE(3438), 1, + sym_user_type, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, + sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(422), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7473), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(3440), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(4035), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581099,52 +581114,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115400] = 19, - ACTIONS(431), 1, + [114958] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(4609), 1, + sym__lexical_identifier, + STATE(4616), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(4779), 1, sym_user_type, - STATE(6410), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9521), 1, - sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3630), 4, + STATE(5548), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581152,52 +581167,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115472] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + [115030] = 19, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, - anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9186), 1, + sym__alpha_identifier, + ACTIONS(9188), 1, + anon_sym_LPAREN, + ACTIONS(9192), 1, + sym__backtick_identifier, + STATE(5679), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(5682), 1, sym__lexical_identifier, - STATE(3370), 1, - sym_user_type, - STATE(6410), 1, + STATE(6524), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9521), 1, - sym_parenthesized_user_type, - STATE(10086), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(5448), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7518), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3628), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9190), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581205,52 +581220,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115544] = 19, - ACTIONS(431), 1, + [115102] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(8322), 1, sym_user_type, - STATE(6410), 1, - sym_type_modifiers, - STATE(9521), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3625), 4, + STATE(8681), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581258,52 +581273,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115616] = 19, - ACTIONS(7381), 1, + [115174] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - ACTIONS(9212), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - STATE(5678), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(4535), 1, sym__lexical_identifier, - STATE(6409), 1, - sym_type_modifiers, - STATE(7861), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(8322), 1, + STATE(4627), 1, sym_user_type, - STATE(9666), 1, + STATE(6413), 1, + sym_type_modifiers, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(9684), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8348), 4, + STATE(4860), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581311,52 +581326,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115688] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [115246] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + ACTIONS(9206), 1, + sym__alpha_identifier, + ACTIONS(9210), 1, + sym__backtick_identifier, + STATE(5681), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(5708), 1, + sym__lexical_identifier, + STATE(5713), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(5762), 1, sym_user_type, - STATE(6440), 1, + STATE(6436), 1, sym_type_modifiers, - STATE(9641), 1, + STATE(9593), 1, sym_function_type_parameters, - STATE(9803), 1, + STATE(9823), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4705), 4, + STATE(5769), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581364,52 +581379,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115760] = 19, - ACTIONS(7), 1, + [115318] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, - anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(823), 1, sym_simple_identifier, - STATE(4862), 1, - sym_user_type, - STATE(6414), 1, + STATE(6506), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(430), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7409), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5179), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1908), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581417,52 +581432,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115832] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [115390] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + STATE(2881), 1, + sym_simple_identifier, + STATE(2894), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6515), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(1754), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7395), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8667), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581470,52 +581485,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115904] = 19, - ACTIONS(431), 1, + [115462] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(830), 1, sym_user_type, - STATE(6410), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4189), 4, + STATE(1307), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581523,52 +581538,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [115976] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [115534] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9144), 1, + anon_sym_LPAREN, + ACTIONS(9146), 1, + anon_sym_dynamic, + STATE(2783), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(9732), 1, + STATE(6417), 1, + sym_type_modifiers, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8668), 4, + STATE(3129), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581576,52 +581591,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116048] = 19, - ACTIONS(7381), 1, + [115606] = 19, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - ACTIONS(9212), 1, - sym__backtick_identifier, - STATE(5678), 1, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(6409), 1, - sym_type_modifiers, - STATE(7861), 1, - sym__simple_user_type, - STATE(8322), 1, + STATE(2869), 1, sym_user_type, - STATE(9666), 1, - sym_parenthesized_user_type, + STATE(6417), 1, + sym_type_modifiers, STATE(9684), 1, + sym_parenthesized_user_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9297), 4, + STATE(3079), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581629,105 +581644,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116120] = 19, - ACTIONS(7374), 1, + [115678] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6433), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8349), 1, + STATE(8322), 1, sym_user_type, - STATE(9771), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9776), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8381), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [116192] = 19, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - anon_sym_dynamic, - ACTIONS(9200), 1, - sym__backtick_identifier, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, - sym__simple_user_type, - STATE(4648), 1, - sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9601), 1, - sym_parenthesized_user_type, - STATE(9960), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4689), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4852), 4, + STATE(10057), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581735,52 +581697,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116264] = 19, - ACTIONS(557), 1, + [115750] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, sym_user_type, - STATE(6424), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3197), 4, + STATE(4009), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581788,52 +581750,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116336] = 19, - ACTIONS(7374), 1, + [115822] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8669), 4, + STATE(8758), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581841,52 +581803,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116408] = 19, - ACTIONS(7374), 1, + [115894] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8773), 4, + STATE(8314), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581894,52 +581856,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116480] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [115966] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(9732), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8673), 4, + STATE(1480), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -581947,52 +581909,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116552] = 19, - ACTIONS(345), 1, + [116038] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(855), 1, + STATE(3438), 1, sym_user_type, - STATE(6423), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1180), 4, + STATE(3907), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582000,142 +581962,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116624] = 19, - ACTIONS(7381), 1, + [116110] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9192), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9194), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - anon_sym_dynamic, - ACTIONS(9200), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4529), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(8322), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9601), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5330), 4, + STATE(8748), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [116696] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5187), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5185), 28, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [116736] = 19, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9206), 1, - anon_sym_LPAREN, - ACTIONS(9210), 1, + [116182] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9258), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5678), 1, - sym_simple_identifier, - STATE(5710), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(5711), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, - STATE(5763), 1, + STATE(8322), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9529), 1, - sym_function_type_parameters, - STATE(9597), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5800), 4, + STATE(8316), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9260), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582143,52 +582068,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116808] = 19, - ACTIONS(557), 1, + [116254] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(4552), 1, sym_user_type, - STATE(6424), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3092), 4, + STATE(4999), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582196,52 +582121,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116880] = 19, - ACTIONS(7), 1, + [116326] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6428), 1, + sym_type_modifiers, + STATE(6584), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8333), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, + STATE(9816), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9930), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4952), 4, + STATE(8316), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582249,52 +582174,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [116952] = 19, - ACTIONS(345), 1, + [116398] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(855), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6423), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1054), 4, + STATE(3279), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582302,52 +582227,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117024] = 19, - ACTIONS(115), 1, + [116470] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, - anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, - sym_user_type, - STATE(6440), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(6485), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2692), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7491), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4883), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582355,52 +582280,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117096] = 19, - ACTIONS(7381), 1, + [116542] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - ACTIONS(9212), 1, - sym__backtick_identifier, - STATE(5678), 1, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6409), 1, - sym_type_modifiers, - STATE(7861), 1, - sym__simple_user_type, - STATE(8322), 1, + STATE(830), 1, sym_user_type, - STATE(9666), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9684), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5768), 4, + STATE(1521), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582408,52 +582333,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117168] = 19, - ACTIONS(115), 1, + [116614] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, - anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6440), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4627), 4, + STATE(1175), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582461,52 +582386,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117240] = 19, - ACTIONS(115), 1, + [116686] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(8322), 1, sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4884), 4, + STATE(8703), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582514,52 +582439,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117312] = 19, - ACTIONS(7381), 1, + [116758] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9192), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9194), 1, - anon_sym_LPAREN, - ACTIONS(9198), 1, - anon_sym_dynamic, - ACTIONS(9200), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4529), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(8322), 1, sym_user_type, - STATE(6439), 1, - sym_type_modifiers, - STATE(9601), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4881), 4, + STATE(8630), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582567,52 +582492,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117384] = 19, - ACTIONS(7374), 1, + [116830] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8681), 4, + STATE(8672), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582620,52 +582545,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117456] = 19, - ACTIONS(7381), 1, + [116902] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9192), 1, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - ACTIONS(9200), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(4627), 1, sym_user_type, - STATE(6439), 1, + STATE(6413), 1, sym_type_modifiers, - STATE(9601), 1, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5373), 4, + STATE(5318), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582673,52 +582598,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117528] = 19, - ACTIONS(431), 1, + [116974] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, - anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3370), 1, - sym_user_type, - STATE(6410), 1, + STATE(6519), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9521), 1, - sym_parenthesized_user_type, - STATE(10086), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2715), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7545), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3812), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582726,52 +582651,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117600] = 19, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [117046] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9112), 1, + sym__alpha_identifier, + ACTIONS(9114), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9118), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9120), 1, + sym__backtick_identifier, + STATE(2819), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2872), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2888), 1, + sym__simple_user_type, + STATE(3078), 1, sym_user_type, - STATE(6424), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9667), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10110), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3080), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3251), 4, + STATE(3527), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582779,52 +582704,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117672] = 19, - ACTIONS(7374), 1, + [117118] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8658), 4, + STATE(8651), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582832,52 +582757,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117744] = 19, - ACTIONS(115), 1, + [117190] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, - anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(823), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, - sym_user_type, - STATE(6440), 1, + STATE(6518), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, - sym_parenthesized_user_type, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7404), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5239), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1842), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582885,52 +582810,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117816] = 19, - ACTIONS(557), 1, + [117262] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, - anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(2864), 1, - sym_user_type, - STATE(6424), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(6517), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2731), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7550), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3068), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582938,52 +582863,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117888] = 19, - ACTIONS(7381), 1, + [117334] = 19, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9206), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9262), 1, - sym__backtick_identifier, - STATE(5678), 1, - sym_simple_identifier, - STATE(5710), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(5711), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(5763), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(6425), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9529), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9597), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5801), 4, + STATE(5316), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9260), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -582991,52 +582916,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [117960] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, + [117406] = 19, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, + STATE(4552), 1, sym_user_type, - STATE(6440), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9803), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4770), 4, + STATE(5313), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583044,52 +582969,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118032] = 19, - ACTIONS(7), 1, + [117478] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4552), 1, sym_user_type, - STATE(6414), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4903), 4, + STATE(4883), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583097,52 +583022,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118104] = 19, - ACTIONS(7374), 1, + [117550] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6433), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8349), 1, + STATE(8322), 1, sym_user_type, - STATE(9771), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9776), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8377), 4, + STATE(8922), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583150,52 +583075,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118176] = 19, - ACTIONS(345), 1, + [117622] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(821), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(855), 1, + STATE(4552), 1, sym_user_type, - STATE(6423), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(933), 4, + STATE(4980), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583203,52 +583128,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118248] = 19, - ACTIONS(7381), 1, + [117694] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - ACTIONS(9200), 1, - sym__backtick_identifier, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6439), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9601), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4885), 4, + STATE(1582), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583256,126 +583181,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118320] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5171), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(5169), 28, - anon_sym_get, - anon_sym_set, + [117766] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [118360] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7127), 3, + ACTIONS(9030), 1, anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7125), 28, - anon_sym_get, - anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - anon_sym_expect, - anon_sym_actual, - [118400] = 19, - ACTIONS(557), 1, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9114), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9118), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9120), 1, + sym__backtick_identifier, + STATE(2819), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2872), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2888), 1, + sym__simple_user_type, + STATE(3078), 1, sym_user_type, - STATE(6424), 1, + STATE(6426), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9667), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10110), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(3080), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3236), 4, + STATE(3629), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583383,52 +583234,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118472] = 19, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9206), 1, - anon_sym_LPAREN, - ACTIONS(9210), 1, + [117838] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9258), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5678), 1, - sym_simple_identifier, - STATE(5710), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(5711), 1, + STATE(6428), 1, + sym_type_modifiers, + STATE(6584), 1, + sym_simple_identifier, + STATE(8109), 1, sym__simple_user_type, - STATE(5763), 1, + STATE(8333), 1, sym_user_type, - STATE(6425), 1, - sym_type_modifiers, - STATE(9529), 1, + STATE(9816), 1, sym_function_type_parameters, - STATE(9597), 1, + STATE(9930), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5792), 4, + STATE(8391), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9260), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583436,52 +583287,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118544] = 19, + [117910] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6414), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9544), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4951), 4, + STATE(5587), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583489,52 +583340,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118616] = 19, - ACTIONS(7), 1, + [117982] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, - anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6414), 1, - sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5017), 4, + STATE(9390), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583542,52 +583393,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118688] = 19, - ACTIONS(345), 1, + [118054] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(855), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6423), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(938), 4, + STATE(976), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583595,105 +583446,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118760] = 19, - ACTIONS(431), 1, + [118126] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6452), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2389), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7542), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, + STATE(830), 1, sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [118832] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, - sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9692), 4, + STATE(1378), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583701,52 +583499,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118904] = 19, - ACTIONS(255), 1, + [118198] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9130), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, sym_simple_identifier, - STATE(6478), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, + sym_user_type, + STATE(6432), 1, sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, + STATE(9660), 1, + sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2319), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7375), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(840), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1437), 7, + STATE(1050), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583754,52 +583552,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [118976] = 19, - ACTIONS(7381), 1, + [118270] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9206), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9262), 1, - sym__backtick_identifier, - STATE(5678), 1, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, sym_simple_identifier, - STATE(5710), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(5711), 1, - sym__simple_user_type, - STATE(5763), 1, + STATE(830), 1, sym_user_type, - STATE(6425), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9529), 1, - sym_function_type_parameters, - STATE(9597), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5819), 4, + STATE(961), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9260), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583807,52 +583605,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119048] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [118342] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(9732), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8687), 4, + STATE(1054), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583860,52 +583658,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119120] = 19, + [118414] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6414), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9544), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4760), 4, + STATE(5589), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583913,52 +583711,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119192] = 19, - ACTIONS(7), 1, + [118486] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4552), 1, sym_user_type, - STATE(6414), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4755), 4, + STATE(5326), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -583966,52 +583764,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119264] = 19, - ACTIONS(557), 1, + [118558] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(4552), 1, sym_user_type, - STATE(6424), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3588), 4, + STATE(5330), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584019,52 +583817,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119336] = 19, - ACTIONS(7381), 1, + [118630] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9228), 1, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(9230), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9234), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - ACTIONS(9236), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - STATE(5611), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(5615), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(5756), 1, + STATE(6434), 1, + sym_type_modifiers, + STATE(7972), 1, sym__simple_user_type, - STATE(5772), 1, + STATE(8325), 1, sym_user_type, - STATE(6429), 1, - sym_type_modifiers, - STATE(9466), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(9895), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5765), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5814), 4, + STATE(8345), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9232), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584072,52 +583870,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119408] = 19, - ACTIONS(7374), 1, + [118702] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5817), 4, + STATE(8760), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584125,105 +583923,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119480] = 19, - ACTIONS(431), 1, + [118774] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, - sym__lexical_identifier, - STATE(6449), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2683), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7354), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [119552] = 19, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - ACTIONS(9200), 1, - sym__backtick_identifier, - STATE(4529), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(6439), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9601), 1, - sym_parenthesized_user_type, - STATE(9960), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4882), 4, + STATE(5340), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584231,52 +583976,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119624] = 19, - ACTIONS(7), 1, + [118846] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4862), 1, + STATE(3438), 1, sym_user_type, - STATE(6414), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9706), 1, sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4750), 4, + STATE(4037), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584284,52 +584029,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119696] = 19, - ACTIONS(7374), 1, + [118918] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8839), 4, + STATE(8648), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584337,142 +584082,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119768] = 19, - ACTIONS(7), 1, + [118990] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4552), 1, sym_user_type, - STATE(6414), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4747), 4, + STATE(4764), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [119840] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4981), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(4979), 28, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [119880] = 19, - ACTIONS(7374), 1, + [119062] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9696), 4, + STATE(9594), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584480,52 +584188,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [119952] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [119134] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2999), 1, sym_user_type, - STATE(9732), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8736), 4, + STATE(4024), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584533,52 +584241,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120024] = 19, - ACTIONS(557), 1, + [119206] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, + sym__lexical_identifier, + STATE(823), 1, + sym_simple_identifier, + STATE(6497), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(427), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7426), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [119278] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6424), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3591), 4, + STATE(1294), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584586,52 +584347,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120096] = 19, - ACTIONS(345), 1, + [119350] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(821), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(855), 1, + STATE(4552), 1, sym_user_type, - STATE(6423), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(2024), 4, + STATE(4961), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584639,52 +584400,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120168] = 19, - ACTIONS(7), 1, + [119422] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6414), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5249), 4, + STATE(3902), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584692,52 +584453,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120240] = 19, - ACTIONS(7), 1, + [119494] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6414), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4741), 4, + STATE(3906), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584745,52 +584506,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120312] = 19, - ACTIONS(345), 1, + [119566] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, - anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + sym__lexical_identifier, + STATE(823), 1, sym_simple_identifier, - STATE(855), 1, - sym_user_type, - STATE(6423), 1, + STATE(6493), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(441), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7577), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1910), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584798,52 +584559,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120384] = 19, - ACTIONS(345), 1, + [119638] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, - anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + sym__lexical_identifier, + STATE(823), 1, sym_simple_identifier, - STATE(855), 1, - sym_user_type, - STATE(6423), 1, + STATE(6490), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(447), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7564), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1704), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1664), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584851,52 +584612,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120456] = 19, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9214), 1, + [119710] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9246), 1, - anon_sym_LPAREN, - ACTIONS(9248), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(2939), 1, - sym__simple_user_type, - STATE(3075), 1, - sym_user_type, - STATE(6438), 1, + STATE(823), 1, + sym_simple_identifier, + STATE(6486), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9700), 1, - sym_parenthesized_user_type, - STATE(9917), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3111), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(436), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7433), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3678), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(9218), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584904,52 +584665,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120528] = 19, - ACTIONS(7381), 1, + [119782] = 19, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - ACTIONS(9200), 1, - sym__backtick_identifier, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6439), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9601), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4857), 4, + STATE(1343), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -584957,52 +584718,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120600] = 19, - ACTIONS(255), 1, + [119854] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, - anon_sym_LPAREN, STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, sym_simple_identifier, - STATE(6476), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6482), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2426), 2, + STATE(2658), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7553), 2, + STATE(7589), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585010,52 +584771,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120672] = 19, - ACTIONS(115), 1, + [119926] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(4779), 1, sym_user_type, - STATE(6440), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9641), 1, + STATE(9539), 1, sym_function_type_parameters, - STATE(9803), 1, + STATE(9544), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5204), 4, + STATE(5469), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585063,52 +584824,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120744] = 19, - ACTIONS(345), 1, + [119998] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1164), 4, + STATE(8725), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585116,52 +584877,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120816] = 19, - ACTIONS(345), 1, + [120070] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1165), 4, + STATE(10014), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585169,52 +584930,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120888] = 19, - ACTIONS(431), 1, + [120142] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(830), 1, sym_user_type, - STATE(6410), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3872), 4, + STATE(1009), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585222,52 +584983,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [120960] = 19, - ACTIONS(431), 1, + [120214] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, sym_user_type, - STATE(6410), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3870), 4, + STATE(3675), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585275,52 +585036,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121032] = 19, - ACTIONS(255), 1, + [120286] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4137), 4, + STATE(8742), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585328,52 +585089,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121104] = 19, - ACTIONS(7381), 1, + [120358] = 19, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - ACTIONS(9212), 1, - sym__backtick_identifier, - STATE(5678), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6409), 1, - sym_type_modifiers, - STATE(7861), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(8322), 1, + STATE(3438), 1, sym_user_type, - STATE(9666), 1, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9684), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5800), 4, + STATE(3615), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585381,52 +585142,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121176] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [120430] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9136), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9140), 1, anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(4627), 1, sym_user_type, STATE(6413), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9676), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4628), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3282), 4, + STATE(5360), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585434,52 +585195,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121248] = 19, - ACTIONS(255), 1, + [120502] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(4552), 1, sym_user_type, - STATE(6413), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4130), 4, + STATE(4970), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585487,52 +585248,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121320] = 19, - ACTIONS(7381), 1, + [120574] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9264), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9268), 1, - anon_sym_dynamic, - ACTIONS(9270), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6416), 1, - sym_type_modifiers, - STATE(8327), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8328), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(8591), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(9090), 1, + STATE(8322), 1, sym_user_type, - STATE(9537), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9760), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8965), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8496), 4, + STATE(8750), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9266), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585540,52 +585301,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121392] = 19, - ACTIONS(431), 1, + [120646] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(8322), 1, sym_user_type, - STATE(6410), 1, - sym_type_modifiers, - STATE(9521), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4243), 4, + STATE(8745), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585593,52 +585354,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121464] = 19, - ACTIONS(7374), 1, + [120718] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8670), 4, + STATE(8752), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585646,52 +585407,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121536] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [120790] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8678), 4, + STATE(5154), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585699,52 +585460,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121608] = 19, - ACTIONS(431), 1, + [120862] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, + ACTIONS(9146), 1, + anon_sym_dynamic, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, + sym_user_type, + STATE(6417), 1, + sym_type_modifiers, + STATE(9684), 1, + sym_parenthesized_user_type, + STATE(10100), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2868), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3077), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1858), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [120934] = 19, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9217), 1, + sym__alpha_identifier, + ACTIONS(9219), 1, + anon_sym_LPAREN, + ACTIONS(9223), 1, + sym__backtick_identifier, + STATE(5676), 1, sym__lexical_identifier, - STATE(6448), 1, + STATE(5688), 1, + sym_simple_identifier, + STATE(6447), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2387), 2, + STATE(5497), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7592), 2, + STATE(7410), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(9221), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585752,52 +585566,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121680] = 19, - ACTIONS(557), 1, + [121006] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6424), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3219), 4, + STATE(3211), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585805,52 +585619,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121752] = 19, - ACTIONS(431), 1, + [121078] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(6410), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9521), 1, - sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4240), 4, + STATE(4713), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585858,52 +585672,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121824] = 19, - ACTIONS(7381), 1, + [121150] = 19, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9210), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - ACTIONS(9212), 1, - sym__backtick_identifier, - STATE(5678), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6409), 1, - sym_type_modifiers, - STATE(7861), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(8322), 1, + STATE(3438), 1, sym_user_type, - STATE(9666), 1, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9684), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5722), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8336), 4, + STATE(3624), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9208), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585911,52 +585725,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121896] = 19, - ACTIONS(7381), 1, + [121222] = 19, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9264), 1, - sym__alpha_identifier, - ACTIONS(9268), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, anon_sym_dynamic, - ACTIONS(9270), 1, - sym__backtick_identifier, - STATE(6416), 1, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, + sym_user_type, + STATE(6431), 1, sym_type_modifiers, - STATE(8327), 1, + STATE(9911), 1, + sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4570), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(5135), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1790), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [121294] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8328), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(8591), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(9090), 1, + STATE(8322), 1, sym_user_type, - STATE(9537), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9760), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8965), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8301), 4, + STATE(8751), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9266), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -585964,52 +585831,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [121968] = 19, - ACTIONS(255), 1, + [121366] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6413), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4127), 4, + STATE(5098), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586017,52 +585884,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122040] = 19, - ACTIONS(7374), 1, + [121438] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9798), 4, + STATE(8754), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586070,52 +585937,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122112] = 19, - ACTIONS(431), 1, + [121510] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, sym_user_type, - STATE(6410), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4221), 4, + STATE(3626), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586123,52 +585990,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122184] = 19, + [121582] = 19, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6414), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, - STATE(9728), 1, + STATE(9544), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4956), 4, + STATE(4906), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586176,52 +586043,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122256] = 19, - ACTIONS(557), 1, + [121654] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + STATE(2881), 1, sym_simple_identifier, - STATE(2864), 1, - sym_user_type, - STATE(6424), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6459), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2444), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7581), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3086), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1920), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586229,52 +586096,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122328] = 19, - ACTIONS(7381), 1, + [121726] = 19, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - ACTIONS(9200), 1, - sym__backtick_identifier, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(3438), 1, sym_user_type, - STATE(6439), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9601), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9960), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5180), 4, + STATE(4186), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586282,52 +586149,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122400] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [121798] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6434), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8325), 1, sym_user_type, - STATE(9732), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(10096), 4, + STATE(9287), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586335,52 +586202,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122472] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [121870] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + ACTIONS(9148), 1, + anon_sym_LPAREN, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(3438), 1, sym_user_type, - STATE(9732), 1, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8784), 4, + STATE(3631), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586388,52 +586255,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122544] = 19, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [121942] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9166), 1, + sym__alpha_identifier, + ACTIONS(9168), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9172), 1, anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9174), 1, + sym__backtick_identifier, + STATE(5611), 1, + sym__lexical_identifier, + STATE(5616), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(5755), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(5789), 1, sym_user_type, - STATE(6410), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9736), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9811), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(5793), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4176), 4, + STATE(5825), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586441,52 +586308,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122616] = 19, - ACTIONS(431), 1, + [122014] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(6410), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9521), 1, - sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4174), 4, + STATE(4618), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586494,52 +586361,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122688] = 19, - ACTIONS(431), 1, + [122086] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + STATE(2881), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3370), 1, - sym_user_type, - STATE(6410), 1, + STATE(6457), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9521), 1, - sym_parenthesized_user_type, - STATE(10086), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2623), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7567), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4169), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1652), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586547,52 +586414,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122760] = 19, - ACTIONS(255), 1, + [122158] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6413), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3499), 4, + STATE(3952), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586600,52 +586467,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122832] = 19, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [122230] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9166), 1, + sym__alpha_identifier, + ACTIONS(9168), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9172), 1, anon_sym_dynamic, - STATE(4584), 1, + ACTIONS(9174), 1, + sym__backtick_identifier, + STATE(5611), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(5616), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(5755), 1, + sym__simple_user_type, + STATE(5789), 1, sym_user_type, - STATE(6414), 1, + STATE(6440), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9736), 1, sym_parenthesized_user_type, + STATE(9811), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(5793), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5565), 4, + STATE(5809), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586653,52 +586520,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122904] = 19, - ACTIONS(255), 1, + [122302] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6413), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4114), 4, + STATE(3979), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586706,52 +586573,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [122976] = 19, - ACTIONS(115), 1, + [122374] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, - anon_sym_dynamic, - STATE(4537), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(8322), 1, sym_user_type, - STATE(6440), 1, - sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9794), 1, sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5257), 4, + STATE(8767), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586759,52 +586626,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123048] = 19, - ACTIONS(7), 1, + [122446] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4862), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6414), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9684), 1, sym_parenthesized_user_type, + STATE(10100), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4964), 4, + STATE(3972), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586812,52 +586679,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123120] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, + [122518] = 19, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, + STATE(4552), 1, sym_user_type, - STATE(6440), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9803), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4723), 4, + STATE(5528), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586865,52 +586732,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123192] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [122590] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(823), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(6476), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(617), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7465), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8637), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586918,52 +586785,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123264] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [122662] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(6433), 1, - sym_type_modifiers, - STATE(6584), 1, + STATE(823), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(6474), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, - STATE(8349), 1, - sym_user_type, - STATE(9771), 1, - sym_parenthesized_user_type, - STATE(9776), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(623), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7435), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8396), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -586971,52 +586838,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123336] = 19, - ACTIONS(431), 1, + [122734] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(2999), 1, sym_user_type, - STATE(6410), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3766), 4, + STATE(3772), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587024,52 +586891,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123408] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [122806] = 19, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9217), 1, + sym__alpha_identifier, + ACTIONS(9219), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9223), 1, + sym__backtick_identifier, + STATE(5676), 1, sym__lexical_identifier, - STATE(823), 1, + STATE(5688), 1, sym_simple_identifier, - STATE(6503), 1, + STATE(6483), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(599), 2, + STATE(5506), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7518), 2, + STATE(7362), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(9221), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587077,52 +586944,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123480] = 19, - ACTIONS(345), 1, + [122878] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1302), 4, + STATE(8632), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587130,52 +586997,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123552] = 19, + [122950] = 19, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2999), 1, sym_user_type, - STATE(6440), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4752), 4, + STATE(3770), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587183,90 +587050,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123624] = 4, - ACTIONS(9272), 1, + [123022] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9275), 2, - anon_sym_LBRACE, - sym_label, - ACTIONS(2082), 28, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8638), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [123666] = 19, - ACTIONS(7374), 1, + [123094] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8726), 4, + STATE(8641), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587274,52 +587156,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123738] = 19, + [123166] = 19, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2999), 1, sym_user_type, - STATE(6440), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4758), 4, + STATE(3740), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587327,52 +587209,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123810] = 19, - ACTIONS(255), 1, + [123238] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3310), 4, + STATE(8650), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587380,52 +587262,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123882] = 19, - ACTIONS(7381), 1, + [123310] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9198), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - ACTIONS(9200), 1, - sym__backtick_identifier, - STATE(4529), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(4648), 1, + STATE(4779), 1, sym_user_type, - STATE(6439), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9601), 1, - sym_parenthesized_user_type, - STATE(9960), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4689), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5088), 4, + STATE(4935), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9196), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587433,52 +587315,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [123954] = 19, - ACTIONS(345), 1, + [123382] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9162), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(823), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(6507), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(2943), 1, sym__simple_user_type, + STATE(2999), 1, + sym_user_type, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, + sym_parenthesized_user_type, + STATE(9890), 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(7503), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(3000), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(3732), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587486,52 +587368,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124026] = 19, + [123454] = 19, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(2999), 1, sym_user_type, - STATE(6440), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9694), 1, sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4762), 4, + STATE(3727), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587539,52 +587421,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124098] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [123526] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6433), 1, - sym_type_modifiers, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8349), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(9771), 1, - sym_parenthesized_user_type, - STATE(9776), 1, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8366), 4, + STATE(4575), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587592,52 +587474,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124170] = 19, - ACTIONS(115), 1, + [123598] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6440), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4766), 4, + STATE(1043), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587645,52 +587527,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124242] = 19, - ACTIONS(115), 1, - sym__alpha_identifier, + [123670] = 19, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4555), 1, + STATE(4552), 1, sym_user_type, - STATE(6440), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, - STATE(9803), 1, + STATE(9996), 1, sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4714), 4, + STATE(4793), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587698,52 +587580,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124314] = 19, - ACTIONS(115), 1, + [123742] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9170), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4555), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6440), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9803), 1, + STATE(9660), 1, sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4554), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4769), 4, + STATE(1103), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1842), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587751,52 +587633,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124386] = 19, - ACTIONS(255), 1, + [123814] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6413), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3782), 4, + STATE(1114), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587804,52 +587686,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124458] = 19, - ACTIONS(255), 1, + [123886] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, - anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(6451), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2385), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7397), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7859), 3, + sym__type_reference, sym_user_type, - STATE(6413), 1, + sym_parenthesized_type, + ACTIONS(1600), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [123958] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3781), 4, + STATE(8768), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587857,52 +587792,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124530] = 19, - ACTIONS(255), 1, + [124030] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, - anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3780), 4, + STATE(9763), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587910,52 +587845,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124602] = 19, - ACTIONS(255), 1, + [124102] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9164), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(2999), 1, sym_user_type, - STATE(6413), 1, + STATE(6425), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3284), 4, + STATE(4107), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -587963,52 +587898,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124674] = 19, - ACTIONS(7374), 1, + [124174] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8733), 4, + STATE(9859), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588016,52 +587951,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124746] = 19, - ACTIONS(431), 1, + [124246] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(8322), 1, sym_user_type, - STATE(6410), 1, - sym_type_modifiers, - STATE(9521), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3801), 4, + STATE(8769), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588069,52 +588004,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124818] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [124318] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8739), 4, + STATE(5222), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588122,52 +588057,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124890] = 19, - ACTIONS(431), 1, + [124390] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(4609), 1, + sym__lexical_identifier, + STATE(4616), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(4779), 1, sym_user_type, - STATE(6410), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9521), 1, - sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4122), 4, + STATE(4937), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588175,52 +588110,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [124962] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [124462] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8721), 4, + STATE(4889), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588228,52 +588163,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125034] = 19, - ACTIONS(7374), 1, + [124534] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8662), 4, + STATE(8667), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588281,52 +588216,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125106] = 19, - ACTIONS(431), 1, + [124606] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3438), 1, sym_user_type, - STATE(6410), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9706), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4119), 4, + STATE(3726), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588334,52 +588269,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125178] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [124678] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8713), 4, + STATE(5181), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588387,52 +588322,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125250] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [124750] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6448), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7850), 1, sym__simple_user_type, - STATE(8320), 1, - sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(2396), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7415), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8704), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(8666), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588440,52 +588375,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125322] = 19, - ACTIONS(345), 1, + [124822] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(821), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(855), 1, + STATE(4552), 1, sym_user_type, - STATE(6423), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1117), 4, + STATE(5536), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588493,52 +588428,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125394] = 19, - ACTIONS(431), 1, + [124894] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(2869), 1, sym_user_type, - STATE(6410), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4117), 4, + STATE(3687), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588546,52 +588481,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125466] = 19, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(7381), 1, + [124966] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9182), 1, anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(6434), 1, + sym_type_modifiers, + STATE(7972), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3027), 1, + STATE(8325), 1, sym_user_type, - STATE(6413), 1, - sym_type_modifiers, - STATE(9553), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3276), 4, + STATE(8348), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588599,52 +588534,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125538] = 19, - ACTIONS(7374), 1, + [125038] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8699), 4, + STATE(8761), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588652,52 +588587,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125610] = 19, - ACTIONS(431), 1, + [125110] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_dynamic, - STATE(3298), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3370), 1, + STATE(8322), 1, sym_user_type, - STATE(6410), 1, - sym_type_modifiers, - STATE(9521), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4113), 4, + STATE(9209), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588705,52 +588640,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125682] = 19, - ACTIONS(431), 1, + [125182] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9174), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3370), 1, + STATE(2869), 1, sym_user_type, - STATE(6410), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9521), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10086), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3371), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4110), 4, + STATE(3700), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588758,52 +588693,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125754] = 19, - ACTIONS(7374), 1, + [125254] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8744), 4, + STATE(8770), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588811,52 +588746,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125826] = 19, - ACTIONS(557), 1, + [125326] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3614), 4, + STATE(8762), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588864,89 +588799,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [125898] = 3, + [125398] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 3, - anon_sym_AT, - anon_sym_LBRACE, - sym_label, - ACTIONS(7185), 28, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8763), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_suspend, - anon_sym_sealed, - anon_sym_annotation, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_override, - anon_sym_lateinit, - anon_sym_public, - anon_sym_private, - anon_sym_internal, - anon_sym_protected, - anon_sym_tailrec, - anon_sym_operator, - anon_sym_infix, - anon_sym_inline, - anon_sym_external, - sym_property_modifier, - anon_sym_abstract, - anon_sym_final, - anon_sym_open, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [125938] = 19, - ACTIONS(557), 1, + [125470] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6424), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3613), 4, + STATE(3093), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -588954,52 +588905,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126010] = 19, - ACTIONS(557), 1, + [125542] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6424), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(3138), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1858), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [125614] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3611), 4, + STATE(8960), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589007,52 +589011,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126082] = 19, - ACTIONS(255), 1, + [125686] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(4552), 1, sym_user_type, - STATE(6413), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3521), 4, + STATE(5533), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589060,52 +589064,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126154] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [125758] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9144), 1, + anon_sym_LPAREN, + ACTIONS(9146), 1, + anon_sym_dynamic, + STATE(2783), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(9732), 1, + STATE(6417), 1, + sym_type_modifiers, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8750), 4, + STATE(3704), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589113,105 +589117,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126226] = 19, - ACTIONS(7374), 1, + [125830] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(5809), 4, + STATE(8765), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, - anon_sym_actual, - [126298] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + anon_sym_actual, + [125902] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9144), 1, + anon_sym_LPAREN, + ACTIONS(9146), 1, + anon_sym_dynamic, + STATE(2783), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(9732), 1, + STATE(6417), 1, + sym_type_modifiers, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9340), 4, + STATE(3680), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589219,52 +589223,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126370] = 19, - ACTIONS(345), 1, + [125974] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, STATE(823), 1, sym_simple_identifier, - STATE(6514), 1, + STATE(6468), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(458), 2, + STATE(456), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7490), 2, + STATE(7470), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589272,52 +589276,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126442] = 19, - ACTIONS(345), 1, + [126046] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(855), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6423), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1248), 4, + STATE(3676), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589325,52 +589329,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126514] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [126118] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9162), 1, + anon_sym_LPAREN, + ACTIONS(9164), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(2999), 1, sym_user_type, - STATE(9732), 1, + STATE(6425), 1, + sym_type_modifiers, + STATE(9694), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(3000), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8727), 4, + STATE(3540), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589378,52 +589382,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126586] = 19, - ACTIONS(255), 1, + [126190] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, sym_simple_identifier, - STATE(3027), 1, - sym_user_type, - STATE(6413), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6463), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, - sym_function_type_parameters, + STATE(7850), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(2433), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7539), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3590), 4, - sym__type, - sym_not_nullable_type, - sym_nullable_type, - sym_function_type, - ACTIONS(1437), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589431,52 +589435,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126658] = 19, - ACTIONS(7374), 1, + [126262] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8631), 4, + STATE(9553), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589484,52 +589488,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126730] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [126334] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8737), 4, + STATE(5431), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589537,52 +589541,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126802] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [126406] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8745), 4, + STATE(4770), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589590,52 +589594,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126874] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [126478] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(9732), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8748), 4, + STATE(882), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589643,52 +589647,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [126946] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [126550] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9642), 4, + STATE(5336), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589696,105 +589700,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127018] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [126622] = 19, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(9178), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9182), 1, + anon_sym_dynamic, + ACTIONS(9184), 1, + sym__backtick_identifier, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6434), 1, sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8325), 1, sym_user_type, - STATE(9732), 1, + STATE(9876), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(5744), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9647), 4, + STATE(5804), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(9180), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [126694] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4093), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [127090] = 19, - ACTIONS(255), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(4095), 17, + anon_sym_AT, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + [126734] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6413), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3366), 4, + STATE(5068), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589802,52 +589843,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127162] = 19, - ACTIONS(7374), 1, + [126806] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8641), 4, + STATE(8740), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589855,52 +589896,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127234] = 19, - ACTIONS(7), 1, + [126878] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9188), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9190), 1, + ACTIONS(9150), 1, anon_sym_dynamic, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4862), 1, + STATE(3438), 1, sym_user_type, - STATE(6414), 1, + STATE(6406), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9728), 1, + STATE(9706), 1, sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4860), 2, + STATE(3440), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(4948), 4, + STATE(3950), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -589908,105 +589949,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127306] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [126950] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8643), 4, + STATE(5337), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127022] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3938), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [127378] = 19, - ACTIONS(255), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(3943), 17, + anon_sym_AT, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_SEMI, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + [127062] = 19, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(4552), 1, sym_user_type, - STATE(6413), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3592), 4, + STATE(4703), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590014,52 +590092,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127450] = 19, - ACTIONS(7381), 1, + [127134] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9264), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9268), 1, - anon_sym_dynamic, - ACTIONS(9270), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6416), 1, - sym_type_modifiers, - STATE(8327), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8328), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(8591), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(9090), 1, + STATE(8322), 1, sym_user_type, - STATE(9537), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9760), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8965), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8284), 4, + STATE(9856), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9266), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590067,52 +590145,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127522] = 19, - ACTIONS(345), 1, + [127206] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1319), 4, + STATE(9852), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590120,52 +590198,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127594] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [127278] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8647), 4, + STATE(4766), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590173,52 +590251,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127666] = 19, - ACTIONS(557), 1, + [127350] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6424), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9581), 1, - sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3597), 4, + STATE(5339), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590226,52 +590304,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127738] = 19, - ACTIONS(255), 1, + [127422] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9146), 1, anon_sym_dynamic, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2869), 1, sym_user_type, - STATE(6413), 1, + STATE(6417), 1, sym_type_modifiers, - STATE(9553), 1, + STATE(9684), 1, sym_parenthesized_user_type, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(2868), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3593), 4, + STATE(3173), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590279,52 +590357,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127810] = 19, - ACTIONS(7374), 1, + [127494] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8727), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [127566] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, + sym__lexical_identifier, + STATE(4616), 1, + sym_simple_identifier, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, + sym_user_type, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, + sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9562), 4, + STATE(5341), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590332,52 +590463,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127882] = 19, - ACTIONS(7374), 1, + [127638] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9561), 4, + STATE(8726), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590385,52 +590516,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [127954] = 19, - ACTIONS(255), 1, + [127710] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6413), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3595), 4, + STATE(4763), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590438,52 +590569,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128026] = 19, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + [127782] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9250), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9252), 1, - anon_sym_LPAREN, - ACTIONS(9256), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5676), 1, - sym_simple_identifier, - STATE(5685), 1, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6485), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5452), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7377), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(9254), 7, + STATE(8724), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590491,52 +590622,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128098] = 19, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + [127854] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(823), 1, - sym_simple_identifier, - STATE(6501), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(445), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7417), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(9802), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590544,52 +590675,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128170] = 19, - ACTIONS(345), 1, + [127926] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1360), 4, + STATE(9800), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590597,52 +590728,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128242] = 19, - ACTIONS(255), 1, + [127998] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9166), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3027), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6413), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9553), 1, - sym_parenthesized_user_type, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3026), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3564), 4, + STATE(4761), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590650,52 +590781,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128314] = 19, - ACTIONS(345), 1, + [128070] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9158), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9160), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(855), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4779), 1, sym_user_type, - STATE(6423), 1, + STATE(6438), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1298), 4, + STATE(5342), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590703,52 +590834,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128386] = 19, - ACTIONS(345), 1, + [128142] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1301), 4, + STATE(8717), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590756,52 +590887,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128458] = 19, - ACTIONS(431), 1, + [128214] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6493), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2619), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7407), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(8787), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590809,52 +590940,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128530] = 19, - ACTIONS(431), 1, + [128286] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6487), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8149), 1, sym__simple_user_type, + STATE(8322), 1, + sym_user_type, + STATE(9794), 1, + sym_parenthesized_user_type, + STATE(9933), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2622), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7401), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, + STATE(8786), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590862,52 +590993,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128602] = 19, - ACTIONS(7374), 1, + [128358] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8693), 4, + STATE(9768), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590915,52 +591046,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128674] = 19, - ACTIONS(7374), 1, + [128430] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9509), 4, + STATE(9765), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -590968,52 +591099,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128746] = 19, - ACTIONS(7374), 1, + [128502] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8785), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [128574] = 19, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, + sym_user_type, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, + sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9475), 4, + STATE(4794), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591021,52 +591205,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128818] = 19, - ACTIONS(7374), 1, + [128646] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8697), 4, + STATE(8783), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591074,52 +591258,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128890] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, + [128718] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4882), 3, + anon_sym_AT, + anon_sym_LBRACE, + sym_label, + ACTIONS(4880), 28, + anon_sym_get, + anon_sym_set, anon_sym_suspend, - ACTIONS(8656), 1, + anon_sym_sealed, + anon_sym_annotation, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_override, + anon_sym_lateinit, + anon_sym_public, + anon_sym_private, + anon_sym_internal, + anon_sym_protected, + anon_sym_tailrec, + anon_sym_operator, + anon_sym_infix, + anon_sym_inline, + anon_sym_external, + sym_property_modifier, + anon_sym_abstract, + anon_sym_final, + anon_sym_open, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + [128758] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(9732), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8723), 4, + STATE(897), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591127,52 +591348,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [128962] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [128830] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8776), 4, + STATE(5061), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591180,52 +591401,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129034] = 19, - ACTIONS(345), 1, + [128902] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9158), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(823), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(6490), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7848), 1, + STATE(4668), 1, sym__simple_user_type, + STATE(4779), 1, + sym_user_type, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, + sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(441), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7402), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(4778), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1664), 7, + STATE(4757), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591233,52 +591454,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129106] = 19, - ACTIONS(557), 1, + [128974] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6424), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9581), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3599), 4, + STATE(888), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591286,52 +591507,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129178] = 19, - ACTIONS(345), 1, + [129046] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9152), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9154), 1, anon_sym_dynamic, - STATE(813), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(821), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(855), 1, + STATE(4552), 1, sym_user_type, - STATE(6423), 1, + STATE(6431), 1, sym_type_modifiers, - STATE(9744), 1, - sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(948), 4, + STATE(5062), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591339,52 +591560,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129250] = 19, - ACTIONS(345), 1, + [129118] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1378), 4, + STATE(9720), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591392,52 +591613,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129322] = 19, - ACTIONS(7374), 1, + [129190] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8682), 4, + STATE(9719), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591445,52 +591666,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129394] = 19, - ACTIONS(345), 1, + [129262] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, - anon_sym_dynamic, - STATE(813), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(855), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6423), 1, - sym_type_modifiers, - STATE(9744), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1347), 4, + STATE(8782), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591498,52 +591719,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129466] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [129334] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9154), 1, + anon_sym_dynamic, + STATE(4534), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4552), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6431), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9996), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4570), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9501), 4, + STATE(4988), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591551,52 +591772,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129538] = 19, - ACTIONS(7374), 1, + [129406] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(9506), 4, + STATE(8737), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591604,52 +591825,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129610] = 19, - ACTIONS(345), 1, + [129478] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9224), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - ACTIONS(9226), 1, + ACTIONS(9132), 1, anon_sym_dynamic, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(855), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(6423), 1, + STATE(6432), 1, sym_type_modifiers, - STATE(9744), 1, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(850), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(1249), 4, + STATE(866), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591657,52 +591878,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129682] = 19, - ACTIONS(7374), 1, + [129550] = 19, + ACTIONS(7370), 1, anon_sym_dynamic, - ACTIONS(7381), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(8656), 1, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6431), 1, + STATE(6429), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(8322), 1, sym_user_type, - STATE(9732), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8070), 2, + STATE(8024), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8677), 4, + STATE(8781), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591710,52 +591931,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129754] = 19, - ACTIONS(557), 1, + [129622] = 19, + ACTIONS(7370), 1, + anon_sym_dynamic, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9176), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9178), 1, - anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9030), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6429), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(2864), 1, + STATE(8149), 1, + sym__simple_user_type, + STATE(8322), 1, sym_user_type, - STATE(6424), 1, - sym_type_modifiers, - STATE(9581), 1, + STATE(9794), 1, sym_parenthesized_user_type, - STATE(9985), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2865), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7217), 3, + STATE(8024), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(3600), 4, + STATE(8776), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591763,52 +591984,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129826] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [129694] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, - sym_simple_identifier, - STATE(8026), 1, + ACTIONS(9130), 1, + anon_sym_LPAREN, + ACTIONS(9132), 1, + anon_sym_dynamic, + STATE(817), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(830), 1, sym_user_type, - STATE(9732), 1, + STATE(6432), 1, + sym_type_modifiers, + STATE(9660), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(840), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8680), 4, + STATE(871), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591816,52 +592037,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129898] = 19, - ACTIONS(345), 1, + [129766] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(6509), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(6469), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(457), 2, + STATE(2455), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7575), 2, + STATE(7523), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591869,52 +592090,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [129970] = 19, - ACTIONS(7374), 1, - anon_sym_dynamic, - ACTIONS(7381), 1, - anon_sym_suspend, - ACTIONS(8656), 1, + [129838] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(7377), 1, + anon_sym_suspend, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6431), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8320), 1, + STATE(4779), 1, sym_user_type, - STATE(9732), 1, - sym_parenthesized_user_type, - STATE(9733), 1, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8070), 2, + STATE(4778), 2, sym__type_reference, sym_parenthesized_type, - STATE(7217), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8663), 4, + STATE(5449), 4, sym__type, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591922,51 +592143,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130042] = 19, - ACTIONS(8656), 1, + [129910] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9277), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(4717), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6573), 1, + STATE(823), 1, + sym_simple_identifier, + STATE(6496), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7513), 1, - sym_simple_identifier, - STATE(7864), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7916), 2, + STATE(445), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7570), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -591974,51 +592196,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130113] = 19, - ACTIONS(8656), 1, + [129982] = 19, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9277), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9158), 1, anon_sym_LPAREN, - STATE(5051), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(9160), 1, + anon_sym_dynamic, + STATE(4609), 1, sym__lexical_identifier, - STATE(6531), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7369), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(7971), 1, + STATE(4668), 1, sym__simple_user_type, + STATE(4779), 1, + sym_user_type, + STATE(6438), 1, + sym_type_modifiers, + STATE(9539), 1, + sym_function_type_parameters, + STATE(9544), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(4778), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7967), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, + STATE(5447), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592026,51 +592249,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130184] = 19, - ACTIONS(8656), 1, + [130054] = 19, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(7377), 1, anon_sym_suspend, - ACTIONS(9279), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9148), 1, anon_sym_LPAREN, - STATE(4898), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6533), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7431), 1, + ACTIONS(9150), 1, + anon_sym_dynamic, + STATE(3332), 1, sym_simple_identifier, - STATE(7987), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, + STATE(3438), 1, + sym_user_type, + STATE(6406), 1, + sym_type_modifiers, + STATE(9706), 1, + sym_parenthesized_user_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(3440), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7937), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7214), 3, + STATE(7209), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, + STATE(4181), 4, + sym__type, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592078,51 +592302,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130255] = 19, - ACTIONS(8656), 1, + [130126] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9281), 1, + ACTIONS(9225), 1, anon_sym_LPAREN, - STATE(2812), 1, + STATE(4936), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6559), 1, + STATE(6541), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7384), 1, + STATE(7463), 1, sym_simple_identifier, - STATE(7888), 1, + STATE(8003), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7972), 2, + STATE(7871), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592130,51 +592354,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130326] = 19, - ACTIONS(9084), 1, + [130197] = 19, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9206), 1, + ACTIONS(9148), 1, anon_sym_LPAREN, - ACTIONS(9212), 1, - sym__backtick_identifier, - ACTIONS(9283), 1, + ACTIONS(9227), 1, anon_sym_dynamic, - STATE(5678), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7528), 1, - sym_type_modifiers, - STATE(7861), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(8323), 1, + STATE(3370), 1, sym_user_type, - STATE(9657), 1, + STATE(7553), 1, + sym_type_modifiers, + STATE(9701), 1, sym_parenthesized_user_type, - STATE(9684), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5735), 2, + STATE(3571), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(5767), 3, + STATE(3816), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9208), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592182,51 +592406,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130397] = 19, - ACTIONS(431), 1, + [130268] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9172), 1, - anon_sym_LPAREN, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9285), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9229), 1, + anon_sym_LPAREN, + STATE(5015), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3368), 1, - sym_user_type, - STATE(7488), 1, + STATE(6553), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9527), 1, - sym_parenthesized_user_type, - STATE(10086), 1, - sym_function_type_parameters, + STATE(7541), 1, + sym_simple_identifier, + STATE(7998), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3555), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(3786), 3, - sym_not_nullable_type, + STATE(7903), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1652), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592234,51 +592458,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130468] = 19, - ACTIONS(8656), 1, + [130339] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9281), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(2994), 1, + STATE(3015), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6581), 1, + STATE(6564), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7386), 1, + STATE(7443), 1, sym_simple_identifier, - STATE(8014), 1, + STATE(7867), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8011), 2, + STATE(7968), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592286,51 +592510,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130539] = 19, - ACTIONS(8656), 1, + [130410] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9287), 1, + ACTIONS(9233), 1, anon_sym_LPAREN, - STATE(3669), 1, + STATE(2983), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6576), 1, + STATE(6557), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7365), 1, + STATE(7474), 1, sym_simple_identifier, - STATE(7992), 1, + STATE(7881), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7959), 2, + STATE(7916), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592338,51 +592562,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130610] = 19, - ACTIONS(255), 1, + [130481] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9164), 1, - anon_sym_LPAREN, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9289), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(2881), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(950), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3051), 1, - sym_user_type, - STATE(7492), 1, + STATE(6572), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9557), 1, - sym_parenthesized_user_type, - STATE(10030), 1, - sym_function_type_parameters, + STATE(7536), 1, + sym_simple_identifier, + STATE(7965), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3034), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(3304), 3, - sym_not_nullable_type, + STATE(7895), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1437), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592390,51 +592614,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130681] = 19, - ACTIONS(7), 1, + [130552] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9188), 1, + ACTIONS(9229), 1, anon_sym_LPAREN, - ACTIONS(9291), 1, - anon_sym_dynamic, - STATE(4584), 1, + STATE(4862), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4868), 1, - sym_user_type, - STATE(7524), 1, + STATE(6568), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9727), 1, - sym_function_type_parameters, - STATE(9860), 1, - sym_parenthesized_user_type, + STATE(7504), 1, + sym_simple_identifier, + STATE(7870), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4872), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(5034), 3, - sym_not_nullable_type, + STATE(7914), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1908), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592442,51 +592666,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130752] = 19, - ACTIONS(8656), 1, + [130623] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9293), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(964), 1, + STATE(3564), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6554), 1, + STATE(6544), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7506), 1, + STATE(7393), 1, sym_simple_identifier, - STATE(7981), 1, + STATE(7890), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7946), 2, + STATE(7942), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592494,51 +592718,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130823] = 19, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + [130694] = 19, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9264), 1, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9136), 1, + anon_sym_LPAREN, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9295), 1, + ACTIONS(9239), 1, anon_sym_dynamic, - STATE(7514), 1, - sym_type_modifiers, - STATE(8327), 1, - sym__lexical_identifier, - STATE(8328), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(8591), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, sym__simple_user_type, - STATE(9079), 1, + STATE(4626), 1, sym_user_type, - STATE(9519), 1, + STATE(7467), 1, + sym_type_modifiers, + STATE(9674), 1, sym_parenthesized_user_type, - STATE(9760), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8818), 2, + STATE(4623), 2, sym__type_reference, sym_parenthesized_type, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8314), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(4918), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(9266), 7, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592546,51 +592770,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130894] = 19, - ACTIONS(8656), 1, + [130765] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9277), 1, + ACTIONS(9225), 1, anon_sym_LPAREN, - STATE(4717), 1, + STATE(4936), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6541), 1, + STATE(6552), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7453), 1, + STATE(7417), 1, sym_simple_identifier, - STATE(7864), 1, + STATE(8003), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7936), 2, + STATE(7931), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592598,51 +592822,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [130965] = 19, - ACTIONS(8656), 1, + [130836] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9293), 1, + ACTIONS(9233), 1, anon_sym_LPAREN, - STATE(848), 1, + STATE(3691), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6557), 1, + STATE(6561), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7572), 1, + STATE(7369), 1, sym_simple_identifier, - STATE(7872), 1, + STATE(8018), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7910), 2, + STATE(7955), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592650,51 +592874,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131036] = 19, - ACTIONS(8656), 1, + [130907] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9293), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(964), 1, + STATE(2844), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6542), 1, + STATE(6540), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7442), 1, + STATE(7377), 1, sym_simple_identifier, - STATE(7981), 1, + STATE(7902), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7892), 2, + STATE(7966), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592702,51 +592926,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131107] = 19, - ACTIONS(8656), 1, + [130978] = 19, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9287), 1, + ACTIONS(9144), 1, anon_sym_LPAREN, - STATE(3020), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(9241), 1, + anon_sym_dynamic, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(6529), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(2849), 1, + sym_user_type, + STATE(7500), 1, sym_type_modifiers, - STATE(7555), 1, - sym_simple_identifier, - STATE(7874), 1, - sym__simple_user_type, + STATE(9682), 1, + sym_parenthesized_user_type, + STATE(10100), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(2850), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7901), 2, - sym__receiver_type, + STATE(2986), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7214), 3, + sym_function_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592754,51 +592978,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131178] = 19, - ACTIONS(8656), 1, + [131049] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9297), 1, + ACTIONS(9229), 1, anon_sym_LPAREN, - STATE(3580), 1, + STATE(5015), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6545), 1, + STATE(6566), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7467), 1, + STATE(7562), 1, sym_simple_identifier, - STATE(7876), 1, + STATE(7998), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7898), 2, + STATE(7996), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592806,51 +593030,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131249] = 19, - ACTIONS(8656), 1, + [131120] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9277), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(5051), 1, + STATE(3722), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6565), 1, + STATE(6533), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7595), 1, + STATE(7436), 1, sym_simple_identifier, - STATE(7971), 1, + STATE(7987), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7862), 2, + STATE(8010), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592858,51 +593082,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131320] = 19, - ACTIONS(345), 1, + [131191] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9224), 1, + ACTIONS(9225), 1, anon_sym_LPAREN, - ACTIONS(9299), 1, - anon_sym_dynamic, - STATE(813), 1, + STATE(4547), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(860), 1, - sym_user_type, - STATE(7419), 1, + STATE(6538), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9746), 1, - sym_parenthesized_user_type, - STATE(9904), 1, - sym_function_type_parameters, + STATE(7505), 1, + sym_simple_identifier, + STATE(7897), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(845), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(962), 3, - sym_not_nullable_type, + STATE(8017), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592910,51 +593134,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131391] = 19, - ACTIONS(557), 1, + [131262] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9176), 1, - anon_sym_LPAREN, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9301), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9235), 1, + anon_sym_LPAREN, + STATE(850), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, - sym_simple_identifier, - STATE(2834), 1, - sym_user_type, - STATE(7477), 1, + STATE(6581), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9586), 1, - sym_parenthesized_user_type, - STATE(9985), 1, - sym_function_type_parameters, + STATE(7391), 1, + sym_simple_identifier, + STATE(7876), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2855), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(3032), 3, - sym_not_nullable_type, + STATE(7926), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -592962,51 +593186,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131462] = 19, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9206), 1, - anon_sym_LPAREN, - ACTIONS(9258), 1, + [131333] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9283), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - STATE(5678), 1, - sym_simple_identifier, - STATE(5710), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9231), 1, + anon_sym_LPAREN, + STATE(3015), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(5711), 1, - sym__simple_user_type, - STATE(5762), 1, - sym_user_type, - STATE(7523), 1, + STATE(6577), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(9529), 1, - sym_function_type_parameters, - STATE(9576), 1, - sym_parenthesized_user_type, + STATE(7596), 1, + sym_simple_identifier, + STATE(7867), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5735), 2, - sym__type_reference, - sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(5767), 3, - sym_not_nullable_type, + STATE(7886), 2, + sym__receiver_type, sym_nullable_type, - sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9260), 7, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593014,51 +593238,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131533] = 19, - ACTIONS(8656), 1, + [131404] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9279), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - STATE(4898), 1, + STATE(850), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6530), 1, + STATE(6532), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7465), 1, + STATE(7359), 1, sym_simple_identifier, - STATE(7987), 1, + STATE(7876), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7984), 2, + STATE(7977), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593066,51 +593290,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131604] = 19, - ACTIONS(8656), 1, + [131475] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9281), 1, + ACTIONS(9233), 1, anon_sym_LPAREN, - STATE(2994), 1, + STATE(3691), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6558), 1, + STATE(6529), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7538), 1, + STATE(7565), 1, sym_simple_identifier, - STATE(8014), 1, + STATE(8018), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7889), 2, + STATE(7992), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593118,51 +593342,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131675] = 19, - ACTIONS(8656), 1, + [131546] = 19, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9279), 1, + ACTIONS(9162), 1, anon_sym_LPAREN, - STATE(4898), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(9243), 1, + anon_sym_dynamic, + STATE(2894), 1, sym__lexical_identifier, - STATE(6564), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7409), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(7987), 1, + STATE(2943), 1, sym__simple_user_type, + STATE(3049), 1, + sym_user_type, + STATE(7533), 1, + sym_type_modifiers, + STATE(9692), 1, + sym_parenthesized_user_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(3001), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7884), 2, - sym__receiver_type, + STATE(3350), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7214), 3, + sym_function_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593170,51 +593394,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131746] = 19, - ACTIONS(9084), 1, + [131617] = 19, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9228), 1, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(9230), 1, + ACTIONS(9114), 1, anon_sym_LPAREN, - ACTIONS(9236), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9303), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9245), 1, anon_sym_dynamic, - STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(5756), 1, + STATE(2872), 1, + sym_simple_identifier, + STATE(2888), 1, sym__simple_user_type, - STATE(5798), 1, + STATE(3206), 1, sym_user_type, - STATE(7499), 1, + STATE(7450), 1, sym_type_modifiers, - STATE(9481), 1, + STATE(9666), 1, sym_parenthesized_user_type, - STATE(9895), 1, + STATE(10110), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5779), 2, + STATE(3150), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(5833), 3, + STATE(3419), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9232), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593222,51 +593446,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131817] = 19, - ACTIONS(8656), 1, + [131688] = 19, + ACTIONS(8989), 1, + anon_sym_LPAREN, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9247), 1, anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9279), 1, + STATE(7544), 1, + sym_type_modifiers, + STATE(8319), 1, + sym__lexical_identifier, + STATE(8329), 1, + sym_simple_identifier, + STATE(8525), 1, + sym__simple_user_type, + STATE(8957), 1, + sym_user_type, + STATE(9774), 1, + sym_parenthesized_user_type, + STATE(9851), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9077), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(8315), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(9198), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [131759] = 19, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(8989), 1, anon_sym_LPAREN, - STATE(4574), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9249), 1, + anon_sym_dynamic, + STATE(6361), 1, sym__lexical_identifier, - STATE(6538), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7548), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(7878), 1, + STATE(7516), 1, + sym_type_modifiers, + STATE(8109), 1, sym__simple_user_type, + STATE(8332), 1, + sym_user_type, + STATE(9816), 1, + sym_function_type_parameters, + STATE(9902), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7993), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7214), 3, + STATE(8275), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, + STATE(8315), 3, + sym_not_nullable_type, + sym_nullable_type, + sym_function_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593274,51 +593550,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131888] = 19, - ACTIONS(8656), 1, + [131830] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9043), 1, + ACTIONS(8989), 1, anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9305), 1, + ACTIONS(9249), 1, anon_sym_dynamic, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7416), 1, + STATE(7411), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8026), 1, + STATE(8149), 1, sym__simple_user_type, - STATE(8324), 1, + STATE(8323), 1, sym_user_type, - STATE(9493), 1, + STATE(9558), 1, sym_parenthesized_user_type, - STATE(9733), 1, + STATE(9933), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8138), 2, + STATE(8275), 2, sym__type_reference, sym_parenthesized_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(8314), 3, + STATE(8315), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593326,51 +593602,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [131959] = 19, - ACTIONS(8656), 1, + [131901] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9279), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(4574), 1, + STATE(3564), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6574), 1, + STATE(6551), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7394), 1, + STATE(7529), 1, sym_simple_identifier, - STATE(7878), 1, + STATE(7890), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7895), 2, + STATE(7908), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593378,51 +593654,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132030] = 19, - ACTIONS(8656), 1, + [131972] = 19, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9043), 1, - anon_sym_LPAREN, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9305), 1, + ACTIONS(9152), 1, + anon_sym_LPAREN, + ACTIONS(9251), 1, anon_sym_dynamic, - STATE(6073), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(7565), 1, - sym_type_modifiers, - STATE(8237), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8344), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4571), 1, sym_user_type, - STATE(9745), 1, - sym_parenthesized_user_type, - STATE(9776), 1, + STATE(7469), 1, + sym_type_modifiers, + STATE(9911), 1, sym_function_type_parameters, + STATE(9984), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8138), 2, + STATE(4573), 2, sym__type_reference, sym_parenthesized_type, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(8314), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(4639), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - ACTIONS(8666), 7, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593430,51 +593706,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132101] = 19, - ACTIONS(8656), 1, + [132043] = 19, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9281), 1, + ACTIONS(9130), 1, anon_sym_LPAREN, - STATE(2812), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(9253), 1, + anon_sym_dynamic, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(6532), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(832), 1, + sym_user_type, + STATE(7427), 1, sym_type_modifiers, - STATE(7426), 1, - sym_simple_identifier, - STATE(7888), 1, - sym__simple_user_type, + STATE(9659), 1, + sym_parenthesized_user_type, + STATE(10098), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(856), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7906), 2, - sym__receiver_type, + STATE(975), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7214), 3, + sym_function_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593482,51 +593758,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132172] = 19, - ACTIONS(8656), 1, + [132114] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9277), 1, + ACTIONS(9237), 1, anon_sym_LPAREN, - STATE(5051), 1, + STATE(3722), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6540), 1, + STATE(6555), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7361), 1, + STATE(7386), 1, sym_simple_identifier, - STATE(7971), 1, + STATE(7987), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7880), 2, + STATE(7874), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593534,51 +593810,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132243] = 19, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [132185] = 19, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9281), 1, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9178), 1, anon_sym_LPAREN, - STATE(2994), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(9184), 1, + sym__backtick_identifier, + ACTIONS(9255), 1, + anon_sym_dynamic, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6568), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(7441), 1, sym_type_modifiers, - STATE(7412), 1, - sym_simple_identifier, - STATE(8014), 1, + STATE(7972), 1, sym__simple_user_type, + STATE(8321), 1, + sym_user_type, + STATE(9865), 1, + sym_parenthesized_user_type, + STATE(9935), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(5715), 2, + sym__type_reference, + sym_parenthesized_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7954), 2, - sym__receiver_type, + STATE(5768), 3, + sym_not_nullable_type, sym_nullable_type, - STATE(7214), 3, + sym_function_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593586,51 +593862,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132314] = 19, - ACTIONS(8656), 1, + [132256] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9297), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(3785), 1, + STATE(2844), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6572), 1, + STATE(6583), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7529), 1, + STATE(7456), 1, sym_simple_identifier, - STATE(8010), 1, + STATE(7902), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7870), 2, + STATE(7923), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593638,51 +593914,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132385] = 19, - ACTIONS(9084), 1, + [132327] = 19, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9214), 1, + ACTIONS(9178), 1, + anon_sym_LPAREN, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9246), 1, - anon_sym_LPAREN, - ACTIONS(9307), 1, + ACTIONS(9255), 1, anon_sym_dynamic, - STATE(2817), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(2856), 1, + STATE(5708), 1, sym__lexical_identifier, - STATE(2939), 1, + STATE(5713), 1, sym__simple_user_type, - STATE(3196), 1, + STATE(5763), 1, sym_user_type, - STATE(7446), 1, + STATE(7486), 1, sym_type_modifiers, - STATE(9705), 1, - sym_parenthesized_user_type, - STATE(9917), 1, + STATE(9593), 1, sym_function_type_parameters, + STATE(9814), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3178), 2, + STATE(5715), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(3406), 3, + STATE(5768), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9218), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593690,51 +593966,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132456] = 19, - ACTIONS(9084), 1, + [132398] = 19, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9194), 1, + ACTIONS(9235), 1, anon_sym_LPAREN, - ACTIONS(9200), 1, + STATE(950), 1, + sym_function_value_parameters, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6539), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7437), 1, + sym_simple_identifier, + STATE(7965), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7956), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132469] = 19, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9309), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9158), 1, + anon_sym_LPAREN, + ACTIONS(9257), 1, anon_sym_dynamic, - STATE(4529), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(4636), 1, + STATE(4805), 1, sym_user_type, - STATE(7463), 1, + STATE(7526), 1, sym_type_modifiers, - STATE(9607), 1, - sym_parenthesized_user_type, - STATE(9960), 1, + STATE(9539), 1, sym_function_type_parameters, + STATE(9600), 1, + sym_parenthesized_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4656), 2, + STATE(4803), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(4950), 3, + STATE(4986), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9196), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593742,51 +594070,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132527] = 19, - ACTIONS(115), 1, + [132540] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9168), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9233), 1, anon_sym_LPAREN, - ACTIONS(9186), 1, + STATE(2983), 1, + sym_function_value_parameters, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6563), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7509), 1, + sym_simple_identifier, + STATE(7881), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7880), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [132611] = 19, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9311), 1, + ACTIONS(9166), 1, + sym__alpha_identifier, + ACTIONS(9168), 1, + anon_sym_LPAREN, + ACTIONS(9174), 1, + sym__backtick_identifier, + ACTIONS(9259), 1, anon_sym_dynamic, - STATE(4537), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(5616), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(5755), 1, sym__simple_user_type, - STATE(4548), 1, + STATE(5764), 1, sym_user_type, - STATE(7589), 1, + STATE(7582), 1, sym_type_modifiers, - STATE(9641), 1, - sym_function_type_parameters, - STATE(9788), 1, + STATE(9732), 1, sym_parenthesized_user_type, + STATE(9811), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4546), 2, + STATE(5786), 2, sym__type_reference, sym_parenthesized_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(4655), 3, + STATE(5816), 3, sym_not_nullable_type, sym_nullable_type, sym_function_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593794,51 +594174,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132598] = 19, - ACTIONS(8656), 1, + [132682] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9293), 1, + ACTIONS(9225), 1, anon_sym_LPAREN, - STATE(848), 1, + STATE(4547), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6567), 1, + STATE(6534), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7403), 1, + STATE(7468), 1, sym_simple_identifier, - STATE(7872), 1, + STATE(7897), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7983), 2, + STATE(7899), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593846,51 +594226,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132669] = 19, - ACTIONS(8656), 1, + [132753] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9287), 1, + ACTIONS(9225), 1, anon_sym_LPAREN, - STATE(3669), 1, + STATE(4936), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6551), 1, + STATE(6543), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7372), 1, + STATE(7356), 1, sym_simple_identifier, - STATE(7992), 1, + STATE(8003), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7961), 2, + STATE(8002), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593898,51 +594278,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132740] = 19, - ACTIONS(8656), 1, + [132824] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9297), 1, + ACTIONS(9231), 1, anon_sym_LPAREN, - STATE(3580), 1, + STATE(3015), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6543), 1, + STATE(6578), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7404), 1, + STATE(7494), 1, sym_simple_identifier, - STATE(7876), 1, + STATE(7867), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7948), 2, + STATE(7985), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -593950,51 +594330,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132811] = 19, - ACTIONS(8656), 1, + [132895] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9287), 1, + ACTIONS(9229), 1, anon_sym_LPAREN, - STATE(3020), 1, + STATE(4862), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6578), 1, + STATE(6574), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7516), 1, + STATE(7472), 1, sym_simple_identifier, - STATE(7874), 1, + STATE(7870), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7883), 2, + STATE(7990), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594002,51 +594382,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132882] = 19, - ACTIONS(8656), 1, + [132966] = 19, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9297), 1, + ACTIONS(9229), 1, anon_sym_LPAREN, - STATE(3785), 1, + STATE(5015), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6575), 1, + STATE(6565), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7478), 1, + STATE(7365), 1, sym_simple_identifier, - STATE(8010), 1, + STATE(7998), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7982), 2, + STATE(7868), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594054,48 +594434,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [132953] = 17, - ACTIONS(345), 1, + [133037] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(568), 2, + STATE(2413), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7540), 2, + STATE(7484), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594103,48 +594483,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133019] = 17, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [133103] = 17, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9217), 1, + sym__alpha_identifier, + ACTIONS(9219), 1, anon_sym_LPAREN, - STATE(2881), 1, + ACTIONS(9223), 1, + sym__backtick_identifier, + STATE(5676), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(5688), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2446), 2, + STATE(5496), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7543), 2, + STATE(7451), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(9221), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594152,48 +594532,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133085] = 17, - ACTIONS(431), 1, + [133169] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2389), 2, + STATE(2414), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7542), 2, + STATE(7444), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594201,48 +594581,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133151] = 17, - ACTIONS(431), 1, + [133235] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9261), 1, anon_sym_LPAREN, - ACTIONS(9184), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6528), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7396), 1, + sym_simple_identifier, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8008), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [133303] = 17, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2697), 2, + STATE(2374), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7573), 2, + STATE(7507), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594250,49 +594680,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133217] = 18, - ACTIONS(8656), 1, + [133369] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(3290), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(6534), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7440), 1, - sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7938), 2, + STATE(2396), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7415), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594300,48 +594729,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133285] = 17, - ACTIONS(255), 1, + [133435] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2961), 1, - sym_simple_identifier, - STATE(7205), 1, + STATE(6550), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7438), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2624), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7491), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7872), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594349,48 +594779,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133351] = 17, - ACTIONS(431), 1, + [133503] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(823), 1, + sym_simple_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2417), 2, + STATE(609), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7391), 2, + STATE(7420), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594398,49 +594828,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133417] = 18, - ACTIONS(8656), 1, + [133569] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6552), 1, + STATE(6554), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7355), 1, + STATE(7513), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7908), 2, + STATE(8006), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594448,49 +594878,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133485] = 18, - ACTIONS(8656), 1, + [133637] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6549), 1, + STATE(6559), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7522), 1, + STATE(7530), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7944), 2, + STATE(7927), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594498,48 +594928,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133553] = 17, - ACTIONS(345), 1, + [133705] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(434), 2, + STATE(2371), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7493), 2, + STATE(7561), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594547,48 +594977,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133619] = 17, - ACTIONS(345), 1, + [133771] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(565), 2, + STATE(2615), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7588), 2, + STATE(7383), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594596,48 +595026,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133685] = 17, - ACTIONS(345), 1, + [133837] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(422), 2, + STATE(2378), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7473), 2, + STATE(7499), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594645,48 +595075,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133751] = 17, - ACTIONS(255), 1, + [133903] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, - anon_sym_LPAREN, STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2422), 2, + STATE(2425), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7482), 2, + STATE(7508), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594694,49 +595124,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133817] = 18, - ACTIONS(8656), 1, + [133969] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6580), 1, + STATE(6576), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7539), 1, + STATE(7432), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7977), 2, + STATE(7924), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594744,49 +595174,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133885] = 18, - ACTIONS(8656), 1, + [134037] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, - anon_sym_LPAREN, - STATE(6073), 1, + STATE(2881), 1, + sym_simple_identifier, + STATE(2894), 1, sym__lexical_identifier, - STATE(6562), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7576), 1, - sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7912), 2, + STATE(2635), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7555), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594794,48 +595223,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [133953] = 17, - ACTIONS(9084), 1, + [134103] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9214), 1, - sym__alpha_identifier, - ACTIONS(9216), 1, - anon_sym_LPAREN, - ACTIONS(9220), 1, - sym__backtick_identifier, - STATE(2856), 1, - sym__lexical_identifier, - STATE(2956), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2305), 2, + STATE(1853), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7505), 2, + STATE(7372), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9218), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594843,48 +595272,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134019] = 17, - ACTIONS(9084), 1, + [134169] = 17, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9238), 1, - sym__alpha_identifier, - ACTIONS(9240), 1, - anon_sym_LPAREN, - ACTIONS(9244), 1, - sym__backtick_identifier, - STATE(5680), 1, - sym__lexical_identifier, - STATE(5682), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5490), 2, + STATE(2455), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7433), 2, + STATE(7523), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9242), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594892,48 +595321,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134085] = 17, - ACTIONS(255), 1, + [134235] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2961), 1, - sym_simple_identifier, - STATE(7205), 1, + STATE(6579), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7519), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2444), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7363), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7883), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594941,48 +595371,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134151] = 17, - ACTIONS(345), 1, + [134303] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(584), 2, + STATE(2334), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7495), 2, + STATE(7446), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -594990,48 +595420,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134217] = 17, - ACTIONS(345), 1, + [134369] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(560), 2, + STATE(601), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7451), 2, + STATE(7379), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595039,48 +595469,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134283] = 17, - ACTIONS(431), 1, + [134435] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2398), 2, + STATE(2671), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7427), 2, + STATE(7385), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595088,48 +595518,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134349] = 17, - ACTIONS(255), 1, + [134501] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2326), 2, + STATE(445), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7422), 2, + STATE(7570), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595137,48 +595567,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134415] = 17, - ACTIONS(431), 1, + [134567] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2413), 2, + STATE(2448), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7531), 2, + STATE(7414), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595186,48 +595616,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134481] = 17, - ACTIONS(345), 1, + [134633] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(823), 1, - sym_simple_identifier, - STATE(7205), 1, + STATE(6567), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7584), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(426), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7464), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7982), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595235,49 +595666,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134547] = 18, - ACTIONS(8656), 1, + [134701] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6563), 1, + STATE(6575), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7421), 1, + STATE(7452), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7953), 2, + STATE(8009), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595285,48 +595716,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134615] = 17, - ACTIONS(345), 1, + [134769] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(823), 1, - sym_simple_identifier, - STATE(7205), 1, + STATE(6573), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7585), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(436), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7454), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7889), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595334,49 +595766,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134681] = 18, - ACTIONS(8656), 1, + [134837] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6583), 1, + STATE(6571), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7536), 1, + STATE(7558), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8018), 2, + STATE(7989), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595384,48 +595816,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134749] = 17, - ACTIONS(255), 1, + [134905] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2365), 2, + STATE(617), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7437), 2, + STATE(7465), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595433,48 +595865,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134815] = 17, - ACTIONS(255), 1, + [134971] = 17, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9194), 1, + anon_sym_LPAREN, + STATE(2819), 1, + sym__lexical_identifier, + STATE(2882), 1, + sym_simple_identifier, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2253), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7387), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9116), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135037] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1969), 2, + STATE(615), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7432), 2, + STATE(7551), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595482,49 +595963,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134881] = 18, - ACTIONS(8656), 1, + [135103] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6570), 1, + STATE(6580), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7439), 1, + STATE(7487), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7957), 2, + STATE(7864), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595532,48 +596013,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [134949] = 17, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [135171] = 17, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9186), 1, + sym__alpha_identifier, + ACTIONS(9188), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, + ACTIONS(9192), 1, + sym__backtick_identifier, + STATE(5679), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(5682), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2434), 2, + STATE(5482), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7486), 2, + STATE(7595), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(9190), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [135237] = 18, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9261), 1, + anon_sym_LPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6560), 1, + sym_type_parameters, + STATE(7213), 1, + sym_type_modifiers, + STATE(7398), 1, + sym_simple_identifier, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7933), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595581,48 +596112,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135015] = 17, - ACTIONS(255), 1, + [135305] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2961), 1, - sym_simple_identifier, - STATE(7205), 1, + STATE(6569), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7524), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2163), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7414), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7896), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595630,48 +596162,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135081] = 17, - ACTIONS(255), 1, + [135373] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2322), 2, + STATE(2630), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7564), 2, + STATE(7445), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595679,48 +596211,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135147] = 17, - ACTIONS(255), 1, + [135439] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, - anon_sym_LPAREN, STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2168), 2, + STATE(2623), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7396), 2, + STATE(7567), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595728,49 +596260,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135213] = 18, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [135505] = 17, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9217), 1, + sym__alpha_identifier, + ACTIONS(9219), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9223), 1, + sym__backtick_identifier, + STATE(5676), 1, sym__lexical_identifier, - STATE(6560), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7512), 1, + STATE(5688), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7899), 2, + STATE(5497), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7410), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(9221), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595778,48 +596309,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135281] = 17, - ACTIONS(9084), 1, + [135571] = 18, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9250), 1, - sym__alpha_identifier, - ACTIONS(9252), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - sym__backtick_identifier, - STATE(5676), 1, - sym_simple_identifier, - STATE(5685), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(6558), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7501), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5426), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7596), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7915), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9254), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595827,49 +596359,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135347] = 18, - ACTIONS(8656), 1, + [135639] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(3290), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(6556), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7483), 1, - sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7990), 2, + STATE(2691), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7376), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595877,48 +596408,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135415] = 17, - ACTIONS(9084), 1, + [135705] = 17, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9214), 1, - sym__alpha_identifier, - ACTIONS(9216), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - ACTIONS(9220), 1, - sym__backtick_identifier, - STATE(2856), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(2956), 1, + STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2290), 2, + STATE(439), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7450), 2, + STATE(7434), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9218), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595926,48 +596457,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135481] = 17, - ACTIONS(255), 1, + [135771] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2621), 2, + STATE(593), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7376), 2, + STATE(7592), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -595975,48 +596506,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135547] = 17, - ACTIONS(9084), 1, + [135837] = 17, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9250), 1, - sym__alpha_identifier, - ACTIONS(9252), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - ACTIONS(9256), 1, - sym__backtick_identifier, - STATE(5676), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(5685), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5429), 2, + STATE(2643), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7475), 2, + STATE(7380), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9254), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596024,48 +596555,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135613] = 17, - ACTIONS(255), 1, + [135903] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, - anon_sym_LPAREN, STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2607), 2, + STATE(1820), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7406), 2, + STATE(7392), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596073,48 +596604,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135679] = 17, - ACTIONS(431), 1, + [135969] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(823), 1, + sym_simple_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2638), 2, + STATE(441), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7392), 2, + STATE(7577), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596122,48 +596653,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135745] = 17, - ACTIONS(431), 1, + [136035] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9261), 1, + anon_sym_LPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(6530), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7403), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2710), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7358), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7878), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596171,48 +596703,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135811] = 17, - ACTIONS(255), 1, + [136103] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, + STATE(3290), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2640), 2, + STATE(2692), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7382), 2, + STATE(7491), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596220,48 +596752,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135877] = 17, - ACTIONS(345), 1, + [136169] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(445), 2, + STATE(452), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7417), 2, + STATE(7556), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596269,48 +596801,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [135943] = 17, - ACTIONS(255), 1, + [136235] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(2961), 1, + STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2369), 2, + STATE(585), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7568), 2, + STATE(7593), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596318,49 +596850,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136009] = 18, - ACTIONS(8656), 1, + [136301] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6544), 1, + STATE(6545), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7393), 1, + STATE(7560), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7896), 2, + STATE(7863), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596368,48 +596900,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136077] = 17, - ACTIONS(431), 1, + [136369] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9204), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(823), 1, + sym_simple_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2622), 2, + STATE(458), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7401), 2, + STATE(7502), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596417,49 +596949,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136143] = 18, - ACTIONS(8656), 1, + [136435] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6539), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7517), 1, + STATE(823), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7902), 2, + STATE(436), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7433), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596467,48 +596998,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136211] = 17, - ACTIONS(431), 1, + [136501] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2712), 2, + STATE(2362), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7460), 2, + STATE(7514), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596516,48 +597047,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136277] = 17, - ACTIONS(345), 1, + [136567] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(823), 1, - sym_simple_identifier, - STATE(7205), 1, + STATE(6582), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7358), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(598), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7434), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7979), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596565,48 +597097,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136343] = 17, - ACTIONS(431), 1, + [136635] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9261), 1, + anon_sym_LPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(6570), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7464), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2384), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7405), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7921), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596614,48 +597147,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136409] = 17, - ACTIONS(431), 1, + [136703] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2688), 2, + STATE(2412), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7388), 2, + STATE(7405), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596663,49 +597196,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136475] = 18, - ACTIONS(8656), 1, + [136769] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6536), 1, + STATE(6556), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7438), 1, + STATE(7554), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7893), 2, + STATE(7911), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596713,49 +597246,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136543] = 18, - ACTIONS(8656), 1, + [136837] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6546), 1, + STATE(6548), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7532), 1, + STATE(7416), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7890), 2, + STATE(7934), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596763,48 +597296,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136611] = 17, - ACTIONS(345), 1, + [136905] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(456), 2, + STATE(1754), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7435), 2, + STATE(7395), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596812,48 +597345,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136677] = 17, - ACTIONS(431), 1, + [136971] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2328), 2, + STATE(2364), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7559), 2, + STATE(7520), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596861,48 +597394,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136743] = 17, - ACTIONS(345), 1, + [137037] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(612), 2, + STATE(425), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7534), 2, + STATE(7419), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596910,49 +597443,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136809] = 18, - ACTIONS(8656), 1, + [137103] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6577), 1, + STATE(6566), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7480), 1, + STATE(7562), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7998), 2, + STATE(7996), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -596960,49 +597493,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136877] = 18, - ACTIONS(8656), 1, + [137171] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6547), 1, + STATE(6549), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7374), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8001), 2, + STATE(7969), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597010,49 +597543,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [136945] = 18, - ACTIONS(8656), 1, + [137239] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, - anon_sym_LPAREN, - STATE(6073), 1, + STATE(2881), 1, + sym_simple_identifier, + STATE(2894), 1, sym__lexical_identifier, - STATE(6528), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7541), 1, - sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(2316), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7531), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7886), 2, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + STATE(7859), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [137305] = 17, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9112), 1, + sym__alpha_identifier, + ACTIONS(9120), 1, + sym__backtick_identifier, + ACTIONS(9126), 1, + anon_sym_dynamic, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9194), 1, + anon_sym_LPAREN, + STATE(2819), 1, + sym__lexical_identifier, + STATE(2882), 1, + sym_simple_identifier, + STATE(7213), 1, + sym_type_modifiers, + STATE(7850), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2299), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7498), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597060,48 +597641,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137013] = 17, - ACTIONS(345), 1, + [137371] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(823), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(599), 2, + STATE(2354), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7518), 2, + STATE(7543), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597109,49 +597690,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137079] = 18, - ACTIONS(8656), 1, + [137437] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6582), 1, + STATE(6546), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7509), 1, + STATE(7394), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7920), 2, + STATE(8011), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597159,48 +597740,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137147] = 17, - ACTIONS(345), 1, + [137505] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(444), 2, + STATE(559), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7511), 2, + STATE(7568), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597208,49 +597789,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137213] = 18, - ACTIONS(8656), 1, + [137571] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(3290), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(6553), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7554), 1, - sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8006), 2, + STATE(2636), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7406), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597258,49 +597838,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137281] = 18, - ACTIONS(8656), 1, + [137637] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9122), 1, + anon_sym_LPAREN, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, - anon_sym_LPAREN, - STATE(6073), 1, + STATE(2881), 1, + sym_simple_identifier, + STATE(2894), 1, sym__lexical_identifier, - STATE(6531), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7369), 1, - sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7967), 2, + STATE(1748), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7399), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597308,49 +597887,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137349] = 18, - ACTIONS(8656), 1, + [137703] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6566), 1, + STATE(6562), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7420), 1, + STATE(7547), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7867), 2, + STATE(7900), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597358,49 +597937,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137417] = 18, - ACTIONS(8656), 1, + [137771] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9156), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(3290), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(6550), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7408), 1, - sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7881), 2, + STATE(2734), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + STATE(7569), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597408,48 +597986,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137485] = 17, - ACTIONS(345), 1, + [137837] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, STATE(823), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(457), 2, + STATE(430), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7575), 2, + STATE(7409), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597457,48 +598035,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137551] = 17, - ACTIONS(431), 1, + [137903] = 17, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + ACTIONS(9156), 1, + anon_sym_LPAREN, + STATE(3290), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2669), 2, + STATE(2731), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7430), 2, + STATE(7550), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597506,49 +598084,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137617] = 18, - ACTIONS(8656), 1, + [137969] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6561), 1, + STATE(6535), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7387), 1, + STATE(7367), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7975), 2, + STATE(7958), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597556,48 +598134,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137685] = 17, - ACTIONS(431), 1, + [138037] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2677), 2, + STATE(2652), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7444), 2, + STATE(7482), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597605,49 +598183,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137751] = 18, - ACTIONS(8656), 1, + [138103] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6537), 1, + STATE(6531), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7429), 1, + STATE(7388), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7940), 2, + STATE(7946), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597655,48 +598233,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137819] = 17, - ACTIONS(345), 1, + [138171] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9222), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(823), 1, - sym_simple_identifier, - STATE(7205), 1, + STATE(6542), 1, + sym_type_parameters, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7471), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(613), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7471), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7901), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597704,48 +598283,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137885] = 17, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [138239] = 17, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9202), 1, + ACTIONS(9186), 1, + sym__alpha_identifier, + ACTIONS(9188), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2961), 1, + ACTIONS(9192), 1, + sym__backtick_identifier, + STATE(5679), 1, sym_simple_identifier, - STATE(7205), 1, + STATE(5682), 1, + sym__lexical_identifier, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1660), 2, + STATE(5483), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7423), 2, + STATE(7540), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1437), 7, + ACTIONS(9190), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597753,98 +598332,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [137951] = 17, - ACTIONS(431), 1, + [138305] = 17, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9180), 1, + ACTIONS(9122), 1, anon_sym_LPAREN, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - STATE(3305), 1, + STATE(2881), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2344), 2, + STATE(2451), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7364), 2, + STATE(7439), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [138017] = 18, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9313), 1, - anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6555), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7368), 1, - sym_simple_identifier, - STATE(7848), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7964), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597852,49 +598381,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138085] = 18, - ACTIONS(8656), 1, + [138371] = 18, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6548), 1, + STATE(6536), 1, sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7400), 1, + STATE(7353), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7952), 2, + STATE(7954), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -597902,98 +598431,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138153] = 18, - ACTIONS(8656), 1, + [138439] = 17, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9204), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6569), 1, - sym_type_parameters, - STATE(7205), 1, - sym_type_modifiers, - STATE(7410), 1, - sym_simple_identifier, - STATE(7848), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7985), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [138221] = 17, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9180), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - STATE(3305), 1, + STATE(823), 1, sym_simple_identifier, - STATE(3325), 1, - sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2321), 2, + STATE(555), 2, sym_variable_declaration, sym_multi_variable_declaration, - STATE(7551), 2, + STATE(7563), 2, sym__receiver_type, sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598001,48 +598480,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138287] = 17, - ACTIONS(9084), 1, + [138505] = 16, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9238), 1, - sym__alpha_identifier, - ACTIONS(9240), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - ACTIONS(9244), 1, - sym__backtick_identifier, - STATE(5680), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(5682), 1, - sym_simple_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7848), 1, + STATE(7448), 1, + sym_simple_identifier, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5512), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - STATE(7521), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8021), 2, + sym__receiver_type, + sym_nullable_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(9242), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598050,49 +598526,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138353] = 18, - ACTIONS(8656), 1, + [138567] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6579), 1, - sym_type_parameters, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7367), 1, + STATE(7584), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7879), 2, + STATE(7982), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598100,45 +598572,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138421] = 16, - ACTIONS(8656), 1, + [138629] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7590), 1, + STATE(7440), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7887), 2, + STATE(7879), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598146,45 +598618,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138483] = 16, - ACTIONS(8656), 1, + [138691] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7517), 1, + STATE(7381), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7902), 2, + STATE(7952), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598192,45 +598664,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138545] = 16, - ACTIONS(8656), 1, + [138753] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7480), 1, + STATE(7358), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7998), 2, + STATE(7979), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598238,45 +598710,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138607] = 16, - ACTIONS(8656), 1, + [138815] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7554), 1, + STATE(7513), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, STATE(8006), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598284,45 +598756,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138669] = 16, - ACTIONS(8656), 1, + [138877] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7355), 1, + STATE(7471), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7908), 2, + STATE(7901), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598330,45 +598802,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138731] = 16, - ACTIONS(8656), 1, + [138939] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7429), 1, + STATE(7360), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7940), 2, + STATE(7963), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598376,45 +598848,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138793] = 16, - ACTIONS(8656), 1, + [139001] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7424), 1, + STATE(7590), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7941), 2, + STATE(7953), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598422,11 +598894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138855] = 3, + [139063] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 13, + ACTIONS(4131), 13, anon_sym_AT, anon_sym_RBRACK, anon_sym_DOT, @@ -598440,7 +598912,7 @@ static const uint16_t ts_small_parse_table[] = { sym__quest, anon_sym_DASH_GT, sym__backtick_identifier, - ACTIONS(4187), 14, + ACTIONS(4129), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -598455,45 +598927,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [138891] = 16, - ACTIONS(8656), 1, + [139099] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7411), 1, + STATE(7394), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7894), 2, + STATE(8011), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598501,45 +598973,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [138953] = 16, - ACTIONS(8656), 1, + [139161] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7425), 1, + STATE(7353), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7945), 2, + STATE(7954), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598547,45 +599019,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139015] = 16, - ACTIONS(8656), 1, + [139223] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7483), 1, + STATE(7374), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7990), 2, + STATE(7969), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598593,45 +599065,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139077] = 16, - ACTIONS(8656), 1, + [139285] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7476), 1, + STATE(7438), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7903), 2, + STATE(7872), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598639,45 +599111,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139139] = 16, - ACTIONS(8656), 1, + [139347] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7408), 1, + STATE(7517), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7881), 2, + STATE(7907), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598685,45 +599157,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139201] = 16, - ACTIONS(8656), 1, + [139409] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7440), 1, + STATE(7396), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7938), 2, + STATE(8008), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598731,45 +599203,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139263] = 16, - ACTIONS(8656), 1, + [139471] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7438), 1, + STATE(7388), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7893), 2, + STATE(7946), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598777,45 +599249,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139325] = 16, - ACTIONS(8656), 1, + [139533] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7400), 1, + STATE(7506), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7952), 2, + STATE(7959), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598823,45 +599295,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139387] = 16, - ACTIONS(8656), 1, + [139595] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7385), 1, + STATE(7442), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7897), 2, + STATE(8019), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -598869,137 +599341,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139449] = 16, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9313), 1, - anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7205), 1, - sym_type_modifiers, - STATE(7512), 1, - sym_simple_identifier, - STATE(7848), 1, - sym__simple_user_type, + [139657] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7899), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [139511] = 16, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(4236), 13, anon_sym_AT, - ACTIONS(9184), 1, - anon_sym_dynamic, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9313), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7205), 1, - sym_type_modifiers, - STATE(7497), 1, - sym_simple_identifier, - STATE(7848), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7891), 2, - sym__receiver_type, - sym_nullable_type, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - STATE(7845), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + sym__backtick_identifier, + ACTIONS(4234), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [139573] = 16, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [139693] = 16, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7507), 1, + STATE(7408), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7994), 2, + STATE(7939), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599007,45 +599420,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139635] = 16, - ACTIONS(8656), 1, + [139755] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7390), 1, + STATE(7370), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7958), 2, + STATE(7974), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599053,45 +599466,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139697] = 16, - ACTIONS(8656), 1, + [139817] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7535), 1, + STATE(7425), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7943), 2, + STATE(7873), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599099,45 +599512,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139759] = 16, - ACTIONS(8656), 1, + [139879] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7469), 1, + STATE(7554), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7869), 2, + STATE(7911), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599145,45 +599558,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139821] = 16, - ACTIONS(8656), 1, + [139941] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7368), 1, + STATE(7416), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7964), 2, + STATE(7934), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599191,45 +599604,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139883] = 16, - ACTIONS(8656), 1, + [140003] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7520), 1, + STATE(7547), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7909), 2, + STATE(7900), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599237,45 +599650,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [139945] = 16, - ACTIONS(8656), 1, + [140065] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7481), 1, + STATE(7373), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7927), 2, + STATE(8000), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599283,45 +599696,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140007] = 16, - ACTIONS(8656), 1, + [140127] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7522), 1, + STATE(7403), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7944), 2, + STATE(7878), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599329,45 +599742,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140069] = 16, - ACTIONS(8656), 1, + [140189] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7366), 1, + STATE(7571), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7969), 2, + STATE(7913), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599375,45 +599788,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140131] = 16, - ACTIONS(8656), 1, + [140251] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7546), 1, + STATE(7464), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7986), 2, + STATE(7921), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599421,45 +599834,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140193] = 16, - ACTIONS(8656), 1, + [140313] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7576), 1, + STATE(7493), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7912), 2, + STATE(7920), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599467,45 +599880,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140255] = 16, - ACTIONS(8656), 1, + [140375] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7532), 1, + STATE(7460), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7890), 2, + STATE(7928), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599513,45 +599926,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140317] = 16, - ACTIONS(8656), 1, + [140437] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7387), 1, + STATE(7466), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7975), 2, + STATE(7957), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599559,45 +599972,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140379] = 16, - ACTIONS(8656), 1, + [140499] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7578), 1, + STATE(7367), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7900), 2, + STATE(7958), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599605,45 +600018,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140441] = 16, - ACTIONS(8656), 1, + [140561] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7397), 1, + STATE(7566), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7980), 2, + STATE(7869), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599651,45 +600064,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140503] = 16, - ACTIONS(8656), 1, + [140623] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7550), 1, + STATE(7519), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7914), 2, + STATE(7883), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599697,45 +600110,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140565] = 16, - ACTIONS(8656), 1, + [140685] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7445), 1, + STATE(7560), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7947), 2, + STATE(7863), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599743,45 +600156,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140627] = 16, - ACTIONS(8656), 1, + [140747] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7420), 1, + STATE(7398), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7867), 2, + STATE(7933), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599789,45 +600202,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140689] = 16, - ACTIONS(8656), 1, + [140809] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7536), 1, + STATE(7487), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8018), 2, + STATE(7864), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599835,45 +600248,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140751] = 16, - ACTIONS(8656), 1, + [140871] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7547), 1, + STATE(7497), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7868), 2, + STATE(7978), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599881,45 +600294,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140813] = 16, - ACTIONS(8656), 1, + [140933] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7410), 1, + STATE(7501), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7985), 2, + STATE(7915), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599927,45 +600340,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140875] = 16, - ACTIONS(8656), 1, + [140995] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7421), 1, + STATE(7515), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7953), 2, + STATE(7898), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -599973,45 +600386,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140937] = 16, - ACTIONS(8656), 1, + [141057] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7413), 1, + STATE(7400), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7989), 2, + STATE(7922), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600019,124 +600432,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [140999] = 16, - ACTIONS(8656), 1, + [141119] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7487), 1, + STATE(7485), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7955), 2, + STATE(8004), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [141061] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4307), 13, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - sym__backtick_identifier, - ACTIONS(4305), 14, - anon_sym_by, - anon_sym_where, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [141181] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - [141097] = 16, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7367), 1, + STATE(7524), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7879), 2, + STATE(7896), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600144,45 +600524,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141159] = 16, - ACTIONS(8656), 1, + [141243] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7509), 1, + STATE(7552), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7920), 2, + STATE(7892), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600190,45 +600570,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141221] = 16, - ACTIONS(8656), 1, + [141305] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7393), 1, + STATE(7452), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7896), 2, + STATE(8009), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600236,45 +600616,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141283] = 16, - ACTIONS(8656), 1, + [141367] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7539), 1, + STATE(7407), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7977), 2, + STATE(7937), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600282,45 +600662,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141345] = 16, - ACTIONS(8656), 1, + [141429] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7439), 1, + STATE(7583), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7957), 2, + STATE(7925), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600328,45 +600708,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141407] = 16, - ACTIONS(8656), 1, + [141491] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7533), 1, + STATE(7585), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8009), 2, + STATE(7889), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600374,45 +600754,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141469] = 16, - ACTIONS(8656), 1, + [141553] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7541), 1, + STATE(7558), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7886), 2, + STATE(7989), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600420,45 +600800,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141531] = 16, - ACTIONS(8656), 1, + [141615] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7428), 1, + STATE(7537), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7882), 2, + STATE(7885), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600466,45 +600846,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141593] = 16, - ACTIONS(8656), 1, + [141677] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7380), 1, + STATE(7580), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7962), 2, + STATE(7887), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600512,45 +600892,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141655] = 16, - ACTIONS(8656), 1, + [141739] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7457), 1, + STATE(7530), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8001), 2, + STATE(7927), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600558,45 +600938,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141717] = 16, - ACTIONS(8656), 1, + [141801] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7504), 1, + STATE(7355), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7926), 2, + STATE(7983), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600604,45 +600984,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141779] = 16, - ACTIONS(8656), 1, + [141863] = 16, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9184), 1, + ACTIONS(9126), 1, anon_sym_dynamic, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9313), 1, + ACTIONS(9261), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7205), 1, + STATE(7213), 1, sym_type_modifiers, - STATE(7389), 1, + STATE(7432), 1, sym_simple_identifier, - STATE(7848), 1, + STATE(7850), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8020), 2, + STATE(7924), 2, sym__receiver_type, sym_nullable_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - STATE(7845), 3, + STATE(7859), 3, sym__type_reference, sym_user_type, sym_parenthesized_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600650,15 +601030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [141841] = 5, - ACTIONS(6552), 1, + [141925] = 5, + ACTIONS(6454), 1, anon_sym_LT, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 10, + ACTIONS(4119), 10, anon_sym_AT, anon_sym_RBRACK, anon_sym_DOT, @@ -600669,7 +601049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 14, + ACTIONS(4117), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -600684,112 +601064,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [141880] = 15, - ACTIONS(8656), 1, + [141964] = 15, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9051), 1, - anon_sym_COMMA, - ACTIONS(9053), 1, - anon_sym_RPAREN, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8008), 1, - sym_parameter_modifiers, - STATE(8820), 1, - sym_parameter, - STATE(9010), 1, - sym__function_value_parameter, - STATE(9511), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [141938] = 15, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9069), 1, - anon_sym_COMMA, - ACTIONS(9071), 1, - anon_sym_RPAREN, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8008), 1, - sym_parameter_modifiers, - STATE(8799), 1, - sym__function_value_parameter, - STATE(8820), 1, - sym_parameter, - STATE(9511), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [141996] = 15, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9063), 1, + ACTIONS(9265), 1, anon_sym_COMMA, - ACTIONS(9065), 1, + ACTIONS(9267), 1, anon_sym_RPAREN, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9009), 1, + STATE(9086), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -600797,15 +601091,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600813,26 +601107,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142054] = 15, - ACTIONS(8656), 1, + [142022] = 15, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9317), 1, + ACTIONS(9269), 1, anon_sym_COMMA, - ACTIONS(9319), 1, + ACTIONS(9271), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8795), 1, - sym__function_value_parameter, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9511), 1, + STATE(9066), 1, + sym__function_value_parameter, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -600840,15 +601134,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600856,26 +601150,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142112] = 15, - ACTIONS(8656), 1, + [142080] = 15, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9045), 1, + ACTIONS(9011), 1, anon_sym_COMMA, - ACTIONS(9047), 1, + ACTIONS(9013), 1, anon_sym_RPAREN, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(8988), 1, + STATE(8876), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -600883,15 +601177,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -600899,69 +601193,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142170] = 15, - ACTIONS(8656), 1, + [142138] = 15, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9321), 1, + ACTIONS(9273), 1, anon_sym_COMMA, - ACTIONS(9323), 1, + ACTIONS(9275), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9017), 1, - sym__function_value_parameter, - STATE(9511), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [142228] = 15, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9059), 1, - anon_sym_COMMA, - ACTIONS(9061), 1, - anon_sym_RPAREN, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8008), 1, - sym_parameter_modifiers, - STATE(8814), 1, + STATE(8918), 1, sym__function_value_parameter, - STATE(8820), 1, - sym_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -600969,75 +601220,42 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [142286] = 5, - ACTIONS(9325), 1, - anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4189), 9, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - sym__backtick_identifier, - ACTIONS(4187), 14, - anon_sym_by, - anon_sym_where, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [142196] = 15, + ACTIONS(8527), 1, sym__alpha_identifier, - [142324] = 15, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - ACTIONS(9328), 1, + ACTIONS(9001), 1, anon_sym_COMMA, - ACTIONS(9330), 1, + ACTIONS(9003), 1, anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9067), 1, + STATE(9016), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601045,15 +601263,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601061,26 +601279,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142382] = 15, - ACTIONS(8656), 1, + [142254] = 15, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9055), 1, + ACTIONS(8997), 1, anon_sym_COMMA, - ACTIONS(9057), 1, + ACTIONS(8999), 1, anon_sym_RPAREN, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9001), 1, + STATE(8943), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601088,15 +601306,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601104,15 +601322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142440] = 5, - ACTIONS(9332), 1, + [142312] = 5, + ACTIONS(9277), 1, anon_sym_DOT, - STATE(6592), 1, + STATE(6595), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 9, + ACTIONS(4072), 9, anon_sym_AT, anon_sym_RBRACK, anon_sym_EQ, @@ -601122,7 +601340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, sym__backtick_identifier, - ACTIONS(4143), 14, + ACTIONS(4070), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -601137,24 +601355,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [142478] = 14, - ACTIONS(8656), 1, + [142350] = 15, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - ACTIONS(9334), 1, + ACTIONS(9015), 1, + anon_sym_COMMA, + ACTIONS(9017), 1, anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(8855), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601162,15 +601382,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601178,24 +601398,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142533] = 14, - ACTIONS(8656), 1, + [142408] = 15, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - ACTIONS(9336), 1, + ACTIONS(9005), 1, + anon_sym_COMMA, + ACTIONS(9007), 1, anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(8857), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601203,15 +601425,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601219,24 +601441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142588] = 14, - ACTIONS(8656), 1, + [142466] = 15, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - ACTIONS(9338), 1, + ACTIONS(8991), 1, + anon_sym_COMMA, + ACTIONS(8993), 1, anon_sym_RPAREN, - STATE(6073), 1, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, - sym_parameter, - STATE(9436), 1, + STATE(8829), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(8853), 1, + sym_parameter, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601244,15 +601468,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601260,65 +601484,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142643] = 14, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - ACTIONS(9340), 1, - anon_sym_RPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8008), 1, - sym_parameter_modifiers, - STATE(8820), 1, - sym_parameter, - STATE(9436), 1, - sym__function_value_parameter, - STATE(9511), 1, - sym_simple_identifier, + [142524] = 5, + ACTIONS(9279), 1, + anon_sym_DOT, + STATE(6595), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(4131), 9, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4129), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [142698] = 14, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [142562] = 14, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9342), 1, + ACTIONS(9282), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601326,15 +601542,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601342,24 +601558,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142753] = 14, - ACTIONS(8656), 1, + [142617] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9344), 1, + ACTIONS(9284), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601367,15 +601583,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601383,24 +601599,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142808] = 14, - ACTIONS(8656), 1, + [142672] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9346), 1, + ACTIONS(9286), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601408,40 +601624,70 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [142727] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 10, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_AMP, + sym__quest, + sym__backtick_identifier, + ACTIONS(4244), 14, + anon_sym_by, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [142863] = 14, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [142760] = 14, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9348), 1, + ACTIONS(9288), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601449,15 +601695,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601465,24 +601711,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [142918] = 14, - ACTIONS(8656), 1, + [142815] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9350), 1, + ACTIONS(9290), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601490,81 +601736,40 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [142973] = 14, - ACTIONS(9352), 1, - sym__alpha_identifier, - ACTIONS(9354), 1, - anon_sym_file, - ACTIONS(9356), 1, - anon_sym_LBRACK, - ACTIONS(9364), 1, - sym__backtick_identifier, - STATE(3498), 1, - sym_simple_identifier, - STATE(3637), 1, - sym__lexical_identifier, - STATE(3657), 1, - sym__simple_user_type, - STATE(3778), 1, - sym_user_type, - STATE(7298), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9358), 2, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - STATE(3961), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9360), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [143028] = 14, - ACTIONS(8656), 1, + [142870] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9366), 1, + ACTIONS(9292), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601572,15 +601777,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601588,24 +601793,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143083] = 14, - ACTIONS(8656), 1, + [142925] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9368), 1, + ACTIONS(9294), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601613,15 +601818,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601629,24 +601834,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143138] = 14, - ACTIONS(8656), 1, + [142980] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9370), 1, + ACTIONS(9296), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601654,15 +601859,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601670,24 +601875,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143193] = 14, - ACTIONS(8656), 1, + [143035] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9372), 1, + ACTIONS(9298), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601695,15 +601900,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601711,24 +601916,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143248] = 14, - ACTIONS(8656), 1, + [143090] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9374), 1, + ACTIONS(9300), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601736,15 +601941,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601752,11 +601957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143303] = 3, + [143145] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 10, + ACTIONS(4150), 10, anon_sym_AT, anon_sym_RBRACK, anon_sym_DOT, @@ -601767,7 +601972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, sym__backtick_identifier, - ACTIONS(4256), 14, + ACTIONS(4148), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -601782,24 +601987,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [143336] = 14, - ACTIONS(8656), 1, + [143178] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9376), 1, + ACTIONS(9302), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601807,15 +602012,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601823,24 +602028,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143391] = 14, - ACTIONS(8656), 1, + [143233] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9378), 1, + ACTIONS(9304), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601848,15 +602053,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601864,54 +602069,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143446] = 3, + [143288] = 14, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + ACTIONS(9306), 1, + anon_sym_RPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8013), 1, + sym_parameter_modifiers, + STATE(8853), 1, + sym_parameter, + STATE(9409), 1, + sym__function_value_parameter, + STATE(9631), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4311), 10, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_AMP, - sym__quest, - sym__backtick_identifier, - ACTIONS(4309), 14, - anon_sym_by, - anon_sym_where, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [143343] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - [143479] = 14, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9380), 1, + ACTIONS(9308), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601919,15 +602135,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601935,24 +602151,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143534] = 14, - ACTIONS(8656), 1, + [143398] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9382), 1, + ACTIONS(9310), 1, anon_sym_RPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8008), 1, + STATE(8013), 1, sym_parameter_modifiers, - STATE(8820), 1, + STATE(8853), 1, sym_parameter, - STATE(9436), 1, + STATE(9409), 1, sym__function_value_parameter, - STATE(9511), 1, + STATE(9631), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -601960,15 +602176,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -601976,39 +602192,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143589] = 14, - ACTIONS(8656), 1, + [143453] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9384), 1, - anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9312), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(7459), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(8013), 1, + sym_parameter_modifiers, + STATE(8853), 1, + sym_parameter, + STATE(9409), 1, + sym__function_value_parameter, + STATE(9631), 1, sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - STATE(8312), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7214), 3, - sym__type_modifier, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602016,39 +602233,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143643] = 14, - ACTIONS(255), 1, + [143508] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9386), 1, - anon_sym_LPAREN, - STATE(2881), 1, + ACTIONS(9314), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(2930), 1, + STATE(8013), 1, + sym_parameter_modifiers, + STATE(8853), 1, + sym_parameter, + STATE(9409), 1, + sym__function_value_parameter, + STATE(9631), 1, sym_simple_identifier, - STATE(3235), 1, - sym__simple_user_type, - STATE(7489), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3271), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(1437), 7, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602056,39 +602274,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143697] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9192), 1, + [143563] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9388), 1, - anon_sym_LPAREN, - STATE(4529), 1, + ACTIONS(9263), 1, + anon_sym_AT, + ACTIONS(9316), 1, + anon_sym_RPAREN, + STATE(6361), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(8013), 1, + sym_parameter_modifiers, + STATE(8853), 1, + sym_parameter, + STATE(9409), 1, + sym__function_value_parameter, + STATE(9631), 1, sym_simple_identifier, - STATE(4669), 1, - sym__simple_user_type, - STATE(7580), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4934), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9196), 7, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602096,118 +602315,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143751] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9192), 1, + [143618] = 14, + ACTIONS(9318), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(9320), 1, + anon_sym_file, + ACTIONS(9322), 1, + anon_sym_LBRACK, + ACTIONS(9330), 1, sym__backtick_identifier, - ACTIONS(9388), 1, - anon_sym_LPAREN, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, + STATE(3403), 1, sym_simple_identifier, - STATE(4669), 1, + STATE(3621), 1, sym__simple_user_type, - STATE(7569), 1, - sym_type_modifiers, + STATE(3703), 1, + sym__lexical_identifier, + STATE(3794), 1, + sym_user_type, + STATE(7313), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4893), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9196), 7, + ACTIONS(9324), 2, anon_sym_get, anon_sym_set, + STATE(4034), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9326), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [143805] = 14, - ACTIONS(557), 1, + ACTIONS(9328), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [143673] = 14, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9390), 1, + ACTIONS(9332), 1, anon_sym_LPAREN, - STATE(2770), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2872), 1, sym_simple_identifier, - STATE(2957), 1, + STATE(3085), 1, sym__simple_user_type, - STATE(7561), 1, + STATE(7371), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2990), 2, + STATE(3496), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [143859] = 13, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - ACTIONS(9396), 1, - sym_reification_modifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8028), 1, - sym_type_parameter_modifiers, - STATE(8974), 1, - sym_simple_identifier, - STATE(8976), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9394), 2, - anon_sym_in, - anon_sym_out, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7164), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602215,79 +602396,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [143911] = 14, - ACTIONS(7), 1, + [143727] = 13, + ACTIONS(9318), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9322), 1, + anon_sym_LBRACK, + ACTIONS(9330), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9398), 1, - anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4646), 1, + STATE(3403), 1, sym_simple_identifier, - STATE(4894), 1, + STATE(3621), 1, sym__simple_user_type, - STATE(7510), 1, - sym_type_modifiers, + STATE(3703), 1, + sym__lexical_identifier, + STATE(3794), 1, + sym_user_type, + STATE(7313), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4980), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(1908), 7, + ACTIONS(9324), 2, anon_sym_get, anon_sym_set, + STATE(4034), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9326), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [143965] = 14, - ACTIONS(8656), 1, + ACTIONS(9328), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [143779] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7470), 1, + STATE(7588), 1, sym_type_modifiers, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, STATE(8309), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602295,39 +602475,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144019] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [143833] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9400), 1, + ACTIONS(9336), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, STATE(4542), 1, sym_simple_identifier, - STATE(4611), 1, + STATE(4597), 1, sym__simple_user_type, - STATE(7594), 1, + STATE(7528), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4624), 2, + STATE(4621), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602335,15 +602515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144073] = 5, - ACTIONS(9332), 1, + [143887] = 5, + ACTIONS(9277), 1, anon_sym_DOT, - STATE(6595), 1, + STATE(6591), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 7, + ACTIONS(4105), 7, anon_sym_AT, anon_sym_RBRACK, anon_sym_EQ, @@ -602351,7 +602531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_COMMA, sym__backtick_identifier, - ACTIONS(4162), 14, + ACTIONS(4103), 14, anon_sym_by, anon_sym_where, anon_sym_get, @@ -602366,39 +602546,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [144109] = 14, - ACTIONS(9084), 1, + [143923] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9204), 1, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9402), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(7474), 1, - sym_type_modifiers, - STATE(8285), 1, + STATE(5616), 1, + sym_simple_identifier, + STATE(5653), 1, sym__simple_user_type, + STATE(7512), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5777), 2, + STATE(5830), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9208), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602406,39 +602586,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144163] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9192), 1, + [143977] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9388), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9340), 1, anon_sym_LPAREN, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4669), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3622), 1, sym__simple_user_type, - STATE(7558), 1, + STATE(7382), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4921), 2, + STATE(3748), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9196), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602446,39 +602626,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144217] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9204), 1, + [144031] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9402), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9342), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7379), 1, - sym_type_modifiers, - STATE(8285), 1, + STATE(2912), 1, + sym_simple_identifier, + STATE(3109), 1, sym__simple_user_type, + STATE(7449), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5775), 2, + STATE(3312), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9208), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602486,78 +602666,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144271] = 13, - ACTIONS(9404), 1, + [144085] = 13, + ACTIONS(9344), 1, sym__alpha_identifier, - ACTIONS(9406), 1, + ACTIONS(9346), 1, anon_sym_LBRACK, - ACTIONS(9412), 1, + ACTIONS(9352), 1, sym__backtick_identifier, - STATE(7242), 1, - sym_simple_identifier, - STATE(7285), 1, - sym_use_site_target, - STATE(7300), 1, + STATE(5657), 1, sym__lexical_identifier, - STATE(7327), 1, + STATE(5677), 1, + sym_simple_identifier, + STATE(5684), 1, sym__simple_user_type, - STATE(7359), 1, + STATE(5707), 1, sym_user_type, + STATE(7332), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9408), 2, + ACTIONS(9348), 2, anon_sym_get, anon_sym_set, - STATE(7837), 2, + STATE(5714), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9410), 5, + ACTIONS(9350), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, + ACTIONS(9328), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [144323] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9258), 1, + [144137] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9402), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9354), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5710), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(5761), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4896), 1, sym__simple_user_type, - STATE(7591), 1, + STATE(7579), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5775), 2, + STATE(4997), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9260), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602565,117 +602745,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144377] = 13, - ACTIONS(8656), 1, + [144191] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - ACTIONS(9396), 1, + ACTIONS(9360), 1, sym_reification_modifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8028), 1, + STATE(8029), 1, sym_type_parameter_modifiers, - STATE(8974), 1, + STATE(8844), 1, sym_simple_identifier, - STATE(8993), 1, + STATE(8846), 1, sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9394), 2, + ACTIONS(9358), 2, anon_sym_in, anon_sym_out, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(7164), 4, + STATE(7130), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [144429] = 13, - ACTIONS(9228), 1, - sym__alpha_identifier, - ACTIONS(9236), 1, - sym__backtick_identifier, - ACTIONS(9414), 1, - anon_sym_LBRACK, - STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, - sym__lexical_identifier, - STATE(5653), 1, - sym__simple_user_type, - STATE(5725), 1, - sym_user_type, - STATE(7296), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9416), 2, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - STATE(5790), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9232), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [144481] = 14, - ACTIONS(9084), 1, + [144243] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9228), 1, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, + STATE(7488), 1, + sym_type_modifiers, + STATE(8319), 1, sym__lexical_identifier, - STATE(5653), 1, + STATE(8329), 1, + sym_simple_identifier, + STATE(8436), 1, sym__simple_user_type, - STATE(7586), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5813), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8309), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9232), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602683,313 +602824,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144535] = 14, - ACTIONS(9084), 1, + [144297] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9228), 1, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9362), 1, anon_sym_LPAREN, - STATE(5611), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(5615), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(5653), 1, - sym__simple_user_type, - STATE(7502), 1, + STATE(7575), 1, sym_type_modifiers, + STATE(8317), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5826), 2, + STATE(5775), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9232), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [144589] = 13, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_LBRACK, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7306), 1, - sym_use_site_target, - STATE(7326), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9422), 2, - anon_sym_get, - anon_sym_set, - STATE(7790), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8666), 5, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - ACTIONS(9362), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [144641] = 13, - ACTIONS(1724), 1, - sym__alpha_identifier, - ACTIONS(1788), 1, - sym__backtick_identifier, - ACTIONS(9424), 1, - anon_sym_LBRACK, - STATE(5344), 1, - sym_simple_identifier, - STATE(5465), 1, - sym__lexical_identifier, - STATE(5474), 1, - sym__simple_user_type, - STATE(5489), 1, - sym_user_type, - STATE(7332), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9426), 2, - anon_sym_get, - anon_sym_set, - STATE(5555), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(3092), 5, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - ACTIONS(9362), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [144693] = 13, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - ACTIONS(9396), 1, - sym_reification_modifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8028), 1, - sym_type_parameter_modifiers, - STATE(8974), 1, - sym_simple_identifier, - STATE(8978), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9394), 2, - anon_sym_in, - anon_sym_out, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7164), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [144745] = 13, - ACTIONS(9264), 1, - sym__alpha_identifier, - ACTIONS(9270), 1, - sym__backtick_identifier, - ACTIONS(9428), 1, - anon_sym_LBRACK, - STATE(7334), 1, - sym_use_site_target, - STATE(8327), 1, - sym__lexical_identifier, - STATE(8328), 1, - sym_simple_identifier, - STATE(8423), 1, - sym__simple_user_type, - STATE(8675), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9430), 2, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, - STATE(9367), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9266), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [144797] = 13, - ACTIONS(9238), 1, + [144351] = 13, + ACTIONS(9217), 1, sym__alpha_identifier, - ACTIONS(9244), 1, + ACTIONS(9223), 1, sym__backtick_identifier, - ACTIONS(9432), 1, + ACTIONS(9364), 1, anon_sym_LBRACK, - STATE(5680), 1, + STATE(5676), 1, sym__lexical_identifier, - STATE(5780), 1, - sym_simple_identifier, - STATE(5803), 1, - sym__simple_user_type, - STATE(5810), 1, - sym_user_type, - STATE(7318), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9434), 2, - anon_sym_get, - anon_sym_set, - STATE(5855), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9242), 5, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - ACTIONS(9362), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [144849] = 13, - ACTIONS(9436), 1, - sym__alpha_identifier, - ACTIONS(9438), 1, - anon_sym_LBRACK, - ACTIONS(9444), 1, - sym__backtick_identifier, - STATE(5828), 1, + STATE(5772), 1, sym_simple_identifier, - STATE(5842), 1, + STATE(5802), 1, sym__simple_user_type, - STATE(5844), 1, - sym__lexical_identifier, - STATE(5860), 1, + STATE(5827), 1, sym_user_type, - STATE(7275), 1, + STATE(7330), 1, sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9440), 2, + ACTIONS(9366), 2, anon_sym_get, anon_sym_set, - STATE(6155), 2, + STATE(5845), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9442), 5, + ACTIONS(9221), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, + ACTIONS(9328), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [144901] = 14, - ACTIONS(8656), 1, + [144403] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9384), 1, + ACTIONS(9340), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3622), 1, sym__simple_user_type, - STATE(7461), 1, + STATE(7401), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8282), 2, + STATE(3747), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -602997,39 +602943,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [144955] = 14, - ACTIONS(9084), 1, + [144457] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9228), 1, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, sym__lexical_identifier, + STATE(5616), 1, + sym_simple_identifier, STATE(5653), 1, sym__simple_user_type, - STATE(7370), 1, + STATE(7542), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5811), 2, + STATE(5822), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9232), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603037,39 +602983,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145009] = 14, - ACTIONS(431), 1, + [144511] = 14, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9446), 1, + ACTIONS(9332), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3325), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(3671), 1, + STATE(2872), 1, + sym_simple_identifier, + STATE(3085), 1, sym__simple_user_type, - STATE(7360), 1, + STATE(7378), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3773), 2, + STATE(3495), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1652), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603077,39 +603023,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145063] = 14, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [144565] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9446), 1, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9202), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3325), 1, + STATE(7413), 1, + sym_type_modifiers, + STATE(8319), 1, sym__lexical_identifier, - STATE(3671), 1, + STATE(8329), 1, + sym_simple_identifier, + STATE(8436), 1, sym__simple_user_type, - STATE(7383), 1, - sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3816), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8310), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1652), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603117,39 +603063,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145117] = 14, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [144619] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9398), 1, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9142), 1, + sym__backtick_identifier, + ACTIONS(9368), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4646), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(4894), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4620), 1, sym__simple_user_type, - STATE(7484), 1, + STATE(7586), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4965), 2, + STATE(4908), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1908), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603157,39 +603103,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145171] = 14, - ACTIONS(115), 1, + [144673] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9356), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9400), 1, - anon_sym_LPAREN, - STATE(4537), 1, + ACTIONS(9360), 1, + sym_reification_modifier, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(8029), 1, + sym_type_parameter_modifiers, + STATE(8844), 1, sym_simple_identifier, - STATE(4611), 1, - sym__simple_user_type, - STATE(7353), 1, - sym_type_modifiers, + STATE(8872), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4623), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, + ACTIONS(9358), 2, + anon_sym_in, + anon_sym_out, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, + STATE(7130), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603197,39 +603142,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145225] = 14, - ACTIONS(255), 1, + [144725] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9386), 1, + ACTIONS(9336), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3235), 1, + STATE(4597), 1, sym__simple_user_type, - STATE(7458), 1, + STATE(7476), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3315), 2, + STATE(4619), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603237,196 +603182,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145279] = 13, - ACTIONS(8656), 1, + [144779] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - ACTIONS(9396), 1, + ACTIONS(9360), 1, sym_reification_modifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8028), 1, + STATE(8029), 1, sym_type_parameter_modifiers, - STATE(8974), 1, + STATE(8844), 1, sym_simple_identifier, - STATE(9040), 1, + STATE(8845), 1, sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9394), 2, + ACTIONS(9358), 2, anon_sym_in, anon_sym_out, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(7164), 4, + STATE(7130), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [145331] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9262), 1, - sym__backtick_identifier, - ACTIONS(9402), 1, - anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5710), 1, - sym__lexical_identifier, - STATE(5761), 1, - sym__simple_user_type, - STATE(7563), 1, - sym_type_modifiers, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5777), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9260), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [145385] = 13, - ACTIONS(9352), 1, - sym__alpha_identifier, - ACTIONS(9356), 1, - anon_sym_LBRACK, - ACTIONS(9364), 1, - sym__backtick_identifier, - STATE(3498), 1, - sym_simple_identifier, - STATE(3637), 1, - sym__lexical_identifier, - STATE(3657), 1, - sym__simple_user_type, - STATE(3778), 1, - sym_user_type, - STATE(7298), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9358), 2, + ACTIONS(8537), 7, anon_sym_get, - anon_sym_set, - STATE(3961), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9360), 5, + anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [145437] = 13, - ACTIONS(9448), 1, + [144831] = 13, + ACTIONS(9370), 1, sym__alpha_identifier, - ACTIONS(9450), 1, + ACTIONS(9372), 1, anon_sym_LBRACK, - ACTIONS(9456), 1, + ACTIONS(9378), 1, sym__backtick_identifier, - STATE(7174), 1, + STATE(7274), 1, sym_simple_identifier, - STATE(7206), 1, + STATE(7277), 1, + sym_use_site_target, + STATE(7459), 1, sym__simple_user_type, - STATE(7209), 1, + STATE(7461), 1, sym__lexical_identifier, - STATE(7271), 1, + STATE(7603), 1, sym_user_type, - STATE(7277), 1, - sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9452), 2, + ACTIONS(9374), 2, anon_sym_get, anon_sym_set, - STATE(7274), 2, + STATE(7856), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9454), 5, + ACTIONS(9376), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, + ACTIONS(9328), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [145489] = 14, - ACTIONS(8656), 1, + [144883] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9384), 1, + ACTIONS(9340), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7530), 1, - sym_type_modifiers, - STATE(7933), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3622), 1, sym__simple_user_type, + STATE(7457), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8282), 2, + STATE(3771), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603434,39 +603300,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145543] = 14, - ACTIONS(557), 1, + [144937] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9356), 1, anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9390), 1, - anon_sym_LPAREN, - STATE(2770), 1, + ACTIONS(9360), 1, + sym_reification_modifier, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(8029), 1, + sym_type_parameter_modifiers, + STATE(8844), 1, sym_simple_identifier, - STATE(2957), 1, - sym__simple_user_type, - STATE(7574), 1, - sym_type_modifiers, + STATE(9042), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3030), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, + ACTIONS(9358), 2, + anon_sym_in, + anon_sym_out, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, + STATE(7130), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603474,39 +603339,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145597] = 14, - ACTIONS(9084), 1, + [144989] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9214), 1, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9458), 1, + ACTIONS(9362), 1, anon_sym_LPAREN, - STATE(2817), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(2856), 1, + STATE(5708), 1, sym__lexical_identifier, - STATE(3155), 1, + STATE(5761), 1, sym__simple_user_type, - STATE(7496), 1, + STATE(7535), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3444), 2, + STATE(5767), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9218), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603514,39 +603379,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145651] = 14, - ACTIONS(8656), 1, + [145043] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7466), 1, + STATE(7475), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, STATE(8309), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603554,39 +603419,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145705] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9264), 1, + [145097] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, - anon_sym_LPAREN, - STATE(7567), 1, - sym_type_modifiers, - STATE(8327), 1, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8328), 1, + STATE(8013), 1, + sym_parameter_modifiers, + STATE(8853), 1, + sym_parameter, + STATE(9409), 1, + sym__function_value_parameter, + STATE(9631), 1, sym_simple_identifier, - STATE(8423), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - STATE(8309), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7214), 3, - sym__type_modifier, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9266), 7, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603594,196 +603458,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [145759] = 13, - ACTIONS(8656), 1, + [145149] = 14, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9420), 1, - anon_sym_LBRACK, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, + ACTIONS(9362), 1, + anon_sym_LPAREN, + STATE(5681), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(7594), 1, + sym_type_modifiers, + STATE(8317), 1, sym__simple_user_type, - STATE(7302), 1, - sym_use_site_target, - STATE(8004), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9422), 2, + STATE(5767), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, - STATE(7790), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8666), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [145811] = 14, + [145203] = 14, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9400), 1, + ACTIONS(9342), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4611), 1, + STATE(3109), 1, sym__simple_user_type, - STATE(7545), 1, + STATE(7454), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4684), 2, + STATE(3313), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1842), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [145865] = 13, - ACTIONS(9460), 1, - sym__alpha_identifier, - ACTIONS(9462), 1, - anon_sym_LBRACK, - ACTIONS(9468), 1, - sym__backtick_identifier, - STATE(5665), 1, - sym__lexical_identifier, - STATE(5677), 1, - sym_simple_identifier, - STATE(5687), 1, - sym__simple_user_type, - STATE(5707), 1, - sym_user_type, - STATE(7304), 1, - sym_use_site_target, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9464), 2, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, - STATE(5757), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9466), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, - anon_sym_field, - anon_sym_property, - anon_sym_receiver, - anon_sym_param, - anon_sym_setparam, - anon_sym_delegate, - [145917] = 14, - ACTIONS(8656), 1, + [145257] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7468), 1, + STATE(7478), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8312), 2, + STATE(8310), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [145971] = 13, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - ACTIONS(9396), 1, - sym_reification_modifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8028), 1, - sym_type_parameter_modifiers, - STATE(8974), 1, - sym_simple_identifier, - STATE(9457), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9394), 2, - anon_sym_in, - anon_sym_out, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7164), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603791,39 +603578,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146023] = 14, - ACTIONS(557), 1, + [145311] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9390), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(2770), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(2957), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7579), 1, + STATE(7477), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3028), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8312), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603831,77 +603618,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146077] = 13, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, + [145365] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9396), 1, - sym_reification_modifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8028), 1, - sym_type_parameter_modifiers, - STATE(8865), 1, - sym_type_parameter, - STATE(8974), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9394), 2, - anon_sym_in, - anon_sym_out, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7164), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [146129] = 13, - ACTIONS(8656), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - ACTIONS(9396), 1, - sym_reification_modifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8028), 1, - sym_type_parameter_modifiers, - STATE(8901), 1, - sym_type_parameter, - STATE(8974), 1, + ACTIONS(9362), 1, + anon_sym_LPAREN, + STATE(5681), 1, sym_simple_identifier, + STATE(5708), 1, + sym__lexical_identifier, + STATE(5761), 1, + sym__simple_user_type, + STATE(7423), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9394), 2, - anon_sym_in, - anon_sym_out, - STATE(7817), 2, + STATE(5771), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7164), 4, - sym_variance_modifier, - sym__type_parameter_modifier, + STATE(7216), 3, + sym__type_modifier, sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603909,39 +603658,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146181] = 14, - ACTIONS(431), 1, + [145419] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9446), 1, + ACTIONS(9380), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3325), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3671), 1, + STATE(910), 1, sym__simple_user_type, - STATE(7378), 1, + STATE(7412), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3819), 2, + STATE(978), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603949,39 +603698,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146235] = 14, - ACTIONS(9084), 1, + [145473] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9214), 1, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9458), 1, + ACTIONS(9362), 1, anon_sym_LPAREN, - STATE(2817), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(2856), 1, + STATE(5708), 1, sym__lexical_identifier, - STATE(3155), 1, + STATE(5761), 1, sym__simple_user_type, - STATE(7485), 1, + STATE(7366), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3485), 2, + STATE(5775), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9218), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -603989,38 +603738,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146289] = 13, - ACTIONS(8656), 1, + [145527] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9336), 1, + anon_sym_LPAREN, + STATE(4534), 1, sym__lexical_identifier, - STATE(8008), 1, - sym_parameter_modifiers, - STATE(8820), 1, - sym_parameter, - STATE(9436), 1, - sym__function_value_parameter, - STATE(9511), 1, + STATE(4542), 1, sym_simple_identifier, + STATE(4597), 1, + sym__simple_user_type, + STATE(7503), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + STATE(4629), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7216), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604028,39 +603778,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146341] = 14, - ACTIONS(255), 1, + [145581] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9386), 1, + ACTIONS(9342), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3235), 1, + STATE(3109), 1, sym__simple_user_type, - STATE(7494), 1, + STATE(7481), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3334), 2, + STATE(3308), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604068,39 +603818,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146395] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9214), 1, + [145635] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9458), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(3155), 1, - sym__simple_user_type, - STATE(7418), 1, + STATE(7496), 1, sym_type_modifiers, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3483), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(8312), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9218), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604108,39 +603858,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146449] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9258), 1, + [145689] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9402), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9380), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(819), 1, sym_simple_identifier, - STATE(5710), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(5761), 1, + STATE(910), 1, sym__simple_user_type, - STATE(7526), 1, + STATE(7421), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5796), 2, + STATE(983), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9260), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604148,39 +603898,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146503] = 14, - ACTIONS(9084), 1, + [145743] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9264), 1, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9368), 1, anon_sym_LPAREN, - STATE(7584), 1, - sym_type_modifiers, - STATE(8327), 1, - sym__lexical_identifier, - STATE(8328), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(8423), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4620), 1, sym__simple_user_type, + STATE(7532), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8312), 2, + STATE(4904), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7214), 3, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9266), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604188,39 +603938,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146557] = 14, - ACTIONS(7), 1, + [145797] = 14, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9398), 1, + ACTIONS(9332), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(4646), 1, + STATE(2872), 1, sym_simple_identifier, - STATE(4894), 1, + STATE(3085), 1, sym__simple_user_type, - STATE(7577), 1, + STATE(7364), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4981), 2, + STATE(3459), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1908), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604228,39 +603978,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146611] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9204), 1, + [145851] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9402), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9354), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(7373), 1, - sym_type_modifiers, - STATE(8285), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4896), 1, sym__simple_user_type, + STATE(7418), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5796), 2, + STATE(4994), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9208), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604268,78 +604018,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146665] = 13, - ACTIONS(9470), 1, + [145905] = 13, + ACTIONS(9382), 1, sym__alpha_identifier, - ACTIONS(9472), 1, + ACTIONS(9384), 1, anon_sym_LBRACK, - ACTIONS(9478), 1, + ACTIONS(9390), 1, sym__backtick_identifier, - STATE(7281), 1, + STATE(5832), 1, sym_simple_identifier, - STATE(7301), 1, - sym_use_site_target, - STATE(7501), 1, - sym__simple_user_type, - STATE(7566), 1, + STATE(5840), 1, sym__lexical_identifier, - STATE(7740), 1, + STATE(5843), 1, + sym__simple_user_type, + STATE(5866), 1, sym_user_type, + STATE(7331), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9474), 2, + ACTIONS(9386), 2, anon_sym_get, anon_sym_set, - STATE(7858), 2, + STATE(6019), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9476), 5, + ACTIONS(9388), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - ACTIONS(9362), 6, + ACTIONS(9328), 6, anon_sym_field, anon_sym_property, anon_sym_receiver, anon_sym_param, anon_sym_setparam, anon_sym_delegate, - [146717] = 14, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9264), 1, + [145957] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(7557), 1, - sym_type_modifiers, - STATE(8327), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8328), 1, + STATE(7479), 1, + sym_type_modifiers, + STATE(7950), 1, sym_simple_identifier, - STATE(8423), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(8282), 2, + STATE(8310), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(9266), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604347,78 +604097,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146771] = 14, - ACTIONS(345), 1, + [146011] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9084), 1, - anon_sym_AT, - ACTIONS(9186), 1, - anon_sym_suspend, - ACTIONS(9480), 1, - anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9392), 1, + anon_sym_LBRACK, + STATE(6361), 1, sym__lexical_identifier, - STATE(821), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(911), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7436), 1, - sym_type_modifiers, + STATE(7289), 1, + sym_user_type, + STATE(7349), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(936), 2, - sym_user_type, - sym_parenthesized_user_type, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7214), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + ACTIONS(9394), 2, anon_sym_get, anon_sym_set, + STATE(7685), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8537), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [146825] = 13, - ACTIONS(8656), 1, + ACTIONS(9328), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146063] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - ACTIONS(9396), 1, + ACTIONS(9360), 1, sym_reification_modifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8028), 1, + STATE(8029), 1, sym_type_parameter_modifiers, - STATE(8974), 1, + STATE(8844), 1, sym_simple_identifier, - STATE(9015), 1, + STATE(8946), 1, sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9394), 2, + ACTIONS(9358), 2, anon_sym_in, anon_sym_out, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(7164), 4, + STATE(7130), 4, sym_variance_modifier, sym__type_parameter_modifier, sym_annotation, aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604426,39 +604175,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146877] = 14, - ACTIONS(345), 1, + [146115] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9084), 1, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9480), 1, + ACTIONS(9396), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(911), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2880), 1, sym__simple_user_type, - STATE(7449), 1, + STATE(7480), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(945), 2, + STATE(3034), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604466,39 +604215,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146931] = 14, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9084), 1, + [146169] = 14, + ACTIONS(9030), 1, anon_sym_AT, - ACTIONS(9186), 1, + ACTIONS(9128), 1, anon_sym_suspend, - ACTIONS(9480), 1, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9142), 1, + sym__backtick_identifier, + ACTIONS(9368), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(821), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(911), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4620), 1, sym__simple_user_type, - STATE(7441), 1, + STATE(7525), 1, sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(934), 2, + STATE(4905), 2, sym_user_type, sym_parenthesized_user_type, - STATE(7842), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - STATE(7214), 3, + STATE(7216), 3, sym__type_modifier, sym_annotation, aux_sym_type_modifiers_repeat1, - ACTIONS(1664), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604506,36 +604255,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [146985] = 12, - ACTIONS(8656), 1, + [146223] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9360), 1, + sym_reification_modifier, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(8029), 1, + sym_type_parameter_modifiers, + STATE(8844), 1, sym_simple_identifier, - STATE(10104), 1, - sym_parameter_with_optional_type, + STATE(9394), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + ACTIONS(9358), 2, + anon_sym_in, + anon_sym_out, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7130), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604543,110 +604294,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147034] = 12, - ACTIONS(8656), 1, + [146275] = 13, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9398), 1, + anon_sym_LBRACK, + STATE(5611), 1, sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(5616), 1, sym_simple_identifier, - STATE(10018), 1, - sym_parameter_with_optional_type, + STATE(5653), 1, + sym__simple_user_type, + STATE(5725), 1, + sym_user_type, + STATE(7303), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(9400), 2, anon_sym_get, anon_sym_set, + STATE(5781), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9170), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [147083] = 12, - ACTIONS(8656), 1, + ACTIONS(9328), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146327] = 13, + ACTIONS(1672), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(1736), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + ACTIONS(9402), 1, + anon_sym_LBRACK, + STATE(5407), 1, sym_simple_identifier, - STATE(9688), 1, - sym_parameter_with_optional_type, + STATE(5427), 1, + sym__simple_user_type, + STATE(5458), 1, + sym__lexical_identifier, + STATE(5538), 1, + sym_user_type, + STATE(7336), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(9404), 2, anon_sym_get, anon_sym_set, + STATE(5586), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(3048), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [147132] = 12, - ACTIONS(8656), 1, + ACTIONS(9328), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146379] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9396), 1, + anon_sym_LPAREN, + STATE(2784), 1, sym_simple_identifier, - STATE(9843), 1, - sym_parameter_with_optional_type, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2880), 1, + sym__simple_user_type, + STATE(7549), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + STATE(2996), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7216), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604654,73 +604412,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147181] = 12, - ACTIONS(8656), 1, + [146433] = 13, + ACTIONS(9406), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9408), 1, + anon_sym_LBRACK, + ACTIONS(9414), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(7139), 1, sym_simple_identifier, - STATE(10082), 1, - sym_parameter_with_optional_type, + STATE(7206), 1, + sym__lexical_identifier, + STATE(7214), 1, + sym__simple_user_type, + STATE(7249), 1, + sym_user_type, + STATE(7306), 1, + sym_use_site_target, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(9410), 2, anon_sym_get, anon_sym_set, + STATE(7333), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9412), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [147230] = 12, - ACTIONS(8656), 1, + ACTIONS(9328), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146485] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9360), 1, + sym_reification_modifier, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(8029), 1, + sym_type_parameter_modifiers, + STATE(8844), 1, sym_simple_identifier, - STATE(10093), 1, - sym_parameter_with_optional_type, + STATE(8847), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + ACTIONS(9358), 2, + anon_sym_in, + anon_sym_out, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7130), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604728,36 +604490,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147279] = 12, - ACTIONS(8656), 1, + [146537] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9360), 1, + sym_reification_modifier, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(8029), 1, + sym_type_parameter_modifiers, + STATE(8844), 1, sym_simple_identifier, - STATE(10044), 1, - sym_parameter_with_optional_type, + STATE(8921), 1, + sym_type_parameter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + ACTIONS(9358), 2, + anon_sym_in, + anon_sym_out, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7130), 4, + sym_variance_modifier, + sym__type_parameter_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604765,36 +604529,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147328] = 12, - ACTIONS(8656), 1, + [146589] = 14, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9338), 1, + anon_sym_LPAREN, + STATE(5611), 1, sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(5616), 1, sym_simple_identifier, - STATE(10051), 1, - sym_parameter_with_optional_type, + STATE(5653), 1, + sym__simple_user_type, + STATE(7455), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + STATE(5819), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7216), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604802,36 +604569,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147377] = 12, - ACTIONS(8656), 1, + [146643] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9354), 1, + anon_sym_LPAREN, + STATE(4609), 1, sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(10109), 1, - sym_parameter_with_optional_type, + STATE(4896), 1, + sym__simple_user_type, + STATE(7490), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + STATE(4998), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7216), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604839,110 +604609,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147426] = 12, - ACTIONS(8656), 1, + [146697] = 13, + ACTIONS(9416), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9418), 1, + anon_sym_LBRACK, + ACTIONS(9424), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(7231), 1, sym_simple_identifier, - STATE(9828), 1, - sym_parameter_with_optional_type, + STATE(7299), 1, + sym__lexical_identifier, + STATE(7345), 1, + sym_use_site_target, + STATE(7348), 1, + sym__simple_user_type, + STATE(7402), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(9420), 2, anon_sym_get, anon_sym_set, + STATE(7846), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9422), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [147475] = 12, - ACTIONS(8656), 1, + ACTIONS(9328), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146749] = 13, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9426), 1, + anon_sym_LBRACK, + STATE(7275), 1, + sym_use_site_target, + STATE(8319), 1, sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(8329), 1, sym_simple_identifier, - STATE(10114), 1, - sym_parameter_with_optional_type, + STATE(8436), 1, + sym__simple_user_type, + STATE(8647), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(9428), 2, anon_sym_get, anon_sym_set, + STATE(9289), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9198), 5, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [147524] = 12, - ACTIONS(8656), 1, + ACTIONS(9328), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146801] = 14, + ACTIONS(9030), 1, + anon_sym_AT, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9315), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + ACTIONS(9362), 1, + anon_sym_LPAREN, + STATE(5681), 1, sym_simple_identifier, - STATE(10029), 1, - sym_parameter_with_optional_type, + STATE(5685), 1, + sym__lexical_identifier, + STATE(7522), 1, + sym_type_modifiers, + STATE(8317), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + STATE(5771), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7216), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604950,36 +604727,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147573] = 12, - ACTIONS(8656), 1, + [146855] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9380), 1, + anon_sym_LPAREN, + STATE(819), 1, sym_simple_identifier, - STATE(10088), 1, - sym_parameter_with_optional_type, + STATE(820), 1, + sym__lexical_identifier, + STATE(910), 1, + sym__simple_user_type, + STATE(7429), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + STATE(982), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7216), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -604987,36 +604767,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147622] = 12, - ACTIONS(8656), 1, + [146909] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9392), 1, + anon_sym_LBRACK, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7287), 1, + sym_use_site_target, + STATE(7935), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9394), 2, + anon_sym_get, + anon_sym_set, + STATE(7685), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(8537), 5, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + ACTIONS(9328), 6, + anon_sym_field, + anon_sym_property, + anon_sym_receiver, + anon_sym_param, + anon_sym_setparam, + anon_sym_delegate, + [146961] = 14, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9202), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, + anon_sym_LPAREN, + STATE(7357), 1, + sym_type_modifiers, + STATE(8319), 1, sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + STATE(8329), 1, sym_simple_identifier, - STATE(9857), 1, - sym_parameter_with_optional_type, + STATE(8436), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(8312), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7216), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605024,36 +604846,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147671] = 12, - ACTIONS(8656), 1, + [147015] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9030), 1, anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8096), 1, - sym_parameter_modifiers, - STATE(9363), 1, + ACTIONS(9128), 1, + anon_sym_suspend, + ACTIONS(9396), 1, + anon_sym_LPAREN, + STATE(2784), 1, sym_simple_identifier, - STATE(9679), 1, - sym_parameter_with_optional_type, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2880), 1, + sym__simple_user_type, + STATE(7368), 1, + sym_type_modifiers, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, + STATE(3035), 2, + sym_user_type, + sym_parenthesized_user_type, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7208), 3, - sym_parameter_modifier, + STATE(7216), 3, + sym__type_modifier, sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + aux_sym_type_modifiers_repeat1, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605061,15 +604886,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147720] = 5, - ACTIONS(9482), 1, + [147069] = 5, + ACTIONS(9430), 1, sym__quest, - STATE(6696), 1, + STATE(6681), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4284), 9, + ACTIONS(4282), 9, anon_sym_DOT, anon_sym_EQ, anon_sym_LBRACE, @@ -605079,7 +604904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH_GT, sym__backtick_identifier, - ACTIONS(4282), 11, + ACTIONS(4280), 11, anon_sym_by, anon_sym_where, anon_sym_get, @@ -605091,20 +604916,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [147755] = 12, - ACTIONS(8656), 1, + [147104] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9823), 1, + STATE(9628), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605112,15 +604937,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605128,20 +604953,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147804] = 12, - ACTIONS(8656), 1, + [147153] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9824), 1, + STATE(9916), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605149,15 +604974,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605165,20 +604990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147853] = 12, - ACTIONS(8656), 1, + [147202] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(10139), 1, + STATE(10071), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605186,15 +605011,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605202,20 +605027,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147902] = 12, - ACTIONS(8656), 1, + [147251] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9916), 1, + STATE(9717), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605223,15 +605048,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605239,20 +605064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [147951] = 12, - ACTIONS(8656), 1, + [147300] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9757), 1, + STATE(10079), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605260,15 +605085,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605276,20 +605101,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148000] = 12, - ACTIONS(8656), 1, + [147349] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(10150), 1, + STATE(9748), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605297,15 +605122,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605313,20 +605138,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148049] = 12, - ACTIONS(8656), 1, + [147398] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9743), 1, + STATE(9753), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605334,15 +605159,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605350,20 +605175,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148098] = 12, - ACTIONS(8656), 1, + [147447] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9720), 1, + STATE(9855), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605371,15 +605196,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605387,20 +605212,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148147] = 12, - ACTIONS(8656), 1, + [147496] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(10111), 1, + STATE(10096), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605408,15 +605233,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605424,20 +605249,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148196] = 12, - ACTIONS(8656), 1, + [147545] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9660), 1, + STATE(9703), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605445,15 +605270,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605461,20 +605286,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148245] = 12, - ACTIONS(8656), 1, + [147594] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9878), 1, + STATE(10105), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605482,15 +605307,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605498,20 +605323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148294] = 12, - ACTIONS(8656), 1, + [147643] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9894), 1, + STATE(9820), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605519,15 +605344,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605535,20 +605360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148343] = 12, - ACTIONS(8656), 1, + [147692] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(10066), 1, + STATE(10115), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605556,15 +605381,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605572,20 +605397,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148392] = 12, - ACTIONS(8656), 1, + [147741] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9548), 1, + STATE(9771), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605593,15 +605418,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605609,20 +605434,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148441] = 12, - ACTIONS(8656), 1, + [147790] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9840), 1, + STATE(9907), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605630,15 +605455,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605646,20 +605471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148490] = 12, - ACTIONS(8656), 1, + [147839] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9907), 1, + STATE(9848), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605667,15 +605492,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605683,20 +605508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148539] = 12, - ACTIONS(8656), 1, + [147888] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9844), 1, + STATE(10012), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605704,15 +605529,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605720,20 +605545,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148588] = 12, - ACTIONS(8656), 1, + [147937] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9976), 1, + STATE(10148), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605741,15 +605566,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605757,20 +605582,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148637] = 12, - ACTIONS(8656), 1, + [147986] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9851), 1, + STATE(9643), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605778,15 +605603,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605794,20 +605619,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148686] = 12, - ACTIONS(8656), 1, + [148035] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(10040), 1, + STATE(9766), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605815,15 +605640,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605831,20 +605656,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148735] = 12, - ACTIONS(8656), 1, + [148084] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(10039), 1, + STATE(9965), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605852,15 +605677,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605868,20 +605693,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148784] = 12, - ACTIONS(8656), 1, + [148133] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9726), 1, + STATE(10104), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605889,15 +605714,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605905,20 +605730,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148833] = 12, - ACTIONS(8656), 1, + [148182] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9584), 1, + STATE(10133), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605926,15 +605751,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605942,20 +605767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148882] = 12, - ACTIONS(8656), 1, + [148231] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9890), 1, + STATE(10064), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -605963,15 +605788,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -605979,20 +605804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148931] = 12, - ACTIONS(8656), 1, + [148280] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9735), 1, + STATE(9618), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606000,15 +605825,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606016,20 +605841,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [148980] = 12, - ACTIONS(8656), 1, + [148329] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9918), 1, + STATE(10067), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606037,15 +605862,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606053,20 +605878,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149029] = 12, - ACTIONS(8656), 1, + [148378] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9923), 1, + STATE(10072), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606074,15 +605899,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606090,20 +605915,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149078] = 12, - ACTIONS(8656), 1, + [148427] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9873), 1, + STATE(10124), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606111,15 +605936,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606127,20 +605952,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149127] = 12, - ACTIONS(8656), 1, + [148476] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9782), 1, + STATE(10089), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606148,15 +605973,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606164,20 +605989,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149176] = 12, - ACTIONS(8656), 1, + [148525] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9634), 1, + STATE(9614), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606185,15 +606010,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606201,20 +606026,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149225] = 12, - ACTIONS(8656), 1, + [148574] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9602), 1, + STATE(9988), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606222,15 +606047,89 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148623] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(9606), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148672] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(9836), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606238,15 +606137,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149274] = 5, - ACTIONS(9485), 1, + [148721] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(9591), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148770] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(10119), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148819] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(10076), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148868] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(10107), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148917] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(10130), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [148966] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(9586), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149015] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(9710), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149064] = 5, + ACTIONS(9433), 1, sym__quest, - STATE(6696), 1, + STATE(6681), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4250), 9, + ACTIONS(4266), 9, anon_sym_DOT, anon_sym_EQ, anon_sym_LBRACE, @@ -606256,7 +606414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DASH_GT, sym__backtick_identifier, - ACTIONS(4248), 11, + ACTIONS(4264), 11, anon_sym_by, anon_sym_where, anon_sym_get, @@ -606268,20 +606426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149309] = 12, - ACTIONS(8656), 1, + [149099] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9901), 1, + STATE(9565), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606289,15 +606447,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606305,20 +606463,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149358] = 12, - ACTIONS(8656), 1, + [149148] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(10033), 1, + STATE(10027), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606326,15 +606484,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606342,20 +606500,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149407] = 12, - ACTIONS(8656), 1, + [149197] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(10060), 1, + STATE(9562), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606363,15 +606521,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606379,20 +606537,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149456] = 12, - ACTIONS(8656), 1, + [149246] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(10007), 1, + STATE(9520), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606400,15 +606558,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606416,20 +606574,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149505] = 12, - ACTIONS(8656), 1, + [149295] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9989), 1, + STATE(10093), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606437,15 +606595,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606453,20 +606611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149554] = 12, - ACTIONS(8656), 1, + [149344] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9795), 1, + STATE(10143), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606474,15 +606632,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606490,20 +606648,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149603] = 12, - ACTIONS(8656), 1, + [149393] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9912), 1, + STATE(10121), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606511,15 +606669,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606527,20 +606685,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149652] = 12, - ACTIONS(8656), 1, + [149442] = 12, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9315), 1, + ACTIONS(9263), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8096), 1, + STATE(8049), 1, sym_parameter_modifiers, - STATE(9363), 1, + STATE(9314), 1, sym_simple_identifier, - STATE(9717), 1, + STATE(9979), 1, sym_parameter_with_optional_type, ACTIONS(3), 2, sym_multiline_comment, @@ -606548,15 +606706,237 @@ static const uint16_t ts_small_parse_table[] = { STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(9049), 3, + ACTIONS(8995), 3, anon_sym_vararg, anon_sym_noinline, anon_sym_crossinline, - STATE(7208), 3, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149491] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(10118), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149540] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(9486), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149589] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(10144), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149638] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(9550), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149687] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(9822), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [149736] = 12, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9263), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8049), 1, + sym_parameter_modifiers, + STATE(9314), 1, + sym_simple_identifier, + STATE(9615), 1, + sym_parameter_with_optional_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7211), 3, sym_parameter_modifier, sym_annotation, aux_sym_parameter_modifiers_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606564,11 +606944,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149701] = 3, + [149785] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 8, + ACTIONS(4874), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -606577,7 +606957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(5169), 13, + ACTIONS(4872), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -606591,11 +606971,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149731] = 3, + [149815] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4981), 8, + ACTIONS(4866), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -606604,7 +606984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(4979), 13, + ACTIONS(4864), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -606618,11 +606998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149761] = 3, + [149845] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 8, + ACTIONS(4878), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -606631,7 +607011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(5185), 13, + ACTIONS(4876), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -606645,11 +607025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149791] = 3, + [149875] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 8, + ACTIONS(4870), 8, anon_sym_AT, anon_sym_RBRACK, anon_sym_LBRACE, @@ -606658,7 +607038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SEMI, sym__backtick_identifier, - ACTIONS(5193), 13, + ACTIONS(4868), 13, anon_sym_where, anon_sym_get, anon_sym_set, @@ -606672,36 +607052,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [149821] = 14, - ACTIONS(255), 1, + [149905] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3115), 1, - sym__delegation_specifiers, - STATE(4057), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(4140), 1, + STATE(3022), 1, sym_function_type, - STATE(4201), 1, - sym_delegation_specifier, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(2905), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606709,35 +607088,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149872] = 13, - ACTIONS(557), 1, + [149954] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4897), 1, + sym__delegation_specifiers, + STATE(5515), 1, sym_user_type, - STATE(3041), 1, + STATE(5556), 1, + sym_delegation_specifier, + STATE(5566), 1, sym_function_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2958), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3152), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606745,35 +607125,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149921] = 13, - ACTIONS(255), 1, + [150005] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(923), 1, + sym__delegation_specifiers, + STATE(1392), 1, sym_user_type, - STATE(4140), 1, + STATE(1577), 1, sym_function_type, - STATE(10030), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3329), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606781,36 +607162,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [149970] = 14, - ACTIONS(8656), 1, + [150056] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(4081), 1, sym_user_type, - STATE(8482), 1, - sym__delegation_specifiers, - STATE(8545), 1, + STATE(4112), 1, sym_function_type, - STATE(8547), 1, - sym_delegation_specifier, - STATE(9776), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(3259), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606818,36 +607198,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150021] = 14, - ACTIONS(9204), 1, + [150105] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(8340), 1, sym_user_type, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(8448), 1, sym_function_type, - STATE(8429), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(8896), 1, sym__delegation_specifiers, - STATE(9684), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606855,36 +607235,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150072] = 14, - ACTIONS(431), 1, + [150156] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3619), 1, + STATE(905), 1, sym__delegation_specifiers, - STATE(4197), 1, + STATE(1392), 1, sym_user_type, - STATE(4228), 1, - sym_delegation_specifier, - STATE(4252), 1, + STATE(1577), 1, sym_function_type, - STATE(10086), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606892,35 +607272,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150123] = 13, - ACTIONS(255), 1, + [150207] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(957), 1, + sym__delegation_specifiers, + STATE(1392), 1, sym_user_type, - STATE(4140), 1, + STATE(1577), 1, sym_function_type, - STATE(10030), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3213), 2, + STATE(1095), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [150258] = 14, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(917), 1, sym__delegation_specifiers, + STATE(1392), 1, + sym_user_type, + STATE(1577), 1, + sym_function_type, + STATE(1768), 1, sym_delegation_specifier, - STATE(3594), 2, + STATE(10098), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606928,35 +607346,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150172] = 13, - ACTIONS(255), 1, + [150309] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(4057), 1, + STATE(8340), 1, sym_user_type, - STATE(4140), 1, + STATE(8448), 1, sym_function_type, - STATE(10030), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(8634), 1, + sym__delegation_specifiers, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3198), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -606964,35 +607383,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150221] = 13, - ACTIONS(7), 1, + [150360] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(4081), 1, sym_user_type, - STATE(5539), 1, + STATE(4112), 1, sym_function_type, - STATE(9727), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4996), 2, + STATE(3287), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607000,36 +607419,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150270] = 14, - ACTIONS(7), 1, + [150409] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4900), 1, - sym__delegation_specifiers, - STATE(4925), 1, + STATE(8340), 1, sym_user_type, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(8428), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(9727), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607037,36 +607456,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150321] = 14, - ACTIONS(9204), 1, + [150460] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(7861), 1, - sym__simple_user_type, - STATE(8334), 1, + STATE(879), 1, + sym__delegation_specifiers, + STATE(1392), 1, sym_user_type, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(1577), 1, sym_function_type, - STATE(8772), 1, - sym__delegation_specifiers, - STATE(9684), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607074,35 +607493,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150372] = 13, - ACTIONS(115), 1, + [150511] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(7972), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(8340), 1, sym_user_type, - STATE(5311), 1, + STATE(8422), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(9641), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4608), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4694), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607110,35 +607530,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150421] = 13, + [150562] = 13, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(4081), 1, sym_user_type, - STATE(5311), 1, + STATE(4112), 1, sym_function_type, - STATE(9641), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4588), 2, + STATE(3208), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607146,35 +607566,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150470] = 13, - ACTIONS(255), 1, + [150611] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(4140), 1, + STATE(8519), 1, sym_function_type, - STATE(10030), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8600), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3122), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607182,35 +607603,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150519] = 13, - ACTIONS(255), 1, + [150662] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(4081), 1, sym_user_type, - STATE(4140), 1, + STATE(4112), 1, sym_function_type, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3115), 2, + STATE(3205), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607218,35 +607639,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150568] = 13, - ACTIONS(255), 1, + [150711] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(4081), 1, sym_user_type, - STATE(4140), 1, + STATE(4112), 1, sym_function_type, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3137), 2, + STATE(3175), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607254,35 +607675,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150617] = 13, - ACTIONS(255), 1, + [150760] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(4081), 1, sym_user_type, - STATE(4140), 1, + STATE(4112), 1, sym_function_type, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3101), 2, + STATE(3325), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607290,36 +607711,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150666] = 14, - ACTIONS(8656), 1, + [150809] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8371), 1, - sym_user_type, - STATE(8469), 1, + STATE(3100), 1, sym__delegation_specifiers, - STATE(8545), 1, + STATE(4081), 1, + sym_user_type, + STATE(4112), 1, sym_function_type, - STATE(8547), 1, + STATE(4205), 1, sym_delegation_specifier, - STATE(9776), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607327,35 +607748,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150717] = 13, + [150860] = 13, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(4081), 1, sym_user_type, - STATE(5311), 1, + STATE(4112), 1, sym_function_type, - STATE(9641), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4606), 2, + STATE(3139), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607363,35 +607784,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150766] = 13, - ACTIONS(255), 1, + [150909] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(4081), 1, sym_user_type, - STATE(4140), 1, + STATE(4112), 1, sym_function_type, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3070), 2, + STATE(3117), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607399,36 +607820,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150815] = 14, - ACTIONS(9204), 1, + [150958] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(2912), 1, + sym_simple_identifier, + STATE(2943), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(4081), 1, sym_user_type, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(4112), 1, sym_function_type, - STATE(8447), 1, - sym__delegation_specifiers, - STATE(9684), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(3070), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607436,36 +607856,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150866] = 14, - ACTIONS(255), 1, + [151007] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3122), 1, - sym__delegation_specifiers, - STATE(4057), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(4081), 1, sym_user_type, - STATE(4140), 1, + STATE(4112), 1, sym_function_type, - STATE(4201), 1, - sym_delegation_specifier, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3071), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607473,36 +607892,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150917] = 14, - ACTIONS(8656), 1, + [151056] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(4081), 1, sym_user_type, - STATE(8465), 1, - sym__delegation_specifiers, - STATE(8545), 1, + STATE(4112), 1, sym_function_type, - STATE(8547), 1, - sym_delegation_specifier, - STATE(9776), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(3084), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607510,35 +607928,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [150968] = 13, - ACTIONS(255), 1, + [151105] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(4081), 1, sym_user_type, - STATE(4140), 1, + STATE(4112), 1, sym_function_type, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3318), 2, + STATE(3089), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607546,35 +607964,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151017] = 13, - ACTIONS(255), 1, + [151154] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(4081), 1, sym_user_type, - STATE(4140), 1, + STATE(4112), 1, sym_function_type, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3080), 2, + STATE(3091), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607582,35 +608000,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151066] = 13, - ACTIONS(345), 1, + [151203] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(920), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(4081), 1, sym_user_type, - STATE(953), 1, + STATE(4112), 1, sym_function_type, - STATE(9904), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(900), 2, + STATE(3100), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607618,35 +608036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151115] = 13, - ACTIONS(255), 1, + [151252] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(4140), 1, + STATE(8519), 1, sym_function_type, - STATE(10030), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8965), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3083), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607654,35 +608073,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151164] = 13, - ACTIONS(115), 1, + [151303] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(5311), 1, + STATE(3999), 1, sym_function_type, - STATE(9641), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4600), 2, + STATE(2932), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607690,36 +608109,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151213] = 14, - ACTIONS(8656), 1, + [151352] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8371), 1, - sym_user_type, - STATE(8473), 1, + STATE(3091), 1, sym__delegation_specifiers, - STATE(8545), 1, + STATE(4081), 1, + sym_user_type, + STATE(4112), 1, sym_function_type, - STATE(8547), 1, + STATE(4205), 1, sym_delegation_specifier, - STATE(9776), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607727,36 +608146,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151264] = 14, - ACTIONS(255), 1, + [151403] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3262), 1, - sym__delegation_specifiers, - STATE(4057), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(4140), 1, + STATE(3999), 1, sym_function_type, - STATE(4201), 1, - sym_delegation_specifier, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3003), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607764,36 +608182,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151315] = 14, - ACTIONS(8656), 1, + [151452] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8371), 1, - sym_user_type, - STATE(8542), 1, + STATE(4911), 1, sym__delegation_specifiers, - STATE(8545), 1, - sym_function_type, - STATE(8547), 1, + STATE(4920), 1, + sym_user_type, + STATE(5013), 1, sym_delegation_specifier, - STATE(9776), 1, + STATE(5026), 1, + sym_function_type, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607801,35 +608219,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151366] = 13, - ACTIONS(345), 1, + [151503] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(953), 1, + STATE(939), 1, sym_function_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(882), 2, + STATE(905), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607837,36 +608255,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151415] = 14, - ACTIONS(8656), 1, + [151552] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8371), 1, - sym_user_type, - STATE(8476), 1, + STATE(3089), 1, sym__delegation_specifiers, - STATE(8545), 1, + STATE(4081), 1, + sym_user_type, + STATE(4112), 1, sym_function_type, - STATE(8547), 1, + STATE(4205), 1, sym_delegation_specifier, - STATE(9776), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607874,36 +608292,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151466] = 14, - ACTIONS(9192), 1, + [151603] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(4994), 1, - sym__delegation_specifiers, - STATE(5028), 1, + STATE(939), 1, sym_function_type, - STATE(5033), 1, - sym_delegation_specifier, - STATE(9960), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(920), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607911,35 +608328,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151517] = 13, - ACTIONS(255), 1, + [151652] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3084), 1, + sym__delegation_specifiers, + STATE(4081), 1, sym_user_type, - STATE(4140), 1, + STATE(4112), 1, sym_function_type, - STATE(10030), 1, + STATE(4205), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3096), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607947,35 +608365,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151566] = 13, - ACTIONS(115), 1, + [151703] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(5311), 1, + STATE(3999), 1, sym_function_type, - STATE(9641), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4590), 2, + STATE(2960), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -607983,35 +608401,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151615] = 13, - ACTIONS(115), 1, + [151752] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(817), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(868), 1, + sym__delegation_specifiers, + STATE(1392), 1, sym_user_type, - STATE(5311), 1, + STATE(1577), 1, sym_function_type, - STATE(9641), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4586), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4694), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608019,35 +608438,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151664] = 13, - ACTIONS(255), 1, + [151803] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4057), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(4140), 1, + STATE(3999), 1, sym_function_type, - STATE(10030), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3061), 2, + STATE(2968), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608055,36 +608474,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151713] = 14, - ACTIONS(7), 1, + [151852] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(4931), 1, - sym__delegation_specifiers, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(3999), 1, sym_function_type, - STATE(9727), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(2949), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608092,36 +608510,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151764] = 14, - ACTIONS(7), 1, + [151901] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(4947), 1, - sym__delegation_specifiers, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(939), 1, sym_function_type, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(921), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608129,35 +608546,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151815] = 13, - ACTIONS(345), 1, + [151950] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(869), 1, + sym__delegation_specifiers, + STATE(1392), 1, sym_user_type, - STATE(953), 1, + STATE(1577), 1, sym_function_type, - STATE(9904), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(883), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608165,35 +608583,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151864] = 13, - ACTIONS(345), 1, + [152001] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(920), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(953), 1, + STATE(3999), 1, sym_function_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(884), 2, + STATE(3002), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608201,35 +608619,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151913] = 13, - ACTIONS(345), 1, + [152050] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(920), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3071), 1, + sym__delegation_specifiers, + STATE(4081), 1, sym_user_type, - STATE(953), 1, + STATE(4112), 1, sym_function_type, - STATE(9904), 1, + STATE(4205), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(885), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1123), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608237,35 +608656,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [151962] = 13, - ACTIONS(557), 1, + [152101] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(3846), 1, + STATE(3999), 1, sym_function_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2925), 2, + STATE(2941), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608273,36 +608692,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152011] = 14, - ACTIONS(345), 1, + [152150] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(900), 1, - sym__delegation_specifiers, - STATE(1409), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(1514), 1, + STATE(2930), 1, + sym__delegation_specifiers, + STATE(3022), 1, sym_function_type, - STATE(2094), 1, + STATE(3053), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608310,36 +608729,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152062] = 14, - ACTIONS(7), 1, + [152201] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(4984), 1, - sym_delegation_specifier, - STATE(4996), 1, - sym__delegation_specifiers, - STATE(5027), 1, + STATE(3999), 1, sym_function_type, - STATE(9727), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(2939), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608347,35 +608765,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152113] = 13, - ACTIONS(345), 1, + [152250] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(920), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(953), 1, + STATE(3999), 1, sym_function_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(894), 2, + STATE(2931), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608383,36 +608801,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152162] = 14, - ACTIONS(345), 1, + [152299] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(880), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(876), 1, sym__delegation_specifiers, - STATE(1409), 1, + STATE(1392), 1, sym_user_type, - STATE(1514), 1, + STATE(1577), 1, sym_function_type, - STATE(2094), 1, + STATE(1768), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608420,36 +608838,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152213] = 14, - ACTIONS(8656), 1, + [152350] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(8493), 1, - sym__delegation_specifiers, - STATE(8545), 1, + STATE(3999), 1, sym_function_type, - STATE(8547), 1, - sym_delegation_specifier, - STATE(9776), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(2930), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608457,36 +608874,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152264] = 14, - ACTIONS(8656), 1, + [152399] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8371), 1, - sym_user_type, - STATE(8484), 1, + STATE(3070), 1, sym__delegation_specifiers, - STATE(8545), 1, + STATE(4081), 1, + sym_user_type, + STATE(4112), 1, sym_function_type, - STATE(8547), 1, + STATE(4205), 1, sym_delegation_specifier, - STATE(9776), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608494,36 +608911,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152315] = 14, - ACTIONS(9192), 1, + [152450] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(8387), 1, sym_user_type, - STATE(5028), 1, + STATE(8519), 1, sym_function_type, - STATE(5033), 1, + STATE(8521), 1, sym_delegation_specifier, - STATE(5263), 1, + STATE(8536), 1, sym__delegation_specifiers, - STATE(9960), 1, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608531,35 +608948,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152366] = 13, - ACTIONS(345), 1, + [152501] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(953), 1, + STATE(939), 1, sym_function_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(906), 2, + STATE(876), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608567,35 +608984,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152415] = 13, - ACTIONS(557), 1, + [152550] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(3846), 1, + STATE(8519), 1, sym_function_type, - STATE(9985), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8538), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3031), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3152), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608603,36 +609021,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152464] = 14, - ACTIONS(8656), 1, + [152601] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(4920), 1, sym_user_type, - STATE(8545), 1, - sym_function_type, - STATE(8547), 1, + STATE(5013), 1, sym_delegation_specifier, - STATE(8821), 1, + STATE(5026), 1, + sym_function_type, + STATE(5038), 1, sym__delegation_specifiers, - STATE(9776), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608640,35 +609058,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152515] = 13, - ACTIONS(345), 1, + [152652] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(920), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(953), 1, + STATE(3999), 1, sym_function_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(958), 2, + STATE(2921), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608676,35 +609094,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152564] = 13, - ACTIONS(345), 1, + [152701] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(953), 1, + STATE(939), 1, sym_function_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(880), 2, + STATE(869), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608712,35 +609130,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152613] = 13, - ACTIONS(557), 1, + [152750] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(3846), 1, + STATE(939), 1, sym_function_type, - STATE(9985), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2926), 2, + STATE(868), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608748,36 +609166,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152662] = 14, - ACTIONS(8656), 1, + [152799] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(8545), 1, + STATE(3999), 1, sym_function_type, - STATE(8547), 1, - sym_delegation_specifier, - STATE(8550), 1, - sym__delegation_specifiers, - STATE(9776), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(2913), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608785,35 +609202,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152713] = 13, - ACTIONS(115), 1, + [152848] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3782), 1, sym_user_type, - STATE(5311), 1, + STATE(3999), 1, sym_function_type, - STATE(9641), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(2911), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608821,35 +609238,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152762] = 13, - ACTIONS(557), 1, + [152897] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(3846), 1, + STATE(4924), 1, + sym__delegation_specifiers, + STATE(5013), 1, + sym_delegation_specifier, + STATE(5026), 1, sym_function_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3152), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608857,35 +609275,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152811] = 13, - ACTIONS(115), 1, + [152948] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(4209), 1, sym_user_type, - STATE(5311), 1, + STATE(4250), 1, sym_function_type, - STATE(9641), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4577), 2, + STATE(3684), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608893,35 +609311,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152860] = 13, - ACTIONS(345), 1, + [152997] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(920), 1, + STATE(4209), 1, sym_user_type, - STATE(953), 1, + STATE(4250), 1, sym_function_type, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(918), 2, + STATE(3788), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608929,35 +609347,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152909] = 13, + [153046] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5539), 1, + STATE(4928), 1, + sym__delegation_specifiers, + STATE(5013), 1, + sym_delegation_specifier, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4930), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -608965,36 +609384,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [152958] = 14, - ACTIONS(345), 1, + [153097] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(882), 1, - sym__delegation_specifiers, - STATE(1409), 1, + STATE(4209), 1, sym_user_type, - STATE(1514), 1, + STATE(4250), 1, sym_function_type, - STATE(2094), 1, - sym_delegation_specifier, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(3610), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609002,35 +609420,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153009] = 13, - ACTIONS(557), 1, + [153146] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(4209), 1, sym_user_type, - STATE(3846), 1, + STATE(4250), 1, sym_function_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2953), 2, + STATE(3606), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609038,35 +609456,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153058] = 13, - ACTIONS(557), 1, + [153195] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(7972), 1, + sym__simple_user_type, + STATE(8340), 1, sym_user_type, - STATE(3846), 1, + STATE(8441), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(9985), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3012), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3152), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609074,36 +609493,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153107] = 14, - ACTIONS(255), 1, + [153246] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3097), 1, + STATE(4209), 1, sym_user_type, - STATE(3101), 1, - sym__delegation_specifiers, - STATE(3340), 1, + STATE(4250), 1, sym_function_type, - STATE(3687), 1, - sym_delegation_specifier, - STATE(10030), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3698), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609111,35 +609529,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153158] = 13, - ACTIONS(115), 1, + [153295] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(4209), 1, sym_user_type, - STATE(5311), 1, + STATE(4250), 1, sym_function_type, - STATE(9641), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4692), 2, + STATE(3709), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609147,35 +609565,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153207] = 13, - ACTIONS(557), 1, + [153344] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(4209), 1, sym_user_type, - STATE(3846), 1, + STATE(4250), 1, sym_function_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2958), 2, + STATE(3611), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609183,35 +609601,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153256] = 13, - ACTIONS(115), 1, + [153393] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(4209), 1, sym_user_type, - STATE(5311), 1, + STATE(4250), 1, sym_function_type, - STATE(9641), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(3673), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609219,35 +609637,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153305] = 13, - ACTIONS(345), 1, + [153442] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(920), 1, + STATE(8340), 1, sym_user_type, - STATE(953), 1, + STATE(8442), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(9904), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(923), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1123), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609255,36 +609674,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153354] = 14, - ACTIONS(115), 1, + [153493] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4606), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(902), 1, sym__delegation_specifiers, - STATE(5292), 1, + STATE(1392), 1, sym_user_type, - STATE(5311), 1, + STATE(1577), 1, sym_function_type, - STATE(5478), 1, + STATE(1768), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609292,35 +609711,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153405] = 13, - ACTIONS(557), 1, + [153544] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(3846), 1, + STATE(939), 1, sym_function_type, - STATE(9985), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2960), 2, + STATE(879), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609328,35 +609747,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153454] = 13, - ACTIONS(345), 1, + [153593] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(901), 1, + sym__delegation_specifiers, + STATE(1392), 1, sym_user_type, - STATE(953), 1, + STATE(1577), 1, sym_function_type, - STATE(9904), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(924), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609364,35 +609784,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153503] = 13, - ACTIONS(7), 1, + [153644] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(5539), 1, + STATE(939), 1, sym_function_type, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4916), 2, + STATE(923), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609400,35 +609820,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153552] = 13, - ACTIONS(7), 1, + [153693] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(5539), 1, + STATE(939), 1, sym_function_type, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4901), 2, + STATE(957), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609436,35 +609856,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153601] = 13, - ACTIONS(345), 1, + [153742] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(920), 1, + STATE(8340), 1, sym_user_type, - STATE(953), 1, + STATE(8407), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(9904), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(972), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1123), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609472,35 +609893,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153650] = 13, - ACTIONS(557), 1, + [153793] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(921), 1, + sym__delegation_specifiers, + STATE(1392), 1, sym_user_type, - STATE(3846), 1, + STATE(1577), 1, sym_function_type, - STATE(9985), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2907), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3152), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609508,35 +609930,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153699] = 13, - ACTIONS(557), 1, + [153844] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(4209), 1, sym_user_type, - STATE(3846), 1, + STATE(4250), 1, sym_function_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2905), 2, + STATE(3697), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609544,35 +609966,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153748] = 13, - ACTIONS(557), 1, + [153893] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(3846), 1, + STATE(939), 1, sym_function_type, - STATE(9985), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2896), 2, + STATE(917), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609580,73 +610002,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153797] = 14, - ACTIONS(345), 1, + [153942] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(883), 1, - sym__delegation_specifiers, - STATE(1409), 1, - sym_user_type, - STATE(1514), 1, - sym_function_type, - STATE(2094), 1, - sym_delegation_specifier, - STATE(9904), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(1123), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [153848] = 14, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(6073), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, - sym__simple_user_type, - STATE(8371), 1, + STATE(874), 1, sym_user_type, - STATE(8545), 1, + STATE(939), 1, sym_function_type, - STATE(8547), 1, - sym_delegation_specifier, - STATE(8619), 1, - sym__delegation_specifiers, - STATE(9776), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(902), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609654,36 +610038,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153899] = 14, - ACTIONS(8656), 1, + [153991] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(4209), 1, sym_user_type, - STATE(8545), 1, + STATE(4250), 1, sym_function_type, - STATE(8547), 1, - sym_delegation_specifier, - STATE(8549), 1, - sym__delegation_specifiers, - STATE(9776), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(3660), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609691,35 +610074,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153950] = 13, - ACTIONS(7), 1, + [154040] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(5521), 1, + STATE(4209), 1, sym_user_type, - STATE(5539), 1, + STATE(4250), 1, sym_function_type, - STATE(9727), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4918), 2, + STATE(3620), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609727,35 +610110,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [153999] = 13, - ACTIONS(345), 1, + [154089] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(953), 1, + STATE(939), 1, sym_function_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(862), 2, + STATE(901), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609763,35 +610146,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154048] = 13, - ACTIONS(7), 1, + [154138] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(4664), 1, + sym__delegation_specifiers, + STATE(5278), 1, sym_user_type, - STATE(5539), 1, + STATE(5412), 1, sym_function_type, - STATE(9727), 1, + STATE(5541), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4975), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5255), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609799,35 +610183,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154097] = 13, - ACTIONS(431), 1, + [154189] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(874), 1, sym_user_type, - STATE(3804), 1, + STATE(939), 1, sym_function_type, - STATE(10086), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3682), 2, + STATE(936), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609835,35 +610219,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154146] = 13, - ACTIONS(431), 1, + [154238] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(7972), 1, + sym__simple_user_type, + STATE(8340), 1, sym_user_type, - STATE(3804), 1, + STATE(8419), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(10086), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3670), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609871,35 +610256,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154195] = 13, - ACTIONS(557), 1, + [154289] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(3846), 1, + STATE(939), 1, sym_function_type, - STATE(9985), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2883), 2, + STATE(887), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609907,72 +610292,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154244] = 14, - ACTIONS(7), 1, + [154338] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4925), 1, - sym_user_type, - STATE(4955), 1, - sym__delegation_specifiers, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, - sym_function_type, - STATE(9727), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5255), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1908), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [154295] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(4537), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(5292), 1, + STATE(3782), 1, sym_user_type, - STATE(5311), 1, + STATE(3999), 1, sym_function_type, - STATE(9641), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4607), 2, + STATE(2905), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -609980,35 +610328,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154344] = 13, - ACTIONS(557), 1, + [154387] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(3846), 1, + STATE(3719), 1, sym_function_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2884), 2, + STATE(3618), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610016,35 +610364,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154393] = 13, - ACTIONS(115), 1, + [154436] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(3685), 1, sym_user_type, - STATE(5311), 1, + STATE(3719), 1, sym_function_type, - STATE(9641), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4581), 2, + STATE(3679), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610052,36 +610400,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154442] = 14, - ACTIONS(9204), 1, + [154485] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(7861), 1, - sym__simple_user_type, - STATE(8334), 1, + STATE(936), 1, + sym__delegation_specifiers, + STATE(1392), 1, sym_user_type, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(1577), 1, sym_function_type, - STATE(8438), 1, - sym__delegation_specifiers, - STATE(9684), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610089,35 +610437,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154493] = 13, - ACTIONS(255), 1, + [154536] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(4057), 1, + STATE(8340), 1, sym_user_type, - STATE(4140), 1, + STATE(8400), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(10030), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3262), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610125,35 +610474,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154542] = 13, - ACTIONS(557), 1, + [154587] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3813), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(3846), 1, + STATE(3719), 1, sym_function_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2902), 2, + STATE(3669), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610161,35 +610510,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154591] = 13, - ACTIONS(431), 1, + [154636] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3653), 1, + STATE(8387), 1, sym_user_type, - STATE(3804), 1, + STATE(8519), 1, sym_function_type, - STATE(10086), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8579), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3667), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610197,35 +610547,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154640] = 13, - ACTIONS(431), 1, + [154687] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3653), 1, + STATE(8387), 1, sym_user_type, - STATE(3804), 1, + STATE(8519), 1, sym_function_type, - STATE(10086), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(9001), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3665), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610233,35 +610584,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154689] = 13, - ACTIONS(431), 1, + [154738] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(3804), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3661), 2, + STATE(3620), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610269,35 +610620,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154738] = 13, - ACTIONS(431), 1, + [154787] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(887), 1, + sym__delegation_specifiers, + STATE(1392), 1, sym_user_type, - STATE(3804), 1, + STATE(1577), 1, sym_function_type, - STATE(10086), 1, + STATE(1768), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3660), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610305,35 +610657,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154787] = 13, - ACTIONS(431), 1, + [154838] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(4197), 1, + STATE(8387), 1, sym_user_type, - STATE(4252), 1, + STATE(8519), 1, sym_function_type, - STATE(10086), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8591), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3619), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610341,35 +610694,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154836] = 13, - ACTIONS(431), 1, + [154889] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3653), 1, + STATE(8387), 1, sym_user_type, - STATE(3804), 1, + STATE(8519), 1, sym_function_type, - STATE(10086), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8595), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3659), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610377,35 +610731,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154885] = 13, - ACTIONS(7), 1, + [154940] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3117), 1, + sym__delegation_specifiers, + STATE(4081), 1, sym_user_type, - STATE(5539), 1, + STATE(4112), 1, sym_function_type, - STATE(9727), 1, + STATE(4205), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4958), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5255), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610413,35 +610768,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154934] = 13, - ACTIONS(431), 1, + [154991] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(4209), 1, sym_user_type, - STATE(3804), 1, + STATE(4250), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3656), 2, + STATE(3679), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610449,35 +610804,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [154983] = 13, - ACTIONS(431), 1, + [155040] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(4209), 1, + sym_user_type, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3618), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3967), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1600), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155089] = 13, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4197), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(4252), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3735), 2, + STATE(3660), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610485,36 +610876,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155032] = 14, - ACTIONS(9192), 1, + [155138] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(817), 1, + sym__simple_user_type, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(1392), 1, + sym_user_type, + STATE(1577), 1, + sym_function_type, + STATE(10098), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(887), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [155187] = 14, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9184), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(5681), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(7972), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(8340), 1, sym_user_type, - STATE(5003), 1, + STATE(8420), 1, sym__delegation_specifiers, - STATE(5028), 1, + STATE(8448), 1, sym_function_type, - STATE(5033), 1, + STATE(8453), 1, sym_delegation_specifier, - STATE(9960), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610522,36 +610949,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155083] = 14, - ACTIONS(9192), 1, + [155238] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4915), 1, - sym_user_type, - STATE(5005), 1, + STATE(3139), 1, sym__delegation_specifiers, - STATE(5028), 1, + STATE(4081), 1, + sym_user_type, + STATE(4112), 1, sym_function_type, - STATE(5033), 1, + STATE(4205), 1, sym_delegation_specifier, - STATE(9960), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610559,36 +610986,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155134] = 14, - ACTIONS(7), 1, + [155289] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(4905), 1, - sym__delegation_specifiers, - STATE(4925), 1, + STATE(5278), 1, sym_user_type, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(5412), 1, sym_function_type, - STATE(9727), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(4600), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610596,35 +611022,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155185] = 13, - ACTIONS(431), 1, + [155338] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(4197), 1, + STATE(1392), 1, sym_user_type, - STATE(4252), 1, + STATE(1577), 1, sym_function_type, - STATE(10086), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3632), 2, + STATE(936), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610632,35 +611058,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155234] = 13, - ACTIONS(431), 1, + [155387] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(4197), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(4252), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3633), 2, + STATE(3697), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610668,35 +611094,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155283] = 13, - ACTIONS(431), 1, + [155436] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3653), 1, + STATE(8387), 1, sym_user_type, - STATE(3804), 1, + STATE(8519), 1, sym_function_type, - STATE(10086), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8609), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3791), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610704,35 +611131,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155332] = 13, + [155487] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5539), 1, + STATE(4941), 1, + sym__delegation_specifiers, + STATE(5013), 1, + sym_delegation_specifier, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4940), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610740,35 +611168,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155381] = 13, - ACTIONS(431), 1, + [155538] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(4197), 1, + STATE(8387), 1, sym_user_type, - STATE(4252), 1, + STATE(8519), 1, sym_function_type, - STATE(10086), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8610), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3651), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610776,35 +611205,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155430] = 13, - ACTIONS(431), 1, + [155589] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(4609), 1, + sym__lexical_identifier, + STATE(4616), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(4197), 1, + STATE(4920), 1, sym_user_type, - STATE(4252), 1, + STATE(4942), 1, + sym__delegation_specifiers, + STATE(5013), 1, + sym_delegation_specifier, + STATE(5026), 1, sym_function_type, - STATE(10086), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3791), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610812,36 +611242,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155479] = 14, - ACTIONS(9204), 1, + [155640] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(3684), 1, + sym__delegation_specifiers, + STATE(3685), 1, sym_user_type, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3719), 1, sym_function_type, - STATE(8878), 1, - sym__delegation_specifiers, - STATE(9684), 1, + STATE(3785), 1, + sym_delegation_specifier, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610849,35 +611279,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155530] = 13, + [155691] = 14, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(3325), 1, + sym__delegation_specifiers, + STATE(4081), 1, sym_user_type, - STATE(5311), 1, + STATE(4112), 1, sym_function_type, - STATE(9641), 1, + STATE(4205), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4664), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4694), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610885,35 +611316,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155579] = 13, - ACTIONS(431), 1, + [155742] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(4197), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(4252), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(3785), 1, + sym_delegation_specifier, + STATE(3788), 1, + sym__delegation_specifiers, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3656), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610921,35 +611353,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155628] = 13, - ACTIONS(431), 1, + [155793] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(2905), 1, + sym__delegation_specifiers, + STATE(2917), 1, sym_user_type, - STATE(3804), 1, + STATE(3022), 1, sym_function_type, - STATE(10086), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3651), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610957,35 +611390,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155677] = 13, - ACTIONS(431), 1, + [155844] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(4197), 1, + STATE(3175), 1, + sym__delegation_specifiers, + STATE(4081), 1, sym_user_type, - STATE(4252), 1, + STATE(4112), 1, sym_function_type, - STATE(10086), 1, + STATE(4205), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3659), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -610993,36 +611427,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155726] = 14, - ACTIONS(115), 1, + [155895] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4588), 1, + STATE(3610), 1, sym__delegation_specifiers, - STATE(5292), 1, + STATE(3685), 1, sym_user_type, - STATE(5311), 1, + STATE(3719), 1, sym_function_type, - STATE(5478), 1, + STATE(3785), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611030,35 +611464,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155777] = 13, - ACTIONS(431), 1, + [155946] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3606), 1, + sym__delegation_specifiers, + STATE(3685), 1, sym_user_type, - STATE(3804), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(3785), 1, + sym_delegation_specifier, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3633), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611066,35 +611501,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155826] = 13, - ACTIONS(431), 1, + [155997] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(3804), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3632), 2, + STATE(3673), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611102,35 +611537,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155875] = 13, - ACTIONS(431), 1, + [156046] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(4197), 1, + STATE(2911), 1, + sym__delegation_specifiers, + STATE(2917), 1, sym_user_type, - STATE(4252), 1, + STATE(3022), 1, sym_function_type, - STATE(10086), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3660), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611138,36 +611574,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155924] = 14, - ACTIONS(9204), 1, + [156097] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(7861), 1, - sym__simple_user_type, - STATE(8334), 1, - sym_user_type, - STATE(8411), 1, + STATE(2913), 1, sym__delegation_specifiers, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(2917), 1, + sym_user_type, + STATE(3022), 1, sym_function_type, - STATE(9684), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611175,35 +611611,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [155975] = 13, - ACTIONS(431), 1, + [156148] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(4197), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(4252), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3661), 2, + STATE(3611), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611211,35 +611647,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156024] = 13, - ACTIONS(431), 1, + [156197] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(4197), 1, + STATE(8387), 1, sym_user_type, - STATE(4252), 1, + STATE(8519), 1, sym_function_type, - STATE(10086), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8625), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3665), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611247,36 +611684,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156073] = 14, - ACTIONS(9204), 1, + [156248] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(3685), 1, sym_user_type, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, - sym_function_type, - STATE(8867), 1, + STATE(3698), 1, sym__delegation_specifiers, - STATE(9684), 1, + STATE(3719), 1, + sym_function_type, + STATE(3785), 1, + sym_delegation_specifier, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611284,35 +611721,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156124] = 13, - ACTIONS(431), 1, + [156299] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(7972), 1, + sym__simple_user_type, + STATE(8340), 1, sym_user_type, - STATE(3804), 1, + STATE(8448), 1, sym_function_type, - STATE(10086), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(8944), 1, + sym__delegation_specifiers, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3735), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611320,35 +611758,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156173] = 13, - ACTIONS(431), 1, + [156350] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(4197), 1, + STATE(2917), 1, sym_user_type, - STATE(4252), 1, + STATE(2921), 1, + sym__delegation_specifiers, + STATE(3022), 1, sym_function_type, - STATE(10086), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3667), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4029), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611356,35 +611795,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156222] = 13, - ACTIONS(431), 1, + [156401] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(3804), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3619), 2, + STATE(3709), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611392,35 +611831,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156271] = 13, - ACTIONS(431), 1, + [156450] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(4197), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(4252), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3670), 2, + STATE(3698), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611428,36 +611867,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156320] = 14, - ACTIONS(115), 1, + [156499] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4608), 1, - sym__delegation_specifiers, - STATE(5292), 1, + STATE(3685), 1, sym_user_type, - STATE(5311), 1, + STATE(3709), 1, + sym__delegation_specifiers, + STATE(3719), 1, sym_function_type, - STATE(5478), 1, + STATE(3785), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611465,35 +611904,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156371] = 13, - ACTIONS(431), 1, + [156550] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(4197), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(4252), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3682), 2, + STATE(3606), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611501,36 +611940,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156420] = 14, - ACTIONS(345), 1, + [156599] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(920), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(923), 1, - sym__delegation_specifiers, - STATE(949), 1, - sym_delegation_specifier, - STATE(953), 1, + STATE(8519), 1, sym_function_type, - STATE(9904), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8614), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611538,35 +611977,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156471] = 13, - ACTIONS(557), 1, + [156650] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(3041), 1, + STATE(3719), 1, sym_function_type, - STATE(9985), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2902), 2, + STATE(3610), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611574,35 +612013,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156520] = 13, - ACTIONS(345), 1, + [156699] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(1409), 1, + STATE(3611), 1, + sym__delegation_specifiers, + STATE(3685), 1, sym_user_type, - STATE(1514), 1, + STATE(3719), 1, sym_function_type, - STATE(9904), 1, + STATE(3785), 1, + sym_delegation_specifier, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(862), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1123), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611610,35 +612050,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156569] = 13, - ACTIONS(345), 1, + [156750] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(1514), 1, + STATE(8519), 1, sym_function_type, - STATE(9904), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(8603), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(972), 2, + STATE(8722), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [156801] = 14, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4606), 1, sym__delegation_specifiers, + STATE(5278), 1, + sym_user_type, + STATE(5412), 1, + sym_function_type, + STATE(5541), 1, sym_delegation_specifier, - STATE(1123), 2, + STATE(9911), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611646,36 +612124,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156618] = 14, - ACTIONS(9204), 1, + [156852] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(3685), 1, sym_user_type, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3719), 1, sym_function_type, - STATE(8449), 1, - sym__delegation_specifiers, - STATE(9684), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(3788), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611683,36 +612160,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156669] = 14, - ACTIONS(345), 1, + [156901] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(884), 1, - sym__delegation_specifiers, - STATE(1409), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(1514), 1, + STATE(8519), 1, sym_function_type, - STATE(2094), 1, + STATE(8521), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(8585), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611720,36 +612197,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156720] = 14, - ACTIONS(7), 1, + [156952] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4919), 1, - sym__delegation_specifiers, - STATE(4925), 1, + STATE(3685), 1, sym_user_type, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(3719), 1, sym_function_type, - STATE(9727), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(3684), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611757,36 +612233,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156771] = 14, + [157001] = 14, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4600), 1, + STATE(3205), 1, sym__delegation_specifiers, - STATE(5292), 1, + STATE(4081), 1, sym_user_type, - STATE(5311), 1, + STATE(4112), 1, sym_function_type, - STATE(5478), 1, + STATE(4205), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611794,35 +612270,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156822] = 13, - ACTIONS(345), 1, + [157052] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3208), 1, + sym__delegation_specifiers, + STATE(4081), 1, sym_user_type, - STATE(1514), 1, + STATE(4112), 1, sym_function_type, - STATE(9904), 1, + STATE(4205), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(924), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1123), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611830,35 +612307,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156871] = 13, - ACTIONS(115), 1, + [157103] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(5292), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(5311), 1, + STATE(3022), 1, sym_function_type, - STATE(9641), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4589), 2, + STATE(2911), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611866,35 +612343,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156920] = 13, - ACTIONS(7), 1, + [157152] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(5539), 1, + STATE(3022), 1, sym_function_type, - STATE(9727), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4919), 2, + STATE(2913), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611902,36 +612379,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [156969] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [157201] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4590), 1, + STATE(4605), 1, sym__delegation_specifiers, - STATE(5292), 1, + STATE(5278), 1, sym_user_type, - STATE(5311), 1, + STATE(5412), 1, sym_function_type, - STATE(5478), 1, + STATE(5541), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611939,36 +612416,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157020] = 14, - ACTIONS(9204), 1, + [157252] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(7861), 1, - sym__simple_user_type, - STATE(8334), 1, + STATE(2917), 1, sym_user_type, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3022), 1, sym_function_type, - STATE(8939), 1, - sym__delegation_specifiers, - STATE(9684), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(2921), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -611976,36 +612452,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157071] = 14, - ACTIONS(9204), 1, + [157301] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(7861), 1, - sym__simple_user_type, - STATE(8334), 1, + STATE(2917), 1, sym_user_type, - STATE(8403), 1, - sym__delegation_specifiers, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3022), 1, sym_function_type, - STATE(9684), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(2930), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612013,35 +612488,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157122] = 13, - ACTIONS(345), 1, + [157350] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(1514), 1, + STATE(3022), 1, sym_function_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(923), 2, + STATE(2931), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612049,36 +612524,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157171] = 14, - ACTIONS(345), 1, + [157399] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(885), 1, - sym__delegation_specifiers, - STATE(1409), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(1514), 1, + STATE(2931), 1, + sym__delegation_specifiers, + STATE(3022), 1, sym_function_type, - STATE(2094), 1, + STATE(3053), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612086,35 +612561,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157222] = 13, - ACTIONS(345), 1, + [157450] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(2917), 1, + sym_user_type, + STATE(3022), 1, + sym_function_type, + STATE(10100), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2939), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1858), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [157499] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(1514), 1, + STATE(3022), 1, sym_function_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(958), 2, + STATE(2941), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612122,35 +612633,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157271] = 13, + [157548] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4930), 2, + STATE(4897), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612158,35 +612669,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157320] = 13, + [157597] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4996), 2, + STATE(5023), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612194,36 +612705,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157369] = 14, - ACTIONS(431), 1, + [157646] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3735), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3673), 1, sym__delegation_specifiers, - STATE(4197), 1, + STATE(3685), 1, sym_user_type, - STATE(4228), 1, - sym_delegation_specifier, - STATE(4252), 1, + STATE(3719), 1, sym_function_type, - STATE(10086), 1, + STATE(3785), 1, + sym_delegation_specifier, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612231,35 +612742,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157420] = 13, - ACTIONS(345), 1, + [157697] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(1514), 1, + STATE(3022), 1, sym_function_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(906), 2, + STATE(3002), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612267,35 +612778,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157469] = 13, + [157746] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4916), 2, + STATE(4893), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612303,35 +612814,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157518] = 13, + [157795] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4901), 2, + STATE(4895), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612339,36 +612850,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157567] = 14, - ACTIONS(115), 1, + [157844] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4586), 1, - sym__delegation_specifiers, - STATE(5292), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(5311), 1, + STATE(3022), 1, sym_function_type, - STATE(5478), 1, - sym_delegation_specifier, - STATE(9641), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(2949), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612376,35 +612886,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157618] = 13, - ACTIONS(345), 1, + [157893] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(1409), 1, + STATE(8340), 1, sym_user_type, - STATE(1514), 1, + STATE(8411), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(9904), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(894), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1123), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612412,35 +612923,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157667] = 13, + [157944] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4918), 2, + STATE(4911), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612448,35 +612959,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157716] = 13, + [157993] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4975), 2, + STATE(5038), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612484,35 +612995,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157765] = 13, - ACTIONS(557), 1, + [158042] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(3041), 1, + STATE(3022), 1, sym_function_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2884), 2, + STATE(2968), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612520,35 +613031,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157814] = 13, + [158091] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4958), 2, + STATE(4924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612556,35 +613067,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157863] = 13, + [158140] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4940), 2, + STATE(4928), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612592,35 +613103,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157912] = 13, - ACTIONS(7), 1, + [158189] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(3685), 1, + sym_user_type, + STATE(3697), 1, + sym__delegation_specifiers, + STATE(3719), 1, + sym_function_type, + STATE(3785), 1, + sym_delegation_specifier, + STATE(10126), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3967), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1600), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158240] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(5539), 1, + STATE(3022), 1, sym_function_type, - STATE(9727), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4905), 2, + STATE(2960), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612628,36 +613176,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [157961] = 14, - ACTIONS(255), 1, + [158289] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3318), 1, - sym__delegation_specifiers, - STATE(4057), 1, + STATE(5278), 1, sym_user_type, - STATE(4140), 1, + STATE(5412), 1, sym_function_type, - STATE(4201), 1, - sym_delegation_specifier, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(4664), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612665,35 +613212,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158012] = 13, - ACTIONS(557), 1, + [158338] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(3041), 1, + STATE(5026), 1, sym_function_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2883), 2, + STATE(4941), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612701,35 +613248,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158061] = 13, + [158387] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4919), 2, + STATE(4942), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612737,35 +613284,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158110] = 13, - ACTIONS(7), 1, + [158436] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(5027), 1, + STATE(3022), 1, sym_function_type, - STATE(9727), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4905), 2, + STATE(3003), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612773,35 +613320,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158159] = 13, - ACTIONS(345), 1, + [158485] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(1514), 1, + STATE(5026), 1, sym_function_type, - STATE(9904), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(885), 2, + STATE(4955), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612809,35 +613356,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158208] = 13, + [158534] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4668), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4920), 1, + sym_user_type, + STATE(4955), 1, + sym__delegation_specifiers, + STATE(5013), 1, + sym_delegation_specifier, + STATE(5026), 1, + sym_function_type, + STATE(9539), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5103), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1868), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158585] = 13, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(2783), 1, + sym__simple_user_type, + STATE(2784), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(5027), 1, + STATE(3022), 1, sym_function_type, - STATE(9727), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4900), 2, + STATE(2932), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612845,35 +613429,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158257] = 13, - ACTIONS(345), 1, + [158634] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(1514), 1, + STATE(1577), 1, sym_function_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(884), 2, + STATE(901), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612881,35 +613465,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158306] = 13, + [158683] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5539), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4900), 2, + STATE(4947), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612917,36 +613501,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158355] = 14, - ACTIONS(8656), 1, + [158732] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(4920), 1, sym_user_type, - STATE(8545), 1, + STATE(5026), 1, sym_function_type, - STATE(8547), 1, - sym_delegation_specifier, - STATE(8576), 1, - sym__delegation_specifiers, - STATE(9776), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(4951), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612954,35 +613537,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158406] = 13, - ACTIONS(7), 1, + [158781] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(2912), 1, + sym_simple_identifier, + STATE(2943), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(3086), 1, + sym_user_type, + STATE(3361), 1, + sym_function_type, + STATE(9890), 1, + sym_function_type_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3100), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3447), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [158830] = 13, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(5027), 1, + STATE(3361), 1, sym_function_type, - STATE(9727), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4931), 2, + STATE(3091), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -612990,35 +613609,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158455] = 13, + [158879] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4947), 2, + STATE(4933), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613026,36 +613645,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158504] = 14, - ACTIONS(9204), 1, + [158928] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(2912), 1, + sym_simple_identifier, + STATE(2943), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(3086), 1, sym_user_type, - STATE(8417), 1, - sym__delegation_specifiers, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3361), 1, sym_function_type, - STATE(9684), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(3089), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613063,36 +613681,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158555] = 14, - ACTIONS(115), 1, + [158977] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4585), 1, + STATE(3660), 1, sym__delegation_specifiers, - STATE(5292), 1, + STATE(3685), 1, sym_user_type, - STATE(5311), 1, + STATE(3719), 1, sym_function_type, - STATE(5478), 1, + STATE(3785), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613100,72 +613718,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158606] = 13, - ACTIONS(7), 1, + [159028] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(4925), 1, - sym_user_type, - STATE(5027), 1, - sym_function_type, - STATE(9727), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4955), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(5255), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1908), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [158655] = 14, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(6073), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(8340), 1, sym_user_type, - STATE(8545), 1, + STATE(8413), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(8547), 1, + STATE(8453), 1, sym_delegation_specifier, - STATE(9302), 1, - sym__delegation_specifiers, - STATE(9776), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613173,35 +613755,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158706] = 13, - ACTIONS(557), 1, + [159079] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(3041), 1, + STATE(1577), 1, sym_function_type, - STATE(9985), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2896), 2, + STATE(902), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613209,35 +613791,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158755] = 13, - ACTIONS(345), 1, + [159128] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(821), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(5278), 1, sym_user_type, - STATE(1514), 1, + STATE(5412), 1, sym_function_type, - STATE(9904), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(883), 2, + STATE(4606), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613245,35 +613827,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158804] = 13, - ACTIONS(345), 1, + [159177] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(1514), 1, + STATE(3361), 1, sym_function_type, - STATE(9904), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(882), 2, + STATE(3084), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613281,36 +613863,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158853] = 14, - ACTIONS(9204), 1, + [159226] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(3620), 1, + sym__delegation_specifiers, + STATE(3685), 1, sym_user_type, - STATE(8419), 1, - sym_delegation_specifier, - STATE(8422), 1, + STATE(3719), 1, sym_function_type, - STATE(8445), 1, - sym__delegation_specifiers, - STATE(9684), 1, + STATE(3785), 1, + sym_delegation_specifier, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613318,35 +613900,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158904] = 13, - ACTIONS(345), 1, + [159277] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(1514), 1, + STATE(2939), 1, + sym__delegation_specifiers, + STATE(3022), 1, sym_function_type, - STATE(9904), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(880), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613354,35 +613937,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [158953] = 13, - ACTIONS(557), 1, + [159328] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3669), 1, + sym__delegation_specifiers, + STATE(3685), 1, sym_user_type, - STATE(3041), 1, + STATE(3719), 1, sym_function_type, - STATE(9985), 1, + STATE(3785), 1, + sym_delegation_specifier, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2905), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3152), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613390,35 +613974,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159002] = 13, - ACTIONS(345), 1, + [159379] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(1514), 1, + STATE(3361), 1, sym_function_type, - STATE(9904), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(900), 2, + STATE(3071), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613426,36 +614010,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159051] = 14, + [159428] = 13, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4577), 1, - sym__delegation_specifiers, - STATE(5292), 1, + STATE(3086), 1, sym_user_type, - STATE(5311), 1, + STATE(3361), 1, sym_function_type, - STATE(5478), 1, - sym_delegation_specifier, - STATE(9641), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3070), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613463,35 +614046,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159102] = 13, - ACTIONS(557), 1, + [159477] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(3041), 1, + STATE(2941), 1, + sym__delegation_specifiers, + STATE(3022), 1, sym_function_type, - STATE(9985), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2907), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613499,36 +614083,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159151] = 14, - ACTIONS(9192), 1, + [159528] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4915), 1, - sym_user_type, - STATE(5018), 1, + STATE(3679), 1, sym__delegation_specifiers, - STATE(5028), 1, + STATE(3685), 1, + sym_user_type, + STATE(3719), 1, sym_function_type, - STATE(5033), 1, + STATE(3785), 1, sym_delegation_specifier, - STATE(9960), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613536,35 +614120,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159202] = 13, - ACTIONS(557), 1, + [159579] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(3041), 1, + STATE(3361), 1, sym_function_type, - STATE(9985), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2960), 2, + STATE(3117), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613572,36 +614156,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159251] = 14, - ACTIONS(345), 1, + [159628] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(894), 1, + STATE(3618), 1, sym__delegation_specifiers, - STATE(1409), 1, + STATE(3685), 1, sym_user_type, - STATE(1514), 1, + STATE(3719), 1, sym_function_type, - STATE(2094), 1, + STATE(3785), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613609,35 +614193,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159302] = 13, - ACTIONS(7), 1, + [159679] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(5539), 1, + STATE(3361), 1, sym_function_type, - STATE(9727), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4931), 2, + STATE(3139), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613645,36 +614229,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159351] = 14, - ACTIONS(9192), 1, + [159728] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(5278), 1, sym_user_type, - STATE(5028), 1, + STATE(5412), 1, sym_function_type, - STATE(5033), 1, - sym_delegation_specifier, - STATE(5302), 1, - sym__delegation_specifiers, - STATE(9960), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(4610), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613682,36 +614265,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159402] = 14, - ACTIONS(7), 1, + [159777] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4925), 1, + STATE(4209), 1, sym_user_type, - STATE(4930), 1, - sym__delegation_specifiers, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(4250), 1, sym_function_type, - STATE(9727), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(3669), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613719,35 +614301,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159453] = 13, - ACTIONS(557), 1, + [159826] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(3041), 1, + STATE(3361), 1, sym_function_type, - STATE(9985), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3012), 2, + STATE(3325), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613755,36 +614337,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159502] = 14, - ACTIONS(255), 1, + [159875] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3061), 1, - sym__delegation_specifiers, - STATE(4057), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(4140), 1, + STATE(3361), 1, sym_function_type, - STATE(4201), 1, - sym_delegation_specifier, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3175), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613792,35 +614373,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159553] = 13, - ACTIONS(557), 1, + [159924] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(5278), 1, sym_user_type, - STATE(3041), 1, + STATE(5412), 1, sym_function_type, - STATE(9985), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2953), 2, + STATE(4605), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613828,36 +614409,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159602] = 14, - ACTIONS(9192), 1, + [159973] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(5022), 1, + STATE(3002), 1, sym__delegation_specifiers, - STATE(5028), 1, + STATE(3022), 1, sym_function_type, - STATE(5033), 1, + STATE(3053), 1, sym_delegation_specifier, - STATE(9960), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613865,35 +614446,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159653] = 13, - ACTIONS(557), 1, + [160024] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(3041), 1, + STATE(2949), 1, + sym__delegation_specifiers, + STATE(3022), 1, sym_function_type, - STATE(9985), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2937), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613901,35 +614483,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159702] = 13, - ACTIONS(7), 1, + [160075] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(5539), 1, + STATE(3361), 1, sym_function_type, - STATE(9727), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4947), 2, + STATE(3205), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613937,36 +614519,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159751] = 14, - ACTIONS(9192), 1, + [160124] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(3086), 1, sym_user_type, - STATE(5028), 1, + STATE(3361), 1, sym_function_type, - STATE(5029), 1, - sym__delegation_specifiers, - STATE(5033), 1, - sym_delegation_specifier, - STATE(9960), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(3208), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -613974,35 +614555,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159802] = 13, - ACTIONS(557), 1, + [160173] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(3041), 1, + STATE(3361), 1, sym_function_type, - STATE(9985), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2926), 2, + STATE(3287), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614010,35 +614591,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159851] = 13, - ACTIONS(7), 1, + [160222] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(5521), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(5539), 1, + STATE(3361), 1, sym_function_type, - STATE(9727), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4955), 2, + STATE(3259), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(5255), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614046,36 +614627,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159900] = 14, - ACTIONS(7), 1, + [160271] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4955), 1, - sym__delegation_specifiers, - STATE(5521), 1, + STATE(8340), 1, sym_user_type, - STATE(5539), 1, + STATE(8448), 1, sym_function_type, - STATE(5595), 1, + STATE(8453), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(8900), 1, + sym__delegation_specifiers, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614083,36 +614664,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [159951] = 14, - ACTIONS(7), 1, + [160322] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4947), 1, - sym__delegation_specifiers, - STATE(5521), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(5539), 1, + STATE(905), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(5595), 1, + STATE(954), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614120,35 +614701,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160002] = 13, - ACTIONS(557), 1, + [160373] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(3041), 1, + STATE(5566), 1, sym_function_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3031), 2, + STATE(4897), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614156,73 +614737,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160051] = 14, - ACTIONS(7), 1, + [160422] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(4931), 1, - sym__delegation_specifiers, - STATE(5521), 1, - sym_user_type, - STATE(5539), 1, - sym_function_type, - STATE(5595), 1, - sym_delegation_specifier, - STATE(9727), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5255), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1908), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [160102] = 14, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(6073), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(8340), 1, sym_user_type, - STATE(8545), 1, + STATE(8448), 1, sym_function_type, - STATE(8547), 1, + STATE(8453), 1, sym_delegation_specifier, - STATE(9403), 1, + STATE(8985), 1, sym__delegation_specifiers, - STATE(9776), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614230,36 +614774,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160153] = 14, - ACTIONS(345), 1, + [160473] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(906), 1, - sym__delegation_specifiers, - STATE(1409), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(1514), 1, + STATE(920), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(2094), 1, + STATE(954), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614267,36 +614811,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160204] = 14, - ACTIONS(115), 1, + [160524] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4692), 1, - sym__delegation_specifiers, - STATE(5292), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(5311), 1, + STATE(921), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(5478), 1, + STATE(954), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614304,36 +614848,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160255] = 14, - ACTIONS(7), 1, + [160575] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4900), 1, - sym__delegation_specifiers, - STATE(5521), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(5539), 1, + STATE(876), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(5595), 1, + STATE(954), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614341,36 +614885,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160306] = 14, - ACTIONS(115), 1, + [160626] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(4580), 1, - sym__delegation_specifiers, - STATE(5292), 1, + STATE(5515), 1, sym_user_type, - STATE(5311), 1, + STATE(5566), 1, sym_function_type, - STATE(5478), 1, - sym_delegation_specifier, - STATE(9641), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(5023), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614378,36 +614921,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160357] = 14, - ACTIONS(7), 1, + [160675] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4905), 1, - sym__delegation_specifiers, - STATE(5521), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(5539), 1, + STATE(1577), 1, sym_function_type, - STATE(5595), 1, - sym_delegation_specifier, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(957), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614415,36 +614957,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160408] = 14, - ACTIONS(7), 1, + [160724] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4919), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(869), 1, sym__delegation_specifiers, - STATE(5521), 1, + STATE(874), 1, sym_user_type, - STATE(5539), 1, + STATE(939), 1, sym_function_type, - STATE(5595), 1, + STATE(954), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614452,36 +614994,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160459] = 14, - ACTIONS(8656), 1, + [160775] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + STATE(817), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(868), 1, + sym__delegation_specifiers, + STATE(874), 1, sym_user_type, - STATE(8545), 1, + STATE(939), 1, sym_function_type, - STATE(8547), 1, + STATE(954), 1, sym_delegation_specifier, - STATE(9396), 1, - sym__delegation_specifiers, - STATE(9776), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614489,36 +615031,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160510] = 14, - ACTIONS(7), 1, + [160826] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4940), 1, - sym__delegation_specifiers, - STATE(5521), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(5539), 1, + STATE(1577), 1, sym_function_type, - STATE(5595), 1, - sym_delegation_specifier, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(923), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614526,36 +615067,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160561] = 14, - ACTIONS(7), 1, + [160875] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4958), 1, - sym__delegation_specifiers, - STATE(5521), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(5539), 1, + STATE(879), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(5595), 1, + STATE(954), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614563,36 +615104,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160612] = 14, - ACTIONS(7), 1, + [160926] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(817), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(819), 1, sym_simple_identifier, - STATE(4916), 1, - sym__delegation_specifiers, - STATE(4925), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(1577), 1, sym_function_type, - STATE(9727), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(879), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614600,36 +615140,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160663] = 14, - ACTIONS(7), 1, + [160975] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4975), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3287), 1, sym__delegation_specifiers, - STATE(5521), 1, + STATE(4081), 1, sym_user_type, - STATE(5539), 1, + STATE(4112), 1, sym_function_type, - STATE(5595), 1, + STATE(4205), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614637,36 +615177,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160714] = 14, - ACTIONS(7), 1, + [161026] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4918), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3259), 1, sym__delegation_specifiers, - STATE(5521), 1, + STATE(4081), 1, sym_user_type, - STATE(5539), 1, + STATE(4112), 1, sym_function_type, - STATE(5595), 1, + STATE(4205), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614674,35 +615214,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160765] = 13, - ACTIONS(557), 1, + [161077] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(5278), 1, sym_user_type, - STATE(3041), 1, + STATE(5412), 1, sym_function_type, - STATE(9985), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2925), 2, + STATE(4607), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3152), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614710,36 +615250,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160814] = 14, + [161126] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4901), 1, - sym__delegation_specifiers, - STATE(5521), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(5539), 1, + STATE(5566), 1, sym_function_type, - STATE(5595), 1, - sym_delegation_specifier, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(4895), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614747,35 +615286,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160865] = 13, - ACTIONS(255), 1, + [161175] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3097), 1, + STATE(8340), 1, sym_user_type, - STATE(3340), 1, + STATE(8429), 1, + sym__delegation_specifiers, + STATE(8448), 1, sym_function_type, - STATE(10030), 1, + STATE(8453), 1, + sym_delegation_specifier, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3096), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614783,36 +615323,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160914] = 14, - ACTIONS(7), 1, + [161226] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4916), 1, + STATE(3618), 1, sym__delegation_specifiers, - STATE(5521), 1, + STATE(4209), 1, sym_user_type, - STATE(5539), 1, - sym_function_type, - STATE(5595), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614820,35 +615360,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [160965] = 13, - ACTIONS(255), 1, + [161277] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(3340), 1, + STATE(4947), 1, + sym__delegation_specifiers, + STATE(5013), 1, + sym_delegation_specifier, + STATE(5026), 1, sym_function_type, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3083), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614856,35 +615397,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161014] = 13, - ACTIONS(255), 1, + [161328] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(4600), 1, + sym__delegation_specifiers, + STATE(5278), 1, sym_user_type, - STATE(3340), 1, + STATE(5412), 1, sym_function_type, - STATE(10030), 1, + STATE(5541), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3080), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614892,36 +615434,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161063] = 14, - ACTIONS(9204), 1, + [161379] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4668), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(4920), 1, sym_user_type, - STATE(8419), 1, + STATE(4951), 1, + sym__delegation_specifiers, + STATE(5013), 1, sym_delegation_specifier, - STATE(8422), 1, + STATE(5026), 1, sym_function_type, - STATE(8990), 1, - sym__delegation_specifiers, - STATE(9684), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614929,35 +615471,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161114] = 13, - ACTIONS(255), 1, + [161430] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(3340), 1, + STATE(923), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(10030), 1, + STATE(954), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3070), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -614965,35 +615508,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161163] = 13, - ACTIONS(345), 1, + [161481] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(1409), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(1514), 1, + STATE(5566), 1, sym_function_type, - STATE(9904), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(918), 2, + STATE(4911), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(1123), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615001,36 +615544,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161212] = 14, - ACTIONS(7), 1, + [161530] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(4646), 1, - sym_simple_identifier, - STATE(4901), 1, + STATE(3679), 1, sym__delegation_specifiers, - STATE(4925), 1, + STATE(4209), 1, sym_user_type, - STATE(4984), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(5027), 1, + STATE(4250), 1, sym_function_type, - STATE(9727), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615038,71 +615581,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161263] = 13, - ACTIONS(255), 1, + [161581] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3097), 1, - sym_user_type, - STATE(3340), 1, - sym_function_type, - STATE(10030), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3101), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1437), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [161312] = 13, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3097), 1, + STATE(3669), 1, + sym__delegation_specifiers, + STATE(4209), 1, sym_user_type, - STATE(3340), 1, + STATE(4237), 1, + sym_delegation_specifier, + STATE(4250), 1, sym_function_type, - STATE(10030), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3137), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615110,36 +615618,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161361] = 14, - ACTIONS(345), 1, + [161632] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(958), 1, - sym__delegation_specifiers, - STATE(1409), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(1514), 1, + STATE(2968), 1, + sym__delegation_specifiers, + STATE(3022), 1, sym_function_type, - STATE(2094), 1, + STATE(3053), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615147,36 +615655,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161412] = 14, + [161683] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4996), 1, - sym__delegation_specifiers, - STATE(5521), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(5539), 1, + STATE(5566), 1, sym_function_type, - STATE(5595), 1, - sym_delegation_specifier, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(5038), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615184,36 +615691,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161463] = 14, - ACTIONS(8656), 1, + [161732] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(3086), 1, sym_user_type, - STATE(8545), 1, + STATE(3259), 1, + sym__delegation_specifiers, + STATE(3361), 1, sym_function_type, - STATE(8547), 1, + STATE(3619), 1, sym_delegation_specifier, - STATE(9298), 1, - sym__delegation_specifiers, - STATE(9776), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615221,36 +615728,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161514] = 14, - ACTIONS(345), 1, + [161783] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(918), 1, - sym__delegation_specifiers, - STATE(1409), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(1514), 1, + STATE(939), 1, sym_function_type, - STATE(2094), 1, + STATE(954), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(957), 1, + sym__delegation_specifiers, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615258,35 +615765,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161565] = 13, - ACTIONS(255), 1, + [161834] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(3340), 1, + STATE(3287), 1, + sym__delegation_specifiers, + STATE(3361), 1, sym_function_type, - STATE(10030), 1, + STATE(3619), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3198), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615294,36 +615802,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161614] = 14, - ACTIONS(7), 1, + [161885] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(4930), 1, - sym__delegation_specifiers, - STATE(5521), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(5539), 1, + STATE(8519), 1, sym_function_type, - STATE(5595), 1, + STATE(8521), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(9226), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615331,35 +615839,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161665] = 13, - ACTIONS(255), 1, + [161936] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(3340), 1, + STATE(1577), 1, sym_function_type, - STATE(10030), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3213), 2, + STATE(868), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615367,35 +615875,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161714] = 13, - ACTIONS(255), 1, + [161985] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(3340), 1, + STATE(2960), 1, + sym__delegation_specifiers, + STATE(3022), 1, sym_function_type, - STATE(10030), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3329), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615403,35 +615912,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161763] = 13, - ACTIONS(255), 1, + [162036] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(3340), 1, + STATE(5566), 1, sym_function_type, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3262), 2, + STATE(4924), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615439,35 +615948,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161812] = 13, - ACTIONS(255), 1, + [162085] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(3340), 1, + STATE(5566), 1, sym_function_type, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3122), 2, + STATE(4928), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615475,35 +615984,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161861] = 13, - ACTIONS(255), 1, + [162134] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(3340), 1, + STATE(917), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(10030), 1, + STATE(954), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3115), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(3594), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615511,35 +616021,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161910] = 13, - ACTIONS(255), 1, + [162185] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(3340), 1, + STATE(1577), 1, sym_function_type, - STATE(10030), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3318), 2, + STATE(869), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615547,35 +616057,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [161959] = 13, - ACTIONS(255), 1, + [162234] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(3340), 1, + STATE(1577), 1, sym_function_type, - STATE(10030), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3061), 2, + STATE(876), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(3594), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615583,73 +616093,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162008] = 14, - ACTIONS(345), 1, + [162283] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(923), 1, - sym__delegation_specifiers, - STATE(1409), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(1514), 1, + STATE(1577), 1, sym_function_type, - STATE(2094), 1, - sym_delegation_specifier, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [162059] = 14, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(924), 1, + STATE(921), 2, sym__delegation_specifiers, - STATE(1409), 1, - sym_user_type, - STATE(1514), 1, - sym_function_type, - STATE(2094), 1, sym_delegation_specifier, - STATE(9904), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615657,36 +616129,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162110] = 14, - ACTIONS(345), 1, + [162332] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(900), 1, + STATE(3620), 1, sym__delegation_specifiers, - STATE(920), 1, + STATE(4209), 1, sym_user_type, - STATE(949), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(953), 1, + STATE(4250), 1, sym_function_type, - STATE(9904), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615694,36 +616166,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162161] = 14, - ACTIONS(345), 1, + [162383] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(880), 1, - sym__delegation_specifiers, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(949), 1, - sym_delegation_specifier, - STATE(953), 1, + STATE(1577), 1, sym_function_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(920), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615731,36 +616202,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162212] = 14, - ACTIONS(345), 1, + [162432] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(882), 1, - sym__delegation_specifiers, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(949), 1, - sym_delegation_specifier, - STATE(953), 1, + STATE(902), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(9904), 1, + STATE(954), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615768,36 +616239,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162263] = 14, - ACTIONS(345), 1, + [162483] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(883), 1, - sym__delegation_specifiers, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(949), 1, - sym_delegation_specifier, - STATE(953), 1, + STATE(1577), 1, sym_function_type, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(905), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615805,36 +616275,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162314] = 14, - ACTIONS(345), 1, + [162532] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(884), 1, - sym__delegation_specifiers, - STATE(920), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(949), 1, - sym_delegation_specifier, - STATE(953), 1, + STATE(901), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(9904), 1, + STATE(954), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615842,36 +616312,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162365] = 14, - ACTIONS(345), 1, + [162583] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(821), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(885), 1, - sym__delegation_specifiers, - STATE(920), 1, + STATE(5278), 1, sym_user_type, - STATE(949), 1, - sym_delegation_specifier, - STATE(953), 1, + STATE(5412), 1, sym_function_type, - STATE(9904), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(4592), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615879,36 +616348,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162416] = 14, - ACTIONS(345), 1, + [162632] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(821), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(894), 1, - sym__delegation_specifiers, - STATE(920), 1, + STATE(5278), 1, sym_user_type, - STATE(949), 1, - sym_delegation_specifier, - STATE(953), 1, + STATE(5412), 1, sym_function_type, - STATE(9904), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(4581), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615916,36 +616384,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162467] = 14, - ACTIONS(345), 1, + [162681] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(972), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4895), 1, sym__delegation_specifiers, - STATE(1409), 1, + STATE(4920), 1, sym_user_type, - STATE(1514), 1, - sym_function_type, - STATE(2094), 1, + STATE(5013), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(5026), 1, + sym_function_type, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615953,36 +616421,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162518] = 14, - ACTIONS(345), 1, + [162732] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(906), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4893), 1, sym__delegation_specifiers, - STATE(920), 1, + STATE(4920), 1, sym_user_type, - STATE(949), 1, + STATE(5013), 1, sym_delegation_specifier, - STATE(953), 1, + STATE(5026), 1, sym_function_type, - STATE(9904), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -615990,36 +616458,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162569] = 14, - ACTIONS(345), 1, + [162783] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(920), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(949), 1, + STATE(4933), 1, + sym__delegation_specifiers, + STATE(5013), 1, sym_delegation_specifier, - STATE(953), 1, + STATE(5026), 1, sym_function_type, - STATE(958), 1, - sym__delegation_specifiers, - STATE(9904), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616027,36 +616495,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162620] = 14, - ACTIONS(345), 1, + [162834] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(817), 1, sym__simple_user_type, - STATE(821), 1, + STATE(819), 1, sym_simple_identifier, - STATE(862), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(920), 1, sym__delegation_specifiers, - STATE(1409), 1, + STATE(1392), 1, sym_user_type, - STATE(1514), 1, + STATE(1577), 1, sym_function_type, - STATE(2094), 1, + STATE(1768), 1, sym_delegation_specifier, - STATE(9904), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616064,73 +616532,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162671] = 14, - ACTIONS(345), 1, + [162885] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(918), 1, - sym__delegation_specifiers, - STATE(920), 1, + STATE(4925), 1, sym_user_type, - STATE(949), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(953), 1, + STATE(5007), 1, sym_function_type, - STATE(9904), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(1123), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [162722] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4589), 1, + STATE(5058), 1, sym__delegation_specifiers, - STATE(5292), 1, - sym_user_type, - STATE(5311), 1, - sym_function_type, - STATE(5478), 1, - sym_delegation_specifier, - STATE(9641), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616138,36 +616569,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162773] = 14, - ACTIONS(557), 1, + [162936] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(2883), 1, - sym__delegation_specifiers, - STATE(2886), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, + sym__simple_user_type, + STATE(4925), 1, sym_user_type, - STATE(2978), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(3041), 1, + STATE(5007), 1, sym_function_type, - STATE(9985), 1, + STATE(5035), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616175,36 +616606,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162824] = 14, - ACTIONS(345), 1, + [162987] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(920), 1, + STATE(4925), 1, sym_user_type, - STATE(924), 1, - sym__delegation_specifiers, - STATE(949), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(953), 1, + STATE(5007), 1, sym_function_type, - STATE(9904), 1, + STATE(5040), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616212,36 +616643,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162875] = 14, - ACTIONS(345), 1, + [163038] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(920), 1, + STATE(4925), 1, sym_user_type, - STATE(949), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(953), 1, + STATE(5007), 1, sym_function_type, - STATE(972), 1, + STATE(5041), 1, sym__delegation_specifiers, - STATE(9904), 1, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616249,36 +616680,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162926] = 14, - ACTIONS(557), 1, + [163089] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(2902), 1, - sym__delegation_specifiers, - STATE(2978), 1, - sym_delegation_specifier, - STATE(3041), 1, + STATE(8519), 1, sym_function_type, - STATE(9985), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(9334), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616286,36 +616717,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [162977] = 14, - ACTIONS(8656), 1, + [163140] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(4610), 1, + sym__delegation_specifiers, + STATE(5278), 1, sym_user_type, - STATE(8545), 1, + STATE(5412), 1, sym_function_type, - STATE(8547), 1, + STATE(5541), 1, sym_delegation_specifier, - STATE(9328), 1, - sym__delegation_specifiers, - STATE(9776), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616323,36 +616754,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163028] = 14, - ACTIONS(557), 1, + [163191] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(2907), 1, + STATE(936), 1, sym__delegation_specifiers, - STATE(2978), 1, - sym_delegation_specifier, - STATE(3041), 1, + STATE(939), 1, sym_function_type, - STATE(9985), 1, + STATE(954), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616360,36 +616791,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163079] = 14, - ACTIONS(8656), 1, + [163242] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(5515), 1, sym_user_type, - STATE(8545), 1, + STATE(5566), 1, sym_function_type, - STATE(8547), 1, - sym_delegation_specifier, - STATE(9078), 1, - sym__delegation_specifiers, - STATE(9776), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(4941), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616397,36 +616827,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163130] = 14, - ACTIONS(557), 1, + [163291] = 14, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(2884), 1, - sym__delegation_specifiers, - STATE(2886), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(874), 1, sym_user_type, - STATE(2978), 1, - sym_delegation_specifier, - STATE(3041), 1, + STATE(887), 1, + sym__delegation_specifiers, + STATE(939), 1, sym_function_type, - STATE(9985), 1, + STATE(954), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616434,36 +616864,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163181] = 14, - ACTIONS(345), 1, + [163342] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(820), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(821), 1, - sym_simple_identifier, - STATE(862), 1, - sym__delegation_specifiers, - STATE(920), 1, + STATE(4925), 1, sym_user_type, - STATE(949), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(953), 1, + STATE(5007), 1, sym_function_type, - STATE(9904), 1, + STATE(5059), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616471,36 +616901,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163232] = 14, - ACTIONS(255), 1, + [163393] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3097), 1, - sym_user_type, - STATE(3137), 1, + STATE(3660), 1, sym__delegation_specifiers, - STATE(3340), 1, - sym_function_type, - STATE(3687), 1, + STATE(4209), 1, + sym_user_type, + STATE(4237), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616508,36 +616938,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163283] = 14, - ACTIONS(9204), 1, + [163444] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4668), 1, sym__simple_user_type, - STATE(8334), 1, - sym_user_type, - STATE(8399), 1, + STATE(5023), 1, sym__delegation_specifiers, - STATE(8419), 1, + STATE(5515), 1, + sym_user_type, + STATE(5556), 1, sym_delegation_specifier, - STATE(8422), 1, + STATE(5566), 1, sym_function_type, - STATE(9684), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616545,36 +616975,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163334] = 14, - ACTIONS(9204), 1, + [163495] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(3697), 1, + sym__delegation_specifiers, + STATE(4209), 1, sym_user_type, - STATE(8419), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(8422), 1, + STATE(4250), 1, sym_function_type, - STATE(8656), 1, - sym__delegation_specifiers, - STATE(9684), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616582,36 +617012,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163385] = 14, - ACTIONS(9204), 1, + [163546] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4668), 1, sym__simple_user_type, - STATE(8334), 1, - sym_user_type, - STATE(8407), 1, + STATE(4893), 1, sym__delegation_specifiers, - STATE(8419), 1, + STATE(5515), 1, + sym_user_type, + STATE(5556), 1, sym_delegation_specifier, - STATE(8422), 1, + STATE(5566), 1, sym_function_type, - STATE(9684), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616619,36 +617049,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163436] = 14, - ACTIONS(9204), 1, + [163597] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4668), 1, sym__simple_user_type, - STATE(8334), 1, - sym_user_type, - STATE(8405), 1, + STATE(4895), 1, sym__delegation_specifiers, - STATE(8419), 1, + STATE(5515), 1, + sym_user_type, + STATE(5556), 1, sym_delegation_specifier, - STATE(8422), 1, + STATE(5566), 1, sym_function_type, - STATE(9684), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616656,36 +617086,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163487] = 14, - ACTIONS(557), 1, + [163648] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(2896), 1, + STATE(3208), 1, sym__delegation_specifiers, - STATE(2978), 1, - sym_delegation_specifier, - STATE(3041), 1, + STATE(3361), 1, sym_function_type, - STATE(9985), 1, + STATE(3619), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616693,36 +617123,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163538] = 14, - ACTIONS(255), 1, + [163699] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3329), 1, - sym__delegation_specifiers, - STATE(4057), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(4140), 1, + STATE(5566), 1, sym_function_type, - STATE(4201), 1, - sym_delegation_specifier, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(4942), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616730,36 +617159,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163589] = 14, - ACTIONS(557), 1, + [163748] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2902), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2905), 1, sym__delegation_specifiers, - STATE(3813), 1, + STATE(3782), 1, sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(4015), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(9985), 1, + STATE(3999), 1, + sym_function_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616767,36 +617196,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163640] = 14, - ACTIONS(115), 1, + [163799] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4543), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4664), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2911), 1, sym__delegation_specifiers, - STATE(5292), 1, + STATE(3782), 1, sym_user_type, - STATE(5311), 1, - sym_function_type, - STATE(5478), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(3999), 1, + sym_function_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616804,36 +617233,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163691] = 14, - ACTIONS(557), 1, + [163850] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2884), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2913), 1, sym__delegation_specifiers, - STATE(3813), 1, + STATE(3782), 1, sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(4015), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(9985), 1, + STATE(3999), 1, + sym_function_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616841,36 +617270,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163742] = 14, - ACTIONS(557), 1, + [163901] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2883), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2921), 1, sym__delegation_specifiers, - STATE(3813), 1, + STATE(3782), 1, sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(4015), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(9985), 1, + STATE(3999), 1, + sym_function_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616878,36 +617307,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163793] = 14, - ACTIONS(557), 1, + [163952] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(2905), 1, - sym__delegation_specifiers, - STATE(2978), 1, - sym_delegation_specifier, - STATE(3041), 1, + STATE(8519), 1, sym_function_type, - STATE(9985), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(9420), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616915,36 +617344,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163844] = 14, - ACTIONS(557), 1, + [164003] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2896), 1, - sym__delegation_specifiers, - STATE(3813), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(3846), 1, + STATE(5566), 1, sym_function_type, - STATE(4015), 1, - sym_delegation_specifier, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(4955), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616952,36 +617380,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163895] = 14, - ACTIONS(255), 1, + [164052] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3213), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2930), 1, sym__delegation_specifiers, - STATE(4057), 1, + STATE(3782), 1, sym_user_type, - STATE(4140), 1, - sym_function_type, - STATE(4201), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(3999), 1, + sym_function_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -616989,36 +617417,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163946] = 14, - ACTIONS(557), 1, + [164103] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2905), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2931), 1, sym__delegation_specifiers, - STATE(3813), 1, + STATE(3782), 1, sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(4015), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(9985), 1, + STATE(3999), 1, + sym_function_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617026,36 +617454,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [163997] = 14, - ACTIONS(557), 1, + [164154] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(2907), 1, - sym__delegation_specifiers, - STATE(3813), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, + sym__simple_user_type, + STATE(4925), 1, sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(4015), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(9985), 1, + STATE(5007), 1, + sym_function_type, + STATE(5056), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617063,36 +617491,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164048] = 14, - ACTIONS(557), 1, + [164205] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2960), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2939), 1, sym__delegation_specifiers, - STATE(3813), 1, + STATE(3782), 1, sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(4015), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(9985), 1, + STATE(3999), 1, + sym_function_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617100,35 +617528,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164099] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [164256] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4589), 2, + STATE(4600), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617136,36 +617564,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164148] = 14, - ACTIONS(557), 1, + [164305] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(2958), 1, - sym__delegation_specifiers, - STATE(3813), 1, + STATE(4599), 1, sym_user_type, - STATE(3846), 1, + STATE(4630), 1, sym_function_type, - STATE(4015), 1, - sym_delegation_specifier, - STATE(9985), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(4664), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617173,35 +617600,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164199] = 13, - ACTIONS(115), 1, + [164354] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, sym__simple_user_type, - STATE(4603), 1, + STATE(4925), 1, sym_user_type, - STATE(4622), 1, + STATE(5004), 1, + sym_delegation_specifier, + STATE(5007), 1, sym_function_type, - STATE(9641), 1, + STATE(5055), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4664), 2, - sym__delegation_specifiers, - sym_delegation_specifier, - STATE(4694), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617209,36 +617637,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164248] = 14, - ACTIONS(557), 1, + [164405] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(3012), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2941), 1, sym__delegation_specifiers, - STATE(3813), 1, + STATE(3782), 1, sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(4015), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(9985), 1, + STATE(3999), 1, + sym_function_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617246,36 +617674,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164299] = 14, - ACTIONS(9204), 1, + [164456] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(4616), 1, + sym_simple_identifier, + STATE(4668), 1, sym__simple_user_type, - STATE(8334), 1, - sym_user_type, - STATE(8410), 1, + STATE(4911), 1, sym__delegation_specifiers, - STATE(8419), 1, + STATE(5515), 1, + sym_user_type, + STATE(5556), 1, sym_delegation_specifier, - STATE(8422), 1, + STATE(5566), 1, sym_function_type, - STATE(9684), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617283,36 +617711,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164350] = 14, - ACTIONS(557), 1, + [164507] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(819), 1, sym_simple_identifier, - STATE(2953), 1, - sym__delegation_specifiers, - STATE(3813), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1392), 1, sym_user_type, - STATE(3846), 1, + STATE(1577), 1, sym_function_type, - STATE(4015), 1, - sym_delegation_specifier, - STATE(9985), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(917), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617320,35 +617747,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164401] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [164556] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4581), 2, + STATE(4606), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617356,35 +617783,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164450] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [164605] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4607), 2, + STATE(4605), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617392,36 +617819,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164499] = 14, - ACTIONS(431), 1, + [164654] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3682), 1, - sym__delegation_specifiers, - STATE(4197), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(5278), 1, sym_user_type, - STATE(4228), 1, - sym_delegation_specifier, - STATE(4252), 1, + STATE(5412), 1, sym_function_type, - STATE(10086), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4589), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617429,36 +617855,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164550] = 14, - ACTIONS(431), 1, + [164703] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3670), 1, - sym__delegation_specifiers, - STATE(4197), 1, + STATE(2917), 1, sym_user_type, - STATE(4228), 1, - sym_delegation_specifier, - STATE(4252), 1, + STATE(2932), 1, + sym__delegation_specifiers, + STATE(3022), 1, sym_function_type, - STATE(10086), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617466,36 +617892,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164601] = 14, + [164754] = 14, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, - sym_user_type, - STATE(4940), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5038), 1, sym__delegation_specifiers, - STATE(4984), 1, + STATE(5515), 1, + sym_user_type, + STATE(5556), 1, sym_delegation_specifier, - STATE(5027), 1, + STATE(5566), 1, sym_function_type, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617503,36 +617929,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164652] = 14, - ACTIONS(557), 1, + [164805] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(2937), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(3684), 1, sym__delegation_specifiers, - STATE(3813), 1, + STATE(4209), 1, sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(4015), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(9985), 1, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617540,36 +617966,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164703] = 14, - ACTIONS(431), 1, + [164856] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(4609), 1, + sym__lexical_identifier, + STATE(4616), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3667), 1, + STATE(4924), 1, sym__delegation_specifiers, - STATE(4197), 1, + STATE(5515), 1, sym_user_type, - STATE(4228), 1, + STATE(5556), 1, sym_delegation_specifier, - STATE(4252), 1, + STATE(5566), 1, sym_function_type, - STATE(10086), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617577,36 +618003,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164754] = 14, - ACTIONS(557), 1, + [164907] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2886), 1, - sym_user_type, - STATE(2960), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3002), 1, sym__delegation_specifiers, - STATE(2978), 1, + STATE(3782), 1, + sym_user_type, + STATE(3917), 1, sym_delegation_specifier, - STATE(3041), 1, + STATE(3999), 1, sym_function_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617614,35 +618040,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164805] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [164958] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4580), 2, + STATE(4595), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617650,35 +618076,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164854] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [165007] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4692), 2, + STATE(4681), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617686,36 +618112,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164903] = 14, - ACTIONS(431), 1, + [165056] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, sym__lexical_identifier, - STATE(3665), 1, + STATE(2949), 1, sym__delegation_specifiers, - STATE(4197), 1, + STATE(3782), 1, sym_user_type, - STATE(4228), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(4252), 1, + STATE(3999), 1, sym_function_type, - STATE(10086), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617723,35 +618149,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [164954] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [165107] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4577), 2, + STATE(4592), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617759,35 +618185,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165003] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [165156] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4585), 2, + STATE(4610), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617795,36 +618221,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165052] = 14, - ACTIONS(431), 1, + [165205] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3661), 1, - sym__delegation_specifiers, - STATE(4197), 1, + STATE(8387), 1, sym_user_type, - STATE(4228), 1, - sym_delegation_specifier, - STATE(4252), 1, + STATE(8519), 1, sym_function_type, - STATE(10086), 1, + STATE(8521), 1, + sym_delegation_specifier, + STATE(9353), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617832,36 +618258,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165103] = 14, - ACTIONS(557), 1, + [165256] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2886), 1, - sym_user_type, - STATE(2958), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4928), 1, sym__delegation_specifiers, - STATE(2978), 1, + STATE(5515), 1, + sym_user_type, + STATE(5556), 1, sym_delegation_specifier, - STATE(3041), 1, + STATE(5566), 1, sym_function_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617869,36 +618295,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165154] = 14, - ACTIONS(9192), 1, + [165307] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(4941), 1, + sym__delegation_specifiers, + STATE(5515), 1, sym_user_type, - STATE(5028), 1, - sym_function_type, - STATE(5033), 1, + STATE(5556), 1, sym_delegation_specifier, - STATE(5038), 1, - sym__delegation_specifiers, - STATE(9960), 1, + STATE(5566), 1, + sym_function_type, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617906,35 +618332,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165205] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [165358] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4586), 2, + STATE(4590), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617942,35 +618368,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165254] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [165407] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4590), 2, + STATE(4582), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -617978,36 +618404,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165303] = 14, - ACTIONS(431), 1, + [165456] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(4609), 1, + sym__lexical_identifier, + STATE(4616), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3660), 1, + STATE(4942), 1, sym__delegation_specifiers, - STATE(4197), 1, + STATE(5515), 1, sym_user_type, - STATE(4228), 1, + STATE(5556), 1, sym_delegation_specifier, - STATE(4252), 1, + STATE(5566), 1, sym_function_type, - STATE(10086), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618015,35 +618441,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165354] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [165507] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4600), 2, + STATE(4585), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618051,36 +618477,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165403] = 14, - ACTIONS(557), 1, + [165556] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2926), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4955), 1, sym__delegation_specifiers, - STATE(3813), 1, + STATE(5515), 1, sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(4015), 1, + STATE(5556), 1, sym_delegation_specifier, - STATE(9985), 1, + STATE(5566), 1, + sym_function_type, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618088,36 +618514,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165454] = 14, - ACTIONS(7), 1, + [165607] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4618), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(4958), 1, + STATE(3003), 1, sym__delegation_specifiers, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(3022), 1, sym_function_type, - STATE(9727), 1, + STATE(3053), 1, + sym_delegation_specifier, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618125,35 +618551,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165505] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [165658] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4606), 2, + STATE(4589), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618161,35 +618587,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165554] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [165707] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4608), 2, + STATE(4581), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618197,36 +618623,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165603] = 14, - ACTIONS(115), 1, + [165756] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(4581), 1, + STATE(4947), 1, sym__delegation_specifiers, - STATE(5292), 1, + STATE(5515), 1, sym_user_type, - STATE(5311), 1, - sym_function_type, - STATE(5478), 1, + STATE(5556), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(5566), 1, + sym_function_type, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618234,36 +618660,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165654] = 14, - ACTIONS(9192), 1, + [165807] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(4951), 1, + sym__delegation_specifiers, + STATE(5515), 1, sym_user_type, - STATE(5028), 1, - sym_function_type, - STATE(5033), 1, + STATE(5556), 1, sym_delegation_specifier, - STATE(5052), 1, - sym__delegation_specifiers, - STATE(9960), 1, + STATE(5566), 1, + sym_function_type, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618271,36 +618697,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165705] = 14, - ACTIONS(557), 1, + [165858] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4933), 1, + sym__delegation_specifiers, + STATE(5515), 1, sym_user_type, - STATE(2978), 1, + STATE(5556), 1, sym_delegation_specifier, - STATE(3012), 1, - sym__delegation_specifiers, - STATE(3041), 1, + STATE(5566), 1, sym_function_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618308,35 +618734,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165756] = 13, - ACTIONS(115), 1, - sym__alpha_identifier, + [165909] = 13, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4588), 2, + STATE(4607), 2, sym__delegation_specifiers, sym_delegation_specifier, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618344,36 +618770,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165805] = 14, - ACTIONS(9192), 1, + [165958] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(3788), 1, + sym__delegation_specifiers, + STATE(4209), 1, sym_user_type, - STATE(5028), 1, - sym_function_type, - STATE(5033), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(5057), 1, - sym__delegation_specifiers, - STATE(9960), 1, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618381,36 +618807,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165856] = 14, - ACTIONS(9192), 1, + [166009] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4576), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(3086), 1, sym_user_type, - STATE(5028), 1, + STATE(3205), 1, + sym__delegation_specifiers, + STATE(3361), 1, sym_function_type, - STATE(5033), 1, + STATE(3619), 1, sym_delegation_specifier, - STATE(5054), 1, - sym__delegation_specifiers, - STATE(9960), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618418,73 +618844,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [165907] = 14, - ACTIONS(431), 1, + [166060] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3659), 1, - sym__delegation_specifiers, - STATE(4197), 1, - sym_user_type, - STATE(4228), 1, - sym_delegation_specifier, - STATE(4252), 1, - sym_function_type, - STATE(10086), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4029), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [165958] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, STATE(4537), 1, - sym__lexical_identifier, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, STATE(4607), 1, sym__delegation_specifiers, - STATE(5292), 1, + STATE(5278), 1, sym_user_type, - STATE(5311), 1, + STATE(5412), 1, sym_function_type, - STATE(5478), 1, + STATE(5541), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618492,36 +618881,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166009] = 14, - ACTIONS(557), 1, + [166111] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(3031), 1, - sym__delegation_specifiers, - STATE(3813), 1, + STATE(5278), 1, sym_user_type, - STATE(3846), 1, + STATE(5412), 1, sym_function_type, - STATE(4015), 1, - sym_delegation_specifier, - STATE(9985), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(4590), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618529,36 +618917,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166060] = 14, - ACTIONS(431), 1, + [166160] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4535), 1, sym__lexical_identifier, - STATE(3656), 1, - sym__delegation_specifiers, - STATE(4197), 1, + STATE(4574), 1, + sym__simple_user_type, + STATE(4925), 1, sym_user_type, - STATE(4228), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(4252), 1, + STATE(5007), 1, sym_function_type, - STATE(10086), 1, + STATE(5052), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618566,36 +618954,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166111] = 14, - ACTIONS(431), 1, + [166211] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3791), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4595), 1, sym__delegation_specifiers, - STATE(4197), 1, + STATE(5278), 1, sym_user_type, - STATE(4228), 1, - sym_delegation_specifier, - STATE(4252), 1, + STATE(5412), 1, sym_function_type, - STATE(10086), 1, + STATE(5541), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618603,36 +618991,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166162] = 14, - ACTIONS(431), 1, + [166262] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3651), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4681), 1, sym__delegation_specifiers, - STATE(4197), 1, + STATE(5278), 1, sym_user_type, - STATE(4228), 1, - sym_delegation_specifier, - STATE(4252), 1, + STATE(5412), 1, sym_function_type, - STATE(10086), 1, + STATE(5541), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618640,36 +619028,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166213] = 14, - ACTIONS(557), 1, + [166313] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2886), 1, - sym_user_type, - STATE(2953), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2968), 1, sym__delegation_specifiers, - STATE(2978), 1, + STATE(3782), 1, + sym_user_type, + STATE(3917), 1, sym_delegation_specifier, - STATE(3041), 1, + STATE(3999), 1, sym_function_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618677,36 +619065,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166264] = 14, - ACTIONS(9192), 1, + [166364] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2960), 1, + sym__delegation_specifiers, + STATE(3782), 1, sym_user_type, - STATE(5028), 1, - sym_function_type, - STATE(5033), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(5039), 1, - sym__delegation_specifiers, - STATE(9960), 1, + STATE(3999), 1, + sym_function_type, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618714,36 +619102,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166315] = 14, - ACTIONS(557), 1, + [166415] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(2937), 1, - sym__delegation_specifiers, - STATE(2978), 1, - sym_delegation_specifier, - STATE(3041), 1, + STATE(5566), 1, sym_function_type, - STATE(9985), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(4947), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618751,36 +619138,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166366] = 14, - ACTIONS(557), 1, + [166464] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, + sym__simple_user_type, + STATE(4925), 1, sym_user_type, - STATE(2926), 1, - sym__delegation_specifiers, - STATE(2978), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(3041), 1, + STATE(5007), 1, sym_function_type, - STATE(9985), 1, + STATE(5301), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618788,36 +619175,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166417] = 14, - ACTIONS(557), 1, + [166515] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, - STATE(2925), 1, - sym__delegation_specifiers, - STATE(3813), 1, + STATE(5278), 1, sym_user_type, - STATE(3846), 1, + STATE(5412), 1, sym_function_type, - STATE(4015), 1, - sym_delegation_specifier, - STATE(9985), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(4582), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618825,36 +619211,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166468] = 14, - ACTIONS(557), 1, + [166564] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2886), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3003), 1, + sym__delegation_specifiers, + STATE(3782), 1, sym_user_type, - STATE(2978), 1, + STATE(3917), 1, sym_delegation_specifier, - STATE(3031), 1, - sym__delegation_specifiers, - STATE(3041), 1, + STATE(3999), 1, sym_function_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618862,36 +619248,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166519] = 14, - ACTIONS(557), 1, + [166615] = 14, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2766), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(2886), 1, - sym_user_type, - STATE(2925), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2932), 1, sym__delegation_specifiers, - STATE(2978), 1, + STATE(3782), 1, + sym_user_type, + STATE(3917), 1, sym_delegation_specifier, - STATE(3041), 1, + STATE(3999), 1, sym_function_type, - STATE(9985), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618899,36 +619285,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166570] = 14, - ACTIONS(255), 1, + [166666] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3096), 1, - sym__delegation_specifiers, - STATE(3097), 1, + STATE(4925), 1, sym_user_type, - STATE(3340), 1, - sym_function_type, - STATE(3687), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(5007), 1, + sym_function_type, + STATE(5049), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618936,36 +619322,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166621] = 14, - ACTIONS(255), 1, + [166717] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(7972), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3083), 1, - sym__delegation_specifiers, - STATE(3097), 1, + STATE(8340), 1, sym_user_type, - STATE(3340), 1, + STATE(8448), 1, sym_function_type, - STATE(3687), 1, + STATE(8453), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(8780), 1, + sym__delegation_specifiers, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -618973,36 +619359,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166672] = 14, - ACTIONS(115), 1, + [166768] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, sym__simple_user_type, - STATE(4589), 1, + STATE(3610), 1, sym__delegation_specifiers, - STATE(4603), 1, + STATE(4209), 1, sym_user_type, - STATE(4622), 1, - sym_function_type, - STATE(4913), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619010,36 +619396,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166723] = 14, - ACTIONS(255), 1, + [166819] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3080), 1, - sym__delegation_specifiers, - STATE(3097), 1, + STATE(4599), 1, sym_user_type, - STATE(3340), 1, + STATE(4600), 1, + sym__delegation_specifiers, + STATE(4630), 1, sym_function_type, - STATE(3687), 1, + STATE(4950), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619047,36 +619433,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166774] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [166870] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, STATE(4664), 1, sym__delegation_specifiers, - STATE(4913), 1, + STATE(4950), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619084,36 +619470,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166825] = 14, - ACTIONS(255), 1, + [166921] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3070), 1, + STATE(4581), 1, sym__delegation_specifiers, - STATE(3097), 1, + STATE(5278), 1, sym_user_type, - STATE(3340), 1, + STATE(5412), 1, sym_function_type, - STATE(3687), 1, + STATE(5541), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619121,36 +619507,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166876] = 14, - ACTIONS(255), 1, + [166972] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3096), 1, + STATE(3606), 1, sym__delegation_specifiers, - STATE(4057), 1, + STATE(4209), 1, sym_user_type, - STATE(4140), 1, - sym_function_type, - STATE(4201), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619158,36 +619544,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166927] = 14, - ACTIONS(255), 1, + [167023] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3083), 1, - sym__delegation_specifiers, - STATE(4057), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(4140), 1, + STATE(5566), 1, sym_function_type, - STATE(4201), 1, - sym_delegation_specifier, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(4951), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619195,36 +619580,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [166978] = 14, - ACTIONS(7), 1, + [167072] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(4925), 1, - sym_user_type, - STATE(4975), 1, + STATE(4589), 1, sym__delegation_specifiers, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(5278), 1, + sym_user_type, + STATE(5412), 1, sym_function_type, - STATE(9727), 1, + STATE(5541), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619232,36 +619617,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167029] = 14, - ACTIONS(255), 1, + [167123] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3080), 1, + STATE(3673), 1, sym__delegation_specifiers, - STATE(4057), 1, + STATE(4209), 1, sym_user_type, - STATE(4140), 1, - sym_function_type, - STATE(4201), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619269,36 +619654,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167080] = 14, - ACTIONS(115), 1, + [167174] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(4581), 1, - sym__delegation_specifiers, - STATE(4603), 1, + STATE(5515), 1, sym_user_type, - STATE(4622), 1, + STATE(5566), 1, sym_function_type, - STATE(4913), 1, - sym_delegation_specifier, - STATE(9641), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4893), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619306,36 +619690,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167131] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [167223] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4607), 1, + STATE(4606), 1, sym__delegation_specifiers, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(4913), 1, + STATE(4950), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619343,36 +619727,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167182] = 14, - ACTIONS(255), 1, + [167274] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3070), 1, - sym__delegation_specifiers, - STATE(4057), 1, + STATE(4599), 1, sym_user_type, - STATE(4140), 1, + STATE(4605), 1, + sym__delegation_specifiers, + STATE(4630), 1, sym_function_type, - STATE(4201), 1, + STATE(4950), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619380,36 +619764,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167233] = 14, - ACTIONS(255), 1, + [167325] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4574), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3101), 1, - sym__delegation_specifiers, - STATE(4057), 1, + STATE(4925), 1, sym_user_type, - STATE(4140), 1, - sym_function_type, - STATE(4201), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(5007), 1, + sym_function_type, + STATE(5043), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619417,36 +619801,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167284] = 14, - ACTIONS(431), 1, + [167376] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3619), 1, - sym__delegation_specifiers, - STATE(3653), 1, + STATE(3086), 1, sym_user_type, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3804), 1, + STATE(3100), 1, + sym__delegation_specifiers, + STATE(3361), 1, sym_function_type, - STATE(10086), 1, + STATE(3619), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619454,36 +619838,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167335] = 14, - ACTIONS(431), 1, + [167427] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3653), 1, + STATE(3086), 1, sym_user_type, - STATE(3735), 1, + STATE(3175), 1, sym__delegation_specifiers, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3804), 1, + STATE(3361), 1, sym_function_type, - STATE(10086), 1, + STATE(3619), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619491,36 +619875,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167386] = 14, - ACTIONS(431), 1, + [167478] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4535), 1, sym__lexical_identifier, - STATE(3632), 1, - sym__delegation_specifiers, - STATE(3653), 1, + STATE(4574), 1, + sym__simple_user_type, + STATE(4925), 1, sym_user_type, - STATE(3752), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(3804), 1, + STATE(5007), 1, sym_function_type, - STATE(10086), 1, + STATE(5042), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619528,36 +619912,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167437] = 14, + [167529] = 14, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4580), 1, - sym__delegation_specifiers, - STATE(4603), 1, + STATE(3086), 1, sym_user_type, - STATE(4622), 1, + STATE(3325), 1, + sym__delegation_specifiers, + STATE(3361), 1, sym_function_type, - STATE(4913), 1, + STATE(3619), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619565,36 +619949,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167488] = 14, + [167580] = 14, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4603), 1, + STATE(3086), 1, sym_user_type, - STATE(4622), 1, - sym_function_type, - STATE(4692), 1, + STATE(3091), 1, sym__delegation_specifiers, - STATE(4913), 1, + STATE(3361), 1, + sym_function_type, + STATE(3619), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619602,36 +619986,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167539] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [167631] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4577), 1, + STATE(4595), 1, sym__delegation_specifiers, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(4913), 1, + STATE(4950), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619639,36 +620023,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167590] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [167682] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4585), 1, - sym__delegation_specifiers, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(4913), 1, + STATE(4681), 1, + sym__delegation_specifiers, + STATE(4950), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619676,36 +620060,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167641] = 14, - ACTIONS(431), 1, + [167733] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(4609), 1, + sym__lexical_identifier, + STATE(4616), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(4668), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3633), 1, - sym__delegation_specifiers, - STATE(3653), 1, + STATE(4920), 1, sym_user_type, - STATE(3752), 1, + STATE(5013), 1, sym_delegation_specifier, - STATE(3804), 1, + STATE(5023), 1, + sym__delegation_specifiers, + STATE(5026), 1, sym_function_type, - STATE(10086), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619713,36 +620097,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167692] = 14, + [167784] = 14, ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(4586), 1, - sym__delegation_specifiers, - STATE(4603), 1, + STATE(3086), 1, sym_user_type, - STATE(4622), 1, + STATE(3089), 1, + sym__delegation_specifiers, + STATE(3361), 1, sym_function_type, - STATE(4913), 1, + STATE(3619), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619750,36 +620134,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167743] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [167835] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4590), 1, + STATE(4592), 1, sym__delegation_specifiers, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(4913), 1, + STATE(4950), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619787,36 +620171,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167794] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [167886] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4600), 1, - sym__delegation_specifiers, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4610), 1, + sym__delegation_specifiers, + STATE(4630), 1, sym_function_type, - STATE(4913), 1, + STATE(4950), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619824,36 +620208,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167845] = 14, - ACTIONS(255), 1, + [167937] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3137), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3084), 1, sym__delegation_specifiers, - STATE(4057), 1, + STATE(3086), 1, sym_user_type, - STATE(4140), 1, + STATE(3361), 1, sym_function_type, - STATE(4201), 1, + STATE(3619), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619861,36 +620245,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167896] = 14, - ACTIONS(115), 1, + [167988] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(4543), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, sym__simple_user_type, - STATE(4603), 1, + STATE(4925), 1, sym_user_type, - STATE(4606), 1, - sym__delegation_specifiers, - STATE(4622), 1, - sym_function_type, - STATE(4913), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(5007), 1, + sym_function_type, + STATE(5292), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619898,36 +620282,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167947] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [168039] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, - sym_user_type, - STATE(4608), 1, + STATE(4592), 1, sym__delegation_specifiers, - STATE(4622), 1, + STATE(5278), 1, + sym_user_type, + STATE(5412), 1, sym_function_type, - STATE(4913), 1, + STATE(5541), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619935,36 +620319,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [167998] = 14, - ACTIONS(431), 1, + [168090] = 14, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4535), 1, sym__lexical_identifier, - STATE(3651), 1, - sym__delegation_specifiers, - STATE(3653), 1, + STATE(4574), 1, + sym__simple_user_type, + STATE(4925), 1, sym_user_type, - STATE(3752), 1, + STATE(5004), 1, sym_delegation_specifier, - STATE(3804), 1, + STATE(5007), 1, sym_function_type, - STATE(10086), 1, + STATE(5010), 1, + sym__delegation_specifiers, + STATE(10127), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(5116), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -619972,36 +620356,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168049] = 14, - ACTIONS(115), 1, - sym__alpha_identifier, + [168141] = 14, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, STATE(4542), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4588), 1, + STATE(4590), 1, sym__delegation_specifiers, - STATE(4603), 1, + STATE(4599), 1, sym_user_type, - STATE(4622), 1, + STATE(4630), 1, sym_function_type, - STATE(4913), 1, + STATE(4950), 1, sym_delegation_specifier, - STATE(9641), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1842), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620009,36 +620393,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168100] = 14, - ACTIONS(431), 1, + [168192] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3653), 1, - sym_user_type, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3791), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4582), 1, sym__delegation_specifiers, - STATE(3804), 1, + STATE(4599), 1, + sym_user_type, + STATE(4630), 1, sym_function_type, - STATE(10086), 1, + STATE(4950), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620046,73 +620430,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168151] = 14, - ACTIONS(8656), 1, + [168243] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(8237), 1, + STATE(8109), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(8387), 1, sym_user_type, - STATE(8545), 1, + STATE(8519), 1, sym_function_type, - STATE(8547), 1, + STATE(8521), 1, sym_delegation_specifier, - STATE(9335), 1, - sym__delegation_specifiers, - STATE(9776), 1, - sym_function_type_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8625), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [168202] = 14, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3653), 1, - sym_user_type, - STATE(3656), 1, + STATE(9189), 1, sym__delegation_specifiers, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3804), 1, - sym_function_type, - STATE(10086), 1, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620120,36 +620467,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168253] = 14, - ACTIONS(431), 1, + [168294] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(4534), 1, sym__lexical_identifier, - STATE(3653), 1, - sym_user_type, - STATE(3659), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4585), 1, sym__delegation_specifiers, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3804), 1, + STATE(4599), 1, + sym_user_type, + STATE(4630), 1, sym_function_type, - STATE(10086), 1, + STATE(4950), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620157,36 +620504,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168304] = 14, - ACTIONS(431), 1, + [168345] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(5278), 1, sym_user_type, - STATE(3660), 1, - sym__delegation_specifiers, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3804), 1, + STATE(5412), 1, sym_function_type, - STATE(10086), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4681), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620194,36 +620540,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168355] = 14, - ACTIONS(431), 1, + [168394] = 14, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(7972), 1, + sym__simple_user_type, + STATE(8340), 1, sym_user_type, - STATE(3661), 1, + STATE(8448), 1, + sym_function_type, + STATE(8450), 1, sym__delegation_specifiers, - STATE(3752), 1, + STATE(8453), 1, sym_delegation_specifier, - STATE(3804), 1, - sym_function_type, - STATE(10086), 1, + STATE(9935), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(8486), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620231,36 +620577,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168406] = 14, - ACTIONS(431), 1, + [168445] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3653), 1, - sym_user_type, - STATE(3665), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4589), 1, sym__delegation_specifiers, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3804), 1, + STATE(4599), 1, + sym_user_type, + STATE(4630), 1, sym_function_type, - STATE(10086), 1, + STATE(4950), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620268,36 +620614,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168457] = 14, - ACTIONS(431), 1, + [168496] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3632), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4581), 1, sym__delegation_specifiers, - STATE(4197), 1, + STATE(4599), 1, sym_user_type, - STATE(4228), 1, - sym_delegation_specifier, - STATE(4252), 1, + STATE(4630), 1, sym_function_type, - STATE(10086), 1, + STATE(4950), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620305,36 +620651,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168508] = 14, - ACTIONS(431), 1, + [168547] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, sym_simple_identifier, - STATE(3306), 1, + STATE(2943), 1, sym__simple_user_type, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3653), 1, - sym_user_type, - STATE(3667), 1, + STATE(3071), 1, sym__delegation_specifiers, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3804), 1, + STATE(3086), 1, + sym_user_type, + STATE(3361), 1, sym_function_type, - STATE(10086), 1, + STATE(3619), 1, + sym_delegation_specifier, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620342,36 +620688,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168559] = 14, - ACTIONS(431), 1, + [168598] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(5278), 1, sym_user_type, - STATE(3670), 1, - sym__delegation_specifiers, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3804), 1, + STATE(5412), 1, sym_function_type, - STATE(10086), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4595), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620379,36 +620724,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168610] = 14, - ACTIONS(431), 1, + [168647] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3653), 1, - sym_user_type, - STATE(3682), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4585), 1, sym__delegation_specifiers, - STATE(3752), 1, - sym_delegation_specifier, - STATE(3804), 1, + STATE(5278), 1, + sym_user_type, + STATE(5412), 1, sym_function_type, - STATE(10086), 1, + STATE(5541), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620416,36 +620761,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168661] = 14, - ACTIONS(255), 1, + [168698] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3061), 1, - sym__delegation_specifiers, - STATE(3097), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5515), 1, sym_user_type, - STATE(3340), 1, + STATE(5566), 1, sym_function_type, - STATE(3687), 1, - sym_delegation_specifier, - STATE(10030), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(4933), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620453,36 +620797,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168712] = 14, - ACTIONS(7), 1, + [168747] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4618), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4646), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(4918), 1, - sym__delegation_specifiers, - STATE(4925), 1, + STATE(4599), 1, sym_user_type, - STATE(4984), 1, - sym_delegation_specifier, - STATE(5027), 1, + STATE(4607), 1, + sym__delegation_specifiers, + STATE(4630), 1, sym_function_type, - STATE(9727), 1, + STATE(4950), 1, + sym_delegation_specifier, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620490,36 +620834,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168763] = 14, - ACTIONS(255), 1, + [168798] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3097), 1, - sym_user_type, - STATE(3318), 1, + STATE(4582), 1, sym__delegation_specifiers, - STATE(3340), 1, + STATE(5278), 1, + sym_user_type, + STATE(5412), 1, sym_function_type, - STATE(3687), 1, + STATE(5541), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620527,36 +620871,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168814] = 14, - ACTIONS(255), 1, + [168849] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3097), 1, - sym_user_type, - STATE(3115), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3070), 1, sym__delegation_specifiers, - STATE(3340), 1, + STATE(3086), 1, + sym_user_type, + STATE(3361), 1, sym_function_type, - STATE(3687), 1, + STATE(3619), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620564,36 +620908,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168865] = 14, - ACTIONS(255), 1, + [168900] = 14, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(3097), 1, - sym_user_type, - STATE(3122), 1, + STATE(4590), 1, sym__delegation_specifiers, - STATE(3340), 1, + STATE(5278), 1, + sym_user_type, + STATE(5412), 1, sym_function_type, - STATE(3687), 1, + STATE(5541), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620601,36 +620945,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168916] = 14, - ACTIONS(9192), 1, + [168951] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4576), 1, + STATE(4537), 1, sym__simple_user_type, - STATE(4915), 1, + STATE(4542), 1, + sym_simple_identifier, + STATE(5278), 1, sym_user_type, - STATE(5028), 1, + STATE(5412), 1, sym_function_type, - STATE(5033), 1, - sym_delegation_specifier, - STATE(5035), 1, - sym__delegation_specifiers, - STATE(9960), 1, + STATE(9911), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, + STATE(4585), 2, + sym__delegation_specifiers, + sym_delegation_specifier, + STATE(4831), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9196), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620638,36 +620981,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [168967] = 14, - ACTIONS(255), 1, + [169000] = 14, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(3198), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4897), 1, sym__delegation_specifiers, - STATE(4057), 1, + STATE(4920), 1, sym_user_type, - STATE(4140), 1, - sym_function_type, - STATE(4201), 1, + STATE(5013), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(5026), 1, + sym_function_type, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620675,36 +621018,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169018] = 14, - ACTIONS(431), 1, + [169051] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3633), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3698), 1, sym__delegation_specifiers, - STATE(4197), 1, + STATE(4209), 1, sym_user_type, - STATE(4228), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(4252), 1, + STATE(4250), 1, sym_function_type, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620712,36 +621055,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169069] = 14, - ACTIONS(255), 1, + [169102] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3332), 1, + sym_simple_identifier, + STATE(3334), 1, sym__lexical_identifier, - STATE(2904), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3097), 1, - sym_user_type, - STATE(3262), 1, + STATE(3709), 1, sym__delegation_specifiers, - STATE(3340), 1, - sym_function_type, - STATE(3687), 1, + STATE(4209), 1, + sym_user_type, + STATE(4237), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620749,36 +621092,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169120] = 14, - ACTIONS(255), 1, + [169153] = 14, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, sym_user_type, - STATE(3329), 1, - sym__delegation_specifiers, - STATE(3340), 1, + STATE(8519), 1, sym_function_type, - STATE(3687), 1, + STATE(8521), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9198), 1, + sym__delegation_specifiers, + STATE(9816), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(8722), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620786,36 +621129,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169171] = 14, - ACTIONS(255), 1, + [169204] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(3213), 1, + STATE(3139), 1, sym__delegation_specifiers, - STATE(3340), 1, + STATE(3361), 1, sym_function_type, - STATE(3687), 1, + STATE(3619), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620823,36 +621166,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169222] = 14, - ACTIONS(255), 1, + [169255] = 14, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(3097), 1, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, sym_user_type, - STATE(3198), 1, + STATE(3117), 1, sym__delegation_specifiers, - STATE(3340), 1, + STATE(3361), 1, sym_function_type, - STATE(3687), 1, + STATE(3619), 1, sym_delegation_specifier, - STATE(10030), 1, + STATE(9890), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(3447), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620860,34 +621203,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169273] = 13, - ACTIONS(9204), 1, + [169306] = 14, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(7861), 1, + STATE(3365), 1, sym__simple_user_type, - STATE(8334), 1, + STATE(3611), 1, + sym__delegation_specifiers, + STATE(4209), 1, sym_user_type, - STATE(8422), 1, - sym_function_type, - STATE(8615), 1, + STATE(4237), 1, sym_delegation_specifier, - STATE(9684), 1, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8536), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(9208), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620895,32 +621240,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169321] = 11, - ACTIONS(9264), 1, + [169357] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9831), 2, + STATE(9619), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620928,34 +621273,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169365] = 13, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, + [169401] = 8, + ACTIONS(9356), 1, + anon_sym_AT, + ACTIONS(9443), 1, + sym_reification_modifier, + ACTIONS(9445), 1, sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, - sym_simple_identifier, - STATE(3225), 1, - sym_delegation_specifier, - STATE(3813), 1, - sym_user_type, - STATE(3846), 1, - sym_function_type, - STATE(9985), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + ACTIONS(9358), 2, + anon_sym_in, + anon_sym_out, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7137), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9441), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -620963,69 +621302,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169413] = 13, - ACTIONS(255), 1, sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, - sym__simple_user_type, - STATE(2930), 1, - sym_simple_identifier, - STATE(3097), 1, - sym_user_type, - STATE(3340), 1, - sym_function_type, - STATE(3532), 1, - sym_delegation_specifier, - STATE(10030), 1, - sym_function_type_parameters, + [169439] = 7, + ACTIONS(6650), 1, + anon_sym_LBRACK, + STATE(7782), 1, + sym__member_access_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(6674), 3, + sym_safe_nav, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(9449), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + STATE(7155), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(9447), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [169475] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4882), 6, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + sym__backtick_identifier, + ACTIONS(4880), 13, + anon_sym_where, anon_sym_get, anon_sym_set, + anon_sym_in, + anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [169461] = 13, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [169503] = 13, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3306), 1, - sym__simple_user_type, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3653), 1, + STATE(3365), 1, + sym__simple_user_type, + STATE(3685), 1, sym_user_type, - STATE(3804), 1, + STATE(3719), 1, sym_function_type, - STATE(3992), 1, + STATE(4006), 1, sym_delegation_specifier, - STATE(10086), 1, + STATE(10126), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(3967), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621033,32 +621392,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169509] = 11, - ACTIONS(9264), 1, + [169551] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7198), 2, + STATE(7135), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10055), 2, + STATE(9472), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621066,32 +621425,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169553] = 11, - ACTIONS(9264), 1, + [169595] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9874), 2, + STATE(9470), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621099,32 +621458,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169597] = 11, - ACTIONS(9264), 1, - sym__alpha_identifier, - ACTIONS(9270), 1, - sym__backtick_identifier, - ACTIONS(9489), 1, + [169639] = 4, + ACTIONS(8974), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3943), 5, anon_sym_AT, - ACTIONS(9491), 1, + anon_sym_DOT, anon_sym_LPAREN, - STATE(8327), 1, - sym__lexical_identifier, - STATE(9408), 1, - sym_simple_identifier, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3938), 13, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [169669] = 8, + ACTIONS(9453), 1, + anon_sym_AT, + ACTIONS(9459), 1, + sym_reification_modifier, + ACTIONS(9462), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + ACTIONS(9456), 2, + anon_sym_in, + anon_sym_out, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10052), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9266), 7, + STATE(7137), 4, + sym_variance_modifier, + sym__type_parameter_modifier, + sym_annotation, + aux_sym_type_parameter_modifiers_repeat1, + ACTIONS(9451), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621132,65 +621513,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169641] = 11, - ACTIONS(9264), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + [169707] = 11, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7129), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10084), 2, + STATE(9616), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [169751] = 5, + ACTIONS(9464), 1, + anon_sym_LT, + STATE(7230), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4119), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4117), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [169685] = 11, - ACTIONS(9264), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + [169783] = 11, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7136), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10049), 2, + STATE(9488), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621198,32 +621607,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169729] = 11, - ACTIONS(9264), 1, + [169827] = 13, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9489), 1, - anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(8327), 1, - sym__lexical_identifier, - STATE(9408), 1, + STATE(4530), 1, sym_simple_identifier, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4574), 1, + sym__simple_user_type, + STATE(4925), 1, + sym_user_type, + STATE(5007), 1, + sym_function_type, + STATE(5188), 1, + sym_delegation_specifier, + STATE(10127), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7148), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9790), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9266), 7, + STATE(5116), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621231,32 +621642,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169773] = 11, - ACTIONS(9264), 1, + [169875] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9489), 1, - anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(2912), 1, sym_simple_identifier, + STATE(2943), 1, + sym__simple_user_type, + STATE(3497), 1, + sym_delegation_specifier, + STATE(4081), 1, + sym_user_type, + STATE(4112), 1, + sym_function_type, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10041), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9266), 7, + STATE(3447), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621264,32 +621677,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169817] = 11, - ACTIONS(9264), 1, + [169923] = 13, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9489), 1, - anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(8109), 1, + sym__simple_user_type, + STATE(8387), 1, + sym_user_type, + STATE(8519), 1, + sym_function_type, + STATE(8660), 1, + sym_delegation_specifier, + STATE(9816), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7140), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10036), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9266), 7, + STATE(8722), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621297,32 +621712,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169861] = 11, - ACTIONS(9264), 1, + [169971] = 13, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9489), 1, - anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(8327), 1, - sym__lexical_identifier, - STATE(9408), 1, + STATE(5681), 1, sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(7972), 1, + sym__simple_user_type, + STATE(8340), 1, + sym_user_type, + STATE(8448), 1, + sym_function_type, + STATE(8543), 1, + sym_delegation_specifier, + STATE(9935), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7135), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9877), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9266), 7, + STATE(8486), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621330,32 +621747,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169905] = 11, - ACTIONS(9264), 1, + [170019] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7148), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9888), 2, + STATE(9494), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621363,34 +621780,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169949] = 13, - ACTIONS(431), 1, + [170063] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3306), 1, + STATE(817), 1, sym__simple_user_type, - STATE(3325), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(3992), 1, - sym_delegation_specifier, - STATE(4197), 1, + STATE(874), 1, sym_user_type, - STATE(4252), 1, + STATE(939), 1, sym_function_type, - STATE(10086), 1, + STATE(1161), 1, + sym_delegation_specifier, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4029), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621398,34 +621815,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [169997] = 13, - ACTIONS(345), 1, + [170111] = 13, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(820), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(821), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(1086), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(3223), 1, sym_delegation_specifier, - STATE(1409), 1, + STATE(3782), 1, sym_user_type, - STATE(1514), 1, + STATE(3999), 1, sym_function_type, - STATE(9904), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621433,32 +621850,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170045] = 11, - ACTIONS(9264), 1, + [170159] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7143), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9893), 2, + STATE(9502), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621466,32 +621883,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170089] = 11, - ACTIONS(9264), 1, + [170203] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7150), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10026), 2, + STATE(9508), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621499,32 +621916,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170133] = 11, - ACTIONS(9264), 1, + [170247] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9794), 2, + STATE(9514), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621532,32 +621949,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170177] = 11, - ACTIONS(9264), 1, + [170291] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7147), 2, + STATE(7152), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10021), 2, + STATE(9527), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621565,32 +621982,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170221] = 11, - ACTIONS(9264), 1, + [170335] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7179), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10068), 2, + STATE(9529), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621598,32 +622015,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170265] = 11, - ACTIONS(9264), 1, + [170379] = 13, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9489), 1, - anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, sym_simple_identifier, + STATE(4599), 1, + sym_user_type, + STATE(4630), 1, + sym_function_type, + STATE(4728), 1, + sym_delegation_specifier, + STATE(9911), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9906), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9266), 7, + STATE(4831), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621631,32 +622050,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170309] = 11, - ACTIONS(9264), 1, + [170427] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7173), 2, + STATE(7158), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9598), 2, + STATE(9534), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621664,67 +622083,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170353] = 11, - ACTIONS(9264), 1, - sym__alpha_identifier, - ACTIONS(9270), 1, - sym__backtick_identifier, - ACTIONS(9489), 1, - anon_sym_AT, - ACTIONS(9491), 1, - anon_sym_LPAREN, - STATE(8327), 1, - sym__lexical_identifier, - STATE(9408), 1, - sym_simple_identifier, + [170471] = 7, + ACTIONS(9466), 1, + anon_sym_LBRACK, + STATE(7782), 1, + sym__member_access_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7151), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(9928), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9266), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [170397] = 13, - ACTIONS(345), 1, + ACTIONS(9469), 3, + sym_safe_nav, + anon_sym_DOT, + anon_sym_COLON_COLON, + ACTIONS(9474), 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BANG_BANG, + STATE(7155), 5, + sym_indexing_suffix, + sym_navigation_suffix, + sym__postfix_unary_operator, + sym__postfix_unary_suffix, + aux_sym__postfix_unary_expression_repeat1, + ACTIONS(9472), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [170507] = 13, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(820), 1, - sym__simple_user_type, - STATE(821), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(920), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(5084), 1, + sym_delegation_specifier, + STATE(5515), 1, sym_user_type, - STATE(953), 1, + STATE(5566), 1, sym_function_type, - STATE(1086), 1, - sym_delegation_specifier, - STATE(9904), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1123), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1664), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621732,32 +622147,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170445] = 11, - ACTIONS(9264), 1, + [170555] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7166), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9969), 2, + STATE(9761), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621765,32 +622180,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170489] = 11, - ACTIONS(9264), 1, + [170599] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10014), 2, + STATE(9536), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621798,34 +622213,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170533] = 13, - ACTIONS(115), 1, + [170643] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9437), 1, + anon_sym_AT, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(9315), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4603), 1, - sym_user_type, - STATE(4622), 1, - sym_function_type, - STATE(4856), 1, - sym_delegation_specifier, - STATE(9641), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1842), 7, + STATE(7160), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9542), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621833,32 +622246,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170581] = 11, - ACTIONS(9264), 1, + [170687] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7156), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10012), 2, + STATE(9545), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621866,32 +622279,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170625] = 11, - ACTIONS(9264), 1, + [170731] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7155), 2, + STATE(7173), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9972), 2, + STATE(9583), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621899,32 +622312,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170669] = 11, - ACTIONS(9264), 1, + [170775] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7161), 2, + STATE(7163), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10004), 2, + STATE(9549), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621932,32 +622345,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170713] = 11, - ACTIONS(9264), 1, + [170819] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10008), 2, + STATE(9551), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -621965,34 +622378,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170757] = 13, + [170863] = 13, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4925), 1, + STATE(4668), 1, + sym__simple_user_type, + STATE(4920), 1, sym_user_type, - STATE(5027), 1, + STATE(5026), 1, sym_function_type, - STATE(5071), 1, + STATE(5084), 1, sym_delegation_specifier, - STATE(9727), 1, + STATE(9539), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, + STATE(5103), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622000,32 +622413,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170805] = 11, - ACTIONS(9264), 1, + [170911] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9978), 2, + STATE(9778), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622033,28 +622446,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170849] = 8, - ACTIONS(9392), 1, - anon_sym_AT, - ACTIONS(9495), 1, - sym_reification_modifier, - ACTIONS(9497), 1, + [170955] = 11, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9202), 1, sym__backtick_identifier, + ACTIONS(9437), 1, + anon_sym_AT, + ACTIONS(9439), 1, + anon_sym_LPAREN, + STATE(8319), 1, + sym__lexical_identifier, + STATE(9315), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9394), 2, - anon_sym_in, - anon_sym_out, - STATE(7817), 2, + STATE(7591), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(7197), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(9493), 8, + STATE(9467), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622062,33 +622479,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [170999] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - [170887] = 11, - ACTIONS(9264), 1, - sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7163), 2, + STATE(7165), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9987), 2, + STATE(9777), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622096,32 +622512,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170931] = 11, - ACTIONS(9264), 1, + [171043] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7202), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10090), 2, + STATE(9773), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622129,91 +622545,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [170975] = 11, - ACTIONS(9264), 1, + [171087] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7169), 2, + STATE(7170), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10097), 2, + STATE(9569), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [171019] = 4, - ACTIONS(9030), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3995), 5, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT, - sym__backtick_identifier, - ACTIONS(3990), 13, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [171131] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - [171049] = 11, - ACTIONS(9264), 1, - sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9818), 2, + STATE(9570), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622221,61 +622611,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171093] = 7, - ACTIONS(6703), 1, - anon_sym_LBRACK, - STATE(7657), 1, - sym__member_access_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(6727), 3, - sym_safe_nav, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(9501), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - STATE(7184), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(9499), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [171129] = 11, - ACTIONS(9264), 1, + [171175] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7168), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10015), 2, + STATE(9772), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622283,34 +622644,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171173] = 13, - ACTIONS(557), 1, + [171219] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9437), 1, + anon_sym_AT, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(2766), 1, - sym__simple_user_type, - STATE(2770), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(9315), 1, sym_simple_identifier, - STATE(2886), 1, - sym_user_type, - STATE(3041), 1, - sym_function_type, - STATE(3225), 1, - sym_delegation_specifier, - STATE(9985), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3152), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1920), 7, + STATE(7591), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9764), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622318,92 +622677,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171221] = 11, - ACTIONS(9264), 1, + [171263] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9807), 2, + STATE(9640), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [171265] = 5, - ACTIONS(9503), 1, - anon_sym_LT, - STATE(7247), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4171), 4, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4169), 13, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [171307] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - [171297] = 11, - ACTIONS(9264), 1, - sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7177), 2, + STATE(7172), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9988), 2, + STATE(9760), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622411,32 +622743,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171341] = 11, - ACTIONS(9264), 1, + [171351] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7137), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10083), 2, + STATE(9755), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622444,32 +622776,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171385] = 11, - ACTIONS(9264), 1, + [171395] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7175), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9993), 2, + STATE(9752), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622477,34 +622809,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171429] = 13, - ACTIONS(7), 1, + [171439] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9437), 1, + anon_sym_AT, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(4618), 1, - sym__simple_user_type, - STATE(4646), 1, + STATE(9315), 1, sym_simple_identifier, - STATE(5071), 1, - sym_delegation_specifier, - STATE(5521), 1, - sym_user_type, - STATE(5539), 1, - sym_function_type, - STATE(9727), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5255), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1908), 7, + STATE(7591), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9744), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622512,32 +622842,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171477] = 11, - ACTIONS(9264), 1, + [171483] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7177), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10071), 2, + STATE(9743), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622545,32 +622875,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171521] = 11, - ACTIONS(9264), 1, + [171527] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10063), 2, + STATE(9735), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622578,32 +622908,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171565] = 11, - ACTIONS(9264), 1, + [171571] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7130), 2, + STATE(7179), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(9839), 2, + STATE(9734), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622611,32 +622941,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171609] = 11, - ACTIONS(9264), 1, + [171615] = 13, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9489), 1, - anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(2912), 1, sym_simple_identifier, + STATE(2943), 1, + sym__simple_user_type, + STATE(3086), 1, + sym_user_type, + STATE(3361), 1, + sym_function_type, + STATE(3497), 1, + sym_delegation_specifier, + STATE(9890), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7171), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10028), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9266), 7, + STATE(3447), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622644,86 +622976,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171653] = 3, + [171663] = 13, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(9435), 1, + anon_sym_LPAREN, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4537), 1, + sym__simple_user_type, + STATE(4542), 1, + sym_simple_identifier, + STATE(4728), 1, + sym_delegation_specifier, + STATE(5278), 1, + sym_user_type, + STATE(5412), 1, + sym_function_type, + STATE(9911), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 6, - anon_sym_AT, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - sym__backtick_identifier, - ACTIONS(5213), 13, - anon_sym_where, + STATE(4831), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, - anon_sym_in, - anon_sym_while, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [171711] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - [171681] = 7, - ACTIONS(9505), 1, - anon_sym_LBRACK, - STATE(7657), 1, - sym__member_access_operator, + ACTIONS(9202), 1, + sym__backtick_identifier, + ACTIONS(9437), 1, + anon_sym_AT, + ACTIONS(9439), 1, + anon_sym_LPAREN, + STATE(8319), 1, + sym__lexical_identifier, + STATE(9315), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9508), 3, - sym_safe_nav, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(9513), 3, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BANG_BANG, - STATE(7184), 5, - sym_indexing_suffix, - sym_navigation_suffix, - sym__postfix_unary_operator, - sym__postfix_unary_suffix, - aux_sym__postfix_unary_expression_repeat1, - ACTIONS(9511), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [171717] = 11, - ACTIONS(9264), 1, + STATE(7591), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9730), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9198), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [171755] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7180), 2, + STATE(7186), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10062), 2, + STATE(9574), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622731,32 +623077,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171761] = 11, - ACTIONS(9264), 1, + [171799] = 13, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9489), 1, - anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(8327), 1, - sym__lexical_identifier, - STATE(9408), 1, + STATE(3332), 1, sym_simple_identifier, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3365), 1, + sym__simple_user_type, + STATE(4006), 1, + sym_delegation_specifier, + STATE(4209), 1, + sym_user_type, + STATE(4250), 1, + sym_function_type, + STATE(10126), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(10151), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9266), 7, + STATE(3967), 2, + sym_constructor_invocation, + sym_explicit_delegation, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622764,32 +623112,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171805] = 11, - ACTIONS(9264), 1, + [171847] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7186), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10144), 2, + STATE(9579), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622797,32 +623145,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171849] = 11, - ACTIONS(9264), 1, + [171891] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7188), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10140), 2, + STATE(9589), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622830,32 +623178,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171893] = 11, - ACTIONS(9264), 1, + [171935] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7188), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10138), 2, + STATE(9592), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622863,34 +623211,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171937] = 13, - ACTIONS(255), 1, + [171979] = 13, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2904), 1, + STATE(817), 1, sym__simple_user_type, - STATE(2930), 1, + STATE(819), 1, sym_simple_identifier, - STATE(3532), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(1161), 1, sym_delegation_specifier, - STATE(4057), 1, + STATE(1392), 1, sym_user_type, - STATE(4140), 1, + STATE(1577), 1, sym_function_type, - STATE(10030), 1, + STATE(10098), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3594), 2, + STATE(1095), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622898,32 +623246,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [171985] = 11, - ACTIONS(9264), 1, + [172027] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7183), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10124), 2, + STATE(9729), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622931,32 +623279,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172029] = 11, - ACTIONS(9264), 1, + [172071] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7191), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10122), 2, + STATE(9723), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622964,32 +623312,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172073] = 11, - ACTIONS(9264), 1, + [172115] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7191), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10118), 2, + STATE(9722), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -622997,32 +623345,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172117] = 11, - ACTIONS(9264), 1, + [172159] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10110), 2, + STATE(9807), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623030,34 +623378,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172161] = 13, - ACTIONS(9192), 1, + [172203] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9437), 1, + anon_sym_AT, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(9315), 1, sym_simple_identifier, - STATE(4576), 1, - sym__simple_user_type, - STATE(4915), 1, - sym_user_type, - STATE(5028), 1, - sym_function_type, - STATE(5170), 1, - sym_delegation_specifier, - STATE(9960), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5185), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(9196), 7, + STATE(7193), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9708), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623065,61 +623411,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172209] = 11, - ACTIONS(9264), 1, + [172247] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7194), 2, + STATE(7201), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10108), 2, + STATE(9598), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [172253] = 8, - ACTIONS(9518), 1, - anon_sym_AT, - ACTIONS(9524), 1, - sym_reification_modifier, - ACTIONS(9527), 1, - sym__backtick_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9521), 2, - anon_sym_in, - anon_sym_out, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7197), 4, - sym_variance_modifier, - sym__type_parameter_modifier, - sym_annotation, - aux_sym_type_parameter_modifiers_repeat1, - ACTIONS(9516), 8, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623127,33 +623444,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, [172291] = 11, - ACTIONS(9264), 1, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10058), 2, + STATE(9689), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623162,31 +623478,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [172335] = 11, - ACTIONS(9264), 1, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7196), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10103), 2, + STATE(9687), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623195,31 +623511,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [172379] = 11, - ACTIONS(9264), 1, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7199), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10101), 2, + STATE(9625), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623228,33 +623544,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [172423] = 13, - ACTIONS(8656), 1, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(8237), 1, + STATE(2783), 1, sym__simple_user_type, - STATE(8371), 1, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2917), 1, sym_user_type, - STATE(8545), 1, + STATE(3022), 1, sym_function_type, - STATE(8706), 1, + STATE(3223), 1, sym_delegation_specifier, - STATE(9776), 1, + STATE(10100), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8625), 2, + STATE(3144), 2, sym_constructor_invocation, sym_explicit_delegation, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623263,31 +623579,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [172471] = 11, - ACTIONS(9264), 1, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7552), 2, + STATE(7198), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10091), 2, + STATE(9623), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623296,31 +623612,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, [172515] = 11, - ACTIONS(9264), 1, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9489), 1, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9491), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9408), 1, + STATE(9315), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7193), 2, + STATE(7591), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(10116), 2, + STATE(9599), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9266), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623328,34 +623644,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172559] = 13, - ACTIONS(115), 1, + [172559] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9437), 1, + anon_sym_AT, + ACTIONS(9439), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(4542), 1, + STATE(9315), 1, sym_simple_identifier, - STATE(4543), 1, - sym__simple_user_type, - STATE(4856), 1, - sym_delegation_specifier, - STATE(5292), 1, - sym_user_type, - STATE(5311), 1, - sym_function_type, - STATE(9641), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4694), 2, - sym_constructor_invocation, - sym_explicit_delegation, - ACTIONS(1842), 7, + STATE(7140), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9483), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623363,131 +623677,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [172607] = 11, - ACTIONS(8656), 1, + [172603] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9313), 1, + ACTIONS(9437), 1, + anon_sym_AT, + ACTIONS(9439), 1, anon_sym_LPAREN, - ACTIONS(9529), 1, - anon_sym_dynamic, - STATE(6073), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9315), 1, sym_simple_identifier, - STATE(7848), 1, - sym__simple_user_type, - STATE(8068), 1, - sym_nullable_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7849), 3, - sym__type_reference, - sym_user_type, - sym_parenthesized_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [172650] = 5, - ACTIONS(9531), 1, - anon_sym_DOT, - STATE(7210), 1, - aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4162), 13, + STATE(7204), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(9605), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [172647] = 11, + ACTIONS(9196), 1, sym__alpha_identifier, - [172681] = 7, - ACTIONS(9535), 1, + ACTIONS(9202), 1, + sym__backtick_identifier, + ACTIONS(9437), 1, anon_sym_AT, - ACTIONS(9540), 1, - anon_sym_suspend, + ACTIONS(9439), 1, + anon_sym_LPAREN, + STATE(8319), 1, + sym__lexical_identifier, + STATE(9315), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9538), 2, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(7842), 2, + STATE(7591), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - STATE(7207), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9533), 9, + STATE(9607), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [172716] = 7, - ACTIONS(9315), 1, - anon_sym_AT, - ACTIONS(9545), 1, - sym__backtick_identifier, + [172691] = 5, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9049), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7216), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(9543), 8, + ACTIONS(7375), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9479), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7207), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + ACTIONS(9477), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172751] = 3, + [172722] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, + ACTIONS(3943), 5, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT, sym__backtick_identifier, - ACTIONS(3990), 13, + ACTIONS(3938), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -623501,19 +623793,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172778] = 5, - ACTIONS(9531), 1, - anon_sym_DOT, - STATE(7213), 1, - aux_sym_user_type_repeat1, + [172749] = 5, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 3, + ACTIONS(9485), 2, + anon_sym_in, + anon_sym_out, + ACTIONS(9483), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4143), 13, + STATE(7207), 3, + sym__type_projection_modifier, + sym_variance_modifier, + aux_sym_type_projection_modifiers_repeat1, + ACTIONS(9481), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -623521,75 +623816,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172809] = 3, + [172780] = 7, + ACTIONS(9490), 1, + anon_sym_AT, + ACTIONS(9496), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 5, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT, - sym__backtick_identifier, - ACTIONS(4122), 13, + STATE(7839), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9493), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7208), 3, + sym_parameter_modifier, + sym_annotation, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(9488), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172836] = 5, + [172815] = 7, + ACTIONS(9500), 1, + anon_sym_AT, + ACTIONS(9505), 1, + anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7379), 2, - anon_sym_in, - anon_sym_out, - ACTIONS(9549), 3, - anon_sym_AT, + ACTIONS(9503), 2, anon_sym_LPAREN, sym__backtick_identifier, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, STATE(7215), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - ACTIONS(9547), 10, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9498), 9, anon_sym_get, anon_sym_set, anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172867] = 5, - ACTIONS(9551), 1, + [172850] = 5, + ACTIONS(9508), 1, anon_sym_DOT, - STATE(7213), 1, + STATE(7210), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, + ACTIONS(4131), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4187), 13, + ACTIONS(4129), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -623603,50 +623901,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172898] = 7, - ACTIONS(9084), 1, + [172881] = 7, + ACTIONS(9263), 1, anon_sym_AT, - ACTIONS(9558), 1, - anon_sym_suspend, + ACTIONS(9513), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9556), 2, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(7842), 2, + STATE(7839), 2, sym__single_annotation, sym__multi_annotation, - STATE(7207), 3, - sym__type_modifier, + ACTIONS(8995), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + STATE(7208), 3, + sym_parameter_modifier, sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9554), 9, + aux_sym_parameter_modifiers_repeat1, + ACTIONS(9511), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172933] = 5, + [172916] = 5, + ACTIONS(9515), 1, + anon_sym_DOT, + STATE(7210), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9564), 2, - anon_sym_in, - anon_sym_out, - ACTIONS(9562), 3, + ACTIONS(4072), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - STATE(7215), 3, - sym__type_projection_modifier, - sym_variance_modifier, - aux_sym_type_projection_modifiers_repeat1, - ACTIONS(9560), 10, + ACTIONS(4070), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -623654,29 +623949,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [172964] = 7, - ACTIONS(9569), 1, - anon_sym_AT, - ACTIONS(9575), 1, + [172947] = 11, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, + ACTIONS(9261), 1, + anon_sym_LPAREN, + ACTIONS(9517), 1, + anon_sym_dynamic, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(7850), 1, + sym__simple_user_type, + STATE(8042), 1, + sym_nullable_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7839), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9572), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - STATE(7216), 3, - sym_parameter_modifier, - sym_annotation, - aux_sym_parameter_modifiers_repeat1, - ACTIONS(9567), 8, + STATE(7852), 3, + sym__type_reference, + sym_user_type, + sym_parenthesized_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623684,99 +623987,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [172999] = 7, - ACTIONS(9577), 1, - anon_sym_AT, - ACTIONS(9580), 1, - anon_sym_suspend, + [172990] = 5, + ACTIONS(9515), 1, + anon_sym_DOT, + STATE(7212), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9556), 2, + ACTIONS(4105), 3, + anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - STATE(7842), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(7207), 3, - sym__type_modifier, - sym_annotation, - aux_sym_type_modifiers_repeat1, - ACTIONS(9554), 9, + ACTIONS(4103), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173034] = 10, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, + [173021] = 7, + ACTIONS(9521), 1, anon_sym_AT, - STATE(3087), 1, - sym_type_constraint, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9583), 1, - sym_simple_identifier, + ACTIONS(9526), 1, + anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7282), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + ACTIONS(9524), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7857), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7215), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9519), 9, anon_sym_get, anon_sym_set, + anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [173074] = 4, + sym__alpha_identifier, + [173056] = 7, ACTIONS(9030), 1, - anon_sym_COLON, + anon_sym_AT, + ACTIONS(9529), 1, + anon_sym_suspend, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, - anon_sym_AT, - anon_sym_DOT, + ACTIONS(9503), 2, anon_sym_LPAREN, - anon_sym_LT, sym__backtick_identifier, - ACTIONS(3990), 11, + STATE(7857), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7215), 3, + sym__type_modifier, + sym_annotation, + aux_sym_type_modifiers_repeat1, + ACTIONS(9498), 9, anon_sym_get, anon_sym_set, - anon_sym_in, + anon_sym_dynamic, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173102] = 3, + [173091] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 4, + ACTIONS(4095), 5, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT, sym__backtick_identifier, - ACTIONS(4187), 13, + ACTIONS(4093), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -623790,29 +624093,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173128] = 10, - ACTIONS(8656), 1, + [173118] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9583), 1, + ACTIONS(9531), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623820,29 +624123,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173168] = 10, - ACTIONS(8656), 1, + [173158] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9585), 1, + ACTIONS(9533), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623850,29 +624153,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173208] = 10, - ACTIONS(8656), 1, + [173198] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(5821), 1, + STATE(3379), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9780), 1, + STATE(9733), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7299), 2, + STATE(7315), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623880,29 +624183,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173248] = 10, - ACTIONS(8656), 1, + [173238] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(5799), 1, + sym_type_constraint, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9986), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7339), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173278] = 10, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9535), 1, + anon_sym_RBRACK, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7236), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173318] = 10, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9356), 1, anon_sym_AT, - STATE(864), 1, + STATE(3623), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9603), 1, + STATE(9818), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7280), 2, + STATE(7337), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623910,16 +624273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173288] = 3, + [173358] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 4, + ACTIONS(4131), 4, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4256), 13, + ACTIONS(4129), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -623933,29 +624296,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173314] = 10, - ACTIONS(9587), 1, + [173384] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9590), 1, - anon_sym_RBRACK, - ACTIONS(9595), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(5037), 1, + sym_type_constraint, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9928), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7294), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [173424] = 10, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9537), 1, + anon_sym_RBRACK, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(9592), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623963,29 +624356,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173354] = 10, - ACTIONS(8656), 1, + [173464] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, + ACTIONS(9539), 1, + anon_sym_RBRACK, + STATE(6361), 1, sym__lexical_identifier, - STATE(8577), 1, - sym_type_constraint, - STATE(9780), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7299), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7236), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -623993,29 +624386,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173394] = 10, - ACTIONS(8656), 1, + [173504] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(5832), 1, - sym_type_constraint, - STATE(6073), 1, + ACTIONS(9541), 1, + anon_sym_RBRACK, + STATE(6361), 1, sym__lexical_identifier, - STATE(9658), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7293), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7236), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624023,29 +624416,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173434] = 10, - ACTIONS(8656), 1, + [173544] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9598), 1, + ACTIONS(9543), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624053,16 +624446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173474] = 3, + [173584] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4311), 4, + ACTIONS(4236), 4, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4309), 13, + ACTIONS(4234), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -624076,59 +624469,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173500] = 10, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(3573), 1, - sym_type_constraint, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9477), 1, - sym_simple_identifier, + [173610] = 5, + ACTIONS(9545), 1, + anon_sym_LT, + STATE(7495), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7286), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(4119), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4117), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [173540] = 10, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [173640] = 10, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(4969), 1, + STATE(5808), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9551), 1, + STATE(9986), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7340), 2, + STATE(7339), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624136,59 +624524,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173580] = 10, - ACTIONS(8656), 1, + [173680] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(4992), 1, + STATE(3696), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9523), 1, + STATE(9733), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7289), 2, + STATE(7315), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [173620] = 10, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9600), 1, - anon_sym_RBRACK, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7226), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624196,29 +624554,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173660] = 10, - ACTIONS(8656), 1, + [173720] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9602), 1, + ACTIONS(9547), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624226,29 +624584,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173700] = 10, - ACTIONS(8656), 1, + [173760] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(5804), 1, + STATE(4990), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9791), 1, + STATE(9776), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7310), 2, + STATE(7335), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624256,29 +624614,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173740] = 10, - ACTIONS(8656), 1, + [173800] = 10, + ACTIONS(9549), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9552), 1, + anon_sym_RBRACK, + ACTIONS(9557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(5080), 1, - sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9523), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7289), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7236), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(9554), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624286,29 +624644,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173780] = 10, - ACTIONS(8656), 1, + [173840] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9604), 1, + ACTIONS(9560), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624316,59 +624674,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173820] = 10, - ACTIONS(8656), 1, + [173880] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9606), 1, + ACTIONS(9562), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [173860] = 10, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(5207), 1, - sym_type_constraint, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9551), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7340), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624376,29 +624704,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173900] = 10, - ACTIONS(8656), 1, + [173920] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9608), 1, + ACTIONS(9564), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624406,22 +624734,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [173940] = 5, - ACTIONS(9610), 1, - anon_sym_LT, - STATE(7443), 1, - sym_type_arguments, + [173960] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 4, + ACTIONS(4150), 4, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4169), 11, + ACTIONS(4148), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -624431,29 +624757,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [173970] = 10, - ACTIONS(8656), 1, + [173986] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(3019), 1, + STATE(3177), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9583), 1, + STATE(9693), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7282), 2, + STATE(7283), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624461,29 +624787,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174010] = 10, - ACTIONS(8656), 1, + [174026] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9612), 1, - anon_sym_RBRACK, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(5120), 1, + sym_type_constraint, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9928), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7294), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624491,29 +624817,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174050] = 10, - ACTIONS(8656), 1, + [174066] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9614), 1, - anon_sym_RBRACK, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(5815), 1, + sym_type_constraint, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9867), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7347), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624521,29 +624847,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174090] = 10, - ACTIONS(8656), 1, + [174106] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(941), 1, + STATE(5815), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9603), 1, + STATE(9577), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7280), 2, + STATE(7297), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624551,52 +624877,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174130] = 3, + [174146] = 10, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(4878), 1, + sym_type_constraint, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9702), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 4, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4305), 13, + STATE(7307), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [174186] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - [174156] = 10, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9616), 1, + ACTIONS(9566), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624604,29 +624937,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174196] = 10, - ACTIONS(8656), 1, + [174226] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9618), 1, + ACTIONS(9568), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624634,59 +624967,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174236] = 10, - ACTIONS(8656), 1, + [174266] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9620), 1, + ACTIONS(9570), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174306] = 5, + ACTIONS(9572), 1, + anon_sym_LPAREN, + STATE(7351), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7048), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7046), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [174276] = 10, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [174336] = 4, + ACTIONS(8974), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3943), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(3938), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [174364] = 10, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9356), 1, anon_sym_AT, - STATE(3737), 1, + STATE(3728), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9577), 1, + STATE(9818), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7291), 2, + STATE(7337), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624694,29 +625076,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174316] = 10, - ACTIONS(8656), 1, + [174404] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9622), 1, - anon_sym_RBRACK, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(979), 1, + sym_type_constraint, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9675), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7292), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624724,59 +625106,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174356] = 10, - ACTIONS(8656), 1, + [174444] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9624), 1, + ACTIONS(9575), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [174484] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4244), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [174396] = 10, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [174510] = 10, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9626), 1, + ACTIONS(9577), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624784,29 +625189,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174436] = 10, - ACTIONS(8656), 1, + [174550] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9628), 1, + ACTIONS(9579), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624814,29 +625219,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174476] = 10, - ACTIONS(8656), 1, + [174590] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(3652), 1, + STATE(5813), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9477), 1, + STATE(9867), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7286), 2, + STATE(7347), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624844,29 +625249,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174516] = 10, - ACTIONS(8656), 1, + [174630] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(3278), 1, + STATE(893), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9555), 1, + STATE(9675), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7283), 2, + STATE(7292), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624874,29 +625279,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174556] = 10, - ACTIONS(8656), 1, + [174670] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9630), 1, + ACTIONS(9581), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624904,29 +625309,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174596] = 10, - ACTIONS(8656), 1, + [174710] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9632), 1, - anon_sym_RBRACK, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(3264), 1, + sym_type_constraint, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9683), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7295), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624934,29 +625339,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174636] = 10, - ACTIONS(8656), 1, + [174750] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(3171), 1, - sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9555), 1, + STATE(8604), 1, + sym_type_constraint, + STATE(9577), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7283), 2, + STATE(7297), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -624964,59 +625369,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174676] = 10, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9634), 1, - anon_sym_RBRACK, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, + [174790] = 4, + ACTIONS(8974), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(3943), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3938), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [174716] = 10, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [174818] = 10, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(5821), 1, - sym_type_constraint, - STATE(6073), 1, + ACTIONS(9583), 1, + anon_sym_RBRACK, + STATE(6361), 1, sym__lexical_identifier, - STATE(9658), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7293), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7236), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625024,29 +625423,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174756] = 10, - ACTIONS(8656), 1, + [174858] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(3676), 1, - sym_type_constraint, - STATE(6073), 1, + ACTIONS(9585), 1, + anon_sym_RBRACK, + STATE(6361), 1, sym__lexical_identifier, - STATE(9577), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7291), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7236), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625054,29 +625453,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174796] = 10, - ACTIONS(8656), 1, + [174898] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(5808), 1, + STATE(5184), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9488), 1, + STATE(9776), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7347), 2, + STATE(7335), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625084,29 +625483,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174836] = 10, - ACTIONS(8656), 1, + [174938] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8409), 1, + STATE(8404), 1, sym_type_constraint, - STATE(9488), 1, + STATE(9610), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7347), 2, + STATE(7346), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625114,29 +625513,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174876] = 10, - ACTIONS(8656), 1, + [174978] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9636), 1, + ACTIONS(9587), 1, anon_sym_RBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, + STATE(7236), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625144,29 +625543,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174916] = 10, - ACTIONS(8656), 1, + [175018] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9638), 1, - anon_sym_RBRACK, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(3048), 1, + sym_type_constraint, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9683), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7295), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625174,29 +625573,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174956] = 10, - ACTIONS(8656), 1, + [175058] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(5808), 1, - sym_type_constraint, - STATE(6073), 1, + ACTIONS(9589), 1, + anon_sym_RBRACK, + STATE(6361), 1, sym__lexical_identifier, - STATE(9791), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7310), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7236), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625204,108 +625603,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [174996] = 10, - ACTIONS(8656), 1, + [175098] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(4712), 1, + STATE(3280), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9526), 1, + STATE(9693), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7284), 2, + STATE(7283), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [175036] = 4, - ACTIONS(9030), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3995), 5, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT, - sym__backtick_identifier, - ACTIONS(3990), 11, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [175138] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - [175064] = 5, - ACTIONS(9640), 1, - anon_sym_LPAREN, - STATE(7278), 1, - sym_value_arguments, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9591), 1, + anon_sym_RBRACK, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7096), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7094), 13, + STATE(7236), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [175178] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - [175094] = 10, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9643), 1, - anon_sym_RBRACK, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(5799), 1, + sym_type_constraint, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9610), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7226), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7346), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625313,29 +625693,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175134] = 10, - ACTIONS(8656), 1, + [175218] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(4621), 1, + STATE(4638), 1, sym_type_constraint, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9526), 1, + STATE(9702), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7284), 2, + STATE(7307), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625343,15 +625723,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175174] = 3, + [175258] = 5, + ACTIONS(9593), 1, + anon_sym_LT, + STATE(7609), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7169), 3, + ACTIONS(4119), 4, anon_sym_AT, + anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7167), 13, + ACTIONS(4117), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -625359,34 +625744,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175199] = 10, - ACTIONS(9436), 1, + [175287] = 10, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9444), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9645), 1, + ACTIONS(9595), 1, anon_sym_LBRACK, - STATE(5828), 1, + STATE(8319), 1, + sym__lexical_identifier, + STATE(8329), 1, sym_simple_identifier, - STATE(5842), 1, + STATE(8436), 1, sym__simple_user_type, - STATE(5844), 1, - sym__lexical_identifier, - STATE(5860), 1, + STATE(8647), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(6347), 2, + STATE(9295), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9442), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625394,27 +625776,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175238] = 9, - ACTIONS(8656), 1, + [175326] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7235), 3, + STATE(7264), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625422,28 +625804,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175275] = 10, - ACTIONS(9448), 1, + [175363] = 10, + ACTIONS(9370), 1, sym__alpha_identifier, - ACTIONS(9456), 1, + ACTIONS(9378), 1, sym__backtick_identifier, - ACTIONS(9647), 1, + ACTIONS(9597), 1, anon_sym_LBRACK, - STATE(7174), 1, + STATE(7274), 1, sym_simple_identifier, - STATE(7206), 1, + STATE(7459), 1, sym__simple_user_type, - STATE(7209), 1, + STATE(7461), 1, sym__lexical_identifier, - STATE(7271), 1, + STATE(7603), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7290), 2, + STATE(7854), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9454), 7, + ACTIONS(9376), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625451,71 +625833,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175314] = 3, + [175402] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5213), 13, + STATE(7255), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [175439] = 10, + ACTIONS(9176), 1, sym__alpha_identifier, - [175339] = 3, + ACTIONS(9184), 1, + sym__backtick_identifier, + ACTIONS(9599), 1, + anon_sym_LBRACK, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(8317), 1, + sym__simple_user_type, + STATE(8994), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7199), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7197), 13, + STATE(9350), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [175478] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [175364] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9810), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7238), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625523,51 +625918,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175401] = 5, - ACTIONS(9649), 1, - anon_sym_LT, - STATE(7668), 1, - sym_type_arguments, + [175515] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 4, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4169), 10, + STATE(7239), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [175552] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [175430] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9590), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7247), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625575,27 +625974,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175467] = 9, - ACTIONS(8656), 1, + [175589] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9559), 1, + STATE(9691), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625603,27 +626002,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175504] = 9, - ACTIONS(8656), 1, + [175626] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9536), 1, + STATE(10044), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, + STATE(7285), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625631,28 +626030,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175541] = 10, - ACTIONS(9404), 1, + [175663] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9651), 1, - anon_sym_LBRACK, - STATE(7242), 1, - sym_simple_identifier, - STATE(7300), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(7327), 1, - sym__simple_user_type, - STATE(7359), 1, - sym_user_type, + STATE(10043), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7854), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9410), 7, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625660,27 +626058,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175580] = 9, - ACTIONS(8656), 1, + [175700] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9498), 1, + STATE(10040), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, + STATE(7291), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625688,27 +626086,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175617] = 9, - ACTIONS(8656), 1, + [175737] = 10, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9601), 1, + anon_sym_LBRACK, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7935), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7249), 3, + STATE(7651), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625716,49 +626115,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175654] = 3, + [175776] = 6, + ACTIONS(9609), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7127), 3, + ACTIONS(9606), 2, anon_sym_AT, + sym__backtick_identifier, + ACTIONS(9611), 2, + anon_sym_dynamic, + anon_sym_suspend, + ACTIONS(9613), 3, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + ACTIONS(9603), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [175807] = 5, + ACTIONS(9615), 1, anon_sym_LPAREN, + STATE(7132), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7048), 3, + anon_sym_AT, + anon_sym_RBRACK, sym__backtick_identifier, - ACTIONS(7125), 13, + ACTIONS(7046), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175679] = 9, - ACTIONS(8656), 1, + [175836] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9515), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7218), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625766,49 +626192,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175716] = 3, + [175873] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(10039), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7185), 13, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [175910] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [175741] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9569), 1, + STATE(9672), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625816,27 +626248,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175778] = 9, - ACTIONS(8656), 1, + [175947] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7222), 3, + STATE(7229), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625844,27 +626276,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175815] = 9, - ACTIONS(8656), 1, + [175984] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9653), 1, + STATE(9971), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625872,27 +626304,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175852] = 9, - ACTIONS(8656), 1, + [176021] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9680), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7254), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625900,15 +626332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175889] = 3, + [176058] = 4, + ACTIONS(8974), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7134), 3, + ACTIONS(3943), 5, anon_sym_AT, + anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT, sym__backtick_identifier, - ACTIONS(7132), 13, + ACTIONS(3938), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -625916,34 +626352,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [175914] = 10, - ACTIONS(9228), 1, + [176085] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9653), 1, - anon_sym_LBRACK, - STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(5653), 1, - sym__simple_user_type, - STATE(5725), 1, - sym_user_type, + STATE(9620), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5797), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9232), 7, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625951,27 +626383,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175953] = 9, - ACTIONS(8656), 1, + [176122] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9716), 1, + STATE(9920), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, + STATE(7300), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -625979,56 +626411,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [175990] = 10, - ACTIONS(9352), 1, - sym__alpha_identifier, - ACTIONS(9364), 1, - sym__backtick_identifier, - ACTIONS(9655), 1, - anon_sym_LBRACK, - STATE(3498), 1, - sym_simple_identifier, - STATE(3637), 1, - sym__lexical_identifier, - STATE(3657), 1, - sym__simple_user_type, - STATE(3778), 1, - sym_user_type, + [176159] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4000), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(9360), 7, + ACTIONS(3943), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(3938), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [176029] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [176184] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9661), 1, + STATE(9975), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176221] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7219), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626036,17 +626489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176066] = 3, + [176258] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, + ACTIONS(4095), 5, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT, sym__backtick_identifier, - ACTIONS(3990), 11, + ACTIONS(4093), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626058,28 +626511,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176091] = 10, - ACTIONS(9470), 1, + [176283] = 10, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(9478), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9657), 1, + ACTIONS(9617), 1, anon_sym_LBRACK, - STATE(7281), 1, + STATE(5611), 1, + sym__lexical_identifier, + STATE(5616), 1, sym_simple_identifier, - STATE(7501), 1, + STATE(5653), 1, sym__simple_user_type, - STATE(7566), 1, - sym__lexical_identifier, - STATE(7740), 1, + STATE(5725), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7851), 2, + STATE(5798), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9476), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626087,28 +626540,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176130] = 10, - ACTIONS(8656), 1, + [176322] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9659), 1, - anon_sym_LBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(8004), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7614), 2, + STATE(7253), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(8666), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626116,27 +626568,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176169] = 9, - ACTIONS(8656), 1, + [176359] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7221), 3, + STATE(7263), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626144,28 +626596,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176206] = 10, - ACTIONS(9460), 1, + [176396] = 10, + ACTIONS(9406), 1, sym__alpha_identifier, - ACTIONS(9468), 1, + ACTIONS(9414), 1, sym__backtick_identifier, - ACTIONS(9661), 1, + ACTIONS(9619), 1, anon_sym_LBRACK, - STATE(5665), 1, - sym__lexical_identifier, - STATE(5677), 1, + STATE(7139), 1, sym_simple_identifier, - STATE(5687), 1, + STATE(7206), 1, + sym__lexical_identifier, + STATE(7214), 1, sym__simple_user_type, - STATE(5707), 1, + STATE(7249), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5744), 2, + STATE(7328), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9466), 7, + ACTIONS(9412), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626173,27 +626625,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176245] = 9, - ACTIONS(8656), 1, + [176435] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9699), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7250), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626201,57 +626653,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176282] = 10, - ACTIONS(8656), 1, + [176472] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9659), 1, - anon_sym_LBRACK, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7614), 2, - sym_constructor_invocation, - sym__unescaped_annotation, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [176321] = 10, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9212), 1, - sym__backtick_identifier, - ACTIONS(9663), 1, - anon_sym_LBRACK, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, - sym__lexical_identifier, - STATE(8285), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(8863), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9421), 2, + STATE(7222), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9208), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626259,19 +626681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176360] = 3, + [176509] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 5, + ACTIONS(7135), 3, anon_sym_AT, - anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT, sym__backtick_identifier, - ACTIONS(4122), 11, + ACTIONS(7133), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -626281,27 +626703,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176385] = 9, - ACTIONS(8656), 1, + [176534] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9752), 1, + STATE(9798), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7312), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626309,27 +626731,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176422] = 9, - ACTIONS(8656), 1, + [176571] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9781), 1, + STATE(9792), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626337,27 +626759,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176459] = 9, - ACTIONS(8656), 1, + [176608] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9802), 1, + STATE(9796), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7321), 2, + STATE(7310), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626365,27 +626787,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176496] = 9, - ACTIONS(8656), 1, + [176645] = 10, + ACTIONS(9318), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9330), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9730), 1, + ACTIONS(9621), 1, + anon_sym_LBRACK, + STATE(3403), 1, sym_simple_identifier, + STATE(3621), 1, + sym__simple_user_type, + STATE(3703), 1, + sym__lexical_identifier, + STATE(3794), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(3921), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(9326), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626393,27 +626816,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176533] = 9, - ACTIONS(8656), 1, + [176684] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7253), 3, + STATE(7227), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626421,23 +626844,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176570] = 6, - ACTIONS(9671), 1, - anon_sym_LPAREN, + [176721] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9725), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9668), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(9673), 2, - anon_sym_dynamic, - anon_sym_suspend, - ACTIONS(9675), 3, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, - ACTIONS(9665), 8, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626445,28 +626872,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [176758] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [176601] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9531), 1, + STATE(9788), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7297), 2, + STATE(7311), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [176795] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7271), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626474,19 +626928,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176638] = 5, - ACTIONS(9677), 1, + [176832] = 5, + ACTIONS(9623), 1, anon_sym_DOT, - STATE(7336), 1, + STATE(7327), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 3, + ACTIONS(4072), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4143), 11, + ACTIONS(4070), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626498,27 +626952,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [176667] = 9, - ACTIONS(8656), 1, + [176861] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7238), 3, + STATE(7226), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626526,28 +626980,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176704] = 10, - ACTIONS(9238), 1, + [176898] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9244), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9679), 1, - anon_sym_LBRACK, - STATE(5680), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(5780), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(5803), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(5810), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5852), 2, + STATE(7228), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9242), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626555,27 +627008,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176743] = 9, - ACTIONS(8656), 1, + [176935] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7229), 3, + STATE(7234), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626583,27 +627036,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176780] = 9, - ACTIONS(8656), 1, + [176972] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7239), 3, + STATE(7246), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626611,27 +627064,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176817] = 9, - ACTIONS(8656), 1, + [177009] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9801), 1, + STATE(9843), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626639,27 +627092,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176854] = 9, - ACTIONS(8656), 1, + [177046] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7244), 3, + STATE(7237), 3, sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626667,18 +627120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176891] = 9, - ACTIONS(8656), 1, + [177083] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, @@ -626687,35 +627140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_constructor_invocation, sym__unescaped_annotation, aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [176928] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9865), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626723,27 +627148,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [176965] = 9, - ACTIONS(8656), 1, + [177120] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9866), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7324), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7267), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626751,45 +627176,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177002] = 5, - ACTIONS(9681), 1, - anon_sym_LPAREN, - STATE(7183), 1, - sym_value_arguments, + [177157] = 5, + ACTIONS(9625), 1, + anon_sym_DOT, + STATE(7327), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7096), 3, + ACTIONS(4131), 3, anon_sym_AT, - anon_sym_RBRACK, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7094), 11, + ACTIONS(4129), 11, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177031] = 5, - ACTIONS(9677), 1, - anon_sym_DOT, - STATE(7316), 1, - aux_sym_user_type_repeat1, + [177186] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 3, + ACTIONS(7093), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4162), 11, + ACTIONS(7091), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, @@ -626799,55 +627222,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177060] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9871), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [177097] = 9, - ACTIONS(8656), 1, + [177211] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9872), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7328), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7259), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626855,27 +627250,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177134] = 9, - ACTIONS(8656), 1, + [177248] = 10, + ACTIONS(9217), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9223), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9628), 1, + anon_sym_LBRACK, + STATE(5676), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(5772), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(5802), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(5827), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7259), 3, + STATE(5856), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(9221), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626883,27 +627279,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177171] = 9, - ACTIONS(8656), 1, + [177287] = 10, + ACTIONS(9382), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9390), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, + ACTIONS(9630), 1, + anon_sym_LBRACK, + STATE(5832), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(5840), 1, + sym__lexical_identifier, + STATE(5843), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(5866), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7261), 3, + STATE(6028), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(9388), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626911,28 +627308,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177208] = 10, - ACTIONS(1724), 1, + [177326] = 10, + ACTIONS(9344), 1, sym__alpha_identifier, - ACTIONS(1788), 1, + ACTIONS(9352), 1, sym__backtick_identifier, - ACTIONS(9683), 1, + ACTIONS(9632), 1, anon_sym_LBRACK, - STATE(5344), 1, - sym_simple_identifier, - STATE(5465), 1, + STATE(5657), 1, sym__lexical_identifier, - STATE(5474), 1, + STATE(5677), 1, + sym_simple_identifier, + STATE(5684), 1, sym__simple_user_type, - STATE(5489), 1, + STATE(5707), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5530), 2, + STATE(5742), 2, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(3092), 7, + ACTIONS(9350), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626940,15 +627337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177247] = 3, + [177365] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4981), 3, + ACTIONS(7147), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4979), 13, + ACTIONS(7145), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -626962,28 +627359,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177272] = 10, - ACTIONS(9264), 1, + [177390] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9685), 1, - anon_sym_LBRACK, - STATE(8327), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8328), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(8423), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(8675), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9380), 2, + STATE(7256), 3, sym_constructor_invocation, sym__unescaped_annotation, - ACTIONS(9266), 7, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -626991,73 +627387,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177311] = 3, + [177427] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9770), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(5185), 13, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [177464] = 10, + ACTIONS(1672), 1, sym__alpha_identifier, - [177336] = 5, - ACTIONS(9687), 1, - anon_sym_DOT, - STATE(7336), 1, - aux_sym_user_type_repeat1, + ACTIONS(1736), 1, + sym__backtick_identifier, + ACTIONS(9634), 1, + anon_sym_LBRACK, + STATE(5407), 1, + sym_simple_identifier, + STATE(5427), 1, + sym__simple_user_type, + STATE(5458), 1, + sym__lexical_identifier, + STATE(5538), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4187), 11, + STATE(5577), 2, + sym_constructor_invocation, + sym__unescaped_annotation, + ACTIONS(3048), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [177503] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [177365] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9806), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7272), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627065,15 +627472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177402] = 3, + [177540] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 3, + ACTIONS(7105), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5193), 13, + ACTIONS(7103), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -627087,27 +627494,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177427] = 9, - ACTIONS(8656), 1, + [177565] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9978), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7252), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627115,55 +627522,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177464] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9931), 1, - sym_simple_identifier, + [177602] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(4866), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4864), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [177501] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [177627] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9962), 1, + STATE(6584), 1, sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, + STATE(7289), 1, + sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7342), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7269), 3, + sym_constructor_invocation, + sym__unescaped_annotation, + aux_sym_file_annotation_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627171,111 +627572,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177538] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9392), 1, - anon_sym_AT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9956), 1, - sym_simple_identifier, + [177664] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(8666), 7, + ACTIONS(4870), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4868), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [177575] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, + [177689] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7245), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(4874), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4872), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [177612] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, + [177714] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7234), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(4878), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4876), 13, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [177649] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [177739] = 10, + ACTIONS(9416), 1, + sym__alpha_identifier, + ACTIONS(9424), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, + ACTIONS(9636), 1, + anon_sym_LBRACK, + STATE(7231), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(7299), 1, + sym__lexical_identifier, + STATE(7348), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7402), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7255), 3, + STATE(7842), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(9422), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627283,27 +627667,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177686] = 9, - ACTIONS(8656), 1, + [177778] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9473), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7241), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627311,27 +627695,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177723] = 9, - ACTIONS(8656), 1, + [177815] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9392), 1, + ACTIONS(9356), 1, anon_sym_AT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9593), 1, + STATE(9862), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, + STATE(7687), 2, sym__single_annotation, sym__multi_annotation, - ACTIONS(8666), 7, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627339,55 +627723,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177760] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, + [177852] = 5, + ACTIONS(9623), 1, + anon_sym_DOT, + STATE(7318), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7258), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(4105), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4103), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [177797] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [177881] = 10, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9601), 1, + anon_sym_LBRACK, + STATE(6361), 1, sym__lexical_identifier, STATE(6584), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(6621), 1, sym__simple_user_type, - STATE(7326), 1, + STATE(7289), 1, sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7266), 3, + STATE(7651), 2, sym_constructor_invocation, sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627395,27 +627776,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177834] = 9, - ACTIONS(8656), 1, + [177920] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(9356), 1, + anon_sym_AT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(9787), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, - STATE(7326), 1, - sym_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7267), 3, - sym_constructor_invocation, - sym__unescaped_annotation, - aux_sym_file_annotation_repeat1, - ACTIONS(8666), 7, + STATE(7323), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627423,15 +627804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177871] = 3, + [177957] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 3, + ACTIONS(4882), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5169), 13, + ACTIONS(4880), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -627445,19 +627826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177896] = 4, - ACTIONS(9030), 1, - anon_sym_COLON, + [177982] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, + ACTIONS(7111), 3, anon_sym_AT, - anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LT, sym__backtick_identifier, - ACTIONS(3990), 10, + ACTIONS(7109), 13, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -627465,29 +627842,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [177923] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, - ACTIONS(205), 1, - sym__backtick_identifier, - ACTIONS(9400), 1, + [178007] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4611), 1, - sym__simple_user_type, + STATE(1265), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4628), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1842), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627495,50 +627872,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [177959] = 9, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9690), 1, + [178039] = 5, + ACTIONS(9640), 1, anon_sym_DOT, - ACTIONS(9692), 1, - anon_sym_LPAREN, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, - sym_simple_identifier, + STATE(7559), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2697), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4072), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4070), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [177995] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [178067] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(2801), 1, + STATE(1205), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627547,53 +627921,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178027] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9384), 1, + [178099] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9642), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, + STATE(6547), 1, + sym_type_arguments, + STATE(8353), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9816), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [178063] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9692), 1, - anon_sym_LPAREN, - ACTIONS(9696), 1, + ACTIONS(4119), 3, anon_sym_DOT, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2710), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627601,26 +627945,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178099] = 9, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [178131] = 9, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9698), 1, - anon_sym_DOT, - STATE(3325), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(8329), 1, sym_simple_identifier, + STATE(8436), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2712), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(8311), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627628,49 +627973,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178135] = 5, - ACTIONS(9700), 1, + [178167] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(7859), 1, - sym_value_arguments, + STATE(1204), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7096), 2, - anon_sym_AT, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(7094), 11, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178163] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9446), 1, + [178199] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3671), 1, - sym__simple_user_type, + STATE(1198), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3816), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1652), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627678,23 +628022,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178199] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [178231] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9702), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(5381), 1, + STATE(3276), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627703,26 +628048,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178231] = 9, - ACTIONS(255), 1, + [178263] = 9, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9704), 1, + ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(9706), 1, + ACTIONS(9648), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3519), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2607), 2, + STATE(2253), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627730,26 +628075,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178267] = 9, - ACTIONS(255), 1, + [178299] = 9, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - ACTIONS(9708), 1, + ACTIONS(9650), 1, anon_sym_DOT, - STATE(2881), 1, + ACTIONS(9652), 1, + anon_sym_LPAREN, + STATE(5611), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(5814), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2422), 2, + STATE(5497), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627757,26 +628102,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178303] = 9, - ACTIONS(431), 1, + [178335] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9710), 1, - anon_sym_DOT, - STATE(3325), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2360), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(9568), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627784,23 +628129,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178339] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9712), 1, + [178371] = 9, + ACTIONS(9112), 1, + sym__alpha_identifier, + ACTIONS(9120), 1, + sym__backtick_identifier, + ACTIONS(9332), 1, anon_sym_LPAREN, - STATE(4062), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(2819), 1, + sym__lexical_identifier, + STATE(2872), 1, + sym_simple_identifier, + STATE(3085), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(3495), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627808,24 +628156,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [178371] = 7, - ACTIONS(6552), 1, + [178407] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9712), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(3320), 1, + STATE(4855), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627834,23 +628181,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178403] = 7, - ACTIONS(6552), 1, + [178439] = 9, + ACTIONS(9206), 1, + sym__alpha_identifier, + ACTIONS(9210), 1, + sym__backtick_identifier, + ACTIONS(9362), 1, + anon_sym_LPAREN, + STATE(5681), 1, + sym_simple_identifier, + STATE(5708), 1, + sym__lexical_identifier, + STATE(5761), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(5778), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9208), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178475] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9714), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3544), 1, + STATE(3281), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627859,23 +628233,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178435] = 7, - ACTIONS(6552), 1, + [178507] = 9, + ACTIONS(545), 1, + sym__alpha_identifier, + ACTIONS(623), 1, + sym__backtick_identifier, + ACTIONS(9396), 1, + anon_sym_LPAREN, + STATE(2784), 1, + sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2880), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(3047), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1858), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [178543] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9712), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3272), 1, + STATE(3285), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627884,23 +628285,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178467] = 7, - ACTIONS(6552), 1, + [178575] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9716), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(6571), 1, - sym_type_arguments, - STATE(8318), 1, + STATE(3282), 1, sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627909,26 +628310,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178499] = 9, - ACTIONS(9228), 1, + [178607] = 9, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9332), 1, anon_sym_LPAREN, - STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(5653), 1, + STATE(2872), 1, + sym_simple_identifier, + STATE(3085), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5826), 2, + STATE(3528), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9232), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627936,26 +628337,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178535] = 9, - ACTIONS(8656), 1, + [178643] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9658), 1, + anon_sym_DOT, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9495), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + STATE(1820), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627963,23 +628364,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178571] = 7, - ACTIONS(6552), 1, + [178679] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9712), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(3291), 1, + STATE(4126), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -627988,26 +628389,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178603] = 9, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9212), 1, - sym__backtick_identifier, - ACTIONS(9402), 1, + [178711] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, - sym__lexical_identifier, - STATE(8285), 1, - sym__simple_user_type, + STATE(3289), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5775), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9208), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628015,26 +628413,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178639] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [178743] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9664), 1, + anon_sym_DOT, + STATE(2894), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9542), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + STATE(1853), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628042,26 +628441,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178675] = 9, - ACTIONS(255), 1, + [178779] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - ACTIONS(9718), 1, + ACTIONS(9666), 1, anon_sym_DOT, - STATE(2881), 1, + ACTIONS(9668), 1, + anon_sym_LPAREN, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2322), 2, + STATE(2703), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628069,26 +628468,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178711] = 9, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, + [178815] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9656), 1, anon_sym_LPAREN, - ACTIONS(9720), 1, - anon_sym_DOT, - STATE(2881), 1, - sym__lexical_identifier, - STATE(3217), 1, - sym_simple_identifier, + STATE(3277), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2601), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628096,26 +628492,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178747] = 9, - ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + [178847] = 9, + ACTIONS(9112), 1, + sym__alpha_identifier, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9722), 1, - anon_sym_DOT, - ACTIONS(9724), 1, + ACTIONS(9332), 1, anon_sym_LPAREN, - STATE(5710), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(5799), 1, + STATE(2872), 1, sym_simple_identifier, + STATE(3085), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5429), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9260), 7, + STATE(3550), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628123,26 +628520,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178783] = 9, - ACTIONS(431), 1, + [178883] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9446), 1, + ACTIONS(9670), 1, + anon_sym_DOT, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3325), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3671), 1, - sym__simple_user_type, + STATE(904), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3800), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1652), 7, + STATE(613), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628150,26 +628547,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178819] = 9, - ACTIONS(9204), 1, + [178919] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9402), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + ACTIONS(9674), 1, + anon_sym_DOT, + STATE(3334), 1, sym__lexical_identifier, - STATE(8285), 1, - sym__simple_user_type, + STATE(3651), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5795), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9208), 7, + STATE(2621), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628177,23 +628574,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178855] = 7, - ACTIONS(6552), 1, + [178955] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9714), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4129), 1, + STATE(4067), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628202,26 +628599,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [178887] = 9, - ACTIONS(9214), 1, + [178987] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9726), 1, - anon_sym_DOT, - ACTIONS(9728), 1, + ACTIONS(9340), 1, anon_sym_LPAREN, - STATE(2856), 1, - sym__lexical_identifier, - STATE(3587), 1, + STATE(3332), 1, sym_simple_identifier, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3622), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2290), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9218), 7, + STATE(3730), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628229,26 +628626,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178923] = 9, - ACTIONS(255), 1, + [179023] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9730), 1, + ACTIONS(9676), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2621), 2, + STATE(2600), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628256,26 +628653,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178959] = 9, - ACTIONS(431), 1, + [179059] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9446), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(9678), 1, + anon_sym_DOT, + STATE(2894), 1, sym__lexical_identifier, - STATE(3671), 1, - sym__simple_user_type, + STATE(3240), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3784), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1652), 7, + STATE(1754), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628283,23 +628680,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [178995] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9694), 1, + [179095] = 9, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(3326), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + ACTIONS(9680), 1, + anon_sym_DOT, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3651), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(2643), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628307,24 +628707,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179027] = 7, - ACTIONS(6552), 1, + [179131] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9732), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4536), 1, + STATE(3441), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628333,23 +628732,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179059] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9734), 1, + [179163] = 9, + ACTIONS(9112), 1, + sym__alpha_identifier, + ACTIONS(9120), 1, + sym__backtick_identifier, + ACTIONS(9648), 1, anon_sym_LPAREN, - STATE(4679), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + ACTIONS(9682), 1, + anon_sym_DOT, + STATE(2819), 1, + sym__lexical_identifier, + STATE(3519), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(2299), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628357,24 +628759,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179091] = 7, - ACTIONS(6552), 1, + [179199] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(3328), 1, + STATE(4069), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628383,26 +628784,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179123] = 9, - ACTIONS(431), 1, + [179231] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9736), 1, + ACTIONS(9684), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2724), 2, + STATE(2412), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628410,23 +628811,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179159] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9702), 1, + [179267] = 9, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(4724), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + ACTIONS(9686), 1, + anon_sym_DOT, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3651), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(2671), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628434,24 +628838,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [179191] = 7, - ACTIONS(6552), 1, + [179303] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9714), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4052), 1, + STATE(821), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628460,53 +628863,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179223] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9692), 1, - anon_sym_LPAREN, - ACTIONS(9738), 1, - anon_sym_DOT, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2399), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [179259] = 9, - ACTIONS(431), 1, + [179335] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9740), 1, + ACTIONS(9688), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2604), 2, + STATE(1809), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628514,23 +628890,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179295] = 7, - ACTIONS(6552), 1, + [179371] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9732), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4534), 1, + STATE(4073), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628539,23 +628915,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179327] = 7, - ACTIONS(6552), 1, + [179403] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9732), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(4532), 1, + STATE(4932), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628564,26 +628940,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179359] = 9, - ACTIONS(255), 1, + [179435] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9742), 1, + ACTIONS(9692), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2168), 2, + STATE(1748), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [179471] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9642), 1, + anon_sym_LPAREN, + STATE(6547), 1, + sym_type_arguments, + STATE(8339), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628591,26 +628991,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179395] = 9, - ACTIONS(255), 1, sym__alpha_identifier, - ACTIONS(337), 1, + [179503] = 9, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9744), 1, + ACTIONS(9694), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2163), 2, + STATE(2396), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628618,74 +629019,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179431] = 7, - ACTIONS(6552), 1, + [179539] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(4873), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [179463] = 5, - ACTIONS(9746), 1, - anon_sym_DOT, - STATE(7581), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4145), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4143), 10, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179491] = 9, - ACTIONS(255), 1, + [179571] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9748), 1, + ACTIONS(9696), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2640), 2, + STATE(1735), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628693,23 +629071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179527] = 7, - ACTIONS(6552), 1, + [179607] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9714), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(4067), 1, + STATE(2961), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628718,53 +629096,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179559] = 9, - ACTIONS(431), 1, + [179639] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9340), 1, anon_sym_LPAREN, - ACTIONS(9750), 1, - anon_sym_DOT, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, + STATE(3332), 1, sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(2638), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [179595] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9752), 1, - anon_sym_DOT, - ACTIONS(9754), 1, - anon_sym_LPAREN, - STATE(813), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(925), 1, - sym_simple_identifier, + STATE(3622), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(445), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(3707), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628772,48 +629123,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179631] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9756), 1, + [179675] = 5, + ACTIONS(9698), 1, anon_sym_LPAREN, - STATE(1228), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(7840), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(7048), 2, + anon_sym_AT, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(7046), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179663] = 7, - ACTIONS(6552), 1, + [179703] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9714), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4054), 1, + STATE(3422), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628822,26 +629171,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179695] = 9, - ACTIONS(431), 1, + [179735] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9758), 1, + ACTIONS(9700), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2328), 2, + STATE(430), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628849,26 +629198,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179731] = 9, - ACTIONS(255), 1, + [179771] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9760), 1, + ACTIONS(9702), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2624), 2, + STATE(2413), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628876,26 +629225,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179767] = 9, - ACTIONS(431), 1, + [179807] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9762), 1, + ACTIONS(9704), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2622), 2, + STATE(2644), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628903,23 +629252,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [179803] = 7, - ACTIONS(6552), 1, + [179843] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9702), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(5387), 1, + STATE(4669), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628928,23 +629277,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179835] = 7, - ACTIONS(6552), 1, + [179875] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9732), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(5262), 1, + STATE(4644), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -628953,98 +629302,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [179867] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9756), 1, - anon_sym_LPAREN, - STATE(1227), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, + [179907] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - [179899] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9756), 1, - anon_sym_LPAREN, - STATE(854), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(4169), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [179931] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(2878), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(9706), 1, anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [179963] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9756), 1, - anon_sym_LPAREN, - STATE(1235), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(820), 1, + sym__lexical_identifier, + STATE(904), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(425), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629052,27 +629329,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [179943] = 9, + ACTIONS(9166), 1, sym__alpha_identifier, - [179995] = 9, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9652), 1, anon_sym_LPAREN, - ACTIONS(9764), 1, + ACTIONS(9708), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(5814), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2154), 2, + STATE(5496), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629080,26 +629356,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180031] = 9, - ACTIONS(345), 1, + [179979] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9766), 1, - anon_sym_DOT, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(598), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(9557), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629107,26 +629383,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180067] = 9, - ACTIONS(8656), 1, + [180015] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9380), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, + STATE(819), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(820), 1, + sym__lexical_identifier, + STATE(910), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9464), 2, + STATE(982), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629134,26 +629410,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180103] = 9, - ACTIONS(345), 1, + [180051] = 9, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9768), 1, - anon_sym_DOT, - STATE(813), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(8329), 1, sym_simple_identifier, + STATE(8436), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(456), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(8309), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629161,26 +629437,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180139] = 9, - ACTIONS(9214), 1, + [180087] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9458), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, + ACTIONS(9710), 1, + anon_sym_DOT, + STATE(2894), 1, sym__lexical_identifier, - STATE(3155), 1, - sym__simple_user_type, + STATE(3240), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3540), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9218), 7, + STATE(2430), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629188,26 +629464,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180175] = 9, - ACTIONS(8656), 1, + [180123] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9712), 1, + anon_sym_DOT, + STATE(3334), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9747), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + STATE(2414), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629215,23 +629491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180211] = 7, - ACTIONS(6552), 1, + [180159] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9732), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(5265), 1, + STATE(4645), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629240,23 +629516,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180243] = 7, - ACTIONS(6552), 1, + [180191] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(2857), 1, + STATE(4647), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629265,26 +629541,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180275] = 9, - ACTIONS(255), 1, + [180223] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9354), 1, anon_sym_LPAREN, - ACTIONS(9770), 1, - anon_sym_DOT, - STATE(2881), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(4616), 1, sym_simple_identifier, + STATE(4896), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2324), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + STATE(4997), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629292,26 +629568,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180311] = 9, - ACTIONS(255), 1, + [180259] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9772), 1, + ACTIONS(9714), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1969), 2, + STATE(438), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629319,23 +629595,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180347] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9702), 1, + [180295] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(4649), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + ACTIONS(9716), 1, + anon_sym_DOT, + STATE(820), 1, + sym__lexical_identifier, + STATE(904), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(601), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629343,24 +629622,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180331] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - [180379] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9732), 1, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9380), 1, anon_sym_LPAREN, - STATE(4673), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(910), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(987), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629368,24 +629649,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180367] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [180411] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(2799), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(9910), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629393,27 +629676,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180403] = 9, + ACTIONS(9206), 1, sym__alpha_identifier, - [180443] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9362), 1, anon_sym_LPAREN, - ACTIONS(9774), 1, - anon_sym_DOT, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, + STATE(5681), 1, sym_simple_identifier, + STATE(5708), 1, + sym__lexical_identifier, + STATE(5761), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2401), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(5767), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629421,23 +629703,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180479] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9714), 1, - anon_sym_LPAREN, - STATE(3545), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + [180439] = 10, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9184), 1, + sym__backtick_identifier, + ACTIONS(9718), 1, + anon_sym_COLON, + ACTIONS(9720), 1, + sym__automatic_semicolon, + STATE(5685), 1, + sym__lexical_identifier, + STATE(8655), 1, + sym_simple_identifier, + STATE(9521), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629445,24 +629731,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [180511] = 7, - ACTIONS(6552), 1, + [180477] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9732), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(4676), 1, + STATE(5264), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629471,26 +629756,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180543] = 9, - ACTIONS(431), 1, + [180509] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9776), 1, + ACTIONS(9722), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2667), 2, + STATE(436), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629498,23 +629783,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180579] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9732), 1, + [180545] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(4678), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(9658), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629522,27 +629810,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [180581] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [180611] = 9, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9778), 1, - anon_sym_DOT, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1942), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + STATE(9929), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629550,26 +629837,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180647] = 9, - ACTIONS(9228), 1, + [180617] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9780), 1, - anon_sym_DOT, - ACTIONS(9782), 1, + ACTIONS(9380), 1, anon_sym_LPAREN, - STATE(5615), 1, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, sym__lexical_identifier, - STATE(5824), 1, + STATE(910), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(988), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180653] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9672), 1, + anon_sym_LPAREN, + ACTIONS(9724), 1, + anon_sym_DOT, + STATE(820), 1, + sym__lexical_identifier, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5512), 2, + STATE(609), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9232), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629577,26 +629891,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180683] = 9, - ACTIONS(345), 1, + [180689] = 8, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9439), 1, anon_sym_LPAREN, - ACTIONS(9784), 1, - anon_sym_DOT, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(8545), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(613), 2, + STATE(9376), 3, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + sym__lambda_parameter, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [180723] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(2775), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629604,26 +629941,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180719] = 9, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + [180755] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9786), 1, + ACTIONS(9726), 1, anon_sym_DOT, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(459), 2, + STATE(439), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629631,26 +629969,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180755] = 9, - ACTIONS(345), 1, + [180791] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9480), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9728), 1, + anon_sym_DOT, + STATE(820), 1, sym__lexical_identifier, - STATE(821), 1, + STATE(904), 1, sym_simple_identifier, - STATE(911), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(939), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1664), 7, + STATE(426), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629658,26 +629996,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180791] = 9, - ACTIONS(255), 1, + [180827] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9788), 1, + ACTIONS(9730), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2343), 2, + STATE(617), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629685,23 +630023,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180827] = 7, - ACTIONS(6552), 1, + [180863] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9756), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(861), 1, + STATE(4120), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629710,23 +630048,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180859] = 7, - ACTIONS(6552), 1, + [180895] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9712), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4077), 1, + STATE(1238), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629735,23 +630073,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180891] = 7, - ACTIONS(6552), 1, + [180927] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9702), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(4644), 1, + STATE(5266), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629760,26 +630098,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180923] = 9, - ACTIONS(345), 1, + [180959] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9480), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(9732), 1, + anon_sym_DOT, + STATE(2894), 1, sym__lexical_identifier, - STATE(821), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(911), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(928), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1664), 7, + STATE(2420), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629787,23 +630125,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [180959] = 7, - ACTIONS(6552), 1, + [180995] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9756), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(859), 1, + STATE(3523), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629812,47 +630150,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [180991] = 3, + [181027] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, + anon_sym_LPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 4, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4305), 11, + STATE(9861), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [181015] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9692), 1, + [181063] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9690), 1, anon_sym_LPAREN, - ACTIONS(9790), 1, - anon_sym_DOT, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, - sym_simple_identifier, + STATE(4959), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2669), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629860,23 +630201,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181051] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [181095] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(2835), 1, + STATE(2852), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629885,26 +630227,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181083] = 9, - ACTIONS(8656), 1, + [181127] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9734), 1, + anon_sym_DOT, + STATE(3334), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9712), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + STATE(2409), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629912,26 +630254,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181119] = 9, - ACTIONS(345), 1, + [181163] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9792), 1, + ACTIONS(9736), 1, anon_sym_DOT, - STATE(813), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(560), 2, + STATE(2636), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629939,26 +630281,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181155] = 9, - ACTIONS(345), 1, + [181199] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9794), 1, + ACTIONS(9738), 1, anon_sym_DOT, - STATE(813), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(436), 2, + STATE(2371), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629966,26 +630308,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181191] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + [181235] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9742), 3, + anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(9480), 1, + ACTIONS(9740), 12, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_in, + anon_sym_suspend, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [181259] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9642), 1, anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(821), 1, - sym_simple_identifier, - STATE(911), 1, - sym__simple_user_type, + STATE(6547), 1, + sym_type_arguments, + STATE(8344), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(936), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1664), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -629993,26 +630353,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181227] = 9, - ACTIONS(9214), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + [181291] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9728), 1, + ACTIONS(9342), 1, anon_sym_LPAREN, - ACTIONS(9796), 1, - anon_sym_DOT, - STATE(2856), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3587), 1, + STATE(2912), 1, sym_simple_identifier, + STATE(3109), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2305), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9218), 7, + STATE(3300), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630020,26 +630381,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181263] = 9, - ACTIONS(345), 1, + [181327] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9798), 1, - anon_sym_DOT, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(584), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(9664), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630047,26 +630408,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181299] = 9, - ACTIONS(431), 1, + [181363] = 9, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9652), 1, anon_sym_LPAREN, - ACTIONS(9800), 1, + ACTIONS(9744), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(5814), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2384), 2, + STATE(5526), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630074,23 +630435,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181335] = 7, - ACTIONS(6552), 1, + [181399] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9702), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4642), 1, + STATE(4666), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630099,26 +630460,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181367] = 9, - ACTIONS(345), 1, + [181431] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9802), 1, - anon_sym_DOT, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(426), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(9860), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630126,26 +630487,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181403] = 9, - ACTIONS(431), 1, + [181467] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9342), 1, anon_sym_LPAREN, - ACTIONS(9804), 1, - anon_sym_DOT, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(2912), 1, sym_simple_identifier, + STATE(3109), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2677), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + STATE(3343), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630153,26 +630514,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181439] = 9, - ACTIONS(8656), 1, + [181503] = 9, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(5616), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(5653), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9741), 2, + STATE(5822), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630180,23 +630541,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181475] = 7, - ACTIONS(6552), 1, + [181539] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9734), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(4640), 1, + STATE(2793), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630205,26 +630566,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181507] = 9, - ACTIONS(255), 1, + [181571] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9386), 1, + ACTIONS(9340), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2930), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(3235), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3622), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3334), 2, + STATE(3748), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630232,26 +630593,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181543] = 9, - ACTIONS(8656), 1, + [181607] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8291), 2, + STATE(9892), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630259,53 +630620,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181579] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9692), 1, - anon_sym_LPAREN, - ACTIONS(9806), 1, + [181643] = 5, + ACTIONS(9640), 1, anon_sym_DOT, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, - sym_simple_identifier, + STATE(7354), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2713), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4105), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4103), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [181615] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9384), 1, + [181671] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6584), 1, - sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, + STATE(814), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8312), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630313,47 +630667,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181651] = 3, + sym__alpha_identifier, + [181703] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 4, + ACTIONS(3943), 5, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_LT, sym__backtick_identifier, - ACTIONS(4187), 11, + ACTIONS(3938), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181675] = 9, - ACTIONS(8656), 1, + [181727] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9746), 1, + anon_sym_DOT, + STATE(3334), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9643), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + STATE(2630), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630361,26 +630716,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181711] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9754), 1, + [181763] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9690), 1, anon_sym_LPAREN, - ACTIONS(9808), 1, - anon_sym_DOT, - STATE(813), 1, - sym__lexical_identifier, - STATE(925), 1, - sym_simple_identifier, + STATE(5271), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(427), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630388,23 +630740,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181747] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [181795] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9810), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(6571), 1, - sym_type_arguments, - STATE(8335), 1, + STATE(2963), 1, sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630413,26 +630766,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181779] = 9, - ACTIONS(8656), 1, + [181827] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9748), 1, + anon_sym_DOT, + STATE(820), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(904), 1, sym_simple_identifier, - STATE(6626), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8316), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + STATE(615), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630440,23 +630793,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181815] = 7, - ACTIONS(6552), 1, + [181863] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9714), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(3290), 1, + STATE(4886), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630465,26 +630818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181847] = 9, - ACTIONS(8656), 1, + [181895] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(6626), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8291), 2, + STATE(9671), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630492,23 +630845,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181883] = 7, - ACTIONS(6552), 1, + [181931] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9702), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(5397), 1, + STATE(4533), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630517,26 +630870,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [181915] = 9, - ACTIONS(8656), 1, + [181963] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8316), 2, + STATE(9977), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630544,26 +630897,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181951] = 9, - ACTIONS(345), 1, + [181999] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9812), 1, + ACTIONS(9750), 1, anon_sym_DOT, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(607), 2, + STATE(445), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630571,26 +630924,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [181987] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9754), 1, + [182035] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9690), 1, anon_sym_LPAREN, - ACTIONS(9814), 1, - anon_sym_DOT, - STATE(813), 1, - sym__lexical_identifier, - STATE(925), 1, - sym_simple_identifier, + STATE(4539), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(422), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630598,26 +630948,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182023] = 9, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9754), 1, + [182067] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9654), 1, anon_sym_LPAREN, - ACTIONS(9816), 1, - anon_sym_DOT, - STATE(813), 1, - sym__lexical_identifier, - STATE(925), 1, - sym_simple_identifier, + STATE(4665), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(434), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630625,53 +630973,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182059] = 9, - ACTIONS(9204), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + [182099] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9402), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8285), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5791), 2, + STATE(10022), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9208), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [182095] = 9, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9262), 1, - sym__backtick_identifier, - ACTIONS(9724), 1, - anon_sym_LPAREN, - ACTIONS(9818), 1, - anon_sym_DOT, - STATE(5710), 1, - sym__lexical_identifier, - STATE(5799), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5426), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9260), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630679,23 +631001,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182131] = 7, - ACTIONS(6552), 1, + [182135] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9712), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(2927), 1, + STATE(2966), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630704,26 +631026,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182163] = 9, - ACTIONS(8656), 1, + [182167] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(6621), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9591), 2, + STATE(8308), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630731,23 +631053,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182199] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9714), 1, + [182203] = 9, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(9336), 1, anon_sym_LPAREN, - STATE(4125), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4542), 1, + sym_simple_identifier, + STATE(4597), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(4621), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630755,45 +631080,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182239] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [182231] = 3, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, + anon_sym_LPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 4, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4256), 11, + STATE(8311), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [182275] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [182255] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9810), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6571), 1, - sym_type_arguments, - STATE(8329), 1, - sym_function_value_parameters, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6584), 1, + sym_simple_identifier, + STATE(6621), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(8309), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630801,24 +631134,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182311] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [182287] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9716), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6571), 1, - sym_type_arguments, - STATE(8321), 1, - sym_function_value_parameters, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(8309), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630826,27 +631161,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182347] = 9, + ACTIONS(545), 1, sym__alpha_identifier, - [182319] = 9, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9396), 1, anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_DOT, - STATE(2881), 1, - sym__lexical_identifier, - STATE(3217), 1, + STATE(2784), 1, sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2880), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2460), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + STATE(3013), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630854,23 +631188,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182355] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9732), 1, + [182383] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9342), 1, anon_sym_LPAREN, - STATE(4920), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(2894), 1, + sym__lexical_identifier, + STATE(2912), 1, + sym_simple_identifier, + STATE(3109), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(3312), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630878,27 +631215,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [182419] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [182387] = 9, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9398), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(4584), 1, + ACTIONS(9752), 1, + anon_sym_DOT, + STATE(2894), 1, sym__lexical_identifier, - STATE(4646), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(4894), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4980), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1908), 7, + STATE(2677), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630906,26 +631242,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182423] = 9, - ACTIONS(9214), 1, + [182455] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9458), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(3155), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3518), 2, + STATE(10102), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9218), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630933,26 +631269,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182459] = 9, - ACTIONS(255), 1, + [182491] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9822), 1, + ACTIONS(9754), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2446), 2, + STATE(2399), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630960,23 +631296,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182495] = 7, - ACTIONS(6552), 1, + [182527] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9712), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(4083), 1, + STATE(4648), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -630985,26 +631321,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182527] = 9, - ACTIONS(8656), 1, + [182559] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9541), 2, + STATE(9805), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631012,26 +631348,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182563] = 9, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9386), 1, + [182595] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9758), 1, anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(2930), 1, - sym_simple_identifier, - STATE(3235), 1, - sym__simple_user_type, + STATE(6547), 1, + sym_type_arguments, + STATE(8328), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3283), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1437), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631039,26 +631372,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182599] = 9, - ACTIONS(345), 1, sym__alpha_identifier, - ACTIONS(427), 1, + [182627] = 9, + ACTIONS(9196), 1, + sym__alpha_identifier, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9824), 1, - anon_sym_DOT, - STATE(813), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(8329), 1, sym_simple_identifier, + STATE(8436), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(457), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(8308), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631066,26 +631400,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182635] = 9, - ACTIONS(255), 1, + [182663] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9826), 1, + ACTIONS(9760), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2672), 2, + STATE(2378), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631093,26 +631427,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182671] = 9, - ACTIONS(8656), 1, + [182699] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9354), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(4896), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9563), 2, + STATE(5002), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631120,26 +631454,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182707] = 9, - ACTIONS(345), 1, + [182735] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9828), 1, + ACTIONS(9762), 1, anon_sym_DOT, - STATE(813), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(423), 2, + STATE(2691), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631147,26 +631481,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182743] = 9, - ACTIONS(255), 1, + [182771] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9386), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2930), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(3235), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3289), 2, + STATE(9904), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631174,53 +631508,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182779] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9754), 1, + [182807] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9654), 1, anon_sym_LPAREN, - ACTIONS(9830), 1, - anon_sym_DOT, - STATE(813), 1, - sym__lexical_identifier, - STATE(925), 1, - sym_simple_identifier, + STATE(5295), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(588), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [182815] = 9, - ACTIONS(9214), 1, - sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(9458), 1, - anon_sym_LPAREN, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, - sym__lexical_identifier, - STATE(3155), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(3483), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9218), 7, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631228,23 +631532,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182851] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [182839] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3567), 1, + STATE(4637), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631253,53 +631558,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [182883] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9384), 1, - anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, + [182871] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9773), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(4236), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4234), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [182919] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [182895] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9500), 2, + STATE(8311), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631307,27 +631606,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182955] = 10, - ACTIONS(8549), 1, - anon_sym_LBRACE, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9212), 1, - sym__backtick_identifier, - ACTIONS(9832), 1, - anon_sym_COLON, - ACTIONS(9834), 1, - sym__automatic_semicolon, - STATE(5689), 1, - sym__lexical_identifier, - STATE(8710), 1, - sym_simple_identifier, - STATE(9492), 1, - sym_class_body, + [182931] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(4064), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631335,49 +631630,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [182993] = 5, - ACTIONS(9746), 1, + sym__alpha_identifier, + [182963] = 9, + ACTIONS(9112), 1, + sym__alpha_identifier, + ACTIONS(9120), 1, + sym__backtick_identifier, + ACTIONS(9648), 1, + anon_sym_LPAREN, + ACTIONS(9764), 1, anon_sym_DOT, - STATE(7398), 1, - aux_sym_user_type_repeat1, + STATE(2819), 1, + sym__lexical_identifier, + STATE(3519), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4162), 10, + STATE(2304), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [182999] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - [183021] = 9, - ACTIONS(9228), 1, - sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, + ACTIONS(9766), 1, + anon_sym_DOT, + STATE(3334), 1, sym__lexical_identifier, - STATE(5653), 1, - sym__simple_user_type, + STATE(3651), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5820), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9232), 7, + STATE(2374), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631385,26 +631685,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183057] = 9, - ACTIONS(345), 1, + [183035] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9836), 1, - anon_sym_DOT, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(599), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(9679), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631412,23 +631712,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183093] = 7, - ACTIONS(6552), 1, + [183071] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9702), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(5274), 1, + STATE(5308), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631437,26 +631737,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183125] = 9, - ACTIONS(9214), 1, + [183103] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9728), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9838), 1, + ACTIONS(9768), 1, anon_sym_DOT, - STATE(2856), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3587), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2292), 2, + STATE(459), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9218), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631464,23 +631764,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183161] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9756), 1, + [183139] = 9, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(9336), 1, anon_sym_LPAREN, - STATE(1245), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(4534), 1, + sym__lexical_identifier, + STATE(4542), 1, + sym_simple_identifier, + STATE(4597), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(4632), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631488,24 +631791,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [183193] = 7, - ACTIONS(6552), 1, + [183175] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9734), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4633), 1, + STATE(5303), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631514,26 +631816,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183225] = 9, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, + [183207] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9690), 1, anon_sym_LPAREN, - ACTIONS(9840), 1, - anon_sym_DOT, - STATE(2881), 1, - sym__lexical_identifier, - STATE(3217), 1, - sym_simple_identifier, + STATE(4927), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2444), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631541,23 +631840,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183261] = 7, - ACTIONS(6552), 1, + sym__alpha_identifier, + [183239] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9702), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(5275), 1, + STATE(2876), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631566,26 +631866,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183293] = 9, - ACTIONS(7), 1, + [183271] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9398), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(4584), 1, + ACTIONS(9770), 1, + anon_sym_DOT, + STATE(3334), 1, sym__lexical_identifier, - STATE(4646), 1, + STATE(3651), 1, sym_simple_identifier, - STATE(4894), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5041), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1908), 7, + STATE(2366), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631593,26 +631893,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183329] = 9, - ACTIONS(345), 1, + [183307] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9842), 1, + ACTIONS(9772), 1, anon_sym_DOT, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(446), 2, + STATE(2451), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631620,23 +631920,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183365] = 7, - ACTIONS(6552), 1, + [183343] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9714), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3342), 1, + STATE(3633), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631645,51 +631945,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183397] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(5279), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + [183375] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4131), 4, + anon_sym_AT, anon_sym_DOT, - sym__quest, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4129), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183429] = 9, - ACTIONS(8656), 1, + [183399] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9774), 1, + anon_sym_DOT, + STATE(2894), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9514), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + STATE(2362), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631697,26 +631993,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183465] = 9, - ACTIONS(255), 1, + [183435] = 9, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9338), 1, anon_sym_LPAREN, - ACTIONS(9844), 1, - anon_sym_DOT, - STATE(2881), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(5616), 1, sym_simple_identifier, + STATE(5653), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2369), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + STATE(5833), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631724,23 +632020,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183501] = 7, - ACTIONS(6552), 1, + [183471] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9712), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(3638), 1, + STATE(4136), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631749,23 +632045,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183533] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9712), 1, + [183503] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2924), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + ACTIONS(9776), 1, + anon_sym_DOT, + STATE(2894), 1, + sym__lexical_identifier, + STATE(3240), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(2364), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631773,27 +632072,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [183565] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9754), 1, + [183539] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9638), 1, anon_sym_LPAREN, - ACTIONS(9846), 1, - anon_sym_DOT, - STATE(813), 1, - sym__lexical_identifier, - STATE(925), 1, - sym_simple_identifier, + STATE(834), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(612), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631801,26 +632096,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183601] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [183571] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9489), 2, + STATE(9833), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631828,23 +632124,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183637] = 7, - ACTIONS(6552), 1, + [183607] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(2771), 1, + STATE(4538), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631853,26 +632149,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183669] = 9, - ACTIONS(9228), 1, + [183639] = 9, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9782), 1, - anon_sym_LPAREN, - ACTIONS(9848), 1, + ACTIONS(9778), 1, anon_sym_DOT, - STATE(5615), 1, + ACTIONS(9780), 1, + anon_sym_LPAREN, + STATE(5708), 1, sym__lexical_identifier, - STATE(5824), 1, + STATE(5801), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5486), 2, + STATE(5483), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9232), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631880,23 +632176,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183705] = 7, - ACTIONS(6552), 1, + [183675] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9756), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(1285), 1, + STATE(3635), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631905,26 +632201,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183737] = 9, - ACTIONS(8656), 1, + [183707] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(9782), 1, + anon_sym_DOT, + STATE(2894), 1, + sym__lexical_identifier, + STATE(3240), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2325), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183743] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9565), 2, + STATE(9559), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631932,26 +632255,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183773] = 9, - ACTIONS(8656), 1, + [183779] = 9, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9362), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(8317), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9588), 2, + STATE(5767), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631959,26 +632282,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183809] = 9, - ACTIONS(345), 1, + [183815] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9850), 1, + ACTIONS(9784), 1, anon_sym_DOT, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(568), 2, + STATE(2448), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183851] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9638), 1, + anon_sym_LPAREN, + STATE(833), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -631986,26 +632333,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183845] = 9, - ACTIONS(9258), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + [183883] = 9, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9402), 1, + ACTIONS(9368), 1, anon_sym_LPAREN, - STATE(5678), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(5710), 1, + STATE(4535), 1, sym__lexical_identifier, - STATE(5761), 1, + STATE(4620), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5775), 2, + STATE(4900), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9260), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632013,26 +632361,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183881] = 9, - ACTIONS(8656), 1, + [183919] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9635), 2, + STATE(9649), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632040,26 +632388,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183917] = 9, - ACTIONS(8656), 1, + [183955] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9660), 1, + anon_sym_LPAREN, + ACTIONS(9786), 1, + anon_sym_DOT, + STATE(2894), 1, + sym__lexical_identifier, + STATE(3240), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2316), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [183991] = 9, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + ACTIONS(9336), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(4597), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9652), 2, + STATE(4635), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632067,23 +632442,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [183953] = 7, - ACTIONS(6552), 1, + [184027] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9714), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(3542), 1, + STATE(3288), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632092,26 +632467,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [183985] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9384), 1, + [184059] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, + STATE(813), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8312), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632119,26 +632491,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184021] = 9, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [184091] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9852), 1, + ACTIONS(9788), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2398), 2, + STATE(2354), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632146,23 +632519,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184057] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9694), 1, + [184127] = 9, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9142), 1, + sym__backtick_identifier, + ACTIONS(9368), 1, anon_sym_LPAREN, - STATE(3566), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4620), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(4902), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632170,52 +632546,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184163] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - [184089] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9810), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6571), 1, - sym_type_arguments, - STATE(8350), 1, - sym_function_value_parameters, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(9690), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184199] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4246), 4, + anon_sym_AT, anon_sym_DOT, - sym__quest, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4244), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184121] = 9, - ACTIONS(345), 1, + [184223] = 9, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9362), 1, anon_sym_LPAREN, - ACTIONS(9854), 1, - anon_sym_DOT, - STATE(813), 1, - sym__lexical_identifier, - STATE(925), 1, + STATE(5681), 1, sym_simple_identifier, + STATE(5708), 1, + sym__lexical_identifier, + STATE(5761), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(609), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + STATE(5779), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632223,23 +632621,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184157] = 7, - ACTIONS(6552), 1, + [184259] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9756), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(1244), 1, + STATE(831), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632248,51 +632646,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184189] = 7, - ACTIONS(6552), 1, + [184291] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9702), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(4761), 1, + STATE(3640), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [184323] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4148), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184221] = 9, - ACTIONS(431), 1, + [184347] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9856), 1, + ACTIONS(9790), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(2894), 1, + sym__lexical_identifier, + STATE(3240), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2455), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184383] = 9, + ACTIONS(9206), 1, + sym__alpha_identifier, + ACTIONS(9210), 1, + sym__backtick_identifier, + ACTIONS(9780), 1, + anon_sym_LPAREN, + ACTIONS(9792), 1, + anon_sym_DOT, + STATE(5708), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(5801), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2413), 2, + STATE(5482), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632300,23 +632746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184257] = 7, - ACTIONS(6552), 1, + [184419] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9694), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(3565), 1, + STATE(5413), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632325,23 +632771,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184289] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9714), 1, + [184451] = 9, + ACTIONS(9166), 1, + sym__alpha_identifier, + ACTIONS(9174), 1, + sym__backtick_identifier, + ACTIONS(9338), 1, anon_sym_LPAREN, - STATE(4093), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(5611), 1, + sym__lexical_identifier, + STATE(5616), 1, + sym_simple_identifier, + STATE(5653), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(5829), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632349,27 +632798,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184487] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [184321] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9858), 1, + ACTIONS(9794), 1, anon_sym_DOT, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(565), 2, + STATE(2376), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632377,23 +632825,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184357] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9712), 1, + [184523] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(3634), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(9769), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632401,27 +632852,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184559] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - [184389] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9860), 1, + ACTIONS(9796), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2417), 2, + STATE(2731), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632429,26 +632879,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184425] = 9, - ACTIONS(255), 1, + [184595] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9862), 1, + ACTIONS(9798), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2453), 2, + STATE(2334), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [184631] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9654), 1, + anon_sym_LPAREN, + STATE(5402), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632456,26 +632930,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184461] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [184663] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(8297), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9480), 2, + STATE(10077), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632483,26 +632958,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184497] = 9, - ACTIONS(115), 1, + [184699] = 9, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9400), 1, + ACTIONS(9396), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(4611), 1, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2880), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4624), 2, + STATE(3034), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632510,23 +632985,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184533] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9732), 1, + [184735] = 9, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(4914), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + ACTIONS(9800), 1, + anon_sym_DOT, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3651), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(2734), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632534,24 +633012,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184771] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - [184565] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9732), 1, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(5270), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + ACTIONS(9802), 1, + anon_sym_DOT, + STATE(820), 1, + sym__lexical_identifier, + STATE(904), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(610), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632559,24 +633039,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [184597] = 7, - ACTIONS(6552), 1, + [184807] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9732), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(4957), 1, + STATE(3517), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632585,44 +633064,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184629] = 3, + [184839] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9334), 1, + anon_sym_LPAREN, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4311), 4, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4309), 11, + STATE(9698), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [184653] = 7, - ACTIONS(6552), 1, + [184875] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9756), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(819), 1, + STATE(3271), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632631,26 +633116,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184685] = 9, - ACTIONS(431), 1, + [184907] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9864), 1, + ACTIONS(9804), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2344), 2, + STATE(2652), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632658,22 +633143,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184721] = 6, - ACTIONS(9868), 1, - anon_sym_AT, + [184943] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9672), 1, + anon_sym_LPAREN, + ACTIONS(9806), 1, + anon_sym_DOT, + STATE(820), 1, + sym__lexical_identifier, + STATE(904), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9871), 2, - anon_sym_LPAREN, - sym__backtick_identifier, - STATE(7552), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9866), 8, + STATE(451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632681,27 +633170,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [184979] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - [184751] = 9, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9873), 1, + ACTIONS(9808), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2434), 2, + STATE(555), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632709,48 +633197,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184787] = 7, - ACTIONS(6552), 1, + [185015] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9716), 1, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(6571), 1, - sym_type_arguments, - STATE(8326), 1, + STATE(4646), 1, sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [185047] = 5, + ACTIONS(9810), 1, + anon_sym_DOT, + STATE(7559), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4131), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4129), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184819] = 7, - ACTIONS(6552), 1, + [185075] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9712), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(2923), 1, + STATE(2866), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632759,26 +633270,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [184851] = 9, - ACTIONS(8656), 1, + [185107] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9813), 1, + anon_sym_DOT, + STATE(3334), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9505), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + STATE(2375), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632786,26 +633297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184887] = 9, - ACTIONS(9264), 1, - sym__alpha_identifier, - ACTIONS(9270), 1, - sym__backtick_identifier, - ACTIONS(9384), 1, + [185143] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9758), 1, anon_sym_LPAREN, - STATE(8327), 1, - sym__lexical_identifier, - STATE(8328), 1, - sym_simple_identifier, - STATE(8423), 1, - sym__simple_user_type, + STATE(6547), 1, + sym_type_arguments, + STATE(8324), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8312), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9266), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632813,26 +633321,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184923] = 9, - ACTIONS(9192), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + [185175] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9388), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(4529), 1, + ACTIONS(9815), 1, + anon_sym_DOT, + STATE(820), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(904), 1, sym_simple_identifier, - STATE(4669), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4907), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9196), 7, + STATE(559), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632840,26 +633349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184959] = 9, - ACTIONS(431), 1, + [185211] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9875), 1, + ACTIONS(9817), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2335), 2, + STATE(441), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632867,26 +633376,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [184995] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9384), 1, + [185247] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, + STATE(4078), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9507), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632894,26 +633400,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185031] = 9, - ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - ACTIONS(9390), 1, + [185279] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, - sym_simple_identifier, - STATE(2957), 1, - sym__simple_user_type, + STATE(5395), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3028), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1920), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632921,26 +633425,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185067] = 9, - ACTIONS(255), 1, sym__alpha_identifier, - ACTIONS(337), 1, + [185311] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9877), 1, + ACTIONS(9819), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1660), 2, + STATE(2615), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632948,26 +633453,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185103] = 9, - ACTIONS(9258), 1, + [185347] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9402), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5710), 1, + ACTIONS(9821), 1, + anon_sym_DOT, + STATE(820), 1, sym__lexical_identifier, - STATE(5761), 1, - sym__simple_user_type, + STATE(904), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5791), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9260), 7, + STATE(561), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -632975,26 +633480,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185139] = 9, - ACTIONS(255), 1, + [185383] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9879), 1, + ACTIONS(9823), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2326), 2, + STATE(2695), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633002,26 +633507,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185175] = 9, - ACTIONS(8656), 1, + [185419] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9825), 1, + anon_sym_DOT, + STATE(820), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(904), 1, sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9738), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + STATE(458), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633029,101 +633534,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185211] = 3, + [185455] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(3286), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, - anon_sym_AT, + ACTIONS(4119), 3, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LT, + sym__quest, sym__backtick_identifier, - ACTIONS(3990), 10, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185235] = 9, - ACTIONS(9264), 1, - sym__alpha_identifier, - ACTIONS(9270), 1, - sym__backtick_identifier, - ACTIONS(9384), 1, - anon_sym_LPAREN, - STATE(8327), 1, - sym__lexical_identifier, - STATE(8328), 1, - sym_simple_identifier, - STATE(8423), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8316), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9266), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [185271] = 9, - ACTIONS(255), 1, + [185487] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9881), 1, + ACTIONS(9827), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2365), 2, + STATE(2635), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [185307] = 9, - ACTIONS(9192), 1, - sym__alpha_identifier, - ACTIONS(9200), 1, - sym__backtick_identifier, - ACTIONS(9388), 1, - anon_sym_LPAREN, - STATE(4529), 1, - sym__lexical_identifier, - STATE(4541), 1, - sym_simple_identifier, - STATE(4669), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(4906), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9196), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633131,27 +633586,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185343] = 10, - ACTIONS(8549), 1, + [185523] = 10, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(9204), 1, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9883), 1, + ACTIONS(9829), 1, anon_sym_COLON, - ACTIONS(9885), 1, + ACTIONS(9831), 1, sym__automatic_semicolon, - STATE(5689), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(8758), 1, + STATE(8689), 1, sym_simple_identifier, - STATE(9691), 1, + STATE(9915), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633159,17 +633614,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185381] = 3, + [185561] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 5, + ACTIONS(4095), 5, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LT, sym__backtick_identifier, - ACTIONS(4122), 10, + ACTIONS(4093), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -633180,23 +633635,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185405] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9756), 1, + [185585] = 9, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9184), 1, + sym__backtick_identifier, + ACTIONS(9362), 1, anon_sym_LPAREN, - STATE(815), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(8317), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(5778), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633204,27 +633662,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [185621] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - [185437] = 9, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - ACTIONS(9887), 1, + ACTIONS(9833), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2688), 2, + STATE(2692), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633232,26 +633689,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185473] = 9, - ACTIONS(557), 1, + [185657] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9390), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(2770), 1, + ACTIONS(9835), 1, + anon_sym_DOT, + STATE(820), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(904), 1, sym_simple_identifier, - STATE(2957), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3054), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1920), 7, + STATE(452), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633259,50 +633716,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185509] = 9, - ACTIONS(345), 1, + [185693] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - ACTIONS(9889), 1, - anon_sym_DOT, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(8313), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(444), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [185545] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9756), 1, - anon_sym_LPAREN, - STATE(817), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(9985), 2, + sym_user_type, + sym_parenthesized_user_type, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633310,27 +633743,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [185577] = 9, + [185729] = 9, ACTIONS(7), 1, sym__alpha_identifier, ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9398), 1, + ACTIONS(9354), 1, anon_sym_LPAREN, - STATE(4584), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(4646), 1, + STATE(4616), 1, sym_simple_identifier, - STATE(4894), 1, + STATE(4896), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5023), 2, + STATE(5003), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1908), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633338,23 +633770,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185613] = 7, - ACTIONS(6552), 1, + [185765] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9714), 1, + ACTIONS(9758), 1, anon_sym_LPAREN, - STATE(3346), 1, - sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, + STATE(8330), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633363,26 +633795,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185645] = 9, - ACTIONS(557), 1, + [185797] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9390), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2770), 1, + ACTIONS(9837), 1, + anon_sym_DOT, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(2957), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3049), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(1920), 7, + STATE(2425), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633390,26 +633822,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185681] = 9, - ACTIONS(9192), 1, + [185833] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9388), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(4669), 1, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4921), 2, + STATE(9724), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9196), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633417,49 +633849,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185717] = 5, - ACTIONS(9891), 1, - anon_sym_DOT, - STATE(7581), 1, - aux_sym_user_type_repeat1, + [185869] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(2785), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 3, - anon_sym_AT, - anon_sym_LPAREN, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, sym__backtick_identifier, - ACTIONS(4187), 10, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [185745] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9384), 1, + [185901] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, + STATE(4063), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9900), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633467,26 +633898,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185781] = 9, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9692), 1, + [185933] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9656), 1, anon_sym_LPAREN, - ACTIONS(9894), 1, - anon_sym_DOT, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, - sym_simple_identifier, + STATE(3526), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2321), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633494,26 +633923,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185817] = 9, - ACTIONS(9264), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + [185965] = 9, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9384), 1, + ACTIONS(9368), 1, anon_sym_LPAREN, - STATE(8327), 1, - sym__lexical_identifier, - STATE(8328), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(8423), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4620), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8291), 2, + STATE(4905), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9266), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633521,26 +633951,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185853] = 9, - ACTIONS(9228), 1, + [186001] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9782), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9896), 1, + ACTIONS(9839), 1, anon_sym_DOT, - STATE(5615), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(5824), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5490), 2, + STATE(585), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9232), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633548,101 +633978,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [185889] = 9, - ACTIONS(9228), 1, + [186037] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9418), 1, + ACTIONS(9334), 1, anon_sym_LPAREN, - STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(5653), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(8313), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5818), 2, + STATE(8308), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(9232), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [185925] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9900), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(9898), 12, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_in, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, anon_sym_expect, anon_sym_actual, + [186073] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [185949] = 9, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - ACTIONS(9902), 1, + ACTIONS(9841), 1, anon_sym_DOT, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(563), 2, + STATE(2623), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [185985] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9384), 1, - anon_sym_LPAREN, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(8297), 1, - sym__simple_user_type, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(9779), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633650,23 +634032,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186021] = 7, - ACTIONS(6552), 1, + [186109] = 7, + ACTIONS(6454), 1, anon_sym_LT, - ACTIONS(9712), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(3631), 1, + STATE(1279), 1, sym_function_value_parameters, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, + ACTIONS(4119), 3, anon_sym_DOT, sym__quest, sym__backtick_identifier, - ACTIONS(4169), 8, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633675,26 +634057,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186053] = 9, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9262), 1, - sym__backtick_identifier, - ACTIONS(9402), 1, - anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5710), 1, - sym__lexical_identifier, - STATE(5761), 1, - sym__simple_user_type, + [186141] = 6, + ACTIONS(9845), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5795), 2, - sym_user_type, - sym_parenthesized_user_type, - ACTIONS(9260), 7, + ACTIONS(9848), 2, + anon_sym_LPAREN, + sym__backtick_identifier, + STATE(7591), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + ACTIONS(9843), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633702,26 +634080,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186089] = 9, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [186171] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - ACTIONS(9904), 1, + ACTIONS(9850), 1, anon_sym_DOT, - STATE(3325), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2389), 2, + STATE(589), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633729,25 +634108,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186125] = 8, - ACTIONS(8656), 1, + [186207] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9491), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(6073), 1, + ACTIONS(9852), 1, + anon_sym_DOT, + STATE(820), 1, sym__lexical_identifier, - STATE(8497), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(9459), 3, + STATE(593), 2, sym_variable_declaration, sym_multi_variable_declaration, - sym__lambda_parameter, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633755,26 +634135,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186159] = 9, - ACTIONS(115), 1, + [186243] = 9, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9400), 1, + ACTIONS(9362), 1, anon_sym_LPAREN, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4542), 1, + STATE(5681), 1, sym_simple_identifier, - STATE(4611), 1, + STATE(5685), 1, + sym__lexical_identifier, + STATE(8317), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4652), 2, + STATE(5779), 2, sym_user_type, sym_parenthesized_user_type, - ACTIONS(1842), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633782,23 +634162,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186195] = 7, - ACTIONS(6552), 1, - anon_sym_LT, - ACTIONS(9702), 1, + [186279] = 9, + ACTIONS(9206), 1, + sym__alpha_identifier, + ACTIONS(9210), 1, + sym__backtick_identifier, + ACTIONS(9780), 1, anon_sym_LPAREN, - STATE(4759), 1, - sym_function_value_parameters, - STATE(6571), 1, - sym_type_arguments, + ACTIONS(9854), 1, + anon_sym_DOT, + STATE(5708), 1, + sym__lexical_identifier, + STATE(5801), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 3, - anon_sym_DOT, - sym__quest, - sym__backtick_identifier, - ACTIONS(4169), 8, + STATE(5477), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633806,27 +634189,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [186227] = 9, - ACTIONS(9258), 1, - sym__alpha_identifier, - ACTIONS(9262), 1, - sym__backtick_identifier, - ACTIONS(9724), 1, + [186315] = 7, + ACTIONS(6454), 1, + anon_sym_LT, + ACTIONS(9656), 1, anon_sym_LPAREN, - ACTIONS(9906), 1, - anon_sym_DOT, - STATE(5710), 1, - sym__lexical_identifier, - STATE(5799), 1, - sym_simple_identifier, + STATE(3530), 1, + sym_function_value_parameters, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5437), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9260), 7, + ACTIONS(4119), 3, + anon_sym_DOT, + sym__quest, + sym__backtick_identifier, + ACTIONS(4117), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633834,25 +634213,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186263] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [186347] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(3808), 1, + STATE(2832), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633860,25 +634240,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186298] = 9, - ACTIONS(8656), 1, + [186382] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(5483), 1, + STATE(4987), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9249), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633886,25 +634266,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186333] = 9, - ACTIONS(255), 1, + [186417] = 9, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(5516), 1, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(9908), 1, + ACTIONS(9856), 1, anon_sym_COLON, - STATE(2881), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3513), 1, + STATE(4741), 1, sym_class_body, - STATE(4047), 1, + STATE(5280), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633912,24 +634292,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186368] = 8, - ACTIONS(255), 1, + [186452] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2326), 2, + STATE(2678), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633937,25 +634317,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186401] = 9, - ACTIONS(9192), 1, + [186485] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(4529), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(904), 1, sym_simple_identifier, - STATE(4599), 1, - sym__simple_user_type, - STATE(9926), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9196), 7, + STATE(593), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633963,25 +634342,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186436] = 9, - ACTIONS(8656), 1, + [186518] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(2975), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(589), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -633989,51 +634367,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186471] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9732), 1, + [186551] = 5, + ACTIONS(9858), 1, anon_sym_LPAREN, - STATE(4896), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, - sym_simple_identifier, + STATE(7862), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(7048), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7046), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [186506] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [186578] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(4897), 1, + STATE(4169), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9248), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634041,24 +634415,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186541] = 8, - ACTIONS(255), 1, + [186613] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2460), 2, + STATE(565), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634066,25 +634440,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186574] = 9, - ACTIONS(8656), 1, + [186646] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(4974), 1, + STATE(2827), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9272), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634092,50 +634466,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186609] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9756), 1, - anon_sym_LPAREN, - STATE(1408), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9449), 1, - sym__simple_user_type, + [186681] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(4150), 4, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4148), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [186644] = 8, - ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(569), 1, + [186704] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(351), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9910), 1, + ACTIONS(9861), 1, anon_sym_class, - STATE(2770), 1, + STATE(820), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3129), 2, + STATE(1074), 2, sym_parenthesized_expression, sym_simple_identifier, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634143,75 +634511,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186677] = 8, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, - anon_sym_LPAREN, - STATE(2881), 1, - sym__lexical_identifier, - STATE(3217), 1, - sym_simple_identifier, + [186737] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2337), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [186710] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(4236), 4, + anon_sym_AT, + anon_sym_DOT, anon_sym_LPAREN, - STATE(5417), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8666), 7, + sym__backtick_identifier, + ACTIONS(4234), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [186745] = 8, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [186760] = 8, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2345), 2, + STATE(2703), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634219,25 +634556,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186778] = 9, - ACTIONS(8656), 1, + [186793] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4212), 1, + STATE(846), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9334), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634245,25 +634582,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186813] = 9, - ACTIONS(8656), 1, + [186828] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(133), 1, anon_sym_LPAREN, - STATE(5015), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9863), 1, + anon_sym_class, + STATE(2894), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(3489), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634271,45 +634607,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186848] = 3, + [186861] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 3, + ACTIONS(4246), 4, anon_sym_AT, + anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7185), 11, + ACTIONS(4244), 10, anon_sym_get, anon_sym_set, - anon_sym_in, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [186871] = 9, - ACTIONS(345), 1, + [186884] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(3210), 1, - anon_sym_LBRACE, - ACTIONS(9912), 1, - anon_sym_COLON, - STATE(813), 1, + ACTIONS(9672), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(1083), 1, - sym_class_body, - STATE(2242), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + STATE(451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634317,24 +634652,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186906] = 8, - ACTIONS(345), 1, + [186917] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(557), 2, + STATE(452), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634342,25 +634677,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186939] = 9, - ACTIONS(8656), 1, + [186950] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(2838), 1, + STATE(4975), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9224), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634368,24 +634703,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [186974] = 8, - ACTIONS(431), 1, + [186985] = 9, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, - anon_sym_LPAREN, - STATE(3325), 1, + ACTIONS(9856), 1, + anon_sym_COLON, + STATE(4741), 1, + sym_class_body, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(8766), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2729), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634393,24 +634729,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187007] = 8, - ACTIONS(255), 1, + [187020] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2343), 2, + STATE(2371), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634418,25 +634754,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187040] = 9, - ACTIONS(8656), 1, + [187053] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(2837), 1, + STATE(1391), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9320), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634444,45 +634780,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187075] = 3, + [187088] = 8, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(475), 1, + anon_sym_LPAREN, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(9865), 1, + anon_sym_class, + STATE(3334), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 4, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4187), 10, + STATE(3969), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [187121] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - [187098] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(5062), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2375), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634490,25 +634830,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187133] = 9, - ACTIONS(8656), 1, + [187154] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3807), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(4616), 1, sym_simple_identifier, + STATE(4867), 1, + sym__simple_user_type, + STATE(9633), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634516,24 +634856,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187168] = 8, - ACTIONS(431), 1, + [187189] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(443), 1, - anon_sym_LPAREN, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9914), 1, - anon_sym_class, - STATE(3325), 1, + ACTIONS(9672), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, + STATE(904), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3869), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1652), 7, + STATE(570), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634541,24 +634881,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187201] = 8, - ACTIONS(431), 1, + [187222] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2414), 2, + STATE(458), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634566,24 +634906,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187234] = 8, - ACTIONS(345), 1, + [187255] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(565), 2, + STATE(2710), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634591,25 +634931,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187267] = 9, - ACTIONS(8656), 1, + [187288] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(3615), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(608), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634617,25 +634956,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187302] = 9, - ACTIONS(431), 1, + [187321] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(3298), 1, - sym_simple_identifier, - STATE(3325), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3400), 1, - sym__simple_user_type, - STATE(10048), 1, - sym_function_type_parameters, + STATE(904), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + STATE(561), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634643,25 +634981,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187337] = 9, - ACTIONS(8656), 1, + [187354] = 8, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - STATE(3708), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(5708), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(5801), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(5432), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634669,25 +635006,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187372] = 9, - ACTIONS(8656), 1, + [187387] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(3821), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2695), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634695,25 +635031,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187407] = 9, - ACTIONS(431), 1, + [187420] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(5812), 1, - anon_sym_LBRACE, - ACTIONS(9916), 1, - anon_sym_COLON, - STATE(3325), 1, + ACTIONS(9672), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(3932), 1, - sym_class_body, - STATE(4273), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + STATE(559), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634721,25 +635056,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187442] = 9, - ACTIONS(8656), 1, + [187453] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4765), 1, + STATE(5493), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634747,25 +635082,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187477] = 9, - ACTIONS(7), 1, + [187488] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(9918), 1, - anon_sym_COLON, - STATE(4584), 1, + ACTIONS(9668), 1, + anon_sym_LPAREN, + STATE(3334), 1, sym__lexical_identifier, - STATE(5169), 1, + STATE(3651), 1, sym_simple_identifier, - STATE(5172), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + STATE(2386), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634773,25 +635107,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187512] = 9, - ACTIONS(8656), 1, + [187521] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4574), 1, + STATE(838), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9310), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [187556] = 9, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(5444), 1, + anon_sym_LBRACE, + ACTIONS(9867), 1, + anon_sym_COLON, + STATE(2894), 1, + sym__lexical_identifier, + STATE(3552), 1, + sym_class_body, + STATE(4239), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634799,16 +635159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187547] = 3, + [187591] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 4, + ACTIONS(4131), 4, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4256), 10, + ACTIONS(4129), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -634819,25 +635179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [187570] = 9, - ACTIONS(8656), 1, + [187614] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(991), 1, + STATE(4891), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634845,25 +635205,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187605] = 9, - ACTIONS(8656), 1, + [187649] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(992), 1, + STATE(4985), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634871,24 +635231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187640] = 8, - ACTIONS(255), 1, + [187684] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3380), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2672), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634896,24 +635257,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187673] = 8, - ACTIONS(345), 1, + [187719] = 8, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(5708), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(5801), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(611), 2, + STATE(5482), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634921,24 +635282,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187706] = 8, - ACTIONS(255), 1, + [187752] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2422), 2, + STATE(602), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634946,24 +635307,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187739] = 8, - ACTIONS(345), 1, + [187785] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9920), 1, - anon_sym_class, - STATE(813), 1, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(3505), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1033), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634971,25 +635333,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187772] = 9, - ACTIONS(115), 1, + [187820] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(9922), 1, - anon_sym_COLON, - STATE(4537), 1, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(3822), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(4817), 1, - sym_class_body, - STATE(5301), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -634997,44 +635359,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187807] = 3, + [187855] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(3756), 1, + sym_function_value_parameters, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7127), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7125), 11, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [187890] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [187830] = 8, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2688), 2, + STATE(2652), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635042,25 +635410,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187863] = 9, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(8656), 1, + [187923] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9922), 1, - anon_sym_COLON, - STATE(4817), 1, - sym_class_body, - STATE(6073), 1, + ACTIONS(9668), 1, + anon_sym_LPAREN, + STATE(3334), 1, sym__lexical_identifier, - STATE(8661), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2734), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635068,24 +635435,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187898] = 8, - ACTIONS(255), 1, + [187956] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2440), 2, + STATE(2380), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635093,25 +635460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187931] = 9, - ACTIONS(8656), 1, + [187989] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4966), 1, + STATE(3718), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635119,25 +635486,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [187966] = 9, - ACTIONS(8656), 1, + [188024] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4966), 1, + STATE(4963), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635145,25 +635512,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188001] = 9, - ACTIONS(8656), 1, + [188059] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(4768), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2376), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635171,25 +635537,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188036] = 9, - ACTIONS(8656), 1, + [188092] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3798), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(9406), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2615), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635197,50 +635562,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188071] = 8, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(9692), 1, - anon_sym_LPAREN, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, - sym_simple_identifier, + [188125] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2373), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(7093), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7091), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [188104] = 9, - ACTIONS(431), 1, sym__alpha_identifier, - ACTIONS(511), 1, + [188148] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(5812), 1, + ACTIONS(5756), 1, anon_sym_LBRACE, - ACTIONS(9916), 1, + ACTIONS(9869), 1, anon_sym_COLON, - STATE(3325), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(3932), 1, - sym_class_body, - STATE(4214), 1, + STATE(4949), 1, sym_simple_identifier, + STATE(5155), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635248,24 +635608,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188139] = 8, - ACTIONS(9228), 1, + [188183] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9782), 1, - anon_sym_LPAREN, - STATE(5615), 1, + ACTIONS(3190), 1, + anon_sym_LBRACE, + ACTIONS(9871), 1, + anon_sym_COLON, + STATE(820), 1, sym__lexical_identifier, - STATE(5824), 1, + STATE(1098), 1, + sym_class_body, + STATE(2238), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5506), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9232), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635273,25 +635634,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188172] = 9, - ACTIONS(431), 1, + [188218] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(5812), 1, - anon_sym_LBRACE, - ACTIONS(9916), 1, - anon_sym_COLON, - STATE(3325), 1, + ACTIONS(9654), 1, + anon_sym_LPAREN, + STATE(5405), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3695), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(3932), 1, - sym_class_body, + STATE(9112), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635299,24 +635660,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188207] = 8, - ACTIONS(9214), 1, + [188253] = 9, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(9728), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2856), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(3587), 1, + STATE(8329), 1, sym_simple_identifier, + STATE(8375), 1, + sym__simple_user_type, + STATE(9567), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2258), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9218), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635324,25 +635686,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188240] = 9, - ACTIONS(255), 1, + [188288] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(5516), 1, - anon_sym_LBRACE, - ACTIONS(9908), 1, - anon_sym_COLON, - STATE(2881), 1, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(3799), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3076), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(3513), 1, - sym_class_body, + STATE(9306), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635350,24 +635712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188275] = 8, - ACTIONS(115), 1, + [188323] = 9, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(133), 1, - anon_sym_LPAREN, - ACTIONS(205), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9924), 1, - anon_sym_class, - STATE(4537), 1, + ACTIONS(3158), 1, + anon_sym_LBRACE, + ACTIONS(9873), 1, + anon_sym_COLON, + STATE(2802), 1, sym__lexical_identifier, + STATE(3170), 1, + sym_class_body, + STATE(3739), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4886), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1842), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635375,25 +635738,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188308] = 9, - ACTIONS(8656), 1, + [188358] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(1274), 1, + STATE(4891), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9218), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635401,25 +635764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188343] = 9, - ACTIONS(8656), 1, + [188393] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5062), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(2912), 1, sym_simple_identifier, + STATE(3030), 1, + sym__simple_user_type, + STATE(9838), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635427,25 +635790,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188378] = 9, - ACTIONS(8656), 1, + [188428] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(4896), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2384), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635453,25 +635815,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188413] = 9, - ACTIONS(557), 1, + [188461] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(3262), 1, - anon_sym_LBRACE, - ACTIONS(9926), 1, - anon_sym_COLON, - STATE(2770), 1, + ACTIONS(9690), 1, + anon_sym_LPAREN, + STATE(4892), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(2962), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, - STATE(3240), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635479,25 +635841,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188448] = 9, - ACTIONS(8656), 1, + [188496] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(4897), 1, + STATE(3713), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635505,25 +635867,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188483] = 9, - ACTIONS(345), 1, + [188531] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(3210), 1, + ACTIONS(5444), 1, anon_sym_LBRACE, - ACTIONS(9912), 1, + ACTIONS(9867), 1, anon_sym_COLON, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(865), 1, + STATE(3239), 1, sym_simple_identifier, - STATE(1083), 1, + STATE(3552), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635531,25 +635893,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188518] = 9, - ACTIONS(8656), 1, + [188566] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(827), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(610), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635557,25 +635918,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188553] = 9, - ACTIONS(8656), 1, + [188599] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(2812), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, + STATE(3332), 1, sym_simple_identifier, - STATE(9099), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3424), 1, sym__simple_user_type, + STATE(9982), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635583,50 +635944,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188588] = 8, - ACTIONS(9258), 1, + [188634] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9724), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(5710), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(5799), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5460), 2, + STATE(446), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9260), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [188621] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(4561), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635634,45 +635969,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188656] = 3, + [188667] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 4, + ACTIONS(7135), 3, anon_sym_AT, - anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4305), 10, + ACTIONS(7133), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [188679] = 9, - ACTIONS(8656), 1, + [188690] = 9, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3616), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(5681), 1, sym_simple_identifier, + STATE(5699), 1, + sym__simple_user_type, + STATE(5708), 1, + sym__lexical_identifier, + STATE(9581), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635680,24 +636015,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188714] = 8, - ACTIONS(431), 1, + [188725] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(1266), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9308), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2417), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635705,25 +636041,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188747] = 9, - ACTIONS(8656), 1, + [188760] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4559), 1, + STATE(5015), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9225), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635731,25 +636067,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188782] = 9, - ACTIONS(8656), 1, + [188795] = 9, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(3669), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(3158), 1, + anon_sym_LBRACE, + ACTIONS(9873), 1, + anon_sym_COLON, + STATE(2802), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(2958), 1, sym_simple_identifier, - STATE(9181), 1, - sym__simple_user_type, + STATE(3170), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635757,65 +636093,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188817] = 3, + [188830] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9660), 1, + anon_sym_LPAREN, + STATE(2894), 1, + sym__lexical_identifier, + STATE(3240), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4413), 4, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4411), 10, + STATE(2448), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [188863] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [188840] = 3, + ACTIONS(201), 1, + sym__backtick_identifier, + ACTIONS(9660), 1, + anon_sym_LPAREN, + STATE(2894), 1, + sym__lexical_identifier, + STATE(3240), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7199), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7197), 11, + STATE(2361), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [188896] = 9, + ACTIONS(9134), 1, sym__alpha_identifier, - [188863] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4135), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(7933), 1, + STATE(4530), 1, sym_simple_identifier, - STATE(9214), 1, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4591), 1, sym__simple_user_type, + STATE(10116), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635823,25 +636169,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188898] = 9, - ACTIONS(8656), 1, + [188931] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(4196), 1, + STATE(3027), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635849,24 +636195,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188933] = 8, - ACTIONS(431), 1, + [188966] = 9, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9692), 1, - anon_sym_LPAREN, - STATE(3325), 1, + ACTIONS(3158), 1, + anon_sym_LBRACE, + ACTIONS(9873), 1, + anon_sym_COLON, + STATE(2802), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3170), 1, + sym_class_body, + STATE(4044), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2335), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635874,25 +636221,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [188966] = 9, - ACTIONS(8656), 1, + [189001] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(3563), 1, + STATE(4792), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635900,24 +636247,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189001] = 8, - ACTIONS(345), 1, + [189036] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(609), 2, + STATE(2325), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635925,25 +636272,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189034] = 9, - ACTIONS(557), 1, + [189069] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2770), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(2805), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(2829), 1, - sym__simple_user_type, - STATE(9968), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + STATE(2364), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635951,25 +636297,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189069] = 9, - ACTIONS(8656), 1, + [189102] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(5451), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(904), 1, sym_simple_identifier, - STATE(9268), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(459), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -635977,51 +636322,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189104] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9714), 1, - anon_sym_LPAREN, - STATE(3561), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, - sym_simple_identifier, + [189135] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(7111), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7109), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [189139] = 9, - ACTIONS(3262), 1, - anon_sym_LBRACE, - ACTIONS(9192), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + [189158] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9926), 1, - anon_sym_COLON, - STATE(3240), 1, - sym_class_body, - STATE(4529), 1, + ACTIONS(9660), 1, + anon_sym_LPAREN, + STATE(2894), 1, sym__lexical_identifier, - STATE(5069), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9196), 7, + STATE(2677), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636029,25 +636367,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189174] = 9, - ACTIONS(8656), 1, + [189191] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(964), 1, + STATE(4147), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9127), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636055,24 +636393,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189209] = 8, - ACTIONS(431), 1, + [189226] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(4795), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2344), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636080,51 +636419,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189242] = 9, - ACTIONS(7), 1, - sym__alpha_identifier, - ACTIONS(111), 1, - sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(4584), 1, - sym__lexical_identifier, - STATE(4646), 1, - sym_simple_identifier, - STATE(4825), 1, - sym__simple_user_type, - STATE(9629), 1, - sym_function_type_parameters, + [189261] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(7147), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7145), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, - [189277] = 9, - ACTIONS(557), 1, sym__alpha_identifier, - ACTIONS(637), 1, + [189284] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(3262), 1, + ACTIONS(3190), 1, anon_sym_LBRACE, - ACTIONS(9926), 1, + ACTIONS(9871), 1, anon_sym_COLON, - STATE(2770), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3240), 1, - sym_class_body, - STATE(3732), 1, + STATE(875), 1, sym_simple_identifier, + STATE(1098), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636132,24 +636465,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189312] = 8, - ACTIONS(345), 1, + [189319] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7105), 3, + anon_sym_AT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(7103), 11, + anon_sym_get, + anon_sym_set, + anon_sym_in, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_out, + sym_reification_modifier, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [189342] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3691), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9312), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(451), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636157,24 +636511,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189345] = 8, - ACTIONS(345), 1, + [189377] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(444), 2, + STATE(2365), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636182,24 +636536,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189378] = 8, - ACTIONS(255), 1, + [189410] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3374), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2617), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636207,24 +636562,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189411] = 8, - ACTIONS(9228), 1, + [189445] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9782), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(5615), 1, + STATE(5456), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(5824), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9188), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5512), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9232), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636232,24 +636588,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189444] = 8, - ACTIONS(345), 1, + [189480] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(612), 2, + STATE(615), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [189513] = 6, + ACTIONS(9848), 1, + sym__backtick_identifier, + ACTIONS(9875), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(7687), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(7693), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + ACTIONS(9843), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636257,24 +636635,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189477] = 8, - ACTIONS(255), 1, sym__alpha_identifier, - ACTIONS(337), 1, + [189542] = 8, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2365), 2, + STATE(2366), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636282,25 +636661,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189510] = 9, - ACTIONS(8656), 1, + [189575] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(2988), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(5746), 1, + anon_sym_LBRACE, + ACTIONS(9878), 1, + anon_sym_COLON, + STATE(3334), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(3832), 1, + sym_class_body, + STATE(4279), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636308,25 +636687,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189545] = 9, - ACTIONS(8656), 1, + [189610] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3055), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2420), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636334,25 +636712,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189580] = 9, - ACTIONS(8656), 1, + [189643] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(858), 1, + STATE(4095), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636360,25 +636738,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189615] = 9, - ACTIONS(9214), 1, + [189678] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, + STATE(4985), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3005), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(9909), 1, - sym_function_type_parameters, + STATE(6584), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9218), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636386,25 +636764,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189650] = 9, - ACTIONS(8656), 1, + [189713] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(3583), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2374), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636412,25 +636789,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189685] = 9, - ACTIONS(8656), 1, + [189746] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4970), 1, + STATE(4096), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636438,25 +636815,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189720] = 9, - ACTIONS(8656), 1, + [189781] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(3585), 1, + STATE(3015), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9347), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636464,25 +636841,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189755] = 9, - ACTIONS(8656), 1, + [189816] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(4120), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2451), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636490,44 +636866,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189790] = 3, + [189849] = 9, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(9176), 1, + sym__alpha_identifier, + ACTIONS(9184), 1, + sym__backtick_identifier, + ACTIONS(9869), 1, + anon_sym_COLON, + STATE(5155), 1, + sym_class_body, + STATE(5685), 1, + sym__lexical_identifier, + STATE(8593), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4311), 4, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4309), 10, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [189884] = 8, + ACTIONS(9166), 1, sym__alpha_identifier, - [189813] = 8, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9652), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(5814), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(571), 2, + STATE(5509), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636535,25 +636917,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189846] = 9, - ACTIONS(8656), 1, + [189917] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4121), 1, + STATE(1414), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636561,25 +636943,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189881] = 9, - ACTIONS(8656), 1, + [189952] = 8, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9652), 1, anon_sym_LPAREN, - STATE(858), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(5814), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(5496), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636587,25 +636968,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189916] = 9, - ACTIONS(115), 1, + [189985] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(9922), 1, - anon_sym_COLON, - STATE(4537), 1, + ACTIONS(9668), 1, + anon_sym_LPAREN, + STATE(3334), 1, sym__lexical_identifier, - STATE(4817), 1, - sym_class_body, - STATE(5538), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + STATE(2691), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636613,24 +636993,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189951] = 8, - ACTIONS(255), 1, + [190018] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2651), 2, + STATE(2714), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636638,49 +637018,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [189984] = 8, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9754), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(925), 1, - sym_simple_identifier, + [190051] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(446), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9882), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_LT, + sym__backtick_identifier, + ACTIONS(9880), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [190017] = 8, - ACTIONS(9228), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + [190074] = 9, + ACTIONS(7), 1, + sym__alpha_identifier, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9782), 1, - anon_sym_LPAREN, - STATE(5615), 1, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(9869), 1, + anon_sym_COLON, + STATE(4609), 1, sym__lexical_identifier, - STATE(5824), 1, + STATE(5155), 1, + sym_class_body, + STATE(5601), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5486), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9232), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636688,25 +637064,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190050] = 9, - ACTIONS(115), 1, + [190109] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(4537), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4563), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(9967), 1, + STATE(7950), 1, + sym_simple_identifier, + STATE(9894), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636714,25 +637090,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190085] = 9, - ACTIONS(7), 1, + [190144] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(9918), 1, - anon_sym_COLON, - STATE(4584), 1, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(4108), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(5172), 1, - sym_class_body, - STATE(5487), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9317), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636740,25 +637116,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190120] = 9, - ACTIONS(8656), 1, + [190179] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(827), 1, + STATE(5436), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636766,24 +637142,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190155] = 8, - ACTIONS(431), 1, + [190214] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(4194), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2360), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636791,24 +637168,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190188] = 8, - ACTIONS(345), 1, + [190249] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4792), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(438), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636816,24 +637194,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190221] = 8, - ACTIONS(345), 1, + [190284] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3722), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9160), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(588), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636841,25 +637220,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190254] = 9, - ACTIONS(8656), 1, + [190319] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4194), 1, + STATE(4862), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(9358), 1, + STATE(9339), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636867,25 +637246,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190289] = 9, - ACTIONS(8656), 1, + [190354] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4154), 1, + STATE(5502), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9173), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636893,24 +637272,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190324] = 8, - ACTIONS(255), 1, + [190389] = 8, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(267), 1, + ACTIONS(557), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9928), 1, + ACTIONS(9884), 1, anon_sym_class, - STATE(2881), 1, + STATE(2802), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3575), 2, + STATE(3230), 2, sym_parenthesized_expression, sym_simple_identifier, - ACTIONS(1437), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636918,24 +637297,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190357] = 8, - ACTIONS(345), 1, + [190422] = 8, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9648), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3519), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(423), 2, + STATE(2304), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636943,25 +637322,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190390] = 9, - ACTIONS(8656), 1, + [190455] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(2837), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2397), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636969,24 +637347,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190425] = 8, - ACTIONS(431), 1, + [190488] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(838), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2679), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -636994,25 +637373,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190458] = 9, - ACTIONS(115), 1, + [190523] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(5494), 1, - anon_sym_LBRACE, - ACTIONS(9922), 1, - anon_sym_COLON, - STATE(4537), 1, + ACTIONS(9654), 1, + anon_sym_LPAREN, + STATE(4795), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(4817), 1, - sym_class_body, - STATE(5042), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637020,24 +637399,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190493] = 8, - ACTIONS(431), 1, + [190558] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(846), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2328), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637045,24 +637425,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190526] = 8, - ACTIONS(9258), 1, + [190593] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9724), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(5710), 1, + STATE(5378), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(5799), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5426), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9260), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637070,24 +637451,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190559] = 8, - ACTIONS(9214), 1, + [190628] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9728), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(2856), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3587), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2292), 2, + STATE(449), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9218), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637095,24 +637476,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190592] = 8, - ACTIONS(255), 1, + [190661] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2446), 2, + STATE(1809), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637120,25 +637501,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190625] = 9, - ACTIONS(9258), 1, + [190694] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5691), 1, - sym__simple_user_type, - STATE(5710), 1, + STATE(5433), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(9955), 1, - sym_function_type_parameters, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9260), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637146,25 +637527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190660] = 9, - ACTIONS(8656), 1, + [190729] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(991), 1, + STATE(950), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9167), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637172,24 +637553,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190695] = 8, - ACTIONS(345), 1, + [190764] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9754), 1, - anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(5746), 1, + anon_sym_LBRACE, + ACTIONS(9878), 1, + anon_sym_COLON, + STATE(3334), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3832), 1, + sym_class_body, + STATE(4201), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(454), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637197,25 +637579,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190728] = 9, - ACTIONS(8656), 1, + [190799] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(5051), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(9228), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2445), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637223,25 +637604,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190763] = 9, - ACTIONS(8656), 1, + [190832] = 9, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3000), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(2872), 1, sym_simple_identifier, + STATE(3045), 1, + sym__simple_user_type, + STATE(10103), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637249,51 +637630,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190798] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(3817), 1, - sym_function_value_parameters, - STATE(6073), 1, - sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, - sym_simple_identifier, + [190867] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(4323), 4, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4321), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [190833] = 9, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [190890] = 8, + ACTIONS(115), 1, + sym__alpha_identifier, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3000), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2600), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637301,24 +637675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190868] = 8, - ACTIONS(431), 1, + [190923] = 8, + ACTIONS(9206), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9780), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(5708), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(5801), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2398), 2, + STATE(5477), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637326,24 +637700,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190901] = 8, - ACTIONS(345), 1, + [190956] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(4936), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9410), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(606), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637351,24 +637726,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190934] = 8, - ACTIONS(345), 1, + [190991] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(931), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(584), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637376,25 +637752,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [190967] = 9, - ACTIONS(8656), 1, + [191026] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(4898), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(3190), 1, + anon_sym_LBRACE, + ACTIONS(9871), 1, + anon_sym_COLON, + STATE(820), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(1024), 1, sym_simple_identifier, - STATE(9413), 1, - sym__simple_user_type, + STATE(1098), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637402,24 +637778,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191002] = 8, - ACTIONS(345), 1, + [191061] = 8, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, - anon_sym_LPAREN, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(8037), 1, + sym_binding_pattern_kind, + STATE(9479), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(434), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8535), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637427,21 +637803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191035] = 6, - ACTIONS(9871), 1, + [191094] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9930), 1, - anon_sym_AT, + ACTIONS(9672), 1, + anon_sym_LPAREN, + STATE(820), 1, + sym__lexical_identifier, + STATE(904), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(7739), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(7817), 2, - sym__single_annotation, - sym__multi_annotation, - ACTIONS(9866), 8, + STATE(434), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637449,47 +637828,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [191127] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - [191064] = 5, - ACTIONS(9933), 1, + ACTIONS(541), 1, + sym__backtick_identifier, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(7843), 1, - sym_value_arguments, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3651), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7096), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7094), 10, + STATE(2399), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [191160] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - [191091] = 8, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9754), 1, - anon_sym_LPAREN, - STATE(813), 1, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(9869), 1, + anon_sym_COLON, + STATE(4609), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(5155), 1, + sym_class_body, + STATE(5488), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(563), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637497,25 +637879,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191124] = 9, - ACTIONS(8656), 1, + [191195] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(4561), 1, + STATE(3663), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637523,25 +637905,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191159] = 9, - ACTIONS(8656), 1, + [191230] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(4559), 1, + STATE(3037), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637549,25 +637931,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191194] = 9, - ACTIONS(8656), 1, + [191265] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(3563), 1, + STATE(5492), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637575,25 +637957,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191229] = 9, - ACTIONS(7), 1, + [191300] = 8, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(9918), 1, - anon_sym_COLON, - STATE(4584), 1, + ACTIONS(9652), 1, + anon_sym_LPAREN, + STATE(5611), 1, sym__lexical_identifier, - STATE(5172), 1, - sym_class_body, - STATE(5601), 1, + STATE(5814), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + STATE(5526), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637601,25 +637982,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191264] = 9, - ACTIONS(8656), 1, + [191333] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3561), 1, + STATE(3662), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637627,25 +638008,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191299] = 9, - ACTIONS(8656), 1, + [191368] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(3616), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2636), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637653,25 +638033,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191334] = 9, - ACTIONS(8656), 1, + [191401] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(3818), 1, + STATE(4996), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637679,25 +638059,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191369] = 9, - ACTIONS(8656), 1, + [191436] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3785), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(9143), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(1820), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637705,24 +638084,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191404] = 8, - ACTIONS(345), 1, + [191469] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(428), 2, + STATE(2409), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637730,25 +638109,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191437] = 9, - ACTIONS(8656), 1, + [191502] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(3615), 1, + STATE(2827), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637756,25 +638135,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191472] = 9, - ACTIONS(7), 1, + [191537] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(9918), 1, - anon_sym_COLON, - STATE(4584), 1, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(4218), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(4944), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, - STATE(5172), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637782,25 +638161,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191507] = 9, - ACTIONS(8656), 1, + [191572] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(5485), 1, + STATE(3027), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637808,25 +638187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191542] = 9, - ACTIONS(345), 1, + [191607] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(3210), 1, - anon_sym_LBRACE, - ACTIONS(9912), 1, - anon_sym_COLON, - STATE(813), 1, + ACTIONS(9672), 1, + anon_sym_LPAREN, + STATE(820), 1, sym__lexical_identifier, - STATE(1083), 1, - sym_class_body, - STATE(1384), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + STATE(426), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637834,24 +638212,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191577] = 8, - ACTIONS(345), 1, + [191640] = 9, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(5616), 1, sym_simple_identifier, + STATE(5644), 1, + sym__simple_user_type, + STATE(9923), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(607), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637859,24 +638238,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191610] = 8, - ACTIONS(345), 1, + [191675] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(5380), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(427), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637884,24 +638264,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191643] = 8, - ACTIONS(345), 1, + [191710] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(426), 2, + STATE(439), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637909,25 +638289,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191676] = 9, - ACTIONS(8656), 1, + [191743] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4163), 1, + STATE(931), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637935,25 +638315,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191711] = 9, - ACTIONS(8656), 1, + [191778] = 9, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(5415), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(5681), 1, + sym_simple_identifier, + STATE(5685), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(5699), 1, sym__simple_user_type, - STATE(7933), 1, - sym_simple_identifier, + STATE(10021), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637961,25 +638341,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191746] = 9, - ACTIONS(8656), 1, + [191813] = 9, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(4542), 1, sym_simple_identifier, - STATE(9739), 1, + STATE(4544), 1, + sym__simple_user_type, + STATE(9976), 1, sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -637987,25 +638367,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191781] = 9, - ACTIONS(345), 1, + [191848] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(821), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(844), 1, - sym__simple_user_type, - STATE(9892), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + STATE(2430), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638013,25 +638392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191816] = 9, - ACTIONS(8656), 1, + [191881] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(1407), 1, + STATE(2832), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638039,24 +638418,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191851] = 8, - ACTIONS(9214), 1, + [191916] = 9, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9728), 1, - anon_sym_LPAREN, - STATE(2856), 1, + ACTIONS(3158), 1, + anon_sym_LBRACE, + ACTIONS(9873), 1, + anon_sym_COLON, + STATE(2802), 1, sym__lexical_identifier, - STATE(3587), 1, + STATE(3130), 1, sym_simple_identifier, + STATE(3170), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2305), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(9218), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638064,25 +638444,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191884] = 9, - ACTIONS(8656), 1, + [191951] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(4768), 1, + STATE(3493), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9109), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638090,24 +638470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191919] = 8, - ACTIONS(255), 1, + [191986] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2844), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9098), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2601), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638115,24 +638496,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191952] = 8, - ACTIONS(431), 1, + [192021] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2403), 2, + STATE(2354), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638140,25 +638521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [191985] = 9, - ACTIONS(8656), 1, + [192054] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(3808), 1, + STATE(4892), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638166,24 +638547,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192020] = 8, - ACTIONS(255), 1, + [192089] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2621), 2, + STATE(429), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638191,24 +638572,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192053] = 8, - ACTIONS(431), 1, + [192122] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, + STATE(9507), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2669), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638216,25 +638598,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192086] = 9, - ACTIONS(8656), 1, + [192157] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(4765), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2414), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638242,24 +638623,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192121] = 8, - ACTIONS(9258), 1, + [192190] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9724), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(5710), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(5799), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5437), 2, + STATE(613), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(9260), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638267,25 +638648,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192154] = 9, - ACTIONS(8656), 1, + [192223] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9702), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(5484), 1, + STATE(3551), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638293,24 +638674,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192189] = 8, - ACTIONS(345), 1, + [192258] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(613), 2, + STATE(438), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638318,25 +638699,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192222] = 9, - ACTIONS(8656), 1, + [192291] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(5466), 1, + STATE(4562), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638344,24 +638725,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192257] = 8, - ACTIONS(431), 1, + [192326] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(4547), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9336), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2667), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638369,24 +638751,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192290] = 8, - ACTIONS(7), 1, + [192361] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9936), 1, - anon_sym_class, - STATE(4584), 1, + ACTIONS(9690), 1, + anon_sym_LPAREN, + STATE(4567), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5221), 2, - sym_parenthesized_expression, - sym_simple_identifier, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638394,25 +638777,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192323] = 9, - ACTIONS(9264), 1, + [192396] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(8327), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(8328), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(8388), 1, - sym__simple_user_type, - STATE(9750), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9266), 7, + STATE(2617), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638420,24 +638802,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192358] = 8, - ACTIONS(255), 1, + [192429] = 8, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1918), 2, + STATE(601), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638445,25 +638827,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192391] = 9, - ACTIONS(8656), 1, + [192462] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9732), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(5462), 1, + STATE(981), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638471,24 +638853,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192426] = 8, - ACTIONS(255), 1, + [192497] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2332), 2, + STATE(2644), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638496,24 +638878,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192459] = 8, - ACTIONS(255), 1, + [192530] = 8, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(217), 1, + anon_sym_LPAREN, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9886), 1, + anon_sym_class, + STATE(4534), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4797), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1790), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [192563] = 8, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + ACTIONS(9672), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(904), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1942), 2, + STATE(425), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638521,25 +638928,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192492] = 9, - ACTIONS(8656), 1, + [192596] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9714), 1, - anon_sym_LPAREN, - STATE(3580), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(5746), 1, + anon_sym_LBRACE, + ACTIONS(9878), 1, + anon_sym_COLON, + STATE(3334), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3832), 1, + sym_class_body, + STATE(3910), 1, sym_simple_identifier, - STATE(9171), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638547,24 +638954,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192527] = 8, - ACTIONS(255), 1, + [192631] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2453), 2, + STATE(2413), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638572,25 +638979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192560] = 9, - ACTIONS(8656), 1, + [192664] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(2988), 1, + STATE(981), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638598,50 +639005,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192595] = 8, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(9754), 1, - anon_sym_LPAREN, - STATE(813), 1, - sym__lexical_identifier, - STATE(925), 1, - sym_simple_identifier, + [192699] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(459), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(4384), 4, + anon_sym_AT, + anon_sym_EQ, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(4382), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, - [192628] = 9, - ACTIONS(255), 1, sym__alpha_identifier, - ACTIONS(337), 1, + [192722] = 9, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9487), 1, - anon_sym_LPAREN, - STATE(2881), 1, + ACTIONS(3190), 1, + anon_sym_LBRACE, + ACTIONS(9871), 1, + anon_sym_COLON, + STATE(820), 1, sym__lexical_identifier, - STATE(2930), 1, + STATE(1098), 1, + sym_class_body, + STATE(1417), 1, sym_simple_identifier, - STATE(3018), 1, - sym__simple_user_type, - STATE(10001), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638649,25 +639051,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192663] = 9, - ACTIONS(9204), 1, + [192757] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(3380), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(5691), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(9575), 1, - sym_function_type_parameters, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638675,25 +639077,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192698] = 9, - ACTIONS(8656), 1, + [192792] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(3055), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(1719), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638701,25 +639102,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192733] = 9, - ACTIONS(8656), 1, + [192825] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(2838), 1, + STATE(4199), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(6584), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638727,44 +639128,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192768] = 3, + [192860] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(3374), 1, + sym_function_value_parameters, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7169), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7167), 11, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [192895] = 9, + ACTIONS(339), 1, sym__alpha_identifier, - [192791] = 8, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, + STATE(819), 1, sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(847), 1, + sym__simple_user_type, + STATE(10088), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2666), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638772,24 +639180,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192824] = 8, - ACTIONS(255), 1, + [192930] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(1969), 2, + STATE(2664), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638797,25 +639205,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192857] = 9, - ACTIONS(8656), 1, + [192963] = 8, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9648), 1, anon_sym_LPAREN, - STATE(2975), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(3519), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(2292), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638823,25 +639230,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192892] = 9, - ACTIONS(8656), 1, + [192996] = 9, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(5403), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(5746), 1, + anon_sym_LBRACE, + ACTIONS(9878), 1, + anon_sym_COLON, + STATE(3334), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3678), 1, sym_simple_identifier, - STATE(9109), 1, - sym__simple_user_type, + STATE(3832), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638849,25 +639256,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192927] = 9, - ACTIONS(8656), 1, + [193031] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(848), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, - STATE(9196), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(1735), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638875,24 +639281,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192962] = 8, - ACTIONS(431), 1, + [193064] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9692), 1, - anon_sym_LPAREN, - STATE(3325), 1, + ACTIONS(5444), 1, + anon_sym_LBRACE, + ACTIONS(9867), 1, + anon_sym_COLON, + STATE(2894), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3552), 1, + sym_class_body, + STATE(3783), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2713), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638900,24 +639307,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [192995] = 8, - ACTIONS(345), 1, + [193099] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9754), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(925), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(456), 2, + STATE(1748), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638925,24 +639332,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193028] = 8, - ACTIONS(255), 1, + [193132] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3798), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9162), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2145), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638950,24 +639358,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193061] = 8, - ACTIONS(255), 1, + [193167] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2324), 2, + STATE(2422), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -638975,45 +639383,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193094] = 3, + [193200] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9638), 1, + anon_sym_LPAREN, + STATE(850), 1, + sym_function_value_parameters, + STATE(6361), 1, + sym__lexical_identifier, + STATE(7950), 1, + sym_simple_identifier, + STATE(9155), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4458), 4, - anon_sym_AT, - anon_sym_EQ, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(4456), 10, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, + [193235] = 8, + ACTIONS(115), 1, sym__alpha_identifier, - [193117] = 9, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9660), 1, anon_sym_LPAREN, - STATE(992), 1, - sym_function_value_parameters, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(3240), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + STATE(1781), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639021,25 +639434,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193152] = 9, - ACTIONS(8656), 1, + [193268] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(6073), 1, + STATE(4562), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, - STATE(9468), 1, - sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639047,25 +639460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193187] = 9, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(9204), 1, + [193303] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9918), 1, - anon_sym_COLON, - STATE(5172), 1, - sym_class_body, - STATE(5689), 1, + ACTIONS(9638), 1, + anon_sym_LPAREN, + STATE(1394), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(8583), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639073,24 +639486,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193222] = 8, - ACTIONS(431), 1, + [193338] = 8, + ACTIONS(9112), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9120), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9648), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(2819), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3519), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2401), 2, + STATE(2299), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9116), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639098,25 +639511,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193255] = 9, - ACTIONS(8656), 1, + [193371] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(3439), 1, + STATE(4963), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9105), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(6584), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639124,25 +639537,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193290] = 9, - ACTIONS(431), 1, + [193406] = 9, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(5812), 1, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(9916), 1, + ACTIONS(9856), 1, anon_sym_COLON, - STATE(3325), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(3932), 1, + STATE(4741), 1, sym_class_body, - STATE(3971), 1, + STATE(5005), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639150,24 +639563,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193325] = 8, - ACTIONS(431), 1, + [193441] = 9, + ACTIONS(3158), 1, + anon_sym_LBRACE, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - ACTIONS(9692), 1, - anon_sym_LPAREN, - STATE(3325), 1, + ACTIONS(9873), 1, + anon_sym_COLON, + STATE(3170), 1, + sym_class_body, + STATE(4535), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(5122), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2399), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639175,25 +639589,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193358] = 9, - ACTIONS(8656), 1, + [193476] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3807), 1, + STATE(2983), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9149), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639201,25 +639615,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193393] = 9, - ACTIONS(8656), 1, + [193511] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(4196), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, - STATE(9135), 1, + STATE(9208), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639227,24 +639641,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193428] = 8, - ACTIONS(255), 1, + [193546] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3043), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2624), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639252,24 +639667,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193461] = 8, - ACTIONS(431), 1, + [193581] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(1287), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2712), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639277,24 +639693,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193494] = 8, - ACTIONS(431), 1, + [193616] = 9, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9435), 1, anon_sym_LPAREN, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3706), 1, + STATE(2784), 1, sym_simple_identifier, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2858), 1, + sym__simple_user_type, + STATE(10131), 1, + sym_function_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2616), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639302,25 +639719,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193527] = 9, - ACTIONS(8656), 1, + [193651] = 9, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(4717), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(9856), 1, + anon_sym_COLON, + STATE(4534), 1, sym__lexical_identifier, - STATE(7933), 1, + STATE(4608), 1, sym_simple_identifier, - STATE(9318), 1, - sym__simple_user_type, + STATE(4741), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639328,25 +639745,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193562] = 9, - ACTIONS(9228), 1, + [193686] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9487), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(5611), 1, - sym_simple_identifier, - STATE(5615), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(5633), 1, - sym__simple_user_type, - STATE(10147), 1, - sym_function_type_parameters, + STATE(3651), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9232), 7, + STATE(2643), 2, + sym_variable_declaration, + sym_multi_variable_declaration, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639354,24 +639770,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193597] = 8, - ACTIONS(431), 1, + [193719] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(3718), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2638), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639379,71 +639796,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193630] = 9, - ACTIONS(115), 1, - sym__alpha_identifier, + [193754] = 9, ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(5494), 1, + ACTIONS(5432), 1, anon_sym_LBRACE, - ACTIONS(9922), 1, + ACTIONS(9856), 1, anon_sym_COLON, - STATE(4537), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(4596), 1, - sym_simple_identifier, - STATE(4817), 1, + STATE(4741), 1, sym_class_body, + STATE(5554), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [193665] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(7134), 3, - anon_sym_AT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(7132), 11, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, + [193789] = 9, + ACTIONS(115), 1, sym__alpha_identifier, - [193688] = 9, - ACTIONS(255), 1, - sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(201), 1, sym__backtick_identifier, - ACTIONS(5516), 1, + ACTIONS(5444), 1, anon_sym_LBRACE, - ACTIONS(9908), 1, + ACTIONS(9867), 1, anon_sym_COLON, - STATE(2881), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(3513), 1, + STATE(3552), 1, sym_class_body, - STATE(3754), 1, + STATE(4080), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639451,25 +639848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193723] = 9, - ACTIONS(8656), 1, + [193824] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(1258), 1, + STATE(3044), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639477,25 +639874,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193758] = 9, - ACTIONS(8656), 1, + [193859] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9694), 1, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(2994), 1, + STATE(1289), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9350), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639503,24 +639900,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193793] = 8, - ACTIONS(255), 1, + [193894] = 8, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(337), 1, - sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(27), 1, anon_sym_LPAREN, - STATE(2881), 1, + ACTIONS(111), 1, + sym__backtick_identifier, + ACTIONS(9888), 1, + anon_sym_class, + STATE(4609), 1, sym__lexical_identifier, - STATE(3217), 1, - sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2154), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + STATE(5224), 2, + sym_parenthesized_expression, + sym_simple_identifier, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639528,25 +639925,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193826] = 9, - ACTIONS(8656), 1, + [193927] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9714), 1, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4205), 1, + STATE(3756), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639554,24 +639951,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193861] = 8, - ACTIONS(431), 1, + [193962] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2604), 2, + STATE(2621), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639579,24 +639976,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193894] = 8, - ACTIONS(431), 1, + [193995] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9692), 1, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(3325), 1, + STATE(4567), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3706), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2724), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639604,25 +640002,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193927] = 9, - ACTIONS(557), 1, + [194030] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(3262), 1, - anon_sym_LBRACE, - ACTIONS(9926), 1, - anon_sym_COLON, - STATE(2770), 1, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(3663), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3240), 1, - sym_class_body, - STATE(4044), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639630,25 +640028,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193962] = 9, - ACTIONS(8656), 1, + [194065] = 9, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9756), 1, - anon_sym_LPAREN, - STATE(1255), 1, - sym_function_value_parameters, - STATE(6073), 1, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(9869), 1, + anon_sym_COLON, + STATE(4609), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(5114), 1, sym_simple_identifier, + STATE(5155), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639656,25 +640054,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [193997] = 9, - ACTIONS(557), 1, + [194100] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(3262), 1, - anon_sym_LBRACE, - ACTIONS(9926), 1, - anon_sym_COLON, - STATE(2770), 1, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(3662), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3126), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, - STATE(3240), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639682,25 +640080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194032] = 9, - ACTIONS(345), 1, + [194135] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(3210), 1, - anon_sym_LBRACE, - ACTIONS(9912), 1, - anon_sym_COLON, - STATE(813), 1, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(3037), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(1041), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, - STATE(1083), 1, - sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639708,24 +640106,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194067] = 8, - ACTIONS(255), 1, + [194170] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3797), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2163), 2, - sym_variable_declaration, - sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639733,25 +640132,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194100] = 9, - ACTIONS(255), 1, + [194205] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(5516), 1, - anon_sym_LBRACE, - ACTIONS(9908), 1, - anon_sym_COLON, - STATE(2881), 1, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(3564), 1, + sym_function_value_parameters, + STATE(6361), 1, sym__lexical_identifier, - STATE(3513), 1, - sym_class_body, - STATE(4230), 1, + STATE(7950), 1, sym_simple_identifier, + STATE(9137), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639759,25 +640158,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194135] = 9, - ACTIONS(8656), 1, + [194240] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9756), 1, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(1410), 1, + STATE(3796), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, + STATE(6537), 1, sym__simple_user_type, - STATE(7933), 1, + STATE(7950), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639785,25 +640184,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194170] = 9, - ACTIONS(8656), 1, + [194275] = 9, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9712), 1, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3020), 1, + STATE(3044), 1, sym_function_value_parameters, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(7933), 1, - sym_simple_identifier, - STATE(9180), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639811,24 +640210,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194205] = 8, - ACTIONS(255), 1, + [194310] = 8, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(9706), 1, + ACTIONS(9668), 1, anon_sym_LPAREN, - STATE(2881), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(3217), 1, + STATE(3651), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2420), 2, + STATE(2656), 2, sym_variable_declaration, sym_multi_variable_declaration, - ACTIONS(1437), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639836,54 +640235,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194238] = 3, + [194343] = 9, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(3043), 1, + sym_function_value_parameters, + STATE(6361), 1, + sym__lexical_identifier, + STATE(6537), 1, + sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7199), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(7197), 11, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [194260] = 5, - ACTIONS(9938), 1, - anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + [194378] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 3, + ACTIONS(4866), 3, + anon_sym_AT, anon_sym_LPAREN, - sym__quest, sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(4864), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194286] = 3, + [194400] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9110), 2, + ACTIONS(4870), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(9112), 11, + ACTIONS(4868), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639895,14 +640299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194308] = 3, + [194422] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7169), 2, + ACTIONS(7111), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7167), 11, + ACTIONS(7109), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639914,33 +640318,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194330] = 3, + [194444] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7199), 3, + ACTIONS(7105), 2, anon_sym_AT, - anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7197), 10, + ACTIONS(7103), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194352] = 3, + [194466] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7134), 2, + ACTIONS(4882), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7132), 11, + ACTIONS(4880), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639952,14 +640356,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194374] = 3, + [194488] = 12, + ACTIONS(9890), 1, + anon_sym_typealias, + ACTIONS(9894), 1, + anon_sym_enum, + ACTIONS(9896), 1, + anon_sym_constructor, + ACTIONS(9900), 1, + anon_sym_companion, + ACTIONS(9902), 1, + anon_sym_object, + ACTIONS(9904), 1, + anon_sym_fun, + ACTIONS(9906), 1, + anon_sym_get, + ACTIONS(9908), 1, + anon_sym_set, + STATE(6010), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9892), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + [194528] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7127), 2, + ACTIONS(7093), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7125), 11, + ACTIONS(7091), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -639971,34 +640403,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194396] = 3, + [194550] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 2, + ACTIONS(4870), 3, anon_sym_AT, + anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5169), 11, + ACTIONS(4868), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194418] = 3, + [194572] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7134), 3, + ACTIONS(4878), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7132), 10, + ACTIONS(4876), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -640009,15 +640441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194440] = 3, + [194594] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 3, + ACTIONS(7111), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5213), 10, + ACTIONS(7109), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -640028,101 +640460,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194462] = 3, + [194616] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 3, + ACTIONS(7147), 2, anon_sym_AT, - anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5169), 10, + ACTIONS(7145), 11, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194484] = 5, - ACTIONS(9945), 1, - sym__quest, - STATE(6728), 1, - aux_sym_nullable_type_repeat1, + [194638] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9943), 3, - anon_sym_DOT, + ACTIONS(4874), 3, + anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(9941), 8, + ACTIONS(4872), 10, anon_sym_get, anon_sym_set, + anon_sym_dynamic, + anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194510] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9680), 1, - sym_simple_identifier, + [194660] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9947), 2, - anon_sym_val, - anon_sym_var, - ACTIONS(8666), 7, + ACTIONS(7135), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7133), 11, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, anon_sym_expect, anon_sym_actual, - [194540] = 3, + sym__alpha_identifier, + [194682] = 5, + ACTIONS(9910), 1, + anon_sym_DOT, + STATE(6595), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9900), 2, - anon_sym_AT, + ACTIONS(4072), 3, + anon_sym_LPAREN, + sym__quest, sym__backtick_identifier, - ACTIONS(9898), 11, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, - anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_out, - sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194562] = 5, - ACTIONS(9949), 1, + [194708] = 5, + ACTIONS(9913), 1, anon_sym_DOT, - STATE(7835), 1, + STATE(7849), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 3, + ACTIONS(4105), 3, anon_sym_LPAREN, sym__quest, sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640131,19 +640559,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194588] = 5, - ACTIONS(9945), 1, + [194734] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4878), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4876), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [194756] = 5, + ACTIONS(9920), 1, sym__quest, - STATE(6728), 1, + STATE(6722), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9954), 3, + ACTIONS(9918), 3, anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(9952), 8, + ACTIONS(9916), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640152,15 +640599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194614] = 3, + [194782] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 3, + ACTIONS(7135), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5185), 10, + ACTIONS(7133), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -640171,15 +640618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194636] = 3, + [194804] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 3, + ACTIONS(7093), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7185), 10, + ACTIONS(7091), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -640190,15 +640637,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194658] = 3, + [194826] = 3, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4866), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(4864), 11, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_vararg, + anon_sym_noinline, + anon_sym_crossinline, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [194848] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4981), 3, + ACTIONS(7147), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(4979), 10, + ACTIONS(7145), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -640209,15 +640675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194680] = 3, + [194870] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7127), 3, + ACTIONS(7105), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7125), 10, + ACTIONS(7103), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -640228,14 +640694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194702] = 3, + [194892] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 2, + ACTIONS(9038), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(7185), 11, + ACTIONS(9040), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640247,52 +640713,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194724] = 3, + [194914] = 5, + ACTIONS(9920), 1, + sym__quest, + STATE(6722), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 3, - anon_sym_AT, + ACTIONS(9924), 3, + anon_sym_DOT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(5193), 10, + ACTIONS(9922), 8, anon_sym_get, anon_sym_set, - anon_sym_dynamic, - anon_sym_suspend, anon_sym_data, anon_sym_inner, anon_sym_value, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194746] = 3, + [194940] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 2, + ACTIONS(9742), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5193), 11, + ACTIONS(9740), 11, anon_sym_get, anon_sym_set, + anon_sym_in, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, + anon_sym_out, + sym_reification_modifier, anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194768] = 3, + [194962] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 2, + ACTIONS(4874), 2, anon_sym_AT, sym__backtick_identifier, - ACTIONS(5185), 11, + ACTIONS(4872), 11, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640304,15 +640772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194790] = 3, + [194984] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7169), 3, + ACTIONS(4882), 3, anon_sym_AT, anon_sym_LPAREN, sym__backtick_identifier, - ACTIONS(7167), 10, + ACTIONS(4880), 10, anon_sym_get, anon_sym_set, anon_sym_dynamic, @@ -640323,78 +640791,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194812] = 3, + [195006] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9926), 1, + anon_sym_DOT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9164), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(5213), 11, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [195035] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - [194834] = 3, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9928), 1, + anon_sym_DOT, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9402), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4981), 2, - anon_sym_AT, - sym__backtick_identifier, - ACTIONS(4979), 11, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, anon_sym_inner, anon_sym_value, - anon_sym_vararg, - anon_sym_noinline, - anon_sym_crossinline, anon_sym_expect, anon_sym_actual, + [195064] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - [194856] = 4, - ACTIONS(9956), 1, - anon_sym_DOT, - STATE(7907), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_AMP, - sym__quest, - [194879] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(9958), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(9326), 1, + STATE(4616), 1, sym_simple_identifier, + STATE(4867), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640402,18 +640857,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194908] = 5, - ACTIONS(9960), 1, + [195093] = 5, + ACTIONS(9930), 1, anon_sym_DOT, - STATE(6592), 1, + STATE(6595), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, + ACTIONS(4072), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640422,18 +640877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194933] = 5, - ACTIONS(9963), 1, + [195118] = 5, + ACTIONS(9933), 1, anon_sym_DOT, - STATE(7863), 1, + STATE(7941), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, + ACTIONS(4105), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640442,21 +640897,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [194958] = 7, - ACTIONS(9204), 1, + [195143] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5689), 1, + ACTIONS(9936), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8900), 1, + STATE(9197), 1, sym_simple_identifier, - STATE(9185), 1, - sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640464,21 +640919,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [194987] = 7, - ACTIONS(9204), 1, + [195172] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5689), 1, + ACTIONS(9938), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8520), 1, - sym__import_identifier, - STATE(8899), 1, + STATE(9156), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640486,21 +640941,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195016] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(9966), 1, + [195201] = 5, + ACTIONS(9940), 1, anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9234), 1, - sym_simple_identifier, + STATE(7866), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(4105), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640508,21 +640960,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195045] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [195226] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9968), 1, + ACTIONS(9943), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9232), 1, + STATE(9120), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640530,21 +640983,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195074] = 7, - ACTIONS(8656), 1, + [195255] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9970), 1, + ACTIONS(9945), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9299), 1, + STATE(9116), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640552,21 +641005,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195103] = 7, - ACTIONS(8656), 1, + [195284] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(9972), 1, + ACTIONS(9947), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9227), 1, + STATE(9113), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640574,18 +641027,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195132] = 5, - ACTIONS(9974), 1, + [195313] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9949), 1, anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9108), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640593,19 +641049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [195157] = 5, - ACTIONS(9977), 1, + [195342] = 5, + ACTIONS(9951), 1, anon_sym_DOT, - STATE(7871), 1, + STATE(6595), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, + ACTIONS(4072), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640614,18 +641069,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [195182] = 5, - ACTIONS(9980), 1, + [195367] = 5, + ACTIONS(9954), 1, anon_sym_DOT, - STATE(6592), 1, + STATE(7875), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, + ACTIONS(4105), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640634,18 +641089,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [195207] = 5, - ACTIONS(9983), 1, + [195392] = 5, + ACTIONS(9957), 1, anon_sym_DOT, - STATE(7873), 1, + STATE(6595), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, + ACTIONS(4072), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640654,18 +641109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [195232] = 5, - ACTIONS(9986), 1, + [195417] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9960), 1, anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9104), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640673,19 +641131,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195446] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - [195257] = 5, - ACTIONS(9989), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9962), 1, anon_sym_DOT, - STATE(7875), 1, - aux_sym_user_type_repeat1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9102), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640693,19 +641153,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195475] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - [195282] = 5, - ACTIONS(9992), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(9964), 1, anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9099), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640713,19 +641175,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - sym__alpha_identifier, - [195307] = 5, - ACTIONS(9995), 1, + [195504] = 5, + ACTIONS(9966), 1, anon_sym_DOT, STATE(7877), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, + ACTIONS(4105), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640734,21 +641195,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [195332] = 7, - ACTIONS(8656), 1, + [195529] = 7, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(9998), 1, - anon_sym_DOT, - STATE(6073), 1, + ACTIONS(9969), 1, + anon_sym_class, + STATE(4534), 1, sym__lexical_identifier, - STATE(9225), 1, + STATE(4742), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640756,21 +641217,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195361] = 7, - ACTIONS(8656), 1, + [195558] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10000), 1, + ACTIONS(9971), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9306), 1, + STATE(9357), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640778,21 +641239,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195390] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(10002), 1, + [195587] = 5, + ACTIONS(9973), 1, anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9303), 1, - sym_simple_identifier, + STATE(6595), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(4072), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640800,21 +641258,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195419] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [195612] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10004), 1, + ACTIONS(9976), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9223), 1, + STATE(9110), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640822,21 +641281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195448] = 7, - ACTIONS(8656), 1, + [195641] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10006), 1, + ACTIONS(9978), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9220), 1, + STATE(9126), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640844,40 +641303,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195477] = 7, - ACTIONS(8656), 1, + [195670] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10008), 1, + ACTIONS(9980), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9235), 1, + STATE(9389), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [195506] = 5, - ACTIONS(10010), 1, - anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4145), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640885,22 +641325,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [195699] = 7, + ACTIONS(339), 1, sym__alpha_identifier, - [195531] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(10013), 1, - anon_sym_DOT, - STATE(6073), 1, + ACTIONS(9982), 1, + anon_sym_class, + STATE(820), 1, sym__lexical_identifier, - STATE(9219), 1, + STATE(1093), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640908,21 +641347,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195560] = 7, - ACTIONS(8656), 1, + [195728] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10015), 1, + ACTIONS(9984), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9216), 1, + STATE(9129), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640930,18 +641369,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195589] = 5, - ACTIONS(10017), 1, + [195757] = 5, + ACTIONS(9986), 1, anon_sym_DOT, - STATE(7885), 1, + STATE(7884), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, + ACTIONS(4105), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640950,43 +641389,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [195614] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(10020), 1, + [195782] = 4, + ACTIONS(9989), 1, anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9210), 1, - sym_simple_identifier, + STATE(7891), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [195643] = 7, - ACTIONS(8656), 1, + ACTIONS(4131), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + [195805] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10022), 1, + ACTIONS(9992), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9207), 1, + STATE(9138), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -640994,21 +641430,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195672] = 7, - ACTIONS(8656), 1, + [195834] = 7, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(10024), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9206), 1, + STATE(4542), 1, sym_simple_identifier, + STATE(4544), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641016,21 +641452,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195701] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(10026), 1, + [195863] = 5, + ACTIONS(9994), 1, anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9192), 1, - sym_simple_identifier, + STATE(6595), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(4072), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641038,21 +641471,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195730] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [195888] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10028), 1, + ACTIONS(9997), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9190), 1, + STATE(9141), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641060,21 +641494,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195759] = 7, - ACTIONS(8656), 1, + [195917] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10030), 1, + ACTIONS(9999), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9186), 1, + STATE(9142), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641082,21 +641516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195788] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(10032), 1, + [195946] = 5, + ACTIONS(10001), 1, anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9212), 1, - sym_simple_identifier, + STATE(7894), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(4105), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641104,21 +641535,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195817] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [195971] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10034), 1, + ACTIONS(10004), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9209), 1, + STATE(9143), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641126,21 +641558,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195846] = 7, - ACTIONS(8656), 1, + [196000] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10036), 1, + ACTIONS(10006), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9202), 1, + STATE(9148), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641148,21 +641580,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195875] = 7, - ACTIONS(8656), 1, + [196029] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10038), 1, + ACTIONS(10008), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9217), 1, + STATE(9131), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641170,21 +641602,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195904] = 7, - ACTIONS(8656), 1, + [196058] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10040), 1, + ACTIONS(10010), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9164), 1, + STATE(9147), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641192,21 +641624,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195933] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(10042), 1, + [196087] = 5, + ACTIONS(10012), 1, anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9103), 1, - sym_simple_identifier, + STATE(7964), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(4105), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641214,21 +641643,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195962] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [196112] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10044), 1, + ACTIONS(10015), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9130), 1, + STATE(9159), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641236,21 +641666,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [195991] = 7, - ACTIONS(8656), 1, + [196141] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10046), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9133), 1, + STATE(6537), 1, + sym__simple_user_type, + STATE(6584), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641258,21 +641688,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196020] = 7, - ACTIONS(8656), 1, + [196170] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10048), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9137), 1, + STATE(8545), 1, sym_simple_identifier, + STATE(8802), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641280,21 +641710,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196049] = 7, - ACTIONS(9460), 1, + [196199] = 7, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(9468), 1, + ACTIONS(541), 1, sym__backtick_identifier, - STATE(5665), 1, + ACTIONS(10017), 1, + anon_sym_class, + STATE(3334), 1, sym__lexical_identifier, - STATE(5677), 1, + STATE(3930), 1, sym_simple_identifier, - STATE(5697), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9466), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641302,21 +641732,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196078] = 7, - ACTIONS(7), 1, + [196228] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10050), 1, - anon_sym_class, - STATE(4584), 1, + ACTIONS(10019), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(5168), 1, + STATE(9140), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641324,21 +641754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196107] = 7, - ACTIONS(8656), 1, + [196257] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10052), 1, + ACTIONS(10021), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9146), 1, + STATE(9439), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641346,15 +641776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196136] = 4, - ACTIONS(10054), 1, + [196286] = 4, + ACTIONS(10023), 1, anon_sym_DOT, - STATE(7913), 1, + STATE(7891), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 10, + ACTIONS(4072), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -641365,21 +641795,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_AMP, sym__quest, - [196159] = 7, - ACTIONS(8656), 1, + [196309] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10056), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9150), 1, + STATE(8545), 1, sym_simple_identifier, + STATE(9785), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641387,21 +641817,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196188] = 7, - ACTIONS(8656), 1, + [196338] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10058), 1, + ACTIONS(10025), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9155), 1, + STATE(9100), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641409,21 +641839,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196217] = 7, - ACTIONS(8656), 1, + [196367] = 7, + ACTIONS(9416), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9424), 1, sym__backtick_identifier, - ACTIONS(10060), 1, - anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9161), 1, + STATE(7231), 1, sym_simple_identifier, + STATE(7299), 1, + sym__lexical_identifier, + STATE(7510), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9422), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641431,21 +641861,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196246] = 7, - ACTIONS(9448), 1, + [196396] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9456), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(7174), 1, - sym_simple_identifier, - STATE(7209), 1, + ACTIONS(10027), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(7220), 1, - sym__simple_user_type, + STATE(9103), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9454), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641453,21 +641883,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196275] = 7, - ACTIONS(8656), 1, + [196425] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10062), 1, + ACTIONS(10029), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9163), 1, + STATE(9403), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641475,40 +641905,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196304] = 4, - ACTIONS(10064), 1, - anon_sym_DOT, - STATE(7913), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4189), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - anon_sym_AMP, - sym__quest, - [196327] = 7, - ACTIONS(8656), 1, + [196454] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10067), 1, + ACTIONS(10031), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9167), 1, + STATE(9399), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641516,21 +641927,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196356] = 7, - ACTIONS(255), 1, + [196483] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10069), 1, - anon_sym_class, - STATE(2881), 1, + ACTIONS(10033), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(3428), 1, + STATE(9114), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641538,21 +641949,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196385] = 7, - ACTIONS(8656), 1, + [196512] = 7, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - ACTIONS(10071), 1, - anon_sym_DOT, - STATE(6073), 1, + ACTIONS(10035), 1, + anon_sym_class, + STATE(4534), 1, sym__lexical_identifier, - STATE(9343), 1, + STATE(4798), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641560,21 +641971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196414] = 7, - ACTIONS(8656), 1, + [196541] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(10037), 1, + anon_sym_class, + STATE(2894), 1, sym__lexical_identifier, - STATE(8497), 1, + STATE(3576), 1, sym_simple_identifier, - STATE(9011), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641582,21 +641993,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196443] = 7, - ACTIONS(255), 1, + [196570] = 7, + ACTIONS(9217), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(9223), 1, sym__backtick_identifier, - ACTIONS(10073), 1, - anon_sym_class, - STATE(2881), 1, + STATE(5676), 1, sym__lexical_identifier, - STATE(3512), 1, + STATE(5772), 1, sym_simple_identifier, + STATE(5823), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(9221), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641604,21 +642015,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196472] = 7, - ACTIONS(9470), 1, + [196599] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9478), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(7281), 1, - sym_simple_identifier, - STATE(7566), 1, + ACTIONS(10039), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(7621), 1, - sym__simple_user_type, + STATE(9398), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9476), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641626,21 +642037,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196501] = 7, - ACTIONS(8656), 1, + [196628] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10075), 1, + ACTIONS(10041), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9271), 1, + STATE(9117), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641648,21 +642059,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196530] = 7, - ACTIONS(8656), 1, + [196657] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(10043), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(6584), 1, + STATE(9119), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641670,21 +642081,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196559] = 7, - ACTIONS(115), 1, + [196686] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10077), 1, - anon_sym_class, - STATE(4537), 1, + ACTIONS(10045), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(4818), 1, + STATE(9122), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641692,21 +642103,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196588] = 7, - ACTIONS(557), 1, + [196715] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10079), 1, - anon_sym_class, - STATE(2770), 1, + ACTIONS(10047), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(3211), 1, + STATE(9125), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641714,21 +642125,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196617] = 7, - ACTIONS(557), 1, + [196744] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10081), 1, - anon_sym_class, - STATE(2770), 1, + ACTIONS(10049), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(3105), 1, + STATE(9127), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641736,21 +642147,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196646] = 7, - ACTIONS(9436), 1, + [196773] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9444), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5828), 1, - sym_simple_identifier, - STATE(5844), 1, + ACTIONS(10051), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(5851), 1, - sym__simple_user_type, + STATE(9130), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9442), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641758,21 +642169,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196675] = 7, - ACTIONS(8656), 1, + [196802] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10083), 1, + ACTIONS(10053), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9270), 1, + STATE(9132), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641780,21 +642191,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196704] = 7, - ACTIONS(8656), 1, + [196831] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10085), 1, + ACTIONS(10055), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9435), 1, + STATE(9133), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641802,21 +642213,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196733] = 7, - ACTIONS(345), 1, + [196860] = 7, + ACTIONS(1672), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(1736), 1, sym__backtick_identifier, - ACTIONS(10087), 1, - anon_sym_class, - STATE(813), 1, - sym__lexical_identifier, - STATE(1149), 1, + STATE(5407), 1, sym_simple_identifier, + STATE(5458), 1, + sym__lexical_identifier, + STATE(5486), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(3048), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641824,21 +642235,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196762] = 7, - ACTIONS(345), 1, - sym__alpha_identifier, - ACTIONS(427), 1, - sym__backtick_identifier, - ACTIONS(10089), 1, - anon_sym_class, - STATE(813), 1, - sym__lexical_identifier, - STATE(1087), 1, - sym_simple_identifier, + [196889] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(4160), 4, + anon_sym_DOT, + anon_sym_LPAREN, + sym__quest, + sym__backtick_identifier, + ACTIONS(4158), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641846,21 +642252,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196791] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [196910] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(10057), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(6535), 1, - sym__simple_user_type, - STATE(7933), 1, + STATE(9380), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641868,21 +642275,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196820] = 7, - ACTIONS(9228), 1, + [196939] = 7, + ACTIONS(9406), 1, sym__alpha_identifier, - ACTIONS(9236), 1, + ACTIONS(9414), 1, sym__backtick_identifier, - STATE(5611), 1, + STATE(7139), 1, sym_simple_identifier, - STATE(5615), 1, + STATE(7206), 1, sym__lexical_identifier, - STATE(5633), 1, + STATE(7224), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9232), 7, + ACTIONS(9412), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641890,21 +642297,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196849] = 7, - ACTIONS(9404), 1, + [196968] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9412), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(7242), 1, - sym_simple_identifier, - STATE(7300), 1, + ACTIONS(10059), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(7462), 1, - sym__simple_user_type, + STATE(9184), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9410), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641912,40 +642319,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196878] = 4, - ACTIONS(9148), 1, - anon_sym_LT, - STATE(6571), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4171), 10, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [196901] = 7, - ACTIONS(8656), 1, + [196997] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(10061), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8497), 1, + STATE(9378), 1, sym_simple_identifier, - STATE(9530), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197026] = 5, + ACTIONS(10063), 1, + anon_sym_LPAREN, + STATE(7132), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7048), 2, + anon_sym_AT, + sym__backtick_identifier, + ACTIONS(7046), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641953,21 +642360,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196930] = 7, - ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(205), 1, + [197051] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4537), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(4542), 1, - sym_simple_identifier, - STATE(4563), 1, + STATE(6537), 1, sym__simple_user_type, + STATE(7950), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641975,21 +642383,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196959] = 7, - ACTIONS(8656), 1, + [197080] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10091), 1, + ACTIONS(10066), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9273), 1, + STATE(9186), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -641997,21 +642405,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [196988] = 7, - ACTIONS(8656), 1, + [197109] = 7, + ACTIONS(9196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9202), 1, sym__backtick_identifier, - ACTIONS(10093), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(8319), 1, sym__lexical_identifier, - STATE(9153), 1, + STATE(8329), 1, sym_simple_identifier, + STATE(8375), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642019,21 +642427,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197017] = 7, - ACTIONS(8656), 1, + [197138] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10095), 1, + ACTIONS(10068), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9269), 1, + STATE(9374), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642041,21 +642449,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197046] = 7, - ACTIONS(9238), 1, + [197167] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9244), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5680), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(5780), 1, + STATE(8545), 1, sym_simple_identifier, - STATE(5816), 1, - sym__simple_user_type, + STATE(9448), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197196] = 5, + ACTIONS(10070), 1, + anon_sym_DOT, + STATE(6595), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9242), 7, + ACTIONS(4072), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642063,21 +642490,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197075] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [197221] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10097), 1, + ACTIONS(10073), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9149), 1, + STATE(9365), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [197250] = 5, + ACTIONS(10075), 1, + anon_sym_DOT, + STATE(6595), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4072), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642085,21 +642532,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197104] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [197275] = 7, + ACTIONS(9318), 1, + sym__alpha_identifier, + ACTIONS(9330), 1, sym__backtick_identifier, - ACTIONS(10099), 1, - anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9266), 1, + STATE(3403), 1, sym_simple_identifier, + STATE(3703), 1, + sym__lexical_identifier, + STATE(3715), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9326), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642107,21 +642555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197133] = 7, - ACTIONS(9258), 1, + [197304] = 7, + ACTIONS(9370), 1, sym__alpha_identifier, - ACTIONS(9262), 1, + ACTIONS(9378), 1, sym__backtick_identifier, - STATE(5678), 1, + STATE(7274), 1, sym_simple_identifier, - STATE(5691), 1, - sym__simple_user_type, - STATE(5710), 1, + STATE(7461), 1, sym__lexical_identifier, + STATE(7635), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9260), 7, + ACTIONS(9376), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642129,21 +642577,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197162] = 7, - ACTIONS(8656), 1, + [197333] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10101), 1, + ACTIONS(10078), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9174), 1, + STATE(9362), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642151,21 +642599,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197191] = 7, - ACTIONS(8656), 1, + [197362] = 7, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(10103), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9166), 1, + STATE(9014), 1, sym_simple_identifier, + STATE(9171), 1, + sym_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642173,21 +642621,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197220] = 7, - ACTIONS(8656), 1, + [197391] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(10105), 1, - anon_sym_DOT, - STATE(6073), 1, + ACTIONS(10080), 1, + anon_sym_class, + STATE(4609), 1, sym__lexical_identifier, - STATE(9129), 1, + STATE(5223), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642195,21 +642643,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197249] = 7, - ACTIONS(8656), 1, + [197420] = 7, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(10107), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9156), 1, + STATE(8574), 1, + sym__import_identifier, + STATE(9011), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642217,21 +642665,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197278] = 7, - ACTIONS(8656), 1, + [197449] = 4, + ACTIONS(9101), 1, + anon_sym_LT, + STATE(6547), 1, + sym_type_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4119), 10, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [197472] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10109), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9145), 1, + STATE(8545), 1, sym_simple_identifier, + STATE(8835), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642239,21 +642706,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197307] = 7, - ACTIONS(8656), 1, + [197501] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10111), 1, + ACTIONS(10082), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9116), 1, + STATE(9361), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642261,21 +642728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197336] = 7, - ACTIONS(9264), 1, + [197530] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9270), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(8327), 1, + ACTIONS(10084), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8328), 1, + STATE(9268), 1, sym_simple_identifier, - STATE(8388), 1, - sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9266), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642283,21 +642750,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197365] = 7, - ACTIONS(431), 1, + [197559] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(3298), 1, - sym_simple_identifier, - STATE(3325), 1, + ACTIONS(10086), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(3400), 1, - sym__simple_user_type, + STATE(9231), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642305,21 +642772,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197394] = 7, - ACTIONS(9204), 1, + [197588] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5678), 1, - sym_simple_identifier, - STATE(5689), 1, + ACTIONS(10088), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(5691), 1, - sym__simple_user_type, + STATE(9355), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642327,21 +642794,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197423] = 7, - ACTIONS(8656), 1, + [197617] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10113), 1, + ACTIONS(10090), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9112), 1, + STATE(9210), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642349,21 +642816,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197452] = 7, - ACTIONS(8656), 1, + [197646] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10115), 1, + ACTIONS(10092), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9138), 1, + STATE(9176), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642371,21 +642838,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197481] = 7, - ACTIONS(8656), 1, + [197675] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10117), 1, + ACTIONS(10094), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9126), 1, + STATE(9349), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642393,21 +642860,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197510] = 7, - ACTIONS(8656), 1, + [197704] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10119), 1, + ACTIONS(10096), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9096), 1, + STATE(9180), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642415,21 +642882,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197539] = 7, - ACTIONS(255), 1, + [197733] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(2930), 1, + STATE(8545), 1, sym_simple_identifier, - STATE(3018), 1, - sym__simple_user_type, + STATE(8914), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642437,21 +642904,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197568] = 7, - ACTIONS(8656), 1, + [197762] = 7, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - ACTIONS(10121), 1, - anon_sym_DOT, - STATE(6073), 1, + ACTIONS(10098), 1, + anon_sym_class, + STATE(4609), 1, sym__lexical_identifier, - STATE(9172), 1, + STATE(5179), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642459,21 +642926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197597] = 7, - ACTIONS(8656), 1, + [197791] = 7, + ACTIONS(9344), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9352), 1, sym__backtick_identifier, - ACTIONS(10123), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(5657), 1, sym__lexical_identifier, - STATE(9107), 1, + STATE(5677), 1, sym_simple_identifier, + STATE(5691), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9350), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642481,21 +642948,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197626] = 7, - ACTIONS(8656), 1, + [197820] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10125), 1, + ACTIONS(10100), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9208), 1, + STATE(9346), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642503,21 +642970,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197655] = 7, - ACTIONS(557), 1, - sym__alpha_identifier, - ACTIONS(637), 1, - sym__backtick_identifier, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2805), 1, - sym_simple_identifier, - STATE(2829), 1, - sym__simple_user_type, + [197849] = 5, + ACTIONS(10102), 1, + anon_sym_DOT, + STATE(6595), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(4072), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642525,21 +642989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197684] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - ACTIONS(10127), 1, + [197874] = 5, + ACTIONS(10105), 1, anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9154), 1, - sym_simple_identifier, + STATE(8001), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(4105), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642547,21 +643009,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197713] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [197899] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10129), 1, + ACTIONS(10108), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9293), 1, + STATE(9342), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642569,21 +643032,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197742] = 7, - ACTIONS(115), 1, + [197928] = 7, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(541), 1, sym__backtick_identifier, - ACTIONS(10131), 1, + ACTIONS(10110), 1, anon_sym_class, - STATE(4537), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(4888), 1, + STATE(3955), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642591,21 +643054,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197771] = 7, - ACTIONS(8656), 1, + [197957] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10133), 1, + ACTIONS(10112), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9100), 1, + STATE(9136), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642613,21 +643076,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197800] = 7, - ACTIONS(1724), 1, + [197986] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(1788), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5344), 1, - sym_simple_identifier, - STATE(5465), 1, + ACTIONS(10114), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(5515), 1, - sym__simple_user_type, + STATE(9333), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3092), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642635,21 +643098,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197829] = 7, - ACTIONS(9192), 1, + [198015] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4529), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(4541), 1, + STATE(8545), 1, sym_simple_identifier, - STATE(4599), 1, - sym__simple_user_type, + STATE(8939), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9196), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642657,21 +643120,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197858] = 7, - ACTIONS(8656), 1, + [198044] = 7, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(10135), 1, - anon_sym_DOT, - STATE(6073), 1, + ACTIONS(10116), 1, + sym_wildcard_import, + STATE(5685), 1, sym__lexical_identifier, - STATE(9360), 1, + STATE(8810), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642679,16 +643142,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197887] = 3, + [198073] = 4, + ACTIONS(10118), 1, + anon_sym_DOT, + STATE(7909), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 4, - anon_sym_DOT, + ACTIONS(4105), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, sym__quest, + [198096] = 7, + ACTIONS(9206), 1, + sym__alpha_identifier, + ACTIONS(9210), 1, sym__backtick_identifier, - ACTIONS(4321), 8, + STATE(5681), 1, + sym_simple_identifier, + STATE(5699), 1, + sym__simple_user_type, + STATE(5708), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9208), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642696,22 +643183,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198125] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - [197908] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10137), 1, + ACTIONS(10120), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9095), 1, + STATE(9332), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642719,21 +643205,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197937] = 7, - ACTIONS(7), 1, + [198154] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(201), 1, sym__backtick_identifier, - STATE(4584), 1, + ACTIONS(10122), 1, + anon_sym_class, + STATE(2894), 1, sym__lexical_identifier, - STATE(4646), 1, + STATE(3558), 1, + sym_simple_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1588), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198183] = 7, + ACTIONS(463), 1, + sym__alpha_identifier, + ACTIONS(541), 1, + sym__backtick_identifier, + STATE(3332), 1, sym_simple_identifier, - STATE(4825), 1, + STATE(3334), 1, + sym__lexical_identifier, + STATE(3424), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642741,18 +643249,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [197966] = 5, - ACTIONS(10139), 1, + [198212] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(10124), 1, anon_sym_DOT, - STATE(8003), 1, - aux_sym_user_type_repeat1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9329), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642760,22 +643271,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198241] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - [197991] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10142), 1, + ACTIONS(10126), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9110), 1, + STATE(9192), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642783,21 +643293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198020] = 7, - ACTIONS(9214), 1, + [198270] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9220), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2817), 1, - sym_simple_identifier, - STATE(2856), 1, + ACTIONS(10128), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(3005), 1, - sym__simple_user_type, + STATE(9325), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9218), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642805,21 +643315,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198049] = 7, - ACTIONS(345), 1, + [198299] = 7, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(201), 1, sym__backtick_identifier, - STATE(813), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(821), 1, + STATE(2912), 1, sym_simple_identifier, - STATE(844), 1, + STATE(3030), 1, sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642827,21 +643337,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198078] = 7, - ACTIONS(8656), 1, + [198328] = 7, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(10144), 1, - anon_sym_DOT, - STATE(6073), 1, + ACTIONS(10130), 1, + anon_sym_class, + STATE(2802), 1, sym__lexical_identifier, - STATE(9111), 1, + STATE(3163), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642849,18 +643359,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198107] = 5, - ACTIONS(10146), 1, + [198357] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(10132), 1, anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9288), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642868,22 +643381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198386] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - [198132] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10149), 1, + ACTIONS(10134), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9339), 1, + STATE(9323), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642891,21 +643403,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198161] = 7, - ACTIONS(8656), 1, + [198415] = 7, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8497), 1, + STATE(2784), 1, sym_simple_identifier, - STATE(8858), 1, - sym_variable_declaration, + STATE(2802), 1, + sym__lexical_identifier, + STATE(2858), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642913,21 +643425,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198190] = 7, - ACTIONS(8656), 1, + [198444] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(10136), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8497), 1, + STATE(9118), 1, sym_simple_identifier, - STATE(9439), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642935,21 +643447,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198219] = 7, - ACTIONS(8656), 1, + [198473] = 7, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - ACTIONS(10151), 1, - anon_sym_DOT, - STATE(6073), 1, + ACTIONS(10138), 1, + anon_sym_class, + STATE(820), 1, sym__lexical_identifier, - STATE(9113), 1, + STATE(1046), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642957,18 +643469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198248] = 5, - ACTIONS(10153), 1, + [198502] = 5, + ACTIONS(10140), 1, anon_sym_DOT, - STATE(7976), 1, + STATE(7995), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, + ACTIONS(4105), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642977,21 +643489,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [198273] = 7, - ACTIONS(8656), 1, + [198527] = 7, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - ACTIONS(10156), 1, - anon_sym_DOT, - STATE(6073), 1, + ACTIONS(10143), 1, + anon_sym_class, + STATE(2802), 1, sym__lexical_identifier, - STATE(9392), 1, + STATE(3081), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -642999,21 +643511,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198302] = 7, - ACTIONS(8656), 1, + [198556] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10158), 1, + ACTIONS(10145), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9117), 1, + STATE(9281), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643021,21 +643533,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198331] = 7, - ACTIONS(8656), 1, + [198585] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10160), 1, + ACTIONS(10147), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9287), 1, + STATE(9194), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643043,21 +643555,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198360] = 7, - ACTIONS(8656), 1, + [198614] = 7, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - ACTIONS(10162), 1, - anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9118), 1, + STATE(5681), 1, sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, + STATE(5699), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643065,21 +643577,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198389] = 7, - ACTIONS(8656), 1, + [198643] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10164), 1, + ACTIONS(10149), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9197), 1, + STATE(9271), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643087,18 +643599,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198418] = 5, - ACTIONS(10166), 1, - anon_sym_DOT, - STATE(8000), 1, - aux_sym_user_type_repeat1, + [198672] = 7, + ACTIONS(9134), 1, + sym__alpha_identifier, + ACTIONS(9142), 1, + sym__backtick_identifier, + STATE(4530), 1, + sym_simple_identifier, + STATE(4535), 1, + sym__lexical_identifier, + STATE(4591), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643106,19 +643621,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [198701] = 7, + ACTIONS(9112), 1, sym__alpha_identifier, - [198443] = 5, - ACTIONS(10169), 1, + ACTIONS(9120), 1, + sym__backtick_identifier, + STATE(2819), 1, + sym__lexical_identifier, + STATE(2872), 1, + sym_simple_identifier, + STATE(3045), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9116), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198730] = 5, + ACTIONS(10151), 1, anon_sym_DOT, - STATE(6592), 1, + STATE(6595), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, + ACTIONS(4072), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643127,21 +643663,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [198468] = 7, - ACTIONS(8656), 1, + [198755] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10172), 1, + ACTIONS(10154), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9119), 1, + STATE(9310), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643149,21 +643685,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198497] = 7, - ACTIONS(8656), 1, + [198784] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10174), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9261), 1, + STATE(8545), 1, sym_simple_identifier, + STATE(9021), 1, + sym_variable_declaration, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198813] = 5, + ACTIONS(10156), 1, + anon_sym_DOT, + STATE(8015), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(4105), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643171,21 +643726,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198526] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [198838] = 7, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + STATE(819), 1, + sym_simple_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(847), 1, + sym__simple_user_type, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(1612), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198867] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(10159), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(8497), 1, + STATE(9396), 1, sym_simple_identifier, - STATE(9046), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643193,18 +643771,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198555] = 5, - ACTIONS(10176), 1, + [198896] = 5, + ACTIONS(10161), 1, anon_sym_DOT, - STATE(7988), 1, + STATE(6595), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, + ACTIONS(4072), 2, sym__quest, sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643213,21 +643791,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [198580] = 7, - ACTIONS(8656), 1, + [198921] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10179), 1, + ACTIONS(10164), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9364), 1, + STATE(9401), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [198950] = 5, + ACTIONS(10166), 1, + anon_sym_DOT, + STATE(7943), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4105), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643235,21 +643832,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198609] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [198975] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10181), 1, + ACTIONS(10169), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9393), 1, + STATE(9169), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643257,21 +643855,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198638] = 7, - ACTIONS(8656), 1, + [199004] = 7, + ACTIONS(9166), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9174), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(5611), 1, sym__lexical_identifier, - STATE(8497), 1, + STATE(5616), 1, sym_simple_identifier, - STATE(9767), 1, - sym_variable_declaration, + STATE(5644), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9170), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643279,21 +643877,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198667] = 7, - ACTIONS(7), 1, + [199033] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10183), 1, - anon_sym_class, - STATE(4584), 1, + ACTIONS(10171), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(5244), 1, + STATE(9313), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643301,21 +643899,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198696] = 7, - ACTIONS(8656), 1, + [199062] = 7, + ACTIONS(9382), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9390), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8497), 1, + STATE(5832), 1, sym_simple_identifier, - STATE(9012), 1, - sym_variable_declaration, + STATE(5840), 1, + sym__lexical_identifier, + STATE(5846), 1, + sym__simple_user_type, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9388), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643323,21 +643921,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198725] = 7, - ACTIONS(8656), 1, + [199091] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10185), 1, + ACTIONS(10173), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9250), 1, + STATE(9367), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643345,18 +643943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198754] = 5, - ACTIONS(10187), 1, + [199120] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(10175), 1, anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9190), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643364,19 +643965,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199149] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - [198779] = 5, - ACTIONS(10190), 1, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(10177), 1, anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9238), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643384,22 +643987,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199178] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - [198804] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10193), 1, + ACTIONS(10179), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9357), 1, + STATE(9422), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643407,21 +644009,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198833] = 7, - ACTIONS(8656), 1, + [199207] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8497), 1, + STATE(8545), 1, sym_simple_identifier, - STATE(8977), 1, + STATE(9526), 1, sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643429,18 +644031,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198862] = 5, - ACTIONS(10195), 1, - anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + [199236] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8832), 1, + sym_parameter, + STATE(9631), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643448,19 +644053,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199265] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - [198887] = 5, - ACTIONS(10198), 1, - anon_sym_LPAREN, - STATE(7183), 1, - sym_value_arguments, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(8545), 1, + sym_simple_identifier, + STATE(8870), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7096), 2, - anon_sym_AT, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [199294] = 5, + ACTIONS(10181), 1, + anon_sym_DOT, + STATE(6595), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4072), 2, + sym__quest, sym__backtick_identifier, - ACTIONS(7094), 8, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643469,21 +644095,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_expect, anon_sym_actual, sym__alpha_identifier, - [198912] = 7, - ACTIONS(9352), 1, - sym__alpha_identifier, - ACTIONS(9364), 1, - sym__backtick_identifier, - STATE(3498), 1, - sym_simple_identifier, - STATE(3637), 1, - sym__lexical_identifier, - STATE(3806), 1, - sym__simple_user_type, + [199319] = 5, + ACTIONS(10184), 1, + anon_sym_DOT, + STATE(6595), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9360), 7, + ACTIONS(4072), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4070), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643491,21 +644114,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198941] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [199344] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10201), 1, + ACTIONS(10187), 1, anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9300), 1, + STATE(9417), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643513,21 +644137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198970] = 7, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(10203), 1, - anon_sym_class, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3868), 1, - sym_simple_identifier, + [199373] = 5, + ACTIONS(10189), 1, + anon_sym_DOT, + STATE(8016), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(4105), 2, + sym__quest, + sym__backtick_identifier, + ACTIONS(4103), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643535,21 +644156,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [198999] = 7, - ACTIONS(8656), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + [199398] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + ACTIONS(10192), 1, + anon_sym_DOT, + STATE(6361), 1, sym__lexical_identifier, - STATE(9029), 1, - sym_parameter, - STATE(9511), 1, + STATE(9363), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643557,21 +644179,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199028] = 7, - ACTIONS(8656), 1, + [199427] = 7, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10205), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9375), 1, + STATE(8545), 1, sym_simple_identifier, + STATE(8884), 1, + sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643579,18 +644201,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199057] = 5, - ACTIONS(10207), 1, + [199456] = 7, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + ACTIONS(10194), 1, anon_sym_DOT, - STATE(7999), 1, - aux_sym_user_type_repeat1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9345), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643598,22 +644223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199485] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - [199082] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - ACTIONS(10210), 1, - anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9336), 1, + STATE(2252), 1, sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643621,66 +644243,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199111] = 11, - ACTIONS(10212), 1, + [199511] = 10, + ACTIONS(10202), 1, anon_sym_typealias, - ACTIONS(10216), 1, + ACTIONS(10206), 1, anon_sym_enum, - ACTIONS(10218), 1, - anon_sym_constructor, - ACTIONS(10222), 1, - anon_sym_companion, - ACTIONS(10224), 1, + ACTIONS(10208), 1, anon_sym_object, - ACTIONS(10226), 1, + ACTIONS(10210), 1, anon_sym_fun, - ACTIONS(10228), 1, + ACTIONS(10212), 1, anon_sym_get, - ACTIONS(10230), 1, + ACTIONS(10214), 1, anon_sym_set, + STATE(6157), 1, + sym_binding_pattern_kind, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10214), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10220), 2, + ACTIONS(9898), 2, anon_sym_val, anon_sym_var, - [199148] = 7, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - ACTIONS(10232), 1, + ACTIONS(10204), 2, anon_sym_class, - STATE(3325), 1, - sym__lexical_identifier, - STATE(3893), 1, - sym_simple_identifier, + anon_sym_interface, + [199545] = 4, + ACTIONS(9920), 1, + sym__quest, + STATE(6722), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [199177] = 5, - ACTIONS(10234), 1, - anon_sym_DOT, - STATE(8015), 1, - aux_sym_user_type_repeat1, + ACTIONS(4210), 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, + [199567] = 6, + ACTIONS(205), 1, + sym__alpha_identifier, + ACTIONS(285), 1, + sym__backtick_identifier, + STATE(4534), 1, + sym__lexical_identifier, + STATE(5277), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4162), 8, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643688,19 +644305,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199593] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - [199202] = 5, - ACTIONS(10237), 1, - anon_sym_DOT, - STATE(6592), 1, - aux_sym_user_type_repeat1, + ACTIONS(10200), 1, + sym__backtick_identifier, + STATE(2662), 1, + sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 2, - sym__quest, - sym__backtick_identifier, - ACTIONS(4143), 8, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643708,22 +644325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [199619] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - [199227] = 7, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8497), 1, + STATE(9156), 1, sym_simple_identifier, - STATE(8872), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643731,21 +644345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199256] = 7, - ACTIONS(9204), 1, + [199645] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10240), 1, - sym_wildcard_import, - STATE(5689), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8917), 1, + STATE(9186), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643753,21 +644365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199285] = 7, - ACTIONS(8656), 1, + [199671] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - ACTIONS(10242), 1, - anon_sym_DOT, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9236), 1, + STATE(8843), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643775,21 +644385,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199314] = 7, - ACTIONS(8656), 1, + [199697] = 10, + ACTIONS(25), 1, + anon_sym_LBRACE, + ACTIONS(1674), 1, + anon_sym_AT, + ACTIONS(6981), 1, + anon_sym_LPAREN, + ACTIONS(6987), 1, + sym_label, + STATE(4545), 1, + sym_value_arguments, + STATE(5226), 1, + sym_annotated_lambda, + STATE(5245), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8343), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [199731] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8497), 1, + STATE(9154), 1, sym_simple_identifier, - STATE(8954), 1, - sym_variable_declaration, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643797,21 +644429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199343] = 7, - ACTIONS(8656), 1, + [199757] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - ACTIONS(10244), 1, - anon_sym_DOT, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9136), 1, + STATE(2400), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643819,19 +644449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199372] = 6, - ACTIONS(7), 1, + [199783] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4584), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(5174), 1, + STATE(8886), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643839,19 +644469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199398] = 6, - ACTIONS(8656), 1, + [199809] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8970), 1, + STATE(564), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643859,19 +644489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199424] = 6, - ACTIONS(8656), 1, + [199835] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8889), 1, + STATE(9422), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643879,19 +644509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199450] = 6, - ACTIONS(8656), 1, + [199861] = 6, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(9234), 1, + STATE(4260), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643899,19 +644529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199476] = 6, - ACTIONS(8656), 1, + [199887] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9232), 1, + STATE(9821), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643919,37 +644549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199502] = 4, - ACTIONS(10246), 1, - anon_sym_DOT, - STATE(8268), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [199524] = 6, - ACTIONS(8656), 1, + [199913] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9299), 1, + STATE(9402), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643957,19 +644569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199550] = 6, - ACTIONS(8656), 1, + [199939] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(8982), 1, + STATE(5518), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643977,19 +644589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199576] = 6, - ACTIONS(115), 1, + [199965] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(5592), 1, + STATE(562), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -643997,19 +644609,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199602] = 6, - ACTIONS(10248), 1, + [199991] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2540), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9363), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644017,19 +644629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199628] = 6, - ACTIONS(9204), 1, - sym__alpha_identifier, - ACTIONS(9212), 1, - sym__backtick_identifier, - STATE(5405), 1, - sym_simple_identifier, - STATE(5689), 1, - sym__lexical_identifier, + [200017] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(9918), 3, + anon_sym_DOT, + anon_sym_LPAREN, + sym__backtick_identifier, + ACTIONS(9916), 8, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644037,19 +644645,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199654] = 6, - ACTIONS(10248), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + [200037] = 6, + ACTIONS(10222), 1, + sym__alpha_identifier, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2542), 1, + STATE(382), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644057,19 +644666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199680] = 6, - ACTIONS(10248), 1, + [200063] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2544), 1, + STATE(542), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644077,19 +644686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199706] = 6, - ACTIONS(431), 1, + [200089] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(3325), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(4200), 1, + STATE(9343), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644097,19 +644706,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199732] = 6, - ACTIONS(10248), 1, + [200115] = 10, + ACTIONS(10228), 1, + anon_sym_typealias, + ACTIONS(10232), 1, + anon_sym_enum, + ACTIONS(10234), 1, + anon_sym_object, + ACTIONS(10236), 1, + anon_sym_fun, + ACTIONS(10238), 1, + anon_sym_get, + ACTIONS(10240), 1, + anon_sym_set, + STATE(6259), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10230), 2, + anon_sym_class, + anon_sym_interface, + [200149] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2562), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9263), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644117,19 +644750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199758] = 6, - ACTIONS(10254), 1, + [200175] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2569), 1, + STATE(399), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644137,19 +644770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199784] = 6, - ACTIONS(8656), 1, + [200201] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9229), 1, + STATE(9415), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644157,19 +644790,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199810] = 6, - ACTIONS(10254), 1, + [200227] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2573), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9116), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644177,19 +644810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199836] = 6, - ACTIONS(10254), 1, + [200253] = 6, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(419), 1, sym__backtick_identifier, - STATE(2574), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(820), 1, sym__lexical_identifier, + STATE(865), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644197,19 +644830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199862] = 6, - ACTIONS(255), 1, + [200279] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2881), 1, - sym__lexical_identifier, - STATE(4056), 1, + STATE(568), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644217,19 +644850,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199888] = 6, - ACTIONS(10260), 1, + [200305] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(416), 1, - sym_simple_identifier, - STATE(871), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9113), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644237,19 +644870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199914] = 6, - ACTIONS(10254), 1, + [200331] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2575), 1, + STATE(539), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644257,19 +644890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199940] = 6, - ACTIONS(10260), 1, + [200357] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(408), 1, + STATE(380), 1, sym_simple_identifier, - STATE(871), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644277,19 +644910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199966] = 6, - ACTIONS(10248), 1, + [200383] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2395), 1, + STATE(390), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644297,19 +644930,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [199992] = 6, - ACTIONS(8656), 1, + [200409] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(4609), 1, sym__lexical_identifier, - STATE(9237), 1, + STATE(5615), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644317,39 +644950,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200018] = 6, + [200435] = 10, + ACTIONS(10242), 1, + anon_sym_typealias, + ACTIONS(10246), 1, + anon_sym_enum, ACTIONS(10248), 1, - sym__alpha_identifier, + anon_sym_object, + ACTIONS(10250), 1, + anon_sym_fun, ACTIONS(10252), 1, - sym__backtick_identifier, - STATE(2394), 1, - sym_simple_identifier, - STATE(3200), 1, - sym__lexical_identifier, + anon_sym_get, + ACTIONS(10254), 1, + anon_sym_set, + STATE(6198), 1, + sym_binding_pattern_kind, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [200044] = 6, - ACTIONS(10248), 1, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10244), 2, + anon_sym_class, + anon_sym_interface, + [200469] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2390), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9150), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644357,19 +644994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200070] = 6, - ACTIONS(557), 1, + [200495] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2770), 1, - sym__lexical_identifier, - STATE(3719), 1, + STATE(527), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644377,19 +645014,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200096] = 6, - ACTIONS(10248), 1, + [200521] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2388), 1, + STATE(385), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644397,19 +645034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200122] = 6, - ACTIONS(10260), 1, + [200547] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(522), 1, + STATE(1338), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644417,19 +645054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200148] = 6, - ACTIONS(10248), 1, + [200573] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2195), 1, + STATE(520), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644437,19 +645074,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200174] = 6, - ACTIONS(10260), 1, + [200599] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(538), 1, - sym_simple_identifier, - STATE(871), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9345), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644457,19 +645094,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200200] = 6, - ACTIONS(10260), 1, + [200625] = 6, + ACTIONS(10256), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10260), 1, sym__backtick_identifier, - STATE(539), 1, + STATE(2223), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3692), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10258), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644477,19 +645114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200226] = 6, - ACTIONS(345), 1, + [200651] = 6, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(623), 1, sym__backtick_identifier, - STATE(813), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(1387), 1, + STATE(2952), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644497,19 +645134,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200252] = 6, - ACTIONS(10260), 1, + [200677] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(540), 1, + STATE(1293), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644517,19 +645154,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200278] = 6, - ACTIONS(10260), 1, + [200703] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(409), 1, + STATE(1319), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644537,19 +645174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200304] = 6, - ACTIONS(10260), 1, + [200729] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(537), 1, + STATE(2389), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644557,19 +645194,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200330] = 6, - ACTIONS(10260), 1, - sym__alpha_identifier, + [200755] = 10, + ACTIONS(10242), 1, + anon_sym_typealias, ACTIONS(10264), 1, + anon_sym_enum, + ACTIONS(10266), 1, + anon_sym_object, + ACTIONS(10268), 1, + anon_sym_fun, + ACTIONS(10270), 1, + anon_sym_get, + ACTIONS(10272), 1, + anon_sym_set, + STATE(6299), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10262), 2, + anon_sym_class, + anon_sym_interface, + [200789] = 6, + ACTIONS(10196), 1, + sym__alpha_identifier, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(518), 1, + STATE(2228), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644577,19 +645238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200356] = 6, - ACTIONS(10260), 1, + [200815] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(541), 1, + STATE(402), 1, sym_simple_identifier, - STATE(871), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644597,19 +645258,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200382] = 6, - ACTIONS(10260), 1, + [200841] = 10, + ACTIONS(10228), 1, + anon_sym_typealias, + ACTIONS(10276), 1, + anon_sym_enum, + ACTIONS(10278), 1, + anon_sym_object, + ACTIONS(10280), 1, + anon_sym_fun, + ACTIONS(10282), 1, + anon_sym_get, + ACTIONS(10284), 1, + anon_sym_set, + STATE(6027), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10274), 2, + anon_sym_class, + anon_sym_interface, + [200875] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(542), 1, - sym_simple_identifier, - STATE(871), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9367), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644617,19 +645302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200408] = 6, - ACTIONS(8656), 1, + [200901] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8883), 1, + STATE(529), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644637,19 +645322,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200434] = 6, - ACTIONS(10260), 1, + [200927] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(411), 1, + STATE(2232), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644657,19 +645342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200460] = 6, - ACTIONS(8656), 1, + [200953] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9225), 1, + STATE(9104), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644677,19 +645362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200486] = 6, - ACTIONS(8656), 1, + [200979] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9063), 1, + STATE(9404), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644697,19 +645382,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200512] = 6, - ACTIONS(8656), 1, + [201005] = 6, + ACTIONS(9344), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9352), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9236), 1, + STATE(5422), 1, sym_simple_identifier, + STATE(5657), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9350), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644717,19 +645402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200538] = 6, - ACTIONS(8656), 1, + [201031] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9136), 1, + STATE(9102), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644737,19 +645422,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200564] = 6, - ACTIONS(8656), 1, + [201057] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9170), 1, + STATE(8831), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644757,15 +645442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200590] = 3, + [201083] = 6, + ACTIONS(339), 1, + sym__alpha_identifier, + ACTIONS(419), 1, + sym__backtick_identifier, + STATE(820), 1, + sym__lexical_identifier, + STATE(1421), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9954), 3, - anon_sym_DOT, - anon_sym_LPAREN, - sym__backtick_identifier, - ACTIONS(9952), 8, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644773,20 +645462,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, + [201109] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - [200610] = 6, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9303), 1, + STATE(1311), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644794,15 +645482,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200636] = 4, - ACTIONS(9945), 1, - sym__quest, - STATE(6728), 1, - aux_sym_nullable_type_repeat1, + [201135] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4297), 9, + ACTIONS(4640), 11, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -644810,21 +645494,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_GT, anon_sym_where, + anon_sym_AMP, anon_sym_DASH_GT, + anon_sym_in, anon_sym_while, - [200658] = 6, - ACTIONS(8656), 1, + [201153] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9223), 1, + STATE(9101), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644832,19 +645518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200684] = 6, - ACTIONS(10254), 1, + [201179] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2256), 1, + STATE(535), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644852,19 +645538,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200710] = 6, - ACTIONS(10260), 1, + [201205] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(406), 1, + STATE(538), 1, sym_simple_identifier, - STATE(871), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644872,19 +645558,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200736] = 6, - ACTIONS(8656), 1, + [201231] = 10, + ACTIONS(10202), 1, + anon_sym_typealias, + ACTIONS(10288), 1, + anon_sym_enum, + ACTIONS(10290), 1, + anon_sym_object, + ACTIONS(10292), 1, + anon_sym_fun, + ACTIONS(10294), 1, + anon_sym_get, + ACTIONS(10296), 1, + anon_sym_set, + STATE(5952), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10286), 2, + anon_sym_class, + anon_sym_interface, + [201265] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9222), 1, + STATE(9313), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644892,19 +645602,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200762] = 6, - ACTIONS(9204), 1, + [201291] = 10, + ACTIONS(10242), 1, + anon_sym_typealias, + ACTIONS(10300), 1, + anon_sym_enum, + ACTIONS(10302), 1, + anon_sym_object, + ACTIONS(10304), 1, + anon_sym_fun, + ACTIONS(10306), 1, + anon_sym_get, + ACTIONS(10308), 1, + anon_sym_set, + STATE(6058), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10298), 2, + anon_sym_class, + anon_sym_interface, + [201325] = 6, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(285), 1, sym__backtick_identifier, - STATE(5689), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(8521), 1, + STATE(5008), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644912,19 +645646,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200788] = 6, - ACTIONS(9204), 1, + [201351] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5689), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8583), 1, + STATE(9169), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644932,19 +645666,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200814] = 6, - ACTIONS(7), 1, + [201377] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4584), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(5519), 1, + STATE(9357), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644952,19 +645686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200840] = 6, - ACTIONS(9204), 1, + [201403] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5689), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9502), 1, + STATE(9110), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644972,19 +645706,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200866] = 6, - ACTIONS(8656), 1, + [201429] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9456), 1, + STATE(540), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -644992,19 +645726,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200892] = 6, - ACTIONS(9204), 1, + [201455] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(5689), 1, - sym__lexical_identifier, - STATE(9428), 1, + STATE(2394), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645012,19 +645746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200918] = 6, - ACTIONS(10260), 1, + [201481] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(585), 1, - sym_simple_identifier, - STATE(871), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9396), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645032,19 +645766,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200944] = 6, - ACTIONS(345), 1, + [201507] = 6, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(419), 1, sym__backtick_identifier, - STATE(813), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(1021), 1, + STATE(2230), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645052,19 +645786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200970] = 6, - ACTIONS(8656), 1, + [201533] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9375), 1, + STATE(2579), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645072,19 +645806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [200996] = 6, - ACTIONS(10260), 1, + [201559] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(589), 1, + STATE(2225), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645092,19 +645826,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201022] = 6, - ACTIONS(10260), 1, + [201585] = 10, + ACTIONS(10228), 1, + anon_sym_typealias, + ACTIONS(10312), 1, + anon_sym_enum, + ACTIONS(10314), 1, + anon_sym_object, + ACTIONS(10316), 1, + anon_sym_fun, + ACTIONS(10318), 1, + anon_sym_get, + ACTIONS(10320), 1, + anon_sym_set, + STATE(6257), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10310), 2, + anon_sym_class, + anon_sym_interface, + [201619] = 6, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - STATE(592), 1, - sym_simple_identifier, - STATE(871), 1, + STATE(5685), 1, sym__lexical_identifier, + STATE(8593), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645112,19 +645870,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201048] = 6, - ACTIONS(8656), 1, + [201645] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(9219), 1, + STATE(3231), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645132,19 +645890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201074] = 6, - ACTIONS(10254), 1, + [201671] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2663), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(8874), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645152,19 +645910,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201100] = 6, - ACTIONS(8656), 1, + [201697] = 10, + ACTIONS(10322), 1, + anon_sym_typealias, + ACTIONS(10326), 1, + anon_sym_enum, + ACTIONS(10328), 1, + anon_sym_object, + ACTIONS(10330), 1, + anon_sym_fun, + ACTIONS(10332), 1, + anon_sym_get, + ACTIONS(10334), 1, + anon_sym_set, + STATE(5999), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10324), 2, + anon_sym_class, + anon_sym_interface, + [201731] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9300), 1, + STATE(2226), 1, sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645172,19 +645954,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201126] = 6, - ACTIONS(8656), 1, + [201757] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9216), 1, + STATE(9434), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645192,19 +645974,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201152] = 6, - ACTIONS(10260), 1, + [201783] = 10, + ACTIONS(1674), 1, + anon_sym_AT, + ACTIONS(1852), 1, + anon_sym_LBRACE, + ACTIONS(4465), 1, + anon_sym_LPAREN, + ACTIONS(10336), 1, + sym_label, + STATE(2737), 1, + sym_value_arguments, + STATE(3076), 1, + sym_annotated_lambda, + STATE(3212), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8347), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [201817] = 4, + ACTIONS(10338), 1, + anon_sym_DOT, + STATE(6591), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4105), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + anon_sym_AMP, + sym__quest, + anon_sym_while, + [201839] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(413), 1, + STATE(2575), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645212,19 +646036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201178] = 6, - ACTIONS(8656), 1, + [201865] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9213), 1, + STATE(2227), 1, sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645232,19 +646056,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201204] = 6, - ACTIONS(10248), 1, + [201891] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2215), 1, + STATE(401), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645252,19 +646076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201230] = 6, - ACTIONS(10260), 1, + [201917] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(593), 1, - sym_simple_identifier, - STATE(871), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9124), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645272,19 +646096,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201256] = 6, - ACTIONS(10248), 1, + [201943] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2239), 1, + STATE(563), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645292,19 +646116,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201282] = 6, - ACTIONS(557), 1, + [201969] = 3, + ACTIONS(4162), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4160), 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, + [201989] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2770), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(4061), 1, + STATE(8804), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645312,19 +646153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201308] = 6, - ACTIONS(8656), 1, + [202015] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9288), 1, + STATE(2574), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645332,19 +646173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201334] = 6, - ACTIONS(10248), 1, + [202041] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(2218), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(4609), 1, sym__lexical_identifier, + STATE(5097), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645352,19 +646193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201360] = 6, - ACTIONS(8656), 1, + [202067] = 6, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(9207), 1, + STATE(3735), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645372,19 +646213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201386] = 6, - ACTIONS(115), 1, + [202093] = 6, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - STATE(4537), 1, - sym__lexical_identifier, - STATE(4971), 1, + STATE(5371), 1, sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645392,19 +646233,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201412] = 6, - ACTIONS(8656), 1, + [202119] = 6, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(9357), 1, + STATE(3169), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645412,19 +646253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201438] = 6, - ACTIONS(10254), 1, + [202145] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2285), 1, + STATE(383), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645432,19 +646273,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201464] = 6, - ACTIONS(8656), 1, + [202171] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9206), 1, + STATE(8801), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645452,19 +646293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201490] = 6, - ACTIONS(8656), 1, + [202197] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9250), 1, + STATE(9281), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645472,19 +646313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201516] = 6, - ACTIONS(10248), 1, + [202223] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(2232), 1, + STATE(2393), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645492,19 +646333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201542] = 6, - ACTIONS(8656), 1, + [202249] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9393), 1, + STATE(9131), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645512,19 +646353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201568] = 6, - ACTIONS(8656), 1, + [202275] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9199), 1, + STATE(9190), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645532,19 +646373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201594] = 6, - ACTIONS(8656), 1, + [202301] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9325), 1, + STATE(2391), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645552,19 +646393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201620] = 6, - ACTIONS(9204), 1, + [202327] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(5416), 1, + STATE(413), 1, sym_simple_identifier, - STATE(5689), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645572,19 +646413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201646] = 6, - ACTIONS(8656), 1, + [202353] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8881), 1, + STATE(9321), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645592,19 +646433,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201672] = 6, - ACTIONS(10248), 1, + [202379] = 10, + ACTIONS(10322), 1, + anon_sym_typealias, + ACTIONS(10342), 1, + anon_sym_enum, + ACTIONS(10344), 1, + anon_sym_object, + ACTIONS(10346), 1, + anon_sym_fun, + ACTIONS(10348), 1, + anon_sym_get, + ACTIONS(10350), 1, + anon_sym_set, + STATE(6400), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10340), 2, + anon_sym_class, + anon_sym_interface, + [202413] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(2227), 1, + STATE(2390), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645612,19 +646477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201698] = 6, - ACTIONS(7), 1, + [202439] = 6, + ACTIONS(10352), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(10356), 1, sym__backtick_identifier, - STATE(4584), 1, + STATE(8663), 1, sym__lexical_identifier, - STATE(4937), 1, + STATE(8685), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(10354), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645632,19 +646497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201724] = 6, - ACTIONS(8656), 1, + [202465] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9083), 1, + STATE(9288), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645652,19 +646517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201750] = 6, - ACTIONS(8656), 1, + [202491] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9261), 1, + STATE(9323), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645672,19 +646537,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201776] = 6, - ACTIONS(9204), 1, + [202517] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5400), 1, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9129), 1, sym_simple_identifier, - STATE(5689), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [202543] = 6, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, sym__lexical_identifier, + STATE(9192), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645692,19 +646577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201802] = 6, - ACTIONS(8656), 1, + [202569] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(9120), 1, + STATE(4255), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645712,19 +646597,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201828] = 6, - ACTIONS(8656), 1, + [202595] = 10, + ACTIONS(10358), 1, + anon_sym_typealias, + ACTIONS(10362), 1, + anon_sym_enum, + ACTIONS(10364), 1, + anon_sym_object, + ACTIONS(10366), 1, + anon_sym_fun, + ACTIONS(10368), 1, + anon_sym_get, + ACTIONS(10370), 1, + anon_sym_set, + STATE(5990), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10360), 2, + anon_sym_class, + anon_sym_interface, + [202629] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9197), 1, + STATE(9325), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645732,19 +646641,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201854] = 6, - ACTIONS(10254), 1, + [202655] = 10, + ACTIONS(10372), 1, + anon_sym_typealias, + ACTIONS(10376), 1, + anon_sym_enum, + ACTIONS(10378), 1, + anon_sym_object, + ACTIONS(10380), 1, + anon_sym_fun, + ACTIONS(10382), 1, + anon_sym_get, + ACTIONS(10384), 1, + anon_sym_set, + STATE(6276), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10374), 2, + anon_sym_class, + anon_sym_interface, + [202689] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2260), 1, + STATE(2599), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645752,19 +646685,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201880] = 6, - ACTIONS(8656), 1, + [202715] = 10, + ACTIONS(9890), 1, + anon_sym_typealias, + ACTIONS(9894), 1, + anon_sym_enum, + ACTIONS(9902), 1, + anon_sym_object, + ACTIONS(9904), 1, + anon_sym_fun, + ACTIONS(9906), 1, + anon_sym_get, + ACTIONS(9908), 1, + anon_sym_set, + STATE(6010), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9892), 2, + anon_sym_class, + anon_sym_interface, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + [202749] = 10, + ACTIONS(10322), 1, + anon_sym_typealias, + ACTIONS(10388), 1, + anon_sym_enum, + ACTIONS(10390), 1, + anon_sym_object, + ACTIONS(10392), 1, + anon_sym_fun, + ACTIONS(10394), 1, + anon_sym_get, + ACTIONS(10396), 1, + anon_sym_set, + STATE(6084), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10386), 2, + anon_sym_class, + anon_sym_interface, + [202783] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9119), 1, + STATE(2311), 1, sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645772,19 +646753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201906] = 6, - ACTIONS(8656), 1, + [202809] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9200), 1, + STATE(9138), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645792,19 +646773,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201932] = 6, - ACTIONS(10248), 1, + [202835] = 10, + ACTIONS(10358), 1, + anon_sym_typealias, + ACTIONS(10400), 1, + anon_sym_enum, + ACTIONS(10402), 1, + anon_sym_object, + ACTIONS(10404), 1, + anon_sym_fun, + ACTIONS(10406), 1, + anon_sym_get, + ACTIONS(10408), 1, + anon_sym_set, + STATE(6214), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10398), 2, + anon_sym_class, + anon_sym_interface, + [202869] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2211), 1, + STATE(2586), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645812,19 +646817,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201958] = 6, - ACTIONS(8656), 1, + [202895] = 4, + ACTIONS(10410), 1, + anon_sym_DOT, + STATE(8283), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4105), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [202917] = 10, + ACTIONS(10412), 1, + anon_sym_typealias, + ACTIONS(10416), 1, + anon_sym_enum, + ACTIONS(10418), 1, + anon_sym_object, + ACTIONS(10420), 1, + anon_sym_fun, + ACTIONS(10422), 1, + anon_sym_get, + ACTIONS(10424), 1, + anon_sym_set, + STATE(6014), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10414), 2, + anon_sym_class, + anon_sym_interface, + [202951] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9680), 1, + STATE(9183), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645832,19 +646879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [201984] = 6, - ACTIONS(8656), 1, + [202977] = 6, + ACTIONS(10256), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10260), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9190), 1, + STATE(2233), 1, sym_simple_identifier, + STATE(3692), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10258), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645852,19 +646899,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202010] = 6, - ACTIONS(8656), 1, + [203003] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(9118), 1, + STATE(4079), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645872,19 +646919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202036] = 6, - ACTIONS(8656), 1, + [203029] = 6, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(541), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(3334), 1, sym__lexical_identifier, - STATE(9186), 1, + STATE(3690), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645892,43 +646939,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202062] = 10, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(7035), 1, - anon_sym_LPAREN, - ACTIONS(7041), 1, - sym_label, - STATE(4562), 1, - sym_value_arguments, - STATE(5089), 1, - sym_annotated_lambda, - STATE(5124), 1, - sym_lambda_literal, + [203055] = 6, + ACTIONS(8527), 1, + sym__alpha_identifier, + ACTIONS(8557), 1, + sym__backtick_identifier, + STATE(6361), 1, + sym__lexical_identifier, + STATE(9139), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8339), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [202096] = 6, - ACTIONS(8656), 1, + ACTIONS(8537), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203081] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9184), 1, + STATE(2597), 1, sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645936,19 +646979,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202122] = 6, - ACTIONS(8656), 1, + [203107] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(2256), 1, + sym_simple_identifier, + STATE(3642), 1, sym__lexical_identifier, - STATE(9115), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(10198), 7, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + [203133] = 6, + ACTIONS(10216), 1, + sym__alpha_identifier, + ACTIONS(10220), 1, + sym__backtick_identifier, + STATE(2406), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645956,19 +647019,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202148] = 6, - ACTIONS(10254), 1, + [203159] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2298), 1, + STATE(2598), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645976,19 +647039,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202174] = 6, - ACTIONS(8656), 1, + [203185] = 10, + ACTIONS(10358), 1, + anon_sym_typealias, + ACTIONS(10428), 1, + anon_sym_enum, + ACTIONS(10430), 1, + anon_sym_object, + ACTIONS(10432), 1, + anon_sym_fun, + ACTIONS(10434), 1, + anon_sym_get, + ACTIONS(10436), 1, + anon_sym_set, + STATE(6021), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10426), 2, + anon_sym_class, + anon_sym_interface, + [203219] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9113), 1, + STATE(9331), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -645996,19 +647083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202200] = 6, - ACTIONS(10248), 1, + [203245] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2593), 1, + STATE(2591), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646016,43 +647103,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202226] = 10, - ACTIONS(1646), 1, + [203271] = 10, + ACTIONS(1606), 1, anon_sym_LBRACE, - ACTIONS(1726), 1, + ACTIONS(1674), 1, anon_sym_AT, - ACTIONS(3672), 1, + ACTIONS(1686), 1, anon_sym_LPAREN, - ACTIONS(3684), 1, + ACTIONS(10438), 1, sym_label, - STATE(2977), 1, + STATE(757), 1, sym_value_arguments, - STATE(3875), 1, + STATE(1060), 1, sym_annotated_lambda, - STATE(3901), 1, + STATE(1080), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, + STATE(6059), 2, sym__single_annotation, sym__multi_annotation, - STATE(8345), 2, + STATE(8341), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [202260] = 6, - ACTIONS(8656), 1, + [203305] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9339), 1, + STATE(2411), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646060,19 +647147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202286] = 6, - ACTIONS(255), 1, + [203331] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2881), 1, - sym__lexical_identifier, - STATE(3750), 1, + STATE(408), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646080,19 +647167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202312] = 6, - ACTIONS(8656), 1, + [203357] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8812), 1, + STATE(421), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646100,19 +647187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202338] = 6, - ACTIONS(10254), 1, + [203383] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2288), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9142), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646120,19 +647207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202364] = 6, - ACTIONS(8656), 1, + [203409] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9111), 1, + STATE(9332), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646140,19 +647227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202390] = 6, - ACTIONS(8656), 1, + [203435] = 6, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9101), 1, + STATE(9463), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646160,37 +647247,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202416] = 4, - ACTIONS(9945), 1, - sym__quest, - STATE(6728), 1, - aux_sym_nullable_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4278), 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, - [202438] = 6, - ACTIONS(9192), 1, + [203461] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9200), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4529), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(5070), 1, + STATE(9143), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9196), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646198,19 +647267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202464] = 6, - ACTIONS(8656), 1, + [203487] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9293), 1, + STATE(9333), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646218,19 +647287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202490] = 6, - ACTIONS(8656), 1, + [203513] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9095), 1, + STATE(420), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646238,19 +647307,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202516] = 6, - ACTIONS(8656), 1, + [203539] = 6, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(9209), 1, + STATE(9354), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646258,19 +647327,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202542] = 6, - ACTIONS(10254), 1, + [203565] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2199), 1, + STATE(2628), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646278,19 +647347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202568] = 6, - ACTIONS(8656), 1, + [203591] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9100), 1, + STATE(9170), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646298,19 +647367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202594] = 6, - ACTIONS(8656), 1, + [203617] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9202), 1, + STATE(2594), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646318,19 +647387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202620] = 6, - ACTIONS(8656), 1, + [203643] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9285), 1, + STATE(9164), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646338,19 +647407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202646] = 6, - ACTIONS(10248), 1, + [203669] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2596), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9344), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646358,19 +647427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202672] = 6, - ACTIONS(8656), 1, + [203695] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9106), 1, + STATE(9180), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646378,19 +647447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202698] = 6, - ACTIONS(10254), 1, + [203721] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2280), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9346), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646398,19 +647467,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202724] = 6, - ACTIONS(8656), 1, + [203747] = 10, + ACTIONS(1582), 1, + anon_sym_LBRACE, + ACTIONS(1674), 1, + anon_sym_AT, + ACTIONS(3526), 1, + anon_sym_LPAREN, + ACTIONS(3538), 1, + sym_label, + STATE(2789), 1, + sym_value_arguments, + STATE(3562), 1, + sym_annotated_lambda, + STATE(3588), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8337), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [203781] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9172), 1, + STATE(9203), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646418,19 +647511,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202750] = 6, - ACTIONS(8656), 1, + [203807] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9096), 1, + STATE(9349), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646438,19 +647531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202776] = 6, - ACTIONS(8656), 1, + [203833] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9107), 1, + STATE(9144), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646458,19 +647551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202802] = 6, - ACTIONS(8656), 1, + [203859] = 6, + ACTIONS(9344), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9352), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9193), 1, + STATE(5439), 1, sym_simple_identifier, + STATE(5657), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9350), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646478,19 +647571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202828] = 6, - ACTIONS(8656), 1, + [203885] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9102), 1, + STATE(1304), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646498,19 +647591,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202854] = 6, - ACTIONS(10254), 1, + [203911] = 6, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(541), 1, sym__backtick_identifier, - STATE(2281), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(3334), 1, sym__lexical_identifier, + STATE(4202), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646518,19 +647611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202880] = 6, - ACTIONS(10254), 1, + [203937] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(2192), 1, + STATE(2570), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646538,19 +647631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202906] = 6, - ACTIONS(557), 1, + [203963] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2770), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(3163), 1, + STATE(9176), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646558,19 +647651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202932] = 6, - ACTIONS(9204), 1, + [203989] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9212), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5332), 1, - sym_simple_identifier, - STATE(5689), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(8794), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9208), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646578,19 +647671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202958] = 6, - ACTIONS(8656), 1, + [204015] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9138), 1, + STATE(9231), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646598,19 +647691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [202984] = 6, - ACTIONS(8656), 1, + [204041] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9145), 1, + STATE(2577), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646618,19 +647711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203010] = 6, - ACTIONS(8656), 1, + [204067] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9112), 1, + STATE(2229), 1, sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646638,19 +647731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203036] = 6, - ACTIONS(8656), 1, + [204093] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9147), 1, + STATE(9268), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646658,19 +647751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203062] = 6, - ACTIONS(10254), 1, + [204119] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2200), 1, + STATE(416), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646678,19 +647771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203088] = 6, - ACTIONS(10248), 1, + [204145] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2206), 1, + STATE(2231), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646698,19 +647791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203114] = 6, - ACTIONS(8656), 1, + [204171] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9121), 1, + STATE(9399), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646718,19 +647811,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203140] = 6, - ACTIONS(8656), 1, + [204197] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9166), 1, + STATE(9360), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646738,19 +647831,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203166] = 6, - ACTIONS(8656), 1, + [204223] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9174), 1, + STATE(2576), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646758,19 +647851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203192] = 6, - ACTIONS(8656), 1, + [204249] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9129), 1, + STATE(9307), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646778,19 +647871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203218] = 6, - ACTIONS(8656), 1, + [204275] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9178), 1, + STATE(9147), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646798,19 +647891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203244] = 6, - ACTIONS(8656), 1, + [204301] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9265), 1, + STATE(2234), 1, sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646818,19 +647911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203270] = 6, - ACTIONS(10248), 1, + [204327] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2588), 1, + STATE(569), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646838,19 +647931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203296] = 6, - ACTIONS(8656), 1, + [204353] = 6, + ACTIONS(339), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(419), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(820), 1, sym__lexical_identifier, - STATE(9266), 1, + STATE(1022), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1612), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646858,19 +647951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203322] = 6, - ACTIONS(8656), 1, + [204379] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9269), 1, + STATE(418), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646878,19 +647971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203348] = 6, - ACTIONS(8656), 1, + [204405] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9149), 1, + STATE(406), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646898,19 +647991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203374] = 6, - ACTIONS(10248), 1, + [204431] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2598), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(8789), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646918,19 +648011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203400] = 6, - ACTIONS(10260), 1, + [204457] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(382), 1, + STATE(1355), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646938,19 +648031,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203426] = 6, - ACTIONS(10260), 1, + [204483] = 10, + ACTIONS(10202), 1, + anon_sym_typealias, + ACTIONS(10442), 1, + anon_sym_enum, + ACTIONS(10444), 1, + anon_sym_object, + ACTIONS(10446), 1, + anon_sym_fun, + ACTIONS(10448), 1, + anon_sym_get, + ACTIONS(10450), 1, + anon_sym_set, + STATE(6292), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10440), 2, + anon_sym_class, + anon_sym_interface, + [204517] = 10, + ACTIONS(1674), 1, + anon_sym_AT, + ACTIONS(1784), 1, + anon_sym_LBRACE, + ACTIONS(6656), 1, + anon_sym_LPAREN, + ACTIONS(6662), 1, + sym_label, + STATE(4527), 1, + sym_value_arguments, + STATE(4752), 1, + sym_lambda_literal, + STATE(4789), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8351), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [204551] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(381), 1, - sym_simple_identifier, - STATE(871), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(8848), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646958,19 +648099,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203452] = 6, - ACTIONS(10260), 1, + [204577] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(384), 1, + STATE(2614), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646978,19 +648119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203478] = 6, - ACTIONS(10260), 1, + [204603] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(392), 1, + STATE(554), 1, sym_simple_identifier, - STATE(871), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -646998,19 +648139,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203504] = 6, - ACTIONS(10260), 1, + [204629] = 10, + ACTIONS(10452), 1, + anon_sym_typealias, + ACTIONS(10456), 1, + anon_sym_enum, + ACTIONS(10458), 1, + anon_sym_object, + ACTIONS(10460), 1, + anon_sym_fun, + ACTIONS(10462), 1, + anon_sym_get, + ACTIONS(10464), 1, + anon_sym_set, + STATE(6225), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10454), 2, + anon_sym_class, + anon_sym_interface, + [204663] = 6, + ACTIONS(9344), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(9352), 1, sym__backtick_identifier, - STATE(407), 1, + STATE(5472), 1, sym_simple_identifier, - STATE(871), 1, + STATE(5657), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(9350), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647018,19 +648183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203530] = 6, - ACTIONS(10260), 1, + [204689] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(394), 1, + STATE(1317), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647038,19 +648203,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203556] = 6, - ACTIONS(345), 1, + [204715] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(813), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(878), 1, + STATE(8969), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647058,19 +648223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203582] = 6, - ACTIONS(10260), 1, + [204741] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(401), 1, + STATE(2629), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647078,19 +648243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203608] = 6, - ACTIONS(10260), 1, + [204767] = 6, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - STATE(405), 1, + STATE(5385), 1, sym_simple_identifier, - STATE(871), 1, + STATE(5685), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647098,19 +648263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203634] = 6, - ACTIONS(8656), 1, + [204793] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9164), 1, + STATE(8961), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647118,19 +648283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203660] = 6, - ACTIONS(10260), 1, + [204819] = 6, + ACTIONS(7), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(111), 1, sym__backtick_identifier, - STATE(399), 1, - sym_simple_identifier, - STATE(871), 1, + STATE(4609), 1, sym__lexical_identifier, + STATE(4958), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(1868), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647138,19 +648303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203686] = 6, - ACTIONS(10248), 1, + [204845] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(1321), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(8862), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647158,19 +648323,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203712] = 6, - ACTIONS(10254), 1, + [204871] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(2208), 1, + STATE(579), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647178,19 +648343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203738] = 6, - ACTIONS(557), 1, + [204897] = 6, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(637), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - STATE(2770), 1, - sym__lexical_identifier, - STATE(2918), 1, + STATE(5416), 1, sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1920), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647198,19 +648363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203764] = 6, - ACTIONS(10248), 1, + [204923] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(1320), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9009), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647218,19 +648383,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203790] = 6, - ACTIONS(10248), 1, + [204949] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(1318), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9361), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647238,19 +648403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203816] = 6, - ACTIONS(8656), 1, + [204975] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9103), 1, + STATE(8658), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647258,19 +648423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203842] = 6, - ACTIONS(10248), 1, + [205001] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(1335), 1, + STATE(2634), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647278,19 +648443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203868] = 6, - ACTIONS(10254), 1, + [205027] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2230), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(8389), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647298,19 +648463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203894] = 6, - ACTIONS(10254), 1, + [205053] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(2276), 1, + STATE(2573), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647318,19 +648483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203920] = 6, - ACTIONS(255), 1, + [205079] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2881), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(3065), 1, + STATE(8879), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647338,19 +648503,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203946] = 6, - ACTIONS(10254), 1, + [205105] = 4, + ACTIONS(10466), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4131), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [205127] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2222), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9479), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647358,19 +648541,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203972] = 6, - ACTIONS(10254), 1, + [205153] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2220), 1, + STATE(2585), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647378,19 +648561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [203998] = 6, - ACTIONS(8656), 1, + [205179] = 6, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(285), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(4534), 1, sym__lexical_identifier, - STATE(9122), 1, + STATE(5574), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647398,19 +648581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204024] = 6, - ACTIONS(10254), 1, + [205205] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(2216), 1, + STATE(2224), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647418,19 +648601,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204050] = 6, - ACTIONS(431), 1, + [205231] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(3325), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(3693), 1, + STATE(9140), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647438,19 +648621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204076] = 6, - ACTIONS(431), 1, + [205257] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(511), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(3325), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(3976), 1, + STATE(9135), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1652), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647458,39 +648641,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204102] = 6, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9435), 1, - sym_simple_identifier, + [205283] = 10, + ACTIONS(10228), 1, + anon_sym_typealias, + ACTIONS(10471), 1, + anon_sym_enum, + ACTIONS(10473), 1, + anon_sym_object, + ACTIONS(10475), 1, + anon_sym_fun, + ACTIONS(10477), 1, + anon_sym_get, + ACTIONS(10479), 1, + anon_sym_set, + STATE(6140), 1, + sym_binding_pattern_kind, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10469), 2, + anon_sym_class, + anon_sym_interface, + [205317] = 10, + ACTIONS(10358), 1, + anon_sym_typealias, + ACTIONS(10483), 1, + anon_sym_enum, + ACTIONS(10485), 1, + anon_sym_object, + ACTIONS(10487), 1, + anon_sym_fun, + ACTIONS(10489), 1, anon_sym_get, + ACTIONS(10491), 1, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [204128] = 6, - ACTIONS(345), 1, + STATE(6329), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10481), 2, + anon_sym_class, + anon_sym_interface, + [205351] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(427), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(813), 1, - sym__lexical_identifier, - STATE(2240), 1, + STATE(2210), 1, sym_simple_identifier, + STATE(3126), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1664), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647498,19 +648709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204154] = 6, - ACTIONS(10266), 1, + [205377] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10270), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(8635), 1, + STATE(2580), 1, sym_simple_identifier, - STATE(8763), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10268), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647518,19 +648729,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204180] = 6, - ACTIONS(8656), 1, + [205403] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9084), 1, + STATE(552), 1, sym_simple_identifier, + STATE(880), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647538,19 +648749,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204206] = 6, - ACTIONS(8656), 1, + [205429] = 10, + ACTIONS(10452), 1, + anon_sym_typealias, + ACTIONS(10495), 1, + anon_sym_enum, + ACTIONS(10497), 1, + anon_sym_object, + ACTIONS(10499), 1, + anon_sym_fun, + ACTIONS(10501), 1, + anon_sym_get, + ACTIONS(10503), 1, + anon_sym_set, + STATE(6177), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10493), 2, + anon_sym_class, + anon_sym_interface, + [205463] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9082), 1, + STATE(9362), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647558,19 +648793,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204232] = 6, - ACTIONS(8656), 1, + [205489] = 10, + ACTIONS(10322), 1, + anon_sym_typealias, + ACTIONS(10507), 1, + anon_sym_enum, + ACTIONS(10509), 1, + anon_sym_object, + ACTIONS(10511), 1, + anon_sym_fun, + ACTIONS(10513), 1, + anon_sym_get, + ACTIONS(10515), 1, + anon_sym_set, + STATE(6199), 1, + sym_binding_pattern_kind, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10505), 2, + anon_sym_class, + anon_sym_interface, + [205523] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9133), 1, + STATE(9372), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647578,19 +648837,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204258] = 6, - ACTIONS(7), 1, + [205549] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(111), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4584), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(5612), 1, + STATE(8889), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1908), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647598,19 +648857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204284] = 6, - ACTIONS(10260), 1, + [205575] = 6, + ACTIONS(463), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(541), 1, sym__backtick_identifier, - STATE(544), 1, - sym_simple_identifier, - STATE(871), 1, + STATE(3334), 1, sym__lexical_identifier, + STATE(3949), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(1600), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647618,19 +648877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204310] = 6, - ACTIONS(10254), 1, + [205601] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2600), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(8798), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647638,19 +648897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204336] = 6, - ACTIONS(8656), 1, + [205627] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9137), 1, + STATE(9374), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647658,19 +648917,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204362] = 6, - ACTIONS(10260), 1, + [205653] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(417), 1, + STATE(2595), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647678,43 +648937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204388] = 10, - ACTIONS(1658), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(10272), 1, - sym_label, - STATE(791), 1, - sym_value_arguments, - STATE(1118), 1, - sym_lambda_literal, - STATE(1174), 1, - sym_annotated_lambda, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8332), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [204422] = 6, - ACTIONS(8656), 1, + [205679] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9142), 1, + STATE(9184), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647722,19 +648957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204448] = 6, - ACTIONS(10254), 1, + [205705] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2568), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9378), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647742,19 +648977,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204474] = 6, - ACTIONS(10260), 1, + [205731] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(591), 1, + STATE(2190), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647762,39 +648997,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204500] = 6, - ACTIONS(10254), 1, - sym__alpha_identifier, - ACTIONS(10258), 1, - sym__backtick_identifier, - STATE(2615), 1, - sym_simple_identifier, - STATE(3629), 1, - sym__lexical_identifier, + [205757] = 10, + ACTIONS(10452), 1, + anon_sym_typealias, + ACTIONS(10519), 1, + anon_sym_enum, + ACTIONS(10521), 1, + anon_sym_object, + ACTIONS(10523), 1, + anon_sym_fun, + ACTIONS(10525), 1, + anon_sym_get, + ACTIONS(10527), 1, + anon_sym_set, + STATE(6184), 1, + sym_binding_pattern_kind, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [204526] = 6, - ACTIONS(8656), 1, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10517), 2, + anon_sym_class, + anon_sym_interface, + [205791] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9150), 1, + STATE(9100), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647802,19 +649041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204552] = 6, - ACTIONS(8656), 1, + [205817] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9155), 1, + STATE(2641), 1, sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647822,19 +649061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204578] = 6, - ACTIONS(255), 1, + [205843] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(337), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2881), 1, - sym__lexical_identifier, - STATE(4223), 1, + STATE(2310), 1, sym_simple_identifier, + STATE(3642), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1437), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647842,19 +649081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204604] = 6, - ACTIONS(10254), 1, + [205869] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2571), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9103), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647862,19 +649101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204630] = 6, - ACTIONS(8656), 1, + [205895] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9157), 1, + STATE(8898), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647882,19 +649121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204656] = 6, - ACTIONS(10260), 1, + [205921] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(590), 1, + STATE(2283), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647902,19 +649141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204682] = 6, - ACTIONS(10254), 1, + [205947] = 6, + ACTIONS(10256), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10260), 1, sym__backtick_identifier, - STATE(2676), 1, + STATE(2237), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3692), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10258), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647922,19 +649161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204708] = 6, - ACTIONS(8656), 1, + [205973] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9163), 1, + STATE(9105), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647942,19 +649181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204734] = 6, - ACTIONS(10260), 1, + [205999] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10264), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(587), 1, + STATE(2208), 1, sym_simple_identifier, - STATE(871), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10262), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647962,19 +649201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204760] = 6, - ACTIONS(8656), 1, + [206025] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9167), 1, + STATE(9185), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -647982,19 +649221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204786] = 6, - ACTIONS(8656), 1, + [206051] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8796), 1, + STATE(9398), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648002,39 +649241,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204812] = 6, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8807), 1, - sym_simple_identifier, + [206077] = 10, + ACTIONS(10242), 1, + anon_sym_typealias, + ACTIONS(10531), 1, + anon_sym_enum, + ACTIONS(10533), 1, + anon_sym_object, + ACTIONS(10535), 1, + anon_sym_fun, + ACTIONS(10537), 1, + anon_sym_get, + ACTIONS(10539), 1, + anon_sym_set, + STATE(6402), 1, + sym_binding_pattern_kind, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [204838] = 6, - ACTIONS(8656), 1, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10529), 2, + anon_sym_class, + anon_sym_interface, + [206111] = 6, + ACTIONS(545), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(623), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(2802), 1, sym__lexical_identifier, - STATE(8848), 1, + STATE(4058), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1858), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648042,19 +649285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204864] = 6, - ACTIONS(8656), 1, + [206137] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8866), 1, + STATE(8805), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648062,19 +649305,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204890] = 6, - ACTIONS(8656), 1, + [206163] = 6, + ACTIONS(9344), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9352), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9168), 1, + STATE(5476), 1, sym_simple_identifier, + STATE(5657), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9350), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648082,19 +649325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204916] = 6, - ACTIONS(8656), 1, + [206189] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8896), 1, + STATE(9134), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648102,19 +649345,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204942] = 6, - ACTIONS(8656), 1, + [206215] = 6, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(5685), 1, sym__lexical_identifier, - STATE(8941), 1, + STATE(8469), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648122,19 +649365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204968] = 6, - ACTIONS(9460), 1, + [206241] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(9468), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(5448), 1, - sym_simple_identifier, - STATE(5665), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9133), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9466), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648142,37 +649385,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [204994] = 4, - ACTIONS(10274), 1, - anon_sym_DOT, - STATE(6595), 1, - aux_sym_user_type_repeat1, + [206267] = 4, + ACTIONS(9920), 1, + sym__quest, + STATE(6722), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 9, + ACTIONS(4272), 9, anon_sym_EQ, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_by, + anon_sym_GT, anon_sym_where, - anon_sym_AMP, - sym__quest, + anon_sym_DASH_GT, anon_sym_while, - [205016] = 6, - ACTIONS(8656), 1, + [206289] = 6, + ACTIONS(9176), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(9184), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8983), 1, + STATE(5325), 1, sym_simple_identifier, + STATE(5685), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(9180), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648180,19 +649423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205042] = 6, - ACTIONS(8656), 1, + [206315] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8986), 1, + STATE(9132), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648200,19 +649443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205068] = 6, - ACTIONS(10254), 1, + [206341] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2550), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9430), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648220,19 +649463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205094] = 6, - ACTIONS(8656), 1, + [206367] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8789), 1, + STATE(9117), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648240,19 +649483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205120] = 6, - ACTIONS(10276), 1, + [206393] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10280), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2189), 1, + STATE(2268), 1, sym_simple_identifier, - STATE(3679), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10278), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648260,19 +649503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205146] = 6, - ACTIONS(10254), 1, + [206419] = 6, + ACTIONS(9134), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(9142), 1, sym__backtick_identifier, - STATE(2576), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(4535), 1, sym__lexical_identifier, + STATE(5109), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(9138), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648280,19 +649523,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205172] = 6, - ACTIONS(10276), 1, + [206445] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10280), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2213), 1, + STATE(2593), 1, sym_simple_identifier, - STATE(3679), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10278), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648300,43 +649543,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205198] = 10, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(3578), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - sym_label, - STATE(2773), 1, - sym_value_arguments, - STATE(3447), 1, - sym_annotated_lambda, - STATE(3484), 1, - sym_lambda_literal, + [206471] = 4, + ACTIONS(10541), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8330), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [205232] = 6, - ACTIONS(10248), 1, + ACTIONS(4072), 9, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT, + anon_sym_AMP, + sym__quest, + anon_sym_DASH_GT, + anon_sym_while, + [206493] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(1312), 1, + STATE(2602), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648344,39 +649581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205258] = 6, - ACTIONS(10248), 1, + [206519] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(1313), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10250), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [205284] = 6, - ACTIONS(10248), 1, - sym__alpha_identifier, - ACTIONS(10252), 1, - sym__backtick_identifier, - STATE(1315), 1, + STATE(9128), 1, sym_simple_identifier, - STATE(3200), 1, - sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648384,19 +649601,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205310] = 6, - ACTIONS(10276), 1, + [206545] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10280), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2190), 1, + STATE(2264), 1, sym_simple_identifier, - STATE(3679), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10278), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648404,39 +649621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205336] = 6, - ACTIONS(115), 1, + [206571] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4537), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(5288), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1842), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [205362] = 6, - ACTIONS(10248), 1, - sym__alpha_identifier, - ACTIONS(10252), 1, - sym__backtick_identifier, - STATE(1316), 1, + STATE(9127), 1, sym_simple_identifier, - STATE(3200), 1, - sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648444,19 +649641,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205388] = 6, - ACTIONS(115), 1, + [206597] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(205), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(4537), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(4583), 1, + STATE(9255), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1842), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648464,19 +649661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205414] = 6, - ACTIONS(10254), 1, + [206623] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(2668), 1, + STATE(2195), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648484,19 +649681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205440] = 6, - ACTIONS(10254), 1, + [206649] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2671), 1, - sym_simple_identifier, - STATE(3629), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(9125), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648504,19 +649701,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205466] = 6, - ACTIONS(10248), 1, + [206675] = 6, + ACTIONS(205), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(285), 1, sym__backtick_identifier, - STATE(2409), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(4534), 1, sym__lexical_identifier, + STATE(4615), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(1790), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648524,19 +649721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205492] = 6, - ACTIONS(10254), 1, + [206701] = 6, + ACTIONS(10196), 1, sym__alpha_identifier, - ACTIONS(10258), 1, + ACTIONS(10200), 1, sym__backtick_identifier, - STATE(2678), 1, + STATE(2266), 1, sym_simple_identifier, - STATE(3629), 1, + STATE(3642), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, + ACTIONS(10198), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648544,19 +649741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205518] = 6, - ACTIONS(8656), 1, + [206727] = 6, + ACTIONS(115), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(201), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(2894), 1, sym__lexical_identifier, - STATE(9271), 1, + STATE(3787), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(1588), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648564,59 +649761,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205544] = 6, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(8767), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8666), 7, + [206753] = 10, + ACTIONS(10202), 1, + anon_sym_typealias, + ACTIONS(10545), 1, + anon_sym_enum, + ACTIONS(10547), 1, + anon_sym_object, + ACTIONS(10549), 1, + anon_sym_fun, + ACTIONS(10551), 1, anon_sym_get, + ACTIONS(10553), 1, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [205570] = 6, - ACTIONS(10254), 1, - sym__alpha_identifier, - ACTIONS(10258), 1, - sym__backtick_identifier, - STATE(2654), 1, - sym_simple_identifier, - STATE(3629), 1, - sym__lexical_identifier, + STATE(6107), 1, + sym_binding_pattern_kind, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10256), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [205596] = 6, - ACTIONS(8656), 1, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10543), 2, + anon_sym_class, + anon_sym_interface, + [206787] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9258), 1, + STATE(9119), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648624,83 +649805,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205622] = 6, - ACTIONS(9460), 1, - sym__alpha_identifier, - ACTIONS(9468), 1, - sym__backtick_identifier, - STATE(5454), 1, - sym_simple_identifier, - STATE(5665), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9466), 7, + [206813] = 10, + ACTIONS(10452), 1, + anon_sym_typealias, + ACTIONS(10557), 1, + anon_sym_enum, + ACTIONS(10559), 1, + anon_sym_object, + ACTIONS(10561), 1, + anon_sym_fun, + ACTIONS(10563), 1, anon_sym_get, + ACTIONS(10565), 1, anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [205648] = 10, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(1836), 1, - anon_sym_LBRACE, - ACTIONS(6709), 1, - anon_sym_LPAREN, - ACTIONS(6715), 1, - sym_label, - STATE(4526), 1, - sym_value_arguments, - STATE(4839), 1, - sym_lambda_literal, - STATE(4880), 1, - sym_annotated_lambda, + STATE(6129), 1, + sym_binding_pattern_kind, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8331), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [205682] = 6, - ACTIONS(8656), 1, - sym__alpha_identifier, - ACTIONS(8686), 1, - sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9503), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8666), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [205708] = 6, - ACTIONS(9460), 1, + ACTIONS(9898), 2, + anon_sym_val, + anon_sym_var, + ACTIONS(10555), 2, + anon_sym_class, + anon_sym_interface, + [206847] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(9468), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(5472), 1, + STATE(2198), 1, sym_simple_identifier, - STATE(5665), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9466), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648708,19 +649849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205734] = 6, - ACTIONS(10276), 1, + [206873] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10280), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(2210), 1, + STATE(1314), 1, sym_simple_identifier, - STATE(3679), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10278), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648728,19 +649869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205760] = 6, - ACTIONS(8656), 1, + [206899] = 6, + ACTIONS(10256), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(10260), 1, sym__backtick_identifier, - STATE(6073), 1, - sym__lexical_identifier, - STATE(9259), 1, + STATE(2215), 1, sym_simple_identifier, + STATE(3692), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(10258), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648748,19 +649889,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205786] = 6, - ACTIONS(9460), 1, + [206925] = 10, + ACTIONS(1594), 1, + anon_sym_LBRACE, + ACTIONS(1674), 1, + anon_sym_AT, + ACTIONS(3618), 1, + anon_sym_LPAREN, + ACTIONS(3630), 1, + sym_label, + STATE(3052), 1, + sym_value_arguments, + STATE(3853), 1, + sym_lambda_literal, + STATE(3977), 1, + sym_annotated_lambda, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8352), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [206959] = 6, + ACTIONS(10222), 1, sym__alpha_identifier, - ACTIONS(9468), 1, + ACTIONS(10226), 1, sym__backtick_identifier, - STATE(5444), 1, + STATE(419), 1, sym_simple_identifier, - STATE(5665), 1, + STATE(880), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(9466), 7, + ACTIONS(10224), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648768,37 +649933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205812] = 4, - ACTIONS(10282), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4145), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [205834] = 6, - ACTIONS(10248), 1, + [206985] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(2416), 1, + STATE(2203), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648806,19 +649953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205860] = 6, - ACTIONS(8656), 1, + [207011] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(8393), 1, + STATE(9389), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648826,19 +649973,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205886] = 6, - ACTIONS(8656), 1, + [207037] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(8686), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(6073), 1, + STATE(6361), 1, sym__lexical_identifier, - STATE(9270), 1, + STATE(9121), 1, sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(8666), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648846,19 +649993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205912] = 6, - ACTIONS(10248), 1, + [207063] = 6, + ACTIONS(8527), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(8557), 1, sym__backtick_identifier, - STATE(2400), 1, - sym_simple_identifier, - STATE(3200), 1, + STATE(6361), 1, sym__lexical_identifier, + STATE(8929), 1, + sym_simple_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(8537), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648866,43 +650013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205938] = 10, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(1914), 1, - anon_sym_LBRACE, - ACTIONS(4517), 1, - anon_sym_LPAREN, - ACTIONS(10284), 1, - sym_label, - STATE(2747), 1, - sym_value_arguments, - STATE(3062), 1, - sym_lambda_literal, - STATE(3192), 1, - sym_annotated_lambda, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8351), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [205972] = 6, - ACTIONS(10248), 1, + [207089] = 6, + ACTIONS(10216), 1, sym__alpha_identifier, - ACTIONS(10252), 1, + ACTIONS(10220), 1, sym__backtick_identifier, - STATE(2392), 1, + STATE(2200), 1, sym_simple_identifier, - STATE(3200), 1, + STATE(3126), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10250), 7, + ACTIONS(10218), 7, anon_sym_get, anon_sym_set, anon_sym_data, @@ -648910,29 +650033,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_value, anon_sym_expect, anon_sym_actual, - [205998] = 4, - ACTIONS(10286), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [207115] = 3, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 9, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_AMP, - sym__quest, - anon_sym_DASH_GT, - anon_sym_while, - [206020] = 2, + ACTIONS(10569), 2, + anon_sym_LBRACK, + sym__backtick_identifier, + ACTIONS(10567), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [207134] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4631), 11, + ACTIONS(4678), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -648940,17 +650061,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_GT, anon_sym_where, - anon_sym_AMP, anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206038] = 3, - ACTIONS(4325), 1, - anon_sym_DASH_GT, + [207151] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4323), 10, + ACTIONS(4654), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -648958,100 +650076,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_GT, anon_sym_where, - sym__quest, + anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206058] = 6, - ACTIONS(431), 1, - sym__alpha_identifier, - ACTIONS(511), 1, - sym__backtick_identifier, - STATE(3325), 1, - sym__lexical_identifier, - STATE(4268), 1, - sym_simple_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(1652), 7, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - [206084] = 9, - ACTIONS(10289), 1, - anon_sym_typealias, - ACTIONS(10293), 1, - anon_sym_enum, - ACTIONS(10297), 1, - anon_sym_object, - ACTIONS(10299), 1, - anon_sym_fun, - ACTIONS(10301), 1, - anon_sym_get, - ACTIONS(10303), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10291), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10295), 2, - anon_sym_val, - anon_sym_var, - [206115] = 9, - ACTIONS(10305), 1, - anon_sym_typealias, - ACTIONS(10309), 1, - anon_sym_enum, - ACTIONS(10313), 1, - anon_sym_object, - ACTIONS(10315), 1, - anon_sym_fun, - ACTIONS(10317), 1, - anon_sym_get, - ACTIONS(10319), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10307), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10311), 2, - anon_sym_val, - anon_sym_var, - [206146] = 9, - ACTIONS(10289), 1, - anon_sym_typealias, - ACTIONS(10323), 1, - anon_sym_enum, - ACTIONS(10327), 1, - anon_sym_object, - ACTIONS(10329), 1, - anon_sym_fun, - ACTIONS(10331), 1, - anon_sym_get, - ACTIONS(10333), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10321), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10325), 2, - anon_sym_val, - anon_sym_var, - [206177] = 2, + [207168] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4611), 10, + ACTIONS(4644), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -649062,33 +650094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206194] = 9, - ACTIONS(10335), 1, - anon_sym_typealias, - ACTIONS(10339), 1, - anon_sym_enum, - ACTIONS(10343), 1, - anon_sym_object, - ACTIONS(10345), 1, - anon_sym_fun, - ACTIONS(10347), 1, - anon_sym_get, - ACTIONS(10349), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10337), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10341), 2, - anon_sym_val, - anon_sym_var, - [206225] = 2, + [207185] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4607), 10, + ACTIONS(4673), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -649099,138 +650109,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206242] = 4, - ACTIONS(10054), 1, - anon_sym_DOT, - STATE(7907), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4164), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - [206263] = 9, - ACTIONS(10351), 1, - anon_sym_typealias, - ACTIONS(10355), 1, - anon_sym_enum, - ACTIONS(10359), 1, - anon_sym_object, - ACTIONS(10361), 1, - anon_sym_fun, - ACTIONS(10363), 1, - anon_sym_get, - ACTIONS(10365), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10353), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10357), 2, - anon_sym_val, - anon_sym_var, - [206294] = 9, - ACTIONS(10367), 1, - anon_sym_typealias, - ACTIONS(10371), 1, - anon_sym_enum, - ACTIONS(10375), 1, - anon_sym_object, - ACTIONS(10377), 1, - anon_sym_fun, - ACTIONS(10379), 1, - anon_sym_get, - ACTIONS(10381), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10369), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10373), 2, - anon_sym_val, - anon_sym_var, - [206325] = 9, - ACTIONS(10335), 1, - anon_sym_typealias, - ACTIONS(10385), 1, - anon_sym_enum, - ACTIONS(10389), 1, - anon_sym_object, - ACTIONS(10391), 1, - anon_sym_fun, - ACTIONS(10393), 1, - anon_sym_get, - ACTIONS(10395), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10383), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10387), 2, - anon_sym_val, - anon_sym_var, - [206356] = 9, - ACTIONS(10305), 1, - anon_sym_typealias, - ACTIONS(10399), 1, - anon_sym_enum, - ACTIONS(10403), 1, - anon_sym_object, - ACTIONS(10405), 1, - anon_sym_fun, - ACTIONS(10407), 1, - anon_sym_get, - ACTIONS(10409), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10397), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10401), 2, - anon_sym_val, - anon_sym_var, - [206387] = 9, - ACTIONS(10212), 1, - anon_sym_typealias, - ACTIONS(10216), 1, - anon_sym_enum, - ACTIONS(10224), 1, - anon_sym_object, - ACTIONS(10226), 1, - anon_sym_fun, - ACTIONS(10228), 1, - anon_sym_get, - ACTIONS(10230), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10214), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10220), 2, - anon_sym_val, - anon_sym_var, - [206418] = 2, + [207202] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4595), 10, + ACTIONS(4659), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -649241,125 +650124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206435] = 9, - ACTIONS(10411), 1, - anon_sym_typealias, - ACTIONS(10415), 1, - anon_sym_enum, - ACTIONS(10419), 1, - anon_sym_object, - ACTIONS(10421), 1, - anon_sym_fun, - ACTIONS(10423), 1, - anon_sym_get, - ACTIONS(10425), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10413), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10417), 2, - anon_sym_val, - anon_sym_var, - [206466] = 9, - ACTIONS(10427), 1, - anon_sym_typealias, - ACTIONS(10431), 1, - anon_sym_enum, - ACTIONS(10435), 1, - anon_sym_object, - ACTIONS(10437), 1, - anon_sym_fun, - ACTIONS(10439), 1, - anon_sym_get, - ACTIONS(10441), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10429), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10433), 2, - anon_sym_val, - anon_sym_var, - [206497] = 9, - ACTIONS(10427), 1, - anon_sym_typealias, - ACTIONS(10445), 1, - anon_sym_enum, - ACTIONS(10449), 1, - anon_sym_object, - ACTIONS(10451), 1, - anon_sym_fun, - ACTIONS(10453), 1, - anon_sym_get, - ACTIONS(10455), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10443), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10447), 2, - anon_sym_val, - anon_sym_var, - [206528] = 9, - ACTIONS(10335), 1, - anon_sym_typealias, - ACTIONS(10459), 1, - anon_sym_enum, - ACTIONS(10463), 1, - anon_sym_object, - ACTIONS(10465), 1, - anon_sym_fun, - ACTIONS(10467), 1, - anon_sym_get, - ACTIONS(10469), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10457), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10461), 2, - anon_sym_val, - anon_sym_var, - [206559] = 9, - ACTIONS(10411), 1, - anon_sym_typealias, - ACTIONS(10473), 1, - anon_sym_enum, - ACTIONS(10477), 1, - anon_sym_object, - ACTIONS(10479), 1, - anon_sym_fun, - ACTIONS(10481), 1, - anon_sym_get, - ACTIONS(10483), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10471), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10475), 2, - anon_sym_val, - anon_sym_var, - [206590] = 4, - ACTIONS(10282), 1, + [207219] = 4, + ACTIONS(10541), 1, anon_sym_DOT, - STATE(8268), 1, + STATE(8283), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 8, + ACTIONS(4105), 8, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -649368,77 +650141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_DASH_GT, anon_sym_while, - [206611] = 9, - ACTIONS(10289), 1, - anon_sym_typealias, - ACTIONS(10487), 1, - anon_sym_enum, - ACTIONS(10491), 1, - anon_sym_object, - ACTIONS(10493), 1, - anon_sym_fun, - ACTIONS(10495), 1, - anon_sym_get, - ACTIONS(10497), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10485), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10489), 2, - anon_sym_val, - anon_sym_var, - [206642] = 9, - ACTIONS(10305), 1, - anon_sym_typealias, - ACTIONS(10501), 1, - anon_sym_enum, - ACTIONS(10505), 1, - anon_sym_object, - ACTIONS(10507), 1, - anon_sym_fun, - ACTIONS(10509), 1, - anon_sym_get, - ACTIONS(10511), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10499), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10503), 2, - anon_sym_val, - anon_sym_var, - [206673] = 9, - ACTIONS(10289), 1, - anon_sym_typealias, - ACTIONS(10515), 1, - anon_sym_enum, - ACTIONS(10519), 1, - anon_sym_object, - ACTIONS(10521), 1, - anon_sym_fun, - ACTIONS(10523), 1, - anon_sym_get, - ACTIONS(10525), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10513), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10517), 2, - anon_sym_val, - anon_sym_var, - [206704] = 2, + [207240] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4547), 10, + ACTIONS(4601), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -649449,165 +650156,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206721] = 9, - ACTIONS(10367), 1, - anon_sym_typealias, - ACTIONS(10529), 1, - anon_sym_enum, - ACTIONS(10533), 1, - anon_sym_object, - ACTIONS(10535), 1, - anon_sym_fun, - ACTIONS(10537), 1, - anon_sym_get, - ACTIONS(10539), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10527), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10531), 2, - anon_sym_val, - anon_sym_var, - [206752] = 9, - ACTIONS(10427), 1, - anon_sym_typealias, - ACTIONS(10543), 1, - anon_sym_enum, - ACTIONS(10547), 1, - anon_sym_object, - ACTIONS(10549), 1, - anon_sym_fun, - ACTIONS(10551), 1, - anon_sym_get, - ACTIONS(10553), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10541), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10545), 2, - anon_sym_val, - anon_sym_var, - [206783] = 9, - ACTIONS(10411), 1, - anon_sym_typealias, - ACTIONS(10557), 1, - anon_sym_enum, - ACTIONS(10561), 1, - anon_sym_object, - ACTIONS(10563), 1, - anon_sym_fun, - ACTIONS(10565), 1, - anon_sym_get, - ACTIONS(10567), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10555), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10559), 2, - anon_sym_val, - anon_sym_var, - [206814] = 9, - ACTIONS(10411), 1, - anon_sym_typealias, - ACTIONS(10571), 1, - anon_sym_enum, - ACTIONS(10575), 1, - anon_sym_object, - ACTIONS(10577), 1, - anon_sym_fun, - ACTIONS(10579), 1, - anon_sym_get, - ACTIONS(10581), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10569), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10573), 2, - anon_sym_val, - anon_sym_var, - [206845] = 9, - ACTIONS(10367), 1, - anon_sym_typealias, - ACTIONS(10585), 1, - anon_sym_enum, - ACTIONS(10589), 1, - anon_sym_object, - ACTIONS(10591), 1, - anon_sym_fun, - ACTIONS(10593), 1, - anon_sym_get, - ACTIONS(10595), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10583), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10587), 2, - anon_sym_val, - anon_sym_var, - [206876] = 9, - ACTIONS(10305), 1, - anon_sym_typealias, - ACTIONS(10599), 1, - anon_sym_enum, - ACTIONS(10603), 1, - anon_sym_object, - ACTIONS(10605), 1, - anon_sym_fun, - ACTIONS(10607), 1, - anon_sym_get, - ACTIONS(10609), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10597), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10601), 2, - anon_sym_val, - anon_sym_var, - [206907] = 9, - ACTIONS(10427), 1, - anon_sym_typealias, - ACTIONS(10613), 1, - anon_sym_enum, - ACTIONS(10617), 1, - anon_sym_object, - ACTIONS(10619), 1, - anon_sym_fun, - ACTIONS(10621), 1, - anon_sym_get, - ACTIONS(10623), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10611), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10615), 2, - anon_sym_val, - anon_sym_var, - [206938] = 2, + [207257] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4556), 10, + ACTIONS(4272), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -649618,49 +650171,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [206955] = 3, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10627), 2, - anon_sym_LBRACK, - sym__backtick_identifier, - ACTIONS(10625), 8, - anon_sym_get, - anon_sym_set, - anon_sym_data, - anon_sym_inner, - anon_sym_value, - anon_sym_expect, - anon_sym_actual, - sym__alpha_identifier, - [206974] = 9, - ACTIONS(10367), 1, - anon_sym_typealias, - ACTIONS(10631), 1, - anon_sym_enum, - ACTIONS(10635), 1, - anon_sym_object, - ACTIONS(10637), 1, - anon_sym_fun, - ACTIONS(10639), 1, - anon_sym_get, - ACTIONS(10641), 1, - anon_sym_set, + [207274] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10629), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10633), 2, - anon_sym_val, - anon_sym_var, - [207005] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4561), 10, + ACTIONS(4636), 10, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -649671,85 +650186,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_in, anon_sym_while, - [207022] = 9, - ACTIONS(10335), 1, - anon_sym_typealias, - ACTIONS(10645), 1, - anon_sym_enum, - ACTIONS(10649), 1, - anon_sym_object, - ACTIONS(10651), 1, - anon_sym_fun, - ACTIONS(10653), 1, - anon_sym_get, - ACTIONS(10655), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10643), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10647), 2, - anon_sym_val, - anon_sym_var, - [207053] = 2, + [207291] = 4, + ACTIONS(10023), 1, + anon_sym_DOT, + STATE(7909), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4278), 10, + ACTIONS(4105), 8, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_by, - anon_sym_GT, anon_sym_where, - anon_sym_DASH_GT, - anon_sym_in, - anon_sym_while, - [207070] = 9, - ACTIONS(10657), 1, - anon_sym_typealias, - ACTIONS(10661), 1, - anon_sym_enum, - ACTIONS(10665), 1, - anon_sym_object, - ACTIONS(10667), 1, - anon_sym_fun, - ACTIONS(10669), 1, - anon_sym_get, - ACTIONS(10671), 1, - anon_sym_set, + [207312] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10659), 2, - anon_sym_class, - anon_sym_interface, - ACTIONS(10663), 2, + ACTIONS(4095), 9, + anon_sym_AT, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_val, - anon_sym_var, - [207101] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4532), 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_LT, + anon_sym_AMP, + sym__quest, anon_sym_in, - anon_sym_while, - [207118] = 2, + [207328] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 9, + ACTIONS(3943), 9, anon_sym_AT, anon_sym_COLON, anon_sym_DOT, @@ -649759,55 +650231,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, anon_sym_in, - [207134] = 9, - ACTIONS(8504), 1, + [207344] = 9, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10673), 1, + ACTIONS(10571), 1, anon_sym_COLON, - ACTIONS(10675), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - STATE(8412), 1, + STATE(8402), 1, sym_type_constraints, - STATE(9242), 1, + STATE(9222), 1, sym__block, - STATE(9292), 1, + STATE(9284), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4135), 2, + ACTIONS(4099), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207164] = 9, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(10675), 1, - anon_sym_EQ, - ACTIONS(10677), 1, - anon_sym_LBRACE, - ACTIONS(10679), 1, - anon_sym_COLON, - STATE(8432), 1, - sym_type_constraints, - STATE(9242), 1, - sym__block, - STATE(9391), 1, - sym_function_body, + [207374] = 3, + ACTIONS(10577), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4177), 2, + ACTIONS(4166), 8, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_RBRACE, - [207194] = 3, - ACTIONS(10681), 1, + anon_sym_COMMA, + anon_sym_by, + anon_sym_where, + sym__quest, + [207392] = 3, + ACTIONS(10579), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 8, + ACTIONS(4166), 8, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, @@ -649816,49 +650282,49 @@ static const uint16_t ts_small_parse_table[] = { sym__quest, anon_sym_DASH_GT, anon_sym_while, - [207212] = 9, - ACTIONS(8504), 1, + [207410] = 3, + ACTIONS(10581), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4166), 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, + [207428] = 9, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10675), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - ACTIONS(10683), 1, + ACTIONS(10583), 1, anon_sym_COLON, - STATE(8421), 1, + STATE(8440), 1, sym_type_constraints, - STATE(9242), 1, + STATE(9222), 1, sym__block, - STATE(9252), 1, + STATE(9411), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4158), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [207242] = 3, - ACTIONS(10685), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4317), 8, + ACTIONS(4125), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, - [207260] = 3, - ACTIONS(10687), 1, + [207458] = 3, + ACTIONS(10585), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 8, + ACTIONS(4166), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -649867,86 +650333,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_where, sym__quest, - [207278] = 3, - ACTIONS(10689), 1, - anon_sym_AMP, + [207476] = 3, + ACTIONS(9882), 1, + sym__backtick_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 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, - [207296] = 9, - ACTIONS(8504), 1, + ACTIONS(9880), 8, + anon_sym_get, + anon_sym_set, + anon_sym_data, + anon_sym_inner, + anon_sym_value, + anon_sym_expect, + anon_sym_actual, + sym__alpha_identifier, + [207494] = 9, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10675), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - ACTIONS(10691), 1, + ACTIONS(10587), 1, anon_sym_COLON, - STATE(8413), 1, + STATE(8408), 1, sym_type_constraints, - STATE(9215), 1, - sym_function_body, - STATE(9242), 1, + STATE(9222), 1, sym__block, + STATE(9458), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 2, + ACTIONS(4144), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207326] = 9, - ACTIONS(8504), 1, + [207524] = 9, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10675), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - ACTIONS(10693), 1, + ACTIONS(10589), 1, anon_sym_COLON, - STATE(8448), 1, + STATE(8416), 1, sym_type_constraints, - STATE(9242), 1, + STATE(9222), 1, sym__block, - STATE(9451), 1, + STATE(9385), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4152), 2, + ACTIONS(4079), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207356] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3995), 9, - anon_sym_AT, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_LT, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [207372] = 4, - ACTIONS(10695), 1, + [207554] = 4, + ACTIONS(10591), 1, anon_sym_LT, - STATE(8379), 1, + STATE(8365), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 7, + ACTIONS(4119), 7, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, @@ -649954,584 +650406,592 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, anon_sym_in, - [207392] = 9, - ACTIONS(4152), 1, - anon_sym_while, - ACTIONS(8614), 1, + [207574] = 9, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10697), 1, - anon_sym_COLON, - ACTIONS(10699), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - STATE(8589), 1, + ACTIONS(10593), 1, + anon_sym_COLON, + STATE(8444), 1, sym_type_constraints, - STATE(9721), 1, + STATE(9214), 1, sym_function_body, - STATE(9966), 1, + STATE(9222), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207421] = 7, - ACTIONS(1431), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(10703), 1, - sym_label, - STATE(3451), 1, - sym_lambda_literal, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8385), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [207446] = 7, - ACTIONS(1726), 1, - anon_sym_AT, - ACTIONS(1836), 1, - anon_sym_LBRACE, - ACTIONS(10705), 1, - sym_label, - STATE(4878), 1, - sym_lambda_literal, + ACTIONS(4089), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207604] = 4, + ACTIONS(10595), 1, + anon_sym_DOT, + STATE(8350), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8385), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [207471] = 7, - ACTIONS(1658), 1, - anon_sym_LBRACE, - ACTIONS(1726), 1, + ACTIONS(4072), 6, anon_sym_AT, - ACTIONS(10707), 1, - sym_label, - STATE(1178), 1, - sym_lambda_literal, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [207623] = 3, + ACTIONS(10597), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8385), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [207496] = 9, - ACTIONS(4196), 1, - anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(10699), 1, + ACTIONS(4166), 7, anon_sym_EQ, - ACTIONS(10701), 1, anon_sym_LBRACE, - ACTIONS(10709), 1, - anon_sym_COLON, - STATE(8463), 1, - sym_type_constraints, - STATE(9830), 1, - sym_function_body, - STATE(9966), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [207525] = 5, - ACTIONS(10711), 1, - anon_sym_LPAREN, - ACTIONS(10713), 1, + anon_sym_COMMA, anon_sym_by, - STATE(8543), 1, - sym_value_arguments, + anon_sym_where, + sym__quest, + anon_sym_while, + [207640] = 3, + ACTIONS(10599), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 5, - sym__automatic_semicolon, + ACTIONS(4166), 7, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_by, anon_sym_where, - [207546] = 9, - ACTIONS(4135), 1, + sym__quest, anon_sym_while, - ACTIONS(8614), 1, + [207657] = 8, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10699), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - ACTIONS(10715), 1, - anon_sym_COLON, - STATE(8620), 1, + STATE(8408), 1, sym_type_constraints, - STATE(9966), 1, + STATE(9222), 1, sym__block, - STATE(10006), 1, + STATE(9458), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207575] = 8, - ACTIONS(8504), 1, + ACTIONS(4144), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [207684] = 9, + ACTIONS(4144), 1, + anon_sym_while, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(10675), 1, + ACTIONS(10601), 1, + anon_sym_COLON, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(8413), 1, + STATE(8596), 1, sym_type_constraints, - STATE(9215), 1, - sym_function_body, - STATE(9242), 1, + STATE(9824), 1, sym__block, + STATE(9914), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [207602] = 5, - ACTIONS(9148), 1, + [207713] = 5, + ACTIONS(9101), 1, anon_sym_LT, - ACTIONS(10717), 1, + ACTIONS(10607), 1, anon_sym_COLON, - STATE(6571), 1, + STATE(6547), 1, sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4171), 5, + ACTIONS(4119), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_AMP, sym__quest, - [207623] = 6, - ACTIONS(9148), 1, - anon_sym_LT, - ACTIONS(10719), 1, - anon_sym_COLON, - STATE(6571), 1, - sym_type_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4183), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4171), 3, - anon_sym_DOT, - anon_sym_AMP, - sym__quest, - [207646] = 7, - ACTIONS(25), 1, + [207734] = 7, + ACTIONS(1582), 1, anon_sym_LBRACE, - ACTIONS(1726), 1, + ACTIONS(1674), 1, anon_sym_AT, - ACTIONS(10721), 1, + ACTIONS(10609), 1, sym_label, - STATE(5090), 1, + STATE(3563), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, + STATE(6059), 2, sym__single_annotation, sym__multi_annotation, - STATE(8385), 2, + STATE(8362), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [207671] = 4, - ACTIONS(10723), 1, - anon_sym_DOT, - STATE(8340), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4189), 6, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [207690] = 8, - ACTIONS(8504), 1, + [207759] = 9, + ACTIONS(4099), 1, + anon_sym_while, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(10675), 1, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(8421), 1, + ACTIONS(10611), 1, + anon_sym_COLON, + STATE(8626), 1, sym_type_constraints, - STATE(9242), 1, + STATE(9824), 1, sym__block, - STATE(9252), 1, + STATE(9981), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4158), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [207717] = 8, - ACTIONS(8504), 1, + [207788] = 9, + ACTIONS(4079), 1, + anon_sym_while, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(10675), 1, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(8432), 1, + ACTIONS(10613), 1, + anon_sym_COLON, + STATE(8563), 1, sym_type_constraints, - STATE(9242), 1, + STATE(9824), 1, sym__block, - STATE(9391), 1, + STATE(10085), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4177), 2, + [207817] = 5, + ACTIONS(10615), 1, + anon_sym_LPAREN, + ACTIONS(10617), 1, + anon_sym_by, + STATE(8590), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 5, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_RBRACE, - [207744] = 4, - ACTIONS(10726), 1, - anon_sym_DOT, - STATE(8340), 1, - aux_sym_user_type_repeat1, + anon_sym_COMMA, + anon_sym_where, + [207838] = 7, + ACTIONS(1606), 1, + anon_sym_LBRACE, + ACTIONS(1674), 1, + anon_sym_AT, + ACTIONS(10619), 1, + sym_label, + STATE(1065), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4145), 6, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [207763] = 3, - ACTIONS(10728), 1, - anon_sym_AMP, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8362), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [207863] = 6, + ACTIONS(9101), 1, + anon_sym_LT, + ACTIONS(10621), 1, + anon_sym_COLON, + STATE(6547), 1, + sym_type_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 7, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(4138), 2, anon_sym_COMMA, - anon_sym_by, - anon_sym_where, + anon_sym_RPAREN, + ACTIONS(4119), 3, + anon_sym_DOT, + anon_sym_AMP, sym__quest, - anon_sym_while, - [207780] = 7, - ACTIONS(1646), 1, + [207886] = 7, + ACTIONS(25), 1, anon_sym_LBRACE, - ACTIONS(1726), 1, + ACTIONS(1674), 1, anon_sym_AT, - ACTIONS(10730), 1, + ACTIONS(10623), 1, sym_label, - STATE(3877), 1, + STATE(5227), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, + STATE(6059), 2, sym__single_annotation, sym__multi_annotation, - STATE(8385), 2, + STATE(8362), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [207805] = 9, - ACTIONS(4177), 1, + [207911] = 9, + ACTIONS(4089), 1, anon_sym_while, - ACTIONS(8614), 1, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(10699), 1, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - ACTIONS(10732), 1, + ACTIONS(10625), 1, anon_sym_COLON, - STATE(8602), 1, + STATE(8599), 1, sym_type_constraints, - STATE(9570), 1, - sym_function_body, - STATE(9966), 1, + STATE(9824), 1, sym__block, + STATE(10020), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207834] = 8, - ACTIONS(8504), 1, + [207940] = 8, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10675), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - STATE(8397), 1, + STATE(8444), 1, sym_type_constraints, - STATE(9240), 1, + STATE(9214), 1, sym_function_body, - STATE(9242), 1, + STATE(9222), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4262), 2, + ACTIONS(4089), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207861] = 8, - ACTIONS(8504), 1, + [207967] = 8, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10675), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - STATE(8444), 1, + STATE(8432), 1, sym_type_constraints, - STATE(9151), 1, - sym_function_body, - STATE(9242), 1, + STATE(9222), 1, sym__block, + STATE(9436), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 2, + ACTIONS(4232), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [207888] = 3, - ACTIONS(10734), 1, - anon_sym_AMP, + [207994] = 7, + ACTIONS(1674), 1, + anon_sym_AT, + ACTIONS(1852), 1, + anon_sym_LBRACE, + ACTIONS(10627), 1, + sym_label, + STATE(3075), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 7, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8362), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208019] = 8, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(10573), 1, anon_sym_EQ, + ACTIONS(10575), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_by, - anon_sym_where, - sym__quest, - anon_sym_while, - [207905] = 9, - ACTIONS(4158), 1, - anon_sym_while, - ACTIONS(8614), 1, + STATE(8402), 1, + sym_type_constraints, + STATE(9222), 1, + sym__block, + STATE(9284), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4099), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208046] = 8, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10699), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - ACTIONS(10736), 1, - anon_sym_COLON, - STATE(8488), 1, + STATE(8438), 1, sym_type_constraints, - STATE(9524), 1, - sym_function_body, - STATE(9966), 1, + STATE(9222), 1, sym__block, + STATE(9427), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4262), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208073] = 4, + ACTIONS(10629), 1, + anon_sym_DOT, + STATE(8350), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [207934] = 7, - ACTIONS(1726), 1, + ACTIONS(4131), 6, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208092] = 7, + ACTIONS(1674), 1, anon_sym_AT, - ACTIONS(1914), 1, + ACTIONS(1784), 1, anon_sym_LBRACE, - ACTIONS(10738), 1, + ACTIONS(10632), 1, sym_label, - STATE(3189), 1, + STATE(4788), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(5919), 2, + STATE(6059), 2, sym__single_annotation, sym__multi_annotation, - STATE(8385), 2, + STATE(8362), 2, sym_annotation, aux_sym__annotated_delegation_specifier_repeat1, - [207959] = 3, - STATE(1503), 1, - sym__assignment_and_operator, + [208117] = 7, + ACTIONS(1594), 1, + anon_sym_LBRACE, + ACTIONS(1674), 1, + anon_sym_AT, + ACTIONS(10634), 1, + sym_label, + STATE(3973), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10740), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [207975] = 7, - ACTIONS(8504), 1, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8362), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208142] = 9, + ACTIONS(4125), 1, + anon_sym_while, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(8549), 1, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, anon_sym_LBRACE, - ACTIONS(10742), 1, + ACTIONS(10636), 1, anon_sym_COLON, - STATE(8660), 1, + STATE(8489), 1, sym_type_constraints, - STATE(9356), 1, - sym_class_body, + STATE(9824), 1, + sym__block, + STATE(10090), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [207999] = 3, - STATE(1845), 1, + [208171] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4246), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208185] = 3, + STATE(1452), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10744), 6, + ACTIONS(10638), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208015] = 3, - STATE(1758), 1, + [208201] = 3, + STATE(1908), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10746), 6, + ACTIONS(10640), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208031] = 3, - STATE(2019), 1, + [208217] = 3, + STATE(1531), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10748), 6, + ACTIONS(10642), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208047] = 7, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(8549), 1, - anon_sym_LBRACE, - ACTIONS(8716), 1, - anon_sym_COLON, - STATE(8703), 1, - sym_type_constraints, - STATE(9443), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3292), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208071] = 3, - STATE(1572), 1, + [208233] = 3, + STATE(1533), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10750), 6, + ACTIONS(10644), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [208087] = 8, - ACTIONS(4266), 1, - anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, - anon_sym_LBRACE, - STATE(8607), 1, - sym_type_constraints, - STATE(9777), 1, - sym_function_body, - STATE(9966), 1, - sym__block, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208249] = 3, + STATE(1750), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208113] = 3, - STATE(1705), 1, + ACTIONS(10646), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208265] = 3, + STATE(2078), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10752), 6, + ACTIONS(10648), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208129] = 6, - ACTIONS(8608), 1, + [208281] = 6, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(9681), 1, + ACTIONS(9615), 1, anon_sym_LPAREN, - STATE(8540), 1, + STATE(8597), 1, sym_value_arguments, - STATE(8819), 1, + STATE(8976), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10754), 3, + ACTIONS(10650), 3, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SEMI, - [208151] = 7, - ACTIONS(8498), 1, + [208303] = 5, + ACTIONS(10652), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(9848), 2, anon_sym_LBRACE, - ACTIONS(8504), 1, + sym_label, + STATE(6059), 2, + sym__single_annotation, + sym__multi_annotation, + STATE(8362), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + [208323] = 7, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10756), 1, + ACTIONS(8448), 1, + anon_sym_LBRACE, + ACTIONS(10655), 1, anon_sym_COLON, - STATE(8785), 1, + STATE(8640), 1, sym_type_constraints, - STATE(9341), 1, + STATE(9254), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4202), 2, + ACTIONS(4204), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208175] = 2, + [208347] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4150), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208361] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4258), 7, + ACTIONS(4236), 7, anon_sym_AT, anon_sym_DOT, anon_sym_LPAREN, @@ -650539,7926 +650999,7941 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, sym__quest, anon_sym_in, - [208189] = 3, - STATE(1814), 1, + [208375] = 8, + ACTIONS(4099), 1, + anon_sym_while, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(8626), 1, + sym_type_constraints, + STATE(9824), 1, + sym__block, + STATE(9981), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [208401] = 7, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(10657), 1, + anon_sym_COLON, + STATE(8661), 1, + sym_type_constraints, + STATE(9254), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208425] = 3, + STATE(1773), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10758), 6, + ACTIONS(10659), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208205] = 3, - STATE(1709), 1, + [208441] = 3, + STATE(1739), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10760), 6, + ACTIONS(10661), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208221] = 8, - ACTIONS(4158), 1, - anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, - anon_sym_LBRACE, - STATE(8488), 1, - sym_type_constraints, - STATE(9524), 1, - sym_function_body, - STATE(9966), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [208247] = 3, - STATE(1560), 1, + [208457] = 3, + STATE(1676), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10762), 6, + ACTIONS(10663), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208263] = 3, - STATE(1538), 1, + [208473] = 3, + STATE(1705), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10764), 6, + ACTIONS(10665), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208279] = 7, - ACTIONS(8498), 1, + [208489] = 7, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(8504), 1, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(8730), 1, + anon_sym_COLON, + STATE(8628), 1, + sym_type_constraints, + STATE(9450), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3222), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [208513] = 7, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10766), 1, + ACTIONS(8448), 1, + anon_sym_LBRACE, + ACTIONS(10667), 1, anon_sym_COLON, - STATE(8782), 1, + STATE(8653), 1, sym_type_constraints, - STATE(9356), 1, + STATE(9425), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 2, + ACTIONS(4154), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208303] = 3, - STATE(2157), 1, + [208537] = 3, + STATE(2056), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10768), 6, + ACTIONS(10669), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208319] = 5, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(10770), 1, - anon_sym_by, - STATE(7183), 1, - sym_value_arguments, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4495), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [208339] = 3, - STATE(1903), 1, - sym__assignment_and_operator, + [208553] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10772), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [208355] = 3, - STATE(2128), 1, + ACTIONS(4131), 7, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [208567] = 3, + STATE(1597), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10774), 6, + ACTIONS(10671), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208371] = 3, - STATE(1615), 1, + [208583] = 3, + STATE(2072), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10776), 6, + ACTIONS(10673), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208387] = 3, - STATE(1450), 1, + [208599] = 3, + STATE(1847), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10778), 6, + ACTIONS(10675), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208403] = 3, - STATE(1673), 1, + [208615] = 3, + STATE(1806), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10780), 6, + ACTIONS(10677), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208419] = 8, - ACTIONS(4177), 1, + [208631] = 8, + ACTIONS(4144), 1, anon_sym_while, - ACTIONS(8614), 1, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(10699), 1, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(8602), 1, + STATE(8596), 1, sym_type_constraints, - STATE(9570), 1, - sym_function_body, - STATE(9966), 1, + STATE(9824), 1, sym__block, + STATE(9914), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208445] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4311), 7, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [208459] = 2, + [208657] = 3, + STATE(2117), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4307), 7, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [208473] = 7, - ACTIONS(8498), 1, - anon_sym_LBRACE, - ACTIONS(8504), 1, + ACTIONS(10679), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208673] = 7, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(8727), 1, + ACTIONS(8448), 1, + anon_sym_LBRACE, + ACTIONS(8678), 1, anon_sym_COLON, - STATE(8648), 1, + STATE(8656), 1, sym_type_constraints, - STATE(9267), 1, + STATE(9250), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3298), 2, + ACTIONS(3240), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208497] = 8, - ACTIONS(4262), 1, + [208697] = 8, + ACTIONS(4089), 1, anon_sym_while, - ACTIONS(8614), 1, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(10699), 1, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(8588), 1, + STATE(8599), 1, sym_type_constraints, - STATE(9731), 1, - sym_function_body, - STATE(9966), 1, + STATE(9824), 1, sym__block, + STATE(10020), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208523] = 3, - STATE(1927), 1, - sym__assignment_and_operator, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(10782), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [208539] = 7, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(8549), 1, - anon_sym_LBRACE, - ACTIONS(8794), 1, - anon_sym_COLON, - STATE(8765), 1, - sym_type_constraints, - STATE(9426), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208563] = 3, - STATE(1487), 1, + [208723] = 3, + STATE(2030), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10784), 6, + ACTIONS(10681), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208579] = 5, - ACTIONS(10786), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(9871), 2, - anon_sym_LBRACE, - sym_label, - STATE(5919), 2, - sym__single_annotation, - sym__multi_annotation, - STATE(8385), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - [208599] = 3, - STATE(2007), 1, + [208739] = 3, + STATE(1525), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10789), 6, + ACTIONS(10683), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208615] = 3, - STATE(1785), 1, + [208755] = 3, + STATE(1872), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10791), 6, + ACTIONS(10685), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208631] = 2, + [208771] = 5, + ACTIONS(9615), 1, + anon_sym_LPAREN, + ACTIONS(10687), 1, + anon_sym_by, + STATE(7132), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4189), 7, - anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [208645] = 7, - ACTIONS(8504), 1, + ACTIONS(4349), 4, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_where, - ACTIONS(8549), 1, + anon_sym_while, + [208791] = 7, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(10793), 1, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(10689), 1, anon_sym_COLON, - STATE(8659), 1, + STATE(8678), 1, sym_type_constraints, - STATE(9327), 1, + STATE(9455), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 2, + ACTIONS(4276), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208669] = 3, - STATE(1657), 1, - sym__assignment_and_operator, + [208815] = 6, + ACTIONS(8513), 1, + anon_sym_LBRACE, + ACTIONS(9615), 1, + anon_sym_LPAREN, + STATE(8624), 1, + sym_value_arguments, + STATE(8955), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10795), 6, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [208685] = 3, - STATE(1933), 1, + ACTIONS(10691), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [208837] = 3, + STATE(1457), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10797), 6, + ACTIONS(10693), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208701] = 7, - ACTIONS(8498), 1, + [208853] = 8, + ACTIONS(4262), 1, + anon_sym_while, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, anon_sym_LBRACE, - ACTIONS(8504), 1, + STATE(8566), 1, + sym_type_constraints, + STATE(9824), 1, + sym__block, + STATE(9883), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [208879] = 7, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(8764), 1, + ACTIONS(8448), 1, + anon_sym_LBRACE, + ACTIONS(8738), 1, anon_sym_COLON, - STATE(8684), 1, + STATE(8665), 1, sym_type_constraints, - STATE(9426), 1, + STATE(9450), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(3222), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208725] = 6, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(9681), 1, - anon_sym_LPAREN, - STATE(8498), 1, - sym_value_arguments, - STATE(8952), 1, - sym_class_body, + [208903] = 3, + STATE(1703), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10799), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [208747] = 3, - STATE(1604), 1, + ACTIONS(10695), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208919] = 3, + STATE(2023), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10801), 6, + ACTIONS(10697), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208763] = 3, - STATE(1907), 1, + [208935] = 3, + STATE(1699), 1, sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10803), 6, + ACTIONS(10699), 6, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - [208779] = 8, - ACTIONS(4196), 1, + [208951] = 8, + ACTIONS(4232), 1, anon_sym_while, - ACTIONS(8614), 1, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(10699), 1, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(8463), 1, + STATE(8576), 1, sym_type_constraints, - STATE(9830), 1, - sym_function_body, - STATE(9966), 1, + STATE(9824), 1, sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [208805] = 6, - ACTIONS(10675), 1, - anon_sym_EQ, - ACTIONS(10677), 1, - anon_sym_LBRACE, - STATE(9151), 1, + STATE(9889), 1, sym_function_body, - STATE(9242), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [208826] = 2, + [208977] = 3, + STATE(1579), 1, + sym__assignment_and_operator, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4660), 6, - sym__automatic_semicolon, - anon_sym_COLON, + ACTIONS(10701), 6, anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [208993] = 7, + ACTIONS(8438), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [208839] = 6, - ACTIONS(8498), 1, - anon_sym_LBRACE, - ACTIONS(8504), 1, + ACTIONS(8444), 1, anon_sym_where, - STATE(8639), 1, + ACTIONS(8670), 1, + anon_sym_COLON, + STATE(8741), 1, sym_type_constraints, - STATE(9177), 1, - sym_enum_class_body, + STATE(9364), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 2, + ACTIONS(3230), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208860] = 7, - ACTIONS(4270), 1, - anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, - anon_sym_LBRACE, - ACTIONS(10805), 1, + [209017] = 3, + ACTIONS(8974), 1, anon_sym_COLON, - STATE(8953), 1, - sym_type_constraints, - STATE(9463), 1, - sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [208883] = 4, - ACTIONS(10807), 1, - anon_sym_COMMA, - STATE(8415), 1, - aux_sym_type_constraints_repeat1, + ACTIONS(3943), 5, + anon_sym_AT, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_LT, + [209032] = 6, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(8444), 1, + anon_sym_where, + STATE(8709), 1, + sym_type_constraints, + STATE(9269), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4391), 4, + ACTIONS(4414), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - [208900] = 6, - ACTIONS(10809), 1, + [209053] = 6, + ACTIONS(10703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, + ACTIONS(10705), 1, anon_sym_DOLLAR, - ACTIONS(10813), 1, + ACTIONS(10707), 1, sym__string_end, - ACTIONS(10815), 1, + ACTIONS(10709), 1, sym_string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8416), 2, + STATE(8449), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [208921] = 6, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(8549), 1, + [209074] = 6, + ACTIONS(10573), 1, + anon_sym_EQ, + ACTIONS(10575), 1, anon_sym_LBRACE, - STATE(8718), 1, - sym_type_constraints, - STATE(9179), 1, - sym_class_body, + STATE(9222), 1, + sym__block, + STATE(9458), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 2, + ACTIONS(4144), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [208942] = 7, - ACTIONS(3292), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8869), 1, - anon_sym_COLON, - STATE(8910), 1, - sym_type_constraints, - STATE(9699), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [208965] = 6, - ACTIONS(8498), 1, - anon_sym_LBRACE, - ACTIONS(8504), 1, - anon_sym_where, - STATE(8654), 1, - sym_type_constraints, - STATE(9301), 1, - sym_enum_class_body, + [209095] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4417), 2, + ACTIONS(4585), 6, sym__automatic_semicolon, - anon_sym_RBRACE, - [208986] = 7, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8873), 1, anon_sym_COLON, - STATE(8798), 1, - sym_type_constraints, - STATE(9861), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [209009] = 6, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(8549), 1, + anon_sym_EQ, anon_sym_LBRACE, - STATE(8655), 1, - sym_type_constraints, - STATE(9407), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4425), 2, - sym__automatic_semicolon, anon_sym_RBRACE, - [209030] = 7, - ACTIONS(4202), 1, - anon_sym_while, - ACTIONS(8614), 1, anon_sym_where, - ACTIONS(8620), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_COLON, - STATE(9014), 1, - sym_type_constraints, - STATE(9573), 1, - sym_enum_class_body, + [209108] = 4, + ACTIONS(10711), 1, + anon_sym_COMMA, + STATE(8452), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209053] = 4, - ACTIONS(10807), 1, + ACTIONS(4396), 4, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + [209125] = 4, + ACTIONS(10713), 1, anon_sym_COMMA, - STATE(8401), 1, + STATE(8405), 1, aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4373), 4, + ACTIONS(4375), 4, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_RBRACE, - [209070] = 6, - ACTIONS(8504), 1, + [209142] = 7, + ACTIONS(3240), 1, + anon_sym_while, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(8549), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(8659), 1, + ACTIONS(8828), 1, + anon_sym_COLON, + STATE(8970), 1, sym_type_constraints, - STATE(9327), 1, - sym_class_body, + STATE(10011), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209091] = 6, - ACTIONS(8498), 1, + [209165] = 6, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(8504), 1, + ACTIONS(8444), 1, anon_sym_where, - STATE(8628), 1, + STATE(8631), 1, sym_type_constraints, - STATE(9097), 1, - sym_enum_class_body, + STATE(9262), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4462), 2, + ACTIONS(4457), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209112] = 6, - ACTIONS(10675), 1, + [209186] = 6, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - STATE(9242), 1, + STATE(9222), 1, sym__block, - STATE(9451), 1, + STATE(9436), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4152), 2, + ACTIONS(4232), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209133] = 6, - ACTIONS(10675), 1, - anon_sym_EQ, - ACTIONS(10677), 1, - anon_sym_LBRACE, - STATE(9242), 1, - sym__block, - STATE(9391), 1, - sym_function_body, + [209207] = 6, + ACTIONS(10703), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10705), 1, + anon_sym_DOLLAR, + ACTIONS(10709), 1, + sym_string_content, + ACTIONS(10716), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4177), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209154] = 5, - ACTIONS(10819), 1, - anon_sym_AT, - ACTIONS(10821), 1, - anon_sym_val, + STATE(8449), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209228] = 6, + ACTIONS(10703), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10705), 1, + anon_sym_DOLLAR, + ACTIONS(10709), 1, + sym_string_content, + ACTIONS(10718), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8452), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9353), 2, - sym__single_annotation, - sym__multi_annotation, - [209173] = 4, - ACTIONS(10823), 1, - anon_sym_COMMA, - STATE(8415), 1, - aux_sym_type_constraints_repeat1, + STATE(8449), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209249] = 6, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(8444), 1, + anon_sym_where, + STATE(8694), 1, + sym_type_constraints, + STATE(9451), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 4, + ACTIONS(4361), 2, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - [209190] = 6, - ACTIONS(10826), 1, + [209270] = 6, + ACTIONS(10703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10829), 1, + ACTIONS(10705), 1, anon_sym_DOLLAR, - ACTIONS(10832), 1, + ACTIONS(10720), 1, sym__string_end, - ACTIONS(10834), 1, + ACTIONS(10722), 1, sym_string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8416), 2, + STATE(8401), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209211] = 6, - ACTIONS(8498), 1, - anon_sym_LBRACE, - ACTIONS(8504), 1, + [209291] = 6, + ACTIONS(8444), 1, anon_sym_where, - STATE(8782), 1, + ACTIONS(8448), 1, + anon_sym_LBRACE, + STATE(8695), 1, sym_type_constraints, - STATE(9356), 1, + STATE(9442), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 2, + ACTIONS(4449), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209232] = 4, - ACTIONS(10837), 1, - anon_sym_COMMA, - STATE(8418), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4639), 4, - sym__automatic_semicolon, + [209312] = 7, + ACTIONS(4276), 1, + anon_sym_while, + ACTIONS(8513), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(8519), 1, anon_sym_where, - [209249] = 4, - ACTIONS(10840), 1, - anon_sym_COMMA, - STATE(8433), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(10724), 1, + anon_sym_COLON, + STATE(9034), 1, + sym_type_constraints, + STATE(10056), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4623), 4, - sym__automatic_semicolon, + [209335] = 7, + ACTIONS(3230), 1, + anon_sym_while, + ACTIONS(8513), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(8519), 1, anon_sym_where, - [209266] = 2, + ACTIONS(8818), 1, + anon_sym_COLON, + STATE(8941), 1, + sym_type_constraints, + STATE(9938), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4635), 6, - sym__automatic_semicolon, - anon_sym_COLON, + [209358] = 6, + ACTIONS(10573), 1, anon_sym_EQ, + ACTIONS(10575), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [209279] = 6, - ACTIONS(10675), 1, - anon_sym_EQ, - ACTIONS(10677), 1, - anon_sym_LBRACE, - STATE(9215), 1, + STATE(9214), 1, sym_function_body, - STATE(9242), 1, + STATE(9222), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 2, + ACTIONS(4089), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209300] = 3, - ACTIONS(10713), 1, - anon_sym_by, + [209379] = 6, + ACTIONS(10703), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10705), 1, + anon_sym_DOLLAR, + ACTIONS(10709), 1, + sym_string_content, + ACTIONS(10726), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 5, - sym__automatic_semicolon, + STATE(8449), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209400] = 7, + ACTIONS(3222), 1, + anon_sym_while, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8601), 1, + anon_sym_LBRACE, + ACTIONS(8846), 1, + anon_sym_COLON, + STATE(9033), 1, + sym_type_constraints, + STATE(10052), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209423] = 6, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(8448), 1, anon_sym_LBRACE, + STATE(8640), 1, + sym_type_constraints, + STATE(9254), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4204), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - anon_sym_COMMA, + [209444] = 6, + ACTIONS(8444), 1, anon_sym_where, - [209315] = 4, - ACTIONS(10726), 1, - anon_sym_DOT, - STATE(8343), 1, - aux_sym_user_type_repeat1, + ACTIONS(8448), 1, + anon_sym_LBRACE, + STATE(8708), 1, + sym_type_constraints, + STATE(9264), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 4, - anon_sym_AT, - anon_sym_LPAREN, - anon_sym_val, - anon_sym_in, - [209332] = 6, - ACTIONS(10809), 1, + ACTIONS(4337), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209465] = 6, + ACTIONS(10703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, + ACTIONS(10705), 1, anon_sym_DOLLAR, - ACTIONS(10815), 1, + ACTIONS(10709), 1, sym_string_content, - ACTIONS(10842), 1, + ACTIONS(10728), 1, sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8416), 2, + STATE(8449), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209353] = 7, - ACTIONS(4301), 1, - anon_sym_while, - ACTIONS(8608), 1, + [209486] = 6, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(8614), 1, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(10844), 1, - anon_sym_COLON, - STATE(9068), 1, + STATE(8661), 1, sym_type_constraints, - STATE(10094), 1, + STATE(9254), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209376] = 6, - ACTIONS(10809), 1, + ACTIONS(4204), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209507] = 6, + ACTIONS(10703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, + ACTIONS(10705), 1, anon_sym_DOLLAR, - ACTIONS(10846), 1, - sym__string_end, - ACTIONS(10848), 1, + ACTIONS(10709), 1, sym_string_content, + ACTIONS(10730), 1, + sym__string_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8402), 2, + STATE(8449), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209397] = 6, - ACTIONS(10809), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, - anon_sym_DOLLAR, - ACTIONS(10815), 1, - sym_string_content, - ACTIONS(10850), 1, - sym__string_end, + [209528] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8416), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [209418] = 6, - ACTIONS(10809), 1, + ACTIONS(4527), 6, + sym__automatic_semicolon, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [209541] = 7, + ACTIONS(4204), 1, + anon_sym_while, + ACTIONS(8513), 1, + anon_sym_LBRACE, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(10732), 1, + anon_sym_COLON, + STATE(8971), 1, + sym_type_constraints, + STATE(10025), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [209564] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5013), 6, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [209577] = 6, + ACTIONS(10703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, + ACTIONS(10705), 1, anon_sym_DOLLAR, - ACTIONS(10815), 1, - sym_string_content, - ACTIONS(10852), 1, + ACTIONS(10734), 1, sym__string_end, + ACTIONS(10736), 1, + sym_string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8416), 2, + STATE(8423), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209439] = 6, - ACTIONS(8504), 1, + [209598] = 6, + ACTIONS(8444), 1, anon_sym_where, - ACTIONS(8549), 1, + ACTIONS(8448), 1, anon_sym_LBRACE, - STATE(8660), 1, + STATE(8664), 1, sym_type_constraints, - STATE(9356), 1, - sym_class_body, + STATE(9451), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 2, + ACTIONS(4361), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209460] = 3, - ACTIONS(9030), 1, - anon_sym_COLON, + [209619] = 6, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(8448), 1, + anon_sym_LBRACE, + STATE(8712), 1, + sym_type_constraints, + STATE(9429), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 5, + ACTIONS(4422), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209640] = 5, + ACTIONS(10738), 1, anon_sym_AT, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(10740), 1, anon_sym_val, - anon_sym_LT, - [209475] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4953), 6, + STATE(8434), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9259), 2, + sym__single_annotation, + sym__multi_annotation, + [209659] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4511), 6, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - [209488] = 6, - ACTIONS(10675), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [209672] = 6, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - STATE(9240), 1, - sym_function_body, - STATE(9242), 1, + STATE(9222), 1, sym__block, + STATE(9427), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, ACTIONS(4262), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209509] = 4, - ACTIONS(10840), 1, + [209693] = 4, + ACTIONS(10742), 1, anon_sym_COMMA, - STATE(8418), 1, + STATE(8454), 1, aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4541), 4, + ACTIONS(4515), 4, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [209526] = 7, - ACTIONS(3298), 1, - anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, - anon_sym_LBRACE, - ACTIONS(8889), 1, - anon_sym_COLON, - STATE(9006), 1, - sym_type_constraints, - STATE(9701), 1, - sym_enum_class_body, + [209710] = 5, + ACTIONS(9848), 1, + anon_sym_val, + ACTIONS(10744), 1, + anon_sym_AT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209549] = 6, - ACTIONS(10809), 1, + STATE(8434), 2, + sym_annotation, + aux_sym__annotated_delegation_specifier_repeat1, + STATE(9259), 2, + sym__single_annotation, + sym__multi_annotation, + [209729] = 6, + ACTIONS(10703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, + ACTIONS(10705), 1, anon_sym_DOLLAR, - ACTIONS(10854), 1, + ACTIONS(10747), 1, sym__string_end, - ACTIONS(10856), 1, + ACTIONS(10749), 1, sym_string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8427), 2, + STATE(8410), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209570] = 6, - ACTIONS(10809), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, - anon_sym_DOLLAR, - ACTIONS(10858), 1, - sym__string_end, - ACTIONS(10860), 1, - sym_string_content, + [209750] = 4, + ACTIONS(10595), 1, + anon_sym_DOT, + STATE(8331), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8424), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [209591] = 7, - ACTIONS(4270), 1, + ACTIONS(4105), 4, + anon_sym_AT, + anon_sym_LPAREN, + anon_sym_val, + anon_sym_in, + [209767] = 7, + ACTIONS(4154), 1, anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(8614), 1, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(10862), 1, + ACTIONS(8601), 1, + anon_sym_LBRACE, + ACTIONS(10751), 1, anon_sym_COLON, - STATE(8997), 1, + STATE(8942), 1, sym_type_constraints, - STATE(9463), 1, - sym_class_body, + STATE(9936), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209614] = 6, - ACTIONS(8498), 1, + [209790] = 6, + ACTIONS(10573), 1, + anon_sym_EQ, + ACTIONS(10575), 1, anon_sym_LBRACE, - ACTIONS(8504), 1, - anon_sym_where, - STATE(8761), 1, - sym_type_constraints, - STATE(9407), 1, - sym_enum_class_body, + STATE(9222), 1, + sym__block, + STATE(9408), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, + ACTIONS(4445), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209635] = 6, - ACTIONS(10809), 1, + [209811] = 6, + ACTIONS(10703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, + ACTIONS(10705), 1, anon_sym_DOLLAR, - ACTIONS(10815), 1, - sym_string_content, - ACTIONS(10864), 1, + ACTIONS(10753), 1, sym__string_end, + ACTIONS(10755), 1, + sym_string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8416), 2, + STATE(8409), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209656] = 6, - ACTIONS(10809), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, - anon_sym_DOLLAR, - ACTIONS(10866), 1, - sym__string_end, - ACTIONS(10868), 1, - sym_string_content, + [209832] = 6, + ACTIONS(10573), 1, + anon_sym_EQ, + ACTIONS(10575), 1, + anon_sym_LBRACE, + STATE(9222), 1, + sym__block, + STATE(9385), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8439), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [209677] = 2, + ACTIONS(4079), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [209853] = 6, + ACTIONS(8444), 1, + anon_sym_where, + ACTIONS(8448), 1, + anon_sym_LBRACE, + STATE(8653), 1, + sym_type_constraints, + STATE(9425), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4599), 6, + ACTIONS(4154), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, + [209874] = 6, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(8444), 1, anon_sym_where, - [209690] = 2, + STATE(8652), 1, + sym_type_constraints, + STATE(9264), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4537), 6, + ACTIONS(4337), 2, sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_where, - [209703] = 6, - ACTIONS(10809), 1, + [209895] = 6, + ACTIONS(10703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, + ACTIONS(10705), 1, anon_sym_DOLLAR, - ACTIONS(10870), 1, + ACTIONS(10757), 1, sym__string_end, - ACTIONS(10872), 1, + ACTIONS(10759), 1, sym_string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8450), 2, + STATE(8417), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209724] = 6, - ACTIONS(10675), 1, + [209916] = 6, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10575), 1, anon_sym_LBRACE, - STATE(9169), 1, - sym_function_body, - STATE(9242), 1, + STATE(9222), 1, sym__block, + STATE(9284), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 2, + ACTIONS(4099), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [209745] = 6, - ACTIONS(8504), 1, - anon_sym_where, - ACTIONS(8549), 1, - anon_sym_LBRACE, - STATE(8783), 1, - sym_type_constraints, - STATE(9369), 1, - sym_class_body, + [209937] = 6, + ACTIONS(10703), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10705), 1, + anon_sym_DOLLAR, + ACTIONS(10761), 1, + sym__string_end, + ACTIONS(10763), 1, + sym_string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [209766] = 7, - ACTIONS(3280), 1, + STATE(8421), 2, + sym__interpolation, + aux_sym_string_literal_repeat1, + [209958] = 7, + ACTIONS(3222), 1, anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(8871), 1, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8816), 1, anon_sym_COLON, - STATE(8918), 1, + STATE(9006), 1, sym_type_constraints, - STATE(9861), 1, - sym_enum_class_body, + STATE(10052), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209789] = 6, - ACTIONS(8498), 1, - anon_sym_LBRACE, - ACTIONS(8504), 1, - anon_sym_where, - STATE(8785), 1, - sym_type_constraints, - STATE(9341), 1, - sym_enum_class_body, + [209981] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4202), 2, + ACTIONS(4523), 6, sym__automatic_semicolon, - anon_sym_RBRACE, - [209810] = 6, - ACTIONS(10675), 1, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(10677), 1, anon_sym_LBRACE, - STATE(9242), 1, - sym__block, - STATE(9252), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4158), 2, - sym__automatic_semicolon, anon_sym_RBRACE, - [209831] = 6, - ACTIONS(8504), 1, anon_sym_where, - ACTIONS(8549), 1, - anon_sym_LBRACE, - STATE(8780), 1, - sym_type_constraints, - STATE(9177), 1, - sym_class_body, + [209994] = 3, + ACTIONS(10617), 1, + anon_sym_by, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 2, + ACTIONS(4349), 5, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_RBRACE, - [209852] = 6, - ACTIONS(10809), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, - anon_sym_DOLLAR, - ACTIONS(10815), 1, - sym_string_content, - ACTIONS(10874), 1, - sym__string_end, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8416), 2, - sym__interpolation, - aux_sym_string_literal_repeat1, - [209873] = 6, - ACTIONS(10809), 1, + anon_sym_COMMA, + anon_sym_where, + [210009] = 6, + ACTIONS(10765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10811), 1, + ACTIONS(10768), 1, anon_sym_DOLLAR, - ACTIONS(10876), 1, + ACTIONS(10771), 1, sym__string_end, - ACTIONS(10878), 1, + ACTIONS(10773), 1, sym_string_content, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8428), 2, + STATE(8449), 2, sym__interpolation, aux_sym_string_literal_repeat1, - [209894] = 5, - ACTIONS(9871), 1, - anon_sym_val, - ACTIONS(10880), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8452), 2, - sym_annotation, - aux_sym__annotated_delegation_specifier_repeat1, - STATE(9353), 2, - sym__single_annotation, - sym__multi_annotation, - [209913] = 6, - ACTIONS(8201), 1, + [210030] = 6, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(10883), 1, - anon_sym_COLON, - ACTIONS(10885), 1, - anon_sym_EQ, - STATE(5101), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + ACTIONS(8444), 1, + anon_sym_where, + STATE(8678), 1, + sym_type_constraints, + STATE(9455), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209933] = 6, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + ACTIONS(4276), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [210051] = 7, + ACTIONS(4204), 1, + anon_sym_while, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8601), 1, anon_sym_LBRACE, - ACTIONS(10887), 1, + ACTIONS(10776), 1, anon_sym_COLON, - STATE(5348), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + STATE(8993), 1, + sym_type_constraints, + STATE(10025), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209953] = 6, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10889), 1, - anon_sym_COLON, - ACTIONS(10891), 1, - anon_sym_EQ, - STATE(3975), 1, - sym__block, - STATE(3998), 1, - sym_function_body, + [210074] = 4, + ACTIONS(10711), 1, + anon_sym_COMMA, + STATE(8405), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [209973] = 6, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10891), 1, + ACTIONS(4390), 4, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(10893), 1, - anon_sym_COLON, - STATE(3907), 1, - sym_function_body, - STATE(3975), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [209993] = 6, - ACTIONS(6759), 1, anon_sym_LBRACE, - ACTIONS(10891), 1, - anon_sym_EQ, - ACTIONS(10895), 1, - anon_sym_COLON, - STATE(3828), 1, - sym_function_body, - STATE(3975), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210013] = 2, + anon_sym_RBRACE, + [210091] = 4, + ACTIONS(10742), 1, + anon_sym_COMMA, + STATE(8433), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4599), 5, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(4589), 4, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - anon_sym_while, - [210025] = 6, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10897), 1, - anon_sym_COLON, - ACTIONS(10899), 1, - anon_sym_EQ, - STATE(3965), 1, - sym_function_body, - STATE(3975), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210045] = 2, + [210108] = 4, + ACTIONS(10778), 1, + anon_sym_COMMA, + STATE(8454), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4537), 5, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(4613), 4, + sym__automatic_semicolon, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_where, - anon_sym_while, - [210057] = 6, - ACTIONS(6759), 1, + [210125] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, - anon_sym_EQ, - ACTIONS(10901), 1, + ACTIONS(10781), 1, anon_sym_COLON, - STATE(3975), 1, + ACTIONS(10783), 1, + anon_sym_EQ, + STATE(3227), 1, sym__block, - STATE(3998), 1, + STATE(3245), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210077] = 5, - ACTIONS(10903), 1, - anon_sym_catch, - ACTIONS(10905), 1, - anon_sym_finally, - STATE(1014), 1, - sym_finally_block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(806), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [210095] = 6, - ACTIONS(4177), 1, - anon_sym_while, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + [210145] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(9570), 1, + ACTIONS(10785), 1, + anon_sym_COLON, + ACTIONS(10787), 1, + anon_sym_EQ, + STATE(4717), 1, sym_function_body, - STATE(9966), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210115] = 6, - ACTIONS(6759), 1, + [210165] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, + ACTIONS(10783), 1, anon_sym_EQ, - ACTIONS(10907), 1, + ACTIONS(10789), 1, anon_sym_COLON, - STATE(3907), 1, - sym_function_body, - STATE(3975), 1, + STATE(3227), 1, sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210135] = 6, - ACTIONS(4425), 1, - anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, - anon_sym_LBRACE, - STATE(8870), 1, - sym_type_constraints, - STATE(9693), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [210155] = 6, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(10909), 1, - anon_sym_COLON, - ACTIONS(10911), 1, - anon_sym_EQ, - STATE(5093), 1, + STATE(3252), 1, sym_function_body, - STATE(5152), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210175] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4635), 5, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [210187] = 6, - ACTIONS(10675), 1, + [210185] = 6, + ACTIONS(8135), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(8137), 1, anon_sym_LBRACE, - ACTIONS(10913), 1, + ACTIONS(10791), 1, anon_sym_COLON, - STATE(9242), 1, + STATE(5344), 1, sym__block, - STATE(9423), 1, + STATE(5354), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210207] = 6, - ACTIONS(4425), 1, - anon_sym_while, - ACTIONS(8608), 1, + [210205] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(8614), 1, - anon_sym_where, - STATE(8830), 1, - sym_type_constraints, - STATE(9693), 1, - sym_class_body, + ACTIONS(10793), 1, + anon_sym_COLON, + ACTIONS(10795), 1, + anon_sym_EQ, + STATE(5105), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210227] = 6, - ACTIONS(10675), 1, - anon_sym_EQ, - ACTIONS(10677), 1, + [210225] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(10915), 1, + ACTIONS(10797), 1, anon_sym_COLON, - STATE(9242), 1, + ACTIONS(10799), 1, + anon_sym_EQ, + STATE(1109), 1, sym__block, - STATE(9372), 1, + STATE(1169), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210247] = 2, + [210245] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4603), 5, + ACTIONS(4501), 5, sym__automatic_semicolon, anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_where, - [210259] = 6, - ACTIONS(8201), 1, + [210257] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(10885), 1, + ACTIONS(10799), 1, anon_sym_EQ, - ACTIONS(10917), 1, + ACTIONS(10801), 1, anon_sym_COLON, - STATE(5152), 1, + STATE(1109), 1, sym__block, - STATE(5175), 1, + STATE(1181), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210279] = 6, - ACTIONS(4202), 1, - anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, + [210277] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - STATE(9014), 1, - sym_type_constraints, - STATE(9573), 1, - sym_enum_class_body, + ACTIONS(10799), 1, + anon_sym_EQ, + ACTIONS(10803), 1, + anon_sym_COLON, + STATE(1109), 1, + sym__block, + STATE(1168), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210299] = 7, - ACTIONS(3), 1, - sym_multiline_comment, - ACTIONS(10919), 1, - sym_line_comment, - ACTIONS(10921), 1, - aux_sym_character_literal_token1, - ACTIONS(10923), 1, - anon_sym_BSLASHu, - ACTIONS(10925), 1, - sym__escaped_identifier, - STATE(9834), 1, - sym__uni_character_literal, - STATE(9836), 1, - sym_character_escape_seq, - [210321] = 6, - ACTIONS(8201), 1, + [210297] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(10885), 1, + ACTIONS(10799), 1, anon_sym_EQ, - ACTIONS(10927), 1, + ACTIONS(10805), 1, anon_sym_COLON, - STATE(5093), 1, - sym_function_body, - STATE(5152), 1, + STATE(1109), 1, sym__block, + STATE(1129), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210341] = 6, - ACTIONS(4429), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(8614), 1, - anon_sym_where, - STATE(9041), 1, - sym_type_constraints, - STATE(9724), 1, - sym_class_body, + [210317] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210361] = 6, - ACTIONS(8201), 1, + ACTIONS(4505), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10885), 1, - anon_sym_EQ, - ACTIONS(10929), 1, + anon_sym_RBRACE, + anon_sym_where, + [210329] = 6, + ACTIONS(4085), 1, + anon_sym_LBRACE, + ACTIONS(10807), 1, anon_sym_COLON, - STATE(5122), 1, - sym_function_body, - STATE(5152), 1, + ACTIONS(10809), 1, + anon_sym_EQ, + STATE(1109), 1, sym__block, + STATE(1169), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210381] = 2, + [210349] = 5, + ACTIONS(10811), 1, + anon_sym_catch, + ACTIONS(10813), 1, + anon_sym_finally, + STATE(3580), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4615), 5, - sym__automatic_semicolon, - anon_sym_COLON, + STATE(2811), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [210367] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [210393] = 4, - ACTIONS(10931), 1, - anon_sym_COMMA, - STATE(8500), 1, - aux_sym__delegation_specifiers_repeat1, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(10815), 1, + anon_sym_COLON, + STATE(3227), 1, + sym__block, + STATE(3245), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4541), 3, + [210387] = 5, + ACTIONS(8438), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [210409] = 2, + ACTIONS(10817), 1, + anon_sym_COLON, + STATE(9443), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 5, + ACTIONS(4327), 2, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [210421] = 6, - ACTIONS(6522), 1, + [210405] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10933), 1, - anon_sym_COLON, - ACTIONS(10935), 1, + ACTIONS(8135), 1, anon_sym_EQ, - STATE(3494), 1, + ACTIONS(10819), 1, + anon_sym_COLON, + STATE(3227), 1, + sym__block, + STATE(3252), 1, sym_function_body, - STATE(3577), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [210425] = 6, + ACTIONS(6372), 1, + anon_sym_LBRACE, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(10821), 1, + anon_sym_COLON, + STATE(3227), 1, sym__block, + STATE(3235), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210441] = 6, - ACTIONS(4417), 1, - anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, + [210445] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - STATE(8815), 1, - sym_type_constraints, - STATE(9615), 1, - sym_enum_class_body, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(10823), 1, + anon_sym_COLON, + STATE(3196), 1, + sym_function_body, + STATE(3227), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210461] = 4, - ACTIONS(10937), 1, + [210465] = 4, + ACTIONS(10825), 1, anon_sym_COMMA, - STATE(8516), 1, - aux_sym_type_constraints_repeat1, + STATE(8598), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4391), 3, - anon_sym_EQ, + ACTIONS(4515), 3, anon_sym_LBRACE, + anon_sym_where, anon_sym_while, - [210477] = 6, - ACTIONS(4470), 1, - anon_sym_while, - ACTIONS(8608), 1, + [210481] = 6, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, anon_sym_LBRACE, - ACTIONS(8614), 1, - anon_sym_where, - STATE(9026), 1, - sym_type_constraints, - STATE(9704), 1, - sym_class_body, + ACTIONS(10827), 1, + anon_sym_COLON, + STATE(9824), 1, + sym__block, + STATE(10041), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210497] = 6, - ACTIONS(8201), 1, + [210501] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10911), 1, + ACTIONS(10795), 1, anon_sym_EQ, - ACTIONS(10939), 1, + ACTIONS(10829), 1, anon_sym_COLON, - STATE(5152), 1, - sym__block, - STATE(5175), 1, + STATE(5185), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210517] = 2, + [210521] = 6, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(10787), 1, + anon_sym_EQ, + ACTIONS(10831), 1, + anon_sym_COLON, + STATE(4711), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [210529] = 6, - ACTIONS(8201), 1, + [210541] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10911), 1, - anon_sym_EQ, - ACTIONS(10941), 1, + ACTIONS(10833), 1, anon_sym_COLON, - STATE(5101), 1, + ACTIONS(10835), 1, + anon_sym_EQ, + STATE(3410), 1, sym_function_body, - STATE(5152), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210549] = 6, - ACTIONS(4196), 1, - anon_sym_while, - ACTIONS(10699), 1, + [210561] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4708), 5, anon_sym_EQ, - ACTIONS(10701), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_in, + [210573] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - STATE(9830), 1, + ACTIONS(10835), 1, + anon_sym_EQ, + ACTIONS(10837), 1, + anon_sym_COLON, + STATE(3466), 1, sym_function_body, - STATE(9966), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210569] = 6, - ACTIONS(6759), 1, + [210593] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10899), 1, + ACTIONS(10835), 1, anon_sym_EQ, - ACTIONS(10943), 1, + ACTIONS(10839), 1, anon_sym_COLON, - STATE(3828), 1, + STATE(3481), 1, sym_function_body, - STATE(3975), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210589] = 6, - ACTIONS(8098), 1, + [210613] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10945), 1, + ACTIONS(10841), 1, anon_sym_COLON, - ACTIONS(10947), 1, + ACTIONS(10843), 1, anon_sym_EQ, - STATE(4739), 1, + STATE(4694), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210609] = 6, - ACTIONS(8098), 1, + [210633] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(10843), 1, anon_sym_EQ, - ACTIONS(10949), 1, + ACTIONS(10845), 1, anon_sym_COLON, - STATE(4832), 1, + STATE(4717), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210629] = 6, - ACTIONS(8098), 1, + [210653] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, - anon_sym_EQ, - ACTIONS(10951), 1, + ACTIONS(10847), 1, anon_sym_COLON, - STATE(4726), 1, - sym_function_body, - STATE(4871), 1, + ACTIONS(10849), 1, + anon_sym_EQ, + STATE(3227), 1, sym__block, + STATE(3245), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210649] = 6, - ACTIONS(4429), 1, - anon_sym_while, - ACTIONS(8614), 1, - anon_sym_where, - ACTIONS(8620), 1, + [210673] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - STATE(9092), 1, - sym_type_constraints, - STATE(9724), 1, - sym_enum_class_body, + ACTIONS(10835), 1, + anon_sym_EQ, + ACTIONS(10851), 1, + anon_sym_COLON, + STATE(3524), 1, + sym__block, + STATE(3595), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210669] = 6, - ACTIONS(8098), 1, + [210693] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(10843), 1, anon_sym_EQ, - ACTIONS(10953), 1, + ACTIONS(10853), 1, anon_sym_COLON, - STATE(4805), 1, + STATE(4711), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210689] = 6, - ACTIONS(6759), 1, + [210713] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(10891), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [210725] = 6, + ACTIONS(6372), 1, + anon_sym_LBRACE, + ACTIONS(10783), 1, anon_sym_EQ, - ACTIONS(10955), 1, + ACTIONS(10855), 1, anon_sym_COLON, - STATE(3965), 1, + STATE(3196), 1, sym_function_body, - STATE(3975), 1, + STATE(3227), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210709] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4619), 5, + [210745] = 6, + ACTIONS(6372), 1, + anon_sym_LBRACE, + ACTIONS(10783), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_in, - [210721] = 3, - ACTIONS(10719), 1, + ACTIONS(10857), 1, anon_sym_COLON, + STATE(3227), 1, + sym__block, + STATE(3235), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4183), 4, + [210765] = 6, + ACTIONS(4079), 1, + anon_sym_while, + ACTIONS(10603), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH_GT, - [210735] = 4, - ACTIONS(8608), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(8875), 1, - sym_class_body, + STATE(9824), 1, + sym__block, + STATE(10085), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10957), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [210751] = 5, - ACTIONS(10959), 1, - anon_sym_catch, - ACTIONS(10961), 1, - anon_sym_finally, - STATE(3168), 1, - sym_finally_block, + [210785] = 6, + ACTIONS(4085), 1, + anon_sym_LBRACE, + ACTIONS(10859), 1, + anon_sym_COLON, + ACTIONS(10861), 1, + anon_sym_EQ, + STATE(1109), 1, + sym__block, + STATE(1181), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2757), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [210769] = 4, - ACTIONS(10963), 1, - anon_sym_COMMA, - STATE(8500), 1, - aux_sym__delegation_specifiers_repeat1, + [210805] = 6, + ACTIONS(4085), 1, + anon_sym_LBRACE, + ACTIONS(10861), 1, + anon_sym_EQ, + ACTIONS(10863), 1, + anon_sym_COLON, + STATE(1109), 1, + sym__block, + STATE(1169), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4639), 3, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [210785] = 7, + [210825] = 7, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10919), 1, + ACTIONS(10865), 1, sym_line_comment, - ACTIONS(10923), 1, + ACTIONS(10867), 1, + aux_sym_character_literal_token1, + ACTIONS(10869), 1, anon_sym_BSLASHu, - ACTIONS(10925), 1, + ACTIONS(10871), 1, sym__escaped_identifier, - ACTIONS(10966), 1, - aux_sym_character_literal_token1, - STATE(9826), 1, - sym_character_escape_seq, - STATE(9834), 1, + STATE(9990), 1, sym__uni_character_literal, - [210807] = 2, + STATE(10018), 1, + sym_character_escape_seq, + [210847] = 6, + ACTIONS(4085), 1, + anon_sym_LBRACE, + ACTIONS(10809), 1, + anon_sym_EQ, + ACTIONS(10873), 1, + anon_sym_COLON, + STATE(1109), 1, + sym__block, + STATE(1129), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4660), 5, - anon_sym_COLON, + [210867] = 6, + ACTIONS(10573), 1, anon_sym_EQ, + ACTIONS(10575), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [210819] = 2, + ACTIONS(10875), 1, + anon_sym_COLON, + STATE(9222), 1, + sym__block, + STATE(9413), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4722), 5, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [210831] = 6, - ACTIONS(6522), 1, + [210887] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10968), 1, - anon_sym_COLON, - ACTIONS(10970), 1, + ACTIONS(10849), 1, anon_sym_EQ, - STATE(3548), 1, - sym_function_body, - STATE(3577), 1, + ACTIONS(10877), 1, + anon_sym_COLON, + STATE(3227), 1, sym__block, + STATE(3252), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210851] = 6, - ACTIONS(6759), 1, + [210907] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10972), 1, - anon_sym_COLON, - ACTIONS(10974), 1, + ACTIONS(10795), 1, anon_sym_EQ, - STATE(3965), 1, + ACTIONS(10879), 1, + anon_sym_COLON, + STATE(5094), 1, sym_function_body, - STATE(3975), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210871] = 6, - ACTIONS(6522), 1, + [210927] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10849), 1, anon_sym_EQ, - ACTIONS(10976), 1, + ACTIONS(10881), 1, anon_sym_COLON, - STATE(3525), 1, - sym_function_body, - STATE(3577), 1, + STATE(3227), 1, sym__block, + STATE(3235), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210891] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5171), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [210903] = 6, - ACTIONS(6522), 1, + [210947] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10849), 1, anon_sym_EQ, - ACTIONS(10978), 1, + ACTIONS(10883), 1, anon_sym_COLON, - STATE(3515), 1, + STATE(3196), 1, sym_function_body, - STATE(3577), 1, + STATE(3227), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210923] = 6, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + [210967] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10980), 1, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10885), 1, anon_sym_COLON, - STATE(9674), 1, + STATE(4700), 1, sym_function_body, - STATE(9966), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210943] = 2, + [210987] = 6, + ACTIONS(4085), 1, + anon_sym_LBRACE, + ACTIONS(10809), 1, + anon_sym_EQ, + ACTIONS(10887), 1, + anon_sym_COLON, + STATE(1109), 1, + sym__block, + STATE(1168), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4726), 5, - sym__automatic_semicolon, - anon_sym_COLON, + [211007] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [210955] = 5, - ACTIONS(10982), 1, - anon_sym_catch, - ACTIONS(10984), 1, - anon_sym_finally, - STATE(3881), 1, - sym_finally_block, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10889), 1, + anon_sym_COLON, + STATE(4711), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(3079), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [210973] = 6, - ACTIONS(6522), 1, + [211027] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10986), 1, + ACTIONS(10891), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(4717), 1, sym_function_body, - STATE(3577), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [210993] = 6, - ACTIONS(6759), 1, + [211047] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10974), 1, + ACTIONS(10795), 1, anon_sym_EQ, - ACTIONS(10988), 1, + ACTIONS(10893), 1, anon_sym_COLON, - STATE(3975), 1, - sym__block, - STATE(3998), 1, + STATE(5111), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211013] = 6, - ACTIONS(6759), 1, + [211067] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10974), 1, + ACTIONS(10843), 1, anon_sym_EQ, - ACTIONS(10990), 1, + ACTIONS(10895), 1, anon_sym_COLON, - STATE(3907), 1, + STATE(4700), 1, sym_function_body, - STATE(3975), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211033] = 6, - ACTIONS(8098), 1, + [211087] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10865), 1, + sym_line_comment, + ACTIONS(10869), 1, + anon_sym_BSLASHu, + ACTIONS(10871), 1, + sym__escaped_identifier, + ACTIONS(10897), 1, + aux_sym_character_literal_token1, + STATE(9884), 1, + sym_character_escape_seq, + STATE(9990), 1, + sym__uni_character_literal, + [211109] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10992), 1, - anon_sym_COLON, - ACTIONS(10994), 1, + ACTIONS(10603), 1, anon_sym_EQ, - STATE(4832), 1, + ACTIONS(10899), 1, + anon_sym_COLON, + STATE(4694), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211053] = 4, - ACTIONS(10996), 1, - anon_sym_COMMA, - STATE(8516), 1, - aux_sym_type_constraints_repeat1, + [211129] = 6, + ACTIONS(6488), 1, + anon_sym_LBRACE, + ACTIONS(10901), 1, + anon_sym_COLON, + ACTIONS(10903), 1, + anon_sym_EQ, + STATE(3410), 1, + sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4433), 3, - anon_sym_EQ, + [211149] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - anon_sym_while, - [211069] = 6, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10974), 1, + ACTIONS(10903), 1, anon_sym_EQ, - ACTIONS(10999), 1, + ACTIONS(10905), 1, anon_sym_COLON, - STATE(3828), 1, + STATE(3466), 1, sym_function_body, - STATE(3975), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211089] = 6, - ACTIONS(4141), 1, + [211169] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11001), 1, + ACTIONS(10907), 1, anon_sym_COLON, - ACTIONS(11003), 1, + ACTIONS(10909), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(1109), 1, sym__block, - STATE(1172), 1, + STATE(1169), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211109] = 6, - ACTIONS(4141), 1, + [211189] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11005), 1, - anon_sym_COLON, - ACTIONS(11007), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(1092), 1, - sym__block, - STATE(1172), 1, + ACTIONS(10911), 1, + anon_sym_COLON, + STATE(3481), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211129] = 6, - ACTIONS(11009), 1, - anon_sym_DOT, - ACTIONS(11011), 1, - anon_sym_as, - ACTIONS(11013), 1, - sym__automatic_semicolon, - STATE(9278), 1, - sym_import_alias, - STATE(9279), 1, - sym__semi, + [211209] = 6, + ACTIONS(4085), 1, + anon_sym_LBRACE, + ACTIONS(10909), 1, + anon_sym_EQ, + ACTIONS(10913), 1, + anon_sym_COLON, + STATE(1109), 1, + sym__block, + STATE(1181), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211149] = 5, - ACTIONS(8549), 1, + [211229] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11015), 1, + ACTIONS(10909), 1, + anon_sym_EQ, + ACTIONS(10915), 1, anon_sym_COLON, - STATE(9379), 1, - sym_class_body, + STATE(1109), 1, + sym__block, + STATE(1168), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4407), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [211167] = 6, - ACTIONS(4141), 1, + [211249] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(10909), 1, anon_sym_EQ, - ACTIONS(11017), 1, + ACTIONS(10917), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(1109), 1, sym__block, STATE(1129), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211187] = 6, - ACTIONS(4141), 1, + [211269] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(10903), 1, anon_sym_EQ, - ACTIONS(11019), 1, + ACTIONS(10919), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(3524), 1, sym__block, - STATE(1111), 1, + STATE(3595), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211207] = 6, - ACTIONS(4141), 1, - anon_sym_LBRACE, - ACTIONS(11007), 1, + [211289] = 6, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(11021), 1, + ACTIONS(10575), 1, + anon_sym_LBRACE, + ACTIONS(10921), 1, anon_sym_COLON, - STATE(1043), 1, - sym_function_body, - STATE(1092), 1, + STATE(9222), 1, sym__block, + STATE(9377), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211227] = 6, - ACTIONS(8175), 1, + [211309] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4527), 5, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(8177), 1, anon_sym_LBRACE, - ACTIONS(11023), 1, + anon_sym_where, + anon_sym_while, + [211321] = 6, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + ACTIONS(10923), 1, anon_sym_COLON, - STATE(5325), 1, + STATE(5332), 1, sym_function_body, - STATE(5399), 1, + STATE(5344), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211247] = 7, + [211341] = 7, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10919), 1, + ACTIONS(10865), 1, sym_line_comment, - ACTIONS(10923), 1, + ACTIONS(10869), 1, anon_sym_BSLASHu, - ACTIONS(10925), 1, + ACTIONS(10871), 1, sym__escaped_identifier, - ACTIONS(11025), 1, + ACTIONS(10925), 1, aux_sym_character_literal_token1, - STATE(9806), 1, - sym_character_escape_seq, - STATE(9834), 1, + STATE(9990), 1, sym__uni_character_literal, - [211269] = 6, - ACTIONS(6759), 1, + STATE(9993), 1, + sym_character_escape_seq, + [211363] = 3, + ACTIONS(10687), 1, + anon_sym_by, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4349), 4, anon_sym_LBRACE, - ACTIONS(11027), 1, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [211377] = 6, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, + anon_sym_LBRACE, + ACTIONS(10927), 1, anon_sym_COLON, - ACTIONS(11029), 1, + STATE(9824), 1, + sym__block, + STATE(10019), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211397] = 4, + ACTIONS(10825), 1, + anon_sym_COMMA, + STATE(8473), 1, + aux_sym__delegation_specifiers_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4589), 3, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [211413] = 6, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(10573), 1, anon_sym_EQ, - STATE(3828), 1, + ACTIONS(10929), 1, + anon_sym_COLON, + STATE(5185), 1, sym_function_body, - STATE(3975), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211289] = 6, - ACTIONS(6759), 1, + [211433] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11029), 1, - anon_sym_EQ, - ACTIONS(11031), 1, + ACTIONS(10931), 1, anon_sym_COLON, - STATE(3907), 1, + ACTIONS(10933), 1, + anon_sym_EQ, + STATE(3869), 1, sym_function_body, - STATE(3975), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211309] = 6, - ACTIONS(10675), 1, + [211453] = 6, + ACTIONS(8135), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(8137), 1, anon_sym_LBRACE, - ACTIONS(11033), 1, + ACTIONS(10935), 1, anon_sym_COLON, - STATE(9242), 1, - sym__block, - STATE(9255), 1, + STATE(5324), 1, sym_function_body, + STATE(5344), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211329] = 2, + [211473] = 4, + ACTIONS(10937), 1, + anon_sym_DOT, + STATE(8331), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4650), 5, - sym__automatic_semicolon, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_where, - [211341] = 6, - ACTIONS(4141), 1, + ACTIONS(4105), 3, + anon_sym_AMP, + sym__quest, + anon_sym_in, + [211489] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10787), 1, anon_sym_EQ, - ACTIONS(11035), 1, + ACTIONS(10939), 1, anon_sym_COLON, - STATE(1092), 1, - sym__block, - STATE(1129), 1, + STATE(4700), 1, sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211361] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4981), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [211373] = 6, - ACTIONS(6759), 1, + [211509] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11029), 1, - anon_sym_EQ, - ACTIONS(11037), 1, + ACTIONS(10941), 1, anon_sym_COLON, - STATE(3975), 1, + ACTIONS(10943), 1, + anon_sym_EQ, + STATE(3874), 1, sym__block, - STATE(3998), 1, + STATE(3981), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211393] = 6, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + [211529] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11039), 1, + ACTIONS(10945), 1, anon_sym_COLON, - STATE(9703), 1, - sym_function_body, - STATE(9966), 1, + ACTIONS(10947), 1, + anon_sym_EQ, + STATE(3227), 1, sym__block, + STATE(3245), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211413] = 6, - ACTIONS(10675), 1, + [211549] = 6, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - ACTIONS(11041), 1, + ACTIONS(10949), 1, anon_sym_COLON, - STATE(9242), 1, + STATE(9824), 1, sym__block, - STATE(9290), 1, + STATE(10114), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211433] = 2, + [211569] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 5, + ACTIONS(4497), 5, sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_where, - [211445] = 6, - ACTIONS(4141), 1, + [211581] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10947), 1, anon_sym_EQ, - ACTIONS(11043), 1, + ACTIONS(10951), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(3227), 1, sym__block, - STATE(1111), 1, + STATE(3252), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211465] = 6, - ACTIONS(6759), 1, + [211601] = 5, + ACTIONS(10953), 1, + anon_sym_catch, + ACTIONS(10955), 1, + anon_sym_finally, + STATE(4786), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(4528), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [211619] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11029), 1, + ACTIONS(10947), 1, anon_sym_EQ, - ACTIONS(11045), 1, + ACTIONS(10957), 1, anon_sym_COLON, - STATE(3965), 1, - sym_function_body, - STATE(3975), 1, + STATE(3227), 1, sym__block, + STATE(3235), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211485] = 6, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + [211639] = 6, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11047), 1, + ACTIONS(10947), 1, + anon_sym_EQ, + ACTIONS(10959), 1, anon_sym_COLON, - STATE(9966), 1, - sym__block, - STATE(9991), 1, + STATE(3196), 1, sym_function_body, + STATE(3227), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [211659] = 4, + ACTIONS(10961), 1, + anon_sym_COMMA, + STATE(8589), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211505] = 4, - ACTIONS(8608), 1, + ACTIONS(4390), 3, + anon_sym_EQ, anon_sym_LBRACE, - STATE(8952), 1, + anon_sym_while, + [211675] = 6, + ACTIONS(4414), 1, + anon_sym_while, + ACTIONS(8513), 1, + anon_sym_LBRACE, + ACTIONS(8519), 1, + anon_sym_where, + STATE(8995), 1, + sym_type_constraints, + STATE(10026), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10799), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [211521] = 6, - ACTIONS(4141), 1, + [211695] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10809), 1, anon_sym_EQ, - ACTIONS(11049), 1, + ACTIONS(10963), 1, anon_sym_COLON, - STATE(1043), 1, - sym_function_body, - STATE(1092), 1, + STATE(1109), 1, sym__block, + STATE(1181), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211541] = 6, - ACTIONS(4462), 1, + [211715] = 6, + ACTIONS(4204), 1, anon_sym_while, - ACTIONS(8614), 1, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(8620), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(8989), 1, + STATE(8993), 1, sym_type_constraints, - STATE(9734), 1, + STATE(10025), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211561] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(5215), 5, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_where, - [211573] = 7, + [211735] = 7, ACTIONS(3), 1, sym_multiline_comment, - ACTIONS(10919), 1, + ACTIONS(10865), 1, sym_line_comment, - ACTIONS(10923), 1, + ACTIONS(10869), 1, anon_sym_BSLASHu, - ACTIONS(10925), 1, + ACTIONS(10871), 1, sym__escaped_identifier, - ACTIONS(11051), 1, + ACTIONS(10965), 1, aux_sym_character_literal_token1, - STATE(9713), 1, + STATE(9492), 1, sym_character_escape_seq, - STATE(9834), 1, + STATE(9990), 1, sym__uni_character_literal, - [211595] = 3, - ACTIONS(10770), 1, - anon_sym_by, + [211757] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 4, + ACTIONS(4585), 5, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_where, anon_sym_while, - [211609] = 6, - ACTIONS(8098), 1, + [211769] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10994), 1, + ACTIONS(10943), 1, anon_sym_EQ, - ACTIONS(11053), 1, + ACTIONS(10967), 1, anon_sym_COLON, - STATE(4739), 1, + STATE(3855), 1, sym_function_body, - STATE(4871), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211629] = 4, - ACTIONS(10931), 1, - anon_sym_COMMA, - STATE(8479), 1, - aux_sym__delegation_specifiers_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4623), 3, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [211645] = 6, - ACTIONS(8098), 1, + [211789] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10994), 1, + ACTIONS(10943), 1, anon_sym_EQ, - ACTIONS(11055), 1, + ACTIONS(10969), 1, anon_sym_COLON, - STATE(4726), 1, - sym_function_body, - STATE(4871), 1, + STATE(3874), 1, sym__block, + STATE(3971), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211665] = 6, - ACTIONS(4509), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - ACTIONS(8614), 1, - anon_sym_where, - STATE(8937), 1, - sym_type_constraints, - STATE(9533), 1, - sym_class_body, + [211809] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211685] = 6, - ACTIONS(4270), 1, - anon_sym_while, - ACTIONS(8608), 1, + ACTIONS(4613), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(8614), 1, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - STATE(8997), 1, - sym_type_constraints, - STATE(9463), 1, - sym_class_body, + [211821] = 6, + ACTIONS(6488), 1, + anon_sym_LBRACE, + ACTIONS(10971), 1, + anon_sym_COLON, + ACTIONS(10973), 1, + anon_sym_EQ, + STATE(3524), 1, + sym__block, + STATE(3595), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211705] = 5, - ACTIONS(11057), 1, - anon_sym_catch, - ACTIONS(11059), 1, - anon_sym_finally, - STATE(4876), 1, - sym_finally_block, + [211841] = 3, + ACTIONS(10621), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4528), 2, - sym_catch_block, - aux_sym_try_expression_repeat1, - [211723] = 6, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(10994), 1, + ACTIONS(4138), 4, anon_sym_EQ, - ACTIONS(11061), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH_GT, + [211855] = 6, + ACTIONS(8135), 1, + anon_sym_EQ, + ACTIONS(8137), 1, + anon_sym_LBRACE, + ACTIONS(10975), 1, anon_sym_COLON, - STATE(4805), 1, + STATE(5314), 1, sym_function_body, - STATE(4871), 1, + STATE(5344), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211743] = 7, - ACTIONS(3), 1, + [211875] = 6, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(10787), 1, + anon_sym_EQ, + ACTIONS(10977), 1, + anon_sym_COLON, + STATE(4694), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + ACTIONS(3), 2, sym_multiline_comment, - ACTIONS(10919), 1, sym_line_comment, - ACTIONS(10923), 1, - anon_sym_BSLASHu, - ACTIONS(10925), 1, - sym__escaped_identifier, - ACTIONS(11063), 1, - aux_sym_character_literal_token1, - STATE(9479), 1, - sym_character_escape_seq, - STATE(9834), 1, - sym__uni_character_literal, - [211765] = 6, - ACTIONS(6427), 1, + [211895] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11065), 1, + ACTIONS(10979), 1, anon_sym_COLON, - ACTIONS(11067), 1, + ACTIONS(10981), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3195), 1, + STATE(3410), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211785] = 6, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + [211915] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11069), 1, + ACTIONS(10973), 1, + anon_sym_EQ, + ACTIONS(10983), 1, anon_sym_COLON, - STATE(9632), 1, + STATE(3481), 1, sym_function_body, - STATE(9966), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211805] = 6, - ACTIONS(8201), 1, + [211935] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11071), 1, - anon_sym_COLON, - ACTIONS(11073), 1, + ACTIONS(10981), 1, anon_sym_EQ, - STATE(5122), 1, + ACTIONS(10985), 1, + anon_sym_COLON, + STATE(3466), 1, sym_function_body, - STATE(5152), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211825] = 6, - ACTIONS(8201), 1, + [211955] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10981), 1, anon_sym_EQ, - ACTIONS(11075), 1, + ACTIONS(10987), 1, anon_sym_COLON, - STATE(5093), 1, + STATE(3481), 1, sym_function_body, - STATE(5152), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211845] = 6, - ACTIONS(6427), 1, + [211975] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11067), 1, + ACTIONS(10981), 1, anon_sym_EQ, - ACTIONS(11077), 1, + ACTIONS(10989), 1, anon_sym_COLON, - STATE(3072), 1, + STATE(3524), 1, sym__block, - STATE(3233), 1, + STATE(3595), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211865] = 6, - ACTIONS(6427), 1, + [211995] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11067), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(11079), 1, + ACTIONS(10991), 1, anon_sym_COLON, - STATE(3072), 1, - sym__block, - STATE(3245), 1, + STATE(5105), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211885] = 6, - ACTIONS(8201), 1, + [212015] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10675), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(11081), 1, + ACTIONS(10993), 1, anon_sym_COLON, - STATE(5122), 1, + STATE(5094), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211905] = 6, - ACTIONS(8201), 1, + [212035] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10675), 1, + ACTIONS(10973), 1, anon_sym_EQ, - ACTIONS(11083), 1, + ACTIONS(10995), 1, anon_sym_COLON, - STATE(5093), 1, + STATE(3466), 1, sym_function_body, - STATE(5152), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211925] = 6, - ACTIONS(8201), 1, + [212055] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10675), 1, + ACTIONS(10997), 1, + anon_sym_COLON, + ACTIONS(10999), 1, anon_sym_EQ, - ACTIONS(11085), 1, + STATE(3874), 1, + sym__block, + STATE(3981), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212075] = 6, + ACTIONS(6648), 1, + anon_sym_LBRACE, + ACTIONS(10999), 1, + anon_sym_EQ, + ACTIONS(11001), 1, anon_sym_COLON, - STATE(5101), 1, + STATE(3855), 1, sym_function_body, - STATE(5152), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211945] = 6, - ACTIONS(8201), 1, + [212095] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_EQ, - ACTIONS(11087), 1, + ACTIONS(11003), 1, anon_sym_COLON, - STATE(5101), 1, + ACTIONS(11005), 1, + anon_sym_EQ, + STATE(4700), 1, sym_function_body, - STATE(5152), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211965] = 6, - ACTIONS(8201), 1, + [212115] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10675), 1, + ACTIONS(10999), 1, anon_sym_EQ, - ACTIONS(11089), 1, + ACTIONS(11007), 1, anon_sym_COLON, - STATE(5152), 1, + STATE(3874), 1, sym__block, - STATE(5175), 1, + STATE(3971), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [211985] = 6, - ACTIONS(8098), 1, + [212135] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10699), 1, + ACTIONS(11005), 1, anon_sym_EQ, - ACTIONS(11091), 1, + ACTIONS(11009), 1, anon_sym_COLON, - STATE(4739), 1, + STATE(4711), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212005] = 6, - ACTIONS(6427), 1, + [212155] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11067), 1, + ACTIONS(11005), 1, anon_sym_EQ, - ACTIONS(11093), 1, + ACTIONS(11011), 1, anon_sym_COLON, - STATE(3072), 1, - sym__block, - STATE(3241), 1, + STATE(4717), 1, sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212025] = 6, - ACTIONS(4141), 1, + [212175] = 6, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11095), 1, + ACTIONS(11005), 1, + anon_sym_EQ, + ACTIONS(11013), 1, anon_sym_COLON, - ACTIONS(11097), 1, + STATE(4694), 1, + sym_function_body, + STATE(4781), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212195] = 6, + ACTIONS(4089), 1, + anon_sym_while, + ACTIONS(10603), 1, anon_sym_EQ, - STATE(1092), 1, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(9824), 1, sym__block, - STATE(1172), 1, + STATE(10020), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212045] = 6, - ACTIONS(8201), 1, + [212215] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10999), 1, anon_sym_EQ, - ACTIONS(11099), 1, + ACTIONS(11015), 1, anon_sym_COLON, - STATE(5152), 1, + STATE(3869), 1, + sym_function_body, + STATE(3874), 1, sym__block, - STATE(5175), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212235] = 6, + ACTIONS(10573), 1, + anon_sym_EQ, + ACTIONS(10575), 1, + anon_sym_LBRACE, + ACTIONS(11017), 1, + anon_sym_COLON, + STATE(9222), 1, + sym__block, + STATE(9273), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212065] = 6, - ACTIONS(8098), 1, + [212255] = 6, + ACTIONS(4445), 1, + anon_sym_while, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(9824), 1, + sym__block, + STATE(9871), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212275] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10699), 1, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(11101), 1, + ACTIONS(11019), 1, anon_sym_COLON, - STATE(4832), 1, + STATE(5111), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212085] = 6, - ACTIONS(4141), 1, + [212295] = 6, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(10973), 1, anon_sym_EQ, - ACTIONS(11103), 1, + ACTIONS(11021), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(3410), 1, + sym_function_body, + STATE(3524), 1, sym__block, - STATE(1129), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212315] = 6, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(11023), 1, + anon_sym_COLON, + ACTIONS(11025), 1, + anon_sym_EQ, + STATE(5185), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212105] = 6, - ACTIONS(4141), 1, + [212335] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(10933), 1, anon_sym_EQ, - ACTIONS(11105), 1, + ACTIONS(11027), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(3874), 1, sym__block, - STATE(1111), 1, + STATE(3971), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212125] = 6, - ACTIONS(8098), 1, + [212355] = 5, + ACTIONS(11029), 1, + anon_sym_catch, + ACTIONS(11031), 1, + anon_sym_finally, + STATE(3073), 1, + sym_finally_block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + STATE(2761), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [212373] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10699), 1, + ACTIONS(10933), 1, anon_sym_EQ, - ACTIONS(11107), 1, + ACTIONS(11033), 1, anon_sym_COLON, - STATE(4726), 1, + STATE(3855), 1, sym_function_body, - STATE(4871), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212145] = 6, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, - anon_sym_LBRACE, - ACTIONS(11109), 1, + [212393] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4565), 5, + sym__automatic_semicolon, anon_sym_COLON, - STATE(5368), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_where, + [212405] = 6, + ACTIONS(11035), 1, + anon_sym_DOT, + ACTIONS(11037), 1, + anon_sym_as, + ACTIONS(11039), 1, + sym__automatic_semicolon, + STATE(9229), 1, + sym_import_alias, + STATE(9230), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212165] = 6, - ACTIONS(8098), 1, + [212425] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10699), 1, + ACTIONS(10943), 1, anon_sym_EQ, - ACTIONS(11111), 1, + ACTIONS(11041), 1, anon_sym_COLON, - STATE(4805), 1, + STATE(3869), 1, sym_function_body, - STATE(4871), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212185] = 6, - ACTIONS(4141), 1, + [212445] = 6, + ACTIONS(4262), 1, + anon_sym_while, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + STATE(9824), 1, + sym__block, + STATE(9883), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212465] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10865), 1, + sym_line_comment, + ACTIONS(10869), 1, + anon_sym_BSLASHu, + ACTIONS(10871), 1, + sym__escaped_identifier, + ACTIONS(11043), 1, + aux_sym_character_literal_token1, + STATE(9903), 1, + sym_character_escape_seq, + STATE(9990), 1, + sym__uni_character_literal, + [212487] = 6, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(11025), 1, anon_sym_EQ, - ACTIONS(11113), 1, + ACTIONS(11045), 1, anon_sym_COLON, - STATE(1043), 1, + STATE(5105), 1, sym_function_body, - STATE(1092), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212205] = 6, - ACTIONS(4301), 1, + [212507] = 6, + ACTIONS(4204), 1, anon_sym_while, - ACTIONS(8608), 1, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(8614), 1, + ACTIONS(8519), 1, anon_sym_where, - STATE(9068), 1, + STATE(8971), 1, sym_type_constraints, - STATE(10094), 1, + STATE(10025), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212225] = 4, - ACTIONS(10937), 1, - anon_sym_COMMA, - STATE(8483), 1, - aux_sym_type_constraints_repeat1, + [212527] = 6, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(11047), 1, + anon_sym_COLON, + ACTIONS(11049), 1, + anon_sym_EQ, + STATE(5185), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4373), 3, - anon_sym_EQ, + [212547] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4569), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_while, - [212241] = 6, - ACTIONS(8098), 1, + anon_sym_RBRACE, + anon_sym_where, + [212559] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11115), 1, + ACTIONS(11049), 1, + anon_sym_EQ, + ACTIONS(11051), 1, anon_sym_COLON, - ACTIONS(11117), 1, + STATE(5105), 1, + sym_function_body, + STATE(5234), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212579] = 6, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(11049), 1, anon_sym_EQ, - STATE(4739), 1, + ACTIONS(11053), 1, + anon_sym_COLON, + STATE(5094), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212261] = 6, - ACTIONS(8098), 1, + [212599] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11117), 1, + ACTIONS(11049), 1, anon_sym_EQ, - ACTIONS(11119), 1, + ACTIONS(11055), 1, anon_sym_COLON, - STATE(4832), 1, + STATE(5111), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212281] = 6, - ACTIONS(8098), 1, + [212619] = 6, + ACTIONS(4422), 1, + anon_sym_while, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8601), 1, + anon_sym_LBRACE, + STATE(8894), 1, + sym_type_constraints, + STATE(9887), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212639] = 6, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, + anon_sym_LBRACE, + ACTIONS(11057), 1, + anon_sym_COLON, + STATE(9824), 1, + sym__block, + STATE(10004), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [212659] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11117), 1, + ACTIONS(11025), 1, anon_sym_EQ, - ACTIONS(11121), 1, + ACTIONS(11059), 1, anon_sym_COLON, - STATE(4726), 1, + STATE(5094), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212301] = 5, - ACTIONS(11123), 1, + [212679] = 5, + ACTIONS(11061), 1, anon_sym_catch, - ACTIONS(11125), 1, + ACTIONS(11063), 1, anon_sym_finally, - STATE(3452), 1, + STATE(3940), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(2875), 2, + STATE(3072), 2, sym_catch_block, aux_sym_try_expression_repeat1, - [212319] = 6, - ACTIONS(6522), 1, - anon_sym_LBRACE, - ACTIONS(11127), 1, - anon_sym_COLON, - ACTIONS(11129), 1, - anon_sym_EQ, - STATE(3548), 1, - sym_function_body, - STATE(3577), 1, - sym__block, + [212697] = 4, + ACTIONS(11065), 1, + anon_sym_COMMA, + STATE(8589), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212339] = 5, - ACTIONS(8549), 1, + ACTIONS(4375), 3, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(11131), 1, - anon_sym_COLON, - STATE(9348), 1, - sym_class_body, + anon_sym_while, + [212713] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4379), 2, + ACTIONS(4882), 5, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_RBRACE, - [212357] = 6, - ACTIONS(6522), 1, + anon_sym_COMMA, + anon_sym_where, + [212725] = 6, + ACTIONS(4457), 1, + anon_sym_while, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(11129), 1, - anon_sym_EQ, - ACTIONS(11133), 1, - anon_sym_COLON, - STATE(3525), 1, - sym_function_body, - STATE(3577), 1, - sym__block, + ACTIONS(8519), 1, + anon_sym_where, + STATE(9025), 1, + sym_type_constraints, + STATE(9998), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212377] = 6, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(11117), 1, - anon_sym_EQ, - ACTIONS(11135), 1, - anon_sym_COLON, - STATE(4805), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + [212745] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212397] = 6, - ACTIONS(6522), 1, - anon_sym_LBRACE, - ACTIONS(11129), 1, + ACTIONS(4523), 5, + anon_sym_COLON, anon_sym_EQ, - ACTIONS(11137), 1, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [212757] = 5, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(11068), 1, anon_sym_COLON, - STATE(3515), 1, - sym_function_body, - STATE(3577), 1, - sym__block, + STATE(9291), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212417] = 6, - ACTIONS(6522), 1, + ACTIONS(4355), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [212775] = 6, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11129), 1, + ACTIONS(11025), 1, anon_sym_EQ, - ACTIONS(11139), 1, + ACTIONS(11070), 1, anon_sym_COLON, - STATE(3494), 1, + STATE(5111), 1, sym_function_body, - STATE(3577), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212437] = 6, - ACTIONS(4266), 1, + [212795] = 6, + ACTIONS(4337), 1, anon_sym_while, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(9777), 1, - sym_function_body, - STATE(9966), 1, - sym__block, + STATE(8956), 1, + sym_type_constraints, + STATE(9994), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212457] = 6, - ACTIONS(4158), 1, + [212815] = 6, + ACTIONS(4232), 1, anon_sym_while, - ACTIONS(10699), 1, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(9524), 1, - sym_function_body, - STATE(9966), 1, + STATE(9824), 1, sym__block, + STATE(9889), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212477] = 6, - ACTIONS(6522), 1, + [212835] = 4, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(11141), 1, - anon_sym_COLON, - ACTIONS(11143), 1, - anon_sym_EQ, - STATE(3548), 1, - sym_function_body, - STATE(3577), 1, - sym__block, + STATE(8955), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212497] = 4, - ACTIONS(11145), 1, - anon_sym_DOT, - STATE(8343), 1, - aux_sym_user_type_repeat1, + ACTIONS(10691), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [212851] = 4, + ACTIONS(11072), 1, + anon_sym_COMMA, + STATE(8598), 1, + aux_sym__delegation_specifiers_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4164), 3, - anon_sym_AMP, - sym__quest, - anon_sym_in, - [212513] = 6, - ACTIONS(6522), 1, + ACTIONS(4613), 3, anon_sym_LBRACE, - ACTIONS(11143), 1, + anon_sym_where, + anon_sym_while, + [212867] = 6, + ACTIONS(4099), 1, + anon_sym_while, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(11147), 1, - anon_sym_COLON, - STATE(3525), 1, - sym_function_body, - STATE(3577), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [212533] = 6, - ACTIONS(6522), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - ACTIONS(11143), 1, - anon_sym_EQ, - ACTIONS(11149), 1, - anon_sym_COLON, - STATE(3515), 1, - sym_function_body, - STATE(3577), 1, + STATE(9824), 1, sym__block, + STATE(9981), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212553] = 6, - ACTIONS(4141), 1, + [212887] = 6, + ACTIONS(4276), 1, + anon_sym_while, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(11151), 1, - anon_sym_COLON, - ACTIONS(11153), 1, - anon_sym_EQ, - STATE(1092), 1, - sym__block, - STATE(1111), 1, - sym_function_body, + ACTIONS(8519), 1, + anon_sym_where, + STATE(9034), 1, + sym_type_constraints, + STATE(10056), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212573] = 5, - ACTIONS(11155), 1, + [212907] = 5, + ACTIONS(11075), 1, anon_sym_catch, - ACTIONS(11157), 1, + ACTIONS(11077), 1, anon_sym_finally, - STATE(5133), 1, + STATE(1069), 1, sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(4597), 2, + STATE(802), 2, sym_catch_block, aux_sym_try_expression_repeat1, - [212591] = 6, - ACTIONS(6522), 1, - anon_sym_LBRACE, - ACTIONS(11143), 1, - anon_sym_EQ, - ACTIONS(11159), 1, - anon_sym_COLON, - STATE(3494), 1, - sym_function_body, - STATE(3577), 1, - sym__block, + [212925] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212611] = 6, - ACTIONS(6427), 1, + ACTIONS(4870), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(11161), 1, - anon_sym_COLON, - STATE(3072), 1, - sym__block, - STATE(3195), 1, - sym_function_body, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [212937] = 6, + ACTIONS(4449), 1, + anon_sym_while, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8601), 1, + anon_sym_LBRACE, + STATE(8964), 1, + sym_type_constraints, + STATE(9898), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212631] = 6, - ACTIONS(8201), 1, - anon_sym_LBRACE, - ACTIONS(10911), 1, - anon_sym_EQ, - ACTIONS(11163), 1, - anon_sym_COLON, - STATE(5122), 1, - sym_function_body, - STATE(5152), 1, - sym__block, + [212957] = 4, + ACTIONS(10961), 1, + anon_sym_COMMA, + STATE(8535), 1, + aux_sym_type_constraints_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212651] = 2, + ACTIONS(4396), 3, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_while, + [212973] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 5, + ACTIONS(4866), 5, sym__automatic_semicolon, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_where, - [212663] = 6, - ACTIONS(6427), 1, + [212985] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(8175), 1, + ACTIONS(10861), 1, anon_sym_EQ, - ACTIONS(11165), 1, + ACTIONS(11079), 1, anon_sym_COLON, - STATE(3072), 1, + STATE(1109), 1, sym__block, - STATE(3233), 1, + STATE(1168), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212683] = 6, - ACTIONS(6427), 1, - anon_sym_LBRACE, - ACTIONS(11167), 1, - anon_sym_COLON, - ACTIONS(11169), 1, - anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3195), 1, - sym_function_body, + [213005] = 7, + ACTIONS(3), 1, + sym_multiline_comment, + ACTIONS(10865), 1, + sym_line_comment, + ACTIONS(10869), 1, + anon_sym_BSLASHu, + ACTIONS(10871), 1, + sym__escaped_identifier, + ACTIONS(11081), 1, + aux_sym_character_literal_token1, + STATE(9505), 1, + sym_character_escape_seq, + STATE(9990), 1, + sym__uni_character_literal, + [213027] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212703] = 6, - ACTIONS(4262), 1, + ACTIONS(4878), 5, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [213039] = 6, + ACTIONS(4337), 1, anon_sym_while, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(8513), 1, anon_sym_LBRACE, - STATE(9731), 1, - sym_function_body, - STATE(9966), 1, - sym__block, + ACTIONS(8519), 1, + anon_sym_where, + STATE(8947), 1, + sym_type_constraints, + STATE(9994), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212723] = 6, - ACTIONS(6427), 1, + [213059] = 6, + ACTIONS(4154), 1, + anon_sym_while, + ACTIONS(8519), 1, + anon_sym_where, + ACTIONS(8601), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, - anon_sym_EQ, - ACTIONS(11171), 1, - anon_sym_COLON, - STATE(3072), 1, - sym__block, - STATE(3241), 1, - sym_function_body, + STATE(8942), 1, + sym_type_constraints, + STATE(9936), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212743] = 6, - ACTIONS(6427), 1, - anon_sym_LBRACE, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(11173), 1, - anon_sym_COLON, - STATE(3072), 1, - sym__block, - STATE(3245), 1, - sym_function_body, + [213079] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212763] = 6, - ACTIONS(6522), 1, + ACTIONS(4874), 5, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(10935), 1, - anon_sym_EQ, - ACTIONS(11175), 1, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_where, + [213091] = 6, + ACTIONS(6648), 1, + anon_sym_LBRACE, + ACTIONS(11083), 1, anon_sym_COLON, - STATE(3525), 1, + ACTIONS(11085), 1, + anon_sym_EQ, + STATE(3869), 1, sym_function_body, - STATE(3577), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212783] = 6, - ACTIONS(6427), 1, - anon_sym_LBRACE, - ACTIONS(11177), 1, - anon_sym_COLON, - ACTIONS(11179), 1, - anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3241), 1, - sym_function_body, + [213111] = 5, + ACTIONS(11087), 1, + anon_sym_catch, + ACTIONS(11089), 1, + anon_sym_finally, + STATE(5232), 1, + sym_finally_block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212803] = 6, - ACTIONS(4454), 1, + STATE(4614), 2, + sym_catch_block, + aux_sym_try_expression_repeat1, + [213129] = 6, + ACTIONS(4361), 1, anon_sym_while, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + ACTIONS(8513), 1, anon_sym_LBRACE, - STATE(9864), 1, - sym_function_body, - STATE(9966), 1, - sym__block, + ACTIONS(8519), 1, + anon_sym_where, + STATE(8908), 1, + sym_type_constraints, + STATE(9921), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212823] = 6, - ACTIONS(6522), 1, - anon_sym_LBRACE, - ACTIONS(10935), 1, - anon_sym_EQ, - ACTIONS(11181), 1, - anon_sym_COLON, - STATE(3548), 1, - sym_function_body, - STATE(3577), 1, - sym__block, + [213149] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212843] = 6, - ACTIONS(4141), 1, + ACTIONS(4605), 5, + sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11153), 1, + anon_sym_RBRACE, + anon_sym_where, + [213161] = 6, + ACTIONS(10573), 1, anon_sym_EQ, - ACTIONS(11183), 1, + ACTIONS(10575), 1, + anon_sym_LBRACE, + ACTIONS(11091), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(9222), 1, sym__block, - STATE(1172), 1, + STATE(9251), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212863] = 6, - ACTIONS(6427), 1, + [213181] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(8175), 1, + ACTIONS(10933), 1, anon_sym_EQ, - ACTIONS(11185), 1, + ACTIONS(11093), 1, anon_sym_COLON, - STATE(3072), 1, + STATE(3874), 1, sym__block, - STATE(3241), 1, + STATE(3981), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212883] = 6, - ACTIONS(4141), 1, + [213201] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11153), 1, + ACTIONS(11085), 1, anon_sym_EQ, - ACTIONS(11187), 1, + ACTIONS(11095), 1, anon_sym_COLON, - STATE(1092), 1, + STATE(3874), 1, sym__block, - STATE(1129), 1, + STATE(3981), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212903] = 7, - ACTIONS(3), 1, - sym_multiline_comment, - ACTIONS(10919), 1, - sym_line_comment, - ACTIONS(10923), 1, - anon_sym_BSLASHu, - ACTIONS(10925), 1, - sym__escaped_identifier, - ACTIONS(11189), 1, - aux_sym_character_literal_token1, - STATE(9672), 1, - sym_character_escape_seq, - STATE(9834), 1, - sym__uni_character_literal, - [212925] = 6, - ACTIONS(4141), 1, - anon_sym_LBRACE, - ACTIONS(11153), 1, - anon_sym_EQ, - ACTIONS(11191), 1, - anon_sym_COLON, - STATE(1043), 1, - sym_function_body, - STATE(1092), 1, - sym__block, + [213221] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212945] = 6, - ACTIONS(6522), 1, + ACTIONS(4511), 5, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(10935), 1, + anon_sym_where, + anon_sym_while, + [213233] = 6, + ACTIONS(6648), 1, + anon_sym_LBRACE, + ACTIONS(11085), 1, anon_sym_EQ, - ACTIONS(11193), 1, + ACTIONS(11097), 1, anon_sym_COLON, - STATE(3515), 1, - sym_function_body, - STATE(3577), 1, + STATE(3874), 1, sym__block, + STATE(3971), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212965] = 2, + [213253] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4639), 5, + ACTIONS(4597), 5, sym__automatic_semicolon, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_where, - [212977] = 6, - ACTIONS(6427), 1, + [213265] = 6, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, + ACTIONS(11085), 1, anon_sym_EQ, - ACTIONS(11195), 1, + ACTIONS(11099), 1, anon_sym_COLON, - STATE(3072), 1, - sym__block, - STATE(3245), 1, + STATE(3855), 1, sym_function_body, + STATE(3874), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [212997] = 6, - ACTIONS(6427), 1, + [213285] = 6, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11179), 1, + ACTIONS(10861), 1, anon_sym_EQ, - ACTIONS(11197), 1, + ACTIONS(11101), 1, anon_sym_COLON, - STATE(3072), 1, + STATE(1109), 1, sym__block, - STATE(3195), 1, + STATE(1129), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213017] = 6, - ACTIONS(6427), 1, + [213305] = 4, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, - anon_sym_EQ, - ACTIONS(11199), 1, - anon_sym_COLON, - STATE(3072), 1, - sym__block, - STATE(3233), 1, - sym_function_body, + STATE(8906), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213037] = 6, - ACTIONS(4270), 1, + ACTIONS(11103), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [213321] = 6, + ACTIONS(4361), 1, anon_sym_while, - ACTIONS(8614), 1, + ACTIONS(8519), 1, anon_sym_where, - ACTIONS(8620), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(8953), 1, + STATE(8919), 1, sym_type_constraints, - STATE(9463), 1, + STATE(9921), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213057] = 6, - ACTIONS(4152), 1, + [213341] = 6, + ACTIONS(4144), 1, anon_sym_while, - ACTIONS(10699), 1, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10701), 1, - anon_sym_LBRACE, - STATE(9721), 1, - sym_function_body, - STATE(9966), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [213077] = 6, - ACTIONS(6427), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - ACTIONS(11179), 1, - anon_sym_EQ, - ACTIONS(11201), 1, - anon_sym_COLON, - STATE(3072), 1, + STATE(9824), 1, sym__block, - STATE(3233), 1, + STATE(9914), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213097] = 2, + [213361] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4760), 5, - sym__automatic_semicolon, + ACTIONS(4565), 4, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_where, - [213109] = 6, - ACTIONS(6427), 1, - anon_sym_LBRACE, - ACTIONS(11179), 1, - anon_sym_EQ, - ACTIONS(11203), 1, - anon_sym_COLON, - STATE(3072), 1, - sym__block, - STATE(3245), 1, - sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [213129] = 6, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + anon_sym_while, + [213372] = 4, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(11205), 1, - anon_sym_COLON, - STATE(5390), 1, - sym_function_body, - STATE(5399), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [213149] = 2, + STATE(9254), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4495), 4, - anon_sym_LBRACE, + ACTIONS(4204), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213387] = 4, + ACTIONS(11107), 1, anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [213160] = 5, - ACTIONS(6427), 1, - anon_sym_LBRACE, - ACTIONS(11067), 1, - anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3188), 1, - sym_function_body, + STATE(8629), 1, + aux_sym__enum_entries_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213177] = 5, - ACTIONS(6427), 1, + ACTIONS(11105), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [213402] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(8175), 1, + ACTIONS(10861), 1, anon_sym_EQ, - STATE(3072), 1, + STATE(1109), 1, sym__block, - STATE(3149), 1, + STATE(1185), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213194] = 4, - ACTIONS(8498), 1, + [213419] = 4, + ACTIONS(8438), 1, anon_sym_LBRACE, - STATE(9158), 1, - sym_enum_class_body, + STATE(9440), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4718), 2, + ACTIONS(4609), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213209] = 5, - ACTIONS(6522), 1, + [213434] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10935), 1, + ACTIONS(11085), 1, anon_sym_EQ, - STATE(3478), 1, - sym_function_body, - STATE(3577), 1, + STATE(3874), 1, sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [213226] = 4, - ACTIONS(11207), 1, - anon_sym_import, - ACTIONS(11210), 1, - sym__import_list_delimiter, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - STATE(8630), 2, - sym_import_header, - aux_sym_import_list_repeat1, - [213241] = 5, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10891), 1, - anon_sym_EQ, - STATE(3837), 1, + STATE(3916), 1, sym_function_body, - STATE(3975), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213258] = 2, + [213451] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4615), 4, + ACTIONS(4605), 4, anon_sym_COLON, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [213269] = 2, + [213462] = 4, + ACTIONS(8438), 1, + anon_sym_LBRACE, + STATE(9252), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4876), 4, + ACTIONS(4593), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_while, - [213280] = 5, - ACTIONS(6427), 1, + [213477] = 4, + ACTIONS(8448), 1, anon_sym_LBRACE, - ACTIONS(8175), 1, - anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3188), 1, - sym_function_body, + STATE(9250), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213297] = 3, - ACTIONS(11214), 1, - anon_sym_DOLLAR, + ACTIONS(3240), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213492] = 5, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(9824), 1, + sym__block, + STATE(9932), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11212), 3, - sym__string_end, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - [213310] = 5, - ACTIONS(6522), 1, + [213509] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10935), 1, + ACTIONS(10947), 1, anon_sym_EQ, - STATE(3468), 1, - sym_function_body, - STATE(3577), 1, + STATE(3227), 1, sym__block, + STATE(3265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213327] = 5, - ACTIONS(6427), 1, + [213526] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11179), 1, + ACTIONS(11085), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3269), 1, + STATE(3849), 1, sym_function_body, + STATE(3874), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213344] = 5, - ACTIONS(4141), 1, - anon_sym_LBRACE, - ACTIONS(11153), 1, + [213543] = 5, + ACTIONS(10573), 1, anon_sym_EQ, - STATE(1092), 1, + ACTIONS(10575), 1, + anon_sym_LBRACE, + STATE(9222), 1, sym__block, - STATE(1182), 1, + STATE(9437), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213361] = 4, - ACTIONS(8498), 1, + [213560] = 4, + ACTIONS(8448), 1, anon_sym_LBRACE, - STATE(9407), 1, + STATE(9264), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, + ACTIONS(4337), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213376] = 5, - ACTIONS(6522), 1, + [213575] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10935), 1, + ACTIONS(11085), 1, anon_sym_EQ, - STATE(3482), 1, - sym_function_body, - STATE(3577), 1, + STATE(3874), 1, sym__block, + STATE(3970), 1, + sym_function_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [213592] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213393] = 5, - ACTIONS(6759), 1, + ACTIONS(4501), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10891), 1, + anon_sym_where, + anon_sym_while, + [213603] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4505), 4, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_while, + [213614] = 5, + ACTIONS(8040), 1, + anon_sym_LBRACE, + ACTIONS(10787), 1, anon_sym_EQ, - STATE(3975), 1, - sym__block, - STATE(4027), 1, + STATE(4707), 1, sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213410] = 5, - ACTIONS(10675), 1, + [213631] = 5, + ACTIONS(10603), 1, anon_sym_EQ, - ACTIONS(10677), 1, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(9242), 1, + STATE(9824), 1, sym__block, - STATE(9354), 1, + STATE(9966), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213427] = 5, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10891), 1, + [213648] = 4, + ACTIONS(11110), 1, + anon_sym_COMMA, + STATE(8629), 1, + aux_sym__enum_entries_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(8877), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [213663] = 4, + ACTIONS(11112), 1, + anon_sym_LPAREN, + STATE(9299), 1, + sym_value_arguments, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7048), 2, + anon_sym_AT, + anon_sym_val, + [213678] = 5, + ACTIONS(10573), 1, anon_sym_EQ, - STATE(3843), 1, + ACTIONS(10575), 1, + anon_sym_LBRACE, + STATE(9220), 1, sym_function_body, - STATE(3975), 1, + STATE(9222), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213444] = 5, - ACTIONS(4141), 1, - anon_sym_LBRACE, - ACTIONS(11153), 1, + [213695] = 5, + ACTIONS(10603), 1, anon_sym_EQ, - STATE(1092), 1, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(9824), 1, sym__block, - STATE(1136), 1, + STATE(9896), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213461] = 5, - ACTIONS(6427), 1, + [213712] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(8175), 1, + ACTIONS(11085), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3269), 1, + STATE(3848), 1, sym_function_body, + STATE(3874), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213478] = 5, - ACTIONS(4141), 1, - anon_sym_LBRACE, - ACTIONS(11153), 1, + [213729] = 5, + ACTIONS(8135), 1, anon_sym_EQ, - STATE(1092), 1, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5344), 1, sym__block, - STATE(1108), 1, + STATE(5375), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213495] = 5, - ACTIONS(6759), 1, + [213746] = 4, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(10891), 1, - anon_sym_EQ, - STATE(3975), 1, - sym__block, - STATE(4020), 1, - sym_function_body, + STATE(9451), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213512] = 4, - ACTIONS(8498), 1, + ACTIONS(4361), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [213761] = 4, + ACTIONS(8448), 1, anon_sym_LBRACE, - STATE(9341), 1, + STATE(9442), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4202), 2, + ACTIONS(4449), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213527] = 5, - ACTIONS(4141), 1, + [213776] = 5, + ACTIONS(10575), 1, anon_sym_LBRACE, - ACTIONS(11153), 1, - anon_sym_EQ, - STATE(1015), 1, - sym_function_body, - STATE(1092), 1, + ACTIONS(11114), 1, + anon_sym_COLON, + ACTIONS(11116), 1, + sym__automatic_semicolon, + STATE(9846), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213544] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4918), 4, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_while, - [213555] = 5, - ACTIONS(6427), 1, + [213793] = 5, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, - anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3269), 1, - sym_function_body, + ACTIONS(11118), 1, + anon_sym_COLON, + ACTIONS(11120), 1, + sym__automatic_semicolon, + STATE(9844), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213572] = 4, - ACTIONS(8549), 1, + [213810] = 4, + ACTIONS(8448), 1, anon_sym_LBRACE, - STATE(9426), 1, - sym_class_body, + STATE(9425), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(4154), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213587] = 5, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10899), 1, + [213825] = 5, + ACTIONS(10573), 1, anon_sym_EQ, - STATE(3837), 1, - sym_function_body, - STATE(3975), 1, + ACTIONS(10575), 1, + anon_sym_LBRACE, + STATE(9222), 1, sym__block, + STATE(9441), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213604] = 4, - ACTIONS(8498), 1, + [213842] = 5, + ACTIONS(4327), 1, + anon_sym_while, + ACTIONS(8513), 1, anon_sym_LBRACE, - STATE(9097), 1, - sym_enum_class_body, + ACTIONS(11122), 1, + anon_sym_COLON, + STATE(10065), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4462), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213619] = 4, - ACTIONS(8549), 1, - anon_sym_LBRACE, - STATE(9253), 1, - sym_class_body, + [213859] = 3, + ACTIONS(4093), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4756), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213634] = 4, - ACTIONS(8549), 1, + ACTIONS(4095), 3, + sym__string_end, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + [213872] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4613), 4, anon_sym_LBRACE, - STATE(9437), 1, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [213883] = 4, + ACTIONS(8438), 1, + anon_sym_LBRACE, + STATE(9264), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4670), 2, + ACTIONS(4337), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213649] = 2, + [213898] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4760), 4, + ACTIONS(4597), 4, anon_sym_COLON, anon_sym_LBRACE, anon_sym_where, anon_sym_while, - [213660] = 5, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, - anon_sym_LBRACE, - STATE(9504), 1, - sym_function_body, - STATE(9966), 1, - sym__block, + [213909] = 3, + ACTIONS(3938), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213677] = 4, - ACTIONS(8549), 1, + ACTIONS(3943), 3, + sym__string_end, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + [213922] = 4, + ACTIONS(8448), 1, anon_sym_LBRACE, - STATE(9369), 1, - sym_class_body, + STATE(9095), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 2, + ACTIONS(4620), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213692] = 4, - ACTIONS(8549), 1, + [213937] = 4, + ACTIONS(8448), 1, anon_sym_LBRACE, - STATE(9177), 1, - sym_class_body, + STATE(9254), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 2, + ACTIONS(4204), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [213707] = 5, - ACTIONS(4379), 1, - anon_sym_while, - ACTIONS(8608), 1, + [213952] = 4, + ACTIONS(11126), 1, + anon_sym_COMMA, + STATE(8646), 1, + aux_sym__enum_entries_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11124), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + [213967] = 5, + ACTIONS(10573), 1, + anon_sym_EQ, + ACTIONS(10575), 1, anon_sym_LBRACE, - ACTIONS(11216), 1, - anon_sym_COLON, - STATE(9605), 1, - sym_class_body, + STATE(9222), 1, + sym__block, + STATE(9303), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213724] = 5, - ACTIONS(6522), 1, + [213984] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11143), 1, + ACTIONS(11049), 1, anon_sym_EQ, - STATE(3468), 1, + STATE(5212), 1, sym_function_body, - STATE(3577), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213741] = 5, - ACTIONS(6522), 1, + [214001] = 5, + ACTIONS(11128), 1, + anon_sym_RBRACE, + ACTIONS(11130), 1, + sym__automatic_semicolon, + STATE(257), 1, + sym__semi, + STATE(8713), 1, + aux_sym_statements_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214018] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11143), 1, + ACTIONS(11025), 1, anon_sym_EQ, - STATE(3478), 1, + STATE(5212), 1, sym_function_body, - STATE(3577), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213758] = 5, - ACTIONS(6427), 1, + [214035] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11179), 1, + ACTIONS(11049), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3188), 1, + STATE(5162), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213775] = 5, - ACTIONS(6427), 1, + [214052] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, + ACTIONS(10849), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3188), 1, + STATE(3185), 1, sym_function_body, + STATE(3227), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213792] = 4, - ACTIONS(8549), 1, + [214069] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(9443), 1, - sym_class_body, + ACTIONS(11049), 1, + anon_sym_EQ, + STATE(5152), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [213807] = 5, - ACTIONS(8201), 1, + [214086] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10885), 1, + ACTIONS(11049), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(5139), 1, sym_function_body, - STATE(5152), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213824] = 5, - ACTIONS(8201), 1, + [214103] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10885), 1, + ACTIONS(10973), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5200), 1, + STATE(3373), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213841] = 5, - ACTIONS(8201), 1, + [214120] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10885), 1, + ACTIONS(10943), 1, anon_sym_EQ, - STATE(5066), 1, + STATE(3848), 1, sym_function_body, - STATE(5152), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213858] = 5, - ACTIONS(6427), 1, + [214137] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11179), 1, + ACTIONS(10973), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3149), 1, + STATE(3381), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213875] = 2, + [214154] = 4, + ACTIONS(8438), 1, + anon_sym_LBRACE, + STATE(9269), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4603), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [213886] = 5, - ACTIONS(1642), 1, - anon_sym_RBRACE, - ACTIONS(11218), 1, + ACTIONS(4414), 2, sym__automatic_semicolon, - STATE(258), 1, - sym__semi, - STATE(8698), 1, - aux_sym_statements_repeat1, + anon_sym_RBRACE, + [214169] = 5, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(11025), 1, + anon_sym_EQ, + STATE(5162), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213903] = 5, - ACTIONS(8201), 1, + [214186] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10885), 1, + ACTIONS(10973), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5188), 1, + STATE(3392), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213920] = 5, - ACTIONS(10677), 1, + [214203] = 5, + ACTIONS(10603), 1, + anon_sym_EQ, + ACTIONS(10605), 1, anon_sym_LBRACE, - ACTIONS(11220), 1, - anon_sym_COLON, - ACTIONS(11222), 1, - sym__automatic_semicolon, - STATE(9490), 1, + STATE(9824), 1, sym__block, + STATE(9891), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213937] = 4, - ACTIONS(11224), 1, - anon_sym_LPAREN, - STATE(9412), 1, - sym_value_arguments, + [214220] = 4, + ACTIONS(11132), 1, + anon_sym_import, + ACTIONS(11135), 1, + sym__import_list_delimiter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7096), 2, - anon_sym_AT, - anon_sym_val, - [213952] = 5, - ACTIONS(8201), 1, + STATE(8682), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [214235] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10911), 1, + ACTIONS(10943), 1, anon_sym_EQ, - STATE(5152), 1, + STATE(3874), 1, sym__block, - STATE(5188), 1, + STATE(3970), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [213969] = 5, - ACTIONS(6427), 1, + [214252] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11179), 1, + ACTIONS(10943), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3119), 1, + STATE(3849), 1, sym_function_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [213986] = 5, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10899), 1, - anon_sym_EQ, - STATE(3975), 1, + STATE(3874), 1, sym__block, - STATE(4020), 1, - sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214003] = 4, - ACTIONS(11228), 1, - anon_sym_COMMA, - STATE(8778), 1, - aux_sym__enum_entries_repeat1, + [214269] = 3, + ACTIONS(11139), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11226), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [214018] = 5, - ACTIONS(6522), 1, + ACTIONS(11137), 3, + sym__string_end, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + [214282] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11143), 1, - anon_sym_EQ, - STATE(3482), 1, - sym_function_body, - STATE(3577), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [214035] = 5, - ACTIONS(10699), 1, + ACTIONS(10999), 1, anon_sym_EQ, - ACTIONS(10701), 1, - anon_sym_LBRACE, - STATE(9867), 1, + STATE(3848), 1, sym_function_body, - STATE(9966), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214052] = 5, - ACTIONS(6522), 1, + [214299] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11143), 1, + ACTIONS(10999), 1, anon_sym_EQ, - STATE(3502), 1, - sym_function_body, - STATE(3577), 1, + STATE(3874), 1, sym__block, + STATE(3970), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214069] = 5, - ACTIONS(6522), 1, + [214316] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10935), 1, + ACTIONS(10999), 1, anon_sym_EQ, - STATE(3502), 1, + STATE(3849), 1, sym_function_body, - STATE(3577), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214086] = 4, - ACTIONS(8498), 1, + [214333] = 5, + ACTIONS(8438), 1, anon_sym_LBRACE, - STATE(9356), 1, - sym_enum_class_body, + ACTIONS(11141), 1, + anon_sym_COLON, + ACTIONS(11143), 1, + sym__automatic_semicolon, + STATE(9813), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214101] = 5, - ACTIONS(4141), 1, + [214350] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(10999), 1, anon_sym_EQ, - STATE(1015), 1, - sym_function_body, - STATE(1092), 1, + STATE(3874), 1, sym__block, + STATE(3916), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214118] = 5, - ACTIONS(8098), 1, + [214367] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10699), 1, + ACTIONS(11005), 1, anon_sym_EQ, - STATE(4706), 1, + STATE(4707), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214135] = 5, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + [214384] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(9637), 1, + ACTIONS(11005), 1, + anon_sym_EQ, + STATE(4696), 1, sym_function_body, - STATE(9966), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214152] = 5, - ACTIONS(8201), 1, + [214401] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10911), 1, + ACTIONS(11005), 1, anon_sym_EQ, - STATE(5066), 1, + STATE(4756), 1, sym_function_body, - STATE(5152), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214169] = 4, - ACTIONS(11230), 1, - anon_sym_import, - ACTIONS(11232), 1, - sym__import_list_delimiter, + [214418] = 4, + ACTIONS(8438), 1, + anon_sym_LBRACE, + STATE(9095), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - STATE(8630), 2, - sym_import_header, - aux_sym_import_list_repeat1, - [214184] = 3, - ACTIONS(10681), 1, - anon_sym_AMP, + ACTIONS(4620), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214433] = 4, + ACTIONS(8448), 1, + anon_sym_LBRACE, + STATE(9429), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - sym__quest, - [214197] = 5, - ACTIONS(8098), 1, + ACTIONS(4422), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214448] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(11025), 1, anon_sym_EQ, - STATE(4706), 1, + STATE(5152), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214214] = 5, - ACTIONS(6427), 1, + [214465] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, + ACTIONS(11005), 1, anon_sym_EQ, - STATE(3072), 1, + STATE(4781), 1, sym__block, - STATE(3149), 1, + STATE(4813), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214231] = 5, - ACTIONS(4141), 1, + [214482] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10981), 1, anon_sym_EQ, - STATE(1015), 1, + STATE(3451), 1, sym_function_body, - STATE(1092), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214248] = 5, - ACTIONS(8098), 1, + [214499] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(11025), 1, anon_sym_EQ, - STATE(4745), 1, + STATE(5139), 1, sym_function_body, - STATE(4871), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214265] = 5, - ACTIONS(8098), 1, + [214516] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(10981), 1, anon_sym_EQ, - STATE(4725), 1, + STATE(3392), 1, sym_function_body, - STATE(4871), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214282] = 5, - ACTIONS(8098), 1, + [214533] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10947), 1, + ACTIONS(10981), 1, anon_sym_EQ, - STATE(4801), 1, + STATE(3381), 1, sym_function_body, - STATE(4871), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214299] = 5, - ACTIONS(4141), 1, + [214550] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10981), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(3373), 1, + sym_function_body, + STATE(3524), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214567] = 5, + ACTIONS(6648), 1, + anon_sym_LBRACE, + ACTIONS(10943), 1, + anon_sym_EQ, + STATE(3874), 1, sym__block, - STATE(1108), 1, + STATE(3916), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214316] = 5, - ACTIONS(11234), 1, - anon_sym_RBRACE, - ACTIONS(11236), 1, + [214584] = 4, + ACTIONS(8438), 1, + anon_sym_LBRACE, + STATE(9450), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3222), 2, sym__automatic_semicolon, - STATE(259), 1, - sym__semi, - STATE(8698), 1, - aux_sym_statements_repeat1, + anon_sym_RBRACE, + [214599] = 4, + ACTIONS(11145), 1, + anon_sym_import, + ACTIONS(11147), 1, + sym__import_list_delimiter, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214333] = 5, - ACTIONS(8098), 1, - anon_sym_LBRACE, - ACTIONS(11117), 1, - anon_sym_EQ, - STATE(4801), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + STATE(8682), 2, + sym_import_header, + aux_sym_import_list_repeat1, + [214614] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214350] = 5, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + ACTIONS(4569), 4, + anon_sym_COLON, anon_sym_LBRACE, - STATE(5321), 1, - sym_function_body, - STATE(5399), 1, - sym__block, + anon_sym_where, + anon_sym_while, + [214625] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214367] = 4, - ACTIONS(8498), 1, + ACTIONS(5001), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_while, + [214636] = 4, + ACTIONS(8448), 1, anon_sym_LBRACE, - STATE(9426), 1, + STATE(9451), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, + ACTIONS(4361), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214382] = 2, + [214651] = 4, + ACTIONS(8438), 1, + anon_sym_LBRACE, + STATE(9262), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4654), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [214393] = 4, - ACTIONS(8549), 1, + ACTIONS(4457), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214666] = 4, + ACTIONS(8438), 1, anon_sym_LBRACE, - STATE(9327), 1, + STATE(9364), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 2, + ACTIONS(3230), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [214408] = 5, - ACTIONS(8098), 1, + [214681] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11117), 1, + ACTIONS(10843), 1, anon_sym_EQ, - STATE(4725), 1, - sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, + STATE(4813), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214425] = 5, - ACTIONS(6522), 1, + [214698] = 4, + ACTIONS(8448), 1, anon_sym_LBRACE, - ACTIONS(11129), 1, - anon_sym_EQ, - STATE(3468), 1, - sym_function_body, - STATE(3577), 1, - sym__block, + STATE(9416), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214442] = 2, + ACTIONS(4632), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [214713] = 5, + ACTIONS(1574), 1, + anon_sym_RBRACE, + ACTIONS(11149), 1, + sym__automatic_semicolon, + STATE(256), 1, + sym__semi, + STATE(8757), 1, + aux_sym_statements_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4639), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_where, - anon_sym_while, - [214453] = 5, - ACTIONS(6522), 1, + [214730] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11129), 1, + ACTIONS(10933), 1, anon_sym_EQ, - STATE(3478), 1, - sym_function_body, - STATE(3577), 1, + STATE(3874), 1, sym__block, + STATE(3916), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214470] = 4, - ACTIONS(11241), 1, - anon_sym_COMMA, - STATE(8708), 1, - aux_sym__enum_entries_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11239), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [214485] = 5, - ACTIONS(6522), 1, + [214747] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11129), 1, + ACTIONS(10947), 1, anon_sym_EQ, - STATE(3482), 1, + STATE(3210), 1, sym_function_body, - STATE(3577), 1, + STATE(3227), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214502] = 5, - ACTIONS(8549), 1, + [214764] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11244), 1, - anon_sym_COLON, - ACTIONS(11246), 1, - sym__automatic_semicolon, - STATE(9685), 1, - sym_class_body, + ACTIONS(10787), 1, + anon_sym_EQ, + STATE(4696), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214519] = 5, - ACTIONS(10677), 1, + [214781] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11248), 1, - anon_sym_COLON, - ACTIONS(11250), 1, - sym__automatic_semicolon, - STATE(9686), 1, + ACTIONS(10573), 1, + anon_sym_EQ, + STATE(5212), 1, + sym_function_body, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214536] = 5, - ACTIONS(6522), 1, + [214798] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11129), 1, + ACTIONS(10947), 1, anon_sym_EQ, - STATE(3502), 1, + STATE(3185), 1, sym_function_body, - STATE(3577), 1, + STATE(3227), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214553] = 5, - ACTIONS(8098), 1, + [214815] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11117), 1, + ACTIONS(10947), 1, anon_sym_EQ, - STATE(4745), 1, + STATE(3125), 1, sym_function_body, - STATE(4871), 1, + STATE(3227), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214570] = 5, - ACTIONS(6427), 1, + [214832] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11169), 1, + ACTIONS(10787), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3119), 1, + STATE(4756), 1, sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214587] = 5, - ACTIONS(8201), 1, + [214849] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10911), 1, + ACTIONS(10787), 1, anon_sym_EQ, - STATE(5152), 1, + STATE(4781), 1, sym__block, - STATE(5200), 1, + STATE(4813), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214604] = 3, - ACTIONS(4122), 1, - anon_sym_DOLLAR, + [214866] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4124), 3, - sym__string_end, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - [214617] = 5, - ACTIONS(6522), 1, + ACTIONS(4349), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_where, + anon_sym_while, + [214877] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5043), 4, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_while, + [214888] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10573), 1, anon_sym_EQ, - STATE(3502), 1, + STATE(5162), 1, sym_function_body, - STATE(3577), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214634] = 4, - ACTIONS(8549), 1, + [214905] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(9386), 1, - sym_class_body, + ACTIONS(10843), 1, + anon_sym_EQ, + STATE(4756), 1, + sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4674), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [214649] = 5, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + [214922] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(5337), 1, + ACTIONS(10573), 1, + anon_sym_EQ, + STATE(5152), 1, sym_function_body, - STATE(5399), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214666] = 5, - ACTIONS(6522), 1, + [214939] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10573), 1, anon_sym_EQ, - STATE(3482), 1, + STATE(5139), 1, sym_function_body, - STATE(3577), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214683] = 5, - ACTIONS(8098), 1, + [214956] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11117), 1, + ACTIONS(10909), 1, anon_sym_EQ, - STATE(4706), 1, + STATE(1109), 1, + sym__block, + STATE(1185), 1, sym_function_body, - STATE(4871), 1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [214973] = 5, + ACTIONS(4085), 1, + anon_sym_LBRACE, + ACTIONS(10909), 1, + anon_sym_EQ, + STATE(1109), 1, sym__block, + STATE(1157), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214700] = 5, - ACTIONS(6522), 1, + [214990] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(3478), 1, + STATE(3451), 1, sym_function_body, - STATE(3577), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214717] = 5, - ACTIONS(4141), 1, + [215007] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10909), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(1109), 1, sym__block, - STATE(1136), 1, + STATE(1152), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214734] = 5, - ACTIONS(6522), 1, + [215024] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(3468), 1, + STATE(3392), 1, sym_function_body, - STATE(3577), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214751] = 5, - ACTIONS(10675), 1, - anon_sym_EQ, - ACTIONS(10677), 1, + [215041] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - STATE(9242), 1, - sym__block, - STATE(9323), 1, + ACTIONS(10903), 1, + anon_sym_EQ, + STATE(3381), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214768] = 5, - ACTIONS(4141), 1, + [215058] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(10843), 1, anon_sym_EQ, - STATE(1015), 1, + STATE(4696), 1, sym_function_body, - STATE(1092), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214785] = 5, - ACTIONS(8201), 1, + [215075] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10903), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(3373), 1, sym_function_body, - STATE(5152), 1, + STATE(3524), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [215092] = 5, + ACTIONS(4085), 1, + anon_sym_LBRACE, + ACTIONS(10909), 1, + anon_sym_EQ, + STATE(1109), 1, sym__block, + STATE(1126), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214802] = 5, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10974), 1, + [215109] = 5, + ACTIONS(8135), 1, anon_sym_EQ, - STATE(3837), 1, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5310), 1, sym_function_body, - STATE(3975), 1, + STATE(5344), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214819] = 5, - ACTIONS(6427), 1, + [215126] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11067), 1, + ACTIONS(10933), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3119), 1, + STATE(3849), 1, sym_function_body, + STATE(3874), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214836] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4722), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [214847] = 5, - ACTIONS(6427), 1, + [215143] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(11067), 1, + ACTIONS(10933), 1, anon_sym_EQ, - STATE(3072), 1, + STATE(3874), 1, sym__block, - STATE(3149), 1, + STATE(3970), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214864] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4726), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [214875] = 5, - ACTIONS(4141), 1, - anon_sym_LBRACE, - ACTIONS(11007), 1, + [215160] = 5, + ACTIONS(8135), 1, anon_sym_EQ, - STATE(1092), 1, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5344), 1, sym__block, - STATE(1108), 1, + STATE(5362), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214892] = 5, - ACTIONS(8098), 1, + [215177] = 4, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(10699), 1, - anon_sym_EQ, - STATE(4801), 1, - sym_function_body, - STATE(4871), 1, - sym__block, + STATE(9455), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214909] = 5, - ACTIONS(8098), 1, + ACTIONS(4276), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215192] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10699), 1, + ACTIONS(10603), 1, anon_sym_EQ, - STATE(4725), 1, + STATE(4707), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214926] = 5, - ACTIONS(10675), 1, - anon_sym_EQ, - ACTIONS(10677), 1, + [215209] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(9242), 1, - sym__block, - STATE(9294), 1, + ACTIONS(10843), 1, + anon_sym_EQ, + STATE(4707), 1, sym_function_body, + STATE(4781), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214943] = 5, - ACTIONS(8201), 1, + [215226] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10973), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5200), 1, + STATE(3451), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214960] = 5, - ACTIONS(8098), 1, + [215243] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(10699), 1, + ACTIONS(10603), 1, anon_sym_EQ, - STATE(4745), 1, + STATE(4696), 1, sym_function_body, - STATE(4871), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214977] = 5, - ACTIONS(4141), 1, + [215260] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(10861), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(1109), 1, sym__block, - STATE(1136), 1, + STATE(1126), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [214994] = 3, - ACTIONS(11254), 1, - anon_sym_DOLLAR, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11252), 3, - sym__string_end, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - [215007] = 5, - ACTIONS(6427), 1, + [215277] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(8175), 1, + ACTIONS(10861), 1, anon_sym_EQ, - STATE(3072), 1, + STATE(1109), 1, sym__block, - STATE(3119), 1, + STATE(1152), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215024] = 5, - ACTIONS(6759), 1, + [215294] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(10974), 1, + ACTIONS(10861), 1, anon_sym_EQ, - STATE(3975), 1, + STATE(1109), 1, sym__block, - STATE(4027), 1, + STATE(1157), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215041] = 5, - ACTIONS(4141), 1, + [215311] = 4, + ACTIONS(8448), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + STATE(9450), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(3222), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [215326] = 5, + ACTIONS(8135), 1, anon_sym_EQ, - STATE(1092), 1, + ACTIONS(8137), 1, + anon_sym_LBRACE, + STATE(5344), 1, sym__block, - STATE(1182), 1, + STATE(5346), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215058] = 5, - ACTIONS(8098), 1, + [215343] = 5, + ACTIONS(6648), 1, anon_sym_LBRACE, - ACTIONS(10994), 1, + ACTIONS(10933), 1, anon_sym_EQ, - STATE(4801), 1, + STATE(3848), 1, sym_function_body, - STATE(4871), 1, + STATE(3874), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215075] = 5, - ACTIONS(8201), 1, + [215360] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10603), 1, anon_sym_EQ, - STATE(5066), 1, + STATE(4756), 1, sym_function_body, - STATE(5152), 1, + STATE(4781), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215092] = 5, - ACTIONS(6759), 1, + [215377] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10974), 1, + ACTIONS(10849), 1, anon_sym_EQ, - STATE(3843), 1, - sym_function_body, - STATE(3975), 1, + STATE(3227), 1, sym__block, + STATE(3265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215109] = 5, - ACTIONS(4141), 1, + [215394] = 5, + ACTIONS(8040), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(10603), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(4781), 1, sym__block, - STATE(1136), 1, + STATE(4813), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215126] = 5, - ACTIONS(8201), 1, + [215411] = 3, + ACTIONS(10579), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4166), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + sym__quest, + [215424] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(10783), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5188), 1, + STATE(3125), 1, sym_function_body, + STATE(3227), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215143] = 2, + [215441] = 5, + ACTIONS(11151), 1, + anon_sym_RBRACE, + ACTIONS(11153), 1, + sym__automatic_semicolon, + STATE(259), 1, + sym__semi, + STATE(8757), 1, + aux_sym_statements_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4650), 4, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_while, - [215154] = 5, - ACTIONS(4141), 1, + [215458] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11007), 1, + ACTIONS(10849), 1, anon_sym_EQ, - STATE(1092), 1, - sym__block, - STATE(1182), 1, + STATE(3210), 1, sym_function_body, + STATE(3227), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215171] = 5, - ACTIONS(8201), 1, + [215475] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10675), 1, + ACTIONS(10783), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(3185), 1, sym_function_body, - STATE(5152), 1, + STATE(3227), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215188] = 5, - ACTIONS(8201), 1, + [215492] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10675), 1, + ACTIONS(10849), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5200), 1, + STATE(3125), 1, sym_function_body, + STATE(3227), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215205] = 5, - ACTIONS(6427), 1, + [215509] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(11067), 1, + ACTIONS(10835), 1, anon_sym_EQ, - STATE(3072), 1, - sym__block, - STATE(3269), 1, + STATE(3451), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215222] = 5, - ACTIONS(8201), 1, + [215526] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10675), 1, + ACTIONS(10835), 1, anon_sym_EQ, - STATE(5066), 1, + STATE(3392), 1, sym_function_body, - STATE(5152), 1, + STATE(3524), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215239] = 5, - ACTIONS(6759), 1, + [215543] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10974), 1, + ACTIONS(10835), 1, anon_sym_EQ, - STATE(3975), 1, - sym__block, - STATE(4020), 1, + STATE(3381), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215256] = 5, - ACTIONS(4141), 1, + [215560] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(10783), 1, anon_sym_EQ, - STATE(1092), 1, - sym__block, - STATE(1108), 1, + STATE(3210), 1, sym_function_body, + STATE(3227), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215273] = 5, - ACTIONS(8201), 1, + [215577] = 5, + ACTIONS(6488), 1, anon_sym_LBRACE, - ACTIONS(10675), 1, + ACTIONS(10835), 1, anon_sym_EQ, - STATE(5152), 1, - sym__block, - STATE(5188), 1, + STATE(3373), 1, sym_function_body, + STATE(3524), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215290] = 5, - ACTIONS(8549), 1, + [215594] = 5, + ACTIONS(4355), 1, + anon_sym_while, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(11256), 1, + ACTIONS(11156), 1, anon_sym_COLON, - ACTIONS(11258), 1, - sym__automatic_semicolon, - STATE(9954), 1, + STATE(9790), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215307] = 5, - ACTIONS(11260), 1, - anon_sym_RBRACE, - ACTIONS(11262), 1, - sym__automatic_semicolon, - STATE(257), 1, - sym__semi, - STATE(8672), 1, - aux_sym_statements_repeat1, + [215611] = 5, + ACTIONS(8171), 1, + anon_sym_LBRACE, + ACTIONS(10795), 1, + anon_sym_EQ, + STATE(5139), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215324] = 5, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + [215628] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(5351), 1, + ACTIONS(10795), 1, + anon_sym_EQ, + STATE(5152), 1, sym_function_body, - STATE(5399), 1, + STATE(5234), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215341] = 4, - ACTIONS(8498), 1, + [215645] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(9253), 1, - sym_enum_class_body, + ACTIONS(10795), 1, + anon_sym_EQ, + STATE(5162), 1, + sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4756), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215356] = 5, - ACTIONS(6759), 1, + [215662] = 5, + ACTIONS(8171), 1, anon_sym_LBRACE, - ACTIONS(11029), 1, + ACTIONS(10795), 1, anon_sym_EQ, - STATE(3975), 1, - sym__block, - STATE(4020), 1, + STATE(5212), 1, sym_function_body, + STATE(5234), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215373] = 3, - ACTIONS(3990), 1, - anon_sym_DOLLAR, + [215679] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3995), 3, - sym__string_end, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - [215386] = 5, - ACTIONS(6759), 1, + ACTIONS(4497), 4, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10899), 1, + anon_sym_where, + anon_sym_while, + [215690] = 5, + ACTIONS(4085), 1, + anon_sym_LBRACE, + ACTIONS(10809), 1, anon_sym_EQ, - STATE(3975), 1, + STATE(1109), 1, sym__block, - STATE(4027), 1, + STATE(1126), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215403] = 4, - ACTIONS(8549), 1, - anon_sym_LBRACE, - STATE(9356), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4270), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215418] = 5, - ACTIONS(6759), 1, + [215707] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11029), 1, + ACTIONS(10809), 1, anon_sym_EQ, - STATE(3843), 1, - sym_function_body, - STATE(3975), 1, + STATE(1109), 1, sym__block, + STATE(1152), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215435] = 5, - ACTIONS(4407), 1, - anon_sym_while, - ACTIONS(8608), 1, + [215724] = 5, + ACTIONS(10575), 1, anon_sym_LBRACE, - ACTIONS(11264), 1, + ACTIONS(11158), 1, anon_sym_COLON, - STATE(10117), 1, - sym_class_body, + ACTIONS(11160), 1, + sym__automatic_semicolon, + STATE(9481), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215452] = 5, - ACTIONS(6759), 1, + [215741] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11029), 1, + ACTIONS(8135), 1, anon_sym_EQ, - STATE(3975), 1, + STATE(3227), 1, sym__block, - STATE(4027), 1, + STATE(3265), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215469] = 5, - ACTIONS(8175), 1, - anon_sym_EQ, - ACTIONS(8177), 1, + [215758] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - STATE(5323), 1, + ACTIONS(8135), 1, + anon_sym_EQ, + STATE(3210), 1, sym_function_body, - STATE(5399), 1, + STATE(3227), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215486] = 5, - ACTIONS(8098), 1, + [215775] = 3, + ACTIONS(11164), 1, + anon_sym_DOLLAR, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11162), 3, + sym__string_end, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + [215788] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(10994), 1, + ACTIONS(10783), 1, anon_sym_EQ, - STATE(4725), 1, - sym_function_body, - STATE(4871), 1, + STATE(3227), 1, sym__block, + STATE(3265), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215503] = 4, - ACTIONS(8498), 1, + [215805] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - STATE(9267), 1, - sym_enum_class_body, + ACTIONS(10809), 1, + anon_sym_EQ, + STATE(1109), 1, + sym__block, + STATE(1157), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3298), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215518] = 4, - ACTIONS(8549), 1, + [215822] = 4, + ACTIONS(8438), 1, anon_sym_LBRACE, - STATE(9264), 1, + STATE(9421), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4646), 2, + ACTIONS(4519), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [215533] = 5, - ACTIONS(10699), 1, - anon_sym_EQ, - ACTIONS(10701), 1, + [215837] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - STATE(9546), 1, + ACTIONS(8135), 1, + anon_sym_EQ, + STATE(3185), 1, sym_function_body, - STATE(9966), 1, + STATE(3227), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215550] = 5, - ACTIONS(6759), 1, + [215854] = 5, + ACTIONS(6372), 1, anon_sym_LBRACE, - ACTIONS(11029), 1, + ACTIONS(8135), 1, anon_sym_EQ, - STATE(3837), 1, + STATE(3125), 1, sym_function_body, - STATE(3975), 1, + STATE(3227), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215567] = 5, - ACTIONS(8201), 1, + [215871] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(10911), 1, + ACTIONS(10799), 1, anon_sym_EQ, - STATE(5123), 1, - sym_function_body, - STATE(5152), 1, + STATE(1109), 1, sym__block, + STATE(1185), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215584] = 5, - ACTIONS(4141), 1, + [215888] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(11003), 1, + ACTIONS(10809), 1, anon_sym_EQ, - STATE(1092), 1, + STATE(1109), 1, sym__block, - STATE(1182), 1, + STATE(1185), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215601] = 5, - ACTIONS(10675), 1, - anon_sym_EQ, - ACTIONS(10677), 1, + [215905] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - STATE(9242), 1, + ACTIONS(10799), 1, + anon_sym_EQ, + STATE(1109), 1, sym__block, - STATE(9286), 1, + STATE(1157), 1, sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215618] = 4, - ACTIONS(11266), 1, - anon_sym_COMMA, - STATE(8708), 1, - aux_sym__enum_entries_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(8952), 2, - anon_sym_RBRACE, - anon_sym_SEMI, - [215633] = 5, - ACTIONS(8098), 1, + [215922] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(10994), 1, + ACTIONS(10799), 1, anon_sym_EQ, - STATE(4706), 1, - sym_function_body, - STATE(4871), 1, + STATE(1109), 1, sym__block, + STATE(1152), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215650] = 4, - ACTIONS(8549), 1, - anon_sym_LBRACE, - STATE(9407), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4425), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215665] = 5, - ACTIONS(8098), 1, + [215939] = 5, + ACTIONS(4085), 1, anon_sym_LBRACE, - ACTIONS(10994), 1, + ACTIONS(10799), 1, anon_sym_EQ, - STATE(4745), 1, - sym_function_body, - STATE(4871), 1, + STATE(1109), 1, sym__block, + STATE(1126), 1, + sym_function_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215682] = 4, - ACTIONS(8498), 1, - anon_sym_LBRACE, - STATE(9177), 1, - sym_enum_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4429), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215697] = 4, - ACTIONS(8549), 1, - anon_sym_LBRACE, - STATE(9179), 1, - sym_class_body, + [215956] = 4, + ACTIONS(5496), 1, + anon_sym_RPAREN, + ACTIONS(11166), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215712] = 5, - ACTIONS(6759), 1, - anon_sym_LBRACE, - ACTIONS(10899), 1, + [215970] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11168), 1, anon_sym_EQ, - STATE(3843), 1, - sym_function_body, - STATE(3975), 1, - sym__block, + STATE(9749), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215729] = 4, - ACTIONS(8498), 1, - anon_sym_LBRACE, - STATE(9301), 1, - sym_enum_class_body, + [215984] = 3, + STATE(3886), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4417), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [215744] = 4, - ACTIONS(11268), 1, + ACTIONS(541), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [215996] = 4, + ACTIONS(11170), 1, anon_sym_COMMA, - ACTIONS(11270), 1, + ACTIONS(11172), 1, anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + STATE(8925), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215758] = 4, - ACTIONS(11272), 1, + [216010] = 4, + ACTIONS(11174), 1, anon_sym_LBRACE, - ACTIONS(11274), 1, + ACTIONS(11176), 1, anon_sym_LPAREN, - STATE(9476), 1, + STATE(9746), 1, sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215772] = 4, - ACTIONS(10677), 1, - anon_sym_LBRACE, - ACTIONS(11276), 1, - sym__automatic_semicolon, - STATE(10123), 1, - sym__block, + [216024] = 4, + ACTIONS(11178), 1, + anon_sym_COMMA, + ACTIONS(11180), 1, + anon_sym_DASH_GT, + STATE(8863), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215786] = 4, - ACTIONS(9182), 1, + [216038] = 4, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(11278), 1, + ACTIONS(11182), 1, anon_sym_EQ, - STATE(9668), 1, + STATE(9739), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215800] = 4, - ACTIONS(11280), 1, + [216052] = 4, + ACTIONS(7569), 1, anon_sym_COMMA, - ACTIONS(11282), 1, - anon_sym_RPAREN, - STATE(9007), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11184), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215814] = 3, - STATE(4730), 1, - sym__lexical_identifier, + [216066] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(205), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [215826] = 4, - ACTIONS(5594), 1, - anon_sym_RPAREN, - ACTIONS(11284), 1, + ACTIONS(4333), 3, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [216076] = 4, + ACTIONS(7569), 1, anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11186), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215840] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11286), 1, - anon_sym_GT, - STATE(8851), 1, - aux_sym_type_arguments_repeat1, + [216090] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11188), 1, + anon_sym_EQ, + STATE(9726), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215854] = 3, - STATE(3835), 1, - sym__lexical_identifier, + [216104] = 4, + ACTIONS(11190), 1, + anon_sym_COMMA, + ACTIONS(11192), 1, + anon_sym_RPAREN, + STATE(8869), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [215866] = 4, - ACTIONS(11288), 1, + [216118] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11290), 1, - anon_sym_RPAREN, - STATE(8832), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11196), 1, + anon_sym_GT, + STATE(8871), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215880] = 4, - ACTIONS(9182), 1, + [216132] = 4, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(11292), 1, + ACTIONS(11198), 1, anon_sym_EQ, - STATE(9655), 1, + STATE(9709), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215894] = 4, - ACTIONS(11294), 1, + [216146] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11296), 1, + ACTIONS(11202), 1, anon_sym_RPAREN, - STATE(8792), 1, - aux_sym_value_arguments_repeat1, + STATE(8935), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215908] = 4, - ACTIONS(4270), 1, + [216160] = 4, + ACTIONS(3230), 1, anon_sym_while, - ACTIONS(8608), 1, + ACTIONS(8513), 1, anon_sym_LBRACE, - STATE(9463), 1, + STATE(9938), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215922] = 4, - ACTIONS(11298), 1, - anon_sym_COMMA, - ACTIONS(11300), 1, - anon_sym_RPAREN, - STATE(8923), 1, - aux_sym_function_value_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [215936] = 4, - ACTIONS(11274), 1, - anon_sym_LPAREN, - ACTIONS(11302), 1, - anon_sym_LBRACE, - STATE(9616), 1, - sym_when_subject, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [215950] = 4, - ACTIONS(11304), 1, - anon_sym_COMMA, - ACTIONS(11306), 1, - anon_sym_RPAREN, - STATE(8842), 1, - aux_sym_value_arguments_repeat1, + [216174] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11204), 1, + anon_sym_EQ, + STATE(9700), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215964] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11308), 1, - anon_sym_GT, - STATE(8846), 1, - aux_sym_type_arguments_repeat1, + [216188] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11206), 1, + anon_sym_EQ, + STATE(9498), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215978] = 4, - ACTIONS(4250), 1, + [216202] = 4, + ACTIONS(4266), 1, anon_sym_in, - ACTIONS(11310), 1, + ACTIONS(11208), 1, sym__quest, - STATE(8850), 1, + STATE(9076), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [215992] = 4, - ACTIONS(11268), 1, + [216216] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11312), 1, + ACTIONS(11210), 1, anon_sym_GT, - STATE(8877), 1, + STATE(8934), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216006] = 4, - ACTIONS(5600), 1, - anon_sym_RPAREN, - ACTIONS(11314), 1, + [216230] = 4, + ACTIONS(7749), 1, + anon_sym_RBRACK, + ACTIONS(11212), 1, anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216020] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11316), 1, - anon_sym_GT, - STATE(8804), 1, - aux_sym_type_arguments_repeat1, + [216244] = 4, + ACTIONS(11215), 1, + anon_sym_DOT, + ACTIONS(11218), 1, + sym__automatic_semicolon, + STATE(8809), 1, + aux_sym_identifier_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216034] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11318), 1, - anon_sym_EQ, - STATE(9609), 1, - sym_type_parameters, + [216258] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216048] = 4, - ACTIONS(11320), 1, - anon_sym_COMMA, - ACTIONS(11323), 1, + ACTIONS(11220), 3, + sym__automatic_semicolon, + anon_sym_DOT, + anon_sym_as, + [216268] = 4, + ACTIONS(8698), 1, anon_sym_RPAREN, - STATE(8808), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(11222), 1, + anon_sym_COMMA, + STATE(8959), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216062] = 4, - ACTIONS(11325), 1, + [216282] = 4, + ACTIONS(11224), 1, anon_sym_COMMA, - ACTIONS(11327), 1, + ACTIONS(11226), 1, anon_sym_RPAREN, - STATE(8805), 1, - aux_sym_value_arguments_repeat1, + STATE(8897), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216076] = 4, - ACTIONS(8849), 1, - anon_sym_RPAREN, - ACTIONS(11329), 1, + [216296] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - STATE(8841), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11228), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216090] = 3, - STATE(3931), 1, - sym__lexical_identifier, + [216310] = 4, + ACTIONS(5486), 1, + anon_sym_RPAREN, + ACTIONS(11230), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216102] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11331), 1, - anon_sym_EQ, - STATE(9689), 1, - sym_type_parameters, + [216324] = 4, + ACTIONS(7569), 1, + anon_sym_COMMA, + ACTIONS(11232), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216116] = 4, - ACTIONS(3298), 1, - anon_sym_while, - ACTIONS(8620), 1, - anon_sym_LBRACE, - STATE(9701), 1, - sym_enum_class_body, + [216338] = 4, + ACTIONS(11170), 1, + anon_sym_COMMA, + ACTIONS(11234), 1, + anon_sym_GT, + STATE(8925), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216130] = 4, - ACTIONS(11333), 1, - anon_sym_COMMA, - ACTIONS(11335), 1, + [216352] = 4, + ACTIONS(9284), 1, anon_sym_RPAREN, - STATE(9028), 1, + ACTIONS(11236), 1, + anon_sym_COMMA, + STATE(8920), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216144] = 4, - ACTIONS(4462), 1, - anon_sym_while, - ACTIONS(8620), 1, - anon_sym_LBRACE, - STATE(9734), 1, - sym_enum_class_body, + [216366] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216158] = 4, - ACTIONS(11337), 1, + ACTIONS(4664), 3, anon_sym_COMMA, - ACTIONS(11339), 1, + anon_sym_DASH_GT, + anon_sym_in, + [216376] = 4, + ACTIONS(8672), 1, anon_sym_RPAREN, - STATE(8852), 1, + ACTIONS(11238), 1, + anon_sym_COMMA, + STATE(8959), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216172] = 3, - STATE(3925), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(511), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216184] = 4, - ACTIONS(4278), 1, - anon_sym_in, - ACTIONS(11341), 1, - sym__quest, - STATE(8803), 1, - aux_sym_nullable_type_repeat1, + [216390] = 4, + ACTIONS(11200), 1, + anon_sym_COMMA, + ACTIONS(11240), 1, + anon_sym_RPAREN, + STATE(8909), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216198] = 2, + [216404] = 4, + ACTIONS(11242), 1, + anon_sym_COMMA, + ACTIONS(11245), 1, + anon_sym_DASH_GT, + STATE(8821), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10799), 3, - anon_sym_RBRACE, + [216418] = 4, + ACTIONS(11247), 1, anon_sym_COMMA, - anon_sym_SEMI, - [216208] = 3, - ACTIONS(11343), 1, - anon_sym_EQ, + ACTIONS(11249), 1, + anon_sym_RPAREN, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11345), 2, + [216432] = 4, + ACTIONS(11247), 1, anon_sym_COMMA, + ACTIONS(11251), 1, anon_sym_RPAREN, - [216220] = 4, - ACTIONS(4646), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - STATE(9702), 1, - sym_class_body, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216234] = 4, - ACTIONS(11347), 1, + [216446] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11349), 1, + ACTIONS(11253), 1, anon_sym_RPAREN, - STATE(8971), 1, + STATE(8909), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216248] = 4, - ACTIONS(5764), 1, - anon_sym_LBRACE, - ACTIONS(9918), 1, - anon_sym_COLON, - STATE(5172), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216262] = 4, - ACTIONS(11351), 1, + [216460] = 4, + ACTIONS(11255), 1, anon_sym_COMMA, - ACTIONS(11353), 1, + ACTIONS(11257), 1, anon_sym_RPAREN, - STATE(8992), 1, - aux_sym_value_arguments_repeat1, + STATE(8811), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216276] = 4, - ACTIONS(11355), 1, + [216474] = 4, + ACTIONS(11247), 1, anon_sym_COMMA, - ACTIONS(11357), 1, + ACTIONS(11259), 1, anon_sym_RPAREN, - STATE(8967), 1, + STATE(8910), 1, aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216290] = 4, - ACTIONS(11359), 1, + [216488] = 4, + ACTIONS(8728), 1, + anon_sym_RPAREN, + ACTIONS(11261), 1, anon_sym_COMMA, - ACTIONS(11361), 1, - anon_sym_GT, - STATE(8955), 1, - aux_sym_type_parameters_repeat1, + STATE(8959), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216304] = 3, - STATE(3924), 1, - sym__lexical_identifier, + [216502] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11263), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216316] = 3, - STATE(3923), 1, - sym__lexical_identifier, + [216516] = 4, + ACTIONS(11265), 1, + anon_sym_COMMA, + ACTIONS(11267), 1, + anon_sym_RPAREN, + STATE(8877), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(511), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216328] = 4, - ACTIONS(11268), 1, + [216530] = 4, + ACTIONS(9298), 1, + anon_sym_RPAREN, + ACTIONS(11269), 1, anon_sym_COMMA, - ACTIONS(11363), 1, - anon_sym_GT, - STATE(8994), 1, - aux_sym_type_arguments_repeat1, + STATE(8920), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216342] = 4, - ACTIONS(4756), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - STATE(9639), 1, - sym_class_body, + [216544] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11271), 1, + anon_sym_EQ, + STATE(9611), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216356] = 3, - ACTIONS(11365), 1, + [216558] = 3, + ACTIONS(11273), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7730), 2, + ACTIONS(11275), 2, anon_sym_COMMA, anon_sym_RPAREN, - [216368] = 4, - ACTIONS(9340), 1, - anon_sym_RPAREN, - ACTIONS(11367), 1, - anon_sym_COMMA, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216382] = 4, - ACTIONS(11268), 1, + [216570] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11369), 1, + ACTIONS(11277), 1, anon_sym_GT, - STATE(8877), 1, + STATE(8813), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216396] = 4, - ACTIONS(5606), 1, - anon_sym_RPAREN, - ACTIONS(11371), 1, + [216584] = 4, + ACTIONS(11279), 1, anon_sym_COMMA, - STATE(8882), 1, + ACTIONS(11281), 1, + anon_sym_RPAREN, + STATE(8814), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216410] = 3, - STATE(4827), 1, - sym__lexical_identifier, + [216598] = 4, + ACTIONS(11200), 1, + anon_sym_COMMA, + ACTIONS(11283), 1, + anon_sym_RPAREN, + STATE(8824), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(205), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216422] = 4, - ACTIONS(7581), 1, + [216612] = 4, + ACTIONS(11170), 1, anon_sym_COMMA, - ACTIONS(11373), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11285), 1, + anon_sym_GT, + STATE(8925), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216436] = 3, - STATE(4824), 1, - sym__lexical_identifier, + [216626] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11287), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(205), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216448] = 3, - STATE(4823), 1, - sym__lexical_identifier, + [216640] = 4, + ACTIONS(5428), 1, + anon_sym_RPAREN, + ACTIONS(11289), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(205), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216460] = 3, - ACTIONS(11375), 1, - anon_sym_EQ, + [216654] = 4, + ACTIONS(5512), 1, + anon_sym_RPAREN, + ACTIONS(11291), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11377), 2, - anon_sym_COMMA, + [216668] = 4, + ACTIONS(8732), 1, anon_sym_RPAREN, - [216472] = 4, - ACTIONS(11355), 1, + ACTIONS(11293), 1, anon_sym_COMMA, - ACTIONS(11379), 1, - anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8959), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216486] = 4, - ACTIONS(11381), 1, + [216682] = 4, + ACTIONS(7569), 1, anon_sym_COMMA, - ACTIONS(11384), 1, - anon_sym_RPAREN, - STATE(8841), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11295), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216500] = 4, - ACTIONS(5536), 1, - anon_sym_RPAREN, - ACTIONS(11386), 1, + [216696] = 4, + ACTIONS(7569), 1, anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11297), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216514] = 3, - STATE(4819), 1, - sym__lexical_identifier, + [216710] = 3, + ACTIONS(11299), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(205), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216526] = 4, - ACTIONS(11268), 1, + ACTIONS(11301), 2, anon_sym_COMMA, - ACTIONS(11388), 1, anon_sym_GT, - STATE(8833), 1, - aux_sym_type_arguments_repeat1, + [216722] = 3, + ACTIONS(11303), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216540] = 4, - ACTIONS(11390), 1, + ACTIONS(11305), 2, anon_sym_COMMA, - ACTIONS(11392), 1, - anon_sym_RPAREN, - STATE(8834), 1, - aux_sym_value_arguments_repeat1, + anon_sym_GT, + [216734] = 4, + ACTIONS(11170), 1, + anon_sym_COMMA, + ACTIONS(11307), 1, + anon_sym_GT, + STATE(8816), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216554] = 4, - ACTIONS(11268), 1, + [216748] = 4, + ACTIONS(11170), 1, anon_sym_COMMA, - ACTIONS(11394), 1, + ACTIONS(11309), 1, anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + STATE(8873), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216568] = 4, - ACTIONS(11396), 1, + [216762] = 4, + ACTIONS(11170), 1, anon_sym_COMMA, - ACTIONS(11398), 1, - anon_sym_DASH_GT, - STATE(9042), 1, - aux_sym_when_entry_repeat1, + ACTIONS(11311), 1, + anon_sym_GT, + STATE(8836), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216582] = 4, - ACTIONS(9182), 1, + [216776] = 4, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(11400), 1, + ACTIONS(11313), 1, anon_sym_EQ, - STATE(9572), 1, + STATE(9781), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216596] = 4, - ACTIONS(11402), 1, - anon_sym_COMMA, - ACTIONS(11404), 1, - anon_sym_RPAREN, - STATE(8898), 1, - aux_sym_value_arguments_repeat1, + [216790] = 4, + ACTIONS(11176), 1, + anon_sym_LPAREN, + ACTIONS(11315), 1, + anon_sym_LBRACE, + STATE(9786), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216610] = 4, - ACTIONS(4284), 1, + [216804] = 4, + ACTIONS(4210), 1, anon_sym_in, - ACTIONS(11406), 1, + ACTIONS(11317), 1, sym__quest, - STATE(8850), 1, + STATE(8806), 1, aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216624] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11409), 1, - anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216638] = 4, - ACTIONS(8891), 1, + [216818] = 4, + ACTIONS(9290), 1, anon_sym_RPAREN, - ACTIONS(11411), 1, + ACTIONS(11319), 1, anon_sym_COMMA, - STATE(8841), 1, - aux_sym__class_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216652] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4444), 3, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [216662] = 4, - ACTIONS(11274), 1, - anon_sym_LPAREN, - ACTIONS(11413), 1, - anon_sym_LBRACE, - STATE(9673), 1, - sym_when_subject, + STATE(8920), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216676] = 4, - ACTIONS(11268), 1, + [216832] = 4, + ACTIONS(11247), 1, anon_sym_COMMA, - ACTIONS(11415), 1, - anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11321), 1, + anon_sym_RPAREN, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216690] = 4, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(11419), 1, - anon_sym_RPAREN, - STATE(8998), 1, - aux_sym__class_parameters_repeat1, + [216846] = 3, + ACTIONS(11323), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216704] = 4, - ACTIONS(11421), 1, + ACTIONS(11325), 2, anon_sym_COMMA, - ACTIONS(11423), 1, anon_sym_RPAREN, - STATE(9051), 1, - aux_sym_value_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216718] = 4, - ACTIONS(11347), 1, + [216858] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11425), 1, + ACTIONS(11327), 1, anon_sym_RPAREN, - STATE(8916), 1, + STATE(8909), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216732] = 4, - ACTIONS(11268), 1, + [216872] = 4, + ACTIONS(11329), 1, anon_sym_COMMA, - ACTIONS(11427), 1, - anon_sym_GT, - STATE(9056), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11331), 1, + anon_sym_RPAREN, + STATE(8830), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216746] = 3, - STATE(2870), 1, - sym__lexical_identifier, + [216886] = 4, + ACTIONS(11333), 1, + anon_sym_COMMA, + ACTIONS(11335), 1, + anon_sym_RPAREN, + STATE(8819), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11429), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [216758] = 4, - ACTIONS(11268), 1, + [216900] = 4, + ACTIONS(11337), 1, anon_sym_COMMA, - ACTIONS(11431), 1, - anon_sym_GT, - STATE(8999), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11339), 1, + anon_sym_RPAREN, + STATE(8817), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216772] = 4, - ACTIONS(11274), 1, + [216914] = 3, + ACTIONS(11341), 1, anon_sym_LPAREN, - ACTIONS(11433), 1, - anon_sym_LBRACE, - STATE(9547), 1, - sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216786] = 4, - ACTIONS(7096), 1, + ACTIONS(4220), 2, sym__automatic_semicolon, - ACTIONS(10711), 1, + anon_sym_RBRACE, + [216926] = 3, + ACTIONS(11343), 1, anon_sym_LPAREN, - STATE(8543), 1, - sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216800] = 4, - ACTIONS(11268), 1, + ACTIONS(4188), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [216938] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11435), 1, + ACTIONS(11345), 1, anon_sym_GT, - STATE(8877), 1, + STATE(8807), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216814] = 4, - ACTIONS(11359), 1, + [216952] = 4, + ACTIONS(11347), 1, anon_sym_COMMA, - ACTIONS(11437), 1, - anon_sym_GT, - STATE(8922), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11349), 1, + anon_sym_RPAREN, + STATE(8788), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216828] = 4, - ACTIONS(9182), 1, + [216966] = 4, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(11439), 1, + ACTIONS(11351), 1, anon_sym_EQ, - STATE(9539), 1, + STATE(9810), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216842] = 4, - ACTIONS(8549), 1, - anon_sym_LBRACE, - ACTIONS(11441), 1, - sym__automatic_semicolon, - STATE(9535), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [216856] = 3, - STATE(8926), 1, - sym_constructor_delegation_call, + [216980] = 4, + ACTIONS(11178), 1, + anon_sym_COMMA, + ACTIONS(11353), 1, + anon_sym_DASH_GT, + STATE(8931), 1, + aux_sym_when_entry_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11443), 2, - anon_sym_this, - anon_sym_super, - [216868] = 4, - ACTIONS(11445), 1, - anon_sym_COMMA, - ACTIONS(11447), 1, - anon_sym_RPAREN, - STATE(8874), 1, - aux_sym_value_arguments_repeat1, + [216994] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216882] = 4, - ACTIONS(4756), 1, + ACTIONS(4345), 3, anon_sym_while, - ACTIONS(8620), 1, - anon_sym_LBRACE, - STATE(9639), 1, - sym_enum_class_body, + anon_sym_catch, + anon_sym_finally, + [217004] = 4, + ACTIONS(7569), 1, + anon_sym_COMMA, + ACTIONS(11355), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216896] = 4, - ACTIONS(11268), 1, + [217018] = 4, + ACTIONS(7569), 1, anon_sym_COMMA, - ACTIONS(11449), 1, - anon_sym_GT, - STATE(8880), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11357), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216910] = 4, - ACTIONS(11347), 1, + [217032] = 4, + ACTIONS(11359), 1, anon_sym_COMMA, - ACTIONS(11451), 1, - anon_sym_RPAREN, - STATE(8822), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11361), 1, + anon_sym_DASH_GT, + STATE(8821), 1, + aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216924] = 3, - STATE(8788), 1, - sym_constructor_delegation_call, + [217046] = 3, + ACTIONS(11363), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11443), 2, - anon_sym_this, - anon_sym_super, - [216936] = 4, - ACTIONS(5588), 1, + ACTIONS(4166), 2, + sym__quest, + anon_sym_in, + [217058] = 4, + ACTIONS(5488), 1, anon_sym_RPAREN, - ACTIONS(11453), 1, + ACTIONS(11365), 1, anon_sym_COMMA, - STATE(8882), 1, + STATE(8933), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216950] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11455), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [216960] = 4, - ACTIONS(11457), 1, + [217072] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11459), 1, + ACTIONS(11367), 1, anon_sym_RPAREN, - STATE(9036), 1, - aux_sym_value_arguments_repeat1, + STATE(8820), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216974] = 4, - ACTIONS(11461), 1, + [217086] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11464), 1, + ACTIONS(11369), 1, anon_sym_GT, - STATE(8877), 1, + STATE(8934), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [216988] = 4, - ACTIONS(8549), 1, - anon_sym_LBRACE, - ACTIONS(11466), 1, - sym__automatic_semicolon, - STATE(9484), 1, - sym_class_body, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217002] = 4, - ACTIONS(5812), 1, - anon_sym_LBRACE, - ACTIONS(9916), 1, - anon_sym_COLON, - STATE(3932), 1, - sym_class_body, + [217100] = 4, + ACTIONS(11170), 1, + anon_sym_COMMA, + ACTIONS(11371), 1, + anon_sym_GT, + STATE(8791), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217016] = 4, - ACTIONS(11268), 1, + [217114] = 4, + ACTIONS(11170), 1, anon_sym_COMMA, - ACTIONS(11468), 1, + ACTIONS(11373), 1, anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + STATE(8925), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217030] = 4, - ACTIONS(9182), 1, + [217128] = 4, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(11470), 1, + ACTIONS(11375), 1, anon_sym_EQ, - STATE(9800), 1, + STATE(9516), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217044] = 4, - ACTIONS(11472), 1, + [217142] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11475), 1, + ACTIONS(11377), 1, anon_sym_RPAREN, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + STATE(8909), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217058] = 4, - ACTIONS(9182), 1, + [217156] = 4, + ACTIONS(11379), 1, + anon_sym_COMMA, + ACTIONS(11381), 1, + anon_sym_RPAREN, + STATE(8851), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217170] = 4, + ACTIONS(9312), 1, + anon_sym_RPAREN, + ACTIONS(11383), 1, + anon_sym_COMMA, + STATE(8920), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217184] = 4, + ACTIONS(5756), 1, + anon_sym_LBRACE, + ACTIONS(9869), 1, + anon_sym_COLON, + STATE(5155), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217198] = 4, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(11477), 1, + ACTIONS(11385), 1, anon_sym_EQ, - STATE(9543), 1, + STATE(9827), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217072] = 4, - ACTIONS(5530), 1, - anon_sym_RPAREN, - ACTIONS(11479), 1, - anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + [217212] = 4, + ACTIONS(11176), 1, + anon_sym_LPAREN, + ACTIONS(11387), 1, + anon_sym_LBRACE, + STATE(9837), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217086] = 3, - STATE(3073), 1, + [217226] = 3, + STATE(4745), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, + ACTIONS(285), 2, sym__alpha_identifier, sym__backtick_identifier, - [217098] = 4, - ACTIONS(11347), 1, + [217238] = 4, + ACTIONS(11389), 1, + anon_sym_DOT, + ACTIONS(11391), 1, + sym__automatic_semicolon, + STATE(8809), 1, + aux_sym_identifier_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217252] = 4, + ACTIONS(7569), 1, anon_sym_COMMA, - ACTIONS(11481), 1, - anon_sym_RPAREN, - STATE(8971), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11393), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217112] = 4, - ACTIONS(11483), 1, + [217266] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11485), 1, + ACTIONS(11395), 1, anon_sym_RPAREN, - STATE(8963), 1, - aux_sym_value_arguments_repeat1, + STATE(8854), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217126] = 4, - ACTIONS(5612), 1, - anon_sym_RPAREN, - ACTIONS(11487), 1, - anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + [217280] = 3, + STATE(4744), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217140] = 4, - ACTIONS(9182), 1, + ACTIONS(285), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217292] = 4, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(11489), 1, + ACTIONS(11397), 1, anon_sym_EQ, - STATE(9764), 1, + STATE(9906), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217154] = 4, - ACTIONS(11347), 1, - anon_sym_COMMA, - ACTIONS(11491), 1, - anon_sym_RPAREN, - STATE(8971), 1, - aux_sym_multi_variable_declaration_repeat1, + [217306] = 3, + STATE(4743), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217168] = 4, - ACTIONS(7581), 1, + ACTIONS(285), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217318] = 4, + ACTIONS(7569), 1, anon_sym_COMMA, - ACTIONS(11493), 1, + ACTIONS(11399), 1, anon_sym_RBRACK, - STATE(8908), 1, + STATE(8808), 1, aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217182] = 4, - ACTIONS(7581), 1, - anon_sym_COMMA, - ACTIONS(11495), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, + [217332] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11401), 1, + anon_sym_EQ, + STATE(9863), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217196] = 4, - ACTIONS(11497), 1, - anon_sym_COMMA, - ACTIONS(11499), 1, - anon_sym_DASH_GT, - STATE(9008), 1, - aux_sym_lambda_parameters_repeat1, + [217346] = 3, + STATE(4754), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217210] = 4, - ACTIONS(11355), 1, - anon_sym_COMMA, - ACTIONS(11501), 1, - anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, + ACTIONS(285), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217358] = 3, + STATE(2857), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217224] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11503), 1, - anon_sym_GT, - STATE(8786), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11403), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217370] = 3, + ACTIONS(11405), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217238] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11505), 1, - anon_sym_EQ, - STATE(9517), 1, - sym_type_parameters, + ACTIONS(4842), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [217382] = 3, + ACTIONS(11407), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217252] = 4, - ACTIONS(11507), 1, - anon_sym_COMMA, - ACTIONS(11510), 1, - anon_sym_DASH_GT, - STATE(8897), 1, - aux_sym_when_entry_repeat1, + ACTIONS(4852), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [217394] = 4, + ACTIONS(4632), 1, + anon_sym_while, + ACTIONS(8601), 1, + anon_sym_LBRACE, + STATE(9874), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217266] = 4, - ACTIONS(5584), 1, - anon_sym_RPAREN, - ACTIONS(11512), 1, + [217408] = 4, + ACTIONS(11247), 1, anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11409), 1, + anon_sym_RPAREN, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217280] = 2, + [217422] = 4, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(11411), 1, + sym__automatic_semicolon, + STATE(9465), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11514), 3, - sym__automatic_semicolon, - anon_sym_DOT, - anon_sym_as, - [217290] = 4, - ACTIONS(11516), 1, - anon_sym_DOT, - ACTIONS(11518), 1, - sym__automatic_semicolon, - STATE(9027), 1, - aux_sym_identifier_repeat1, + [217436] = 4, + ACTIONS(8714), 1, + anon_sym_RPAREN, + ACTIONS(11413), 1, + anon_sym_COMMA, + STATE(8959), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217450] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11415), 1, + anon_sym_EQ, + STATE(9879), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217304] = 4, - ACTIONS(11359), 1, - anon_sym_COMMA, - ACTIONS(11520), 1, - anon_sym_GT, - STATE(8826), 1, - aux_sym_type_parameters_repeat1, + [217464] = 4, + ACTIONS(11176), 1, + anon_sym_LPAREN, + ACTIONS(11417), 1, + anon_sym_LBRACE, + STATE(9882), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217318] = 4, - ACTIONS(11522), 1, - anon_sym_COMMA, - ACTIONS(11524), 1, - anon_sym_RPAREN, - STATE(8907), 1, - aux_sym_value_arguments_repeat1, + [217478] = 4, + ACTIONS(8438), 1, + anon_sym_LBRACE, + ACTIONS(11419), 1, + sym__automatic_semicolon, + STATE(9496), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217332] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11526), 1, - anon_sym_GT, - STATE(8855), 1, - aux_sym_type_arguments_repeat1, + [217492] = 3, + STATE(1021), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217346] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11528), 1, - anon_sym_GT, - STATE(8911), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217504] = 3, + STATE(3936), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217360] = 3, - STATE(5150), 1, + ACTIONS(541), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217516] = 3, + STATE(3889), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, + ACTIONS(541), 2, sym__alpha_identifier, sym__backtick_identifier, - [217372] = 4, - ACTIONS(11530), 1, - anon_sym_COMMA, - ACTIONS(11532), 1, - anon_sym_RPAREN, - STATE(8888), 1, - aux_sym_value_arguments_repeat1, + [217528] = 3, + STATE(3827), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217386] = 4, - ACTIONS(5578), 1, - anon_sym_RPAREN, - ACTIONS(11534), 1, - anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(541), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217540] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217400] = 4, - ACTIONS(7758), 1, - anon_sym_RBRACK, - ACTIONS(11536), 1, + ACTIONS(4682), 3, anon_sym_COMMA, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, + anon_sym_DASH_GT, + anon_sym_in, + [217550] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217414] = 4, - ACTIONS(5494), 1, + ACTIONS(11421), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [217560] = 4, + ACTIONS(5746), 1, anon_sym_LBRACE, - ACTIONS(9922), 1, + ACTIONS(9878), 1, anon_sym_COLON, - STATE(4817), 1, + STATE(3832), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217428] = 4, - ACTIONS(4301), 1, + [217574] = 4, + ACTIONS(4620), 1, anon_sym_while, - ACTIONS(8608), 1, + ACTIONS(8513), 1, anon_sym_LBRACE, - STATE(10094), 1, + STATE(9895), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217442] = 4, - ACTIONS(11268), 1, + [217588] = 4, + ACTIONS(11423), 1, anon_sym_COMMA, - ACTIONS(11539), 1, - anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11426), 1, + anon_sym_RPAREN, + STATE(8909), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217456] = 4, - ACTIONS(11541), 1, + [217602] = 4, + ACTIONS(11247), 1, anon_sym_COMMA, - ACTIONS(11543), 1, + ACTIONS(11428), 1, anon_sym_RPAREN, - STATE(8920), 1, - aux_sym_value_arguments_repeat1, + STATE(8983), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217470] = 4, - ACTIONS(11545), 1, - anon_sym_DOT, - ACTIONS(11548), 1, - sym__automatic_semicolon, - STATE(8913), 1, - aux_sym_identifier_repeat1, + [217616] = 4, + ACTIONS(7569), 1, + anon_sym_COMMA, + ACTIONS(11430), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217484] = 4, - ACTIONS(11355), 1, - anon_sym_COMMA, - ACTIONS(11550), 1, - anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, + [217630] = 3, + ACTIONS(11432), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217498] = 4, - ACTIONS(11268), 1, + ACTIONS(7758), 2, anon_sym_COMMA, - ACTIONS(11552), 1, + anon_sym_RPAREN, + [217642] = 4, + ACTIONS(11170), 1, + anon_sym_COMMA, + ACTIONS(11434), 1, anon_sym_GT, - STATE(8924), 1, - aux_sym_type_arguments_repeat1, + STATE(8925), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217512] = 4, - ACTIONS(11347), 1, + [217656] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11554), 1, + ACTIONS(11436), 1, anon_sym_RPAREN, - STATE(8971), 1, + STATE(8936), 1, aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217526] = 2, + [217670] = 3, + STATE(1019), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11556), 3, - sym__automatic_semicolon, - anon_sym_DOT, - anon_sym_as, - [217536] = 4, - ACTIONS(4270), 1, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217682] = 3, + STATE(8984), 1, + sym_constructor_delegation_call, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11438), 2, + anon_sym_this, + anon_sym_super, + [217694] = 4, + ACTIONS(9300), 1, + anon_sym_RPAREN, + ACTIONS(11440), 1, + anon_sym_COMMA, + STATE(8920), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217708] = 4, + ACTIONS(11442), 1, + anon_sym_COMMA, + ACTIONS(11444), 1, + anon_sym_RPAREN, + STATE(8938), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217722] = 4, + ACTIONS(4620), 1, anon_sym_while, - ACTIONS(8620), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(9463), 1, + STATE(9895), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217550] = 4, - ACTIONS(11355), 1, + [217736] = 4, + ACTIONS(11446), 1, anon_sym_COMMA, - ACTIONS(11558), 1, + ACTIONS(11449), 1, anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, + STATE(8920), 1, + aux_sym_function_value_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217750] = 4, + ACTIONS(11170), 1, + anon_sym_COMMA, + ACTIONS(11451), 1, + anon_sym_GT, + STATE(8940), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217764] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217564] = 4, - ACTIONS(5574), 1, + ACTIONS(11453), 3, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(11560), 1, + [217774] = 4, + ACTIONS(11455), 1, anon_sym_COMMA, - STATE(8882), 1, + ACTIONS(11457), 1, + anon_sym_RPAREN, + STATE(8951), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217578] = 3, - ACTIONS(11562), 1, - anon_sym_LPAREN, + [217788] = 4, + ACTIONS(11247), 1, + anon_sym_COMMA, + ACTIONS(11459), 1, + anon_sym_RPAREN, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4240), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217590] = 4, - ACTIONS(11359), 1, + [217802] = 4, + ACTIONS(11461), 1, anon_sym_COMMA, - ACTIONS(11564), 1, + ACTIONS(11464), 1, anon_sym_GT, - STATE(8955), 1, + STATE(8925), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217604] = 4, - ACTIONS(9344), 1, - anon_sym_RPAREN, - ACTIONS(11566), 1, + [217816] = 4, + ACTIONS(11466), 1, anon_sym_COMMA, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11468), 1, + anon_sym_RPAREN, + STATE(8838), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217618] = 4, - ACTIONS(11268), 1, + [217830] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11568), 1, + ACTIONS(11470), 1, anon_sym_GT, - STATE(8877), 1, + STATE(8952), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217632] = 4, - ACTIONS(8881), 1, - anon_sym_RPAREN, - ACTIONS(11570), 1, + [217844] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - STATE(8841), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11472), 1, + anon_sym_GT, + STATE(8837), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217646] = 4, - ACTIONS(10677), 1, - anon_sym_LBRACE, - ACTIONS(11572), 1, - sym__automatic_semicolon, - STATE(9482), 1, - sym__block, + [217858] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11474), 1, + anon_sym_EQ, + STATE(9942), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217660] = 2, + [217872] = 3, + STATE(5151), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11574), 3, - anon_sym_EQ, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [217884] = 4, + ACTIONS(11476), 1, + anon_sym_COMMA, + ACTIONS(11479), 1, + anon_sym_DASH_GT, + STATE(8931), 1, + aux_sym_when_entry_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217898] = 4, + ACTIONS(11481), 1, anon_sym_COMMA, + ACTIONS(11483), 1, anon_sym_RPAREN, - [217670] = 4, - ACTIONS(11576), 1, + STATE(8954), 1, + aux_sym__class_parameters_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [217912] = 4, + ACTIONS(11485), 1, anon_sym_COMMA, - ACTIONS(11578), 1, + ACTIONS(11488), 1, anon_sym_RPAREN, - STATE(8959), 1, + STATE(8933), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217684] = 4, - ACTIONS(11580), 1, + [217926] = 4, + ACTIONS(11490), 1, anon_sym_COMMA, - ACTIONS(11583), 1, - anon_sym_RPAREN, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11493), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217698] = 3, - STATE(3135), 1, - sym__lexical_identifier, + [217940] = 4, + ACTIONS(11200), 1, + anon_sym_COMMA, + ACTIONS(11495), 1, + anon_sym_RPAREN, + STATE(8909), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217710] = 4, - ACTIONS(11585), 1, + [217954] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11587), 1, + ACTIONS(11497), 1, anon_sym_RPAREN, - STATE(9018), 1, - aux_sym__class_parameters_repeat1, + STATE(8909), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217724] = 3, - STATE(3090), 1, - sym__lexical_identifier, + [217968] = 4, + ACTIONS(11247), 1, + anon_sym_COMMA, + ACTIONS(11499), 1, + anon_sym_RPAREN, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217736] = 2, + [217982] = 4, + ACTIONS(9288), 1, + anon_sym_RPAREN, + ACTIONS(11501), 1, + anon_sym_COMMA, + STATE(8920), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11239), 3, - anon_sym_RBRACE, + [217996] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - anon_sym_SEMI, - [217746] = 3, - STATE(3081), 1, - sym__lexical_identifier, + ACTIONS(11503), 1, + anon_sym_RPAREN, + STATE(8988), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217758] = 3, - ACTIONS(11589), 1, - anon_sym_LPAREN, + [218010] = 4, + ACTIONS(11170), 1, + anon_sym_COMMA, + ACTIONS(11505), 1, + anon_sym_GT, + STATE(8925), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4226), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [217770] = 4, - ACTIONS(5516), 1, + [218024] = 4, + ACTIONS(4276), 1, + anon_sym_while, + ACTIONS(8513), 1, anon_sym_LBRACE, - ACTIONS(9908), 1, - anon_sym_COLON, - STATE(3513), 1, + STATE(10056), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217784] = 4, - ACTIONS(4470), 1, + [218038] = 4, + ACTIONS(4449), 1, anon_sym_while, - ACTIONS(8608), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(9704), 1, - sym_class_body, + STATE(9898), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217798] = 3, - STATE(3074), 1, - sym__lexical_identifier, + [218052] = 4, + ACTIONS(11507), 1, + anon_sym_COMMA, + ACTIONS(11509), 1, + anon_sym_RPAREN, + STATE(9051), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217810] = 4, - ACTIONS(8549), 1, + [218066] = 4, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(11591), 1, + ACTIONS(11511), 1, sym__automatic_semicolon, - STATE(10135), 1, + STATE(9477), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217824] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11593), 1, - anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + [218080] = 4, + ACTIONS(10575), 1, + anon_sym_LBRACE, + ACTIONS(11513), 1, + sym__automatic_semicolon, + STATE(9469), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217838] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11595), 1, - anon_sym_EQ, - STATE(9472), 1, - sym_type_parameters, + [218094] = 4, + ACTIONS(11170), 1, + anon_sym_COMMA, + ACTIONS(11515), 1, + anon_sym_GT, + STATE(8999), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217852] = 4, - ACTIONS(3292), 1, + [218108] = 4, + ACTIONS(4361), 1, anon_sym_while, - ACTIONS(8608), 1, + ACTIONS(8513), 1, anon_sym_LBRACE, - STATE(9699), 1, + STATE(9921), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217866] = 4, - ACTIONS(3262), 1, - anon_sym_LBRACE, - ACTIONS(9926), 1, - anon_sym_COLON, - STATE(3240), 1, - sym_class_body, + [218122] = 4, + ACTIONS(5570), 1, + anon_sym_RPAREN, + ACTIONS(11517), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217880] = 3, - STATE(1020), 1, - sym__lexical_identifier, + [218136] = 4, + ACTIONS(7569), 1, + anon_sym_COMMA, + ACTIONS(11519), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217892] = 4, - ACTIONS(3280), 1, + [218150] = 4, + ACTIONS(3222), 1, anon_sym_while, - ACTIONS(8620), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(9861), 1, + STATE(10052), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217906] = 4, - ACTIONS(11268), 1, + [218164] = 4, + ACTIONS(5438), 1, + anon_sym_RPAREN, + ACTIONS(11521), 1, anon_sym_COMMA, - ACTIONS(11597), 1, - anon_sym_GT, - STATE(8960), 1, - aux_sym_type_arguments_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [217920] = 3, - STATE(3505), 1, - sym__lexical_identifier, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(337), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217932] = 3, - STATE(3506), 1, - sym__lexical_identifier, + [218178] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11523), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(337), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [217944] = 3, - STATE(3508), 1, + [218192] = 3, + STATE(3835), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(337), 2, + ACTIONS(541), 2, sym__alpha_identifier, sym__backtick_identifier, - [217956] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4627), 3, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_in, - [217966] = 4, - ACTIONS(11347), 1, - anon_sym_COMMA, - ACTIONS(11599), 1, + [218204] = 4, + ACTIONS(8757), 1, anon_sym_RPAREN, - STATE(8971), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11525), 1, + anon_sym_COMMA, + STATE(8959), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [217980] = 2, + [218218] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(10957), 3, + ACTIONS(11103), 3, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_SEMI, - [217990] = 4, - ACTIONS(4429), 1, + [218228] = 4, + ACTIONS(4361), 1, anon_sym_while, - ACTIONS(8620), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(9724), 1, + STATE(9921), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218004] = 4, - ACTIONS(11347), 1, - anon_sym_COMMA, - ACTIONS(11601), 1, - anon_sym_RPAREN, - STATE(9087), 1, - aux_sym_multi_variable_declaration_repeat1, + [218242] = 3, + ACTIONS(11527), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218018] = 4, - ACTIONS(11603), 1, - anon_sym_COMMA, - ACTIONS(11606), 1, - anon_sym_GT, - STATE(8955), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4166), 2, + sym__quest, + anon_sym_in, + [218254] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218032] = 4, - ACTIONS(11608), 1, + ACTIONS(11105), 3, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11611), 1, - anon_sym_DASH_GT, - STATE(8956), 1, - aux_sym_lambda_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218046] = 3, - STATE(3511), 1, - sym__lexical_identifier, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(337), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [218058] = 4, - ACTIONS(11355), 1, + anon_sym_SEMI, + [218264] = 4, + ACTIONS(11529), 1, anon_sym_COMMA, - ACTIONS(11613), 1, - anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218072] = 4, - ACTIONS(5570), 1, + ACTIONS(11532), 1, anon_sym_RPAREN, - ACTIONS(11615), 1, - anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + STATE(8959), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218086] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11617), 1, - anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + [218278] = 3, + ACTIONS(11534), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218100] = 4, - ACTIONS(11355), 1, + ACTIONS(11536), 2, anon_sym_COMMA, - ACTIONS(11619), 1, anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, + [218290] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11538), 1, + anon_sym_EQ, + STATE(9980), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218114] = 3, - STATE(828), 1, + [218304] = 3, + STATE(3133), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11621), 2, + ACTIONS(623), 2, sym__alpha_identifier, sym__backtick_identifier, - [218126] = 4, - ACTIONS(5618), 1, - anon_sym_RPAREN, - ACTIONS(11623), 1, + [218316] = 4, + ACTIONS(11540), 1, anon_sym_COMMA, - STATE(8882), 1, + ACTIONS(11542), 1, + anon_sym_RPAREN, + STATE(8990), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218140] = 3, - ACTIONS(11625), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(4846), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [218152] = 4, - ACTIONS(4297), 1, - anon_sym_in, - ACTIONS(11341), 1, - sym__quest, - STATE(8803), 1, - aux_sym_nullable_type_repeat1, + [218330] = 4, + ACTIONS(4422), 1, + anon_sym_while, + ACTIONS(8601), 1, + anon_sym_LBRACE, + STATE(9887), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218166] = 4, - ACTIONS(11355), 1, - anon_sym_COMMA, - ACTIONS(11627), 1, - anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, + [218344] = 4, + ACTIONS(4519), 1, + anon_sym_while, + ACTIONS(8513), 1, + anon_sym_LBRACE, + STATE(10051), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218180] = 4, - ACTIONS(11355), 1, - anon_sym_COMMA, - ACTIONS(11629), 1, - anon_sym_RPAREN, - STATE(8808), 1, - aux_sym_function_type_parameters_repeat1, + [218358] = 4, + ACTIONS(3158), 1, + anon_sym_LBRACE, + ACTIONS(9873), 1, + anon_sym_COLON, + STATE(3170), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218194] = 4, - ACTIONS(9380), 1, - anon_sym_RPAREN, - ACTIONS(11631), 1, - anon_sym_COMMA, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, + [218372] = 3, + ACTIONS(11544), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218208] = 4, - ACTIONS(11355), 1, + ACTIONS(11546), 2, anon_sym_COMMA, - ACTIONS(11633), 1, anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, + [218384] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11548), 1, + anon_sym_GT, + STATE(8982), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218222] = 4, - ACTIONS(9182), 1, + [218398] = 4, + ACTIONS(9124), 1, anon_sym_LT, - ACTIONS(11635), 1, + ACTIONS(11550), 1, anon_sym_EQ, - STATE(9494), 1, + STATE(10000), 1, sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218236] = 4, - ACTIONS(11637), 1, - anon_sym_COMMA, - ACTIONS(11640), 1, - anon_sym_RPAREN, - STATE(8971), 1, - aux_sym_multi_variable_declaration_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218250] = 4, - ACTIONS(11642), 1, - anon_sym_COMMA, - ACTIONS(11644), 1, - anon_sym_RPAREN, - STATE(8925), 1, - aux_sym__class_parameters_repeat1, + [218412] = 4, + ACTIONS(4154), 1, + anon_sym_while, + ACTIONS(8601), 1, + anon_sym_LBRACE, + STATE(9936), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218264] = 4, - ACTIONS(7581), 1, - anon_sym_COMMA, - ACTIONS(11646), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, + [218426] = 4, + ACTIONS(4337), 1, + anon_sym_while, + ACTIONS(8513), 1, + anon_sym_LBRACE, + STATE(9994), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218278] = 3, - ACTIONS(11648), 1, - anon_sym_COLON, + [218440] = 4, + ACTIONS(11176), 1, + anon_sym_LPAREN, + ACTIONS(11552), 1, + anon_sym_LBRACE, + STATE(10003), 1, + sym_when_subject, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11650), 2, + [218454] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, + ACTIONS(11554), 1, anon_sym_GT, - [218290] = 4, - ACTIONS(11652), 1, - anon_sym_COMMA, - ACTIONS(11654), 1, - anon_sym_RPAREN, - STATE(9013), 1, - aux_sym_value_arguments_repeat1, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218304] = 4, - ACTIONS(11359), 1, + [218468] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11656), 1, + ACTIONS(11556), 1, anon_sym_GT, - STATE(9069), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218318] = 4, - ACTIONS(11347), 1, - anon_sym_COMMA, - ACTIONS(11658), 1, - anon_sym_RPAREN, - STATE(9049), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8973), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218332] = 4, - ACTIONS(11359), 1, + [218482] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11660), 1, + ACTIONS(11558), 1, anon_sym_GT, - STATE(8980), 1, - aux_sym_type_parameters_repeat1, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218346] = 2, + [218496] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4710), 3, + ACTIONS(10691), 3, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_in, - [218356] = 4, - ACTIONS(11359), 1, + anon_sym_SEMI, + [218506] = 4, + ACTIONS(5468), 1, + anon_sym_RPAREN, + ACTIONS(11560), 1, anon_sym_COMMA, - ACTIONS(11662), 1, - anon_sym_GT, - STATE(8955), 1, - aux_sym_type_parameters_repeat1, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218370] = 4, - ACTIONS(7581), 1, + [218520] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11664), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218384] = 3, - ACTIONS(11666), 1, - anon_sym_COLON, + ACTIONS(11562), 1, + anon_sym_GT, + STATE(8975), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11668), 2, + [218534] = 4, + ACTIONS(11564), 1, anon_sym_COMMA, - anon_sym_GT, - [218396] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11670), 1, - anon_sym_EQ, - STATE(9516), 1, - sym_type_parameters, + ACTIONS(11566), 1, + anon_sym_RPAREN, + STATE(9018), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218410] = 4, - ACTIONS(11268), 1, + [218548] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11672), 1, + ACTIONS(11568), 1, anon_sym_GT, - STATE(8940), 1, + STATE(9019), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218424] = 4, - ACTIONS(7581), 1, + [218562] = 4, + ACTIONS(11570), 1, anon_sym_COMMA, - ACTIONS(11674), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [218438] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11676), 1, - anon_sym_EQ, - STATE(9534), 1, - sym_type_parameters, + ACTIONS(11572), 1, + anon_sym_RPAREN, + STATE(8977), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218452] = 4, - ACTIONS(11359), 1, + [218576] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11678), 1, + ACTIONS(11574), 1, anon_sym_GT, - STATE(8955), 1, - aux_sym_type_parameters_repeat1, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218466] = 4, - ACTIONS(11680), 1, + [218590] = 4, + ACTIONS(11576), 1, anon_sym_COMMA, - ACTIONS(11682), 1, + ACTIONS(11579), 1, anon_sym_RPAREN, - STATE(8968), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8983), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218480] = 4, - ACTIONS(4718), 1, - anon_sym_while, - ACTIONS(8620), 1, + [218604] = 4, + ACTIONS(10575), 1, anon_sym_LBRACE, - STATE(9787), 1, - sym_enum_class_body, + ACTIONS(11581), 1, + sym__automatic_semicolon, + STATE(9819), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218494] = 4, - ACTIONS(8549), 1, + [218618] = 4, + ACTIONS(8438), 1, anon_sym_LBRACE, - ACTIONS(11684), 1, + ACTIONS(11583), 1, sym__automatic_semicolon, - STATE(9821), 1, + STATE(9815), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218508] = 4, - ACTIONS(11268), 1, + [218632] = 4, + ACTIONS(11585), 1, anon_sym_COMMA, - ACTIONS(11686), 1, - anon_sym_GT, - STATE(9020), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(11587), 1, + anon_sym_RPAREN, + STATE(9032), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218522] = 4, - ACTIONS(5556), 1, + [218646] = 4, + ACTIONS(8726), 1, anon_sym_RPAREN, - ACTIONS(11688), 1, + ACTIONS(11589), 1, anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + STATE(8959), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218536] = 4, - ACTIONS(11359), 1, + [218660] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11690), 1, - anon_sym_GT, - STATE(9053), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11591), 1, + anon_sym_RPAREN, + STATE(8909), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218550] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11692), 1, - anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + [218674] = 3, + STATE(8945), 1, + sym_constructor_delegation_call, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218564] = 4, - ACTIONS(9338), 1, + ACTIONS(11438), 2, + anon_sym_this, + anon_sym_super, + [218686] = 4, + ACTIONS(5478), 1, anon_sym_RPAREN, - ACTIONS(11694), 1, + ACTIONS(11593), 1, anon_sym_COMMA, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218578] = 4, - ACTIONS(7581), 1, + [218700] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11696), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11595), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218714] = 4, + ACTIONS(11247), 1, + anon_sym_COMMA, + ACTIONS(11597), 1, + anon_sym_RPAREN, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218592] = 4, - ACTIONS(4429), 1, + [218728] = 4, + ACTIONS(4337), 1, anon_sym_while, - ACTIONS(8608), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(9724), 1, - sym_class_body, + STATE(9994), 1, + sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218606] = 4, - ACTIONS(8897), 1, - anon_sym_RPAREN, - ACTIONS(11698), 1, - anon_sym_COMMA, - STATE(8841), 1, - aux_sym__class_parameters_repeat1, + [218742] = 4, + ACTIONS(7048), 1, + sym__automatic_semicolon, + ACTIONS(10615), 1, + anon_sym_LPAREN, + STATE(8590), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218620] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11700), 1, - anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + [218756] = 4, + ACTIONS(4457), 1, + anon_sym_while, + ACTIONS(8513), 1, + anon_sym_LBRACE, + STATE(9998), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218634] = 4, - ACTIONS(8837), 1, - anon_sym_RPAREN, - ACTIONS(11702), 1, + [218770] = 4, + ACTIONS(11599), 1, anon_sym_COMMA, - STATE(8841), 1, + ACTIONS(11601), 1, + anon_sym_RPAREN, + STATE(8827), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218648] = 4, - ACTIONS(11704), 1, - anon_sym_COMMA, - ACTIONS(11706), 1, + [218784] = 4, + ACTIONS(9292), 1, anon_sym_RPAREN, - STATE(9055), 1, + ACTIONS(11603), 1, + anon_sym_COMMA, + STATE(8920), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218662] = 4, - ACTIONS(11268), 1, + [218798] = 3, + STATE(3147), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218810] = 4, + ACTIONS(11170), 1, anon_sym_COMMA, - ACTIONS(11708), 1, + ACTIONS(11605), 1, anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + STATE(8925), 1, + aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218676] = 4, - ACTIONS(5624), 1, - anon_sym_RPAREN, - ACTIONS(11710), 1, + [218824] = 4, + ACTIONS(11607), 1, anon_sym_COMMA, - STATE(8882), 1, + ACTIONS(11609), 1, + anon_sym_RPAREN, + STATE(9092), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218690] = 4, - ACTIONS(9378), 1, - anon_sym_RPAREN, - ACTIONS(11712), 1, - anon_sym_COMMA, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, + [218838] = 4, + ACTIONS(4593), 1, + anon_sym_while, + ACTIONS(8513), 1, + anon_sym_LBRACE, + STATE(10010), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218704] = 4, - ACTIONS(11355), 1, + [218852] = 4, + ACTIONS(11247), 1, anon_sym_COMMA, - ACTIONS(11714), 1, + ACTIONS(11611), 1, anon_sym_RPAREN, - STATE(8967), 1, + STATE(8910), 1, aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218718] = 4, - ACTIONS(4202), 1, + [218866] = 3, + STATE(3157), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218878] = 4, + ACTIONS(3240), 1, anon_sym_while, - ACTIONS(8620), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(9573), 1, + STATE(10011), 1, sym_enum_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218732] = 4, - ACTIONS(8895), 1, - anon_sym_RPAREN, - ACTIONS(11716), 1, + [218892] = 4, + ACTIONS(11613), 1, anon_sym_COMMA, - STATE(8841), 1, + ACTIONS(11615), 1, + anon_sym_RPAREN, + STATE(8987), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218746] = 4, - ACTIONS(11497), 1, + [218906] = 4, + ACTIONS(4204), 1, + anon_sym_while, + ACTIONS(8513), 1, + anon_sym_LBRACE, + STATE(10025), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [218920] = 4, + ACTIONS(11359), 1, anon_sym_COMMA, - ACTIONS(11718), 1, + ACTIONS(11617), 1, anon_sym_DASH_GT, - STATE(8956), 1, + STATE(8867), 1, aux_sym_lambda_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218760] = 4, - ACTIONS(11720), 1, - anon_sym_COMMA, - ACTIONS(11722), 1, - anon_sym_RPAREN, - STATE(8995), 1, - aux_sym_function_value_parameters_repeat1, + [218934] = 3, + STATE(3158), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218774] = 4, - ACTIONS(11724), 1, - anon_sym_COMMA, - ACTIONS(11726), 1, - anon_sym_RPAREN, - STATE(9060), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218946] = 4, + ACTIONS(9124), 1, + anon_sym_LT, + ACTIONS(11619), 1, + anon_sym_EQ, + STATE(9845), 1, + sym_type_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218788] = 4, - ACTIONS(11347), 1, - anon_sym_COMMA, - ACTIONS(11728), 1, - anon_sym_RPAREN, - STATE(8951), 1, - aux_sym_multi_variable_declaration_repeat1, + [218960] = 3, + STATE(4833), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218802] = 4, - ACTIONS(11347), 1, - anon_sym_COMMA, - ACTIONS(11730), 1, - anon_sym_RPAREN, - STATE(8886), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(285), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [218972] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218816] = 4, - ACTIONS(5564), 1, - anon_sym_RPAREN, - ACTIONS(11732), 1, + ACTIONS(11621), 3, + sym__automatic_semicolon, + anon_sym_DOT, + anon_sym_as, + [218982] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11623), 1, + anon_sym_GT, + STATE(8991), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218830] = 4, - ACTIONS(4417), 1, - anon_sym_while, - ACTIONS(8620), 1, - anon_sym_LBRACE, - STATE(9615), 1, - sym_enum_class_body, + [218996] = 4, + ACTIONS(11625), 1, + anon_sym_COMMA, + ACTIONS(11627), 1, + anon_sym_RPAREN, + STATE(8948), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218844] = 4, - ACTIONS(11359), 1, - anon_sym_COMMA, - ACTIONS(11734), 1, - anon_sym_GT, - STATE(9071), 1, - aux_sym_type_parameters_repeat1, + [219010] = 4, + ACTIONS(11389), 1, + anon_sym_DOT, + ACTIONS(11629), 1, + sym__automatic_semicolon, + STATE(8882), 1, + aux_sym_identifier_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218858] = 4, - ACTIONS(8867), 1, - anon_sym_RPAREN, - ACTIONS(11736), 1, + [219024] = 4, + ACTIONS(11631), 1, anon_sym_COMMA, - STATE(8841), 1, + ACTIONS(11633), 1, + anon_sym_RPAREN, + STATE(8840), 1, aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218872] = 4, - ACTIONS(11738), 1, + [219038] = 4, + ACTIONS(11635), 1, anon_sym_COMMA, - ACTIONS(11740), 1, + ACTIONS(11637), 1, anon_sym_RPAREN, - STATE(9088), 1, + STATE(8997), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218886] = 4, - ACTIONS(8877), 1, - anon_sym_RPAREN, - ACTIONS(11742), 1, + [219052] = 4, + ACTIONS(7569), 1, anon_sym_COMMA, - STATE(8841), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11639), 1, + anon_sym_RBRACK, + STATE(8808), 1, + aux_sym_indexing_suffix_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218900] = 4, - ACTIONS(11744), 1, - anon_sym_COMMA, - ACTIONS(11746), 1, + [219066] = 4, + ACTIONS(5520), 1, anon_sym_RPAREN, - STATE(9016), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11641), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218914] = 4, - ACTIONS(11268), 1, + [219080] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11748), 1, + ACTIONS(11643), 1, anon_sym_GT, - STATE(8877), 1, + STATE(8934), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218928] = 3, - STATE(5156), 1, + [219094] = 3, + STATE(3161), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, + ACTIONS(623), 2, sym__alpha_identifier, sym__backtick_identifier, - [218940] = 4, - ACTIONS(11750), 1, + [219106] = 4, + ACTIONS(11200), 1, anon_sym_COMMA, - ACTIONS(11752), 1, + ACTIONS(11645), 1, anon_sym_RPAREN, - STATE(9033), 1, - aux_sym_value_arguments_repeat1, + STATE(8875), 1, + aux_sym_multi_variable_declaration_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218954] = 4, - ACTIONS(11754), 1, + [219120] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11756), 1, - anon_sym_RPAREN, - STATE(8884), 1, - aux_sym_value_arguments_repeat1, + ACTIONS(11647), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218968] = 3, - STATE(3391), 1, - sym__lexical_identifier, + [219134] = 4, + ACTIONS(5432), 1, + anon_sym_LBRACE, + ACTIONS(9856), 1, + anon_sym_COLON, + STATE(4741), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(337), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [218980] = 4, - ACTIONS(11268), 1, + [219148] = 4, + ACTIONS(5500), 1, + anon_sym_RPAREN, + ACTIONS(11649), 1, anon_sym_COMMA, - ACTIONS(11758), 1, - anon_sym_GT, - STATE(9032), 1, - aux_sym_type_arguments_repeat1, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [218994] = 4, - ACTIONS(4674), 1, + [219162] = 4, + ACTIONS(4609), 1, anon_sym_while, - ACTIONS(8608), 1, + ACTIONS(8513), 1, anon_sym_LBRACE, - STATE(9471), 1, + STATE(9927), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219008] = 4, - ACTIONS(11516), 1, - anon_sym_DOT, - ACTIONS(11760), 1, - sym__automatic_semicolon, - STATE(8913), 1, - aux_sym_identifier_repeat1, + [219176] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11651), 1, + anon_sym_GT, + STATE(9022), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219022] = 4, - ACTIONS(9376), 1, - anon_sym_RPAREN, - ACTIONS(11762), 1, + [219190] = 4, + ACTIONS(11653), 1, anon_sym_COMMA, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11655), 1, + anon_sym_RPAREN, + STATE(9024), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219036] = 3, - ACTIONS(11764), 1, - anon_sym_EQ, + [219204] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11657), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11766), 2, - anon_sym_COMMA, + [219218] = 4, + ACTIONS(5506), 1, anon_sym_RPAREN, - [219048] = 3, - STATE(5157), 1, - sym__lexical_identifier, + ACTIONS(11659), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [219060] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11768), 1, - anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + [219232] = 4, + ACTIONS(3190), 1, + anon_sym_LBRACE, + ACTIONS(9871), 1, + anon_sym_COLON, + STATE(1098), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219074] = 4, - ACTIONS(11268), 1, + [219246] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11770), 1, + ACTIONS(11661), 1, anon_sym_GT, - STATE(8877), 1, + STATE(9028), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219088] = 4, - ACTIONS(5502), 1, + [219260] = 4, + ACTIONS(8706), 1, anon_sym_RPAREN, - ACTIONS(11772), 1, + ACTIONS(11663), 1, anon_sym_COMMA, - STATE(8882), 1, - aux_sym_value_arguments_repeat1, + STATE(8959), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219102] = 4, - ACTIONS(11774), 1, + [219274] = 4, + ACTIONS(4204), 1, + anon_sym_while, + ACTIONS(8601), 1, + anon_sym_LBRACE, + STATE(10025), 1, + sym_enum_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219288] = 4, + ACTIONS(4414), 1, + anon_sym_while, + ACTIONS(8513), 1, + anon_sym_LBRACE, + STATE(10026), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219302] = 4, + ACTIONS(11665), 1, anon_sym_COMMA, - ACTIONS(11776), 1, + ACTIONS(11667), 1, anon_sym_RPAREN, - STATE(9062), 1, + STATE(9029), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219116] = 4, - ACTIONS(11268), 1, + [219316] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11778), 1, + ACTIONS(11669), 1, anon_sym_GT, - STATE(9081), 1, + STATE(8934), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219130] = 4, - ACTIONS(5550), 1, + [219330] = 4, + ACTIONS(5516), 1, anon_sym_RPAREN, - ACTIONS(11780), 1, + ACTIONS(11671), 1, anon_sym_COMMA, - STATE(8882), 1, + STATE(8933), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219144] = 4, - ACTIONS(7581), 1, + [219344] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11782), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11673), 1, + anon_sym_GT, + STATE(9036), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219158] = 3, - STATE(5159), 1, - sym__lexical_identifier, + [219358] = 4, + ACTIONS(11675), 1, + anon_sym_COMMA, + ACTIONS(11677), 1, + anon_sym_RPAREN, + STATE(9037), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(111), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [219170] = 3, - STATE(5160), 1, + [219372] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11679), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219386] = 3, + STATE(5200), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, @@ -658466,13151 +658941,13151 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(111), 2, sym__alpha_identifier, sym__backtick_identifier, - [219182] = 4, - ACTIONS(11359), 1, + [219398] = 4, + ACTIONS(11170), 1, anon_sym_COMMA, - ACTIONS(11784), 1, + ACTIONS(11681), 1, anon_sym_GT, - STATE(8987), 1, + STATE(8913), 1, aux_sym_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219196] = 4, - ACTIONS(4425), 1, + [219412] = 3, + STATE(5199), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219424] = 4, + ACTIONS(3222), 1, anon_sym_while, - ACTIONS(8608), 1, + ACTIONS(8513), 1, anon_sym_LBRACE, - STATE(9693), 1, + STATE(10052), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219210] = 4, - ACTIONS(11396), 1, - anon_sym_COMMA, - ACTIONS(11786), 1, - anon_sym_DASH_GT, - STATE(8897), 1, - aux_sym_when_entry_repeat1, + [219438] = 3, + STATE(5198), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219224] = 4, - ACTIONS(7581), 1, - anon_sym_COMMA, - ACTIONS(11788), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219450] = 3, + STATE(5189), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219238] = 2, + ACTIONS(111), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219462] = 3, + STATE(3088), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4421), 3, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [219248] = 4, - ACTIONS(11790), 1, - anon_sym_COMMA, - ACTIONS(11792), 1, + ACTIONS(623), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219474] = 4, + ACTIONS(5528), 1, anon_sym_RPAREN, - STATE(9085), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11683), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219262] = 4, - ACTIONS(11347), 1, + [219488] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11794), 1, - anon_sym_RPAREN, - STATE(8890), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11685), 1, + anon_sym_GT, + STATE(8828), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219276] = 3, - STATE(3162), 1, - sym__lexical_identifier, + [219502] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11687), 1, + anon_sym_GT, + STATE(9040), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(637), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [219288] = 4, - ACTIONS(11796), 1, - anon_sym_COMMA, - ACTIONS(11798), 1, + [219516] = 4, + ACTIONS(9310), 1, anon_sym_RPAREN, - STATE(9000), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11689), 1, + anon_sym_COMMA, + STATE(8920), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219302] = 4, - ACTIONS(11347), 1, + [219530] = 4, + ACTIONS(11691), 1, anon_sym_COMMA, - ACTIONS(11800), 1, + ACTIONS(11693), 1, anon_sym_RPAREN, - STATE(8971), 1, - aux_sym_multi_variable_declaration_repeat1, + STATE(8839), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219316] = 4, - ACTIONS(7581), 1, + [219544] = 4, + ACTIONS(11695), 1, anon_sym_COMMA, - ACTIONS(11802), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219330] = 4, - ACTIONS(5478), 1, + ACTIONS(11697), 1, anon_sym_RPAREN, - ACTIONS(11804), 1, - anon_sym_COMMA, - STATE(8882), 1, + STATE(9048), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219344] = 4, - ACTIONS(11355), 1, - anon_sym_COMMA, - ACTIONS(11806), 1, - anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, + [219558] = 3, + STATE(3514), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219358] = 4, - ACTIONS(11359), 1, - anon_sym_COMMA, - ACTIONS(11808), 1, - anon_sym_GT, - STATE(8955), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(201), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219570] = 4, + ACTIONS(11176), 1, + anon_sym_LPAREN, + ACTIONS(11699), 1, + anon_sym_LBRACE, + STATE(10005), 1, + sym_when_subject, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219584] = 3, + STATE(1092), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219372] = 4, - ACTIONS(11268), 1, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219596] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11810), 1, + ACTIONS(11701), 1, anon_sym_GT, - STATE(8864), 1, + STATE(8934), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219386] = 4, - ACTIONS(9368), 1, + [219610] = 4, + ACTIONS(5536), 1, anon_sym_RPAREN, - ACTIONS(11812), 1, + ACTIONS(11703), 1, anon_sym_COMMA, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219400] = 4, - ACTIONS(11268), 1, + [219624] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11814), 1, + ACTIONS(11705), 1, anon_sym_GT, - STATE(8877), 1, + STATE(9057), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219414] = 4, - ACTIONS(7581), 1, - anon_sym_COMMA, - ACTIONS(11816), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [219428] = 4, - ACTIONS(11268), 1, + [219638] = 4, + ACTIONS(8696), 1, + anon_sym_RPAREN, + ACTIONS(11707), 1, anon_sym_COMMA, - ACTIONS(11818), 1, - anon_sym_GT, - STATE(9002), 1, - aux_sym_type_arguments_repeat1, + STATE(8959), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219442] = 4, - ACTIONS(11820), 1, + [219652] = 4, + ACTIONS(11709), 1, anon_sym_COMMA, - ACTIONS(11822), 1, + ACTIONS(11711), 1, anon_sym_RPAREN, - STATE(9003), 1, + STATE(9058), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219456] = 4, - ACTIONS(9346), 1, - anon_sym_RPAREN, - ACTIONS(11824), 1, + [219666] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, + ACTIONS(11713), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219470] = 4, - ACTIONS(7581), 1, + [219680] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11826), 1, - anon_sym_RBRACK, - STATE(8908), 1, - aux_sym_indexing_suffix_repeat1, + ACTIONS(11715), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219484] = 4, - ACTIONS(5542), 1, + [219694] = 4, + ACTIONS(5558), 1, anon_sym_RPAREN, - ACTIONS(11828), 1, + ACTIONS(11717), 1, anon_sym_COMMA, - STATE(8882), 1, + STATE(8933), 1, aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219498] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11830), 1, - anon_sym_EQ, - STATE(9911), 1, - sym_type_parameters, + [219708] = 4, + ACTIONS(5544), 1, + anon_sym_RPAREN, + ACTIONS(11719), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219512] = 4, - ACTIONS(11832), 1, + [219722] = 4, + ACTIONS(11721), 1, anon_sym_COMMA, - ACTIONS(11834), 1, + ACTIONS(11723), 1, anon_sym_RPAREN, - STATE(8810), 1, - aux_sym__class_parameters_repeat1, + STATE(8917), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219526] = 4, - ACTIONS(11268), 1, + [219736] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11836), 1, + ACTIONS(11725), 1, anon_sym_GT, - STATE(9031), 1, + STATE(9063), 1, aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219540] = 4, - ACTIONS(11274), 1, - anon_sym_LPAREN, - ACTIONS(11838), 1, - anon_sym_LBRACE, - STATE(9846), 1, - sym_when_subject, + [219750] = 4, + ACTIONS(11727), 1, + anon_sym_COMMA, + ACTIONS(11729), 1, + anon_sym_RPAREN, + STATE(9065), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219554] = 4, - ACTIONS(11840), 1, - anon_sym_COMMA, - ACTIONS(11842), 1, + [219764] = 3, + STATE(851), 1, + sym__lexical_identifier, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11731), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219776] = 4, + ACTIONS(9294), 1, anon_sym_RPAREN, - STATE(9004), 1, + ACTIONS(11733), 1, + anon_sym_COMMA, + STATE(8920), 1, aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219568] = 4, - ACTIONS(4509), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - STATE(9533), 1, - sym_class_body, + [219790] = 3, + STATE(3577), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219582] = 4, - ACTIONS(11359), 1, + ACTIONS(201), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219802] = 4, + ACTIONS(11247), 1, anon_sym_COMMA, - ACTIONS(11844), 1, - anon_sym_GT, - STATE(8955), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(11735), 1, + anon_sym_RPAREN, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219596] = 4, - ACTIONS(3280), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - STATE(9861), 1, - sym_class_body, + [219816] = 4, + ACTIONS(11737), 1, + anon_sym_COMMA, + ACTIONS(11739), 1, + anon_sym_RPAREN, + STATE(9060), 1, + aux_sym__class_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219610] = 4, - ACTIONS(11359), 1, + [219830] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11846), 1, + ACTIONS(11741), 1, anon_sym_GT, - STATE(8955), 1, - aux_sym_type_parameters_repeat1, + STATE(9062), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219624] = 4, - ACTIONS(11355), 1, + [219844] = 4, + ACTIONS(11743), 1, anon_sym_COMMA, - ACTIONS(11848), 1, + ACTIONS(11745), 1, anon_sym_RPAREN, - STATE(8967), 1, - aux_sym_function_type_parameters_repeat1, + STATE(9064), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219638] = 3, - STATE(1106), 1, - sym__lexical_identifier, + [219858] = 4, + ACTIONS(4282), 1, + anon_sym_in, + ACTIONS(11747), 1, + sym__quest, + STATE(9076), 1, + aux_sym_nullable_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, - sym__alpha_identifier, - sym__backtick_identifier, - [219650] = 3, - STATE(1099), 1, + [219872] = 4, + ACTIONS(4272), 1, + anon_sym_in, + ACTIONS(11317), 1, + sym__quest, + STATE(8806), 1, + aux_sym_nullable_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [219886] = 3, + STATE(3578), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, + ACTIONS(201), 2, sym__alpha_identifier, sym__backtick_identifier, - [219662] = 3, - STATE(1097), 1, + [219898] = 3, + STATE(1091), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, + ACTIONS(419), 2, sym__alpha_identifier, sym__backtick_identifier, - [219674] = 3, - STATE(1093), 1, + [219910] = 3, + STATE(3579), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, + ACTIONS(201), 2, sym__alpha_identifier, sym__backtick_identifier, - [219686] = 4, - ACTIONS(11274), 1, - anon_sym_LPAREN, - ACTIONS(11850), 1, - anon_sym_LBRACE, - STATE(9820), 1, - sym_when_subject, + [219922] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11750), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219700] = 4, - ACTIONS(4670), 1, - anon_sym_while, - ACTIONS(8608), 1, - anon_sym_LBRACE, - STATE(9774), 1, - sym_class_body, + [219936] = 3, + STATE(1090), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219714] = 3, - ACTIONS(11852), 1, - anon_sym_AMP, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219948] = 4, + ACTIONS(5552), 1, + anon_sym_RPAREN, + ACTIONS(11752), 1, + anon_sym_COMMA, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 2, - sym__quest, - anon_sym_in, - [219726] = 3, - STATE(1169), 1, + [219962] = 3, + STATE(3581), 1, sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(427), 2, + ACTIONS(201), 2, sym__alpha_identifier, sym__backtick_identifier, - [219738] = 4, - ACTIONS(11268), 1, - anon_sym_COMMA, - ACTIONS(11854), 1, - anon_sym_GT, - STATE(8877), 1, - aux_sym_type_arguments_repeat1, + [219974] = 3, + STATE(1089), 1, + sym__lexical_identifier, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219752] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11856), 1, - anon_sym_EQ, - STATE(9765), 1, - sym_type_parameters, + ACTIONS(419), 2, + sym__alpha_identifier, + sym__backtick_identifier, + [219986] = 4, + ACTIONS(11754), 1, + anon_sym_COMMA, + ACTIONS(11756), 1, + anon_sym_RPAREN, + STATE(9070), 1, + aux_sym_function_value_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219766] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11858), 1, - anon_sym_EQ, - STATE(9709), 1, - sym_type_parameters, + [220000] = 4, + ACTIONS(11247), 1, + anon_sym_COMMA, + ACTIONS(11758), 1, + anon_sym_RPAREN, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219780] = 4, - ACTIONS(9182), 1, - anon_sym_LT, - ACTIONS(11860), 1, - anon_sym_EQ, - STATE(9811), 1, - sym_type_parameters, + [220014] = 4, + ACTIONS(11194), 1, + anon_sym_COMMA, + ACTIONS(11760), 1, + anon_sym_GT, + STATE(9081), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219794] = 4, - ACTIONS(8861), 1, - anon_sym_RPAREN, - ACTIONS(11862), 1, + [220028] = 4, + ACTIONS(11762), 1, anon_sym_COMMA, - STATE(8841), 1, - aux_sym__class_parameters_repeat1, + ACTIONS(11764), 1, + anon_sym_RPAREN, + STATE(9083), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219808] = 4, - ACTIONS(3210), 1, + [220042] = 4, + ACTIONS(5444), 1, anon_sym_LBRACE, - ACTIONS(9912), 1, + ACTIONS(9867), 1, anon_sym_COLON, - STATE(1083), 1, + STATE(3552), 1, sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219822] = 4, - ACTIONS(11347), 1, + [220056] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - ACTIONS(11864), 1, - anon_sym_RPAREN, - STATE(8971), 1, - aux_sym_multi_variable_declaration_repeat1, + ACTIONS(11766), 1, + anon_sym_GT, + STATE(8934), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219836] = 4, - ACTIONS(9336), 1, + [220070] = 4, + ACTIONS(5562), 1, anon_sym_RPAREN, - ACTIONS(11866), 1, + ACTIONS(11768), 1, anon_sym_COMMA, - STATE(8929), 1, - aux_sym_function_value_parameters_repeat1, + STATE(8933), 1, + aux_sym_value_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219850] = 3, - ACTIONS(11868), 1, - anon_sym_EQ, + [220084] = 4, + ACTIONS(11247), 1, + anon_sym_COMMA, + ACTIONS(11770), 1, + anon_sym_RPAREN, + STATE(8910), 1, + aux_sym_function_type_parameters_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11870), 2, + [220098] = 4, + ACTIONS(11194), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [219862] = 3, - ACTIONS(11872), 1, - anon_sym_AMP, + ACTIONS(11772), 1, + anon_sym_GT, + STATE(9091), 1, + aux_sym_type_arguments_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4317), 2, - sym__quest, - anon_sym_in, - [219874] = 3, - ACTIONS(11874), 1, - anon_sym_LPAREN, + [220112] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4854), 2, + ACTIONS(5039), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [219886] = 4, - ACTIONS(4425), 1, - anon_sym_while, - ACTIONS(8620), 1, - anon_sym_LBRACE, - STATE(9693), 1, - sym_enum_class_body, + [220121] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219900] = 3, - ACTIONS(11876), 1, - anon_sym_LBRACE, - STATE(3064), 1, - sym__block, + ACTIONS(4870), 2, + anon_sym_AT, + anon_sym_val, + [220130] = 3, + ACTIONS(11774), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219911] = 3, - ACTIONS(5510), 1, - anon_sym_LPAREN, - STATE(3294), 1, - sym__class_parameters, + [220141] = 3, + ACTIONS(11776), 1, + anon_sym_DOT, + STATE(9097), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219922] = 3, - ACTIONS(9712), 1, + [220152] = 3, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3321), 1, + STATE(3635), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219933] = 3, - ACTIONS(9712), 1, + [220163] = 3, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4041), 1, + STATE(3286), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219944] = 2, + [220174] = 3, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(3556), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4718), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [219953] = 3, - ACTIONS(11878), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [220185] = 3, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(3572), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219964] = 3, - ACTIONS(11880), 1, - anon_sym_DOT, - STATE(9098), 1, - aux_sym_user_type_repeat1, + [220196] = 3, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(3294), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219975] = 3, - ACTIONS(9712), 1, + [220207] = 3, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(3320), 1, + STATE(3523), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219986] = 3, - ACTIONS(9712), 1, + [220218] = 3, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(3322), 1, + STATE(3293), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [219997] = 3, - ACTIONS(9712), 1, + [220229] = 3, + ACTIONS(3160), 1, + anon_sym_LPAREN, + STATE(3011), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220240] = 3, + ACTIONS(11778), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220251] = 3, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4084), 1, + STATE(3422), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220008] = 3, - ACTIONS(9714), 1, + [220262] = 3, + ACTIONS(11780), 1, + anon_sym_DOT, + STATE(9107), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220273] = 3, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3297), 1, + STATE(3645), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220019] = 3, - ACTIONS(11882), 1, + [220284] = 3, + ACTIONS(11782), 1, anon_sym_DOT, - STATE(8275), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220030] = 3, - ACTIONS(11884), 1, + [220295] = 3, + ACTIONS(11784), 1, anon_sym_DOT, - STATE(9104), 1, + STATE(9111), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220041] = 3, - ACTIONS(9714), 1, + [220306] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(4050), 1, + STATE(5262), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220052] = 3, - ACTIONS(9714), 1, + [220317] = 3, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(4051), 1, + STATE(2963), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220063] = 3, - ACTIONS(11886), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [220328] = 3, + ACTIONS(10294), 1, + anon_sym_get, + ACTIONS(10296), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220074] = 3, - ACTIONS(11888), 1, - anon_sym_DOT, - STATE(9108), 1, - aux_sym_user_type_repeat1, + [220339] = 3, + ACTIONS(9690), 1, + anon_sym_LPAREN, + STATE(5264), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220085] = 3, - ACTIONS(9694), 1, + [220350] = 3, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3328), 1, + STATE(2961), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220096] = 3, - ACTIONS(9694), 1, + [220361] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(3330), 1, + STATE(4646), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220107] = 3, - ACTIONS(9714), 1, + [220372] = 3, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(4052), 1, + STATE(2957), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220118] = 3, - ACTIONS(9694), 1, + [220383] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(3331), 1, + STATE(5266), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220129] = 3, - ACTIONS(11890), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [220394] = 3, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(2945), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220140] = 3, - ACTIONS(9694), 1, + [220405] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(3332), 1, + STATE(2775), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220151] = 3, - ACTIONS(9714), 1, + [220416] = 3, + ACTIONS(5716), 1, anon_sym_LPAREN, - STATE(4067), 1, + STATE(5079), 1, + sym__class_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220427] = 3, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(3672), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220162] = 3, - ACTIONS(9756), 1, + [220438] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(1227), 1, + STATE(2785), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220173] = 3, - ACTIONS(9756), 1, + [220449] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(1235), 1, + STATE(3526), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220184] = 3, - ACTIONS(9756), 1, + [220460] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(1232), 1, + STATE(2790), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220195] = 3, - ACTIONS(9756), 1, + [220471] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(1226), 1, + STATE(2772), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220206] = 3, - ACTIONS(9732), 1, + [220482] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(4661), 1, + STATE(3517), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220217] = 3, - ACTIONS(9714), 1, + [220493] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(3347), 1, + STATE(813), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220228] = 3, - ACTIONS(3256), 1, + [220504] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(3039), 1, - sym__class_parameters, + STATE(5395), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220239] = 3, - ACTIONS(8610), 1, + [220515] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(8632), 1, - sym__class_parameters, + STATE(814), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220250] = 2, + [220526] = 3, + ACTIONS(9638), 1, + anon_sym_LPAREN, + STATE(816), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11892), 2, - sym__automatic_semicolon, - anon_sym_LBRACE, - [220259] = 3, - ACTIONS(9694), 1, + [220537] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(2857), 1, + STATE(825), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220270] = 3, - ACTIONS(11894), 1, + [220548] = 3, + ACTIONS(9690), 1, + anon_sym_LPAREN, + STATE(4529), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220559] = 3, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(2866), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220570] = 3, + ACTIONS(11786), 1, anon_sym_DOT, - STATE(9114), 1, + STATE(9145), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220281] = 3, - ACTIONS(10701), 1, - anon_sym_LBRACE, - STATE(8595), 1, - sym__block, + [220581] = 3, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(3507), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220292] = 3, - ACTIONS(9732), 1, + [220592] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(4670), 1, + STATE(3472), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220303] = 3, - ACTIONS(9712), 1, + [220603] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(2924), 1, + STATE(4540), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220314] = 3, - ACTIONS(3256), 1, + [220614] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(3023), 1, - sym__class_parameters, + STATE(833), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220325] = 2, + [220625] = 3, + ACTIONS(9638), 1, + anon_sym_LPAREN, + STATE(834), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1792), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220334] = 3, - ACTIONS(9712), 1, + [220636] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(2927), 1, + STATE(835), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220345] = 3, - ACTIONS(11896), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [220647] = 3, + ACTIONS(9638), 1, + anon_sym_LPAREN, + STATE(843), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220356] = 3, - ACTIONS(11898), 1, + [220658] = 3, + ACTIONS(11788), 1, anon_sym_DOT, - STATE(9134), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220367] = 3, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(4841), 1, - sym_function_value_parameters, + [220669] = 3, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(8613), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220378] = 3, - ACTIONS(9712), 1, + [220680] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(2932), 1, + STATE(4538), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220389] = 3, - ACTIONS(9694), 1, + [220691] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(2835), 1, + STATE(4539), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220400] = 3, - ACTIONS(11900), 1, - sym__automatic_semicolon, - STATE(3789), 1, - sym__semi, + [220702] = 3, + ACTIONS(11790), 1, + anon_sym_DOT, + STATE(9151), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220411] = 3, - ACTIONS(10523), 1, - anon_sym_get, - ACTIONS(10525), 1, - anon_sym_set, + [220713] = 3, + ACTIONS(9690), 1, + anon_sym_LPAREN, + STATE(5284), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220422] = 3, - ACTIONS(11902), 1, + [220724] = 3, + ACTIONS(11792), 1, anon_sym_DOT, - STATE(8275), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220433] = 3, - ACTIONS(9712), 1, + [220735] = 3, + ACTIONS(11794), 1, + anon_sym_LBRACE, + STATE(3659), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220746] = 3, + ACTIONS(11796), 1, + sym__automatic_semicolon, + STATE(3757), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220757] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(2940), 1, + STATE(5379), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220444] = 3, - ACTIONS(11904), 1, + [220768] = 3, + ACTIONS(11798), 1, anon_sym_DOT, - STATE(9141), 1, + STATE(9165), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220455] = 3, - ACTIONS(7780), 1, - anon_sym_RBRACE, - ACTIONS(11906), 1, - anon_sym_SEMI, + [220779] = 3, + ACTIONS(9654), 1, + anon_sym_LPAREN, + STATE(5387), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220466] = 3, - ACTIONS(9694), 1, + [220790] = 3, + ACTIONS(5716), 1, anon_sym_LPAREN, - STATE(2858), 1, - sym_function_value_parameters, + STATE(5108), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220477] = 3, - ACTIONS(9694), 1, + [220801] = 3, + ACTIONS(3160), 1, anon_sym_LPAREN, - STATE(2801), 1, - sym_function_value_parameters, + STATE(2972), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220488] = 3, - ACTIONS(9694), 1, + [220812] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(2867), 1, + STATE(5402), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220499] = 3, - ACTIONS(7772), 1, - anon_sym_RBRACE, - ACTIONS(11908), 1, - anon_sym_SEMI, + [220823] = 3, + ACTIONS(11800), 1, + anon_sym_DOT, + STATE(9161), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220510] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(4673), 1, - sym_function_value_parameters, + [220834] = 3, + ACTIONS(11802), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220521] = 3, - ACTIONS(9694), 1, - anon_sym_LPAREN, - STATE(2771), 1, - sym_function_value_parameters, + [220845] = 3, + ACTIONS(11804), 1, + anon_sym_DOT, + STATE(9163), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220532] = 2, + [220856] = 3, + ACTIONS(11806), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4454), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220541] = 3, - ACTIONS(3212), 1, + [220867] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(988), 1, - sym__class_parameters, + STATE(2876), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220552] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(4676), 1, - sym_function_value_parameters, + [220878] = 3, + ACTIONS(11808), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220563] = 3, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(3272), 1, - sym_function_value_parameters, + [220889] = 3, + ACTIONS(11794), 1, + anon_sym_LBRACE, + STATE(3670), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220574] = 3, - ACTIONS(9694), 1, - anon_sym_LPAREN, - STATE(2774), 1, - sym_function_value_parameters, + [220900] = 3, + ACTIONS(11810), 1, + anon_sym_DOT, + STATE(9168), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220911] = 3, + ACTIONS(11812), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220585] = 3, + [220922] = 3, ACTIONS(9756), 1, anon_sym_LPAREN, - STATE(1285), 1, + STATE(4649), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220596] = 3, - ACTIONS(9694), 1, + [220933] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(2800), 1, + STATE(4877), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220607] = 2, + [220944] = 3, + ACTIONS(11814), 1, + sym__automatic_semicolon, + STATE(3661), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5103), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220616] = 3, - ACTIONS(10393), 1, + [220955] = 3, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(8532), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220966] = 3, + ACTIONS(11816), 1, + anon_sym_DOT, + STATE(9175), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [220977] = 3, + ACTIONS(10563), 1, anon_sym_get, - ACTIONS(10395), 1, + ACTIONS(10565), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220627] = 3, - ACTIONS(11910), 1, + [220988] = 3, + ACTIONS(11818), 1, anon_sym_DOT, - STATE(8275), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220638] = 3, - ACTIONS(9756), 1, + [220999] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(817), 1, + STATE(4882), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220649] = 3, - ACTIONS(3212), 1, - anon_sym_LPAREN, - STATE(946), 1, - sym__class_parameters, + [221010] = 3, + ACTIONS(7723), 1, + anon_sym_RBRACE, + ACTIONS(11820), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220660] = 3, - ACTIONS(9756), 1, + [221021] = 3, + ACTIONS(1606), 1, + anon_sym_LBRACE, + STATE(1065), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221032] = 3, + ACTIONS(7707), 1, + anon_sym_RBRACE, + ACTIONS(11822), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221043] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(819), 1, + STATE(2877), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220671] = 3, - ACTIONS(9714), 1, + [221054] = 3, + ACTIONS(25), 1, + anon_sym_LBRACE, + STATE(5227), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221065] = 3, + ACTIONS(6488), 1, + anon_sym_LBRACE, + STATE(3546), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221076] = 3, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(3346), 1, + STATE(4074), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220682] = 2, + [221087] = 3, + ACTIONS(9654), 1, + anon_sym_LPAREN, + STATE(4886), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5131), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220691] = 3, - ACTIONS(9756), 1, + [221098] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(1244), 1, + STATE(4673), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220702] = 3, - ACTIONS(9756), 1, + [221109] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(825), 1, + STATE(4672), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220713] = 3, - ACTIONS(9756), 1, + [221120] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(3542), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221131] = 3, + ACTIONS(11824), 1, + anon_sym_DOT, + STATE(9199), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221142] = 3, + ACTIONS(5444), 1, + anon_sym_LBRACE, + STATE(3553), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221153] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(822), 1, + STATE(4669), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220724] = 2, + [221164] = 3, + ACTIONS(5758), 1, + anon_sym_LPAREN, + STATE(5063), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5143), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220733] = 3, - ACTIONS(9702), 1, + [221175] = 3, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(4826), 1, + STATE(4085), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220744] = 3, - ACTIONS(11912), 1, - anon_sym_DOT, - STATE(9175), 1, - aux_sym_user_type_repeat1, + [221186] = 3, + ACTIONS(1594), 1, + anon_sym_LBRACE, + STATE(3888), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220755] = 3, - ACTIONS(9712), 1, + [221197] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4083), 1, + STATE(4666), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220766] = 3, - ACTIONS(7814), 1, + [221208] = 3, + ACTIONS(6648), 1, + anon_sym_LBRACE, + STATE(3843), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221219] = 3, + ACTIONS(7681), 1, anon_sym_RBRACE, - ACTIONS(11914), 1, + ACTIONS(11826), 1, anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220777] = 3, - ACTIONS(9756), 1, + [221230] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(1237), 1, + STATE(4873), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220788] = 3, - ACTIONS(11916), 1, + [221241] = 3, + ACTIONS(5746), 1, + anon_sym_LBRACE, + STATE(3905), 1, + sym_class_body, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221252] = 3, + ACTIONS(11828), 1, anon_sym_DOT, - STATE(8275), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220799] = 2, + [221263] = 3, + ACTIONS(1594), 1, + anon_sym_LBRACE, + STATE(3973), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5135), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220808] = 2, + [221274] = 3, + ACTIONS(5758), 1, + anon_sym_LPAREN, + STATE(5022), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4425), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [220817] = 3, - ACTIONS(9756), 1, + [221285] = 3, + ACTIONS(5738), 1, anon_sym_LPAREN, - STATE(1242), 1, - sym_function_value_parameters, + STATE(3819), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220828] = 2, + [221296] = 3, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(2871), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4674), 2, - sym__automatic_semicolon, + [221307] = 3, + ACTIONS(7725), 1, anon_sym_RBRACE, - [220837] = 3, - ACTIONS(11918), 1, - anon_sym_DOT, - STATE(9183), 1, - aux_sym_user_type_repeat1, + ACTIONS(11830), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220848] = 3, - ACTIONS(11920), 1, - anon_sym_DOT, - STATE(9191), 1, - aux_sym_user_type_repeat1, + [221318] = 3, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(8588), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221329] = 3, + ACTIONS(3192), 1, + anon_sym_LPAREN, + STATE(929), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220859] = 3, - ACTIONS(11922), 1, + [221340] = 3, + ACTIONS(6372), 1, anon_sym_LBRACE, - STATE(3650), 1, + STATE(2929), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220870] = 3, - ACTIONS(11924), 1, + [221351] = 3, + ACTIONS(11832), 1, anon_sym_DOT, - STATE(8275), 1, + STATE(9213), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220881] = 3, - ACTIONS(9756), 1, + [221362] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11834), 2, + anon_sym_COMMA, + anon_sym_GT, + [221371] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(829), 1, + STATE(1265), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220892] = 3, - ACTIONS(11926), 1, - sym__automatic_semicolon, - STATE(3604), 1, - sym__semi, + [221382] = 3, + ACTIONS(10382), 1, + anon_sym_get, + ACTIONS(10384), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220903] = 3, - ACTIONS(9756), 1, - anon_sym_LPAREN, - STATE(833), 1, - sym_function_value_parameters, + [221393] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220914] = 3, - ACTIONS(10363), 1, - anon_sym_get, - ACTIONS(10365), 1, - anon_sym_set, + ACTIONS(3098), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221402] = 3, + ACTIONS(11836), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220925] = 3, - ACTIONS(10639), 1, - anon_sym_get, - ACTIONS(10641), 1, - anon_sym_set, + [221413] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220936] = 3, - ACTIONS(5510), 1, + ACTIONS(4099), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221422] = 3, + ACTIONS(5738), 1, anon_sym_LPAREN, - STATE(3323), 1, + STATE(3720), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220947] = 3, - ACTIONS(9756), 1, + [221433] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4345), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221442] = 3, + ACTIONS(3192), 1, anon_sym_LPAREN, - STATE(854), 1, - sym_function_value_parameters, + STATE(945), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220958] = 3, - ACTIONS(11928), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [221453] = 3, + ACTIONS(10238), 1, + anon_sym_get, + ACTIONS(10240), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220969] = 3, - ACTIONS(9756), 1, - anon_sym_LPAREN, - STATE(861), 1, - sym_function_value_parameters, + [221464] = 3, + ACTIONS(10406), 1, + anon_sym_get, + ACTIONS(10408), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220980] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(4540), 1, - sym_function_value_parameters, + [221475] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [220991] = 3, - ACTIONS(7732), 1, + ACTIONS(5163), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(11930), 1, - anon_sym_SEMI, + [221484] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221002] = 2, + ACTIONS(5001), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221493] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4444), 2, + ACTIONS(5025), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221011] = 3, - ACTIONS(11932), 1, - anon_sym_DOT, - STATE(9201), 1, - aux_sym_user_type_repeat1, + [221502] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221022] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(4917), 1, - sym_function_value_parameters, + ACTIONS(5151), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221511] = 3, + ACTIONS(11838), 1, + anon_sym_DOT, + STATE(9352), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221033] = 3, - ACTIONS(7760), 1, - anon_sym_RBRACE, - ACTIONS(11934), 1, - anon_sym_SEMI, + [221522] = 3, + ACTIONS(11840), 1, + anon_sym_DOT, + STATE(9228), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221044] = 3, - ACTIONS(9694), 1, - anon_sym_LPAREN, - STATE(3572), 1, - sym_function_value_parameters, + [221533] = 3, + ACTIONS(3190), 1, + anon_sym_LBRACE, + STATE(1039), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221055] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(4899), 1, - sym_function_value_parameters, + [221544] = 3, + ACTIONS(10525), 1, + anon_sym_get, + ACTIONS(10527), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221066] = 3, - ACTIONS(11936), 1, + [221555] = 3, + ACTIONS(11842), 1, anon_sym_DOT, - STATE(8275), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221077] = 3, - ACTIONS(9732), 1, + [221566] = 3, + ACTIONS(11844), 1, + sym__automatic_semicolon, + STATE(9358), 1, + sym__semi, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221577] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11846), 2, + sym__import_list_delimiter, + anon_sym_import, + [221586] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4539), 1, + STATE(1279), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221088] = 3, - ACTIONS(6427), 1, + [221597] = 3, + ACTIONS(10332), 1, + anon_sym_get, + ACTIONS(10334), 1, + anon_sym_set, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [221608] = 3, + ACTIONS(6372), 1, anon_sym_LBRACE, - STATE(2949), 1, + STATE(2925), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221099] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(3824), 1, - sym_lambda_literal, + [221619] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221110] = 3, - ACTIONS(6427), 1, + ACTIONS(11479), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [221628] = 3, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(2897), 1, + STATE(8467), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221121] = 3, - ACTIONS(9694), 1, + [221639] = 3, + ACTIONS(5412), 1, anon_sym_LPAREN, - STATE(3569), 1, - sym_function_value_parameters, + STATE(4683), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221132] = 3, - ACTIONS(9694), 1, + [221650] = 3, + ACTIONS(8440), 1, anon_sym_LPAREN, - STATE(3567), 1, - sym_function_value_parameters, + STATE(8465), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221143] = 3, - ACTIONS(9712), 1, + [221661] = 3, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4077), 1, + STATE(4136), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221154] = 3, - ACTIONS(9732), 1, + [221672] = 3, + ACTIONS(5446), 1, anon_sym_LPAREN, - STATE(4536), 1, - sym_function_value_parameters, + STATE(3304), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221165] = 3, - ACTIONS(9694), 1, - anon_sym_LPAREN, - STATE(3566), 1, - sym_function_value_parameters, + [221683] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221176] = 3, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4954), 1, - sym__block, + ACTIONS(1746), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221692] = 3, + ACTIONS(10615), 1, + anon_sym_LPAREN, + STATE(9275), 1, + sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221187] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(4534), 1, - sym_function_value_parameters, + [221703] = 3, + ACTIONS(10537), 1, + anon_sym_get, + ACTIONS(10539), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221198] = 3, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(3626), 1, - sym_function_value_parameters, + [221714] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221209] = 3, - ACTIONS(11938), 1, - anon_sym_DOT, - STATE(9160), 1, - aux_sym_user_type_repeat1, + ACTIONS(3230), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221723] = 3, + ACTIONS(7599), 1, + anon_sym_RBRACE, + ACTIONS(11848), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221220] = 2, + [221734] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4177), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221229] = 3, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(3627), 1, - sym_function_value_parameters, + ACTIONS(11579), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [221743] = 3, + ACTIONS(10252), 1, + anon_sym_get, + ACTIONS(10254), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221240] = 3, - ACTIONS(9714), 1, - anon_sym_LPAREN, - STATE(3342), 1, - sym_function_value_parameters, + [221754] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221251] = 3, - ACTIONS(11940), 1, + ACTIONS(5143), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221763] = 3, + ACTIONS(11850), 1, anon_sym_DOT, - STATE(9221), 1, + STATE(9267), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221262] = 3, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(3631), 1, - sym_function_value_parameters, + [221774] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221273] = 3, - ACTIONS(9712), 1, - anon_sym_LPAREN, - STATE(3634), 1, - sym_function_value_parameters, + ACTIONS(5043), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221783] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221284] = 3, - ACTIONS(11942), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + ACTIONS(4154), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221792] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221295] = 3, - ACTIONS(9714), 1, - anon_sym_LPAREN, - STATE(3552), 1, - sym_function_value_parameters, + ACTIONS(5131), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221801] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221306] = 3, - ACTIONS(9714), 1, - anon_sym_LPAREN, - STATE(3547), 1, - sym_function_value_parameters, + ACTIONS(5139), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221810] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221317] = 2, + ACTIONS(5159), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221819] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3422), 2, + ACTIONS(4337), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221326] = 3, - ACTIONS(9714), 1, + [221828] = 3, + ACTIONS(9758), 1, anon_sym_LPAREN, - STATE(3545), 1, + STATE(8327), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221337] = 3, - ACTIONS(11922), 1, + [221839] = 3, + ACTIONS(4085), 1, anon_sym_LBRACE, - STATE(3654), 1, + STATE(1034), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221348] = 3, - ACTIONS(9714), 1, - anon_sym_LPAREN, - STATE(3544), 1, - sym_function_value_parameters, + [221850] = 3, + ACTIONS(10422), 1, + anon_sym_get, + ACTIONS(10424), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221359] = 3, - ACTIONS(11944), 1, - anon_sym_DOT, - STATE(9231), 1, - aux_sym_user_type_repeat1, + [221861] = 3, + ACTIONS(1852), 1, + anon_sym_LBRACE, + STATE(3075), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221370] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(5284), 1, - sym_function_value_parameters, + [221872] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221381] = 3, - ACTIONS(10495), 1, - anon_sym_get, - ACTIONS(10497), 1, - anon_sym_set, + ACTIONS(7105), 2, + anon_sym_AT, + anon_sym_val, + [221881] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221392] = 3, - ACTIONS(11946), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + ACTIONS(4333), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221890] = 3, + ACTIONS(1606), 1, + anon_sym_LBRACE, + STATE(1029), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221403] = 3, - ACTIONS(9732), 1, + [221901] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4609), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221910] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(5282), 1, + STATE(4930), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221414] = 3, - ACTIONS(10593), 1, - anon_sym_get, - ACTIONS(10595), 1, - anon_sym_set, + [221921] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221425] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(5270), 1, - sym_function_value_parameters, + ACTIONS(4361), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221930] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221436] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(5265), 1, - sym_function_value_parameters, + ACTIONS(5115), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221939] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221447] = 3, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(4724), 1, - sym_function_value_parameters, + ACTIONS(11532), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [221948] = 3, + ACTIONS(11852), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221458] = 3, - ACTIONS(9702), 1, + [221959] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(5355), 1, + STATE(1285), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221469] = 3, - ACTIONS(25), 1, - anon_sym_LBRACE, - STATE(5090), 1, - sym_lambda_literal, + [221970] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221480] = 3, - ACTIONS(10701), 1, - anon_sym_LBRACE, - STATE(8551), 1, - sym__block, + ACTIONS(4457), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [221979] = 3, + ACTIONS(11854), 1, + sym__automatic_semicolon, + STATE(3431), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221491] = 2, + [221990] = 3, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(4063), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4266), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221500] = 2, + [222001] = 3, + ACTIONS(10318), 1, + anon_sym_get, + ACTIONS(10320), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4876), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221509] = 2, + [222012] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4989), 2, + ACTIONS(5155), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221518] = 2, + [222021] = 3, + ACTIONS(1582), 1, + anon_sym_LBRACE, + STATE(3563), 1, + sym_lambda_literal, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222032] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4421), 2, + ACTIONS(11856), 2, sym__automatic_semicolon, - anon_sym_RBRACE, - [221527] = 3, - ACTIONS(1658), 1, anon_sym_LBRACE, - STATE(1178), 1, - sym_lambda_literal, + [222041] = 3, + ACTIONS(9758), 1, + anon_sym_LPAREN, + STATE(8774), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221538] = 3, - ACTIONS(10653), 1, - anon_sym_get, - ACTIONS(10655), 1, - anon_sym_set, + [222052] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221549] = 3, - ACTIONS(10509), 1, + ACTIONS(3240), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222061] = 3, + ACTIONS(10575), 1, + anon_sym_LBRACE, + STATE(9578), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222072] = 3, + ACTIONS(10477), 1, anon_sym_get, - ACTIONS(10511), 1, + ACTIONS(10479), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221560] = 3, - ACTIONS(10565), 1, + [222083] = 3, + ACTIONS(10462), 1, anon_sym_get, - ACTIONS(10567), 1, + ACTIONS(10464), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221571] = 3, - ACTIONS(4240), 1, - anon_sym_while, - ACTIONS(11948), 1, + [222094] = 3, + ACTIONS(9756), 1, anon_sym_LPAREN, + STATE(4648), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221582] = 3, - ACTIONS(11950), 1, + [222105] = 3, + ACTIONS(11858), 1, anon_sym_DOT, - STATE(9263), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221593] = 3, - ACTIONS(9810), 1, + [222116] = 3, + ACTIONS(5446), 1, anon_sym_LPAREN, - STATE(8350), 1, - sym_function_value_parameters, + STATE(3275), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221604] = 2, + [222127] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1824), 2, + ACTIONS(4144), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221613] = 2, + [222136] = 3, + ACTIONS(11860), 1, + sym__automatic_semicolon, + STATE(5703), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4196), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221622] = 2, + [222147] = 3, + ACTIONS(10513), 1, + anon_sym_get, + ACTIONS(10515), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4902), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221631] = 2, + [222158] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3191), 2, + ACTIONS(5147), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221640] = 2, + [222167] = 3, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(4064), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222178] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(7147), 2, + anon_sym_AT, + anon_sym_val, + [222187] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11493), 2, + anon_sym_COMMA, + anon_sym_GT, + [222196] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5175), 2, + ACTIONS(5017), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221649] = 3, - ACTIONS(1836), 1, + [222205] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11488), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [222214] = 3, + ACTIONS(1852), 1, anon_sym_LBRACE, - STATE(4830), 1, + STATE(3104), 1, sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221660] = 3, - ACTIONS(10621), 1, - anon_sym_get, - ACTIONS(10623), 1, - anon_sym_set, + [222225] = 3, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(8571), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221671] = 3, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(5271), 1, - sym_function_value_parameters, + [222236] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221682] = 3, - ACTIONS(9716), 1, - anon_sym_LPAREN, - STATE(8319), 1, - sym_function_value_parameters, + ACTIONS(7093), 2, + anon_sym_AT, + anon_sym_val, + [222245] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221693] = 2, + ACTIONS(1772), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222254] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11952), 2, - anon_sym_COMMA, - anon_sym_GT, - [221702] = 3, - ACTIONS(9732), 1, - anon_sym_LPAREN, - STATE(4914), 1, - sym_function_value_parameters, + ACTIONS(7135), 2, + anon_sym_AT, + anon_sym_val, + [222263] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221713] = 3, - ACTIONS(5814), 1, - anon_sym_LPAREN, - STATE(3746), 1, - sym__class_parameters, + ACTIONS(7111), 2, + anon_sym_AT, + anon_sym_val, + [222272] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221724] = 3, - ACTIONS(11954), 1, + ACTIONS(4882), 2, + anon_sym_AT, + anon_sym_val, + [222281] = 3, + ACTIONS(11862), 1, anon_sym_DOT, - STATE(8275), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221735] = 2, + [222292] = 3, + ACTIONS(4220), 1, + anon_sym_while, + ACTIONS(11864), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5179), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221744] = 3, - ACTIONS(9702), 1, + [222303] = 3, + ACTIONS(4188), 1, + anon_sym_while, + ACTIONS(11866), 1, anon_sym_LPAREN, - STATE(4662), 1, - sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221755] = 3, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(4653), 1, - sym_function_value_parameters, + [222314] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(5103), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222323] = 3, + ACTIONS(10368), 1, + anon_sym_get, + ACTIONS(10370), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221766] = 2, + [222334] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4202), 2, + ACTIONS(121), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221775] = 3, - ACTIONS(11956), 1, + [222343] = 3, + ACTIONS(11868), 1, anon_sym_DOT, - STATE(9291), 1, + STATE(9309), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221786] = 3, - ACTIONS(9702), 1, + [222354] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4649), 1, + STATE(1260), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221797] = 3, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(5272), 1, - sym_function_value_parameters, + [222365] = 3, + ACTIONS(11870), 1, + anon_sym_DOT, + STATE(9300), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221808] = 3, - ACTIONS(9702), 1, + [222376] = 3, + ACTIONS(11872), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222387] = 3, + ACTIONS(9758), 1, anon_sym_LPAREN, - STATE(5274), 1, + STATE(8328), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221819] = 3, - ACTIONS(11958), 1, + [222398] = 3, + ACTIONS(11874), 1, anon_sym_DOT, - STATE(9424), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221830] = 3, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(4644), 1, - sym_function_value_parameters, + [222409] = 3, + ACTIONS(11876), 1, + anon_sym_DOT, + STATE(9311), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221841] = 3, - ACTIONS(10579), 1, - anon_sym_get, - ACTIONS(10581), 1, - anon_sym_set, + [222420] = 3, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(4126), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221852] = 3, - ACTIONS(5486), 1, - anon_sym_LPAREN, - STATE(4690), 1, - sym__class_parameters, + [222431] = 3, + ACTIONS(11878), 1, + anon_sym_COLON, + ACTIONS(11880), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221863] = 3, - ACTIONS(10551), 1, - anon_sym_get, - ACTIONS(10553), 1, - anon_sym_set, + [222442] = 3, + ACTIONS(4138), 1, + anon_sym_in, + ACTIONS(11882), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221874] = 3, - ACTIONS(8098), 1, + [222453] = 3, + ACTIONS(10605), 1, anon_sym_LBRACE, - STATE(4851), 1, + STATE(8601), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221885] = 3, - ACTIONS(11960), 1, - sym__automatic_semicolon, - STATE(9430), 1, - sym__semi, + [222464] = 3, + ACTIONS(11884), 1, + anon_sym_DOT, + STATE(9282), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221896] = 2, + [222475] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11962), 2, - sym__import_list_delimiter, - anon_sym_import, - [221905] = 2, + ACTIONS(7772), 2, + anon_sym_COMMA, + anon_sym_DASH_GT, + [222484] = 3, + ACTIONS(10212), 1, + anon_sym_get, + ACTIONS(10214), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11964), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [221914] = 3, - ACTIONS(8500), 1, + [222495] = 3, + ACTIONS(11886), 1, + anon_sym_DOT, + STATE(9324), 1, + aux_sym_user_type_repeat1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [222506] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(8510), 1, - sym__class_parameters, + STATE(1230), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221925] = 3, - ACTIONS(11966), 1, + [222517] = 3, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(892), 1, + STATE(5209), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221936] = 3, - ACTIONS(11966), 1, - anon_sym_LBRACE, - STATE(877), 1, - sym__block, + [222528] = 3, + ACTIONS(9638), 1, + anon_sym_LPAREN, + STATE(1209), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221947] = 2, + [222539] = 3, + ACTIONS(11888), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3292), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [221956] = 3, - ACTIONS(9714), 1, + [222550] = 3, + ACTIONS(9638), 1, anon_sym_LPAREN, - STATE(4134), 1, + STATE(1205), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221967] = 2, + [222561] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4768), 2, + ACTIONS(3298), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [221976] = 3, - ACTIONS(9810), 1, - anon_sym_LPAREN, - STATE(8329), 1, - sym_function_value_parameters, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [221987] = 3, - ACTIONS(11968), 1, - anon_sym_COLON, - ACTIONS(11970), 1, - anon_sym_RPAREN, + [222570] = 3, + ACTIONS(9906), 1, + anon_sym_get, + ACTIONS(9908), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [221998] = 3, - ACTIONS(1914), 1, - anon_sym_LBRACE, - STATE(3091), 1, - sym_lambda_literal, + [222581] = 3, + ACTIONS(5412), 1, + anon_sym_LPAREN, + STATE(4656), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222009] = 2, + [222592] = 3, + ACTIONS(9638), 1, + anon_sym_LPAREN, + STATE(1204), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4866), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222018] = 3, - ACTIONS(11972), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [222603] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222029] = 2, + ACTIONS(11890), 2, + anon_sym_COMMA, + anon_sym_GT, + [222612] = 3, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(3284), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4152), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222038] = 3, - ACTIONS(9714), 1, + [222623] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(4101), 1, + STATE(3283), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222049] = 2, + [222634] = 3, + ACTIONS(9656), 1, + anon_sym_LPAREN, + STATE(3282), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5091), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222058] = 3, - ACTIONS(7744), 1, - anon_sym_RBRACE, - ACTIONS(11974), 1, - anon_sym_SEMI, + [222645] = 3, + ACTIONS(5756), 1, + anon_sym_LBRACE, + STATE(5218), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222069] = 3, - ACTIONS(10317), 1, - anon_sym_get, - ACTIONS(10319), 1, - anon_sym_set, + [222656] = 3, + ACTIONS(11892), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222080] = 2, + [222667] = 3, + ACTIONS(11894), 1, + anon_sym_DOT, + STATE(9335), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5199), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222089] = 3, - ACTIONS(5494), 1, + [222678] = 3, + ACTIONS(25), 1, anon_sym_LBRACE, - STATE(4863), 1, - sym_class_body, + STATE(5202), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222100] = 3, - ACTIONS(9702), 1, - anon_sym_LPAREN, - STATE(5331), 1, - sym_function_value_parameters, + [222689] = 3, + ACTIONS(11896), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222111] = 3, - ACTIONS(9716), 1, - anon_sym_LPAREN, - STATE(8321), 1, - sym_function_value_parameters, + [222700] = 3, + ACTIONS(11898), 1, + anon_sym_DOT, + STATE(9338), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222122] = 2, + [222711] = 3, + ACTIONS(8040), 1, + anon_sym_LBRACE, + STATE(4594), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4462), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222131] = 3, - ACTIONS(3210), 1, + [222722] = 3, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(1047), 1, - sym_class_body, + STATE(4587), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222142] = 3, - ACTIONS(9702), 1, + [222733] = 3, + ACTIONS(9656), 1, anon_sym_LPAREN, - STATE(5397), 1, + STATE(3289), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222153] = 3, - ACTIONS(6427), 1, - anon_sym_LBRACE, - STATE(3203), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [222164] = 2, + [222744] = 3, + ACTIONS(9642), 1, + anon_sym_LPAREN, + STATE(8335), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(209), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222173] = 3, - ACTIONS(9702), 1, + [222755] = 3, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(5387), 1, + STATE(3317), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222184] = 3, - ACTIONS(1431), 1, - anon_sym_LBRACE, - STATE(3451), 1, - sym_lambda_literal, + [222766] = 3, + ACTIONS(9642), 1, + anon_sym_LPAREN, + STATE(8338), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222195] = 2, + [222777] = 3, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(3274), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4918), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222204] = 3, - ACTIONS(11976), 1, + [222788] = 3, + ACTIONS(11900), 1, anon_sym_DOT, - STATE(8275), 1, + STATE(9348), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222215] = 3, - ACTIONS(11978), 1, + [222799] = 3, + ACTIONS(11902), 1, anon_sym_DOT, - STATE(9309), 1, + STATE(8232), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222226] = 2, + [222810] = 3, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(3276), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3316), 2, + [222821] = 3, + ACTIONS(11904), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [222235] = 3, - ACTIONS(10228), 1, - anon_sym_get, - ACTIONS(10230), 1, - anon_sym_set, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [222246] = 3, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(4953), 1, - sym__block, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [222257] = 2, + STATE(3462), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5203), 2, - sym__automatic_semicolon, + [222832] = 3, + ACTIONS(7699), 1, anon_sym_RBRACE, - [222266] = 2, + ACTIONS(11906), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11980), 2, - sym__import_list_delimiter, - anon_sym_import, - [222275] = 3, - ACTIONS(5814), 1, - anon_sym_LPAREN, - STATE(3729), 1, - sym__class_parameters, + [222843] = 3, + ACTIONS(11908), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222286] = 3, - ACTIONS(11982), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [222854] = 3, + ACTIONS(3158), 1, + anon_sym_LBRACE, + STATE(3092), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222297] = 3, - ACTIONS(11984), 1, - anon_sym_DOT, - STATE(9317), 1, - aux_sym_user_type_repeat1, + [222865] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222308] = 2, + ACTIONS(11218), 2, + sym__automatic_semicolon, + anon_sym_DOT, + [222874] = 3, + ACTIONS(9644), 1, + anon_sym_LPAREN, + STATE(3281), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4888), 2, + [222885] = 3, + ACTIONS(11910), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [222317] = 3, - ACTIONS(6759), 1, - anon_sym_LBRACE, - STATE(3854), 1, - sym__block, + STATE(9457), 1, + sym__semi, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222328] = 3, - ACTIONS(8610), 1, + [222896] = 3, + ACTIONS(9644), 1, anon_sym_LPAREN, - STATE(8732), 1, - sym__class_parameters, + STATE(3640), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222339] = 3, - ACTIONS(10537), 1, - anon_sym_get, - ACTIONS(10539), 1, - anon_sym_set, + [222907] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222350] = 2, + ACTIONS(11912), 2, + sym__import_list_delimiter, + anon_sym_import, + [222916] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5207), 2, + ACTIONS(5035), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222359] = 3, - ACTIONS(5750), 1, + [222925] = 3, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(5225), 1, - sym__class_parameters, + STATE(4057), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222370] = 3, - ACTIONS(9734), 1, + [222936] = 3, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4620), 1, + STATE(4065), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222381] = 3, - ACTIONS(9702), 1, + [222947] = 3, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(4761), 1, + STATE(4067), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222392] = 2, + [222958] = 3, + ACTIONS(9690), 1, + anon_sym_LPAREN, + STATE(4939), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4509), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222401] = 3, - ACTIONS(5516), 1, - anon_sym_LBRACE, - STATE(3416), 1, - sym_class_body, + [222969] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222412] = 3, - ACTIONS(10701), 1, - anon_sym_LBRACE, - STATE(8511), 1, - sym__block, + ACTIONS(4276), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [222978] = 3, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(4069), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222423] = 3, - ACTIONS(1836), 1, - anon_sym_LBRACE, - STATE(4878), 1, - sym_lambda_literal, + [222989] = 3, + ACTIONS(8440), 1, + anon_sym_LPAREN, + STATE(8581), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222434] = 2, + [223000] = 3, + ACTIONS(9642), 1, + anon_sym_LPAREN, + STATE(8344), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5095), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222443] = 3, - ACTIONS(10711), 1, + [223011] = 3, + ACTIONS(4842), 1, + anon_sym_while, + ACTIONS(11914), 1, anon_sym_LPAREN, - STATE(9125), 1, - sym_value_arguments, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222454] = 2, + [223022] = 3, + ACTIONS(10282), 1, + anon_sym_get, + ACTIONS(10284), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1798), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222463] = 3, - ACTIONS(11986), 1, - anon_sym_DOT, - STATE(9337), 1, - aux_sym_user_type_repeat1, + [223033] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222474] = 3, - ACTIONS(5812), 1, - anon_sym_LBRACE, - STATE(3827), 1, - sym_class_body, + ACTIONS(3222), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223042] = 3, + ACTIONS(4852), 1, + anon_sym_while, + ACTIONS(11916), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222485] = 3, - ACTIONS(9734), 1, + [223053] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(4640), 1, + STATE(4641), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222496] = 3, - ACTIONS(11988), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [223064] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222507] = 3, - ACTIONS(6522), 1, - anon_sym_LBRACE, - STATE(3408), 1, - sym__block, + ACTIONS(5135), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223073] = 3, + ACTIONS(9690), 1, + anon_sym_LPAREN, + STATE(4642), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222518] = 3, - ACTIONS(9714), 1, - anon_sym_LPAREN, - STATE(4129), 1, - sym_function_value_parameters, + [223084] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222529] = 2, + ACTIONS(11151), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223093] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11990), 2, + ACTIONS(11245), 2, anon_sym_COMMA, - anon_sym_GT, - [222538] = 2, + anon_sym_DASH_GT, + [223102] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4417), 2, + ACTIONS(5127), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222547] = 3, - ACTIONS(7804), 1, - anon_sym_RBRACE, - ACTIONS(11992), 1, - anon_sym_SEMI, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [222558] = 3, - ACTIONS(9702), 1, + [223111] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(5275), 1, + STATE(4644), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222569] = 3, - ACTIONS(1431), 1, - anon_sym_LBRACE, - STATE(3401), 1, - sym_lambda_literal, + [223122] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222580] = 3, - ACTIONS(9716), 1, + ACTIONS(1766), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223131] = 3, + ACTIONS(9690), 1, anon_sym_LPAREN, - STATE(8674), 1, + STATE(4645), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222591] = 3, - ACTIONS(10677), 1, - anon_sym_LBRACE, - STATE(9578), 1, - sym__block, + [223142] = 3, + ACTIONS(8515), 1, + anon_sym_LPAREN, + STATE(8706), 1, + sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222602] = 3, - ACTIONS(11994), 1, - sym__automatic_semicolon, - STATE(5690), 1, - sym__semi, + [223153] = 3, + ACTIONS(10448), 1, + anon_sym_get, + ACTIONS(10450), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222613] = 2, + [223164] = 3, + ACTIONS(7597), 1, + anon_sym_RBRACE, + ACTIONS(11918), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4772), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222622] = 3, - ACTIONS(5750), 1, + [223175] = 3, + ACTIONS(9758), 1, anon_sym_LPAREN, - STATE(5215), 1, - sym__class_parameters, + STATE(8654), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222633] = 3, - ACTIONS(11996), 1, - anon_sym_DOT, - STATE(9351), 1, - aux_sym_user_type_repeat1, + [223186] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222644] = 3, - ACTIONS(11998), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + ACTIONS(4089), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223195] = 3, + ACTIONS(7565), 1, + anon_sym_RBRACE, + ACTIONS(11920), 1, + anon_sym_SEMI, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223206] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222655] = 3, - ACTIONS(10407), 1, + ACTIONS(4866), 2, + anon_sym_AT, + anon_sym_val, + [223215] = 3, + ACTIONS(10306), 1, anon_sym_get, - ACTIONS(10409), 1, + ACTIONS(10308), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222666] = 2, + [223226] = 3, + ACTIONS(9758), 1, + anon_sym_LPAREN, + STATE(8320), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7134), 2, - anon_sym_AT, - anon_sym_val, - [222675] = 2, + [223237] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5017), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222684] = 2, + ACTIONS(11922), 2, + anon_sym_COMMA, + anon_sym_GT, + [223246] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5159), 2, + ACTIONS(4918), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222693] = 2, + [223255] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4429), 2, + ACTIONS(1756), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222702] = 3, - ACTIONS(9734), 1, - anon_sym_LPAREN, - STATE(4633), 1, - sym_function_value_parameters, + [223264] = 3, + ACTIONS(10579), 1, + anon_sym_AMP, + ACTIONS(11924), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222713] = 3, - ACTIONS(12000), 1, - anon_sym_DOT, - STATE(9374), 1, - aux_sym_user_type_repeat1, + [223275] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222724] = 3, - ACTIONS(8098), 1, + ACTIONS(11464), 2, + anon_sym_COMMA, + anon_sym_GT, + [223284] = 3, + ACTIONS(1784), 1, anon_sym_LBRACE, - STATE(4613), 1, - sym__block, + STATE(4816), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222735] = 3, - ACTIONS(9716), 1, + [223295] = 3, + ACTIONS(9662), 1, anon_sym_LPAREN, - STATE(8326), 1, + STATE(4101), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222746] = 2, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - ACTIONS(11323), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [222755] = 3, - ACTIONS(8098), 1, + [223306] = 3, + ACTIONS(8040), 1, anon_sym_LBRACE, - STATE(4615), 1, + STATE(4812), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222766] = 3, - ACTIONS(12002), 1, - anon_sym_COLON, - ACTIONS(12004), 1, - anon_sym_RPAREN, + [223317] = 3, + ACTIONS(9654), 1, + anon_sym_LPAREN, + STATE(5296), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222777] = 3, - ACTIONS(9732), 1, + [223328] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4920), 1, + STATE(5295), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222788] = 3, - ACTIONS(10669), 1, - anon_sym_get, - ACTIONS(10671), 1, - anon_sym_set, + [223339] = 3, + ACTIONS(7743), 1, + anon_sym_RBRACE, + ACTIONS(11926), 1, + anon_sym_SEMI, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222799] = 3, - ACTIONS(10301), 1, - anon_sym_get, - ACTIONS(10303), 1, - anon_sym_set, + [223350] = 3, + ACTIONS(9642), 1, + anon_sym_LPAREN, + STATE(8339), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222810] = 2, + [223361] = 3, + ACTIONS(9758), 1, + anon_sym_LPAREN, + STATE(8330), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7169), 2, - anon_sym_AT, - anon_sym_val, - [222819] = 2, + [223372] = 3, + ACTIONS(9654), 1, + anon_sym_LPAREN, + STATE(5308), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11384), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [222828] = 2, + [223383] = 3, + ACTIONS(9756), 1, + anon_sym_LPAREN, + STATE(4650), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223394] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4470), 2, + ACTIONS(4898), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222837] = 3, - ACTIONS(12006), 1, - sym__automatic_semicolon, - STATE(3538), 1, - sym__semi, + [223403] = 3, + ACTIONS(10394), 1, + anon_sym_get, + ACTIONS(10396), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222848] = 2, + [223414] = 3, + ACTIONS(11928), 1, + anon_sym_LBRACE, + STATE(883), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7740), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [222857] = 2, + [223425] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5073), 2, + ACTIONS(4906), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222866] = 3, - ACTIONS(9716), 1, - anon_sym_LPAREN, - STATE(8711), 1, - sym_function_value_parameters, + [223434] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222877] = 3, - ACTIONS(12008), 1, + ACTIONS(11449), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [223443] = 3, + ACTIONS(11930), 1, anon_sym_DOT, - STATE(8275), 1, + STATE(9412), 1, aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222888] = 3, - ACTIONS(9810), 1, - anon_sym_LPAREN, - STATE(8333), 1, - sym_function_value_parameters, + [223454] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222899] = 3, - ACTIONS(7738), 1, + ACTIONS(4079), 2, + sym__automatic_semicolon, anon_sym_RBRACE, - ACTIONS(12010), 1, - anon_sym_SEMI, + [223463] = 3, + ACTIONS(11932), 1, + anon_sym_DOT, + STATE(8232), 1, + aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222910] = 3, - ACTIONS(5766), 1, - anon_sym_LPAREN, - STATE(5040), 1, - sym__class_parameters, + [223474] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222921] = 3, - ACTIONS(8201), 1, - anon_sym_LBRACE, - STATE(5125), 1, - sym__block, + ACTIONS(5051), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223483] = 3, + ACTIONS(10489), 1, + anon_sym_get, + ACTIONS(10491), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222932] = 2, + [223494] = 3, + ACTIONS(11934), 1, + anon_sym_COLON, + ACTIONS(11936), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4880), 2, + [223505] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(4946), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222941] = 2, + [223514] = 3, + ACTIONS(9690), 1, + anon_sym_LPAREN, + STATE(4932), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7187), 2, - anon_sym_AT, - anon_sym_val, - [222950] = 2, + [223525] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3298), 2, + ACTIONS(3370), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222959] = 2, + [223534] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12012), 2, + ACTIONS(11938), 2, anon_sym_COMMA, - anon_sym_GT, - [222968] = 2, + anon_sym_DASH_GT, + [223543] = 3, + ACTIONS(5432), 1, + anon_sym_LBRACE, + STATE(4801), 1, + sym_class_body, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4906), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [222977] = 2, + [223554] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1818), 2, + ACTIONS(5119), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [222986] = 3, - ACTIONS(10467), 1, + [223563] = 3, + ACTIONS(9690), 1, + anon_sym_LPAREN, + STATE(4959), 1, + sym_function_value_parameters, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223574] = 3, + ACTIONS(10270), 1, anon_sym_get, - ACTIONS(10469), 1, + ACTIONS(10272), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [222997] = 2, + [223585] = 3, + ACTIONS(10434), 1, + anon_sym_get, + ACTIONS(10436), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4942), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223006] = 3, - ACTIONS(1658), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_lambda_literal, + [223596] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223017] = 3, - ACTIONS(5766), 1, + ACTIONS(4449), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223605] = 3, + ACTIONS(8515), 1, anon_sym_LPAREN, - STATE(4968), 1, + STATE(8643), 1, sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223028] = 3, - ACTIONS(4226), 1, - anon_sym_while, - ACTIONS(12014), 1, - anon_sym_LPAREN, + [223616] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223039] = 2, + ACTIONS(4445), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223625] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4884), 2, + ACTIONS(1740), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223048] = 2, + [223634] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4262), 2, + ACTIONS(4632), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223057] = 3, - ACTIONS(9714), 1, + [223643] = 3, + ACTIONS(9654), 1, anon_sym_LPAREN, - STATE(4093), 1, + STATE(5297), 1, sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223068] = 3, - ACTIONS(9734), 1, - anon_sym_LPAREN, - STATE(4631), 1, - sym_function_value_parameters, + [223654] = 3, + ACTIONS(11928), 1, + anon_sym_LBRACE, + STATE(894), 1, + sym__block, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223665] = 3, + ACTIONS(1784), 1, + anon_sym_LBRACE, + STATE(4788), 1, + sym_lambda_literal, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223079] = 3, - ACTIONS(10701), 1, + [223676] = 3, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(8499), 1, + STATE(4943), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223090] = 3, - ACTIONS(10481), 1, - anon_sym_get, - ACTIONS(10483), 1, - anon_sym_set, + [223687] = 3, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(4128), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223101] = 3, - ACTIONS(3262), 1, - anon_sym_LBRACE, - STATE(3259), 1, - sym_class_body, + [223698] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223112] = 3, - ACTIONS(7736), 1, - anon_sym_RBRACE, - ACTIONS(12016), 1, - anon_sym_SEMI, + ACTIONS(11940), 2, + anon_sym_COMMA, + anon_sym_GT, + [223707] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223123] = 2, + ACTIONS(4262), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223716] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7127), 2, - anon_sym_AT, - anon_sym_val, - [223132] = 3, - ACTIONS(11876), 1, + ACTIONS(5095), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223725] = 3, + ACTIONS(11942), 1, anon_sym_LBRACE, - STATE(3067), 1, + STATE(3192), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223143] = 2, + [223736] = 3, + ACTIONS(9662), 1, + anon_sym_LPAREN, + STATE(3271), 1, + sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4828), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223152] = 2, + [223747] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5045), 2, + ACTIONS(4712), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223161] = 2, + [223756] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11464), 2, - anon_sym_COMMA, - anon_sym_GT, - [223170] = 3, - ACTIONS(5764), 1, - anon_sym_LBRACE, - STATE(5103), 1, - sym_class_body, + ACTIONS(5047), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223765] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223181] = 3, - ACTIONS(25), 1, - anon_sym_LBRACE, - STATE(5240), 1, - sym_lambda_literal, + ACTIONS(4422), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223774] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223192] = 3, - ACTIONS(10453), 1, + ACTIONS(5083), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223783] = 3, + ACTIONS(10501), 1, anon_sym_get, - ACTIONS(10455), 1, + ACTIONS(10503), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223203] = 3, - ACTIONS(12018), 1, - anon_sym_DOT, - STATE(9417), 1, - aux_sym_user_type_repeat1, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [223214] = 2, + [223794] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4756), 2, + ACTIONS(5059), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223223] = 3, - ACTIONS(4183), 1, - anon_sym_in, - ACTIONS(12020), 1, - anon_sym_COLON, + [223803] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223234] = 3, - ACTIONS(4854), 1, - anon_sym_while, - ACTIONS(12022), 1, - anon_sym_LPAREN, + ACTIONS(1684), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223812] = 3, + ACTIONS(10348), 1, + anon_sym_get, + ACTIONS(10350), 1, + anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223245] = 2, + [223823] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11475), 2, + ACTIONS(11426), 2, anon_sym_COMMA, anon_sym_RPAREN, - [223254] = 3, - ACTIONS(10439), 1, + [223832] = 3, + ACTIONS(10551), 1, anon_sym_get, - ACTIONS(10441), 1, + ACTIONS(10553), 1, anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223265] = 2, + [223843] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5215), 2, - anon_sym_AT, - anon_sym_val, - [223274] = 3, - ACTIONS(12024), 1, - anon_sym_DOT, - STATE(9415), 1, - aux_sym_user_type_repeat1, + ACTIONS(4204), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223852] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223285] = 3, - ACTIONS(4141), 1, + ACTIONS(4620), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223861] = 3, + ACTIONS(8171), 1, anon_sym_LBRACE, - STATE(1109), 1, + STATE(4890), 1, sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223296] = 3, - ACTIONS(12026), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [223872] = 3, + ACTIONS(11942), 1, + anon_sym_LBRACE, + STATE(3198), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223307] = 2, + [223883] = 3, + ACTIONS(6372), 1, + anon_sym_LBRACE, + STATE(3101), 1, + sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11510), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [223316] = 3, - ACTIONS(12028), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [223894] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223327] = 2, + ACTIONS(4414), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223903] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5195), 2, - anon_sym_AT, - anon_sym_val, - [223336] = 2, + ACTIONS(5087), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223912] = 2, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + ACTIONS(11944), 2, + sym__import_list_delimiter, + anon_sym_import, + [223921] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5041), 2, + ACTIONS(4232), 2, sym__automatic_semicolon, anon_sym_RBRACE, - [223345] = 3, - ACTIONS(10423), 1, - anon_sym_get, - ACTIONS(10425), 1, - anon_sym_set, + [223930] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223356] = 3, - ACTIONS(12030), 1, + ACTIONS(5091), 2, sym__automatic_semicolon, - STATE(3383), 1, - sym__semi, + anon_sym_RBRACE, + [223939] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223367] = 2, + ACTIONS(5055), 2, + sym__automatic_semicolon, + anon_sym_RBRACE, + [223948] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(7199), 2, + ACTIONS(4878), 2, anon_sym_AT, anon_sym_val, - [223376] = 2, + [223957] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5029), 2, + ACTIONS(4874), 2, + anon_sym_AT, + anon_sym_val, + [223966] = 2, + ACTIONS(11946), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [223385] = 3, - ACTIONS(12032), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223396] = 3, - ACTIONS(4846), 1, - anon_sym_while, - ACTIONS(12034), 1, + [223974] = 2, + ACTIONS(11948), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223982] = 2, + ACTIONS(11950), 1, + sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [223990] = 2, + ACTIONS(11952), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223407] = 2, + [223998] = 2, + ACTIONS(11954), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224006] = 2, + ACTIONS(11956), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4270), 2, + [224014] = 2, + ACTIONS(11958), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [223416] = 3, - ACTIONS(10701), 1, - anon_sym_LBRACE, - STATE(8581), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223427] = 2, + [224022] = 2, + ACTIONS(11960), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11548), 2, - sym__automatic_semicolon, - anon_sym_DOT, - [223436] = 3, - ACTIONS(12036), 1, - sym__automatic_semicolon, - STATE(9315), 1, - sym__semi, + [224030] = 2, + ACTIONS(11962), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223447] = 2, + [224038] = 2, + ACTIONS(11964), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12038), 2, - sym__import_list_delimiter, - anon_sym_import, - [223456] = 2, + [224046] = 2, + ACTIONS(11966), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5187), 2, - anon_sym_AT, - anon_sym_val, - [223465] = 2, + [224054] = 2, + ACTIONS(11968), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5171), 2, - anon_sym_AT, - anon_sym_val, - [223474] = 2, + [224062] = 2, + ACTIONS(11970), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(5001), 2, + [224070] = 2, + ACTIONS(11972), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224078] = 2, + ACTIONS(11974), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [223483] = 3, - ACTIONS(10347), 1, - anon_sym_get, - ACTIONS(10349), 1, - anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223494] = 3, - ACTIONS(9716), 1, - anon_sym_LPAREN, - STATE(8325), 1, - sym_function_value_parameters, + [224086] = 2, + ACTIONS(11976), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223505] = 2, + [224094] = 2, + ACTIONS(11978), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11583), 2, - anon_sym_COMMA, + [224102] = 2, + ACTIONS(11267), 1, anon_sym_RPAREN, - [223514] = 2, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4985), 2, + [224110] = 2, + ACTIONS(11116), 1, sym__automatic_semicolon, - anon_sym_RBRACE, - [223523] = 3, - ACTIONS(10607), 1, - anon_sym_get, - ACTIONS(10609), 1, - anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223534] = 2, + [224118] = 2, + ACTIONS(11980), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11640), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [223543] = 2, + [224126] = 2, + ACTIONS(11982), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4981), 2, - anon_sym_AT, - anon_sym_val, - [223552] = 3, - ACTIONS(10701), 1, + [224134] = 2, + ACTIONS(11984), 1, anon_sym_LBRACE, - STATE(8462), 1, - sym__block, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223563] = 2, + [224142] = 2, + ACTIONS(11986), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1736), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223572] = 2, + [224150] = 2, + ACTIONS(11988), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4301), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223581] = 2, + [224158] = 2, + ACTIONS(11990), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(1810), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223590] = 3, - ACTIONS(8500), 1, - anon_sym_LPAREN, - STATE(8478), 1, - sym__class_parameters, + [224166] = 2, + ACTIONS(11992), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223601] = 3, - ACTIONS(10379), 1, - anon_sym_get, - ACTIONS(10381), 1, - anon_sym_set, + [224174] = 2, + ACTIONS(11994), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223612] = 3, - ACTIONS(12040), 1, - anon_sym_DOT, - STATE(8275), 1, - aux_sym_user_type_repeat1, + [224182] = 2, + ACTIONS(11996), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223623] = 3, - ACTIONS(5486), 1, + [224190] = 2, + ACTIONS(11998), 1, anon_sym_LPAREN, - STATE(4630), 1, - sym__class_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223634] = 3, - ACTIONS(12042), 1, - anon_sym_DOT, - STATE(9447), 1, - aux_sym_user_type_repeat1, + [224198] = 2, + ACTIONS(12000), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223645] = 3, - ACTIONS(10681), 1, - anon_sym_AMP, - ACTIONS(12044), 1, - anon_sym_RPAREN, + [224206] = 2, + ACTIONS(12002), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224214] = 2, + ACTIONS(12004), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223656] = 2, + [224222] = 2, + ACTIONS(4162), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(4158), 2, + [224230] = 2, + ACTIONS(12006), 1, sym__automatic_semicolon, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [224238] = 2, + ACTIONS(1540), 1, anon_sym_RBRACE, - [223665] = 3, - ACTIONS(10331), 1, - anon_sym_get, - ACTIONS(10333), 1, - anon_sym_set, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223676] = 2, + [224246] = 2, + ACTIONS(12008), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(3280), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223685] = 3, - ACTIONS(1646), 1, - anon_sym_LBRACE, - STATE(3877), 1, - sym_lambda_literal, + [224254] = 2, + ACTIONS(12010), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223696] = 2, + [224262] = 2, + ACTIONS(12012), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(12046), 2, - anon_sym_COMMA, - anon_sym_GT, - [223705] = 3, - ACTIONS(9810), 1, + [224270] = 2, + ACTIONS(12014), 1, anon_sym_LPAREN, - STATE(8346), 1, - sym_function_value_parameters, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223716] = 2, + [224278] = 2, + ACTIONS(12016), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11606), 2, - anon_sym_COMMA, - anon_sym_GT, - [223725] = 2, + [224286] = 2, + ACTIONS(12018), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11234), 2, - sym__automatic_semicolon, - anon_sym_RBRACE, - [223734] = 2, + [224294] = 2, + ACTIONS(12020), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - ACTIONS(11611), 2, - anon_sym_COMMA, - anon_sym_DASH_GT, - [223743] = 3, - ACTIONS(1914), 1, - anon_sym_LBRACE, - STATE(3189), 1, - sym_lambda_literal, + [224302] = 2, + ACTIONS(12022), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223754] = 2, - ACTIONS(12048), 1, - anon_sym_constructor, + [224310] = 2, + ACTIONS(12024), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223762] = 2, - ACTIONS(12050), 1, - anon_sym_LPAREN, + [224318] = 2, + ACTIONS(12026), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223770] = 2, - ACTIONS(4429), 1, - anon_sym_while, + [224326] = 2, + ACTIONS(12028), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223778] = 2, - ACTIONS(12052), 1, - anon_sym_AMP, + [224334] = 2, + ACTIONS(12030), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223786] = 2, - ACTIONS(12054), 1, - anon_sym_DASH_GT, + [224342] = 2, + ACTIONS(12032), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223794] = 2, - ACTIONS(9125), 1, - anon_sym_AMP, + [224350] = 2, + ACTIONS(12034), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223802] = 2, - ACTIONS(12056), 1, - anon_sym_RPAREN, + [224358] = 2, + ACTIONS(12036), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223810] = 2, - ACTIONS(12058), 1, - anon_sym_DASH_GT, + [224366] = 2, + ACTIONS(12038), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223818] = 2, - ACTIONS(5159), 1, - anon_sym_while, + [224374] = 2, + ACTIONS(12040), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223826] = 2, - ACTIONS(12060), 1, - anon_sym_constructor, + [224382] = 2, + ACTIONS(12042), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223834] = 2, - ACTIONS(4942), 1, - anon_sym_while, + [224390] = 2, + ACTIONS(12044), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223842] = 2, - ACTIONS(12062), 1, - anon_sym_EQ, + [224398] = 2, + ACTIONS(12046), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223850] = 2, - ACTIONS(11706), 1, - anon_sym_RPAREN, + [224406] = 2, + ACTIONS(12048), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223858] = 2, - ACTIONS(3292), 1, - anon_sym_while, + [224414] = 2, + ACTIONS(12050), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223866] = 2, - ACTIONS(12064), 1, + [224422] = 2, + ACTIONS(12052), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223874] = 2, - ACTIONS(12066), 1, - anon_sym_LBRACE, + [224430] = 2, + ACTIONS(9831), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223882] = 2, - ACTIONS(12068), 1, - anon_sym_COLON, + [224438] = 2, + ACTIONS(12054), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223890] = 2, - ACTIONS(1612), 1, - anon_sym_RBRACE, + [224446] = 2, + ACTIONS(12056), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223898] = 2, - ACTIONS(12070), 1, - anon_sym_SQUOTE, + [224454] = 2, + ACTIONS(1548), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223906] = 2, - ACTIONS(12072), 1, - anon_sym_RPAREN, + [224462] = 2, + ACTIONS(12058), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223914] = 2, - ACTIONS(9134), 1, - anon_sym_AMP, + [224470] = 2, + ACTIONS(12060), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223922] = 2, - ACTIONS(12074), 1, - sym__automatic_semicolon, + [224478] = 2, + ACTIONS(12062), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223930] = 2, - ACTIONS(12076), 1, - anon_sym_DASH_GT, + [224486] = 2, + ACTIONS(12064), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223938] = 2, - ACTIONS(12078), 1, - sym__automatic_semicolon, + [224494] = 2, + ACTIONS(12066), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223946] = 2, - ACTIONS(12080), 1, + [224502] = 2, + ACTIONS(12068), 1, anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223954] = 2, - ACTIONS(3191), 1, - anon_sym_while, + [224510] = 2, + ACTIONS(12070), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223962] = 2, - ACTIONS(4884), 1, - anon_sym_while, + [224518] = 2, + ACTIONS(12072), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223970] = 2, - ACTIONS(12082), 1, - anon_sym_COLON, + [224526] = 2, + ACTIONS(12074), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223978] = 2, - ACTIONS(12084), 1, - anon_sym_RPAREN, + [224534] = 2, + ACTIONS(12076), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223986] = 2, - ACTIONS(11250), 1, - sym__automatic_semicolon, + [224542] = 2, + ACTIONS(12078), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [223994] = 2, - ACTIONS(12086), 1, - anon_sym_COLON, + [224550] = 2, + ACTIONS(12080), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224002] = 2, - ACTIONS(9885), 1, - sym__automatic_semicolon, + [224558] = 2, + ACTIONS(12082), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224010] = 2, - ACTIONS(10689), 1, - anon_sym_AMP, + [224566] = 2, + ACTIONS(12084), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224018] = 2, - ACTIONS(12088), 1, - anon_sym_EQ, + [224574] = 2, + ACTIONS(12086), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224026] = 2, - ACTIONS(12090), 1, + [224582] = 2, + ACTIONS(11339), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224034] = 2, - ACTIONS(11587), 1, - anon_sym_RPAREN, + [224590] = 2, + ACTIONS(12088), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224042] = 2, - ACTIONS(1798), 1, - anon_sym_while, + [224598] = 2, + ACTIONS(12090), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224050] = 2, + [224606] = 2, ACTIONS(12092), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224058] = 2, + [224614] = 2, ACTIONS(12094), 1, - anon_sym_class, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224066] = 2, + [224622] = 2, ACTIONS(12096), 1, - anon_sym_AMP, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224074] = 2, + [224630] = 2, ACTIONS(12098), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224082] = 2, + [224638] = 2, ACTIONS(12100), 1, - sym__automatic_semicolon, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224090] = 2, + [224646] = 2, ACTIONS(12102), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224098] = 2, - ACTIONS(5017), 1, - anon_sym_while, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224106] = 2, + [224654] = 2, ACTIONS(12104), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224114] = 2, + [224662] = 2, ACTIONS(12106), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224122] = 2, + [224670] = 2, ACTIONS(12108), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224130] = 2, + [224678] = 2, ACTIONS(12110), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224138] = 2, + [224686] = 2, ACTIONS(12112), 1, - anon_sym_RPAREN, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224146] = 2, + [224694] = 2, ACTIONS(12114), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224154] = 2, - ACTIONS(10717), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224162] = 2, - ACTIONS(1616), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224170] = 2, + [224702] = 2, ACTIONS(12116), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224178] = 2, + [224710] = 2, ACTIONS(12118), 1, - anon_sym_AMP, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224186] = 2, + [224718] = 2, ACTIONS(12120), 1, - anon_sym_COLON, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224194] = 2, - ACTIONS(12122), 1, - anon_sym_EQ, + [224726] = 2, + ACTIONS(10581), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224202] = 2, - ACTIONS(12124), 1, - anon_sym_EQ, + [224734] = 2, + ACTIONS(12122), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224210] = 2, - ACTIONS(12126), 1, + [224742] = 2, + ACTIONS(12124), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224218] = 2, - ACTIONS(11852), 1, - anon_sym_AMP, + [224750] = 2, + ACTIONS(12126), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224226] = 2, + [224758] = 2, ACTIONS(12128), 1, - anon_sym_constructor, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224234] = 2, + [224766] = 2, ACTIONS(12130), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224242] = 2, - ACTIONS(1622), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224250] = 2, + [224774] = 2, ACTIONS(12132), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224258] = 2, - ACTIONS(4196), 1, - anon_sym_while, + [224782] = 2, + ACTIONS(12134), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224266] = 2, - ACTIONS(12134), 1, - anon_sym_file, + [224790] = 2, + ACTIONS(11257), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224274] = 2, + [224798] = 2, ACTIONS(12136), 1, - anon_sym_COLON, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224282] = 2, + [224806] = 2, ACTIONS(12138), 1, - anon_sym_AMP, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224290] = 2, + [224814] = 2, ACTIONS(12140), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224298] = 2, + [224822] = 2, ACTIONS(12142), 1, - anon_sym_DASH_GT, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224306] = 2, + [224830] = 2, ACTIONS(12144), 1, - anon_sym_EQ, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224314] = 2, + [224838] = 2, ACTIONS(12146), 1, - anon_sym_COLON, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224322] = 2, + [224846] = 2, ACTIONS(12148), 1, - anon_sym_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224330] = 2, - ACTIONS(4470), 1, - anon_sym_while, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224338] = 2, + [224854] = 2, ACTIONS(12150), 1, - anon_sym_EQ, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224346] = 2, + [224862] = 2, ACTIONS(12152), 1, - sym__automatic_semicolon, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224354] = 2, - ACTIONS(12154), 1, - anon_sym_COLON, + [224870] = 2, + ACTIONS(1516), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224362] = 2, - ACTIONS(11872), 1, - anon_sym_AMP, + [224878] = 2, + ACTIONS(12154), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224370] = 2, + [224886] = 2, ACTIONS(12156), 1, - anon_sym_constructor, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224378] = 2, + [224894] = 2, ACTIONS(12158), 1, - anon_sym_EQ, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224386] = 2, + [224902] = 2, ACTIONS(12160), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224394] = 2, + [224910] = 2, ACTIONS(12162), 1, - anon_sym_AMP, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224402] = 2, + [224918] = 2, ACTIONS(12164), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224410] = 2, + [224926] = 2, ACTIONS(12166), 1, - anon_sym_EQ, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224418] = 2, + [224934] = 2, ACTIONS(12168), 1, - anon_sym_class, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224426] = 2, + [224942] = 2, ACTIONS(12170), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224434] = 2, - ACTIONS(5207), 1, - anon_sym_while, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224442] = 2, + [224950] = 2, ACTIONS(12172), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224450] = 2, + [224958] = 2, ACTIONS(12174), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224458] = 2, + [224966] = 2, ACTIONS(12176), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224466] = 2, + [224974] = 2, ACTIONS(12178), 1, - anon_sym_constructor, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224474] = 2, + [224982] = 2, ACTIONS(12180), 1, - anon_sym_COLON, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224482] = 2, + [224990] = 2, ACTIONS(12182), 1, - anon_sym_DASH_GT, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224490] = 2, + [224998] = 2, ACTIONS(12184), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224498] = 2, - ACTIONS(1736), 1, - anon_sym_while, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224506] = 2, + [225006] = 2, ACTIONS(12186), 1, - anon_sym_COLON, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224514] = 2, + [225014] = 2, ACTIONS(12188), 1, - anon_sym_else, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224522] = 2, + [225022] = 2, ACTIONS(12190), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224530] = 2, - ACTIONS(5203), 1, - anon_sym_while, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224538] = 2, + [225030] = 2, ACTIONS(12192), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224546] = 2, + [225038] = 2, ACTIONS(12194), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224554] = 2, + [225046] = 2, ACTIONS(12196), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224562] = 2, + [225054] = 2, ACTIONS(12198), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224570] = 2, + [225062] = 2, ACTIONS(12200), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224578] = 2, + [225070] = 2, ACTIONS(12202), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224586] = 2, + [225078] = 2, ACTIONS(12204), 1, - anon_sym_AMP, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [225086] = 2, + ACTIONS(3098), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224594] = 2, + [225094] = 2, ACTIONS(12206), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224602] = 2, + [225102] = 2, ACTIONS(12208), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224610] = 2, + [225110] = 2, ACTIONS(12210), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224618] = 2, + [225118] = 2, ACTIONS(12212), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224626] = 2, - ACTIONS(4262), 1, - anon_sym_while, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224634] = 2, + [225126] = 2, ACTIONS(12214), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224642] = 2, + [225134] = 2, ACTIONS(12216), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224650] = 2, - ACTIONS(4417), 1, - anon_sym_while, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224658] = 2, + [225142] = 2, ACTIONS(12218), 1, - anon_sym_SQUOTE, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224666] = 2, + [225150] = 2, ACTIONS(12220), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224674] = 2, - ACTIONS(9119), 1, - anon_sym_AMP, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224682] = 2, + [225158] = 2, ACTIONS(12222), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224690] = 2, + [225166] = 2, ACTIONS(12224), 1, - sym__automatic_semicolon, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224698] = 2, + [225174] = 2, ACTIONS(12226), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224706] = 2, + [225182] = 2, ACTIONS(12228), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224714] = 2, + [225190] = 2, ACTIONS(12230), 1, - anon_sym_AMP, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224722] = 2, - ACTIONS(4325), 1, - anon_sym_DASH_GT, + [225198] = 2, + ACTIONS(11226), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224730] = 2, + [225206] = 2, ACTIONS(12232), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224738] = 2, + [225214] = 2, ACTIONS(12234), 1, - anon_sym_RPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224746] = 2, + [225222] = 2, ACTIONS(12236), 1, - anon_sym_object, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224754] = 2, + [225230] = 2, ACTIONS(12238), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224762] = 2, - ACTIONS(11834), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224770] = 2, + [225238] = 2, ACTIONS(12240), 1, - anon_sym_AMP, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224778] = 2, - ACTIONS(11398), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224786] = 2, + [225246] = 2, ACTIONS(12242), 1, - anon_sym_COLON, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224794] = 2, + [225254] = 2, ACTIONS(12244), 1, - anon_sym_AMP, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224802] = 2, + [225262] = 2, ACTIONS(12246), 1, - anon_sym_LPAREN, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224810] = 2, + [225270] = 2, ACTIONS(12248), 1, - anon_sym_COLON, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224818] = 2, + [225278] = 2, ACTIONS(12250), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224826] = 2, - ACTIONS(3316), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224834] = 2, - ACTIONS(12252), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224842] = 2, - ACTIONS(9121), 1, - anon_sym_AMP, + [225286] = 2, + ACTIONS(12252), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224850] = 2, + [225294] = 2, ACTIONS(12254), 1, - anon_sym_in, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224858] = 2, + [225302] = 2, ACTIONS(12256), 1, - anon_sym_GT, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224866] = 2, - ACTIONS(12258), 1, - anon_sym_class, + [225310] = 2, + ACTIONS(10607), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224874] = 2, - ACTIONS(8207), 1, - anon_sym_AMP, + [225318] = 2, + ACTIONS(12258), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224882] = 2, + [225326] = 2, ACTIONS(12260), 1, - anon_sym_RPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224890] = 2, + [225334] = 2, ACTIONS(12262), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224898] = 2, - ACTIONS(4828), 1, - anon_sym_while, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224906] = 2, - ACTIONS(4772), 1, - anon_sym_while, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224914] = 2, + [225342] = 2, ACTIONS(12264), 1, - anon_sym_constructor, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224922] = 2, - ACTIONS(8185), 1, - anon_sym_AMP, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224930] = 2, + [225350] = 2, ACTIONS(12266), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224938] = 2, + [225358] = 2, ACTIONS(12268), 1, - anon_sym_EQ, + anon_sym_file, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224946] = 2, + [225366] = 2, ACTIONS(12270), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224954] = 2, + [225374] = 2, ACTIONS(12272), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224962] = 2, + [225382] = 2, ACTIONS(12274), 1, - anon_sym_class, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224970] = 2, + [225390] = 2, ACTIONS(12276), 1, - anon_sym_class, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224978] = 2, + [225398] = 2, ACTIONS(12278), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [224986] = 2, - ACTIONS(4462), 1, - anon_sym_while, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [224994] = 2, + [225406] = 2, ACTIONS(12280), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225002] = 2, + [225414] = 2, ACTIONS(12282), 1, - anon_sym_RBRACE, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225010] = 2, + [225422] = 2, ACTIONS(12284), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225018] = 2, - ACTIONS(3298), 1, - anon_sym_while, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225026] = 2, + [225430] = 2, ACTIONS(12286), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225034] = 2, + [225438] = 2, ACTIONS(12288), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225042] = 2, + [225446] = 2, ACTIONS(12290), 1, - anon_sym_class, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225050] = 2, + [225454] = 2, ACTIONS(12292), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225058] = 2, - ACTIONS(11339), 1, - anon_sym_RPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225066] = 2, - ACTIONS(11335), 1, - anon_sym_RPAREN, + [225462] = 2, + ACTIONS(12294), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225074] = 2, - ACTIONS(12294), 1, - anon_sym_class, + [225470] = 2, + ACTIONS(3230), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225082] = 2, + [225478] = 2, ACTIONS(12296), 1, - anon_sym_DASH_GT, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225090] = 2, + [225486] = 2, ACTIONS(12298), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225098] = 2, + [225494] = 2, ACTIONS(12300), 1, - anon_sym_DASH_GT, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225106] = 2, + [225502] = 2, ACTIONS(12302), 1, - anon_sym_RPAREN, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225114] = 2, + [225510] = 2, ACTIONS(12304), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225122] = 2, - ACTIONS(5073), 1, - anon_sym_while, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225130] = 2, + [225518] = 2, ACTIONS(12306), 1, - anon_sym_object, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225138] = 2, + [225526] = 2, ACTIONS(12308), 1, - anon_sym_RPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225146] = 2, - ACTIONS(12044), 1, - anon_sym_RPAREN, + [225534] = 2, + ACTIONS(12310), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225154] = 2, - ACTIONS(1624), 1, - anon_sym_RBRACE, + [225542] = 2, + ACTIONS(12312), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225162] = 2, - ACTIONS(4768), 1, - anon_sym_while, + [225550] = 2, + ACTIONS(12314), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225170] = 2, - ACTIONS(1419), 1, - anon_sym_RBRACE, + [225558] = 2, + ACTIONS(12316), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225178] = 2, - ACTIONS(4902), 1, - anon_sym_while, + [225566] = 2, + ACTIONS(12318), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225186] = 2, - ACTIONS(12310), 1, - anon_sym_constructor, + [225574] = 2, + ACTIONS(12320), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225194] = 2, - ACTIONS(12312), 1, - anon_sym_DASH_GT, + [225582] = 2, + ACTIONS(12322), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225202] = 2, - ACTIONS(12314), 1, - anon_sym_RPAREN, + [225590] = 2, + ACTIONS(6607), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225210] = 2, - ACTIONS(12316), 1, + [225598] = 2, + ACTIONS(6573), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225218] = 2, - ACTIONS(12318), 1, + [225606] = 2, + ACTIONS(12324), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225226] = 2, - ACTIONS(12320), 1, + [225614] = 2, + ACTIONS(12326), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225234] = 2, - ACTIONS(12322), 1, - anon_sym_RPAREN, + [225622] = 2, + ACTIONS(12328), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225242] = 2, - ACTIONS(12324), 1, - anon_sym_RPAREN, + [225630] = 2, + ACTIONS(12330), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225250] = 2, - ACTIONS(12326), 1, - anon_sym_GT, + [225638] = 2, + ACTIONS(12332), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225258] = 2, - ACTIONS(11722), 1, + [225646] = 2, + ACTIONS(12334), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225266] = 2, - ACTIONS(12328), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225274] = 2, - ACTIONS(12330), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [225282] = 2, - ACTIONS(12332), 1, + [225654] = 2, + ACTIONS(8124), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225290] = 2, - ACTIONS(12334), 1, + [225662] = 2, + ACTIONS(12336), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225298] = 2, - ACTIONS(12336), 1, - anon_sym_RBRACE, + [225670] = 2, + ACTIONS(8126), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225306] = 2, + [225678] = 2, ACTIONS(12338), 1, - anon_sym_EQ, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225314] = 2, + [225686] = 2, ACTIONS(12340), 1, - anon_sym_GT, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225322] = 2, - ACTIONS(10687), 1, + [225694] = 2, + ACTIONS(12342), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225330] = 2, - ACTIONS(12342), 1, + [225702] = 2, + ACTIONS(12344), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225338] = 2, - ACTIONS(12344), 1, - anon_sym_class, + [225710] = 2, + ACTIONS(12346), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225346] = 2, - ACTIONS(12346), 1, - anon_sym_RPAREN, + [225718] = 2, + ACTIONS(12348), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225354] = 2, - ACTIONS(12348), 1, + [225726] = 2, + ACTIONS(12350), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225362] = 2, - ACTIONS(5045), 1, - anon_sym_while, + [225734] = 2, + ACTIONS(12352), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225370] = 2, - ACTIONS(5041), 1, - anon_sym_while, + [225742] = 2, + ACTIONS(12354), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225378] = 2, - ACTIONS(11282), 1, - anon_sym_RPAREN, + [225750] = 2, + ACTIONS(12356), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225386] = 2, - ACTIONS(12350), 1, - anon_sym_RPAREN, + [225758] = 2, + ACTIONS(12358), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225394] = 2, - ACTIONS(10685), 1, - anon_sym_AMP, + [225766] = 2, + ACTIONS(12360), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225402] = 2, - ACTIONS(12352), 1, - anon_sym_constructor, + [225774] = 2, + ACTIONS(12362), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225410] = 2, - ACTIONS(12354), 1, - anon_sym_EQ, + [225782] = 2, + ACTIONS(12364), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225418] = 2, - ACTIONS(11740), 1, - anon_sym_RPAREN, + [225790] = 2, + ACTIONS(12366), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225426] = 2, - ACTIONS(12356), 1, - anon_sym_class, + [225798] = 2, + ACTIONS(12368), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225434] = 2, - ACTIONS(12358), 1, - anon_sym_class, + [225806] = 2, + ACTIONS(12370), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225442] = 2, - ACTIONS(12360), 1, - anon_sym_SQUOTE, + [225814] = 2, + ACTIONS(12372), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225450] = 2, - ACTIONS(12362), 1, - anon_sym_LBRACE, + [225822] = 2, + ACTIONS(12374), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225458] = 2, - ACTIONS(5029), 1, - anon_sym_while, + [225830] = 2, + ACTIONS(12376), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225466] = 2, - ACTIONS(12364), 1, - anon_sym_LBRACE, + [225838] = 2, + ACTIONS(12378), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225474] = 2, - ACTIONS(12366), 1, - anon_sym_DASH_GT, + [225846] = 2, + ACTIONS(12380), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225482] = 2, - ACTIONS(12368), 1, - anon_sym_RBRACE, + [225854] = 2, + ACTIONS(12382), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225490] = 2, - ACTIONS(11290), 1, - anon_sym_RPAREN, + [225862] = 2, + ACTIONS(12384), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225498] = 2, - ACTIONS(12370), 1, - anon_sym_RPAREN, + [225870] = 2, + ACTIONS(12386), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225506] = 2, - ACTIONS(12372), 1, + [225878] = 2, + ACTIONS(12388), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225514] = 2, - ACTIONS(12374), 1, - anon_sym_class, + [225886] = 2, + ACTIONS(12390), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225522] = 2, - ACTIONS(12376), 1, - anon_sym_class, + [225894] = 2, + ACTIONS(12392), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225530] = 2, - ACTIONS(11746), 1, - anon_sym_RPAREN, + [225902] = 2, + ACTIONS(12394), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225538] = 2, - ACTIONS(12378), 1, - anon_sym_DASH_GT, + [225910] = 2, + ACTIONS(12396), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225546] = 2, - ACTIONS(12380), 1, - sym__automatic_semicolon, + [225918] = 2, + ACTIONS(12398), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225554] = 2, - ACTIONS(11276), 1, - sym__automatic_semicolon, + [225926] = 2, + ACTIONS(12400), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225562] = 2, - ACTIONS(1640), 1, - anon_sym_RBRACE, + [225934] = 2, + ACTIONS(12402), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225570] = 2, - ACTIONS(12382), 1, + [225942] = 2, + ACTIONS(12404), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225578] = 2, - ACTIONS(12384), 1, - anon_sym_EQ, + [225950] = 2, + ACTIONS(12406), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225586] = 2, - ACTIONS(12386), 1, - anon_sym_RPAREN, + [225958] = 2, + ACTIONS(12408), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225594] = 2, - ACTIONS(11591), 1, - sym__automatic_semicolon, + [225966] = 2, + ACTIONS(12410), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225602] = 2, - ACTIONS(5001), 1, - anon_sym_while, + [225974] = 2, + ACTIONS(12412), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225610] = 2, - ACTIONS(4756), 1, - anon_sym_while, + [225982] = 2, + ACTIONS(12414), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225618] = 2, - ACTIONS(12388), 1, - anon_sym_GT, + [225990] = 2, + ACTIONS(12416), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225626] = 2, - ACTIONS(12390), 1, - anon_sym_RBRACE, + [225998] = 2, + ACTIONS(12418), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225634] = 2, - ACTIONS(12392), 1, + [226006] = 2, + ACTIONS(12420), 1, + anon_sym_class, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226014] = 2, + ACTIONS(12422), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225642] = 2, - ACTIONS(12394), 1, - anon_sym_RBRACE, + [226022] = 2, + ACTIONS(12424), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225650] = 2, - ACTIONS(12396), 1, - anon_sym_RBRACE, + [226030] = 2, + ACTIONS(12426), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225658] = 2, - ACTIONS(4301), 1, - anon_sym_while, + [226038] = 2, + ACTIONS(12428), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226046] = 2, + ACTIONS(12430), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225666] = 2, - ACTIONS(6613), 1, + [226054] = 2, + ACTIONS(12432), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225674] = 2, - ACTIONS(4202), 1, - anon_sym_while, + [226062] = 2, + ACTIONS(12434), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225682] = 2, - ACTIONS(5179), 1, - anon_sym_while, + [226070] = 2, + ACTIONS(12436), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225690] = 2, - ACTIONS(5175), 1, - anon_sym_while, + [226078] = 2, + ACTIONS(12438), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225698] = 2, - ACTIONS(4674), 1, - anon_sym_while, + [226086] = 2, + ACTIONS(12440), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225706] = 2, - ACTIONS(6668), 1, - anon_sym_AMP, + [226094] = 2, + ACTIONS(12442), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225714] = 2, - ACTIONS(12398), 1, - anon_sym_LBRACE, + [226102] = 2, + ACTIONS(12444), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225722] = 2, - ACTIONS(12400), 1, + [226110] = 2, + ACTIONS(12446), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225730] = 2, - ACTIONS(12402), 1, - anon_sym_RPAREN, + [226118] = 2, + ACTIONS(9071), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225738] = 2, - ACTIONS(12404), 1, - anon_sym_EQ, + [226126] = 2, + ACTIONS(12448), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225746] = 2, - ACTIONS(12406), 1, - anon_sym_RBRACE, + [226134] = 2, + ACTIONS(12450), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225754] = 2, - ACTIONS(12408), 1, - anon_sym_else, + [226142] = 2, + ACTIONS(12452), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225762] = 2, - ACTIONS(12410), 1, + [226150] = 2, + ACTIONS(9082), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225770] = 2, - ACTIONS(12412), 1, + [226158] = 2, + ACTIONS(12454), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225778] = 2, - ACTIONS(12414), 1, - anon_sym_RPAREN, + [226166] = 2, + ACTIONS(12456), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225786] = 2, - ACTIONS(1608), 1, - anon_sym_RBRACE, + [226174] = 2, + ACTIONS(12458), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225794] = 2, - ACTIONS(12416), 1, - anon_sym_COLON, + [226182] = 2, + ACTIONS(12460), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225802] = 2, - ACTIONS(12418), 1, - anon_sym_RPAREN, + [226190] = 2, + ACTIONS(12462), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225810] = 2, - ACTIONS(1824), 1, - anon_sym_while, + [226198] = 2, + ACTIONS(12464), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225818] = 2, - ACTIONS(3280), 1, - anon_sym_while, + [226206] = 2, + ACTIONS(12466), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225826] = 2, - ACTIONS(12420), 1, - anon_sym_RPAREN, + [226214] = 2, + ACTIONS(12468), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225834] = 2, - ACTIONS(4158), 1, - anon_sym_while, + [226222] = 2, + ACTIONS(12470), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225842] = 2, - ACTIONS(12422), 1, - anon_sym_RPAREN, + [226230] = 2, + ACTIONS(12472), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225850] = 2, - ACTIONS(1445), 1, - anon_sym_RBRACE, + [226238] = 2, + ACTIONS(12474), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225858] = 2, - ACTIONS(4425), 1, - anon_sym_while, + [226246] = 2, + ACTIONS(12476), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225866] = 2, - ACTIONS(12424), 1, - anon_sym_RBRACE, + [226254] = 2, + ACTIONS(12478), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225874] = 2, - ACTIONS(12426), 1, + [226262] = 2, + ACTIONS(12480), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225882] = 2, - ACTIONS(12428), 1, - anon_sym_DASH_GT, + [226270] = 2, + ACTIONS(12482), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225890] = 2, - ACTIONS(12430), 1, - anon_sym_AMP, + [226278] = 2, + ACTIONS(12484), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225898] = 2, - ACTIONS(12432), 1, - anon_sym_class, + [226286] = 2, + ACTIONS(12486), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225906] = 2, - ACTIONS(12434), 1, - anon_sym_COLON, + [226294] = 2, + ACTIONS(11180), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225914] = 2, - ACTIONS(4266), 1, - anon_sym_while, + [226302] = 2, + ACTIONS(12488), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225922] = 2, - ACTIONS(10681), 1, - anon_sym_AMP, + [226310] = 2, + ACTIONS(12490), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225930] = 2, - ACTIONS(12436), 1, - anon_sym_DASH_GT, + [226318] = 2, + ACTIONS(12492), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225938] = 2, - ACTIONS(4718), 1, - anon_sym_while, + [226326] = 2, + ACTIONS(12494), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225946] = 2, - ACTIONS(12438), 1, - anon_sym_RPAREN, + [226334] = 2, + ACTIONS(12496), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225954] = 2, - ACTIONS(12440), 1, - anon_sym_class, + [226342] = 2, + ACTIONS(12498), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225962] = 2, - ACTIONS(12442), 1, - anon_sym_RPAREN, + [226350] = 2, + ACTIONS(12500), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225970] = 2, - ACTIONS(12444), 1, - anon_sym_AMP, + [226358] = 2, + ACTIONS(12502), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225978] = 2, - ACTIONS(12446), 1, - anon_sym_DASH_GT, + [226366] = 2, + ACTIONS(12504), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225986] = 2, - ACTIONS(12448), 1, - anon_sym_RPAREN, + [226374] = 2, + ACTIONS(12506), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [225994] = 2, - ACTIONS(12450), 1, + [226382] = 2, + ACTIONS(12508), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226002] = 2, - ACTIONS(11726), 1, + [226390] = 2, + ACTIONS(12510), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226010] = 2, - ACTIONS(12452), 1, - anon_sym_RPAREN, + [226398] = 2, + ACTIONS(12512), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226018] = 2, - ACTIONS(12454), 1, - anon_sym_AMP, + [226406] = 2, + ACTIONS(12514), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226026] = 2, - ACTIONS(10728), 1, + [226414] = 2, + ACTIONS(12516), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226034] = 2, - ACTIONS(12456), 1, - anon_sym_AMP, + [226422] = 2, + ACTIONS(12518), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226042] = 2, - ACTIONS(12458), 1, - anon_sym_AMP, + [226430] = 2, + ACTIONS(12520), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226050] = 2, - ACTIONS(12460), 1, - anon_sym_class, + [226438] = 2, + ACTIONS(12522), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226058] = 2, - ACTIONS(1636), 1, - anon_sym_RBRACE, + [226446] = 2, + ACTIONS(12524), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226066] = 2, - ACTIONS(12462), 1, - anon_sym_DASH_GT, + [226454] = 2, + ACTIONS(11527), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226074] = 2, - ACTIONS(12464), 1, - anon_sym_class, + [226462] = 2, + ACTIONS(12526), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226082] = 2, - ACTIONS(12466), 1, + [226470] = 2, + ACTIONS(12528), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226090] = 2, - ACTIONS(12468), 1, - anon_sym_else, + [226478] = 2, + ACTIONS(12530), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226098] = 2, - ACTIONS(12470), 1, + [226486] = 2, + ACTIONS(12532), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226494] = 2, + ACTIONS(11363), 1, + anon_sym_AMP, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226502] = 2, + ACTIONS(12534), 1, anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226106] = 2, - ACTIONS(12472), 1, - anon_sym_class, + [226510] = 2, + ACTIONS(12536), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226114] = 2, - ACTIONS(12474), 1, - anon_sym_RBRACE, + [226518] = 2, + ACTIONS(12538), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226122] = 2, - ACTIONS(12476), 1, - anon_sym_RPAREN, + [226526] = 2, + ACTIONS(12540), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226130] = 2, - ACTIONS(12478), 1, + [226534] = 2, + ACTIONS(12542), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226138] = 2, - ACTIONS(12480), 1, - anon_sym_GT, + [226542] = 2, + ACTIONS(12544), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226146] = 2, - ACTIONS(12482), 1, - anon_sym_DASH_GT, + [226550] = 2, + ACTIONS(12546), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226154] = 2, - ACTIONS(12484), 1, - anon_sym_RPAREN, + [226558] = 2, + ACTIONS(12548), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226162] = 2, - ACTIONS(12486), 1, - anon_sym_class, + [226566] = 2, + ACTIONS(12550), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226170] = 2, - ACTIONS(12488), 1, - anon_sym_RBRACE, + [226574] = 2, + ACTIONS(12552), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226178] = 2, - ACTIONS(12490), 1, - anon_sym_EQ, + [226582] = 2, + ACTIONS(5017), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226186] = 2, - ACTIONS(12492), 1, - anon_sym_EQ, + [226590] = 2, + ACTIONS(12554), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226194] = 2, - ACTIONS(1604), 1, - anon_sym_RBRACE, + [226598] = 2, + ACTIONS(12556), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226202] = 2, - ACTIONS(12494), 1, - anon_sym_EQ, + [226606] = 2, + ACTIONS(12558), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226210] = 2, - ACTIONS(12496), 1, - anon_sym_LBRACE, + [226614] = 2, + ACTIONS(10579), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226218] = 2, - ACTIONS(12498), 1, - anon_sym_RPAREN, + [226622] = 2, + ACTIONS(12560), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226226] = 2, - ACTIONS(12500), 1, - anon_sym_else, + [226630] = 2, + ACTIONS(12562), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226234] = 2, - ACTIONS(10734), 1, - anon_sym_AMP, + [226638] = 2, + ACTIONS(12564), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226242] = 2, - ACTIONS(1818), 1, - anon_sym_while, + [226646] = 2, + ACTIONS(12566), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226250] = 2, - ACTIONS(12502), 1, - anon_sym_RPAREN, + [226654] = 2, + ACTIONS(12568), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226258] = 2, - ACTIONS(4985), 1, - anon_sym_while, + [226662] = 2, + ACTIONS(12570), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226266] = 2, - ACTIONS(11792), 1, + [226670] = 2, + ACTIONS(11331), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226274] = 2, - ACTIONS(12504), 1, - anon_sym_DASH_GT, + [226678] = 2, + ACTIONS(12572), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226282] = 2, - ACTIONS(4454), 1, - anon_sym_while, + [226686] = 2, + ACTIONS(12574), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226290] = 2, - ACTIONS(12506), 1, - anon_sym_class, + [226694] = 2, + ACTIONS(12576), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226298] = 2, - ACTIONS(12508), 1, + [226702] = 2, + ACTIONS(12578), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226306] = 2, - ACTIONS(12510), 1, + [226710] = 2, + ACTIONS(12580), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226314] = 2, - ACTIONS(12512), 1, - anon_sym_COLON, + [226718] = 2, + ACTIONS(12582), 1, + anon_sym_in, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226322] = 2, - ACTIONS(12514), 1, - anon_sym_RPAREN, + [226726] = 2, + ACTIONS(12584), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226330] = 2, - ACTIONS(12516), 1, - anon_sym_RBRACE, + [226734] = 2, + ACTIONS(11335), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226338] = 2, - ACTIONS(12518), 1, - anon_sym_RBRACE, + [226742] = 2, + ACTIONS(12586), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226346] = 2, - ACTIONS(12520), 1, - anon_sym_LPAREN, + [226750] = 2, + ACTIONS(12588), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226354] = 2, - ACTIONS(12522), 1, - anon_sym_LPAREN, + [226758] = 2, + ACTIONS(12590), 1, + anon_sym_object, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226362] = 2, - ACTIONS(5103), 1, - anon_sym_while, + [226766] = 2, + ACTIONS(12592), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226370] = 2, - ACTIONS(12524), 1, + [226774] = 2, + ACTIONS(9069), 1, anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226378] = 2, - ACTIONS(12526), 1, - anon_sym_LPAREN, + [226782] = 2, + ACTIONS(11511), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226386] = 2, - ACTIONS(12528), 1, - anon_sym_in, + [226790] = 2, + ACTIONS(12594), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226394] = 2, - ACTIONS(12530), 1, + [226798] = 2, + ACTIONS(12596), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226806] = 2, + ACTIONS(12598), 1, anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226402] = 2, - ACTIONS(12532), 1, - anon_sym_LPAREN, + [226814] = 2, + ACTIONS(11513), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226410] = 2, - ACTIONS(12534), 1, + [226822] = 2, + ACTIONS(12600), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226418] = 2, - ACTIONS(12536), 1, - anon_sym_in, + [226830] = 2, + ACTIONS(12602), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226426] = 2, - ACTIONS(12538), 1, + [226838] = 2, + ACTIONS(12604), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226434] = 2, - ACTIONS(12540), 1, - anon_sym_else, + [226846] = 2, + ACTIONS(9067), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226442] = 2, - ACTIONS(5135), 1, + [226854] = 2, + ACTIONS(5025), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226450] = 2, - ACTIONS(5199), 1, - anon_sym_while, + [226862] = 2, + ACTIONS(12606), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226458] = 2, - ACTIONS(5131), 1, - anon_sym_while, + [226870] = 2, + ACTIONS(12608), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226466] = 2, - ACTIONS(12542), 1, + [226878] = 2, + ACTIONS(12610), 1, anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226474] = 2, - ACTIONS(12544), 1, - anon_sym_COLON, + [226886] = 2, + ACTIONS(12612), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226482] = 2, - ACTIONS(12546), 1, - anon_sym_COLON, + [226894] = 2, + ACTIONS(1566), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226490] = 2, - ACTIONS(12548), 1, - anon_sym_AMP, + [226902] = 2, + ACTIONS(12614), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226498] = 2, - ACTIONS(12550), 1, - anon_sym_RBRACE, + [226910] = 2, + ACTIONS(12616), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226506] = 2, - ACTIONS(12552), 1, + [226918] = 2, + ACTIONS(12618), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226514] = 2, - ACTIONS(12554), 1, - anon_sym_SQUOTE, + [226926] = 2, + ACTIONS(12620), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226522] = 2, - ACTIONS(12556), 1, - anon_sym_in, + [226934] = 2, + ACTIONS(12622), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226530] = 2, - ACTIONS(1810), 1, - anon_sym_while, + [226942] = 2, + ACTIONS(12624), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226538] = 2, - ACTIONS(12558), 1, - anon_sym_LPAREN, + [226950] = 2, + ACTIONS(12626), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226546] = 2, - ACTIONS(12560), 1, - anon_sym_COLON, + [226958] = 2, + ACTIONS(12628), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226554] = 2, - ACTIONS(12562), 1, - anon_sym_EQ, + [226966] = 2, + ACTIONS(12630), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226562] = 2, - ACTIONS(12564), 1, + [226974] = 2, + ACTIONS(12632), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226982] = 2, + ACTIONS(12634), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [226990] = 2, + ACTIONS(11587), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226570] = 2, - ACTIONS(12566), 1, - anon_sym_LPAREN, + [226998] = 2, + ACTIONS(11381), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226578] = 2, - ACTIONS(12568), 1, - anon_sym_class, + [227006] = 2, + ACTIONS(12636), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226586] = 2, - ACTIONS(12570), 1, - anon_sym_while, + [227014] = 2, + ACTIONS(12638), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226594] = 2, - ACTIONS(12572), 1, - anon_sym_RPAREN, + [227022] = 2, + ACTIONS(12640), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226602] = 2, - ACTIONS(12574), 1, - anon_sym_class, + [227030] = 2, + ACTIONS(11581), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226610] = 2, - ACTIONS(12576), 1, - anon_sym_in, + [227038] = 2, + ACTIONS(12642), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226618] = 2, - ACTIONS(1792), 1, - anon_sym_while, + [227046] = 2, + ACTIONS(12644), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226626] = 2, - ACTIONS(12578), 1, - anon_sym_LBRACE, + [227054] = 2, + ACTIONS(11509), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226634] = 2, - ACTIONS(12580), 1, - sym__automatic_semicolon, + [227062] = 2, + ACTIONS(12646), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226642] = 2, - ACTIONS(12582), 1, - anon_sym_RPAREN, + [227070] = 2, + ACTIONS(12648), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226650] = 2, - ACTIONS(12584), 1, + [227078] = 2, + ACTIONS(12650), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226658] = 2, - ACTIONS(12586), 1, + [227086] = 2, + ACTIONS(12652), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226666] = 2, - ACTIONS(12588), 1, + [227094] = 2, + ACTIONS(12654), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226674] = 2, - ACTIONS(12590), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [226682] = 2, - ACTIONS(12592), 1, - anon_sym_DASH_GT, + [227102] = 2, + ACTIONS(12656), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226690] = 2, - ACTIONS(12594), 1, + [227110] = 2, + ACTIONS(12658), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226698] = 2, - ACTIONS(12596), 1, - anon_sym_LPAREN, + [227118] = 2, + ACTIONS(12660), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226706] = 2, - ACTIONS(4177), 1, - anon_sym_while, + [227126] = 2, + ACTIONS(12662), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226714] = 2, - ACTIONS(12598), 1, - anon_sym_in, + [227134] = 2, + ACTIONS(12664), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226722] = 2, - ACTIONS(12600), 1, + [227142] = 2, + ACTIONS(12666), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226730] = 2, - ACTIONS(12602), 1, - anon_sym_else, + [227150] = 2, + ACTIONS(12668), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226738] = 2, - ACTIONS(12604), 1, - anon_sym_SQUOTE, + [227158] = 2, + ACTIONS(12670), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226746] = 2, - ACTIONS(12606), 1, - aux_sym__uni_character_literal_token1, + [227166] = 2, + ACTIONS(12672), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226754] = 2, - ACTIONS(12608), 1, - anon_sym_SQUOTE, + [227174] = 2, + ACTIONS(1536), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226762] = 2, - ACTIONS(12610), 1, - anon_sym_class, + [227182] = 2, + ACTIONS(10577), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226770] = 2, - ACTIONS(12612), 1, + [227190] = 2, + ACTIONS(11601), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226778] = 2, - ACTIONS(12614), 1, - anon_sym_in, + [227198] = 2, + ACTIONS(12674), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226786] = 2, - ACTIONS(12616), 1, + [227206] = 2, + ACTIONS(11615), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226794] = 2, - ACTIONS(12618), 1, - anon_sym_RPAREN, + [227214] = 2, + ACTIONS(4898), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226802] = 2, - ACTIONS(12620), 1, - anon_sym_LPAREN, + [227222] = 2, + ACTIONS(11633), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226810] = 2, - ACTIONS(12622), 1, - anon_sym_RPAREN, + [227230] = 2, + ACTIONS(4906), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226818] = 2, - ACTIONS(12624), 1, - anon_sym_RPAREN, + [227238] = 2, + ACTIONS(3298), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226826] = 2, - ACTIONS(1443), 1, + [227246] = 2, + ACTIONS(12676), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226834] = 2, - ACTIONS(12626), 1, - anon_sym_LBRACE, + [227254] = 2, + ACTIONS(4946), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226842] = 2, - ACTIONS(12628), 1, + [227262] = 2, + ACTIONS(3370), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226850] = 2, - ACTIONS(5095), 1, - anon_sym_while, + [227270] = 2, + ACTIONS(10585), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226858] = 2, - ACTIONS(12630), 1, - anon_sym_RPAREN, + [227278] = 2, + ACTIONS(12678), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226866] = 2, - ACTIONS(12632), 1, - anon_sym_LPAREN, + [227286] = 2, + ACTIONS(12680), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226874] = 2, - ACTIONS(12634), 1, - anon_sym_RPAREN, + [227294] = 2, + ACTIONS(12682), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226882] = 2, - ACTIONS(12636), 1, - anon_sym_RPAREN, + [227302] = 2, + ACTIONS(12684), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226890] = 2, - ACTIONS(12638), 1, - anon_sym_RPAREN, + [227310] = 2, + ACTIONS(12686), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226898] = 2, - ACTIONS(12640), 1, - anon_sym_while, + [227318] = 2, + ACTIONS(12688), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226906] = 2, - ACTIONS(12642), 1, - anon_sym_RPAREN, + [227326] = 2, + ACTIONS(4445), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226914] = 2, - ACTIONS(12644), 1, - anon_sym_RPAREN, + [227334] = 2, + ACTIONS(12690), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226922] = 2, - ACTIONS(12646), 1, + [227342] = 2, + ACTIONS(11637), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226930] = 2, - ACTIONS(12648), 1, - anon_sym_RPAREN, + [227350] = 2, + ACTIONS(12692), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226938] = 2, - ACTIONS(12650), 1, + [227358] = 2, + ACTIONS(4632), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226946] = 2, - ACTIONS(12652), 1, - anon_sym_AMP, + [227366] = 2, + ACTIONS(1766), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226954] = 2, - ACTIONS(4270), 1, + [227374] = 2, + ACTIONS(4262), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226962] = 2, - ACTIONS(12654), 1, - anon_sym_RPAREN, + [227382] = 2, + ACTIONS(12694), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226970] = 2, - ACTIONS(12656), 1, + [227390] = 2, + ACTIONS(5163), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226978] = 2, - ACTIONS(5143), 1, - anon_sym_while, + [227398] = 2, + ACTIONS(12696), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226986] = 2, - ACTIONS(12658), 1, - anon_sym_COLON, + [227406] = 2, + ACTIONS(12698), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [226994] = 2, - ACTIONS(12660), 1, - anon_sym_COLON, + [227414] = 2, + ACTIONS(12700), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227002] = 2, - ACTIONS(5091), 1, + [227422] = 2, + ACTIONS(5039), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227010] = 2, - ACTIONS(12662), 1, - anon_sym_RPAREN, + [227430] = 2, + ACTIONS(5047), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227018] = 2, - ACTIONS(12664), 1, - anon_sym_while, + [227438] = 2, + ACTIONS(12702), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227026] = 2, - ACTIONS(209), 1, + [227446] = 2, + ACTIONS(4422), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227034] = 2, - ACTIONS(12666), 1, - anon_sym_COLON, + [227454] = 2, + ACTIONS(12704), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227042] = 2, - ACTIONS(12668), 1, - anon_sym_COLON, + [227462] = 2, + ACTIONS(1518), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227050] = 2, - ACTIONS(12670), 1, + [227470] = 2, + ACTIONS(12706), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227058] = 2, - ACTIONS(12672), 1, - anon_sym_in, + [227478] = 2, + ACTIONS(10597), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227066] = 2, - ACTIONS(12674), 1, - anon_sym_while, + [227486] = 2, + ACTIONS(12708), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227074] = 2, - ACTIONS(12676), 1, + [227494] = 2, + ACTIONS(11924), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227082] = 2, - ACTIONS(12678), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227090] = 2, - ACTIONS(12680), 1, - anon_sym_RPAREN, + [227502] = 2, + ACTIONS(1556), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227098] = 2, - ACTIONS(12682), 1, - anon_sym_DASH_GT, + [227510] = 2, + ACTIONS(12710), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227106] = 2, - ACTIONS(12684), 1, + [227518] = 2, + ACTIONS(12712), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227114] = 2, - ACTIONS(1413), 1, - anon_sym_RBRACE, + [227526] = 2, + ACTIONS(1684), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227122] = 2, - ACTIONS(12686), 1, - anon_sym_else, + [227534] = 2, + ACTIONS(1357), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227130] = 2, - ACTIONS(12688), 1, + [227542] = 2, + ACTIONS(12714), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227138] = 2, - ACTIONS(12690), 1, - anon_sym_RBRACE, + [227550] = 2, + ACTIONS(12716), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227146] = 2, - ACTIONS(4906), 1, - anon_sym_while, + [227558] = 2, + ACTIONS(11444), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227154] = 2, - ACTIONS(12692), 1, - anon_sym_LPAREN, + [227566] = 2, + ACTIONS(5055), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227162] = 2, - ACTIONS(12694), 1, - anon_sym_LPAREN, + [227574] = 2, + ACTIONS(4232), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227170] = 2, - ACTIONS(12696), 1, - anon_sym_in, + [227582] = 2, + ACTIONS(11583), 1, + sym__automatic_semicolon, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227178] = 2, - ACTIONS(12698), 1, + [227590] = 2, + ACTIONS(12718), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227186] = 2, - ACTIONS(12700), 1, - anon_sym_RPAREN, + [227598] = 2, + ACTIONS(12720), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227194] = 2, - ACTIONS(12702), 1, - anon_sym_else, + [227606] = 2, + ACTIONS(12722), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227202] = 2, - ACTIONS(12704), 1, - anon_sym_DASH_GT, + [227614] = 2, + ACTIONS(12724), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227210] = 2, - ACTIONS(12706), 1, - anon_sym_in, + [227622] = 2, + ACTIONS(12726), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227218] = 2, - ACTIONS(12708), 1, - anon_sym_RPAREN, + [227630] = 2, + ACTIONS(4620), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227226] = 2, - ACTIONS(12710), 1, - anon_sym_DASH_GT, + [227638] = 2, + ACTIONS(5059), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227234] = 2, - ACTIONS(12712), 1, - anon_sym_else, + [227646] = 2, + ACTIONS(12728), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227242] = 2, - ACTIONS(12714), 1, - anon_sym_LPAREN, + [227654] = 2, + ACTIONS(5035), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227250] = 2, - ACTIONS(12716), 1, + [227662] = 2, + ACTIONS(12730), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227258] = 2, - ACTIONS(12718), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227266] = 2, - ACTIONS(12720), 1, + [227670] = 2, + ACTIONS(11483), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227274] = 2, - ACTIONS(12722), 1, - anon_sym_RPAREN, + [227678] = 2, + ACTIONS(4712), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227282] = 2, - ACTIONS(12724), 1, - anon_sym_RBRACE, + [227686] = 2, + ACTIONS(12732), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227290] = 2, - ACTIONS(11300), 1, + [227694] = 2, + ACTIONS(12734), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227298] = 2, - ACTIONS(12726), 1, - anon_sym_DASH_GT, + [227702] = 2, + ACTIONS(10599), 1, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227306] = 2, - ACTIONS(12728), 1, - anon_sym_RPAREN, + [227710] = 2, + ACTIONS(12736), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227314] = 2, - ACTIONS(12730), 1, - anon_sym_in, + [227718] = 2, + ACTIONS(5095), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227322] = 2, - ACTIONS(12732), 1, - anon_sym_RPAREN, + [227726] = 2, + ACTIONS(12738), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227330] = 2, - ACTIONS(12734), 1, - anon_sym_else, + [227734] = 2, + ACTIONS(12740), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227338] = 2, - ACTIONS(12736), 1, + [227742] = 2, + ACTIONS(12742), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227346] = 2, - ACTIONS(12738), 1, - anon_sym_RPAREN, + [227750] = 2, + ACTIONS(4449), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227354] = 2, - ACTIONS(12740), 1, - anon_sym_EQ, + [227758] = 2, + ACTIONS(12744), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227362] = 2, - ACTIONS(12742), 1, - anon_sym_RPAREN, + [227766] = 2, + ACTIONS(4276), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227370] = 2, - ACTIONS(3422), 1, + [227774] = 2, + ACTIONS(1756), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227378] = 2, - ACTIONS(12744), 1, - anon_sym_RBRACE, + [227782] = 2, + ACTIONS(12746), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227386] = 2, - ACTIONS(12746), 1, - anon_sym_RBRACE, + [227790] = 2, + ACTIONS(3222), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227394] = 2, + [227798] = 2, ACTIONS(12748), 1, - anon_sym_RPAREN, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227402] = 2, + [227806] = 2, ACTIONS(12750), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227410] = 2, + [227814] = 2, ACTIONS(12752), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227418] = 2, + [227822] = 2, ACTIONS(12754), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227426] = 2, + [227830] = 2, ACTIONS(12756), 1, - anon_sym_RBRACE, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227434] = 2, + [227838] = 2, ACTIONS(12758), 1, - anon_sym_RBRACE, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227442] = 2, + [227846] = 2, ACTIONS(12760), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227450] = 2, + [227854] = 2, ACTIONS(12762), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227458] = 2, + [227862] = 2, ACTIONS(12764), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227466] = 2, + [227870] = 2, ACTIONS(12766), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227474] = 2, + [227878] = 2, ACTIONS(12768), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227482] = 2, + [227886] = 2, ACTIONS(12770), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227490] = 2, + [227894] = 2, ACTIONS(12772), 1, - anon_sym_in, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227498] = 2, + [227902] = 2, ACTIONS(12774), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227506] = 2, + [227910] = 2, ACTIONS(12776), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227514] = 2, + [227918] = 2, ACTIONS(12778), 1, - anon_sym_COLON, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227522] = 2, + [227926] = 2, ACTIONS(12780), 1, - anon_sym_else, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227530] = 2, + [227934] = 2, ACTIONS(12782), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227538] = 2, + [227942] = 2, ACTIONS(12784), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227546] = 2, + [227950] = 2, ACTIONS(12786), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227554] = 2, + [227958] = 2, ACTIONS(12788), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227562] = 2, + [227966] = 2, ACTIONS(12790), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227570] = 2, + [227974] = 2, + ACTIONS(121), 1, + anon_sym_while, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227982] = 2, ACTIONS(12792), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [227990] = 2, + ACTIONS(5103), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227578] = 2, + [227998] = 2, ACTIONS(12794), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227586] = 2, + [228006] = 2, ACTIONS(12796), 1, - anon_sym_LPAREN, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227594] = 2, + [228014] = 2, ACTIONS(12798), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228022] = 2, + ACTIONS(4918), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227602] = 2, + [228030] = 2, ACTIONS(12800), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227610] = 2, + [228038] = 2, ACTIONS(12802), 1, - anon_sym_LPAREN, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227618] = 2, + [228046] = 2, ACTIONS(12804), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227626] = 2, + [228054] = 2, ACTIONS(12806), 1, - anon_sym_LPAREN, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227634] = 2, + [228062] = 2, ACTIONS(12808), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227642] = 2, + [228070] = 2, ACTIONS(12810), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227650] = 2, + [228078] = 2, ACTIONS(12812), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227658] = 2, + [228086] = 2, ACTIONS(12814), 1, - anon_sym_LPAREN, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227666] = 2, + [228094] = 2, ACTIONS(12816), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227674] = 2, + [228102] = 2, ACTIONS(12818), 1, - anon_sym_LPAREN, + anon_sym_EQ, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228110] = 2, + ACTIONS(4144), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227682] = 2, + [228118] = 2, ACTIONS(12820), 1, - anon_sym_LPAREN, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228126] = 2, + ACTIONS(1546), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227690] = 2, + [228134] = 2, ACTIONS(12822), 1, - anon_sym_LPAREN, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227698] = 2, + [228142] = 2, ACTIONS(12824), 1, - sym__automatic_semicolon, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227706] = 2, + [228150] = 2, ACTIONS(12826), 1, - anon_sym_DASH_GT, + anon_sym_COLON, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228158] = 2, + ACTIONS(11723), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227714] = 2, + [228166] = 2, ACTIONS(12828), 1, - anon_sym_COLON, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227722] = 2, + [228174] = 2, ACTIONS(12830), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227730] = 2, + [228182] = 2, ACTIONS(12832), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227738] = 2, + [228190] = 2, ACTIONS(12834), 1, - anon_sym_RBRACE, + aux_sym__uni_character_literal_token1, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228198] = 2, + ACTIONS(5115), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227746] = 2, + [228206] = 2, ACTIONS(12836), 1, - anon_sym_DASH_GT, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228214] = 2, + ACTIONS(4361), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227754] = 2, + [228222] = 2, ACTIONS(12838), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227762] = 2, + [228230] = 2, ACTIONS(12840), 1, - anon_sym_COLON, + anon_sym_AMP, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227770] = 2, + [228238] = 2, ACTIONS(12842), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227778] = 2, - ACTIONS(12844), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227786] = 2, - ACTIONS(11419), 1, - anon_sym_RPAREN, + [228246] = 2, + ACTIONS(4609), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227794] = 2, - ACTIONS(4989), 1, - anon_sym_while, + [228254] = 2, + ACTIONS(12844), 1, + anon_sym_constructor, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227802] = 2, + [228262] = 2, ACTIONS(12846), 1, - anon_sym_DASH_GT, + anon_sym_EQ, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227810] = 2, + [228270] = 2, ACTIONS(12848), 1, - anon_sym_DASH_GT, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227818] = 2, + [228278] = 2, ACTIONS(12850), 1, - anon_sym_in, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227826] = 2, + [228286] = 2, ACTIONS(12852), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym_multiline_comment, + sym_line_comment, + [228294] = 2, + ACTIONS(5131), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227834] = 2, + [228302] = 2, ACTIONS(12854), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227842] = 2, + [228310] = 2, ACTIONS(12856), 1, - anon_sym_in, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227850] = 2, + [228318] = 2, ACTIONS(12858), 1, - anon_sym_LPAREN, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227858] = 2, + [228326] = 2, ACTIONS(12860), 1, - anon_sym_class, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227866] = 2, + [228334] = 2, ACTIONS(12862), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [227874] = 2, - ACTIONS(12864), 1, - anon_sym_RPAREN, + anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227882] = 2, - ACTIONS(12866), 1, - anon_sym_RBRACE, + [228342] = 2, + ACTIONS(5139), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227890] = 2, - ACTIONS(12868), 1, - anon_sym_in, + [228350] = 2, + ACTIONS(4154), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227898] = 2, - ACTIONS(12870), 1, - anon_sym_LPAREN, + [228358] = 2, + ACTIONS(12864), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227906] = 2, - ACTIONS(12872), 1, + [228366] = 2, + ACTIONS(12866), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227914] = 2, - ACTIONS(12874), 1, - anon_sym_RPAREN, + [228374] = 2, + ACTIONS(5143), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227922] = 2, - ACTIONS(12876), 1, - anon_sym_LPAREN, + [228382] = 2, + ACTIONS(12868), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227930] = 2, - ACTIONS(12878), 1, - anon_sym_RBRACE, + [228390] = 2, + ACTIONS(1746), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227938] = 2, - ACTIONS(12880), 1, - anon_sym_RBRACE, + [228398] = 2, + ACTIONS(5151), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227946] = 2, - ACTIONS(12882), 1, - anon_sym_DASH_GT, + [228406] = 2, + ACTIONS(12870), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227954] = 2, - ACTIONS(12884), 1, - anon_sym_LPAREN, + [228414] = 2, + ACTIONS(5155), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227962] = 2, - ACTIONS(12886), 1, - anon_sym_in, + [228422] = 2, + ACTIONS(4099), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227970] = 2, - ACTIONS(12888), 1, - anon_sym_in, + [228430] = 2, + ACTIONS(12872), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227978] = 2, - ACTIONS(12890), 1, + [228438] = 2, + ACTIONS(12874), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227986] = 2, - ACTIONS(12892), 1, + [228446] = 2, + ACTIONS(12876), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [227994] = 2, - ACTIONS(4866), 1, + [228454] = 2, + ACTIONS(5159), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228002] = 2, - ACTIONS(12894), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228010] = 2, - ACTIONS(12896), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228018] = 2, - ACTIONS(12898), 1, - anon_sym_else, + [228462] = 2, + ACTIONS(4337), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228026] = 2, - ACTIONS(12900), 1, - anon_sym_LPAREN, + [228470] = 2, + ACTIONS(4457), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228034] = 2, - ACTIONS(12902), 1, - anon_sym_LPAREN, + [228478] = 2, + ACTIONS(12878), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228042] = 2, - ACTIONS(12904), 1, - anon_sym_LPAREN, + [228486] = 2, + ACTIONS(3240), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228050] = 2, - ACTIONS(9030), 1, - anon_sym_COLON, + [228494] = 2, + ACTIONS(12880), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228058] = 2, - ACTIONS(12906), 1, - anon_sym_LPAREN, + [228502] = 2, + ACTIONS(12882), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228066] = 2, - ACTIONS(12908), 1, - anon_sym_RPAREN, + [228510] = 2, + ACTIONS(1562), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228074] = 2, - ACTIONS(12910), 1, - anon_sym_DASH_GT, + [228518] = 2, + ACTIONS(5147), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228082] = 2, - ACTIONS(12912), 1, - anon_sym_LPAREN, + [228526] = 2, + ACTIONS(12884), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228090] = 2, - ACTIONS(12914), 1, - anon_sym_COLON, + [228534] = 2, + ACTIONS(12886), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228098] = 2, - ACTIONS(12916), 1, - anon_sym_in, + [228542] = 2, + ACTIONS(1772), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228106] = 2, - ACTIONS(12918), 1, - anon_sym_LPAREN, + [228550] = 2, + ACTIONS(5135), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228114] = 2, - ACTIONS(4152), 1, + [228558] = 2, + ACTIONS(12888), 1, anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228122] = 2, - ACTIONS(12920), 1, + [228566] = 2, + ACTIONS(12890), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228130] = 2, - ACTIONS(12922), 1, - anon_sym_in, + [228574] = 2, + ACTIONS(12892), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228138] = 2, - ACTIONS(12924), 1, - anon_sym_LPAREN, + [228582] = 2, + ACTIONS(12894), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228146] = 2, - ACTIONS(12926), 1, - anon_sym_LPAREN, + [228590] = 2, + ACTIONS(5127), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228154] = 2, - ACTIONS(12928), 1, - anon_sym_LPAREN, + [228598] = 2, + ACTIONS(12896), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228162] = 2, - ACTIONS(12930), 1, - anon_sym_in, + [228606] = 2, + ACTIONS(12898), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228170] = 2, - ACTIONS(12932), 1, - anon_sym_LPAREN, + [228614] = 2, + ACTIONS(12900), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228178] = 2, - ACTIONS(12934), 1, - anon_sym_in, + [228622] = 2, + ACTIONS(8974), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228186] = 2, - ACTIONS(12936), 1, - anon_sym_in, + [228630] = 2, + ACTIONS(12902), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228194] = 2, - ACTIONS(11644), 1, - anon_sym_RPAREN, + [228638] = 2, + ACTIONS(12904), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228202] = 2, - ACTIONS(12938), 1, + [228646] = 2, + ACTIONS(12906), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228210] = 2, - ACTIONS(12940), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228218] = 2, - ACTIONS(12942), 1, - anon_sym_RPAREN, + [228654] = 2, + ACTIONS(1528), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228226] = 2, - ACTIONS(12944), 1, - anon_sym_LPAREN, + [228662] = 2, + ACTIONS(12908), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228234] = 2, - ACTIONS(12946), 1, - anon_sym_in, + [228670] = 2, + ACTIONS(5119), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228242] = 2, - ACTIONS(12948), 1, - anon_sym_RBRACE, + [228678] = 2, + ACTIONS(4204), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228250] = 2, - ACTIONS(12950), 1, - anon_sym_else, + [228686] = 2, + ACTIONS(5091), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228258] = 2, - ACTIONS(12952), 1, - anon_sym_RBRACE, + [228694] = 2, + ACTIONS(12910), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228266] = 2, - ACTIONS(12954), 1, - anon_sym_LPAREN, + [228702] = 2, + ACTIONS(12912), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228274] = 2, - ACTIONS(12956), 1, - anon_sym_in, + [228710] = 2, + ACTIONS(4414), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228282] = 2, - ACTIONS(11682), 1, - anon_sym_RPAREN, + [228718] = 2, + ACTIONS(5087), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228290] = 2, - ACTIONS(12958), 1, - anon_sym_in, + [228726] = 2, + ACTIONS(12914), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228298] = 2, - ACTIONS(12960), 1, + [228734] = 2, + ACTIONS(12916), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228306] = 2, - ACTIONS(12962), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228314] = 2, - ACTIONS(12964), 1, - anon_sym_RPAREN, + [228742] = 2, + ACTIONS(12918), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228322] = 2, - ACTIONS(12966), 1, - anon_sym_LPAREN, + [228750] = 2, + ACTIONS(12920), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228330] = 2, - ACTIONS(12968), 1, + [228758] = 2, + ACTIONS(12922), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228338] = 2, - ACTIONS(12970), 1, + [228766] = 2, + ACTIONS(11739), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228346] = 2, - ACTIONS(12972), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228354] = 2, - ACTIONS(12974), 1, - anon_sym_in, + [228774] = 2, + ACTIONS(12924), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228362] = 2, - ACTIONS(12976), 1, - anon_sym_LPAREN, + [228782] = 2, + ACTIONS(5083), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228370] = 2, - ACTIONS(12978), 1, + [228790] = 2, + ACTIONS(12926), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228378] = 2, - ACTIONS(12980), 1, + [228798] = 2, + ACTIONS(12928), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228386] = 2, - ACTIONS(12982), 1, + [228806] = 2, + ACTIONS(12930), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228394] = 2, - ACTIONS(12984), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228402] = 2, - ACTIONS(12986), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228410] = 2, - ACTIONS(12988), 1, - anon_sym_else, + [228814] = 2, + ACTIONS(12932), 1, + anon_sym_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228418] = 2, - ACTIONS(12990), 1, + [228822] = 2, + ACTIONS(12934), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228426] = 2, - ACTIONS(12992), 1, - anon_sym_LPAREN, + [228830] = 2, + ACTIONS(12936), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228434] = 2, - ACTIONS(12994), 1, + [228838] = 2, + ACTIONS(12938), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228442] = 2, - ACTIONS(12996), 1, - anon_sym_LPAREN, + [228846] = 2, + ACTIONS(12940), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228450] = 2, - ACTIONS(12998), 1, - anon_sym_DASH_GT, + [228854] = 2, + ACTIONS(12942), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228458] = 2, - ACTIONS(13000), 1, - anon_sym_in, + [228862] = 2, + ACTIONS(12944), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228466] = 2, - ACTIONS(13002), 1, - anon_sym_LPAREN, + [228870] = 2, + ACTIONS(12946), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228474] = 2, - ACTIONS(13004), 1, + [228878] = 2, + ACTIONS(12948), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228482] = 2, - ACTIONS(13006), 1, - anon_sym_in, + [228886] = 2, + ACTIONS(12950), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228490] = 2, - ACTIONS(13008), 1, - anon_sym_LPAREN, + [228894] = 2, + ACTIONS(12952), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228498] = 2, - ACTIONS(13010), 1, + [228902] = 2, + ACTIONS(12954), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228506] = 2, - ACTIONS(13012), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228514] = 2, - ACTIONS(13014), 1, - ts_builtin_sym_end, + [228910] = 2, + ACTIONS(12956), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228522] = 2, - ACTIONS(13016), 1, + [228918] = 2, + ACTIONS(12958), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228530] = 2, - ACTIONS(13018), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228538] = 2, - ACTIONS(13020), 1, + [228926] = 2, + ACTIONS(12960), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228546] = 2, - ACTIONS(13022), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228554] = 2, - ACTIONS(13024), 1, - anon_sym_LPAREN, + [228934] = 2, + ACTIONS(12962), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228562] = 2, - ACTIONS(13026), 1, - anon_sym_in, + [228942] = 2, + ACTIONS(4089), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228570] = 2, - ACTIONS(13028), 1, - anon_sym_in, + [228950] = 2, + ACTIONS(1740), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228578] = 2, - ACTIONS(13030), 1, - anon_sym_LPAREN, + [228958] = 2, + ACTIONS(12964), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228586] = 2, - ACTIONS(13032), 1, - anon_sym_RPAREN, + [228966] = 2, + ACTIONS(12966), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228594] = 2, - ACTIONS(13034), 1, + [228974] = 2, + ACTIONS(12968), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228602] = 2, - ACTIONS(13036), 1, - anon_sym_LPAREN, + [228982] = 2, + ACTIONS(4079), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228610] = 2, - ACTIONS(13038), 1, - anon_sym_in, + [228990] = 2, + ACTIONS(12970), 1, + anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228618] = 2, - ACTIONS(11798), 1, + [228998] = 2, + ACTIONS(12972), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228626] = 2, - ACTIONS(13040), 1, + [229006] = 2, + ACTIONS(12974), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228634] = 2, - ACTIONS(13042), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228642] = 2, - ACTIONS(13044), 1, + [229014] = 2, + ACTIONS(12976), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228650] = 2, - ACTIONS(13046), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228658] = 2, - ACTIONS(13048), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228666] = 2, - ACTIONS(13050), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228674] = 2, - ACTIONS(13052), 1, + [229022] = 2, + ACTIONS(12978), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228682] = 2, - ACTIONS(13054), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228690] = 2, - ACTIONS(13056), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228698] = 2, - ACTIONS(13058), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228706] = 2, - ACTIONS(13060), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228714] = 2, - ACTIONS(13062), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228722] = 2, - ACTIONS(13064), 1, + [229030] = 2, + ACTIONS(12980), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228730] = 2, - ACTIONS(13066), 1, - anon_sym_in, - ACTIONS(3), 2, + [229038] = 3, + ACTIONS(3), 1, sym_multiline_comment, + ACTIONS(10865), 1, sym_line_comment, - [228738] = 2, - ACTIONS(13068), 1, - anon_sym_in, + ACTIONS(12982), 1, + aux_sym_shebang_line_token1, + [229048] = 2, + ACTIONS(12984), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228746] = 2, - ACTIONS(11842), 1, + [229056] = 2, + ACTIONS(11756), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228754] = 2, - ACTIONS(13070), 1, + [229064] = 2, + ACTIONS(12986), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228762] = 2, - ACTIONS(13072), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228770] = 2, - ACTIONS(13074), 1, + [229072] = 2, + ACTIONS(12988), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228778] = 2, - ACTIONS(13076), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228786] = 2, - ACTIONS(13078), 1, - anon_sym_in, + [229080] = 2, + ACTIONS(12990), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228794] = 2, - ACTIONS(13080), 1, - anon_sym_in, + [229088] = 2, + ACTIONS(12992), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228802] = 2, - ACTIONS(13082), 1, - anon_sym_while, + [229096] = 2, + ACTIONS(12994), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228810] = 2, - ACTIONS(13084), 1, + [229104] = 2, + ACTIONS(12996), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228818] = 2, - ACTIONS(4509), 1, - anon_sym_while, + [229112] = 2, + ACTIONS(12998), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228826] = 2, - ACTIONS(13086), 1, + [229120] = 2, + ACTIONS(13000), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228834] = 2, - ACTIONS(4888), 1, - anon_sym_while, + [229128] = 2, + ACTIONS(13002), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228842] = 2, - ACTIONS(13088), 1, - anon_sym_in, + [229136] = 2, + ACTIONS(13004), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228850] = 2, - ACTIONS(13090), 1, - anon_sym_LPAREN, + [229144] = 2, + ACTIONS(13006), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228858] = 2, - ACTIONS(13092), 1, + [229152] = 2, + ACTIONS(13008), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228866] = 2, - ACTIONS(13094), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228874] = 2, - ACTIONS(13096), 1, - anon_sym_in, + [229160] = 2, + ACTIONS(13010), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228882] = 2, - ACTIONS(13098), 1, + [229168] = 2, + ACTIONS(13012), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228890] = 2, - ACTIONS(13100), 1, - anon_sym_in, + [229176] = 2, + ACTIONS(5051), 1, + anon_sym_while, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228898] = 2, - ACTIONS(13102), 1, + [229184] = 2, + ACTIONS(13014), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228906] = 2, - ACTIONS(13104), 1, - anon_sym_LPAREN, + [229192] = 2, + ACTIONS(13016), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228914] = 2, - ACTIONS(13106), 1, + [229200] = 2, + ACTIONS(13018), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228922] = 2, - ACTIONS(13108), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228930] = 2, - ACTIONS(13110), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228938] = 2, - ACTIONS(13112), 1, + [229208] = 2, + ACTIONS(13020), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228946] = 2, - ACTIONS(13114), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [228954] = 2, - ACTIONS(13116), 1, + [229216] = 2, + ACTIONS(13022), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228962] = 2, - ACTIONS(13118), 1, - anon_sym_LPAREN, + [229224] = 2, + ACTIONS(13024), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228970] = 2, - ACTIONS(13120), 1, + [229232] = 2, + ACTIONS(13026), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228978] = 2, - ACTIONS(13122), 1, + [229240] = 2, + ACTIONS(13028), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228986] = 2, - ACTIONS(13124), 1, - anon_sym_LPAREN, + [229248] = 2, + ACTIONS(13030), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [228994] = 2, - ACTIONS(13126), 1, - anon_sym_in, + [229256] = 2, + ACTIONS(13032), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229002] = 2, - ACTIONS(4880), 1, - anon_sym_while, + [229264] = 2, + ACTIONS(13034), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229010] = 2, - ACTIONS(13128), 1, - anon_sym_in, + [229272] = 2, + ACTIONS(13036), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229018] = 2, - ACTIONS(13130), 1, - anon_sym_RPAREN, + [229280] = 2, + ACTIONS(13038), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229026] = 2, - ACTIONS(13132), 1, - anon_sym_LPAREN, + [229288] = 2, + ACTIONS(13040), 1, + anon_sym_else, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229034] = 2, - ACTIONS(13134), 1, - anon_sym_LPAREN, + [229296] = 2, + ACTIONS(13042), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229042] = 2, - ACTIONS(13136), 1, - anon_sym_in, + [229304] = 2, + ACTIONS(13044), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229050] = 2, - ACTIONS(11572), 1, - sym__automatic_semicolon, + [229312] = 2, + ACTIONS(13046), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229058] = 2, - ACTIONS(13138), 1, - anon_sym_in, + [229320] = 2, + ACTIONS(13048), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229066] = 2, - ACTIONS(13140), 1, - anon_sym_LPAREN, + [229328] = 2, + ACTIONS(13050), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229074] = 2, - ACTIONS(13142), 1, + [229336] = 2, + ACTIONS(13052), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229082] = 2, - ACTIONS(13144), 1, + [229344] = 2, + ACTIONS(13054), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229090] = 2, - ACTIONS(13146), 1, + [229352] = 2, + ACTIONS(13056), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229098] = 2, - ACTIONS(13148), 1, + [229360] = 2, + ACTIONS(13058), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229106] = 2, - ACTIONS(13150), 1, + [229368] = 2, + ACTIONS(13060), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229114] = 2, - ACTIONS(13152), 1, + [229376] = 2, + ACTIONS(13062), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229122] = 2, - ACTIONS(13154), 1, + [229384] = 2, + ACTIONS(13064), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229130] = 2, - ACTIONS(13156), 1, + [229392] = 2, + ACTIONS(13066), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229138] = 2, - ACTIONS(13158), 1, + [229400] = 2, + ACTIONS(13068), 1, anon_sym_class, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229146] = 2, - ACTIONS(11441), 1, - sym__automatic_semicolon, + [229408] = 2, + ACTIONS(13070), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229154] = 2, - ACTIONS(13160), 1, - anon_sym_LPAREN, + [229416] = 2, + ACTIONS(13072), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229162] = 2, - ACTIONS(13162), 1, + [229424] = 2, + ACTIONS(13074), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229170] = 2, - ACTIONS(13164), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [229178] = 2, - ACTIONS(13166), 1, + [229432] = 2, + ACTIONS(13076), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229186] = 2, - ACTIONS(13168), 1, - anon_sym_in, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [229194] = 2, - ACTIONS(13170), 1, - anon_sym_else, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [229202] = 2, - ACTIONS(13172), 1, - anon_sym_LPAREN, + [229440] = 2, + ACTIONS(13078), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229210] = 2, - ACTIONS(13174), 1, - anon_sym_LPAREN, + [229448] = 2, + ACTIONS(13080), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229218] = 2, - ACTIONS(13176), 1, - anon_sym_in, + [229456] = 2, + ACTIONS(13082), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229226] = 2, - ACTIONS(13178), 1, + [229464] = 2, + ACTIONS(13084), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229234] = 2, - ACTIONS(13180), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [229242] = 2, - ACTIONS(13182), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_multiline_comment, - sym_line_comment, - [229250] = 2, - ACTIONS(13184), 1, + [229472] = 2, + ACTIONS(13086), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229258] = 2, - ACTIONS(13186), 1, + [229480] = 2, + ACTIONS(13088), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229266] = 2, - ACTIONS(13188), 1, - anon_sym_RPAREN, + [229488] = 2, + ACTIONS(1568), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229274] = 2, - ACTIONS(13190), 1, - anon_sym_in, + [229496] = 2, + ACTIONS(13090), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_multiline_comment, sym_line_comment, - [229282] = 3, - ACTIONS(3), 1, - sym_multiline_comment, - ACTIONS(10919), 1, - sym_line_comment, - ACTIONS(13192), 1, - aux_sym_shebang_line_token1, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4529)] = 0, - [SMALL_STATE(4530)] = 71, - [SMALL_STATE(4531)] = 146, - [SMALL_STATE(4532)] = 221, + [SMALL_STATE(4530)] = 85, + [SMALL_STATE(4531)] = 160, + [SMALL_STATE(4532)] = 235, [SMALL_STATE(4533)] = 306, - [SMALL_STATE(4534)] = 377, + [SMALL_STATE(4534)] = 391, [SMALL_STATE(4535)] = 462, [SMALL_STATE(4536)] = 533, - [SMALL_STATE(4537)] = 618, - [SMALL_STATE(4538)] = 689, + [SMALL_STATE(4537)] = 604, + [SMALL_STATE(4538)] = 679, [SMALL_STATE(4539)] = 764, [SMALL_STATE(4540)] = 849, [SMALL_STATE(4541)] = 934, [SMALL_STATE(4542)] = 1009, [SMALL_STATE(4543)] = 1084, [SMALL_STATE(4544)] = 1159, - [SMALL_STATE(4545)] = 1241, - [SMALL_STATE(4546)] = 1319, - [SMALL_STATE(4547)] = 1393, - [SMALL_STATE(4548)] = 1463, - [SMALL_STATE(4549)] = 1535, - [SMALL_STATE(4550)] = 1621, - [SMALL_STATE(4551)] = 1703, - [SMALL_STATE(4552)] = 1785, - [SMALL_STATE(4553)] = 1859, - [SMALL_STATE(4554)] = 1929, - [SMALL_STATE(4555)] = 2003, - [SMALL_STATE(4556)] = 2075, - [SMALL_STATE(4557)] = 2149, - [SMALL_STATE(4558)] = 2231, - [SMALL_STATE(4559)] = 2313, - [SMALL_STATE(4560)] = 2393, - [SMALL_STATE(4561)] = 2467, - [SMALL_STATE(4562)] = 2547, - [SMALL_STATE(4563)] = 2625, - [SMALL_STATE(4564)] = 2695, - [SMALL_STATE(4565)] = 2769, - [SMALL_STATE(4566)] = 2849, - [SMALL_STATE(4567)] = 2929, - [SMALL_STATE(4568)] = 3009, - [SMALL_STATE(4569)] = 3095, - [SMALL_STATE(4570)] = 3175, + [SMALL_STATE(4545)] = 1229, + [SMALL_STATE(4546)] = 1307, + [SMALL_STATE(4547)] = 1381, + [SMALL_STATE(4548)] = 1461, + [SMALL_STATE(4549)] = 1531, + [SMALL_STATE(4550)] = 1611, + [SMALL_STATE(4551)] = 1691, + [SMALL_STATE(4552)] = 1765, + [SMALL_STATE(4553)] = 1837, + [SMALL_STATE(4554)] = 1923, + [SMALL_STATE(4555)] = 1997, + [SMALL_STATE(4556)] = 2077, + [SMALL_STATE(4557)] = 2155, + [SMALL_STATE(4558)] = 2237, + [SMALL_STATE(4559)] = 2317, + [SMALL_STATE(4560)] = 2397, + [SMALL_STATE(4561)] = 2477, + [SMALL_STATE(4562)] = 2559, + [SMALL_STATE(4563)] = 2639, + [SMALL_STATE(4564)] = 2721, + [SMALL_STATE(4565)] = 2791, + [SMALL_STATE(4566)] = 2861, + [SMALL_STATE(4567)] = 2947, + [SMALL_STATE(4568)] = 3027, + [SMALL_STATE(4569)] = 3107, + [SMALL_STATE(4570)] = 3181, [SMALL_STATE(4571)] = 3255, - [SMALL_STATE(4572)] = 3335, - [SMALL_STATE(4573)] = 3405, - [SMALL_STATE(4574)] = 3485, - [SMALL_STATE(4575)] = 3565, - [SMALL_STATE(4576)] = 3645, + [SMALL_STATE(4572)] = 3327, + [SMALL_STATE(4573)] = 3409, + [SMALL_STATE(4574)] = 3483, + [SMALL_STATE(4575)] = 3557, + [SMALL_STATE(4576)] = 3639, [SMALL_STATE(4577)] = 3719, - [SMALL_STATE(4578)] = 3796, - [SMALL_STATE(4579)] = 3873, - [SMALL_STATE(4580)] = 3950, - [SMALL_STATE(4581)] = 4027, - [SMALL_STATE(4582)] = 4104, + [SMALL_STATE(4578)] = 3788, + [SMALL_STATE(4579)] = 3865, + [SMALL_STATE(4580)] = 3942, + [SMALL_STATE(4581)] = 4019, + [SMALL_STATE(4582)] = 4096, [SMALL_STATE(4583)] = 4173, - [SMALL_STATE(4584)] = 4248, - [SMALL_STATE(4585)] = 4317, - [SMALL_STATE(4586)] = 4394, - [SMALL_STATE(4587)] = 4471, - [SMALL_STATE(4588)] = 4548, - [SMALL_STATE(4589)] = 4625, - [SMALL_STATE(4590)] = 4702, - [SMALL_STATE(4591)] = 4779, - [SMALL_STATE(4592)] = 4852, - [SMALL_STATE(4593)] = 4921, - [SMALL_STATE(4594)] = 4990, - [SMALL_STATE(4595)] = 5059, - [SMALL_STATE(4596)] = 5128, - [SMALL_STATE(4597)] = 5203, - [SMALL_STATE(4598)] = 5280, - [SMALL_STATE(4599)] = 5357, - [SMALL_STATE(4600)] = 5426, - [SMALL_STATE(4601)] = 5503, - [SMALL_STATE(4602)] = 5580, - [SMALL_STATE(4603)] = 5649, - [SMALL_STATE(4604)] = 5722, - [SMALL_STATE(4605)] = 5799, - [SMALL_STATE(4606)] = 5876, - [SMALL_STATE(4607)] = 5953, - [SMALL_STATE(4608)] = 6030, - [SMALL_STATE(4609)] = 6107, + [SMALL_STATE(4584)] = 4250, + [SMALL_STATE(4585)] = 4327, + [SMALL_STATE(4586)] = 4404, + [SMALL_STATE(4587)] = 4481, + [SMALL_STATE(4588)] = 4550, + [SMALL_STATE(4589)] = 4627, + [SMALL_STATE(4590)] = 4704, + [SMALL_STATE(4591)] = 4781, + [SMALL_STATE(4592)] = 4850, + [SMALL_STATE(4593)] = 4927, + [SMALL_STATE(4594)] = 4998, + [SMALL_STATE(4595)] = 5067, + [SMALL_STATE(4596)] = 5144, + [SMALL_STATE(4597)] = 5221, + [SMALL_STATE(4598)] = 5294, + [SMALL_STATE(4599)] = 5363, + [SMALL_STATE(4600)] = 5436, + [SMALL_STATE(4601)] = 5513, + [SMALL_STATE(4602)] = 5586, + [SMALL_STATE(4603)] = 5655, + [SMALL_STATE(4604)] = 5732, + [SMALL_STATE(4605)] = 5809, + [SMALL_STATE(4606)] = 5886, + [SMALL_STATE(4607)] = 5963, + [SMALL_STATE(4608)] = 6040, + [SMALL_STATE(4609)] = 6115, [SMALL_STATE(4610)] = 6184, - [SMALL_STATE(4611)] = 6255, - [SMALL_STATE(4612)] = 6328, - [SMALL_STATE(4613)] = 6405, - [SMALL_STATE(4614)] = 6474, - [SMALL_STATE(4615)] = 6551, + [SMALL_STATE(4611)] = 6261, + [SMALL_STATE(4612)] = 6330, + [SMALL_STATE(4613)] = 6399, + [SMALL_STATE(4614)] = 6468, + [SMALL_STATE(4615)] = 6545, [SMALL_STATE(4616)] = 6620, - [SMALL_STATE(4617)] = 6688, - [SMALL_STATE(4618)] = 6760, + [SMALL_STATE(4617)] = 6692, + [SMALL_STATE(4618)] = 6764, [SMALL_STATE(4619)] = 6832, - [SMALL_STATE(4620)] = 6904, - [SMALL_STATE(4621)] = 6986, - [SMALL_STATE(4622)] = 7058, - [SMALL_STATE(4623)] = 7128, - [SMALL_STATE(4624)] = 7196, - [SMALL_STATE(4625)] = 7264, - [SMALL_STATE(4626)] = 7332, - [SMALL_STATE(4627)] = 7404, - [SMALL_STATE(4628)] = 7472, - [SMALL_STATE(4629)] = 7540, - [SMALL_STATE(4630)] = 7612, - [SMALL_STATE(4631)] = 7680, - [SMALL_STATE(4632)] = 7762, - [SMALL_STATE(4633)] = 7830, - [SMALL_STATE(4634)] = 7912, - [SMALL_STATE(4635)] = 7982, - [SMALL_STATE(4636)] = 8050, - [SMALL_STATE(4637)] = 8120, - [SMALL_STATE(4638)] = 8192, - [SMALL_STATE(4639)] = 8262, - [SMALL_STATE(4640)] = 8334, - [SMALL_STATE(4641)] = 8416, - [SMALL_STATE(4642)] = 8488, - [SMALL_STATE(4643)] = 8570, - [SMALL_STATE(4644)] = 8642, - [SMALL_STATE(4645)] = 8724, - [SMALL_STATE(4646)] = 8796, - [SMALL_STATE(4647)] = 8868, - [SMALL_STATE(4648)] = 8936, - [SMALL_STATE(4649)] = 9006, - [SMALL_STATE(4650)] = 9088, - [SMALL_STATE(4651)] = 9160, - [SMALL_STATE(4652)] = 9232, - [SMALL_STATE(4653)] = 9300, - [SMALL_STATE(4654)] = 9382, - [SMALL_STATE(4655)] = 9454, - [SMALL_STATE(4656)] = 9522, - [SMALL_STATE(4657)] = 9594, - [SMALL_STATE(4658)] = 9666, - [SMALL_STATE(4659)] = 9734, - [SMALL_STATE(4660)] = 9802, - [SMALL_STATE(4661)] = 9874, - [SMALL_STATE(4662)] = 9956, - [SMALL_STATE(4663)] = 10038, - [SMALL_STATE(4664)] = 10110, - [SMALL_STATE(4665)] = 10182, - [SMALL_STATE(4666)] = 10254, - [SMALL_STATE(4667)] = 10326, - [SMALL_STATE(4668)] = 10398, - [SMALL_STATE(4669)] = 10470, - [SMALL_STATE(4670)] = 10542, - [SMALL_STATE(4671)] = 10624, - [SMALL_STATE(4672)] = 10696, - [SMALL_STATE(4673)] = 10768, - [SMALL_STATE(4674)] = 10850, - [SMALL_STATE(4675)] = 10922, - [SMALL_STATE(4676)] = 10992, - [SMALL_STATE(4677)] = 11074, - [SMALL_STATE(4678)] = 11146, - [SMALL_STATE(4679)] = 11228, - [SMALL_STATE(4680)] = 11310, - [SMALL_STATE(4681)] = 11378, - [SMALL_STATE(4682)] = 11450, - [SMALL_STATE(4683)] = 11518, - [SMALL_STATE(4684)] = 11590, - [SMALL_STATE(4685)] = 11658, - [SMALL_STATE(4686)] = 11730, - [SMALL_STATE(4687)] = 11798, - [SMALL_STATE(4688)] = 11870, - [SMALL_STATE(4689)] = 11938, - [SMALL_STATE(4690)] = 12010, + [SMALL_STATE(4620)] = 6900, + [SMALL_STATE(4621)] = 6972, + [SMALL_STATE(4622)] = 7040, + [SMALL_STATE(4623)] = 7112, + [SMALL_STATE(4624)] = 7184, + [SMALL_STATE(4625)] = 7256, + [SMALL_STATE(4626)] = 7326, + [SMALL_STATE(4627)] = 7396, + [SMALL_STATE(4628)] = 7466, + [SMALL_STATE(4629)] = 7538, + [SMALL_STATE(4630)] = 7606, + [SMALL_STATE(4631)] = 7676, + [SMALL_STATE(4632)] = 7744, + [SMALL_STATE(4633)] = 7812, + [SMALL_STATE(4634)] = 7884, + [SMALL_STATE(4635)] = 7954, + [SMALL_STATE(4636)] = 8022, + [SMALL_STATE(4637)] = 8094, + [SMALL_STATE(4638)] = 8176, + [SMALL_STATE(4639)] = 8248, + [SMALL_STATE(4640)] = 8316, + [SMALL_STATE(4641)] = 8388, + [SMALL_STATE(4642)] = 8470, + [SMALL_STATE(4643)] = 8552, + [SMALL_STATE(4644)] = 8624, + [SMALL_STATE(4645)] = 8706, + [SMALL_STATE(4646)] = 8788, + [SMALL_STATE(4647)] = 8870, + [SMALL_STATE(4648)] = 8952, + [SMALL_STATE(4649)] = 9034, + [SMALL_STATE(4650)] = 9116, + [SMALL_STATE(4651)] = 9198, + [SMALL_STATE(4652)] = 9266, + [SMALL_STATE(4653)] = 9338, + [SMALL_STATE(4654)] = 9406, + [SMALL_STATE(4655)] = 9478, + [SMALL_STATE(4656)] = 9546, + [SMALL_STATE(4657)] = 9614, + [SMALL_STATE(4658)] = 9682, + [SMALL_STATE(4659)] = 9754, + [SMALL_STATE(4660)] = 9822, + [SMALL_STATE(4661)] = 9894, + [SMALL_STATE(4662)] = 9964, + [SMALL_STATE(4663)] = 10036, + [SMALL_STATE(4664)] = 10108, + [SMALL_STATE(4665)] = 10180, + [SMALL_STATE(4666)] = 10262, + [SMALL_STATE(4667)] = 10344, + [SMALL_STATE(4668)] = 10412, + [SMALL_STATE(4669)] = 10484, + [SMALL_STATE(4670)] = 10566, + [SMALL_STATE(4671)] = 10638, + [SMALL_STATE(4672)] = 10710, + [SMALL_STATE(4673)] = 10792, + [SMALL_STATE(4674)] = 10874, + [SMALL_STATE(4675)] = 10946, + [SMALL_STATE(4676)] = 11014, + [SMALL_STATE(4677)] = 11086, + [SMALL_STATE(4678)] = 11158, + [SMALL_STATE(4679)] = 11230, + [SMALL_STATE(4680)] = 11298, + [SMALL_STATE(4681)] = 11370, + [SMALL_STATE(4682)] = 11442, + [SMALL_STATE(4683)] = 11514, + [SMALL_STATE(4684)] = 11582, + [SMALL_STATE(4685)] = 11650, + [SMALL_STATE(4686)] = 11722, + [SMALL_STATE(4687)] = 11794, + [SMALL_STATE(4688)] = 11862, + [SMALL_STATE(4689)] = 11934, + [SMALL_STATE(4690)] = 12006, [SMALL_STATE(4691)] = 12078, [SMALL_STATE(4692)] = 12150, [SMALL_STATE(4693)] = 12222, [SMALL_STATE(4694)] = 12289, [SMALL_STATE(4695)] = 12356, - [SMALL_STATE(4696)] = 12433, - [SMALL_STATE(4697)] = 12510, - [SMALL_STATE(4698)] = 12577, - [SMALL_STATE(4699)] = 12644, - [SMALL_STATE(4700)] = 12711, - [SMALL_STATE(4701)] = 12788, - [SMALL_STATE(4702)] = 12865, - [SMALL_STATE(4703)] = 12942, - [SMALL_STATE(4704)] = 13019, - [SMALL_STATE(4705)] = 13086, - [SMALL_STATE(4706)] = 13153, - [SMALL_STATE(4707)] = 13220, - [SMALL_STATE(4708)] = 13287, - [SMALL_STATE(4709)] = 13354, - [SMALL_STATE(4710)] = 13421, - [SMALL_STATE(4711)] = 13488, - [SMALL_STATE(4712)] = 13555, - [SMALL_STATE(4713)] = 13622, - [SMALL_STATE(4714)] = 13689, - [SMALL_STATE(4715)] = 13756, - [SMALL_STATE(4716)] = 13825, - [SMALL_STATE(4717)] = 13892, - [SMALL_STATE(4718)] = 13969, - [SMALL_STATE(4719)] = 14036, - [SMALL_STATE(4720)] = 14103, - [SMALL_STATE(4721)] = 14170, - [SMALL_STATE(4722)] = 14237, - [SMALL_STATE(4723)] = 14304, - [SMALL_STATE(4724)] = 14371, - [SMALL_STATE(4725)] = 14452, - [SMALL_STATE(4726)] = 14519, - [SMALL_STATE(4727)] = 14586, - [SMALL_STATE(4728)] = 14653, - [SMALL_STATE(4729)] = 14720, - [SMALL_STATE(4730)] = 14787, - [SMALL_STATE(4731)] = 14854, - [SMALL_STATE(4732)] = 14923, - [SMALL_STATE(4733)] = 14992, - [SMALL_STATE(4734)] = 15059, - [SMALL_STATE(4735)] = 15126, - [SMALL_STATE(4736)] = 15193, - [SMALL_STATE(4737)] = 15264, - [SMALL_STATE(4738)] = 15331, - [SMALL_STATE(4739)] = 15408, - [SMALL_STATE(4740)] = 15475, - [SMALL_STATE(4741)] = 15542, - [SMALL_STATE(4742)] = 15621, - [SMALL_STATE(4743)] = 15698, - [SMALL_STATE(4744)] = 15765, - [SMALL_STATE(4745)] = 15832, - [SMALL_STATE(4746)] = 15899, - [SMALL_STATE(4747)] = 15966, - [SMALL_STATE(4748)] = 16045, - [SMALL_STATE(4749)] = 16112, - [SMALL_STATE(4750)] = 16179, - [SMALL_STATE(4751)] = 16258, - [SMALL_STATE(4752)] = 16325, - [SMALL_STATE(4753)] = 16404, - [SMALL_STATE(4754)] = 16475, - [SMALL_STATE(4755)] = 16542, - [SMALL_STATE(4756)] = 16621, - [SMALL_STATE(4757)] = 16688, - [SMALL_STATE(4758)] = 16757, - [SMALL_STATE(4759)] = 16836, - [SMALL_STATE(4760)] = 16917, - [SMALL_STATE(4761)] = 16996, - [SMALL_STATE(4762)] = 17077, - [SMALL_STATE(4763)] = 17156, - [SMALL_STATE(4764)] = 17223, - [SMALL_STATE(4765)] = 17290, - [SMALL_STATE(4766)] = 17367, - [SMALL_STATE(4767)] = 17446, - [SMALL_STATE(4768)] = 17523, - [SMALL_STATE(4769)] = 17600, - [SMALL_STATE(4770)] = 17679, - [SMALL_STATE(4771)] = 17746, - [SMALL_STATE(4772)] = 17813, - [SMALL_STATE(4773)] = 17880, - [SMALL_STATE(4774)] = 17947, - [SMALL_STATE(4775)] = 18014, - [SMALL_STATE(4776)] = 18081, - [SMALL_STATE(4777)] = 18148, - [SMALL_STATE(4778)] = 18215, - [SMALL_STATE(4779)] = 18286, - [SMALL_STATE(4780)] = 18353, - [SMALL_STATE(4781)] = 18422, - [SMALL_STATE(4782)] = 18489, - [SMALL_STATE(4783)] = 18556, - [SMALL_STATE(4784)] = 18623, - [SMALL_STATE(4785)] = 18692, - [SMALL_STATE(4786)] = 18759, - [SMALL_STATE(4787)] = 18826, - [SMALL_STATE(4788)] = 18893, - [SMALL_STATE(4789)] = 18960, - [SMALL_STATE(4790)] = 19029, - [SMALL_STATE(4791)] = 19096, - [SMALL_STATE(4792)] = 19163, - [SMALL_STATE(4793)] = 19236, - [SMALL_STATE(4794)] = 19309, - [SMALL_STATE(4795)] = 19378, - [SMALL_STATE(4796)] = 19445, - [SMALL_STATE(4797)] = 19512, - [SMALL_STATE(4798)] = 19581, - [SMALL_STATE(4799)] = 19648, - [SMALL_STATE(4800)] = 19715, - [SMALL_STATE(4801)] = 19782, - [SMALL_STATE(4802)] = 19849, - [SMALL_STATE(4803)] = 19916, - [SMALL_STATE(4804)] = 19983, - [SMALL_STATE(4805)] = 20050, - [SMALL_STATE(4806)] = 20117, - [SMALL_STATE(4807)] = 20184, - [SMALL_STATE(4808)] = 20251, - [SMALL_STATE(4809)] = 20328, - [SMALL_STATE(4810)] = 20395, - [SMALL_STATE(4811)] = 20462, - [SMALL_STATE(4812)] = 20535, - [SMALL_STATE(4813)] = 20602, - [SMALL_STATE(4814)] = 20669, - [SMALL_STATE(4815)] = 20736, - [SMALL_STATE(4816)] = 20803, - [SMALL_STATE(4817)] = 20870, - [SMALL_STATE(4818)] = 20937, - [SMALL_STATE(4819)] = 21004, - [SMALL_STATE(4820)] = 21071, - [SMALL_STATE(4821)] = 21140, - [SMALL_STATE(4822)] = 21207, - [SMALL_STATE(4823)] = 21274, - [SMALL_STATE(4824)] = 21341, - [SMALL_STATE(4825)] = 21408, - [SMALL_STATE(4826)] = 21475, - [SMALL_STATE(4827)] = 21556, - [SMALL_STATE(4828)] = 21623, - [SMALL_STATE(4829)] = 21690, - [SMALL_STATE(4830)] = 21757, - [SMALL_STATE(4831)] = 21824, - [SMALL_STATE(4832)] = 21891, - [SMALL_STATE(4833)] = 21958, - [SMALL_STATE(4834)] = 22025, - [SMALL_STATE(4835)] = 22092, - [SMALL_STATE(4836)] = 22159, - [SMALL_STATE(4837)] = 22226, - [SMALL_STATE(4838)] = 22293, - [SMALL_STATE(4839)] = 22360, - [SMALL_STATE(4840)] = 22427, - [SMALL_STATE(4841)] = 22494, - [SMALL_STATE(4842)] = 22575, - [SMALL_STATE(4843)] = 22642, - [SMALL_STATE(4844)] = 22719, - [SMALL_STATE(4845)] = 22786, - [SMALL_STATE(4846)] = 22853, - [SMALL_STATE(4847)] = 22920, - [SMALL_STATE(4848)] = 22997, - [SMALL_STATE(4849)] = 23064, - [SMALL_STATE(4850)] = 23141, - [SMALL_STATE(4851)] = 23218, - [SMALL_STATE(4852)] = 23285, - [SMALL_STATE(4853)] = 23364, - [SMALL_STATE(4854)] = 23431, - [SMALL_STATE(4855)] = 23498, - [SMALL_STATE(4856)] = 23565, - [SMALL_STATE(4857)] = 23632, - [SMALL_STATE(4858)] = 23711, - [SMALL_STATE(4859)] = 23778, - [SMALL_STATE(4860)] = 23845, - [SMALL_STATE(4861)] = 23916, - [SMALL_STATE(4862)] = 23983, - [SMALL_STATE(4863)] = 24052, - [SMALL_STATE(4864)] = 24119, - [SMALL_STATE(4865)] = 24186, - [SMALL_STATE(4866)] = 24257, - [SMALL_STATE(4867)] = 24328, - [SMALL_STATE(4868)] = 24395, - [SMALL_STATE(4869)] = 24464, - [SMALL_STATE(4870)] = 24541, - [SMALL_STATE(4871)] = 24608, - [SMALL_STATE(4872)] = 24675, - [SMALL_STATE(4873)] = 24746, - [SMALL_STATE(4874)] = 24813, - [SMALL_STATE(4875)] = 24880, - [SMALL_STATE(4876)] = 24957, - [SMALL_STATE(4877)] = 25024, - [SMALL_STATE(4878)] = 25091, - [SMALL_STATE(4879)] = 25158, - [SMALL_STATE(4880)] = 25225, - [SMALL_STATE(4881)] = 25292, - [SMALL_STATE(4882)] = 25371, - [SMALL_STATE(4883)] = 25450, - [SMALL_STATE(4884)] = 25517, - [SMALL_STATE(4885)] = 25584, - [SMALL_STATE(4886)] = 25663, - [SMALL_STATE(4887)] = 25730, + [SMALL_STATE(4696)] = 12423, + [SMALL_STATE(4697)] = 12490, + [SMALL_STATE(4698)] = 12557, + [SMALL_STATE(4699)] = 12624, + [SMALL_STATE(4700)] = 12691, + [SMALL_STATE(4701)] = 12758, + [SMALL_STATE(4702)] = 12825, + [SMALL_STATE(4703)] = 12892, + [SMALL_STATE(4704)] = 12959, + [SMALL_STATE(4705)] = 13026, + [SMALL_STATE(4706)] = 13093, + [SMALL_STATE(4707)] = 13160, + [SMALL_STATE(4708)] = 13227, + [SMALL_STATE(4709)] = 13294, + [SMALL_STATE(4710)] = 13361, + [SMALL_STATE(4711)] = 13428, + [SMALL_STATE(4712)] = 13495, + [SMALL_STATE(4713)] = 13562, + [SMALL_STATE(4714)] = 13629, + [SMALL_STATE(4715)] = 13696, + [SMALL_STATE(4716)] = 13773, + [SMALL_STATE(4717)] = 13840, + [SMALL_STATE(4718)] = 13907, + [SMALL_STATE(4719)] = 13984, + [SMALL_STATE(4720)] = 14061, + [SMALL_STATE(4721)] = 14130, + [SMALL_STATE(4722)] = 14199, + [SMALL_STATE(4723)] = 14266, + [SMALL_STATE(4724)] = 14343, + [SMALL_STATE(4725)] = 14410, + [SMALL_STATE(4726)] = 14487, + [SMALL_STATE(4727)] = 14564, + [SMALL_STATE(4728)] = 14641, + [SMALL_STATE(4729)] = 14708, + [SMALL_STATE(4730)] = 14785, + [SMALL_STATE(4731)] = 14852, + [SMALL_STATE(4732)] = 14921, + [SMALL_STATE(4733)] = 14988, + [SMALL_STATE(4734)] = 15055, + [SMALL_STATE(4735)] = 15122, + [SMALL_STATE(4736)] = 15189, + [SMALL_STATE(4737)] = 15262, + [SMALL_STATE(4738)] = 15329, + [SMALL_STATE(4739)] = 15396, + [SMALL_STATE(4740)] = 15463, + [SMALL_STATE(4741)] = 15530, + [SMALL_STATE(4742)] = 15597, + [SMALL_STATE(4743)] = 15664, + [SMALL_STATE(4744)] = 15731, + [SMALL_STATE(4745)] = 15798, + [SMALL_STATE(4746)] = 15865, + [SMALL_STATE(4747)] = 15932, + [SMALL_STATE(4748)] = 15999, + [SMALL_STATE(4749)] = 16066, + [SMALL_STATE(4750)] = 16133, + [SMALL_STATE(4751)] = 16200, + [SMALL_STATE(4752)] = 16267, + [SMALL_STATE(4753)] = 16334, + [SMALL_STATE(4754)] = 16401, + [SMALL_STATE(4755)] = 16468, + [SMALL_STATE(4756)] = 16535, + [SMALL_STATE(4757)] = 16602, + [SMALL_STATE(4758)] = 16681, + [SMALL_STATE(4759)] = 16748, + [SMALL_STATE(4760)] = 16815, + [SMALL_STATE(4761)] = 16882, + [SMALL_STATE(4762)] = 16961, + [SMALL_STATE(4763)] = 17030, + [SMALL_STATE(4764)] = 17109, + [SMALL_STATE(4765)] = 17176, + [SMALL_STATE(4766)] = 17243, + [SMALL_STATE(4767)] = 17322, + [SMALL_STATE(4768)] = 17389, + [SMALL_STATE(4769)] = 17456, + [SMALL_STATE(4770)] = 17523, + [SMALL_STATE(4771)] = 17602, + [SMALL_STATE(4772)] = 17669, + [SMALL_STATE(4773)] = 17736, + [SMALL_STATE(4774)] = 17803, + [SMALL_STATE(4775)] = 17870, + [SMALL_STATE(4776)] = 17937, + [SMALL_STATE(4777)] = 18004, + [SMALL_STATE(4778)] = 18073, + [SMALL_STATE(4779)] = 18144, + [SMALL_STATE(4780)] = 18213, + [SMALL_STATE(4781)] = 18280, + [SMALL_STATE(4782)] = 18347, + [SMALL_STATE(4783)] = 18416, + [SMALL_STATE(4784)] = 18487, + [SMALL_STATE(4785)] = 18554, + [SMALL_STATE(4786)] = 18625, + [SMALL_STATE(4787)] = 18692, + [SMALL_STATE(4788)] = 18759, + [SMALL_STATE(4789)] = 18826, + [SMALL_STATE(4790)] = 18893, + [SMALL_STATE(4791)] = 18960, + [SMALL_STATE(4792)] = 19027, + [SMALL_STATE(4793)] = 19104, + [SMALL_STATE(4794)] = 19171, + [SMALL_STATE(4795)] = 19238, + [SMALL_STATE(4796)] = 19315, + [SMALL_STATE(4797)] = 19384, + [SMALL_STATE(4798)] = 19451, + [SMALL_STATE(4799)] = 19518, + [SMALL_STATE(4800)] = 19585, + [SMALL_STATE(4801)] = 19652, + [SMALL_STATE(4802)] = 19719, + [SMALL_STATE(4803)] = 19786, + [SMALL_STATE(4804)] = 19857, + [SMALL_STATE(4805)] = 19924, + [SMALL_STATE(4806)] = 19993, + [SMALL_STATE(4807)] = 20060, + [SMALL_STATE(4808)] = 20131, + [SMALL_STATE(4809)] = 20200, + [SMALL_STATE(4810)] = 20267, + [SMALL_STATE(4811)] = 20334, + [SMALL_STATE(4812)] = 20401, + [SMALL_STATE(4813)] = 20468, + [SMALL_STATE(4814)] = 20535, + [SMALL_STATE(4815)] = 20602, + [SMALL_STATE(4816)] = 20669, + [SMALL_STATE(4817)] = 20736, + [SMALL_STATE(4818)] = 20803, + [SMALL_STATE(4819)] = 20870, + [SMALL_STATE(4820)] = 20937, + [SMALL_STATE(4821)] = 21006, + [SMALL_STATE(4822)] = 21073, + [SMALL_STATE(4823)] = 21140, + [SMALL_STATE(4824)] = 21207, + [SMALL_STATE(4825)] = 21274, + [SMALL_STATE(4826)] = 21341, + [SMALL_STATE(4827)] = 21408, + [SMALL_STATE(4828)] = 21475, + [SMALL_STATE(4829)] = 21542, + [SMALL_STATE(4830)] = 21613, + [SMALL_STATE(4831)] = 21680, + [SMALL_STATE(4832)] = 21747, + [SMALL_STATE(4833)] = 21814, + [SMALL_STATE(4834)] = 21881, + [SMALL_STATE(4835)] = 21948, + [SMALL_STATE(4836)] = 22015, + [SMALL_STATE(4837)] = 22082, + [SMALL_STATE(4838)] = 22149, + [SMALL_STATE(4839)] = 22216, + [SMALL_STATE(4840)] = 22283, + [SMALL_STATE(4841)] = 22350, + [SMALL_STATE(4842)] = 22417, + [SMALL_STATE(4843)] = 22484, + [SMALL_STATE(4844)] = 22551, + [SMALL_STATE(4845)] = 22628, + [SMALL_STATE(4846)] = 22705, + [SMALL_STATE(4847)] = 22782, + [SMALL_STATE(4848)] = 22859, + [SMALL_STATE(4849)] = 22936, + [SMALL_STATE(4850)] = 23013, + [SMALL_STATE(4851)] = 23090, + [SMALL_STATE(4852)] = 23167, + [SMALL_STATE(4853)] = 23246, + [SMALL_STATE(4854)] = 23325, + [SMALL_STATE(4855)] = 23392, + [SMALL_STATE(4856)] = 23473, + [SMALL_STATE(4857)] = 23552, + [SMALL_STATE(4858)] = 23631, + [SMALL_STATE(4859)] = 23698, + [SMALL_STATE(4860)] = 23765, + [SMALL_STATE(4861)] = 23844, + [SMALL_STATE(4862)] = 23911, + [SMALL_STATE(4863)] = 23988, + [SMALL_STATE(4864)] = 24061, + [SMALL_STATE(4865)] = 24134, + [SMALL_STATE(4866)] = 24201, + [SMALL_STATE(4867)] = 24280, + [SMALL_STATE(4868)] = 24347, + [SMALL_STATE(4869)] = 24426, + [SMALL_STATE(4870)] = 24505, + [SMALL_STATE(4871)] = 24572, + [SMALL_STATE(4872)] = 24651, + [SMALL_STATE(4873)] = 24718, + [SMALL_STATE(4874)] = 24799, + [SMALL_STATE(4875)] = 24878, + [SMALL_STATE(4876)] = 24945, + [SMALL_STATE(4877)] = 25012, + [SMALL_STATE(4878)] = 25093, + [SMALL_STATE(4879)] = 25160, + [SMALL_STATE(4880)] = 25227, + [SMALL_STATE(4881)] = 25294, + [SMALL_STATE(4882)] = 25361, + [SMALL_STATE(4883)] = 25442, + [SMALL_STATE(4884)] = 25509, + [SMALL_STATE(4885)] = 25578, + [SMALL_STATE(4886)] = 25645, + [SMALL_STATE(4887)] = 25726, [SMALL_STATE(4888)] = 25797, [SMALL_STATE(4889)] = 25864, - [SMALL_STATE(4890)] = 25934, - [SMALL_STATE(4891)] = 26010, - [SMALL_STATE(4892)] = 26086, - [SMALL_STATE(4893)] = 26162, - [SMALL_STATE(4894)] = 26228, - [SMALL_STATE(4895)] = 26298, - [SMALL_STATE(4896)] = 26374, + [SMALL_STATE(4890)] = 25938, + [SMALL_STATE(4891)] = 26004, + [SMALL_STATE(4892)] = 26080, + [SMALL_STATE(4893)] = 26156, + [SMALL_STATE(4894)] = 26230, + [SMALL_STATE(4895)] = 26306, + [SMALL_STATE(4896)] = 26380, [SMALL_STATE(4897)] = 26450, - [SMALL_STATE(4898)] = 26526, - [SMALL_STATE(4899)] = 26602, - [SMALL_STATE(4900)] = 26682, - [SMALL_STATE(4901)] = 26756, - [SMALL_STATE(4902)] = 26830, - [SMALL_STATE(4903)] = 26908, - [SMALL_STATE(4904)] = 26986, - [SMALL_STATE(4905)] = 27052, - [SMALL_STATE(4906)] = 27126, - [SMALL_STATE(4907)] = 27192, - [SMALL_STATE(4908)] = 27258, - [SMALL_STATE(4909)] = 27334, - [SMALL_STATE(4910)] = 27410, - [SMALL_STATE(4911)] = 27480, - [SMALL_STATE(4912)] = 27546, - [SMALL_STATE(4913)] = 27622, - [SMALL_STATE(4914)] = 27692, - [SMALL_STATE(4915)] = 27772, - [SMALL_STATE(4916)] = 27842, - [SMALL_STATE(4917)] = 27916, - [SMALL_STATE(4918)] = 27996, - [SMALL_STATE(4919)] = 28070, - [SMALL_STATE(4920)] = 28144, - [SMALL_STATE(4921)] = 28224, - [SMALL_STATE(4922)] = 28290, - [SMALL_STATE(4923)] = 28366, - [SMALL_STATE(4924)] = 28442, - [SMALL_STATE(4925)] = 28516, - [SMALL_STATE(4926)] = 28586, - [SMALL_STATE(4927)] = 28660, - [SMALL_STATE(4928)] = 28726, - [SMALL_STATE(4929)] = 28800, - [SMALL_STATE(4930)] = 28876, - [SMALL_STATE(4931)] = 28950, - [SMALL_STATE(4932)] = 29024, - [SMALL_STATE(4933)] = 29098, - [SMALL_STATE(4934)] = 29164, - [SMALL_STATE(4935)] = 29230, - [SMALL_STATE(4936)] = 29304, - [SMALL_STATE(4937)] = 29370, - [SMALL_STATE(4938)] = 29442, - [SMALL_STATE(4939)] = 29520, + [SMALL_STATE(4898)] = 26524, + [SMALL_STATE(4899)] = 26594, + [SMALL_STATE(4900)] = 26670, + [SMALL_STATE(4901)] = 26736, + [SMALL_STATE(4902)] = 26812, + [SMALL_STATE(4903)] = 26878, + [SMALL_STATE(4904)] = 26944, + [SMALL_STATE(4905)] = 27010, + [SMALL_STATE(4906)] = 27076, + [SMALL_STATE(4907)] = 27154, + [SMALL_STATE(4908)] = 27230, + [SMALL_STATE(4909)] = 27296, + [SMALL_STATE(4910)] = 27370, + [SMALL_STATE(4911)] = 27436, + [SMALL_STATE(4912)] = 27510, + [SMALL_STATE(4913)] = 27586, + [SMALL_STATE(4914)] = 27662, + [SMALL_STATE(4915)] = 27738, + [SMALL_STATE(4916)] = 27814, + [SMALL_STATE(4917)] = 27880, + [SMALL_STATE(4918)] = 27956, + [SMALL_STATE(4919)] = 28022, + [SMALL_STATE(4920)] = 28098, + [SMALL_STATE(4921)] = 28168, + [SMALL_STATE(4922)] = 28244, + [SMALL_STATE(4923)] = 28320, + [SMALL_STATE(4924)] = 28396, + [SMALL_STATE(4925)] = 28470, + [SMALL_STATE(4926)] = 28540, + [SMALL_STATE(4927)] = 28616, + [SMALL_STATE(4928)] = 28696, + [SMALL_STATE(4929)] = 28770, + [SMALL_STATE(4930)] = 28848, + [SMALL_STATE(4931)] = 28928, + [SMALL_STATE(4932)] = 28994, + [SMALL_STATE(4933)] = 29074, + [SMALL_STATE(4934)] = 29148, + [SMALL_STATE(4935)] = 29226, + [SMALL_STATE(4936)] = 29300, + [SMALL_STATE(4937)] = 29376, + [SMALL_STATE(4938)] = 29450, + [SMALL_STATE(4939)] = 29516, [SMALL_STATE(4940)] = 29596, [SMALL_STATE(4941)] = 29670, - [SMALL_STATE(4942)] = 29746, - [SMALL_STATE(4943)] = 29820, - [SMALL_STATE(4944)] = 29894, - [SMALL_STATE(4945)] = 29966, - [SMALL_STATE(4946)] = 30040, - [SMALL_STATE(4947)] = 30116, - [SMALL_STATE(4948)] = 30190, - [SMALL_STATE(4949)] = 30268, - [SMALL_STATE(4950)] = 30344, - [SMALL_STATE(4951)] = 30410, - [SMALL_STATE(4952)] = 30484, - [SMALL_STATE(4953)] = 30558, - [SMALL_STATE(4954)] = 30624, - [SMALL_STATE(4955)] = 30690, - [SMALL_STATE(4956)] = 30764, + [SMALL_STATE(4942)] = 29744, + [SMALL_STATE(4943)] = 29818, + [SMALL_STATE(4944)] = 29884, + [SMALL_STATE(4945)] = 29954, + [SMALL_STATE(4946)] = 30030, + [SMALL_STATE(4947)] = 30104, + [SMALL_STATE(4948)] = 30178, + [SMALL_STATE(4949)] = 30252, + [SMALL_STATE(4950)] = 30324, + [SMALL_STATE(4951)] = 30394, + [SMALL_STATE(4952)] = 30468, + [SMALL_STATE(4953)] = 30542, + [SMALL_STATE(4954)] = 30620, + [SMALL_STATE(4955)] = 30694, + [SMALL_STATE(4956)] = 30768, [SMALL_STATE(4957)] = 30842, - [SMALL_STATE(4958)] = 30922, - [SMALL_STATE(4959)] = 30996, - [SMALL_STATE(4960)] = 31072, + [SMALL_STATE(4958)] = 30918, + [SMALL_STATE(4959)] = 30990, + [SMALL_STATE(4960)] = 31070, [SMALL_STATE(4961)] = 31148, - [SMALL_STATE(4962)] = 31217, - [SMALL_STATE(4963)] = 31286, - [SMALL_STATE(4964)] = 31355, - [SMALL_STATE(4965)] = 31420, - [SMALL_STATE(4966)] = 31485, - [SMALL_STATE(4967)] = 31560, - [SMALL_STATE(4968)] = 31625, - [SMALL_STATE(4969)] = 31690, - [SMALL_STATE(4970)] = 31759, - [SMALL_STATE(4971)] = 31834, - [SMALL_STATE(4972)] = 31905, - [SMALL_STATE(4973)] = 31974, - [SMALL_STATE(4974)] = 32051, + [SMALL_STATE(4962)] = 31225, + [SMALL_STATE(4963)] = 31294, + [SMALL_STATE(4964)] = 31369, + [SMALL_STATE(4965)] = 31438, + [SMALL_STATE(4966)] = 31503, + [SMALL_STATE(4967)] = 31568, + [SMALL_STATE(4968)] = 31637, + [SMALL_STATE(4969)] = 31706, + [SMALL_STATE(4970)] = 31773, + [SMALL_STATE(4971)] = 31850, + [SMALL_STATE(4972)] = 31919, + [SMALL_STATE(4973)] = 31988, + [SMALL_STATE(4974)] = 32057, [SMALL_STATE(4975)] = 32126, - [SMALL_STATE(4976)] = 32195, - [SMALL_STATE(4977)] = 32268, - [SMALL_STATE(4978)] = 32337, - [SMALL_STATE(4979)] = 32402, - [SMALL_STATE(4980)] = 32471, - [SMALL_STATE(4981)] = 32536, - [SMALL_STATE(4982)] = 32601, - [SMALL_STATE(4983)] = 32666, - [SMALL_STATE(4984)] = 32731, - [SMALL_STATE(4985)] = 32800, - [SMALL_STATE(4986)] = 32873, - [SMALL_STATE(4987)] = 32938, - [SMALL_STATE(4988)] = 33011, - [SMALL_STATE(4989)] = 33084, - [SMALL_STATE(4990)] = 33153, - [SMALL_STATE(4991)] = 33222, - [SMALL_STATE(4992)] = 33295, - [SMALL_STATE(4993)] = 33364, - [SMALL_STATE(4994)] = 33429, - [SMALL_STATE(4995)] = 33502, - [SMALL_STATE(4996)] = 33571, - [SMALL_STATE(4997)] = 33640, - [SMALL_STATE(4998)] = 33705, - [SMALL_STATE(4999)] = 33778, - [SMALL_STATE(5000)] = 33847, - [SMALL_STATE(5001)] = 33916, - [SMALL_STATE(5002)] = 33989, - [SMALL_STATE(5003)] = 34058, - [SMALL_STATE(5004)] = 34131, - [SMALL_STATE(5005)] = 34200, - [SMALL_STATE(5006)] = 34273, - [SMALL_STATE(5007)] = 34346, - [SMALL_STATE(5008)] = 34419, - [SMALL_STATE(5009)] = 34488, - [SMALL_STATE(5010)] = 34565, - [SMALL_STATE(5011)] = 34634, - [SMALL_STATE(5012)] = 34711, - [SMALL_STATE(5013)] = 34776, - [SMALL_STATE(5014)] = 34845, - [SMALL_STATE(5015)] = 34910, - [SMALL_STATE(5016)] = 34985, - [SMALL_STATE(5017)] = 35054, - [SMALL_STATE(5018)] = 35119, - [SMALL_STATE(5019)] = 35192, - [SMALL_STATE(5020)] = 35261, - [SMALL_STATE(5021)] = 35330, - [SMALL_STATE(5022)] = 35403, - [SMALL_STATE(5023)] = 35476, - [SMALL_STATE(5024)] = 35541, - [SMALL_STATE(5025)] = 35610, - [SMALL_STATE(5026)] = 35679, - [SMALL_STATE(5027)] = 35744, - [SMALL_STATE(5028)] = 35811, - [SMALL_STATE(5029)] = 35878, - [SMALL_STATE(5030)] = 35951, - [SMALL_STATE(5031)] = 36020, - [SMALL_STATE(5032)] = 36089, - [SMALL_STATE(5033)] = 36162, - [SMALL_STATE(5034)] = 36231, - [SMALL_STATE(5035)] = 36296, - [SMALL_STATE(5036)] = 36369, - [SMALL_STATE(5037)] = 36434, - [SMALL_STATE(5038)] = 36499, - [SMALL_STATE(5039)] = 36572, - [SMALL_STATE(5040)] = 36645, - [SMALL_STATE(5041)] = 36710, - [SMALL_STATE(5042)] = 36775, - [SMALL_STATE(5043)] = 36846, - [SMALL_STATE(5044)] = 36911, - [SMALL_STATE(5045)] = 36980, - [SMALL_STATE(5046)] = 37047, - [SMALL_STATE(5047)] = 37120, - [SMALL_STATE(5048)] = 37193, - [SMALL_STATE(5049)] = 37266, - [SMALL_STATE(5050)] = 37335, - [SMALL_STATE(5051)] = 37404, - [SMALL_STATE(5052)] = 37479, - [SMALL_STATE(5053)] = 37552, - [SMALL_STATE(5054)] = 37625, - [SMALL_STATE(5055)] = 37698, - [SMALL_STATE(5056)] = 37771, - [SMALL_STATE(5057)] = 37844, + [SMALL_STATE(4976)] = 32201, + [SMALL_STATE(4977)] = 32270, + [SMALL_STATE(4978)] = 32339, + [SMALL_STATE(4979)] = 32404, + [SMALL_STATE(4980)] = 32473, + [SMALL_STATE(4981)] = 32550, + [SMALL_STATE(4982)] = 32619, + [SMALL_STATE(4983)] = 32684, + [SMALL_STATE(4984)] = 32753, + [SMALL_STATE(4985)] = 32820, + [SMALL_STATE(4986)] = 32895, + [SMALL_STATE(4987)] = 32960, + [SMALL_STATE(4988)] = 33035, + [SMALL_STATE(4989)] = 33108, + [SMALL_STATE(4990)] = 33173, + [SMALL_STATE(4991)] = 33242, + [SMALL_STATE(4992)] = 33311, + [SMALL_STATE(4993)] = 33376, + [SMALL_STATE(4994)] = 33441, + [SMALL_STATE(4995)] = 33506, + [SMALL_STATE(4996)] = 33575, + [SMALL_STATE(4997)] = 33650, + [SMALL_STATE(4998)] = 33715, + [SMALL_STATE(4999)] = 33780, + [SMALL_STATE(5000)] = 33857, + [SMALL_STATE(5001)] = 33922, + [SMALL_STATE(5002)] = 33987, + [SMALL_STATE(5003)] = 34052, + [SMALL_STATE(5004)] = 34117, + [SMALL_STATE(5005)] = 34186, + [SMALL_STATE(5006)] = 34257, + [SMALL_STATE(5007)] = 34334, + [SMALL_STATE(5008)] = 34401, + [SMALL_STATE(5009)] = 34472, + [SMALL_STATE(5010)] = 34541, + [SMALL_STATE(5011)] = 34614, + [SMALL_STATE(5012)] = 34679, + [SMALL_STATE(5013)] = 34748, + [SMALL_STATE(5014)] = 34817, + [SMALL_STATE(5015)] = 34886, + [SMALL_STATE(5016)] = 34961, + [SMALL_STATE(5017)] = 35026, + [SMALL_STATE(5018)] = 35095, + [SMALL_STATE(5019)] = 35168, + [SMALL_STATE(5020)] = 35241, + [SMALL_STATE(5021)] = 35314, + [SMALL_STATE(5022)] = 35387, + [SMALL_STATE(5023)] = 35452, + [SMALL_STATE(5024)] = 35521, + [SMALL_STATE(5025)] = 35590, + [SMALL_STATE(5026)] = 35663, + [SMALL_STATE(5027)] = 35730, + [SMALL_STATE(5028)] = 35803, + [SMALL_STATE(5029)] = 35876, + [SMALL_STATE(5030)] = 35945, + [SMALL_STATE(5031)] = 36010, + [SMALL_STATE(5032)] = 36083, + [SMALL_STATE(5033)] = 36148, + [SMALL_STATE(5034)] = 36221, + [SMALL_STATE(5035)] = 36290, + [SMALL_STATE(5036)] = 36363, + [SMALL_STATE(5037)] = 36436, + [SMALL_STATE(5038)] = 36505, + [SMALL_STATE(5039)] = 36574, + [SMALL_STATE(5040)] = 36647, + [SMALL_STATE(5041)] = 36720, + [SMALL_STATE(5042)] = 36793, + [SMALL_STATE(5043)] = 36866, + [SMALL_STATE(5044)] = 36939, + [SMALL_STATE(5045)] = 37008, + [SMALL_STATE(5046)] = 37077, + [SMALL_STATE(5047)] = 37142, + [SMALL_STATE(5048)] = 37215, + [SMALL_STATE(5049)] = 37284, + [SMALL_STATE(5050)] = 37357, + [SMALL_STATE(5051)] = 37422, + [SMALL_STATE(5052)] = 37487, + [SMALL_STATE(5053)] = 37560, + [SMALL_STATE(5054)] = 37629, + [SMALL_STATE(5055)] = 37702, + [SMALL_STATE(5056)] = 37775, + [SMALL_STATE(5057)] = 37848, [SMALL_STATE(5058)] = 37917, - [SMALL_STATE(5059)] = 37986, + [SMALL_STATE(5059)] = 37990, [SMALL_STATE(5060)] = 38063, - [SMALL_STATE(5061)] = 38140, - [SMALL_STATE(5062)] = 38207, + [SMALL_STATE(5061)] = 38136, + [SMALL_STATE(5062)] = 38209, [SMALL_STATE(5063)] = 38282, - [SMALL_STATE(5064)] = 38351, + [SMALL_STATE(5064)] = 38347, [SMALL_STATE(5065)] = 38416, [SMALL_STATE(5066)] = 38480, [SMALL_STATE(5067)] = 38544, - [SMALL_STATE(5068)] = 38608, + [SMALL_STATE(5068)] = 38610, [SMALL_STATE(5069)] = 38674, - [SMALL_STATE(5070)] = 38744, - [SMALL_STATE(5071)] = 38814, - [SMALL_STATE(5072)] = 38878, - [SMALL_STATE(5073)] = 38942, - [SMALL_STATE(5074)] = 39014, - [SMALL_STATE(5075)] = 39086, - [SMALL_STATE(5076)] = 39150, - [SMALL_STATE(5077)] = 39224, - [SMALL_STATE(5078)] = 39290, - [SMALL_STATE(5079)] = 39354, - [SMALL_STATE(5080)] = 39418, - [SMALL_STATE(5081)] = 39482, - [SMALL_STATE(5082)] = 39546, - [SMALL_STATE(5083)] = 39610, - [SMALL_STATE(5084)] = 39674, - [SMALL_STATE(5085)] = 39746, - [SMALL_STATE(5086)] = 39810, - [SMALL_STATE(5087)] = 39874, - [SMALL_STATE(5088)] = 39938, - [SMALL_STATE(5089)] = 40002, - [SMALL_STATE(5090)] = 40066, - [SMALL_STATE(5091)] = 40130, - [SMALL_STATE(5092)] = 40194, - [SMALL_STATE(5093)] = 40258, - [SMALL_STATE(5094)] = 40322, - [SMALL_STATE(5095)] = 40386, - [SMALL_STATE(5096)] = 40450, - [SMALL_STATE(5097)] = 40514, - [SMALL_STATE(5098)] = 40578, - [SMALL_STATE(5099)] = 40642, - [SMALL_STATE(5100)] = 40714, - [SMALL_STATE(5101)] = 40778, - [SMALL_STATE(5102)] = 40842, - [SMALL_STATE(5103)] = 40906, - [SMALL_STATE(5104)] = 40970, - [SMALL_STATE(5105)] = 41034, - [SMALL_STATE(5106)] = 41098, - [SMALL_STATE(5107)] = 41162, - [SMALL_STATE(5108)] = 41234, - [SMALL_STATE(5109)] = 41298, - [SMALL_STATE(5110)] = 41362, - [SMALL_STATE(5111)] = 41426, - [SMALL_STATE(5112)] = 41498, - [SMALL_STATE(5113)] = 41562, - [SMALL_STATE(5114)] = 41626, - [SMALL_STATE(5115)] = 41690, - [SMALL_STATE(5116)] = 41754, - [SMALL_STATE(5117)] = 41818, - [SMALL_STATE(5118)] = 41890, - [SMALL_STATE(5119)] = 41954, - [SMALL_STATE(5120)] = 42018, - [SMALL_STATE(5121)] = 42082, - [SMALL_STATE(5122)] = 42146, - [SMALL_STATE(5123)] = 42210, - [SMALL_STATE(5124)] = 42274, - [SMALL_STATE(5125)] = 42338, - [SMALL_STATE(5126)] = 42402, - [SMALL_STATE(5127)] = 42466, - [SMALL_STATE(5128)] = 42530, - [SMALL_STATE(5129)] = 42596, - [SMALL_STATE(5130)] = 42662, - [SMALL_STATE(5131)] = 42726, - [SMALL_STATE(5132)] = 42790, - [SMALL_STATE(5133)] = 42854, - [SMALL_STATE(5134)] = 42918, - [SMALL_STATE(5135)] = 42982, - [SMALL_STATE(5136)] = 43048, - [SMALL_STATE(5137)] = 43112, - [SMALL_STATE(5138)] = 43176, - [SMALL_STATE(5139)] = 43250, - [SMALL_STATE(5140)] = 43314, - [SMALL_STATE(5141)] = 43378, - [SMALL_STATE(5142)] = 43442, - [SMALL_STATE(5143)] = 43506, - [SMALL_STATE(5144)] = 43578, - [SMALL_STATE(5145)] = 43642, - [SMALL_STATE(5146)] = 43706, - [SMALL_STATE(5147)] = 43770, - [SMALL_STATE(5148)] = 43834, - [SMALL_STATE(5149)] = 43898, - [SMALL_STATE(5150)] = 43962, - [SMALL_STATE(5151)] = 44026, - [SMALL_STATE(5152)] = 44090, - [SMALL_STATE(5153)] = 44154, - [SMALL_STATE(5154)] = 44226, - [SMALL_STATE(5155)] = 44290, - [SMALL_STATE(5156)] = 44354, - [SMALL_STATE(5157)] = 44418, - [SMALL_STATE(5158)] = 44482, - [SMALL_STATE(5159)] = 44546, - [SMALL_STATE(5160)] = 44610, - [SMALL_STATE(5161)] = 44674, - [SMALL_STATE(5162)] = 44738, - [SMALL_STATE(5163)] = 44802, - [SMALL_STATE(5164)] = 44866, - [SMALL_STATE(5165)] = 44930, - [SMALL_STATE(5166)] = 44994, - [SMALL_STATE(5167)] = 45058, - [SMALL_STATE(5168)] = 45122, - [SMALL_STATE(5169)] = 45186, - [SMALL_STATE(5170)] = 45256, - [SMALL_STATE(5171)] = 45320, - [SMALL_STATE(5172)] = 45394, - [SMALL_STATE(5173)] = 45458, - [SMALL_STATE(5174)] = 45522, - [SMALL_STATE(5175)] = 45592, - [SMALL_STATE(5176)] = 45656, - [SMALL_STATE(5177)] = 45724, - [SMALL_STATE(5178)] = 45788, - [SMALL_STATE(5179)] = 45852, - [SMALL_STATE(5180)] = 45916, - [SMALL_STATE(5181)] = 45980, - [SMALL_STATE(5182)] = 46044, - [SMALL_STATE(5183)] = 46108, - [SMALL_STATE(5184)] = 46178, - [SMALL_STATE(5185)] = 46242, - [SMALL_STATE(5186)] = 46306, - [SMALL_STATE(5187)] = 46370, - [SMALL_STATE(5188)] = 46434, - [SMALL_STATE(5189)] = 46498, - [SMALL_STATE(5190)] = 46562, - [SMALL_STATE(5191)] = 46626, - [SMALL_STATE(5192)] = 46692, - [SMALL_STATE(5193)] = 46756, - [SMALL_STATE(5194)] = 46820, - [SMALL_STATE(5195)] = 46884, - [SMALL_STATE(5196)] = 46950, - [SMALL_STATE(5197)] = 47014, - [SMALL_STATE(5198)] = 47084, - [SMALL_STATE(5199)] = 47156, - [SMALL_STATE(5200)] = 47220, - [SMALL_STATE(5201)] = 47284, - [SMALL_STATE(5202)] = 47348, - [SMALL_STATE(5203)] = 47416, - [SMALL_STATE(5204)] = 47490, - [SMALL_STATE(5205)] = 47562, - [SMALL_STATE(5206)] = 47634, - [SMALL_STATE(5207)] = 47706, - [SMALL_STATE(5208)] = 47770, - [SMALL_STATE(5209)] = 47834, - [SMALL_STATE(5210)] = 47898, - [SMALL_STATE(5211)] = 47962, - [SMALL_STATE(5212)] = 48026, - [SMALL_STATE(5213)] = 48100, - [SMALL_STATE(5214)] = 48164, - [SMALL_STATE(5215)] = 48230, - [SMALL_STATE(5216)] = 48294, - [SMALL_STATE(5217)] = 48366, - [SMALL_STATE(5218)] = 48440, - [SMALL_STATE(5219)] = 48504, - [SMALL_STATE(5220)] = 48568, - [SMALL_STATE(5221)] = 48632, - [SMALL_STATE(5222)] = 48696, - [SMALL_STATE(5223)] = 48760, - [SMALL_STATE(5224)] = 48832, - [SMALL_STATE(5225)] = 48896, - [SMALL_STATE(5226)] = 48960, - [SMALL_STATE(5227)] = 49034, - [SMALL_STATE(5228)] = 49098, - [SMALL_STATE(5229)] = 49162, - [SMALL_STATE(5230)] = 49226, - [SMALL_STATE(5231)] = 49296, - [SMALL_STATE(5232)] = 49370, - [SMALL_STATE(5233)] = 49434, - [SMALL_STATE(5234)] = 49498, - [SMALL_STATE(5235)] = 49562, - [SMALL_STATE(5236)] = 49626, - [SMALL_STATE(5237)] = 49690, - [SMALL_STATE(5238)] = 49754, - [SMALL_STATE(5239)] = 49818, - [SMALL_STATE(5240)] = 49890, - [SMALL_STATE(5241)] = 49954, - [SMALL_STATE(5242)] = 50018, - [SMALL_STATE(5243)] = 50082, - [SMALL_STATE(5244)] = 50154, - [SMALL_STATE(5245)] = 50218, - [SMALL_STATE(5246)] = 50282, - [SMALL_STATE(5247)] = 50346, - [SMALL_STATE(5248)] = 50410, - [SMALL_STATE(5249)] = 50474, - [SMALL_STATE(5250)] = 50546, - [SMALL_STATE(5251)] = 50610, - [SMALL_STATE(5252)] = 50674, - [SMALL_STATE(5253)] = 50740, - [SMALL_STATE(5254)] = 50804, - [SMALL_STATE(5255)] = 50872, - [SMALL_STATE(5256)] = 50936, - [SMALL_STATE(5257)] = 51000, - [SMALL_STATE(5258)] = 51072, - [SMALL_STATE(5259)] = 51136, + [SMALL_STATE(5070)] = 38742, + [SMALL_STATE(5071)] = 38806, + [SMALL_STATE(5072)] = 38872, + [SMALL_STATE(5073)] = 38936, + [SMALL_STATE(5074)] = 39000, + [SMALL_STATE(5075)] = 39064, + [SMALL_STATE(5076)] = 39128, + [SMALL_STATE(5077)] = 39192, + [SMALL_STATE(5078)] = 39256, + [SMALL_STATE(5079)] = 39320, + [SMALL_STATE(5080)] = 39384, + [SMALL_STATE(5081)] = 39448, + [SMALL_STATE(5082)] = 39512, + [SMALL_STATE(5083)] = 39576, + [SMALL_STATE(5084)] = 39640, + [SMALL_STATE(5085)] = 39704, + [SMALL_STATE(5086)] = 39768, + [SMALL_STATE(5087)] = 39832, + [SMALL_STATE(5088)] = 39896, + [SMALL_STATE(5089)] = 39960, + [SMALL_STATE(5090)] = 40024, + [SMALL_STATE(5091)] = 40088, + [SMALL_STATE(5092)] = 40160, + [SMALL_STATE(5093)] = 40224, + [SMALL_STATE(5094)] = 40288, + [SMALL_STATE(5095)] = 40352, + [SMALL_STATE(5096)] = 40416, + [SMALL_STATE(5097)] = 40480, + [SMALL_STATE(5098)] = 40550, + [SMALL_STATE(5099)] = 40614, + [SMALL_STATE(5100)] = 40678, + [SMALL_STATE(5101)] = 40742, + [SMALL_STATE(5102)] = 40806, + [SMALL_STATE(5103)] = 40870, + [SMALL_STATE(5104)] = 40934, + [SMALL_STATE(5105)] = 41004, + [SMALL_STATE(5106)] = 41068, + [SMALL_STATE(5107)] = 41132, + [SMALL_STATE(5108)] = 41196, + [SMALL_STATE(5109)] = 41260, + [SMALL_STATE(5110)] = 41330, + [SMALL_STATE(5111)] = 41394, + [SMALL_STATE(5112)] = 41458, + [SMALL_STATE(5113)] = 41522, + [SMALL_STATE(5114)] = 41586, + [SMALL_STATE(5115)] = 41656, + [SMALL_STATE(5116)] = 41730, + [SMALL_STATE(5117)] = 41794, + [SMALL_STATE(5118)] = 41866, + [SMALL_STATE(5119)] = 41930, + [SMALL_STATE(5120)] = 41994, + [SMALL_STATE(5121)] = 42058, + [SMALL_STATE(5122)] = 42130, + [SMALL_STATE(5123)] = 42200, + [SMALL_STATE(5124)] = 42264, + [SMALL_STATE(5125)] = 42328, + [SMALL_STATE(5126)] = 42392, + [SMALL_STATE(5127)] = 42456, + [SMALL_STATE(5128)] = 42528, + [SMALL_STATE(5129)] = 42592, + [SMALL_STATE(5130)] = 42656, + [SMALL_STATE(5131)] = 42720, + [SMALL_STATE(5132)] = 42794, + [SMALL_STATE(5133)] = 42868, + [SMALL_STATE(5134)] = 42932, + [SMALL_STATE(5135)] = 42996, + [SMALL_STATE(5136)] = 43068, + [SMALL_STATE(5137)] = 43140, + [SMALL_STATE(5138)] = 43204, + [SMALL_STATE(5139)] = 43276, + [SMALL_STATE(5140)] = 43340, + [SMALL_STATE(5141)] = 43404, + [SMALL_STATE(5142)] = 43468, + [SMALL_STATE(5143)] = 43532, + [SMALL_STATE(5144)] = 43606, + [SMALL_STATE(5145)] = 43670, + [SMALL_STATE(5146)] = 43742, + [SMALL_STATE(5147)] = 43806, + [SMALL_STATE(5148)] = 43870, + [SMALL_STATE(5149)] = 43934, + [SMALL_STATE(5150)] = 43998, + [SMALL_STATE(5151)] = 44062, + [SMALL_STATE(5152)] = 44126, + [SMALL_STATE(5153)] = 44190, + [SMALL_STATE(5154)] = 44256, + [SMALL_STATE(5155)] = 44320, + [SMALL_STATE(5156)] = 44384, + [SMALL_STATE(5157)] = 44458, + [SMALL_STATE(5158)] = 44522, + [SMALL_STATE(5159)] = 44586, + [SMALL_STATE(5160)] = 44650, + [SMALL_STATE(5161)] = 44714, + [SMALL_STATE(5162)] = 44784, + [SMALL_STATE(5163)] = 44848, + [SMALL_STATE(5164)] = 44918, + [SMALL_STATE(5165)] = 44990, + [SMALL_STATE(5166)] = 45054, + [SMALL_STATE(5167)] = 45118, + [SMALL_STATE(5168)] = 45182, + [SMALL_STATE(5169)] = 45246, + [SMALL_STATE(5170)] = 45318, + [SMALL_STATE(5171)] = 45390, + [SMALL_STATE(5172)] = 45454, + [SMALL_STATE(5173)] = 45518, + [SMALL_STATE(5174)] = 45582, + [SMALL_STATE(5175)] = 45646, + [SMALL_STATE(5176)] = 45710, + [SMALL_STATE(5177)] = 45774, + [SMALL_STATE(5178)] = 45848, + [SMALL_STATE(5179)] = 45922, + [SMALL_STATE(5180)] = 45986, + [SMALL_STATE(5181)] = 46050, + [SMALL_STATE(5182)] = 46122, + [SMALL_STATE(5183)] = 46186, + [SMALL_STATE(5184)] = 46250, + [SMALL_STATE(5185)] = 46314, + [SMALL_STATE(5186)] = 46378, + [SMALL_STATE(5187)] = 46442, + [SMALL_STATE(5188)] = 46506, + [SMALL_STATE(5189)] = 46570, + [SMALL_STATE(5190)] = 46634, + [SMALL_STATE(5191)] = 46698, + [SMALL_STATE(5192)] = 46762, + [SMALL_STATE(5193)] = 46834, + [SMALL_STATE(5194)] = 46898, + [SMALL_STATE(5195)] = 46962, + [SMALL_STATE(5196)] = 47026, + [SMALL_STATE(5197)] = 47090, + [SMALL_STATE(5198)] = 47154, + [SMALL_STATE(5199)] = 47218, + [SMALL_STATE(5200)] = 47282, + [SMALL_STATE(5201)] = 47346, + [SMALL_STATE(5202)] = 47410, + [SMALL_STATE(5203)] = 47474, + [SMALL_STATE(5204)] = 47548, + [SMALL_STATE(5205)] = 47612, + [SMALL_STATE(5206)] = 47676, + [SMALL_STATE(5207)] = 47740, + [SMALL_STATE(5208)] = 47804, + [SMALL_STATE(5209)] = 47868, + [SMALL_STATE(5210)] = 47932, + [SMALL_STATE(5211)] = 47996, + [SMALL_STATE(5212)] = 48060, + [SMALL_STATE(5213)] = 48124, + [SMALL_STATE(5214)] = 48196, + [SMALL_STATE(5215)] = 48268, + [SMALL_STATE(5216)] = 48332, + [SMALL_STATE(5217)] = 48404, + [SMALL_STATE(5218)] = 48468, + [SMALL_STATE(5219)] = 48532, + [SMALL_STATE(5220)] = 48596, + [SMALL_STATE(5221)] = 48660, + [SMALL_STATE(5222)] = 48724, + [SMALL_STATE(5223)] = 48788, + [SMALL_STATE(5224)] = 48852, + [SMALL_STATE(5225)] = 48916, + [SMALL_STATE(5226)] = 48980, + [SMALL_STATE(5227)] = 49044, + [SMALL_STATE(5228)] = 49108, + [SMALL_STATE(5229)] = 49172, + [SMALL_STATE(5230)] = 49236, + [SMALL_STATE(5231)] = 49308, + [SMALL_STATE(5232)] = 49372, + [SMALL_STATE(5233)] = 49436, + [SMALL_STATE(5234)] = 49500, + [SMALL_STATE(5235)] = 49564, + [SMALL_STATE(5236)] = 49628, + [SMALL_STATE(5237)] = 49700, + [SMALL_STATE(5238)] = 49764, + [SMALL_STATE(5239)] = 49836, + [SMALL_STATE(5240)] = 49900, + [SMALL_STATE(5241)] = 49964, + [SMALL_STATE(5242)] = 50028, + [SMALL_STATE(5243)] = 50092, + [SMALL_STATE(5244)] = 50156, + [SMALL_STATE(5245)] = 50220, + [SMALL_STATE(5246)] = 50284, + [SMALL_STATE(5247)] = 50348, + [SMALL_STATE(5248)] = 50420, + [SMALL_STATE(5249)] = 50484, + [SMALL_STATE(5250)] = 50548, + [SMALL_STATE(5251)] = 50612, + [SMALL_STATE(5252)] = 50678, + [SMALL_STATE(5253)] = 50744, + [SMALL_STATE(5254)] = 50812, + [SMALL_STATE(5255)] = 50878, + [SMALL_STATE(5256)] = 50944, + [SMALL_STATE(5257)] = 51012, + [SMALL_STATE(5258)] = 51078, + [SMALL_STATE(5259)] = 51144, [SMALL_STATE(5260)] = 51208, [SMALL_STATE(5261)] = 51275, [SMALL_STATE(5262)] = 51342, [SMALL_STATE(5263)] = 51419, - [SMALL_STATE(5264)] = 51486, - [SMALL_STATE(5265)] = 51553, - [SMALL_STATE(5266)] = 51630, - [SMALL_STATE(5267)] = 51697, - [SMALL_STATE(5268)] = 51764, - [SMALL_STATE(5269)] = 51831, - [SMALL_STATE(5270)] = 51898, - [SMALL_STATE(5271)] = 51975, - [SMALL_STATE(5272)] = 52052, - [SMALL_STATE(5273)] = 52129, - [SMALL_STATE(5274)] = 52194, - [SMALL_STATE(5275)] = 52271, - [SMALL_STATE(5276)] = 52348, - [SMALL_STATE(5277)] = 52415, - [SMALL_STATE(5278)] = 52482, - [SMALL_STATE(5279)] = 52547, - [SMALL_STATE(5280)] = 52624, - [SMALL_STATE(5281)] = 52691, - [SMALL_STATE(5282)] = 52758, - [SMALL_STATE(5283)] = 52835, - [SMALL_STATE(5284)] = 52902, - [SMALL_STATE(5285)] = 52979, - [SMALL_STATE(5286)] = 53052, - [SMALL_STATE(5287)] = 53119, - [SMALL_STATE(5288)] = 53186, - [SMALL_STATE(5289)] = 53255, - [SMALL_STATE(5290)] = 53322, - [SMALL_STATE(5291)] = 53387, - [SMALL_STATE(5292)] = 53454, - [SMALL_STATE(5293)] = 53521, - [SMALL_STATE(5294)] = 53586, - [SMALL_STATE(5295)] = 53651, - [SMALL_STATE(5296)] = 53718, - [SMALL_STATE(5297)] = 53785, - [SMALL_STATE(5298)] = 53850, - [SMALL_STATE(5299)] = 53917, - [SMALL_STATE(5300)] = 53984, - [SMALL_STATE(5301)] = 54051, - [SMALL_STATE(5302)] = 54120, - [SMALL_STATE(5303)] = 54187, - [SMALL_STATE(5304)] = 54254, - [SMALL_STATE(5305)] = 54321, - [SMALL_STATE(5306)] = 54388, - [SMALL_STATE(5307)] = 54457, - [SMALL_STATE(5308)] = 54526, + [SMALL_STATE(5264)] = 51484, + [SMALL_STATE(5265)] = 51561, + [SMALL_STATE(5266)] = 51626, + [SMALL_STATE(5267)] = 51703, + [SMALL_STATE(5268)] = 51768, + [SMALL_STATE(5269)] = 51835, + [SMALL_STATE(5270)] = 51902, + [SMALL_STATE(5271)] = 51969, + [SMALL_STATE(5272)] = 52046, + [SMALL_STATE(5273)] = 52115, + [SMALL_STATE(5274)] = 52188, + [SMALL_STATE(5275)] = 52253, + [SMALL_STATE(5276)] = 52322, + [SMALL_STATE(5277)] = 52387, + [SMALL_STATE(5278)] = 52456, + [SMALL_STATE(5279)] = 52523, + [SMALL_STATE(5280)] = 52590, + [SMALL_STATE(5281)] = 52659, + [SMALL_STATE(5282)] = 52724, + [SMALL_STATE(5283)] = 52791, + [SMALL_STATE(5284)] = 52858, + [SMALL_STATE(5285)] = 52935, + [SMALL_STATE(5286)] = 53000, + [SMALL_STATE(5287)] = 53067, + [SMALL_STATE(5288)] = 53134, + [SMALL_STATE(5289)] = 53201, + [SMALL_STATE(5290)] = 53268, + [SMALL_STATE(5291)] = 53335, + [SMALL_STATE(5292)] = 53402, + [SMALL_STATE(5293)] = 53469, + [SMALL_STATE(5294)] = 53536, + [SMALL_STATE(5295)] = 53603, + [SMALL_STATE(5296)] = 53680, + [SMALL_STATE(5297)] = 53757, + [SMALL_STATE(5298)] = 53834, + [SMALL_STATE(5299)] = 53901, + [SMALL_STATE(5300)] = 53968, + [SMALL_STATE(5301)] = 54035, + [SMALL_STATE(5302)] = 54102, + [SMALL_STATE(5303)] = 54169, + [SMALL_STATE(5304)] = 54246, + [SMALL_STATE(5305)] = 54313, + [SMALL_STATE(5306)] = 54380, + [SMALL_STATE(5307)] = 54447, + [SMALL_STATE(5308)] = 54514, [SMALL_STATE(5309)] = 54591, [SMALL_STATE(5310)] = 54658, - [SMALL_STATE(5311)] = 54732, - [SMALL_STATE(5312)] = 54796, - [SMALL_STATE(5313)] = 54860, - [SMALL_STATE(5314)] = 54926, - [SMALL_STATE(5315)] = 54988, - [SMALL_STATE(5316)] = 55050, - [SMALL_STATE(5317)] = 55112, - [SMALL_STATE(5318)] = 55174, - [SMALL_STATE(5319)] = 55236, - [SMALL_STATE(5320)] = 55298, - [SMALL_STATE(5321)] = 55360, - [SMALL_STATE(5322)] = 55422, - [SMALL_STATE(5323)] = 55484, - [SMALL_STATE(5324)] = 55546, - [SMALL_STATE(5325)] = 55608, - [SMALL_STATE(5326)] = 55670, - [SMALL_STATE(5327)] = 55744, - [SMALL_STATE(5328)] = 55806, - [SMALL_STATE(5329)] = 55868, - [SMALL_STATE(5330)] = 55936, - [SMALL_STATE(5331)] = 55998, - [SMALL_STATE(5332)] = 56074, - [SMALL_STATE(5333)] = 56180, - [SMALL_STATE(5334)] = 56242, - [SMALL_STATE(5335)] = 56308, - [SMALL_STATE(5336)] = 56372, - [SMALL_STATE(5337)] = 56434, - [SMALL_STATE(5338)] = 56496, - [SMALL_STATE(5339)] = 56558, - [SMALL_STATE(5340)] = 56622, - [SMALL_STATE(5341)] = 56684, - [SMALL_STATE(5342)] = 56746, - [SMALL_STATE(5343)] = 56810, - [SMALL_STATE(5344)] = 56872, - [SMALL_STATE(5345)] = 56938, - [SMALL_STATE(5346)] = 57000, - [SMALL_STATE(5347)] = 57062, - [SMALL_STATE(5348)] = 57124, - [SMALL_STATE(5349)] = 57186, - [SMALL_STATE(5350)] = 57248, - [SMALL_STATE(5351)] = 57310, - [SMALL_STATE(5352)] = 57372, - [SMALL_STATE(5353)] = 57434, - [SMALL_STATE(5354)] = 57498, - [SMALL_STATE(5355)] = 57560, - [SMALL_STATE(5356)] = 57636, - [SMALL_STATE(5357)] = 57700, - [SMALL_STATE(5358)] = 57764, - [SMALL_STATE(5359)] = 57828, - [SMALL_STATE(5360)] = 57898, - [SMALL_STATE(5361)] = 57960, - [SMALL_STATE(5362)] = 58022, - [SMALL_STATE(5363)] = 58084, - [SMALL_STATE(5364)] = 58146, - [SMALL_STATE(5365)] = 58208, - [SMALL_STATE(5366)] = 58270, - [SMALL_STATE(5367)] = 58332, - [SMALL_STATE(5368)] = 58396, - [SMALL_STATE(5369)] = 58458, - [SMALL_STATE(5370)] = 58520, - [SMALL_STATE(5371)] = 58582, - [SMALL_STATE(5372)] = 58650, - [SMALL_STATE(5373)] = 58724, - [SMALL_STATE(5374)] = 58786, - [SMALL_STATE(5375)] = 58848, - [SMALL_STATE(5376)] = 58910, - [SMALL_STATE(5377)] = 58972, - [SMALL_STATE(5378)] = 59034, - [SMALL_STATE(5379)] = 59096, - [SMALL_STATE(5380)] = 59158, - [SMALL_STATE(5381)] = 59226, - [SMALL_STATE(5382)] = 59302, - [SMALL_STATE(5383)] = 59364, - [SMALL_STATE(5384)] = 59426, - [SMALL_STATE(5385)] = 59488, - [SMALL_STATE(5386)] = 59550, - [SMALL_STATE(5387)] = 59614, - [SMALL_STATE(5388)] = 59690, - [SMALL_STATE(5389)] = 59752, - [SMALL_STATE(5390)] = 59826, - [SMALL_STATE(5391)] = 59888, - [SMALL_STATE(5392)] = 59956, - [SMALL_STATE(5393)] = 60018, - [SMALL_STATE(5394)] = 60092, - [SMALL_STATE(5395)] = 60154, - [SMALL_STATE(5396)] = 60216, - [SMALL_STATE(5397)] = 60278, - [SMALL_STATE(5398)] = 60354, - [SMALL_STATE(5399)] = 60418, - [SMALL_STATE(5400)] = 60480, - [SMALL_STATE(5401)] = 60586, - [SMALL_STATE(5402)] = 60648, - [SMALL_STATE(5403)] = 60712, - [SMALL_STATE(5404)] = 60784, - [SMALL_STATE(5405)] = 60858, - [SMALL_STATE(5406)] = 60964, - [SMALL_STATE(5407)] = 61038, - [SMALL_STATE(5408)] = 61102, - [SMALL_STATE(5409)] = 61164, - [SMALL_STATE(5410)] = 61226, - [SMALL_STATE(5411)] = 61288, - [SMALL_STATE(5412)] = 61350, - [SMALL_STATE(5413)] = 61412, - [SMALL_STATE(5414)] = 61486, - [SMALL_STATE(5415)] = 61548, - [SMALL_STATE(5416)] = 61620, - [SMALL_STATE(5417)] = 61726, - [SMALL_STATE(5418)] = 61798, - [SMALL_STATE(5419)] = 61872, + [SMALL_STATE(5311)] = 54720, + [SMALL_STATE(5312)] = 54784, + [SMALL_STATE(5313)] = 54846, + [SMALL_STATE(5314)] = 54920, + [SMALL_STATE(5315)] = 54982, + [SMALL_STATE(5316)] = 55044, + [SMALL_STATE(5317)] = 55118, + [SMALL_STATE(5318)] = 55180, + [SMALL_STATE(5319)] = 55242, + [SMALL_STATE(5320)] = 55304, + [SMALL_STATE(5321)] = 55366, + [SMALL_STATE(5322)] = 55428, + [SMALL_STATE(5323)] = 55490, + [SMALL_STATE(5324)] = 55552, + [SMALL_STATE(5325)] = 55614, + [SMALL_STATE(5326)] = 55720, + [SMALL_STATE(5327)] = 55794, + [SMALL_STATE(5328)] = 55856, + [SMALL_STATE(5329)] = 55918, + [SMALL_STATE(5330)] = 55980, + [SMALL_STATE(5331)] = 56054, + [SMALL_STATE(5332)] = 56116, + [SMALL_STATE(5333)] = 56178, + [SMALL_STATE(5334)] = 56240, + [SMALL_STATE(5335)] = 56302, + [SMALL_STATE(5336)] = 56364, + [SMALL_STATE(5337)] = 56438, + [SMALL_STATE(5338)] = 56512, + [SMALL_STATE(5339)] = 56574, + [SMALL_STATE(5340)] = 56648, + [SMALL_STATE(5341)] = 56722, + [SMALL_STATE(5342)] = 56796, + [SMALL_STATE(5343)] = 56870, + [SMALL_STATE(5344)] = 56932, + [SMALL_STATE(5345)] = 56994, + [SMALL_STATE(5346)] = 57056, + [SMALL_STATE(5347)] = 57118, + [SMALL_STATE(5348)] = 57180, + [SMALL_STATE(5349)] = 57242, + [SMALL_STATE(5350)] = 57304, + [SMALL_STATE(5351)] = 57366, + [SMALL_STATE(5352)] = 57428, + [SMALL_STATE(5353)] = 57490, + [SMALL_STATE(5354)] = 57552, + [SMALL_STATE(5355)] = 57614, + [SMALL_STATE(5356)] = 57682, + [SMALL_STATE(5357)] = 57744, + [SMALL_STATE(5358)] = 57806, + [SMALL_STATE(5359)] = 57874, + [SMALL_STATE(5360)] = 57936, + [SMALL_STATE(5361)] = 57998, + [SMALL_STATE(5362)] = 58060, + [SMALL_STATE(5363)] = 58122, + [SMALL_STATE(5364)] = 58184, + [SMALL_STATE(5365)] = 58246, + [SMALL_STATE(5366)] = 58308, + [SMALL_STATE(5367)] = 58370, + [SMALL_STATE(5368)] = 58432, + [SMALL_STATE(5369)] = 58494, + [SMALL_STATE(5370)] = 58556, + [SMALL_STATE(5371)] = 58618, + [SMALL_STATE(5372)] = 58724, + [SMALL_STATE(5373)] = 58786, + [SMALL_STATE(5374)] = 58848, + [SMALL_STATE(5375)] = 58910, + [SMALL_STATE(5376)] = 58972, + [SMALL_STATE(5377)] = 59034, + [SMALL_STATE(5378)] = 59096, + [SMALL_STATE(5379)] = 59168, + [SMALL_STATE(5380)] = 59244, + [SMALL_STATE(5381)] = 59316, + [SMALL_STATE(5382)] = 59378, + [SMALL_STATE(5383)] = 59440, + [SMALL_STATE(5384)] = 59502, + [SMALL_STATE(5385)] = 59564, + [SMALL_STATE(5386)] = 59670, + [SMALL_STATE(5387)] = 59732, + [SMALL_STATE(5388)] = 59808, + [SMALL_STATE(5389)] = 59870, + [SMALL_STATE(5390)] = 59934, + [SMALL_STATE(5391)] = 59996, + [SMALL_STATE(5392)] = 60060, + [SMALL_STATE(5393)] = 60122, + [SMALL_STATE(5394)] = 60184, + [SMALL_STATE(5395)] = 60248, + [SMALL_STATE(5396)] = 60324, + [SMALL_STATE(5397)] = 60388, + [SMALL_STATE(5398)] = 60450, + [SMALL_STATE(5399)] = 60512, + [SMALL_STATE(5400)] = 60574, + [SMALL_STATE(5401)] = 60638, + [SMALL_STATE(5402)] = 60702, + [SMALL_STATE(5403)] = 60778, + [SMALL_STATE(5404)] = 60842, + [SMALL_STATE(5405)] = 60904, + [SMALL_STATE(5406)] = 60976, + [SMALL_STATE(5407)] = 61040, + [SMALL_STATE(5408)] = 61106, + [SMALL_STATE(5409)] = 61170, + [SMALL_STATE(5410)] = 61236, + [SMALL_STATE(5411)] = 61300, + [SMALL_STATE(5412)] = 61364, + [SMALL_STATE(5413)] = 61428, + [SMALL_STATE(5414)] = 61504, + [SMALL_STATE(5415)] = 61568, + [SMALL_STATE(5416)] = 61638, + [SMALL_STATE(5417)] = 61744, + [SMALL_STATE(5418)] = 61812, + [SMALL_STATE(5419)] = 61880, [SMALL_STATE(5420)] = 61946, - [SMALL_STATE(5421)] = 62015, + [SMALL_STATE(5421)] = 62017, [SMALL_STATE(5422)] = 62088, - [SMALL_STATE(5423)] = 62157, - [SMALL_STATE(5424)] = 62230, - [SMALL_STATE(5425)] = 62299, - [SMALL_STATE(5426)] = 62368, - [SMALL_STATE(5427)] = 62469, - [SMALL_STATE(5428)] = 62540, - [SMALL_STATE(5429)] = 62609, - [SMALL_STATE(5430)] = 62710, - [SMALL_STATE(5431)] = 62775, - [SMALL_STATE(5432)] = 62836, - [SMALL_STATE(5433)] = 62905, - [SMALL_STATE(5434)] = 62976, - [SMALL_STATE(5435)] = 63045, - [SMALL_STATE(5436)] = 63110, - [SMALL_STATE(5437)] = 63171, - [SMALL_STATE(5438)] = 63272, - [SMALL_STATE(5439)] = 63343, - [SMALL_STATE(5440)] = 63414, - [SMALL_STATE(5441)] = 63485, - [SMALL_STATE(5442)] = 63546, - [SMALL_STATE(5443)] = 63617, - [SMALL_STATE(5444)] = 63688, - [SMALL_STATE(5445)] = 63793, - [SMALL_STATE(5446)] = 63866, - [SMALL_STATE(5447)] = 63935, - [SMALL_STATE(5448)] = 63998, - [SMALL_STATE(5449)] = 64103, - [SMALL_STATE(5450)] = 64172, - [SMALL_STATE(5451)] = 64235, - [SMALL_STATE(5452)] = 64306, - [SMALL_STATE(5453)] = 64407, - [SMALL_STATE(5454)] = 64480, - [SMALL_STATE(5455)] = 64585, - [SMALL_STATE(5456)] = 64656, - [SMALL_STATE(5457)] = 64719, - [SMALL_STATE(5458)] = 64792, - [SMALL_STATE(5459)] = 64857, - [SMALL_STATE(5460)] = 64928, - [SMALL_STATE(5461)] = 65029, - [SMALL_STATE(5462)] = 65100, - [SMALL_STATE(5463)] = 65171, - [SMALL_STATE(5464)] = 65242, - [SMALL_STATE(5465)] = 65313, - [SMALL_STATE(5466)] = 65374, - [SMALL_STATE(5467)] = 65445, - [SMALL_STATE(5468)] = 65516, - [SMALL_STATE(5469)] = 65585, - [SMALL_STATE(5470)] = 65656, - [SMALL_STATE(5471)] = 65727, - [SMALL_STATE(5472)] = 65790, - [SMALL_STATE(5473)] = 65895, - [SMALL_STATE(5474)] = 65958, - [SMALL_STATE(5475)] = 66023, - [SMALL_STATE(5476)] = 66094, - [SMALL_STATE(5477)] = 66194, - [SMALL_STATE(5478)] = 66262, - [SMALL_STATE(5479)] = 66326, - [SMALL_STATE(5480)] = 66394, - [SMALL_STATE(5481)] = 66462, - [SMALL_STATE(5482)] = 66562, - [SMALL_STATE(5483)] = 66662, - [SMALL_STATE(5484)] = 66732, - [SMALL_STATE(5485)] = 66802, - [SMALL_STATE(5486)] = 66872, - [SMALL_STATE(5487)] = 66972, - [SMALL_STATE(5488)] = 67038, - [SMALL_STATE(5489)] = 67138, - [SMALL_STATE(5490)] = 67202, - [SMALL_STATE(5491)] = 67302, - [SMALL_STATE(5492)] = 67372, - [SMALL_STATE(5493)] = 67472, - [SMALL_STATE(5494)] = 67540, - [SMALL_STATE(5495)] = 67602, - [SMALL_STATE(5496)] = 67702, - [SMALL_STATE(5497)] = 67784, - [SMALL_STATE(5498)] = 67884, - [SMALL_STATE(5499)] = 67944, - [SMALL_STATE(5500)] = 68014, - [SMALL_STATE(5501)] = 68082, - [SMALL_STATE(5502)] = 68182, - [SMALL_STATE(5503)] = 68250, - [SMALL_STATE(5504)] = 68320, - [SMALL_STATE(5505)] = 68388, - [SMALL_STATE(5506)] = 68488, - [SMALL_STATE(5507)] = 68588, - [SMALL_STATE(5508)] = 68670, - [SMALL_STATE(5509)] = 68770, - [SMALL_STATE(5510)] = 68838, - [SMALL_STATE(5511)] = 68908, - [SMALL_STATE(5512)] = 69008, - [SMALL_STATE(5513)] = 69108, - [SMALL_STATE(5514)] = 69178, - [SMALL_STATE(5515)] = 69278, - [SMALL_STATE(5516)] = 69338, - [SMALL_STATE(5517)] = 69406, - [SMALL_STATE(5518)] = 69466, - [SMALL_STATE(5519)] = 69566, - [SMALL_STATE(5520)] = 69632, - [SMALL_STATE(5521)] = 69732, - [SMALL_STATE(5522)] = 69796, - [SMALL_STATE(5523)] = 69860, - [SMALL_STATE(5524)] = 69928, - [SMALL_STATE(5525)] = 69998, - [SMALL_STATE(5526)] = 70060, - [SMALL_STATE(5527)] = 70120, - [SMALL_STATE(5528)] = 70190, - [SMALL_STATE(5529)] = 70260, - [SMALL_STATE(5530)] = 70327, - [SMALL_STATE(5531)] = 70386, - [SMALL_STATE(5532)] = 70485, - [SMALL_STATE(5533)] = 70584, - [SMALL_STATE(5534)] = 70647, - [SMALL_STATE(5535)] = 70746, - [SMALL_STATE(5536)] = 70845, - [SMALL_STATE(5537)] = 70906, - [SMALL_STATE(5538)] = 71001, - [SMALL_STATE(5539)] = 71066, - [SMALL_STATE(5540)] = 71127, - [SMALL_STATE(5541)] = 71194, - [SMALL_STATE(5542)] = 71261, - [SMALL_STATE(5543)] = 71360, - [SMALL_STATE(5544)] = 71457, - [SMALL_STATE(5545)] = 71556, - [SMALL_STATE(5546)] = 71623, - [SMALL_STATE(5547)] = 71718, - [SMALL_STATE(5548)] = 71785, - [SMALL_STATE(5549)] = 71884, - [SMALL_STATE(5550)] = 71945, - [SMALL_STATE(5551)] = 72042, - [SMALL_STATE(5552)] = 72139, - [SMALL_STATE(5553)] = 72198, - [SMALL_STATE(5554)] = 72295, - [SMALL_STATE(5555)] = 72358, - [SMALL_STATE(5556)] = 72417, - [SMALL_STATE(5557)] = 72484, - [SMALL_STATE(5558)] = 72581, - [SMALL_STATE(5559)] = 72678, - [SMALL_STATE(5560)] = 72737, - [SMALL_STATE(5561)] = 72796, - [SMALL_STATE(5562)] = 72893, - [SMALL_STATE(5563)] = 72952, - [SMALL_STATE(5564)] = 73051, - [SMALL_STATE(5565)] = 73148, - [SMALL_STATE(5566)] = 73215, - [SMALL_STATE(5567)] = 73282, - [SMALL_STATE(5568)] = 73377, - [SMALL_STATE(5569)] = 73476, - [SMALL_STATE(5570)] = 73571, - [SMALL_STATE(5571)] = 73670, - [SMALL_STATE(5572)] = 73737, - [SMALL_STATE(5573)] = 73836, - [SMALL_STATE(5574)] = 73933, - [SMALL_STATE(5575)] = 74030, - [SMALL_STATE(5576)] = 74127, - [SMALL_STATE(5577)] = 74224, - [SMALL_STATE(5578)] = 74283, - [SMALL_STATE(5579)] = 74342, - [SMALL_STATE(5580)] = 74439, - [SMALL_STATE(5581)] = 74538, - [SMALL_STATE(5582)] = 74637, - [SMALL_STATE(5583)] = 74734, - [SMALL_STATE(5584)] = 74831, - [SMALL_STATE(5585)] = 74928, - [SMALL_STATE(5586)] = 74987, - [SMALL_STATE(5587)] = 75084, - [SMALL_STATE(5588)] = 75147, - [SMALL_STATE(5589)] = 75242, - [SMALL_STATE(5590)] = 75309, - [SMALL_STATE(5591)] = 75368, - [SMALL_STATE(5592)] = 75429, - [SMALL_STATE(5593)] = 75494, - [SMALL_STATE(5594)] = 75591, - [SMALL_STATE(5595)] = 75654, - [SMALL_STATE(5596)] = 75717, - [SMALL_STATE(5597)] = 75777, - [SMALL_STATE(5598)] = 75835, - [SMALL_STATE(5599)] = 75895, - [SMALL_STATE(5600)] = 75989, - [SMALL_STATE(5601)] = 76083, - [SMALL_STATE(5602)] = 76147, - [SMALL_STATE(5603)] = 76241, - [SMALL_STATE(5604)] = 76303, - [SMALL_STATE(5605)] = 76363, - [SMALL_STATE(5606)] = 76457, - [SMALL_STATE(5607)] = 76517, - [SMALL_STATE(5608)] = 76577, - [SMALL_STATE(5609)] = 76657, - [SMALL_STATE(5610)] = 76751, - [SMALL_STATE(5611)] = 76845, - [SMALL_STATE(5612)] = 76907, - [SMALL_STATE(5613)] = 76971, - [SMALL_STATE(5614)] = 77065, - [SMALL_STATE(5615)] = 77159, - [SMALL_STATE(5616)] = 77217, - [SMALL_STATE(5617)] = 77297, - [SMALL_STATE(5618)] = 77356, - [SMALL_STATE(5619)] = 77417, - [SMALL_STATE(5620)] = 77476, - [SMALL_STATE(5621)] = 77537, - [SMALL_STATE(5622)] = 77596, - [SMALL_STATE(5623)] = 77655, - [SMALL_STATE(5624)] = 77716, - [SMALL_STATE(5625)] = 77775, - [SMALL_STATE(5626)] = 77836, - [SMALL_STATE(5627)] = 77897, - [SMALL_STATE(5628)] = 77953, - [SMALL_STATE(5629)] = 78009, - [SMALL_STATE(5630)] = 78095, - [SMALL_STATE(5631)] = 78181, - [SMALL_STATE(5632)] = 78237, - [SMALL_STATE(5633)] = 78323, - [SMALL_STATE(5634)] = 78379, - [SMALL_STATE(5635)] = 78439, - [SMALL_STATE(5636)] = 78497, - [SMALL_STATE(5637)] = 78555, - [SMALL_STATE(5638)] = 78615, - [SMALL_STATE(5639)] = 78701, - [SMALL_STATE(5640)] = 78759, - [SMALL_STATE(5641)] = 78845, - [SMALL_STATE(5642)] = 78905, - [SMALL_STATE(5643)] = 78963, - [SMALL_STATE(5644)] = 79021, - [SMALL_STATE(5645)] = 79111, - [SMALL_STATE(5646)] = 79197, - [SMALL_STATE(5647)] = 79280, - [SMALL_STATE(5648)] = 79365, - [SMALL_STATE(5649)] = 79448, - [SMALL_STATE(5650)] = 79509, - [SMALL_STATE(5651)] = 79568, - [SMALL_STATE(5652)] = 79651, - [SMALL_STATE(5653)] = 79734, - [SMALL_STATE(5654)] = 79793, - [SMALL_STATE(5655)] = 79878, - [SMALL_STATE(5656)] = 79963, - [SMALL_STATE(5657)] = 80022, - [SMALL_STATE(5658)] = 80107, - [SMALL_STATE(5659)] = 80162, - [SMALL_STATE(5660)] = 80245, - [SMALL_STATE(5661)] = 80328, - [SMALL_STATE(5662)] = 80413, - [SMALL_STATE(5663)] = 80498, - [SMALL_STATE(5664)] = 80581, - [SMALL_STATE(5665)] = 80664, - [SMALL_STATE(5666)] = 80719, - [SMALL_STATE(5667)] = 80801, - [SMALL_STATE(5668)] = 80883, - [SMALL_STATE(5669)] = 80965, - [SMALL_STATE(5670)] = 81039, - [SMALL_STATE(5671)] = 81121, - [SMALL_STATE(5672)] = 81203, - [SMALL_STATE(5673)] = 81285, - [SMALL_STATE(5674)] = 81367, - [SMALL_STATE(5675)] = 81449, - [SMALL_STATE(5676)] = 81525, - [SMALL_STATE(5677)] = 81587, - [SMALL_STATE(5678)] = 81643, - [SMALL_STATE(5679)] = 81697, - [SMALL_STATE(5680)] = 81749, - [SMALL_STATE(5681)] = 81801, - [SMALL_STATE(5682)] = 81855, - [SMALL_STATE(5683)] = 81916, - [SMALL_STATE(5684)] = 81967, - [SMALL_STATE(5685)] = 82018, - [SMALL_STATE(5686)] = 82069, - [SMALL_STATE(5687)] = 82124, - [SMALL_STATE(5688)] = 82179, - [SMALL_STATE(5689)] = 82234, - [SMALL_STATE(5690)] = 82285, - [SMALL_STATE(5691)] = 82335, - [SMALL_STATE(5692)] = 82383, - [SMALL_STATE(5693)] = 82433, - [SMALL_STATE(5694)] = 82531, - [SMALL_STATE(5695)] = 82629, - [SMALL_STATE(5696)] = 82677, - [SMALL_STATE(5697)] = 82727, - [SMALL_STATE(5698)] = 82777, - [SMALL_STATE(5699)] = 82875, - [SMALL_STATE(5700)] = 82973, - [SMALL_STATE(5701)] = 83023, - [SMALL_STATE(5702)] = 83071, - [SMALL_STATE(5703)] = 83119, - [SMALL_STATE(5704)] = 83171, - [SMALL_STATE(5705)] = 83219, - [SMALL_STATE(5706)] = 83269, - [SMALL_STATE(5707)] = 83367, - [SMALL_STATE(5708)] = 83421, - [SMALL_STATE(5709)] = 83471, - [SMALL_STATE(5710)] = 83569, - [SMALL_STATE(5711)] = 83617, - [SMALL_STATE(5712)] = 83668, - [SMALL_STATE(5713)] = 83719, - [SMALL_STATE(5714)] = 83770, - [SMALL_STATE(5715)] = 83818, - [SMALL_STATE(5716)] = 83866, - [SMALL_STATE(5717)] = 83956, - [SMALL_STATE(5718)] = 84046, - [SMALL_STATE(5719)] = 84136, - [SMALL_STATE(5720)] = 84226, - [SMALL_STATE(5721)] = 84316, - [SMALL_STATE(5722)] = 84406, - [SMALL_STATE(5723)] = 84456, - [SMALL_STATE(5724)] = 84546, - [SMALL_STATE(5725)] = 84636, - [SMALL_STATE(5726)] = 84688, - [SMALL_STATE(5727)] = 84778, - [SMALL_STATE(5728)] = 84868, - [SMALL_STATE(5729)] = 84916, - [SMALL_STATE(5730)] = 84966, - [SMALL_STATE(5731)] = 85056, - [SMALL_STATE(5732)] = 85104, - [SMALL_STATE(5733)] = 85154, - [SMALL_STATE(5734)] = 85202, - [SMALL_STATE(5735)] = 85252, - [SMALL_STATE(5736)] = 85302, - [SMALL_STATE(5737)] = 85392, - [SMALL_STATE(5738)] = 85482, - [SMALL_STATE(5739)] = 85572, - [SMALL_STATE(5740)] = 85662, - [SMALL_STATE(5741)] = 85752, - [SMALL_STATE(5742)] = 85842, - [SMALL_STATE(5743)] = 85890, - [SMALL_STATE(5744)] = 85938, - [SMALL_STATE(5745)] = 85986, - [SMALL_STATE(5746)] = 86034, - [SMALL_STATE(5747)] = 86124, - [SMALL_STATE(5748)] = 86172, - [SMALL_STATE(5749)] = 86220, + [SMALL_STATE(5423)] = 62193, + [SMALL_STATE(5424)] = 62264, + [SMALL_STATE(5425)] = 62327, + [SMALL_STATE(5426)] = 62390, + [SMALL_STATE(5427)] = 62493, + [SMALL_STATE(5428)] = 62558, + [SMALL_STATE(5429)] = 62619, + [SMALL_STATE(5430)] = 62722, + [SMALL_STATE(5431)] = 62825, + [SMALL_STATE(5432)] = 62894, + [SMALL_STATE(5433)] = 62995, + [SMALL_STATE(5434)] = 63066, + [SMALL_STATE(5435)] = 63139, + [SMALL_STATE(5436)] = 63208, + [SMALL_STATE(5437)] = 63279, + [SMALL_STATE(5438)] = 63348, + [SMALL_STATE(5439)] = 63451, + [SMALL_STATE(5440)] = 63556, + [SMALL_STATE(5441)] = 63619, + [SMALL_STATE(5442)] = 63684, + [SMALL_STATE(5443)] = 63787, + [SMALL_STATE(5444)] = 63856, + [SMALL_STATE(5445)] = 63959, + [SMALL_STATE(5446)] = 64022, + [SMALL_STATE(5447)] = 64083, + [SMALL_STATE(5448)] = 64152, + [SMALL_STATE(5449)] = 64253, + [SMALL_STATE(5450)] = 64322, + [SMALL_STATE(5451)] = 64385, + [SMALL_STATE(5452)] = 64458, + [SMALL_STATE(5453)] = 64561, + [SMALL_STATE(5454)] = 64630, + [SMALL_STATE(5455)] = 64701, + [SMALL_STATE(5456)] = 64770, + [SMALL_STATE(5457)] = 64841, + [SMALL_STATE(5458)] = 64912, + [SMALL_STATE(5459)] = 64973, + [SMALL_STATE(5460)] = 65044, + [SMALL_STATE(5461)] = 65117, + [SMALL_STATE(5462)] = 65188, + [SMALL_STATE(5463)] = 65259, + [SMALL_STATE(5464)] = 65328, + [SMALL_STATE(5465)] = 65397, + [SMALL_STATE(5466)] = 65458, + [SMALL_STATE(5467)] = 65561, + [SMALL_STATE(5468)] = 65626, + [SMALL_STATE(5469)] = 65697, + [SMALL_STATE(5470)] = 65770, + [SMALL_STATE(5471)] = 65873, + [SMALL_STATE(5472)] = 65944, + [SMALL_STATE(5473)] = 66049, + [SMALL_STATE(5474)] = 66120, + [SMALL_STATE(5475)] = 66191, + [SMALL_STATE(5476)] = 66262, + [SMALL_STATE(5477)] = 66367, + [SMALL_STATE(5478)] = 66468, + [SMALL_STATE(5479)] = 66541, + [SMALL_STATE(5480)] = 66612, + [SMALL_STATE(5481)] = 66683, + [SMALL_STATE(5482)] = 66748, + [SMALL_STATE(5483)] = 66849, + [SMALL_STATE(5484)] = 66950, + [SMALL_STATE(5485)] = 67021, + [SMALL_STATE(5486)] = 67089, + [SMALL_STATE(5487)] = 67149, + [SMALL_STATE(5488)] = 67219, + [SMALL_STATE(5489)] = 67285, + [SMALL_STATE(5490)] = 67385, + [SMALL_STATE(5491)] = 67485, + [SMALL_STATE(5492)] = 67545, + [SMALL_STATE(5493)] = 67615, + [SMALL_STATE(5494)] = 67685, + [SMALL_STATE(5495)] = 67785, + [SMALL_STATE(5496)] = 67855, + [SMALL_STATE(5497)] = 67955, + [SMALL_STATE(5498)] = 68055, + [SMALL_STATE(5499)] = 68155, + [SMALL_STATE(5500)] = 68255, + [SMALL_STATE(5501)] = 68325, + [SMALL_STATE(5502)] = 68387, + [SMALL_STATE(5503)] = 68457, + [SMALL_STATE(5504)] = 68557, + [SMALL_STATE(5505)] = 68657, + [SMALL_STATE(5506)] = 68719, + [SMALL_STATE(5507)] = 68819, + [SMALL_STATE(5508)] = 68919, + [SMALL_STATE(5509)] = 69019, + [SMALL_STATE(5510)] = 69119, + [SMALL_STATE(5511)] = 69189, + [SMALL_STATE(5512)] = 69257, + [SMALL_STATE(5513)] = 69325, + [SMALL_STATE(5514)] = 69395, + [SMALL_STATE(5515)] = 69455, + [SMALL_STATE(5516)] = 69519, + [SMALL_STATE(5517)] = 69619, + [SMALL_STATE(5518)] = 69689, + [SMALL_STATE(5519)] = 69755, + [SMALL_STATE(5520)] = 69855, + [SMALL_STATE(5521)] = 69955, + [SMALL_STATE(5522)] = 70055, + [SMALL_STATE(5523)] = 70125, + [SMALL_STATE(5524)] = 70193, + [SMALL_STATE(5525)] = 70293, + [SMALL_STATE(5526)] = 70393, + [SMALL_STATE(5527)] = 70493, + [SMALL_STATE(5528)] = 70561, + [SMALL_STATE(5529)] = 70629, + [SMALL_STATE(5530)] = 70729, + [SMALL_STATE(5531)] = 70799, + [SMALL_STATE(5532)] = 70899, + [SMALL_STATE(5533)] = 70981, + [SMALL_STATE(5534)] = 71049, + [SMALL_STATE(5535)] = 71149, + [SMALL_STATE(5536)] = 71249, + [SMALL_STATE(5537)] = 71317, + [SMALL_STATE(5538)] = 71385, + [SMALL_STATE(5539)] = 71449, + [SMALL_STATE(5540)] = 71549, + [SMALL_STATE(5541)] = 71609, + [SMALL_STATE(5542)] = 71673, + [SMALL_STATE(5543)] = 71773, + [SMALL_STATE(5544)] = 71873, + [SMALL_STATE(5545)] = 71941, + [SMALL_STATE(5546)] = 72023, + [SMALL_STATE(5547)] = 72087, + [SMALL_STATE(5548)] = 72154, + [SMALL_STATE(5549)] = 72221, + [SMALL_STATE(5550)] = 72280, + [SMALL_STATE(5551)] = 72379, + [SMALL_STATE(5552)] = 72478, + [SMALL_STATE(5553)] = 72577, + [SMALL_STATE(5554)] = 72636, + [SMALL_STATE(5555)] = 72701, + [SMALL_STATE(5556)] = 72768, + [SMALL_STATE(5557)] = 72831, + [SMALL_STATE(5558)] = 72930, + [SMALL_STATE(5559)] = 72991, + [SMALL_STATE(5560)] = 73090, + [SMALL_STATE(5561)] = 73149, + [SMALL_STATE(5562)] = 73216, + [SMALL_STATE(5563)] = 73277, + [SMALL_STATE(5564)] = 73376, + [SMALL_STATE(5565)] = 73475, + [SMALL_STATE(5566)] = 73536, + [SMALL_STATE(5567)] = 73597, + [SMALL_STATE(5568)] = 73696, + [SMALL_STATE(5569)] = 73755, + [SMALL_STATE(5570)] = 73814, + [SMALL_STATE(5571)] = 73911, + [SMALL_STATE(5572)] = 73978, + [SMALL_STATE(5573)] = 74077, + [SMALL_STATE(5574)] = 74144, + [SMALL_STATE(5575)] = 74209, + [SMALL_STATE(5576)] = 74304, + [SMALL_STATE(5577)] = 74367, + [SMALL_STATE(5578)] = 74426, + [SMALL_STATE(5579)] = 74489, + [SMALL_STATE(5580)] = 74556, + [SMALL_STATE(5581)] = 74615, + [SMALL_STATE(5582)] = 74710, + [SMALL_STATE(5583)] = 74809, + [SMALL_STATE(5584)] = 74908, + [SMALL_STATE(5585)] = 74967, + [SMALL_STATE(5586)] = 75026, + [SMALL_STATE(5587)] = 75085, + [SMALL_STATE(5588)] = 75152, + [SMALL_STATE(5589)] = 75215, + [SMALL_STATE(5590)] = 75282, + [SMALL_STATE(5591)] = 75377, + [SMALL_STATE(5592)] = 75444, + [SMALL_STATE(5593)] = 75543, + [SMALL_STATE(5594)] = 75606, + [SMALL_STATE(5595)] = 75701, + [SMALL_STATE(5596)] = 75800, + [SMALL_STATE(5597)] = 75895, + [SMALL_STATE(5598)] = 75989, + [SMALL_STATE(5599)] = 76083, + [SMALL_STATE(5600)] = 76177, + [SMALL_STATE(5601)] = 76271, + [SMALL_STATE(5602)] = 76335, + [SMALL_STATE(5603)] = 76395, + [SMALL_STATE(5604)] = 76453, + [SMALL_STATE(5605)] = 76513, + [SMALL_STATE(5606)] = 76575, + [SMALL_STATE(5607)] = 76635, + [SMALL_STATE(5608)] = 76729, + [SMALL_STATE(5609)] = 76823, + [SMALL_STATE(5610)] = 76903, + [SMALL_STATE(5611)] = 76963, + [SMALL_STATE(5612)] = 77021, + [SMALL_STATE(5613)] = 77081, + [SMALL_STATE(5614)] = 77175, + [SMALL_STATE(5615)] = 77255, + [SMALL_STATE(5616)] = 77319, + [SMALL_STATE(5617)] = 77381, + [SMALL_STATE(5618)] = 77440, + [SMALL_STATE(5619)] = 77499, + [SMALL_STATE(5620)] = 77560, + [SMALL_STATE(5621)] = 77621, + [SMALL_STATE(5622)] = 77682, + [SMALL_STATE(5623)] = 77741, + [SMALL_STATE(5624)] = 77802, + [SMALL_STATE(5625)] = 77863, + [SMALL_STATE(5626)] = 77922, + [SMALL_STATE(5627)] = 77981, + [SMALL_STATE(5628)] = 78067, + [SMALL_STATE(5629)] = 78125, + [SMALL_STATE(5630)] = 78183, + [SMALL_STATE(5631)] = 78269, + [SMALL_STATE(5632)] = 78327, + [SMALL_STATE(5633)] = 78383, + [SMALL_STATE(5634)] = 78469, + [SMALL_STATE(5635)] = 78529, + [SMALL_STATE(5636)] = 78589, + [SMALL_STATE(5637)] = 78679, + [SMALL_STATE(5638)] = 78765, + [SMALL_STATE(5639)] = 78851, + [SMALL_STATE(5640)] = 78909, + [SMALL_STATE(5641)] = 78965, + [SMALL_STATE(5642)] = 79023, + [SMALL_STATE(5643)] = 79109, + [SMALL_STATE(5644)] = 79165, + [SMALL_STATE(5645)] = 79221, + [SMALL_STATE(5646)] = 79281, + [SMALL_STATE(5647)] = 79364, + [SMALL_STATE(5648)] = 79449, + [SMALL_STATE(5649)] = 79532, + [SMALL_STATE(5650)] = 79617, + [SMALL_STATE(5651)] = 79702, + [SMALL_STATE(5652)] = 79787, + [SMALL_STATE(5653)] = 79870, + [SMALL_STATE(5654)] = 79929, + [SMALL_STATE(5655)] = 80012, + [SMALL_STATE(5656)] = 80067, + [SMALL_STATE(5657)] = 80126, + [SMALL_STATE(5658)] = 80181, + [SMALL_STATE(5659)] = 80264, + [SMALL_STATE(5660)] = 80347, + [SMALL_STATE(5661)] = 80432, + [SMALL_STATE(5662)] = 80515, + [SMALL_STATE(5663)] = 80600, + [SMALL_STATE(5664)] = 80659, + [SMALL_STATE(5665)] = 80742, + [SMALL_STATE(5666)] = 80803, + [SMALL_STATE(5667)] = 80885, + [SMALL_STATE(5668)] = 80967, + [SMALL_STATE(5669)] = 81043, + [SMALL_STATE(5670)] = 81125, + [SMALL_STATE(5671)] = 81207, + [SMALL_STATE(5672)] = 81289, + [SMALL_STATE(5673)] = 81371, + [SMALL_STATE(5674)] = 81453, + [SMALL_STATE(5675)] = 81527, + [SMALL_STATE(5676)] = 81609, + [SMALL_STATE(5677)] = 81661, + [SMALL_STATE(5678)] = 81717, + [SMALL_STATE(5679)] = 81771, + [SMALL_STATE(5680)] = 81833, + [SMALL_STATE(5681)] = 81885, + [SMALL_STATE(5682)] = 81939, + [SMALL_STATE(5683)] = 81990, + [SMALL_STATE(5684)] = 82041, + [SMALL_STATE(5685)] = 82096, + [SMALL_STATE(5686)] = 82147, + [SMALL_STATE(5687)] = 82202, + [SMALL_STATE(5688)] = 82257, + [SMALL_STATE(5689)] = 82318, + [SMALL_STATE(5690)] = 82369, + [SMALL_STATE(5691)] = 82421, + [SMALL_STATE(5692)] = 82471, + [SMALL_STATE(5693)] = 82521, + [SMALL_STATE(5694)] = 82619, + [SMALL_STATE(5695)] = 82717, + [SMALL_STATE(5696)] = 82767, + [SMALL_STATE(5697)] = 82865, + [SMALL_STATE(5698)] = 82915, + [SMALL_STATE(5699)] = 82965, + [SMALL_STATE(5700)] = 83013, + [SMALL_STATE(5701)] = 83111, + [SMALL_STATE(5702)] = 83159, + [SMALL_STATE(5703)] = 83207, + [SMALL_STATE(5704)] = 83257, + [SMALL_STATE(5705)] = 83355, + [SMALL_STATE(5706)] = 83403, + [SMALL_STATE(5707)] = 83501, + [SMALL_STATE(5708)] = 83555, + [SMALL_STATE(5709)] = 83603, + [SMALL_STATE(5710)] = 83653, + [SMALL_STATE(5711)] = 83701, + [SMALL_STATE(5712)] = 83752, + [SMALL_STATE(5713)] = 83803, + [SMALL_STATE(5714)] = 83854, + [SMALL_STATE(5715)] = 83902, + [SMALL_STATE(5716)] = 83952, + [SMALL_STATE(5717)] = 84000, + [SMALL_STATE(5718)] = 84090, + [SMALL_STATE(5719)] = 84138, + [SMALL_STATE(5720)] = 84186, + [SMALL_STATE(5721)] = 84234, + [SMALL_STATE(5722)] = 84282, + [SMALL_STATE(5723)] = 84330, + [SMALL_STATE(5724)] = 84420, + [SMALL_STATE(5725)] = 84468, + [SMALL_STATE(5726)] = 84520, + [SMALL_STATE(5727)] = 84568, + [SMALL_STATE(5728)] = 84616, + [SMALL_STATE(5729)] = 84706, + [SMALL_STATE(5730)] = 84796, + [SMALL_STATE(5731)] = 84844, + [SMALL_STATE(5732)] = 84934, + [SMALL_STATE(5733)] = 84982, + [SMALL_STATE(5734)] = 85072, + [SMALL_STATE(5735)] = 85162, + [SMALL_STATE(5736)] = 85212, + [SMALL_STATE(5737)] = 85302, + [SMALL_STATE(5738)] = 85392, + [SMALL_STATE(5739)] = 85482, + [SMALL_STATE(5740)] = 85572, + [SMALL_STATE(5741)] = 85662, + [SMALL_STATE(5742)] = 85710, + [SMALL_STATE(5743)] = 85758, + [SMALL_STATE(5744)] = 85848, + [SMALL_STATE(5745)] = 85898, + [SMALL_STATE(5746)] = 85988, + [SMALL_STATE(5747)] = 86038, + [SMALL_STATE(5748)] = 86128, + [SMALL_STATE(5749)] = 86218, [SMALL_STATE(5750)] = 86268, [SMALL_STATE(5751)] = 86316, - [SMALL_STATE(5752)] = 86364, - [SMALL_STATE(5753)] = 86454, - [SMALL_STATE(5754)] = 86502, - [SMALL_STATE(5755)] = 86550, - [SMALL_STATE(5756)] = 86640, - [SMALL_STATE(5757)] = 86690, - [SMALL_STATE(5758)] = 86738, - [SMALL_STATE(5759)] = 86788, - [SMALL_STATE(5760)] = 86836, - [SMALL_STATE(5761)] = 86926, - [SMALL_STATE(5762)] = 86975, - [SMALL_STATE(5763)] = 87022, - [SMALL_STATE(5764)] = 87069, - [SMALL_STATE(5765)] = 87115, - [SMALL_STATE(5766)] = 87163, - [SMALL_STATE(5767)] = 87209, - [SMALL_STATE(5768)] = 87253, - [SMALL_STATE(5769)] = 87297, - [SMALL_STATE(5770)] = 87345, - [SMALL_STATE(5771)] = 87391, - [SMALL_STATE(5772)] = 87437, - [SMALL_STATE(5773)] = 87483, - [SMALL_STATE(5774)] = 87529, - [SMALL_STATE(5775)] = 87575, - [SMALL_STATE(5776)] = 87619, - [SMALL_STATE(5777)] = 87665, - [SMALL_STATE(5778)] = 87709, - [SMALL_STATE(5779)] = 87755, - [SMALL_STATE(5780)] = 87803, - [SMALL_STATE(5781)] = 87853, - [SMALL_STATE(5782)] = 87899, - [SMALL_STATE(5783)] = 87945, - [SMALL_STATE(5784)] = 87993, - [SMALL_STATE(5785)] = 88039, - [SMALL_STATE(5786)] = 88085, - [SMALL_STATE(5787)] = 88131, - [SMALL_STATE(5788)] = 88175, - [SMALL_STATE(5789)] = 88221, - [SMALL_STATE(5790)] = 88269, - [SMALL_STATE(5791)] = 88315, - [SMALL_STATE(5792)] = 88359, - [SMALL_STATE(5793)] = 88403, - [SMALL_STATE(5794)] = 88449, - [SMALL_STATE(5795)] = 88495, - [SMALL_STATE(5796)] = 88539, - [SMALL_STATE(5797)] = 88583, - [SMALL_STATE(5798)] = 88629, - [SMALL_STATE(5799)] = 88675, - [SMALL_STATE(5800)] = 88720, - [SMALL_STATE(5801)] = 88763, - [SMALL_STATE(5802)] = 88806, - [SMALL_STATE(5803)] = 88855, - [SMALL_STATE(5804)] = 88904, - [SMALL_STATE(5805)] = 88951, - [SMALL_STATE(5806)] = 88998, - [SMALL_STATE(5807)] = 89045, - [SMALL_STATE(5808)] = 89094, - [SMALL_STATE(5809)] = 89137, - [SMALL_STATE(5810)] = 89179, - [SMALL_STATE(5811)] = 89227, - [SMALL_STATE(5812)] = 89269, - [SMALL_STATE(5813)] = 89311, - [SMALL_STATE(5814)] = 89353, - [SMALL_STATE(5815)] = 89395, - [SMALL_STATE(5816)] = 89437, - [SMALL_STATE(5817)] = 89481, - [SMALL_STATE(5818)] = 89523, - [SMALL_STATE(5819)] = 89565, - [SMALL_STATE(5820)] = 89607, - [SMALL_STATE(5821)] = 89649, - [SMALL_STATE(5822)] = 89691, - [SMALL_STATE(5823)] = 89735, - [SMALL_STATE(5824)] = 89777, - [SMALL_STATE(5825)] = 89821, - [SMALL_STATE(5826)] = 89867, - [SMALL_STATE(5827)] = 89909, - [SMALL_STATE(5828)] = 89953, - [SMALL_STATE(5829)] = 90001, - [SMALL_STATE(5830)] = 90045, - [SMALL_STATE(5831)] = 90091, - [SMALL_STATE(5832)] = 90137, - [SMALL_STATE(5833)] = 90183, - [SMALL_STATE(5834)] = 90225, - [SMALL_STATE(5835)] = 90267, - [SMALL_STATE(5836)] = 90310, - [SMALL_STATE(5837)] = 90353, - [SMALL_STATE(5838)] = 90400, - [SMALL_STATE(5839)] = 90441, - [SMALL_STATE(5840)] = 90482, - [SMALL_STATE(5841)] = 90523, - [SMALL_STATE(5842)] = 90566, - [SMALL_STATE(5843)] = 90613, - [SMALL_STATE(5844)] = 90660, - [SMALL_STATE(5845)] = 90703, - [SMALL_STATE(5846)] = 90781, - [SMALL_STATE(5847)] = 90823, - [SMALL_STATE(5848)] = 90901, - [SMALL_STATE(5849)] = 90943, - [SMALL_STATE(5850)] = 91021, - [SMALL_STATE(5851)] = 91099, - [SMALL_STATE(5852)] = 91141, - [SMALL_STATE(5853)] = 91183, - [SMALL_STATE(5854)] = 91261, - [SMALL_STATE(5855)] = 91339, - [SMALL_STATE(5856)] = 91381, - [SMALL_STATE(5857)] = 91423, - [SMALL_STATE(5858)] = 91501, - [SMALL_STATE(5859)] = 91543, - [SMALL_STATE(5860)] = 91619, - [SMALL_STATE(5861)] = 91665, - [SMALL_STATE(5862)] = 91707, - [SMALL_STATE(5863)] = 91785, - [SMALL_STATE(5864)] = 91827, - [SMALL_STATE(5865)] = 91869, - [SMALL_STATE(5866)] = 91947, - [SMALL_STATE(5867)] = 91989, - [SMALL_STATE(5868)] = 92031, - [SMALL_STATE(5869)] = 92109, - [SMALL_STATE(5870)] = 92151, - [SMALL_STATE(5871)] = 92193, - [SMALL_STATE(5872)] = 92235, - [SMALL_STATE(5873)] = 92277, - [SMALL_STATE(5874)] = 92319, - [SMALL_STATE(5875)] = 92361, - [SMALL_STATE(5876)] = 92403, - [SMALL_STATE(5877)] = 92481, - [SMALL_STATE(5878)] = 92523, - [SMALL_STATE(5879)] = 92565, - [SMALL_STATE(5880)] = 92640, - [SMALL_STATE(5881)] = 92713, - [SMALL_STATE(5882)] = 92788, - [SMALL_STATE(5883)] = 92863, - [SMALL_STATE(5884)] = 92938, - [SMALL_STATE(5885)] = 93013, - [SMALL_STATE(5886)] = 93088, - [SMALL_STATE(5887)] = 93160, - [SMALL_STATE(5888)] = 93232, - [SMALL_STATE(5889)] = 93304, - [SMALL_STATE(5890)] = 93376, - [SMALL_STATE(5891)] = 93448, - [SMALL_STATE(5892)] = 93520, - [SMALL_STATE(5893)] = 93592, - [SMALL_STATE(5894)] = 93664, - [SMALL_STATE(5895)] = 93736, - [SMALL_STATE(5896)] = 93808, - [SMALL_STATE(5897)] = 93880, - [SMALL_STATE(5898)] = 93952, - [SMALL_STATE(5899)] = 94024, - [SMALL_STATE(5900)] = 94096, - [SMALL_STATE(5901)] = 94168, - [SMALL_STATE(5902)] = 94240, - [SMALL_STATE(5903)] = 94312, - [SMALL_STATE(5904)] = 94384, - [SMALL_STATE(5905)] = 94456, - [SMALL_STATE(5906)] = 94528, - [SMALL_STATE(5907)] = 94600, - [SMALL_STATE(5908)] = 94672, - [SMALL_STATE(5909)] = 94744, - [SMALL_STATE(5910)] = 94816, - [SMALL_STATE(5911)] = 94888, - [SMALL_STATE(5912)] = 94960, - [SMALL_STATE(5913)] = 95032, - [SMALL_STATE(5914)] = 95104, - [SMALL_STATE(5915)] = 95176, - [SMALL_STATE(5916)] = 95248, - [SMALL_STATE(5917)] = 95320, - [SMALL_STATE(5918)] = 95392, - [SMALL_STATE(5919)] = 95464, - [SMALL_STATE(5920)] = 95504, - [SMALL_STATE(5921)] = 95576, - [SMALL_STATE(5922)] = 95648, - [SMALL_STATE(5923)] = 95720, - [SMALL_STATE(5924)] = 95792, - [SMALL_STATE(5925)] = 95864, - [SMALL_STATE(5926)] = 95936, - [SMALL_STATE(5927)] = 96008, - [SMALL_STATE(5928)] = 96080, - [SMALL_STATE(5929)] = 96152, - [SMALL_STATE(5930)] = 96224, - [SMALL_STATE(5931)] = 96296, - [SMALL_STATE(5932)] = 96368, - [SMALL_STATE(5933)] = 96440, - [SMALL_STATE(5934)] = 96512, - [SMALL_STATE(5935)] = 96584, - [SMALL_STATE(5936)] = 96656, - [SMALL_STATE(5937)] = 96728, - [SMALL_STATE(5938)] = 96800, - [SMALL_STATE(5939)] = 96872, - [SMALL_STATE(5940)] = 96944, - [SMALL_STATE(5941)] = 97016, - [SMALL_STATE(5942)] = 97088, - [SMALL_STATE(5943)] = 97160, - [SMALL_STATE(5944)] = 97232, - [SMALL_STATE(5945)] = 97304, - [SMALL_STATE(5946)] = 97376, - [SMALL_STATE(5947)] = 97448, - [SMALL_STATE(5948)] = 97520, - [SMALL_STATE(5949)] = 97592, - [SMALL_STATE(5950)] = 97664, - [SMALL_STATE(5951)] = 97736, - [SMALL_STATE(5952)] = 97808, - [SMALL_STATE(5953)] = 97880, - [SMALL_STATE(5954)] = 97952, - [SMALL_STATE(5955)] = 98024, - [SMALL_STATE(5956)] = 98096, - [SMALL_STATE(5957)] = 98168, - [SMALL_STATE(5958)] = 98240, - [SMALL_STATE(5959)] = 98312, - [SMALL_STATE(5960)] = 98384, - [SMALL_STATE(5961)] = 98456, - [SMALL_STATE(5962)] = 98528, - [SMALL_STATE(5963)] = 98600, - [SMALL_STATE(5964)] = 98672, - [SMALL_STATE(5965)] = 98744, - [SMALL_STATE(5966)] = 98816, - [SMALL_STATE(5967)] = 98888, - [SMALL_STATE(5968)] = 98960, - [SMALL_STATE(5969)] = 99032, - [SMALL_STATE(5970)] = 99104, - [SMALL_STATE(5971)] = 99176, - [SMALL_STATE(5972)] = 99248, - [SMALL_STATE(5973)] = 99320, - [SMALL_STATE(5974)] = 99392, - [SMALL_STATE(5975)] = 99464, - [SMALL_STATE(5976)] = 99536, - [SMALL_STATE(5977)] = 99608, - [SMALL_STATE(5978)] = 99680, - [SMALL_STATE(5979)] = 99752, - [SMALL_STATE(5980)] = 99824, - [SMALL_STATE(5981)] = 99896, - [SMALL_STATE(5982)] = 99968, - [SMALL_STATE(5983)] = 100040, - [SMALL_STATE(5984)] = 100112, - [SMALL_STATE(5985)] = 100184, - [SMALL_STATE(5986)] = 100256, - [SMALL_STATE(5987)] = 100328, - [SMALL_STATE(5988)] = 100400, - [SMALL_STATE(5989)] = 100472, - [SMALL_STATE(5990)] = 100544, - [SMALL_STATE(5991)] = 100616, - [SMALL_STATE(5992)] = 100688, - [SMALL_STATE(5993)] = 100760, - [SMALL_STATE(5994)] = 100832, - [SMALL_STATE(5995)] = 100904, - [SMALL_STATE(5996)] = 100976, - [SMALL_STATE(5997)] = 101048, - [SMALL_STATE(5998)] = 101120, - [SMALL_STATE(5999)] = 101192, - [SMALL_STATE(6000)] = 101264, - [SMALL_STATE(6001)] = 101336, - [SMALL_STATE(6002)] = 101408, - [SMALL_STATE(6003)] = 101480, - [SMALL_STATE(6004)] = 101552, - [SMALL_STATE(6005)] = 101624, - [SMALL_STATE(6006)] = 101696, - [SMALL_STATE(6007)] = 101768, - [SMALL_STATE(6008)] = 101840, - [SMALL_STATE(6009)] = 101912, - [SMALL_STATE(6010)] = 101984, - [SMALL_STATE(6011)] = 102056, - [SMALL_STATE(6012)] = 102128, - [SMALL_STATE(6013)] = 102200, - [SMALL_STATE(6014)] = 102272, - [SMALL_STATE(6015)] = 102344, - [SMALL_STATE(6016)] = 102416, - [SMALL_STATE(6017)] = 102488, - [SMALL_STATE(6018)] = 102560, - [SMALL_STATE(6019)] = 102632, - [SMALL_STATE(6020)] = 102704, - [SMALL_STATE(6021)] = 102776, - [SMALL_STATE(6022)] = 102848, - [SMALL_STATE(6023)] = 102920, - [SMALL_STATE(6024)] = 102992, - [SMALL_STATE(6025)] = 103064, - [SMALL_STATE(6026)] = 103136, - [SMALL_STATE(6027)] = 103208, - [SMALL_STATE(6028)] = 103280, - [SMALL_STATE(6029)] = 103352, - [SMALL_STATE(6030)] = 103424, - [SMALL_STATE(6031)] = 103496, - [SMALL_STATE(6032)] = 103568, - [SMALL_STATE(6033)] = 103640, - [SMALL_STATE(6034)] = 103712, - [SMALL_STATE(6035)] = 103784, - [SMALL_STATE(6036)] = 103856, - [SMALL_STATE(6037)] = 103928, - [SMALL_STATE(6038)] = 104000, - [SMALL_STATE(6039)] = 104072, - [SMALL_STATE(6040)] = 104144, - [SMALL_STATE(6041)] = 104216, - [SMALL_STATE(6042)] = 104288, - [SMALL_STATE(6043)] = 104360, - [SMALL_STATE(6044)] = 104432, - [SMALL_STATE(6045)] = 104504, - [SMALL_STATE(6046)] = 104576, - [SMALL_STATE(6047)] = 104648, - [SMALL_STATE(6048)] = 104720, - [SMALL_STATE(6049)] = 104792, - [SMALL_STATE(6050)] = 104864, - [SMALL_STATE(6051)] = 104936, - [SMALL_STATE(6052)] = 105008, - [SMALL_STATE(6053)] = 105080, - [SMALL_STATE(6054)] = 105152, - [SMALL_STATE(6055)] = 105224, - [SMALL_STATE(6056)] = 105296, - [SMALL_STATE(6057)] = 105368, - [SMALL_STATE(6058)] = 105440, - [SMALL_STATE(6059)] = 105512, - [SMALL_STATE(6060)] = 105584, - [SMALL_STATE(6061)] = 105656, - [SMALL_STATE(6062)] = 105728, - [SMALL_STATE(6063)] = 105800, - [SMALL_STATE(6064)] = 105872, - [SMALL_STATE(6065)] = 105944, - [SMALL_STATE(6066)] = 106016, - [SMALL_STATE(6067)] = 106088, - [SMALL_STATE(6068)] = 106128, - [SMALL_STATE(6069)] = 106200, - [SMALL_STATE(6070)] = 106272, - [SMALL_STATE(6071)] = 106344, - [SMALL_STATE(6072)] = 106416, - [SMALL_STATE(6073)] = 106488, - [SMALL_STATE(6074)] = 106528, - [SMALL_STATE(6075)] = 106600, - [SMALL_STATE(6076)] = 106672, - [SMALL_STATE(6077)] = 106744, - [SMALL_STATE(6078)] = 106816, - [SMALL_STATE(6079)] = 106888, - [SMALL_STATE(6080)] = 106960, - [SMALL_STATE(6081)] = 107032, - [SMALL_STATE(6082)] = 107104, - [SMALL_STATE(6083)] = 107176, - [SMALL_STATE(6084)] = 107248, - [SMALL_STATE(6085)] = 107288, - [SMALL_STATE(6086)] = 107360, - [SMALL_STATE(6087)] = 107432, - [SMALL_STATE(6088)] = 107504, - [SMALL_STATE(6089)] = 107576, - [SMALL_STATE(6090)] = 107648, - [SMALL_STATE(6091)] = 107720, - [SMALL_STATE(6092)] = 107792, - [SMALL_STATE(6093)] = 107864, - [SMALL_STATE(6094)] = 107936, - [SMALL_STATE(6095)] = 108008, - [SMALL_STATE(6096)] = 108080, - [SMALL_STATE(6097)] = 108152, - [SMALL_STATE(6098)] = 108224, - [SMALL_STATE(6099)] = 108296, - [SMALL_STATE(6100)] = 108368, - [SMALL_STATE(6101)] = 108440, - [SMALL_STATE(6102)] = 108512, - [SMALL_STATE(6103)] = 108584, - [SMALL_STATE(6104)] = 108656, - [SMALL_STATE(6105)] = 108728, - [SMALL_STATE(6106)] = 108800, - [SMALL_STATE(6107)] = 108872, - [SMALL_STATE(6108)] = 108944, - [SMALL_STATE(6109)] = 109016, - [SMALL_STATE(6110)] = 109088, - [SMALL_STATE(6111)] = 109160, - [SMALL_STATE(6112)] = 109232, - [SMALL_STATE(6113)] = 109304, - [SMALL_STATE(6114)] = 109376, - [SMALL_STATE(6115)] = 109448, - [SMALL_STATE(6116)] = 109520, - [SMALL_STATE(6117)] = 109592, - [SMALL_STATE(6118)] = 109664, - [SMALL_STATE(6119)] = 109736, - [SMALL_STATE(6120)] = 109808, - [SMALL_STATE(6121)] = 109880, - [SMALL_STATE(6122)] = 109952, - [SMALL_STATE(6123)] = 110024, - [SMALL_STATE(6124)] = 110096, - [SMALL_STATE(6125)] = 110168, - [SMALL_STATE(6126)] = 110240, - [SMALL_STATE(6127)] = 110312, - [SMALL_STATE(6128)] = 110384, - [SMALL_STATE(6129)] = 110456, - [SMALL_STATE(6130)] = 110528, - [SMALL_STATE(6131)] = 110600, - [SMALL_STATE(6132)] = 110672, - [SMALL_STATE(6133)] = 110744, - [SMALL_STATE(6134)] = 110816, - [SMALL_STATE(6135)] = 110888, - [SMALL_STATE(6136)] = 110960, - [SMALL_STATE(6137)] = 111032, - [SMALL_STATE(6138)] = 111104, - [SMALL_STATE(6139)] = 111176, - [SMALL_STATE(6140)] = 111248, - [SMALL_STATE(6141)] = 111320, - [SMALL_STATE(6142)] = 111360, - [SMALL_STATE(6143)] = 111432, - [SMALL_STATE(6144)] = 111504, - [SMALL_STATE(6145)] = 111576, - [SMALL_STATE(6146)] = 111648, - [SMALL_STATE(6147)] = 111720, - [SMALL_STATE(6148)] = 111792, - [SMALL_STATE(6149)] = 111864, - [SMALL_STATE(6150)] = 111936, - [SMALL_STATE(6151)] = 112008, - [SMALL_STATE(6152)] = 112080, - [SMALL_STATE(6153)] = 112152, - [SMALL_STATE(6154)] = 112224, - [SMALL_STATE(6155)] = 112296, - [SMALL_STATE(6156)] = 112336, - [SMALL_STATE(6157)] = 112408, - [SMALL_STATE(6158)] = 112480, - [SMALL_STATE(6159)] = 112552, - [SMALL_STATE(6160)] = 112624, - [SMALL_STATE(6161)] = 112696, - [SMALL_STATE(6162)] = 112768, - [SMALL_STATE(6163)] = 112840, - [SMALL_STATE(6164)] = 112912, - [SMALL_STATE(6165)] = 112984, - [SMALL_STATE(6166)] = 113056, - [SMALL_STATE(6167)] = 113128, - [SMALL_STATE(6168)] = 113200, - [SMALL_STATE(6169)] = 113272, - [SMALL_STATE(6170)] = 113344, - [SMALL_STATE(6171)] = 113416, - [SMALL_STATE(6172)] = 113488, - [SMALL_STATE(6173)] = 113560, - [SMALL_STATE(6174)] = 113632, - [SMALL_STATE(6175)] = 113704, - [SMALL_STATE(6176)] = 113776, - [SMALL_STATE(6177)] = 113848, - [SMALL_STATE(6178)] = 113920, - [SMALL_STATE(6179)] = 113992, - [SMALL_STATE(6180)] = 114064, - [SMALL_STATE(6181)] = 114136, - [SMALL_STATE(6182)] = 114208, - [SMALL_STATE(6183)] = 114280, - [SMALL_STATE(6184)] = 114352, - [SMALL_STATE(6185)] = 114424, - [SMALL_STATE(6186)] = 114496, - [SMALL_STATE(6187)] = 114536, - [SMALL_STATE(6188)] = 114608, - [SMALL_STATE(6189)] = 114680, - [SMALL_STATE(6190)] = 114752, - [SMALL_STATE(6191)] = 114824, - [SMALL_STATE(6192)] = 114896, - [SMALL_STATE(6193)] = 114968, - [SMALL_STATE(6194)] = 115040, - [SMALL_STATE(6195)] = 115112, - [SMALL_STATE(6196)] = 115184, - [SMALL_STATE(6197)] = 115256, - [SMALL_STATE(6198)] = 115328, - [SMALL_STATE(6199)] = 115400, - [SMALL_STATE(6200)] = 115472, - [SMALL_STATE(6201)] = 115544, - [SMALL_STATE(6202)] = 115616, - [SMALL_STATE(6203)] = 115688, - [SMALL_STATE(6204)] = 115760, - [SMALL_STATE(6205)] = 115832, - [SMALL_STATE(6206)] = 115904, - [SMALL_STATE(6207)] = 115976, - [SMALL_STATE(6208)] = 116048, - [SMALL_STATE(6209)] = 116120, - [SMALL_STATE(6210)] = 116192, - [SMALL_STATE(6211)] = 116264, - [SMALL_STATE(6212)] = 116336, - [SMALL_STATE(6213)] = 116408, - [SMALL_STATE(6214)] = 116480, - [SMALL_STATE(6215)] = 116552, - [SMALL_STATE(6216)] = 116624, - [SMALL_STATE(6217)] = 116696, - [SMALL_STATE(6218)] = 116736, - [SMALL_STATE(6219)] = 116808, - [SMALL_STATE(6220)] = 116880, - [SMALL_STATE(6221)] = 116952, - [SMALL_STATE(6222)] = 117024, - [SMALL_STATE(6223)] = 117096, - [SMALL_STATE(6224)] = 117168, - [SMALL_STATE(6225)] = 117240, - [SMALL_STATE(6226)] = 117312, - [SMALL_STATE(6227)] = 117384, - [SMALL_STATE(6228)] = 117456, - [SMALL_STATE(6229)] = 117528, - [SMALL_STATE(6230)] = 117600, - [SMALL_STATE(6231)] = 117672, - [SMALL_STATE(6232)] = 117744, - [SMALL_STATE(6233)] = 117816, - [SMALL_STATE(6234)] = 117888, - [SMALL_STATE(6235)] = 117960, - [SMALL_STATE(6236)] = 118032, - [SMALL_STATE(6237)] = 118104, - [SMALL_STATE(6238)] = 118176, - [SMALL_STATE(6239)] = 118248, - [SMALL_STATE(6240)] = 118320, - [SMALL_STATE(6241)] = 118360, - [SMALL_STATE(6242)] = 118400, - [SMALL_STATE(6243)] = 118472, - [SMALL_STATE(6244)] = 118544, - [SMALL_STATE(6245)] = 118616, - [SMALL_STATE(6246)] = 118688, - [SMALL_STATE(6247)] = 118760, - [SMALL_STATE(6248)] = 118832, - [SMALL_STATE(6249)] = 118904, - [SMALL_STATE(6250)] = 118976, - [SMALL_STATE(6251)] = 119048, - [SMALL_STATE(6252)] = 119120, - [SMALL_STATE(6253)] = 119192, - [SMALL_STATE(6254)] = 119264, - [SMALL_STATE(6255)] = 119336, - [SMALL_STATE(6256)] = 119408, - [SMALL_STATE(6257)] = 119480, - [SMALL_STATE(6258)] = 119552, - [SMALL_STATE(6259)] = 119624, - [SMALL_STATE(6260)] = 119696, - [SMALL_STATE(6261)] = 119768, - [SMALL_STATE(6262)] = 119840, - [SMALL_STATE(6263)] = 119880, - [SMALL_STATE(6264)] = 119952, - [SMALL_STATE(6265)] = 120024, - [SMALL_STATE(6266)] = 120096, - [SMALL_STATE(6267)] = 120168, - [SMALL_STATE(6268)] = 120240, - [SMALL_STATE(6269)] = 120312, - [SMALL_STATE(6270)] = 120384, - [SMALL_STATE(6271)] = 120456, - [SMALL_STATE(6272)] = 120528, - [SMALL_STATE(6273)] = 120600, - [SMALL_STATE(6274)] = 120672, - [SMALL_STATE(6275)] = 120744, - [SMALL_STATE(6276)] = 120816, - [SMALL_STATE(6277)] = 120888, - [SMALL_STATE(6278)] = 120960, - [SMALL_STATE(6279)] = 121032, - [SMALL_STATE(6280)] = 121104, - [SMALL_STATE(6281)] = 121176, - [SMALL_STATE(6282)] = 121248, - [SMALL_STATE(6283)] = 121320, - [SMALL_STATE(6284)] = 121392, - [SMALL_STATE(6285)] = 121464, - [SMALL_STATE(6286)] = 121536, - [SMALL_STATE(6287)] = 121608, - [SMALL_STATE(6288)] = 121680, - [SMALL_STATE(6289)] = 121752, - [SMALL_STATE(6290)] = 121824, - [SMALL_STATE(6291)] = 121896, - [SMALL_STATE(6292)] = 121968, - [SMALL_STATE(6293)] = 122040, - [SMALL_STATE(6294)] = 122112, - [SMALL_STATE(6295)] = 122184, - [SMALL_STATE(6296)] = 122256, - [SMALL_STATE(6297)] = 122328, - [SMALL_STATE(6298)] = 122400, - [SMALL_STATE(6299)] = 122472, - [SMALL_STATE(6300)] = 122544, - [SMALL_STATE(6301)] = 122616, - [SMALL_STATE(6302)] = 122688, - [SMALL_STATE(6303)] = 122760, - [SMALL_STATE(6304)] = 122832, - [SMALL_STATE(6305)] = 122904, - [SMALL_STATE(6306)] = 122976, - [SMALL_STATE(6307)] = 123048, - [SMALL_STATE(6308)] = 123120, - [SMALL_STATE(6309)] = 123192, - [SMALL_STATE(6310)] = 123264, - [SMALL_STATE(6311)] = 123336, - [SMALL_STATE(6312)] = 123408, - [SMALL_STATE(6313)] = 123480, - [SMALL_STATE(6314)] = 123552, - [SMALL_STATE(6315)] = 123624, - [SMALL_STATE(6316)] = 123666, - [SMALL_STATE(6317)] = 123738, - [SMALL_STATE(6318)] = 123810, - [SMALL_STATE(6319)] = 123882, - [SMALL_STATE(6320)] = 123954, - [SMALL_STATE(6321)] = 124026, - [SMALL_STATE(6322)] = 124098, - [SMALL_STATE(6323)] = 124170, - [SMALL_STATE(6324)] = 124242, - [SMALL_STATE(6325)] = 124314, - [SMALL_STATE(6326)] = 124386, - [SMALL_STATE(6327)] = 124458, - [SMALL_STATE(6328)] = 124530, - [SMALL_STATE(6329)] = 124602, - [SMALL_STATE(6330)] = 124674, - [SMALL_STATE(6331)] = 124746, - [SMALL_STATE(6332)] = 124818, - [SMALL_STATE(6333)] = 124890, - [SMALL_STATE(6334)] = 124962, - [SMALL_STATE(6335)] = 125034, - [SMALL_STATE(6336)] = 125106, - [SMALL_STATE(6337)] = 125178, - [SMALL_STATE(6338)] = 125250, - [SMALL_STATE(6339)] = 125322, - [SMALL_STATE(6340)] = 125394, - [SMALL_STATE(6341)] = 125466, - [SMALL_STATE(6342)] = 125538, - [SMALL_STATE(6343)] = 125610, - [SMALL_STATE(6344)] = 125682, - [SMALL_STATE(6345)] = 125754, - [SMALL_STATE(6346)] = 125826, - [SMALL_STATE(6347)] = 125898, - [SMALL_STATE(6348)] = 125938, - [SMALL_STATE(6349)] = 126010, - [SMALL_STATE(6350)] = 126082, - [SMALL_STATE(6351)] = 126154, - [SMALL_STATE(6352)] = 126226, - [SMALL_STATE(6353)] = 126298, - [SMALL_STATE(6354)] = 126370, - [SMALL_STATE(6355)] = 126442, - [SMALL_STATE(6356)] = 126514, - [SMALL_STATE(6357)] = 126586, - [SMALL_STATE(6358)] = 126658, - [SMALL_STATE(6359)] = 126730, - [SMALL_STATE(6360)] = 126802, - [SMALL_STATE(6361)] = 126874, - [SMALL_STATE(6362)] = 126946, - [SMALL_STATE(6363)] = 127018, - [SMALL_STATE(6364)] = 127090, - [SMALL_STATE(6365)] = 127162, - [SMALL_STATE(6366)] = 127234, - [SMALL_STATE(6367)] = 127306, - [SMALL_STATE(6368)] = 127378, - [SMALL_STATE(6369)] = 127450, - [SMALL_STATE(6370)] = 127522, - [SMALL_STATE(6371)] = 127594, - [SMALL_STATE(6372)] = 127666, - [SMALL_STATE(6373)] = 127738, - [SMALL_STATE(6374)] = 127810, - [SMALL_STATE(6375)] = 127882, - [SMALL_STATE(6376)] = 127954, - [SMALL_STATE(6377)] = 128026, - [SMALL_STATE(6378)] = 128098, - [SMALL_STATE(6379)] = 128170, - [SMALL_STATE(6380)] = 128242, - [SMALL_STATE(6381)] = 128314, - [SMALL_STATE(6382)] = 128386, - [SMALL_STATE(6383)] = 128458, - [SMALL_STATE(6384)] = 128530, - [SMALL_STATE(6385)] = 128602, - [SMALL_STATE(6386)] = 128674, - [SMALL_STATE(6387)] = 128746, - [SMALL_STATE(6388)] = 128818, - [SMALL_STATE(6389)] = 128890, - [SMALL_STATE(6390)] = 128962, - [SMALL_STATE(6391)] = 129034, - [SMALL_STATE(6392)] = 129106, - [SMALL_STATE(6393)] = 129178, - [SMALL_STATE(6394)] = 129250, - [SMALL_STATE(6395)] = 129322, - [SMALL_STATE(6396)] = 129394, - [SMALL_STATE(6397)] = 129466, - [SMALL_STATE(6398)] = 129538, - [SMALL_STATE(6399)] = 129610, - [SMALL_STATE(6400)] = 129682, - [SMALL_STATE(6401)] = 129754, - [SMALL_STATE(6402)] = 129826, - [SMALL_STATE(6403)] = 129898, - [SMALL_STATE(6404)] = 129970, - [SMALL_STATE(6405)] = 130042, - [SMALL_STATE(6406)] = 130113, - [SMALL_STATE(6407)] = 130184, - [SMALL_STATE(6408)] = 130255, - [SMALL_STATE(6409)] = 130326, - [SMALL_STATE(6410)] = 130397, - [SMALL_STATE(6411)] = 130468, - [SMALL_STATE(6412)] = 130539, - [SMALL_STATE(6413)] = 130610, - [SMALL_STATE(6414)] = 130681, - [SMALL_STATE(6415)] = 130752, - [SMALL_STATE(6416)] = 130823, - [SMALL_STATE(6417)] = 130894, - [SMALL_STATE(6418)] = 130965, - [SMALL_STATE(6419)] = 131036, - [SMALL_STATE(6420)] = 131107, - [SMALL_STATE(6421)] = 131178, - [SMALL_STATE(6422)] = 131249, - [SMALL_STATE(6423)] = 131320, - [SMALL_STATE(6424)] = 131391, - [SMALL_STATE(6425)] = 131462, - [SMALL_STATE(6426)] = 131533, - [SMALL_STATE(6427)] = 131604, - [SMALL_STATE(6428)] = 131675, - [SMALL_STATE(6429)] = 131746, - [SMALL_STATE(6430)] = 131817, - [SMALL_STATE(6431)] = 131888, - [SMALL_STATE(6432)] = 131959, - [SMALL_STATE(6433)] = 132030, - [SMALL_STATE(6434)] = 132101, - [SMALL_STATE(6435)] = 132172, - [SMALL_STATE(6436)] = 132243, - [SMALL_STATE(6437)] = 132314, - [SMALL_STATE(6438)] = 132385, - [SMALL_STATE(6439)] = 132456, - [SMALL_STATE(6440)] = 132527, - [SMALL_STATE(6441)] = 132598, - [SMALL_STATE(6442)] = 132669, - [SMALL_STATE(6443)] = 132740, - [SMALL_STATE(6444)] = 132811, - [SMALL_STATE(6445)] = 132882, - [SMALL_STATE(6446)] = 132953, - [SMALL_STATE(6447)] = 133019, - [SMALL_STATE(6448)] = 133085, - [SMALL_STATE(6449)] = 133151, - [SMALL_STATE(6450)] = 133217, - [SMALL_STATE(6451)] = 133285, - [SMALL_STATE(6452)] = 133351, - [SMALL_STATE(6453)] = 133417, - [SMALL_STATE(6454)] = 133485, - [SMALL_STATE(6455)] = 133553, - [SMALL_STATE(6456)] = 133619, - [SMALL_STATE(6457)] = 133685, - [SMALL_STATE(6458)] = 133751, - [SMALL_STATE(6459)] = 133817, - [SMALL_STATE(6460)] = 133885, - [SMALL_STATE(6461)] = 133953, - [SMALL_STATE(6462)] = 134019, - [SMALL_STATE(6463)] = 134085, - [SMALL_STATE(6464)] = 134151, - [SMALL_STATE(6465)] = 134217, - [SMALL_STATE(6466)] = 134283, - [SMALL_STATE(6467)] = 134349, - [SMALL_STATE(6468)] = 134415, - [SMALL_STATE(6469)] = 134481, - [SMALL_STATE(6470)] = 134547, - [SMALL_STATE(6471)] = 134615, - [SMALL_STATE(6472)] = 134681, - [SMALL_STATE(6473)] = 134749, - [SMALL_STATE(6474)] = 134815, - [SMALL_STATE(6475)] = 134881, - [SMALL_STATE(6476)] = 134949, - [SMALL_STATE(6477)] = 135015, - [SMALL_STATE(6478)] = 135081, - [SMALL_STATE(6479)] = 135147, - [SMALL_STATE(6480)] = 135213, - [SMALL_STATE(6481)] = 135281, - [SMALL_STATE(6482)] = 135347, - [SMALL_STATE(6483)] = 135415, - [SMALL_STATE(6484)] = 135481, - [SMALL_STATE(6485)] = 135547, - [SMALL_STATE(6486)] = 135613, - [SMALL_STATE(6487)] = 135679, - [SMALL_STATE(6488)] = 135745, - [SMALL_STATE(6489)] = 135811, - [SMALL_STATE(6490)] = 135877, - [SMALL_STATE(6491)] = 135943, - [SMALL_STATE(6492)] = 136009, - [SMALL_STATE(6493)] = 136077, - [SMALL_STATE(6494)] = 136143, - [SMALL_STATE(6495)] = 136211, - [SMALL_STATE(6496)] = 136277, - [SMALL_STATE(6497)] = 136343, - [SMALL_STATE(6498)] = 136409, - [SMALL_STATE(6499)] = 136475, - [SMALL_STATE(6500)] = 136543, - [SMALL_STATE(6501)] = 136611, - [SMALL_STATE(6502)] = 136677, - [SMALL_STATE(6503)] = 136743, - [SMALL_STATE(6504)] = 136809, - [SMALL_STATE(6505)] = 136877, - [SMALL_STATE(6506)] = 136945, - [SMALL_STATE(6507)] = 137013, - [SMALL_STATE(6508)] = 137079, - [SMALL_STATE(6509)] = 137147, - [SMALL_STATE(6510)] = 137213, - [SMALL_STATE(6511)] = 137281, - [SMALL_STATE(6512)] = 137349, - [SMALL_STATE(6513)] = 137417, - [SMALL_STATE(6514)] = 137485, - [SMALL_STATE(6515)] = 137551, - [SMALL_STATE(6516)] = 137617, - [SMALL_STATE(6517)] = 137685, - [SMALL_STATE(6518)] = 137751, - [SMALL_STATE(6519)] = 137819, - [SMALL_STATE(6520)] = 137885, - [SMALL_STATE(6521)] = 137951, - [SMALL_STATE(6522)] = 138017, - [SMALL_STATE(6523)] = 138085, - [SMALL_STATE(6524)] = 138153, - [SMALL_STATE(6525)] = 138221, - [SMALL_STATE(6526)] = 138287, - [SMALL_STATE(6527)] = 138353, - [SMALL_STATE(6528)] = 138421, - [SMALL_STATE(6529)] = 138483, - [SMALL_STATE(6530)] = 138545, - [SMALL_STATE(6531)] = 138607, - [SMALL_STATE(6532)] = 138669, - [SMALL_STATE(6533)] = 138731, - [SMALL_STATE(6534)] = 138793, - [SMALL_STATE(6535)] = 138855, - [SMALL_STATE(6536)] = 138891, - [SMALL_STATE(6537)] = 138953, - [SMALL_STATE(6538)] = 139015, - [SMALL_STATE(6539)] = 139077, - [SMALL_STATE(6540)] = 139139, - [SMALL_STATE(6541)] = 139201, - [SMALL_STATE(6542)] = 139263, - [SMALL_STATE(6543)] = 139325, - [SMALL_STATE(6544)] = 139387, - [SMALL_STATE(6545)] = 139449, - [SMALL_STATE(6546)] = 139511, - [SMALL_STATE(6547)] = 139573, - [SMALL_STATE(6548)] = 139635, - [SMALL_STATE(6549)] = 139697, - [SMALL_STATE(6550)] = 139759, - [SMALL_STATE(6551)] = 139821, - [SMALL_STATE(6552)] = 139883, - [SMALL_STATE(6553)] = 139945, - [SMALL_STATE(6554)] = 140007, - [SMALL_STATE(6555)] = 140069, - [SMALL_STATE(6556)] = 140131, - [SMALL_STATE(6557)] = 140193, - [SMALL_STATE(6558)] = 140255, - [SMALL_STATE(6559)] = 140317, - [SMALL_STATE(6560)] = 140379, - [SMALL_STATE(6561)] = 140441, - [SMALL_STATE(6562)] = 140503, - [SMALL_STATE(6563)] = 140565, - [SMALL_STATE(6564)] = 140627, - [SMALL_STATE(6565)] = 140689, - [SMALL_STATE(6566)] = 140751, - [SMALL_STATE(6567)] = 140813, - [SMALL_STATE(6568)] = 140875, - [SMALL_STATE(6569)] = 140937, - [SMALL_STATE(6570)] = 140999, - [SMALL_STATE(6571)] = 141061, - [SMALL_STATE(6572)] = 141097, - [SMALL_STATE(6573)] = 141159, - [SMALL_STATE(6574)] = 141221, - [SMALL_STATE(6575)] = 141283, - [SMALL_STATE(6576)] = 141345, - [SMALL_STATE(6577)] = 141407, - [SMALL_STATE(6578)] = 141469, - [SMALL_STATE(6579)] = 141531, - [SMALL_STATE(6580)] = 141593, - [SMALL_STATE(6581)] = 141655, - [SMALL_STATE(6582)] = 141717, - [SMALL_STATE(6583)] = 141779, - [SMALL_STATE(6584)] = 141841, - [SMALL_STATE(6585)] = 141880, - [SMALL_STATE(6586)] = 141938, - [SMALL_STATE(6587)] = 141996, - [SMALL_STATE(6588)] = 142054, - [SMALL_STATE(6589)] = 142112, - [SMALL_STATE(6590)] = 142170, - [SMALL_STATE(6591)] = 142228, - [SMALL_STATE(6592)] = 142286, - [SMALL_STATE(6593)] = 142324, - [SMALL_STATE(6594)] = 142382, - [SMALL_STATE(6595)] = 142440, - [SMALL_STATE(6596)] = 142478, - [SMALL_STATE(6597)] = 142533, - [SMALL_STATE(6598)] = 142588, - [SMALL_STATE(6599)] = 142643, - [SMALL_STATE(6600)] = 142698, - [SMALL_STATE(6601)] = 142753, - [SMALL_STATE(6602)] = 142808, - [SMALL_STATE(6603)] = 142863, - [SMALL_STATE(6604)] = 142918, - [SMALL_STATE(6605)] = 142973, - [SMALL_STATE(6606)] = 143028, - [SMALL_STATE(6607)] = 143083, - [SMALL_STATE(6608)] = 143138, - [SMALL_STATE(6609)] = 143193, - [SMALL_STATE(6610)] = 143248, - [SMALL_STATE(6611)] = 143303, - [SMALL_STATE(6612)] = 143336, - [SMALL_STATE(6613)] = 143391, - [SMALL_STATE(6614)] = 143446, - [SMALL_STATE(6615)] = 143479, - [SMALL_STATE(6616)] = 143534, - [SMALL_STATE(6617)] = 143589, - [SMALL_STATE(6618)] = 143643, - [SMALL_STATE(6619)] = 143697, - [SMALL_STATE(6620)] = 143751, - [SMALL_STATE(6621)] = 143805, - [SMALL_STATE(6622)] = 143859, - [SMALL_STATE(6623)] = 143911, - [SMALL_STATE(6624)] = 143965, - [SMALL_STATE(6625)] = 144019, - [SMALL_STATE(6626)] = 144073, - [SMALL_STATE(6627)] = 144109, - [SMALL_STATE(6628)] = 144163, - [SMALL_STATE(6629)] = 144217, - [SMALL_STATE(6630)] = 144271, - [SMALL_STATE(6631)] = 144323, - [SMALL_STATE(6632)] = 144377, - [SMALL_STATE(6633)] = 144429, - [SMALL_STATE(6634)] = 144481, - [SMALL_STATE(6635)] = 144535, - [SMALL_STATE(6636)] = 144589, - [SMALL_STATE(6637)] = 144641, - [SMALL_STATE(6638)] = 144693, - [SMALL_STATE(6639)] = 144745, - [SMALL_STATE(6640)] = 144797, - [SMALL_STATE(6641)] = 144849, - [SMALL_STATE(6642)] = 144901, - [SMALL_STATE(6643)] = 144955, - [SMALL_STATE(6644)] = 145009, - [SMALL_STATE(6645)] = 145063, - [SMALL_STATE(6646)] = 145117, - [SMALL_STATE(6647)] = 145171, - [SMALL_STATE(6648)] = 145225, - [SMALL_STATE(6649)] = 145279, - [SMALL_STATE(6650)] = 145331, - [SMALL_STATE(6651)] = 145385, - [SMALL_STATE(6652)] = 145437, - [SMALL_STATE(6653)] = 145489, - [SMALL_STATE(6654)] = 145543, - [SMALL_STATE(6655)] = 145597, - [SMALL_STATE(6656)] = 145651, - [SMALL_STATE(6657)] = 145705, - [SMALL_STATE(6658)] = 145759, - [SMALL_STATE(6659)] = 145811, - [SMALL_STATE(6660)] = 145865, - [SMALL_STATE(6661)] = 145917, - [SMALL_STATE(6662)] = 145971, - [SMALL_STATE(6663)] = 146023, - [SMALL_STATE(6664)] = 146077, - [SMALL_STATE(6665)] = 146129, - [SMALL_STATE(6666)] = 146181, - [SMALL_STATE(6667)] = 146235, - [SMALL_STATE(6668)] = 146289, - [SMALL_STATE(6669)] = 146341, - [SMALL_STATE(6670)] = 146395, - [SMALL_STATE(6671)] = 146449, - [SMALL_STATE(6672)] = 146503, - [SMALL_STATE(6673)] = 146557, - [SMALL_STATE(6674)] = 146611, - [SMALL_STATE(6675)] = 146665, - [SMALL_STATE(6676)] = 146717, - [SMALL_STATE(6677)] = 146771, - [SMALL_STATE(6678)] = 146825, - [SMALL_STATE(6679)] = 146877, - [SMALL_STATE(6680)] = 146931, - [SMALL_STATE(6681)] = 146985, - [SMALL_STATE(6682)] = 147034, - [SMALL_STATE(6683)] = 147083, - [SMALL_STATE(6684)] = 147132, - [SMALL_STATE(6685)] = 147181, - [SMALL_STATE(6686)] = 147230, - [SMALL_STATE(6687)] = 147279, - [SMALL_STATE(6688)] = 147328, - [SMALL_STATE(6689)] = 147377, - [SMALL_STATE(6690)] = 147426, - [SMALL_STATE(6691)] = 147475, - [SMALL_STATE(6692)] = 147524, - [SMALL_STATE(6693)] = 147573, - [SMALL_STATE(6694)] = 147622, - [SMALL_STATE(6695)] = 147671, - [SMALL_STATE(6696)] = 147720, - [SMALL_STATE(6697)] = 147755, - [SMALL_STATE(6698)] = 147804, - [SMALL_STATE(6699)] = 147853, - [SMALL_STATE(6700)] = 147902, - [SMALL_STATE(6701)] = 147951, - [SMALL_STATE(6702)] = 148000, - [SMALL_STATE(6703)] = 148049, - [SMALL_STATE(6704)] = 148098, - [SMALL_STATE(6705)] = 148147, - [SMALL_STATE(6706)] = 148196, - [SMALL_STATE(6707)] = 148245, - [SMALL_STATE(6708)] = 148294, - [SMALL_STATE(6709)] = 148343, - [SMALL_STATE(6710)] = 148392, - [SMALL_STATE(6711)] = 148441, - [SMALL_STATE(6712)] = 148490, - [SMALL_STATE(6713)] = 148539, - [SMALL_STATE(6714)] = 148588, - [SMALL_STATE(6715)] = 148637, - [SMALL_STATE(6716)] = 148686, - [SMALL_STATE(6717)] = 148735, - [SMALL_STATE(6718)] = 148784, - [SMALL_STATE(6719)] = 148833, - [SMALL_STATE(6720)] = 148882, - [SMALL_STATE(6721)] = 148931, - [SMALL_STATE(6722)] = 148980, - [SMALL_STATE(6723)] = 149029, - [SMALL_STATE(6724)] = 149078, - [SMALL_STATE(6725)] = 149127, - [SMALL_STATE(6726)] = 149176, - [SMALL_STATE(6727)] = 149225, - [SMALL_STATE(6728)] = 149274, - [SMALL_STATE(6729)] = 149309, - [SMALL_STATE(6730)] = 149358, - [SMALL_STATE(6731)] = 149407, - [SMALL_STATE(6732)] = 149456, - [SMALL_STATE(6733)] = 149505, - [SMALL_STATE(6734)] = 149554, - [SMALL_STATE(6735)] = 149603, - [SMALL_STATE(6736)] = 149652, - [SMALL_STATE(6737)] = 149701, - [SMALL_STATE(6738)] = 149731, - [SMALL_STATE(6739)] = 149761, - [SMALL_STATE(6740)] = 149791, - [SMALL_STATE(6741)] = 149821, - [SMALL_STATE(6742)] = 149872, - [SMALL_STATE(6743)] = 149921, - [SMALL_STATE(6744)] = 149970, - [SMALL_STATE(6745)] = 150021, - [SMALL_STATE(6746)] = 150072, - [SMALL_STATE(6747)] = 150123, - [SMALL_STATE(6748)] = 150172, - [SMALL_STATE(6749)] = 150221, - [SMALL_STATE(6750)] = 150270, - [SMALL_STATE(6751)] = 150321, - [SMALL_STATE(6752)] = 150372, - [SMALL_STATE(6753)] = 150421, - [SMALL_STATE(6754)] = 150470, - [SMALL_STATE(6755)] = 150519, - [SMALL_STATE(6756)] = 150568, - [SMALL_STATE(6757)] = 150617, - [SMALL_STATE(6758)] = 150666, - [SMALL_STATE(6759)] = 150717, - [SMALL_STATE(6760)] = 150766, - [SMALL_STATE(6761)] = 150815, - [SMALL_STATE(6762)] = 150866, - [SMALL_STATE(6763)] = 150917, - [SMALL_STATE(6764)] = 150968, - [SMALL_STATE(6765)] = 151017, - [SMALL_STATE(6766)] = 151066, - [SMALL_STATE(6767)] = 151115, - [SMALL_STATE(6768)] = 151164, - [SMALL_STATE(6769)] = 151213, - [SMALL_STATE(6770)] = 151264, - [SMALL_STATE(6771)] = 151315, - [SMALL_STATE(6772)] = 151366, - [SMALL_STATE(6773)] = 151415, - [SMALL_STATE(6774)] = 151466, - [SMALL_STATE(6775)] = 151517, - [SMALL_STATE(6776)] = 151566, - [SMALL_STATE(6777)] = 151615, - [SMALL_STATE(6778)] = 151664, - [SMALL_STATE(6779)] = 151713, - [SMALL_STATE(6780)] = 151764, - [SMALL_STATE(6781)] = 151815, - [SMALL_STATE(6782)] = 151864, - [SMALL_STATE(6783)] = 151913, - [SMALL_STATE(6784)] = 151962, - [SMALL_STATE(6785)] = 152011, - [SMALL_STATE(6786)] = 152062, - [SMALL_STATE(6787)] = 152113, - [SMALL_STATE(6788)] = 152162, - [SMALL_STATE(6789)] = 152213, - [SMALL_STATE(6790)] = 152264, - [SMALL_STATE(6791)] = 152315, - [SMALL_STATE(6792)] = 152366, - [SMALL_STATE(6793)] = 152415, - [SMALL_STATE(6794)] = 152464, - [SMALL_STATE(6795)] = 152515, - [SMALL_STATE(6796)] = 152564, - [SMALL_STATE(6797)] = 152613, - [SMALL_STATE(6798)] = 152662, - [SMALL_STATE(6799)] = 152713, - [SMALL_STATE(6800)] = 152762, - [SMALL_STATE(6801)] = 152811, - [SMALL_STATE(6802)] = 152860, - [SMALL_STATE(6803)] = 152909, - [SMALL_STATE(6804)] = 152958, - [SMALL_STATE(6805)] = 153009, - [SMALL_STATE(6806)] = 153058, - [SMALL_STATE(6807)] = 153107, - [SMALL_STATE(6808)] = 153158, - [SMALL_STATE(6809)] = 153207, - [SMALL_STATE(6810)] = 153256, - [SMALL_STATE(6811)] = 153305, - [SMALL_STATE(6812)] = 153354, - [SMALL_STATE(6813)] = 153405, - [SMALL_STATE(6814)] = 153454, - [SMALL_STATE(6815)] = 153503, - [SMALL_STATE(6816)] = 153552, - [SMALL_STATE(6817)] = 153601, - [SMALL_STATE(6818)] = 153650, - [SMALL_STATE(6819)] = 153699, - [SMALL_STATE(6820)] = 153748, - [SMALL_STATE(6821)] = 153797, - [SMALL_STATE(6822)] = 153848, - [SMALL_STATE(6823)] = 153899, - [SMALL_STATE(6824)] = 153950, - [SMALL_STATE(6825)] = 153999, - [SMALL_STATE(6826)] = 154048, - [SMALL_STATE(6827)] = 154097, - [SMALL_STATE(6828)] = 154146, - [SMALL_STATE(6829)] = 154195, - [SMALL_STATE(6830)] = 154244, - [SMALL_STATE(6831)] = 154295, - [SMALL_STATE(6832)] = 154344, - [SMALL_STATE(6833)] = 154393, - [SMALL_STATE(6834)] = 154442, - [SMALL_STATE(6835)] = 154493, - [SMALL_STATE(6836)] = 154542, - [SMALL_STATE(6837)] = 154591, - [SMALL_STATE(6838)] = 154640, - [SMALL_STATE(6839)] = 154689, - [SMALL_STATE(6840)] = 154738, - [SMALL_STATE(6841)] = 154787, - [SMALL_STATE(6842)] = 154836, - [SMALL_STATE(6843)] = 154885, - [SMALL_STATE(6844)] = 154934, - [SMALL_STATE(6845)] = 154983, - [SMALL_STATE(6846)] = 155032, - [SMALL_STATE(6847)] = 155083, - [SMALL_STATE(6848)] = 155134, - [SMALL_STATE(6849)] = 155185, - [SMALL_STATE(6850)] = 155234, - [SMALL_STATE(6851)] = 155283, - [SMALL_STATE(6852)] = 155332, - [SMALL_STATE(6853)] = 155381, - [SMALL_STATE(6854)] = 155430, - [SMALL_STATE(6855)] = 155479, - [SMALL_STATE(6856)] = 155530, - [SMALL_STATE(6857)] = 155579, - [SMALL_STATE(6858)] = 155628, - [SMALL_STATE(6859)] = 155677, - [SMALL_STATE(6860)] = 155726, - [SMALL_STATE(6861)] = 155777, - [SMALL_STATE(6862)] = 155826, - [SMALL_STATE(6863)] = 155875, - [SMALL_STATE(6864)] = 155924, - [SMALL_STATE(6865)] = 155975, - [SMALL_STATE(6866)] = 156024, - [SMALL_STATE(6867)] = 156073, - [SMALL_STATE(6868)] = 156124, - [SMALL_STATE(6869)] = 156173, - [SMALL_STATE(6870)] = 156222, - [SMALL_STATE(6871)] = 156271, - [SMALL_STATE(6872)] = 156320, - [SMALL_STATE(6873)] = 156371, - [SMALL_STATE(6874)] = 156420, - [SMALL_STATE(6875)] = 156471, - [SMALL_STATE(6876)] = 156520, - [SMALL_STATE(6877)] = 156569, - [SMALL_STATE(6878)] = 156618, - [SMALL_STATE(6879)] = 156669, - [SMALL_STATE(6880)] = 156720, - [SMALL_STATE(6881)] = 156771, - [SMALL_STATE(6882)] = 156822, - [SMALL_STATE(6883)] = 156871, - [SMALL_STATE(6884)] = 156920, - [SMALL_STATE(6885)] = 156969, - [SMALL_STATE(6886)] = 157020, - [SMALL_STATE(6887)] = 157071, - [SMALL_STATE(6888)] = 157122, - [SMALL_STATE(6889)] = 157171, - [SMALL_STATE(6890)] = 157222, - [SMALL_STATE(6891)] = 157271, - [SMALL_STATE(6892)] = 157320, - [SMALL_STATE(6893)] = 157369, - [SMALL_STATE(6894)] = 157420, - [SMALL_STATE(6895)] = 157469, - [SMALL_STATE(6896)] = 157518, - [SMALL_STATE(6897)] = 157567, - [SMALL_STATE(6898)] = 157618, - [SMALL_STATE(6899)] = 157667, - [SMALL_STATE(6900)] = 157716, - [SMALL_STATE(6901)] = 157765, - [SMALL_STATE(6902)] = 157814, - [SMALL_STATE(6903)] = 157863, - [SMALL_STATE(6904)] = 157912, - [SMALL_STATE(6905)] = 157961, - [SMALL_STATE(6906)] = 158012, - [SMALL_STATE(6907)] = 158061, - [SMALL_STATE(6908)] = 158110, - [SMALL_STATE(6909)] = 158159, - [SMALL_STATE(6910)] = 158208, - [SMALL_STATE(6911)] = 158257, - [SMALL_STATE(6912)] = 158306, - [SMALL_STATE(6913)] = 158355, - [SMALL_STATE(6914)] = 158406, - [SMALL_STATE(6915)] = 158455, - [SMALL_STATE(6916)] = 158504, - [SMALL_STATE(6917)] = 158555, - [SMALL_STATE(6918)] = 158606, - [SMALL_STATE(6919)] = 158655, - [SMALL_STATE(6920)] = 158706, - [SMALL_STATE(6921)] = 158755, - [SMALL_STATE(6922)] = 158804, - [SMALL_STATE(6923)] = 158853, - [SMALL_STATE(6924)] = 158904, - [SMALL_STATE(6925)] = 158953, - [SMALL_STATE(6926)] = 159002, - [SMALL_STATE(6927)] = 159051, - [SMALL_STATE(6928)] = 159102, - [SMALL_STATE(6929)] = 159151, - [SMALL_STATE(6930)] = 159202, - [SMALL_STATE(6931)] = 159251, - [SMALL_STATE(6932)] = 159302, - [SMALL_STATE(6933)] = 159351, - [SMALL_STATE(6934)] = 159402, - [SMALL_STATE(6935)] = 159453, - [SMALL_STATE(6936)] = 159502, - [SMALL_STATE(6937)] = 159553, - [SMALL_STATE(6938)] = 159602, - [SMALL_STATE(6939)] = 159653, - [SMALL_STATE(6940)] = 159702, - [SMALL_STATE(6941)] = 159751, - [SMALL_STATE(6942)] = 159802, - [SMALL_STATE(6943)] = 159851, - [SMALL_STATE(6944)] = 159900, - [SMALL_STATE(6945)] = 159951, - [SMALL_STATE(6946)] = 160002, - [SMALL_STATE(6947)] = 160051, - [SMALL_STATE(6948)] = 160102, - [SMALL_STATE(6949)] = 160153, - [SMALL_STATE(6950)] = 160204, - [SMALL_STATE(6951)] = 160255, - [SMALL_STATE(6952)] = 160306, - [SMALL_STATE(6953)] = 160357, - [SMALL_STATE(6954)] = 160408, - [SMALL_STATE(6955)] = 160459, - [SMALL_STATE(6956)] = 160510, - [SMALL_STATE(6957)] = 160561, - [SMALL_STATE(6958)] = 160612, - [SMALL_STATE(6959)] = 160663, - [SMALL_STATE(6960)] = 160714, - [SMALL_STATE(6961)] = 160765, - [SMALL_STATE(6962)] = 160814, - [SMALL_STATE(6963)] = 160865, - [SMALL_STATE(6964)] = 160914, - [SMALL_STATE(6965)] = 160965, - [SMALL_STATE(6966)] = 161014, - [SMALL_STATE(6967)] = 161063, - [SMALL_STATE(6968)] = 161114, - [SMALL_STATE(6969)] = 161163, - [SMALL_STATE(6970)] = 161212, - [SMALL_STATE(6971)] = 161263, - [SMALL_STATE(6972)] = 161312, - [SMALL_STATE(6973)] = 161361, - [SMALL_STATE(6974)] = 161412, - [SMALL_STATE(6975)] = 161463, - [SMALL_STATE(6976)] = 161514, - [SMALL_STATE(6977)] = 161565, - [SMALL_STATE(6978)] = 161614, - [SMALL_STATE(6979)] = 161665, - [SMALL_STATE(6980)] = 161714, - [SMALL_STATE(6981)] = 161763, - [SMALL_STATE(6982)] = 161812, - [SMALL_STATE(6983)] = 161861, - [SMALL_STATE(6984)] = 161910, - [SMALL_STATE(6985)] = 161959, - [SMALL_STATE(6986)] = 162008, - [SMALL_STATE(6987)] = 162059, - [SMALL_STATE(6988)] = 162110, - [SMALL_STATE(6989)] = 162161, - [SMALL_STATE(6990)] = 162212, - [SMALL_STATE(6991)] = 162263, - [SMALL_STATE(6992)] = 162314, - [SMALL_STATE(6993)] = 162365, - [SMALL_STATE(6994)] = 162416, - [SMALL_STATE(6995)] = 162467, - [SMALL_STATE(6996)] = 162518, - [SMALL_STATE(6997)] = 162569, - [SMALL_STATE(6998)] = 162620, - [SMALL_STATE(6999)] = 162671, - [SMALL_STATE(7000)] = 162722, - [SMALL_STATE(7001)] = 162773, - [SMALL_STATE(7002)] = 162824, - [SMALL_STATE(7003)] = 162875, - [SMALL_STATE(7004)] = 162926, - [SMALL_STATE(7005)] = 162977, - [SMALL_STATE(7006)] = 163028, - [SMALL_STATE(7007)] = 163079, - [SMALL_STATE(7008)] = 163130, - [SMALL_STATE(7009)] = 163181, - [SMALL_STATE(7010)] = 163232, - [SMALL_STATE(7011)] = 163283, - [SMALL_STATE(7012)] = 163334, - [SMALL_STATE(7013)] = 163385, - [SMALL_STATE(7014)] = 163436, - [SMALL_STATE(7015)] = 163487, - [SMALL_STATE(7016)] = 163538, - [SMALL_STATE(7017)] = 163589, - [SMALL_STATE(7018)] = 163640, - [SMALL_STATE(7019)] = 163691, - [SMALL_STATE(7020)] = 163742, - [SMALL_STATE(7021)] = 163793, - [SMALL_STATE(7022)] = 163844, - [SMALL_STATE(7023)] = 163895, - [SMALL_STATE(7024)] = 163946, - [SMALL_STATE(7025)] = 163997, - [SMALL_STATE(7026)] = 164048, - [SMALL_STATE(7027)] = 164099, - [SMALL_STATE(7028)] = 164148, - [SMALL_STATE(7029)] = 164199, - [SMALL_STATE(7030)] = 164248, - [SMALL_STATE(7031)] = 164299, - [SMALL_STATE(7032)] = 164350, - [SMALL_STATE(7033)] = 164401, - [SMALL_STATE(7034)] = 164450, - [SMALL_STATE(7035)] = 164499, - [SMALL_STATE(7036)] = 164550, - [SMALL_STATE(7037)] = 164601, - [SMALL_STATE(7038)] = 164652, - [SMALL_STATE(7039)] = 164703, - [SMALL_STATE(7040)] = 164754, - [SMALL_STATE(7041)] = 164805, - [SMALL_STATE(7042)] = 164854, - [SMALL_STATE(7043)] = 164903, - [SMALL_STATE(7044)] = 164954, - [SMALL_STATE(7045)] = 165003, - [SMALL_STATE(7046)] = 165052, - [SMALL_STATE(7047)] = 165103, - [SMALL_STATE(7048)] = 165154, - [SMALL_STATE(7049)] = 165205, - [SMALL_STATE(7050)] = 165254, - [SMALL_STATE(7051)] = 165303, - [SMALL_STATE(7052)] = 165354, - [SMALL_STATE(7053)] = 165403, - [SMALL_STATE(7054)] = 165454, - [SMALL_STATE(7055)] = 165505, - [SMALL_STATE(7056)] = 165554, - [SMALL_STATE(7057)] = 165603, - [SMALL_STATE(7058)] = 165654, - [SMALL_STATE(7059)] = 165705, - [SMALL_STATE(7060)] = 165756, - [SMALL_STATE(7061)] = 165805, - [SMALL_STATE(7062)] = 165856, - [SMALL_STATE(7063)] = 165907, - [SMALL_STATE(7064)] = 165958, - [SMALL_STATE(7065)] = 166009, - [SMALL_STATE(7066)] = 166060, - [SMALL_STATE(7067)] = 166111, - [SMALL_STATE(7068)] = 166162, - [SMALL_STATE(7069)] = 166213, - [SMALL_STATE(7070)] = 166264, - [SMALL_STATE(7071)] = 166315, - [SMALL_STATE(7072)] = 166366, - [SMALL_STATE(7073)] = 166417, - [SMALL_STATE(7074)] = 166468, - [SMALL_STATE(7075)] = 166519, - [SMALL_STATE(7076)] = 166570, - [SMALL_STATE(7077)] = 166621, - [SMALL_STATE(7078)] = 166672, - [SMALL_STATE(7079)] = 166723, - [SMALL_STATE(7080)] = 166774, - [SMALL_STATE(7081)] = 166825, - [SMALL_STATE(7082)] = 166876, - [SMALL_STATE(7083)] = 166927, - [SMALL_STATE(7084)] = 166978, - [SMALL_STATE(7085)] = 167029, - [SMALL_STATE(7086)] = 167080, - [SMALL_STATE(7087)] = 167131, - [SMALL_STATE(7088)] = 167182, - [SMALL_STATE(7089)] = 167233, - [SMALL_STATE(7090)] = 167284, - [SMALL_STATE(7091)] = 167335, - [SMALL_STATE(7092)] = 167386, - [SMALL_STATE(7093)] = 167437, - [SMALL_STATE(7094)] = 167488, - [SMALL_STATE(7095)] = 167539, - [SMALL_STATE(7096)] = 167590, - [SMALL_STATE(7097)] = 167641, - [SMALL_STATE(7098)] = 167692, - [SMALL_STATE(7099)] = 167743, - [SMALL_STATE(7100)] = 167794, - [SMALL_STATE(7101)] = 167845, - [SMALL_STATE(7102)] = 167896, - [SMALL_STATE(7103)] = 167947, - [SMALL_STATE(7104)] = 167998, - [SMALL_STATE(7105)] = 168049, - [SMALL_STATE(7106)] = 168100, - [SMALL_STATE(7107)] = 168151, - [SMALL_STATE(7108)] = 168202, - [SMALL_STATE(7109)] = 168253, - [SMALL_STATE(7110)] = 168304, - [SMALL_STATE(7111)] = 168355, - [SMALL_STATE(7112)] = 168406, - [SMALL_STATE(7113)] = 168457, - [SMALL_STATE(7114)] = 168508, - [SMALL_STATE(7115)] = 168559, - [SMALL_STATE(7116)] = 168610, - [SMALL_STATE(7117)] = 168661, - [SMALL_STATE(7118)] = 168712, - [SMALL_STATE(7119)] = 168763, - [SMALL_STATE(7120)] = 168814, - [SMALL_STATE(7121)] = 168865, - [SMALL_STATE(7122)] = 168916, - [SMALL_STATE(7123)] = 168967, - [SMALL_STATE(7124)] = 169018, - [SMALL_STATE(7125)] = 169069, - [SMALL_STATE(7126)] = 169120, - [SMALL_STATE(7127)] = 169171, - [SMALL_STATE(7128)] = 169222, - [SMALL_STATE(7129)] = 169273, - [SMALL_STATE(7130)] = 169321, - [SMALL_STATE(7131)] = 169365, - [SMALL_STATE(7132)] = 169413, - [SMALL_STATE(7133)] = 169461, - [SMALL_STATE(7134)] = 169509, - [SMALL_STATE(7135)] = 169553, - [SMALL_STATE(7136)] = 169597, - [SMALL_STATE(7137)] = 169641, - [SMALL_STATE(7138)] = 169685, - [SMALL_STATE(7139)] = 169729, - [SMALL_STATE(7140)] = 169773, - [SMALL_STATE(7141)] = 169817, - [SMALL_STATE(7142)] = 169861, - [SMALL_STATE(7143)] = 169905, - [SMALL_STATE(7144)] = 169949, - [SMALL_STATE(7145)] = 169997, - [SMALL_STATE(7146)] = 170045, - [SMALL_STATE(7147)] = 170089, - [SMALL_STATE(7148)] = 170133, - [SMALL_STATE(7149)] = 170177, - [SMALL_STATE(7150)] = 170221, - [SMALL_STATE(7151)] = 170265, - [SMALL_STATE(7152)] = 170309, - [SMALL_STATE(7153)] = 170353, - [SMALL_STATE(7154)] = 170397, - [SMALL_STATE(7155)] = 170445, - [SMALL_STATE(7156)] = 170489, - [SMALL_STATE(7157)] = 170533, - [SMALL_STATE(7158)] = 170581, - [SMALL_STATE(7159)] = 170625, - [SMALL_STATE(7160)] = 170669, - [SMALL_STATE(7161)] = 170713, - [SMALL_STATE(7162)] = 170757, - [SMALL_STATE(7163)] = 170805, - [SMALL_STATE(7164)] = 170849, - [SMALL_STATE(7165)] = 170887, - [SMALL_STATE(7166)] = 170931, - [SMALL_STATE(7167)] = 170975, - [SMALL_STATE(7168)] = 171019, - [SMALL_STATE(7169)] = 171049, - [SMALL_STATE(7170)] = 171093, - [SMALL_STATE(7171)] = 171129, - [SMALL_STATE(7172)] = 171173, - [SMALL_STATE(7173)] = 171221, - [SMALL_STATE(7174)] = 171265, - [SMALL_STATE(7175)] = 171297, - [SMALL_STATE(7176)] = 171341, - [SMALL_STATE(7177)] = 171385, - [SMALL_STATE(7178)] = 171429, - [SMALL_STATE(7179)] = 171477, - [SMALL_STATE(7180)] = 171521, - [SMALL_STATE(7181)] = 171565, - [SMALL_STATE(7182)] = 171609, - [SMALL_STATE(7183)] = 171653, - [SMALL_STATE(7184)] = 171681, - [SMALL_STATE(7185)] = 171717, - [SMALL_STATE(7186)] = 171761, - [SMALL_STATE(7187)] = 171805, - [SMALL_STATE(7188)] = 171849, - [SMALL_STATE(7189)] = 171893, - [SMALL_STATE(7190)] = 171937, - [SMALL_STATE(7191)] = 171985, - [SMALL_STATE(7192)] = 172029, - [SMALL_STATE(7193)] = 172073, - [SMALL_STATE(7194)] = 172117, - [SMALL_STATE(7195)] = 172161, - [SMALL_STATE(7196)] = 172209, - [SMALL_STATE(7197)] = 172253, - [SMALL_STATE(7198)] = 172291, - [SMALL_STATE(7199)] = 172335, - [SMALL_STATE(7200)] = 172379, - [SMALL_STATE(7201)] = 172423, - [SMALL_STATE(7202)] = 172471, - [SMALL_STATE(7203)] = 172515, - [SMALL_STATE(7204)] = 172559, - [SMALL_STATE(7205)] = 172607, - [SMALL_STATE(7206)] = 172650, - [SMALL_STATE(7207)] = 172681, - [SMALL_STATE(7208)] = 172716, - [SMALL_STATE(7209)] = 172751, - [SMALL_STATE(7210)] = 172778, - [SMALL_STATE(7211)] = 172809, - [SMALL_STATE(7212)] = 172836, - [SMALL_STATE(7213)] = 172867, - [SMALL_STATE(7214)] = 172898, - [SMALL_STATE(7215)] = 172933, - [SMALL_STATE(7216)] = 172964, - [SMALL_STATE(7217)] = 172999, - [SMALL_STATE(7218)] = 173034, - [SMALL_STATE(7219)] = 173074, - [SMALL_STATE(7220)] = 173102, - [SMALL_STATE(7221)] = 173128, - [SMALL_STATE(7222)] = 173168, - [SMALL_STATE(7223)] = 173208, - [SMALL_STATE(7224)] = 173248, - [SMALL_STATE(7225)] = 173288, - [SMALL_STATE(7226)] = 173314, - [SMALL_STATE(7227)] = 173354, - [SMALL_STATE(7228)] = 173394, - [SMALL_STATE(7229)] = 173434, - [SMALL_STATE(7230)] = 173474, - [SMALL_STATE(7231)] = 173500, - [SMALL_STATE(7232)] = 173540, - [SMALL_STATE(7233)] = 173580, - [SMALL_STATE(7234)] = 173620, - [SMALL_STATE(7235)] = 173660, - [SMALL_STATE(7236)] = 173700, - [SMALL_STATE(7237)] = 173740, - [SMALL_STATE(7238)] = 173780, - [SMALL_STATE(7239)] = 173820, - [SMALL_STATE(7240)] = 173860, - [SMALL_STATE(7241)] = 173900, - [SMALL_STATE(7242)] = 173940, - [SMALL_STATE(7243)] = 173970, - [SMALL_STATE(7244)] = 174010, - [SMALL_STATE(7245)] = 174050, - [SMALL_STATE(7246)] = 174090, - [SMALL_STATE(7247)] = 174130, - [SMALL_STATE(7248)] = 174156, - [SMALL_STATE(7249)] = 174196, - [SMALL_STATE(7250)] = 174236, - [SMALL_STATE(7251)] = 174276, - [SMALL_STATE(7252)] = 174316, - [SMALL_STATE(7253)] = 174356, - [SMALL_STATE(7254)] = 174396, - [SMALL_STATE(7255)] = 174436, - [SMALL_STATE(7256)] = 174476, - [SMALL_STATE(7257)] = 174516, - [SMALL_STATE(7258)] = 174556, - [SMALL_STATE(7259)] = 174596, - [SMALL_STATE(7260)] = 174636, - [SMALL_STATE(7261)] = 174676, - [SMALL_STATE(7262)] = 174716, - [SMALL_STATE(7263)] = 174756, - [SMALL_STATE(7264)] = 174796, - [SMALL_STATE(7265)] = 174836, - [SMALL_STATE(7266)] = 174876, - [SMALL_STATE(7267)] = 174916, - [SMALL_STATE(7268)] = 174956, - [SMALL_STATE(7269)] = 174996, - [SMALL_STATE(7270)] = 175036, - [SMALL_STATE(7271)] = 175064, - [SMALL_STATE(7272)] = 175094, - [SMALL_STATE(7273)] = 175134, - [SMALL_STATE(7274)] = 175174, - [SMALL_STATE(7275)] = 175199, - [SMALL_STATE(7276)] = 175238, - [SMALL_STATE(7277)] = 175275, - [SMALL_STATE(7278)] = 175314, - [SMALL_STATE(7279)] = 175339, - [SMALL_STATE(7280)] = 175364, - [SMALL_STATE(7281)] = 175401, - [SMALL_STATE(7282)] = 175430, - [SMALL_STATE(7283)] = 175467, - [SMALL_STATE(7284)] = 175504, - [SMALL_STATE(7285)] = 175541, - [SMALL_STATE(7286)] = 175580, - [SMALL_STATE(7287)] = 175617, - [SMALL_STATE(7288)] = 175654, - [SMALL_STATE(7289)] = 175679, - [SMALL_STATE(7290)] = 175716, - [SMALL_STATE(7291)] = 175741, - [SMALL_STATE(7292)] = 175778, - [SMALL_STATE(7293)] = 175815, - [SMALL_STATE(7294)] = 175852, - [SMALL_STATE(7295)] = 175889, - [SMALL_STATE(7296)] = 175914, - [SMALL_STATE(7297)] = 175953, - [SMALL_STATE(7298)] = 175990, - [SMALL_STATE(7299)] = 176029, - [SMALL_STATE(7300)] = 176066, - [SMALL_STATE(7301)] = 176091, - [SMALL_STATE(7302)] = 176130, - [SMALL_STATE(7303)] = 176169, - [SMALL_STATE(7304)] = 176206, - [SMALL_STATE(7305)] = 176245, - [SMALL_STATE(7306)] = 176282, - [SMALL_STATE(7307)] = 176321, - [SMALL_STATE(7308)] = 176360, - [SMALL_STATE(7309)] = 176385, - [SMALL_STATE(7310)] = 176422, - [SMALL_STATE(7311)] = 176459, - [SMALL_STATE(7312)] = 176496, - [SMALL_STATE(7313)] = 176533, - [SMALL_STATE(7314)] = 176570, - [SMALL_STATE(7315)] = 176601, - [SMALL_STATE(7316)] = 176638, - [SMALL_STATE(7317)] = 176667, - [SMALL_STATE(7318)] = 176704, - [SMALL_STATE(7319)] = 176743, - [SMALL_STATE(7320)] = 176780, - [SMALL_STATE(7321)] = 176817, - [SMALL_STATE(7322)] = 176854, - [SMALL_STATE(7323)] = 176891, - [SMALL_STATE(7324)] = 176928, - [SMALL_STATE(7325)] = 176965, - [SMALL_STATE(7326)] = 177002, - [SMALL_STATE(7327)] = 177031, - [SMALL_STATE(7328)] = 177060, - [SMALL_STATE(7329)] = 177097, - [SMALL_STATE(7330)] = 177134, - [SMALL_STATE(7331)] = 177171, - [SMALL_STATE(7332)] = 177208, - [SMALL_STATE(7333)] = 177247, - [SMALL_STATE(7334)] = 177272, - [SMALL_STATE(7335)] = 177311, - [SMALL_STATE(7336)] = 177336, - [SMALL_STATE(7337)] = 177365, - [SMALL_STATE(7338)] = 177402, - [SMALL_STATE(7339)] = 177427, - [SMALL_STATE(7340)] = 177464, - [SMALL_STATE(7341)] = 177501, - [SMALL_STATE(7342)] = 177538, - [SMALL_STATE(7343)] = 177575, - [SMALL_STATE(7344)] = 177612, - [SMALL_STATE(7345)] = 177649, - [SMALL_STATE(7346)] = 177686, - [SMALL_STATE(7347)] = 177723, - [SMALL_STATE(7348)] = 177760, - [SMALL_STATE(7349)] = 177797, - [SMALL_STATE(7350)] = 177834, - [SMALL_STATE(7351)] = 177871, - [SMALL_STATE(7352)] = 177896, - [SMALL_STATE(7353)] = 177923, - [SMALL_STATE(7354)] = 177959, - [SMALL_STATE(7355)] = 177995, - [SMALL_STATE(7356)] = 178027, - [SMALL_STATE(7357)] = 178063, - [SMALL_STATE(7358)] = 178099, - [SMALL_STATE(7359)] = 178135, - [SMALL_STATE(7360)] = 178163, - [SMALL_STATE(7361)] = 178199, - [SMALL_STATE(7362)] = 178231, - [SMALL_STATE(7363)] = 178267, - [SMALL_STATE(7364)] = 178303, - [SMALL_STATE(7365)] = 178339, - [SMALL_STATE(7366)] = 178371, - [SMALL_STATE(7367)] = 178403, - [SMALL_STATE(7368)] = 178435, - [SMALL_STATE(7369)] = 178467, - [SMALL_STATE(7370)] = 178499, - [SMALL_STATE(7371)] = 178535, - [SMALL_STATE(7372)] = 178571, - [SMALL_STATE(7373)] = 178603, - [SMALL_STATE(7374)] = 178639, - [SMALL_STATE(7375)] = 178675, - [SMALL_STATE(7376)] = 178711, - [SMALL_STATE(7377)] = 178747, - [SMALL_STATE(7378)] = 178783, - [SMALL_STATE(7379)] = 178819, - [SMALL_STATE(7380)] = 178855, - [SMALL_STATE(7381)] = 178887, - [SMALL_STATE(7382)] = 178923, - [SMALL_STATE(7383)] = 178959, - [SMALL_STATE(7384)] = 178995, - [SMALL_STATE(7385)] = 179027, - [SMALL_STATE(7386)] = 179059, - [SMALL_STATE(7387)] = 179091, - [SMALL_STATE(7388)] = 179123, - [SMALL_STATE(7389)] = 179159, - [SMALL_STATE(7390)] = 179191, - [SMALL_STATE(7391)] = 179223, - [SMALL_STATE(7392)] = 179259, - [SMALL_STATE(7393)] = 179295, - [SMALL_STATE(7394)] = 179327, - [SMALL_STATE(7395)] = 179359, - [SMALL_STATE(7396)] = 179395, - [SMALL_STATE(7397)] = 179431, - [SMALL_STATE(7398)] = 179463, - [SMALL_STATE(7399)] = 179491, - [SMALL_STATE(7400)] = 179527, - [SMALL_STATE(7401)] = 179559, - [SMALL_STATE(7402)] = 179595, - [SMALL_STATE(7403)] = 179631, - [SMALL_STATE(7404)] = 179663, - [SMALL_STATE(7405)] = 179695, - [SMALL_STATE(7406)] = 179731, - [SMALL_STATE(7407)] = 179767, - [SMALL_STATE(7408)] = 179803, - [SMALL_STATE(7409)] = 179835, - [SMALL_STATE(7410)] = 179867, - [SMALL_STATE(7411)] = 179899, - [SMALL_STATE(7412)] = 179931, - [SMALL_STATE(7413)] = 179963, - [SMALL_STATE(7414)] = 179995, - [SMALL_STATE(7415)] = 180031, - [SMALL_STATE(7416)] = 180067, - [SMALL_STATE(7417)] = 180103, - [SMALL_STATE(7418)] = 180139, - [SMALL_STATE(7419)] = 180175, - [SMALL_STATE(7420)] = 180211, - [SMALL_STATE(7421)] = 180243, - [SMALL_STATE(7422)] = 180275, - [SMALL_STATE(7423)] = 180311, - [SMALL_STATE(7424)] = 180347, - [SMALL_STATE(7425)] = 180379, - [SMALL_STATE(7426)] = 180411, - [SMALL_STATE(7427)] = 180443, - [SMALL_STATE(7428)] = 180479, - [SMALL_STATE(7429)] = 180511, - [SMALL_STATE(7430)] = 180543, - [SMALL_STATE(7431)] = 180579, - [SMALL_STATE(7432)] = 180611, - [SMALL_STATE(7433)] = 180647, - [SMALL_STATE(7434)] = 180683, - [SMALL_STATE(7435)] = 180719, - [SMALL_STATE(7436)] = 180755, - [SMALL_STATE(7437)] = 180791, - [SMALL_STATE(7438)] = 180827, - [SMALL_STATE(7439)] = 180859, - [SMALL_STATE(7440)] = 180891, - [SMALL_STATE(7441)] = 180923, - [SMALL_STATE(7442)] = 180959, - [SMALL_STATE(7443)] = 180991, - [SMALL_STATE(7444)] = 181015, - [SMALL_STATE(7445)] = 181051, - [SMALL_STATE(7446)] = 181083, - [SMALL_STATE(7447)] = 181119, - [SMALL_STATE(7448)] = 181155, - [SMALL_STATE(7449)] = 181191, - [SMALL_STATE(7450)] = 181227, - [SMALL_STATE(7451)] = 181263, - [SMALL_STATE(7452)] = 181299, - [SMALL_STATE(7453)] = 181335, - [SMALL_STATE(7454)] = 181367, - [SMALL_STATE(7455)] = 181403, - [SMALL_STATE(7456)] = 181439, - [SMALL_STATE(7457)] = 181475, - [SMALL_STATE(7458)] = 181507, - [SMALL_STATE(7459)] = 181543, - [SMALL_STATE(7460)] = 181579, - [SMALL_STATE(7461)] = 181615, - [SMALL_STATE(7462)] = 181651, - [SMALL_STATE(7463)] = 181675, - [SMALL_STATE(7464)] = 181711, - [SMALL_STATE(7465)] = 181747, - [SMALL_STATE(7466)] = 181779, - [SMALL_STATE(7467)] = 181815, - [SMALL_STATE(7468)] = 181847, - [SMALL_STATE(7469)] = 181883, - [SMALL_STATE(7470)] = 181915, - [SMALL_STATE(7471)] = 181951, - [SMALL_STATE(7472)] = 181987, - [SMALL_STATE(7473)] = 182023, - [SMALL_STATE(7474)] = 182059, - [SMALL_STATE(7475)] = 182095, - [SMALL_STATE(7476)] = 182131, - [SMALL_STATE(7477)] = 182163, - [SMALL_STATE(7478)] = 182199, - [SMALL_STATE(7479)] = 182231, - [SMALL_STATE(7480)] = 182255, - [SMALL_STATE(7481)] = 182287, - [SMALL_STATE(7482)] = 182319, - [SMALL_STATE(7483)] = 182355, - [SMALL_STATE(7484)] = 182387, - [SMALL_STATE(7485)] = 182423, - [SMALL_STATE(7486)] = 182459, - [SMALL_STATE(7487)] = 182495, - [SMALL_STATE(7488)] = 182527, - [SMALL_STATE(7489)] = 182563, - [SMALL_STATE(7490)] = 182599, - [SMALL_STATE(7491)] = 182635, - [SMALL_STATE(7492)] = 182671, - [SMALL_STATE(7493)] = 182707, - [SMALL_STATE(7494)] = 182743, - [SMALL_STATE(7495)] = 182779, - [SMALL_STATE(7496)] = 182815, - [SMALL_STATE(7497)] = 182851, - [SMALL_STATE(7498)] = 182883, - [SMALL_STATE(7499)] = 182919, - [SMALL_STATE(7500)] = 182955, - [SMALL_STATE(7501)] = 182993, - [SMALL_STATE(7502)] = 183021, - [SMALL_STATE(7503)] = 183057, - [SMALL_STATE(7504)] = 183093, - [SMALL_STATE(7505)] = 183125, - [SMALL_STATE(7506)] = 183161, - [SMALL_STATE(7507)] = 183193, - [SMALL_STATE(7508)] = 183225, - [SMALL_STATE(7509)] = 183261, - [SMALL_STATE(7510)] = 183293, - [SMALL_STATE(7511)] = 183329, - [SMALL_STATE(7512)] = 183365, - [SMALL_STATE(7513)] = 183397, - [SMALL_STATE(7514)] = 183429, - [SMALL_STATE(7515)] = 183465, - [SMALL_STATE(7516)] = 183501, - [SMALL_STATE(7517)] = 183533, - [SMALL_STATE(7518)] = 183565, - [SMALL_STATE(7519)] = 183601, - [SMALL_STATE(7520)] = 183637, - [SMALL_STATE(7521)] = 183669, - [SMALL_STATE(7522)] = 183705, - [SMALL_STATE(7523)] = 183737, - [SMALL_STATE(7524)] = 183773, - [SMALL_STATE(7525)] = 183809, - [SMALL_STATE(7526)] = 183845, - [SMALL_STATE(7527)] = 183881, - [SMALL_STATE(7528)] = 183917, - [SMALL_STATE(7529)] = 183953, - [SMALL_STATE(7530)] = 183985, - [SMALL_STATE(7531)] = 184021, - [SMALL_STATE(7532)] = 184057, - [SMALL_STATE(7533)] = 184089, - [SMALL_STATE(7534)] = 184121, - [SMALL_STATE(7535)] = 184157, - [SMALL_STATE(7536)] = 184189, - [SMALL_STATE(7537)] = 184221, - [SMALL_STATE(7538)] = 184257, - [SMALL_STATE(7539)] = 184289, - [SMALL_STATE(7540)] = 184321, - [SMALL_STATE(7541)] = 184357, - [SMALL_STATE(7542)] = 184389, - [SMALL_STATE(7543)] = 184425, - [SMALL_STATE(7544)] = 184461, - [SMALL_STATE(7545)] = 184497, - [SMALL_STATE(7546)] = 184533, - [SMALL_STATE(7547)] = 184565, - [SMALL_STATE(7548)] = 184597, - [SMALL_STATE(7549)] = 184629, - [SMALL_STATE(7550)] = 184653, - [SMALL_STATE(7551)] = 184685, - [SMALL_STATE(7552)] = 184721, - [SMALL_STATE(7553)] = 184751, - [SMALL_STATE(7554)] = 184787, - [SMALL_STATE(7555)] = 184819, - [SMALL_STATE(7556)] = 184851, - [SMALL_STATE(7557)] = 184887, - [SMALL_STATE(7558)] = 184923, - [SMALL_STATE(7559)] = 184959, - [SMALL_STATE(7560)] = 184995, - [SMALL_STATE(7561)] = 185031, - [SMALL_STATE(7562)] = 185067, - [SMALL_STATE(7563)] = 185103, - [SMALL_STATE(7564)] = 185139, - [SMALL_STATE(7565)] = 185175, - [SMALL_STATE(7566)] = 185211, - [SMALL_STATE(7567)] = 185235, - [SMALL_STATE(7568)] = 185271, - [SMALL_STATE(7569)] = 185307, - [SMALL_STATE(7570)] = 185343, - [SMALL_STATE(7571)] = 185381, - [SMALL_STATE(7572)] = 185405, - [SMALL_STATE(7573)] = 185437, - [SMALL_STATE(7574)] = 185473, - [SMALL_STATE(7575)] = 185509, - [SMALL_STATE(7576)] = 185545, - [SMALL_STATE(7577)] = 185577, - [SMALL_STATE(7578)] = 185613, - [SMALL_STATE(7579)] = 185645, - [SMALL_STATE(7580)] = 185681, - [SMALL_STATE(7581)] = 185717, - [SMALL_STATE(7582)] = 185745, - [SMALL_STATE(7583)] = 185781, - [SMALL_STATE(7584)] = 185817, - [SMALL_STATE(7585)] = 185853, - [SMALL_STATE(7586)] = 185889, - [SMALL_STATE(7587)] = 185925, - [SMALL_STATE(7588)] = 185949, - [SMALL_STATE(7589)] = 185985, - [SMALL_STATE(7590)] = 186021, - [SMALL_STATE(7591)] = 186053, - [SMALL_STATE(7592)] = 186089, - [SMALL_STATE(7593)] = 186125, - [SMALL_STATE(7594)] = 186159, - [SMALL_STATE(7595)] = 186195, - [SMALL_STATE(7596)] = 186227, - [SMALL_STATE(7597)] = 186263, - [SMALL_STATE(7598)] = 186298, - [SMALL_STATE(7599)] = 186333, - [SMALL_STATE(7600)] = 186368, - [SMALL_STATE(7601)] = 186401, - [SMALL_STATE(7602)] = 186436, - [SMALL_STATE(7603)] = 186471, - [SMALL_STATE(7604)] = 186506, - [SMALL_STATE(7605)] = 186541, - [SMALL_STATE(7606)] = 186574, - [SMALL_STATE(7607)] = 186609, - [SMALL_STATE(7608)] = 186644, - [SMALL_STATE(7609)] = 186677, - [SMALL_STATE(7610)] = 186710, - [SMALL_STATE(7611)] = 186745, - [SMALL_STATE(7612)] = 186778, - [SMALL_STATE(7613)] = 186813, - [SMALL_STATE(7614)] = 186848, - [SMALL_STATE(7615)] = 186871, - [SMALL_STATE(7616)] = 186906, - [SMALL_STATE(7617)] = 186939, - [SMALL_STATE(7618)] = 186974, - [SMALL_STATE(7619)] = 187007, - [SMALL_STATE(7620)] = 187040, - [SMALL_STATE(7621)] = 187075, - [SMALL_STATE(7622)] = 187098, - [SMALL_STATE(7623)] = 187133, - [SMALL_STATE(7624)] = 187168, - [SMALL_STATE(7625)] = 187201, - [SMALL_STATE(7626)] = 187234, - [SMALL_STATE(7627)] = 187267, - [SMALL_STATE(7628)] = 187302, - [SMALL_STATE(7629)] = 187337, - [SMALL_STATE(7630)] = 187372, - [SMALL_STATE(7631)] = 187407, - [SMALL_STATE(7632)] = 187442, - [SMALL_STATE(7633)] = 187477, - [SMALL_STATE(7634)] = 187512, - [SMALL_STATE(7635)] = 187547, - [SMALL_STATE(7636)] = 187570, - [SMALL_STATE(7637)] = 187605, - [SMALL_STATE(7638)] = 187640, - [SMALL_STATE(7639)] = 187673, - [SMALL_STATE(7640)] = 187706, - [SMALL_STATE(7641)] = 187739, - [SMALL_STATE(7642)] = 187772, - [SMALL_STATE(7643)] = 187807, - [SMALL_STATE(7644)] = 187830, - [SMALL_STATE(7645)] = 187863, - [SMALL_STATE(7646)] = 187898, - [SMALL_STATE(7647)] = 187931, - [SMALL_STATE(7648)] = 187966, - [SMALL_STATE(7649)] = 188001, - [SMALL_STATE(7650)] = 188036, - [SMALL_STATE(7651)] = 188071, - [SMALL_STATE(7652)] = 188104, - [SMALL_STATE(7653)] = 188139, - [SMALL_STATE(7654)] = 188172, - [SMALL_STATE(7655)] = 188207, - [SMALL_STATE(7656)] = 188240, - [SMALL_STATE(7657)] = 188275, - [SMALL_STATE(7658)] = 188308, - [SMALL_STATE(7659)] = 188343, - [SMALL_STATE(7660)] = 188378, - [SMALL_STATE(7661)] = 188413, - [SMALL_STATE(7662)] = 188448, - [SMALL_STATE(7663)] = 188483, - [SMALL_STATE(7664)] = 188518, - [SMALL_STATE(7665)] = 188553, - [SMALL_STATE(7666)] = 188588, - [SMALL_STATE(7667)] = 188621, - [SMALL_STATE(7668)] = 188656, - [SMALL_STATE(7669)] = 188679, - [SMALL_STATE(7670)] = 188714, - [SMALL_STATE(7671)] = 188747, - [SMALL_STATE(7672)] = 188782, - [SMALL_STATE(7673)] = 188817, - [SMALL_STATE(7674)] = 188840, - [SMALL_STATE(7675)] = 188863, - [SMALL_STATE(7676)] = 188898, - [SMALL_STATE(7677)] = 188933, - [SMALL_STATE(7678)] = 188966, - [SMALL_STATE(7679)] = 189001, - [SMALL_STATE(7680)] = 189034, - [SMALL_STATE(7681)] = 189069, - [SMALL_STATE(7682)] = 189104, - [SMALL_STATE(7683)] = 189139, - [SMALL_STATE(7684)] = 189174, - [SMALL_STATE(7685)] = 189209, - [SMALL_STATE(7686)] = 189242, - [SMALL_STATE(7687)] = 189277, - [SMALL_STATE(7688)] = 189312, - [SMALL_STATE(7689)] = 189345, - [SMALL_STATE(7690)] = 189378, - [SMALL_STATE(7691)] = 189411, - [SMALL_STATE(7692)] = 189444, - [SMALL_STATE(7693)] = 189477, - [SMALL_STATE(7694)] = 189510, - [SMALL_STATE(7695)] = 189545, - [SMALL_STATE(7696)] = 189580, - [SMALL_STATE(7697)] = 189615, - [SMALL_STATE(7698)] = 189650, - [SMALL_STATE(7699)] = 189685, - [SMALL_STATE(7700)] = 189720, - [SMALL_STATE(7701)] = 189755, - [SMALL_STATE(7702)] = 189790, - [SMALL_STATE(7703)] = 189813, - [SMALL_STATE(7704)] = 189846, - [SMALL_STATE(7705)] = 189881, - [SMALL_STATE(7706)] = 189916, - [SMALL_STATE(7707)] = 189951, - [SMALL_STATE(7708)] = 189984, - [SMALL_STATE(7709)] = 190017, - [SMALL_STATE(7710)] = 190050, - [SMALL_STATE(7711)] = 190085, - [SMALL_STATE(7712)] = 190120, - [SMALL_STATE(7713)] = 190155, - [SMALL_STATE(7714)] = 190188, - [SMALL_STATE(7715)] = 190221, - [SMALL_STATE(7716)] = 190254, - [SMALL_STATE(7717)] = 190289, - [SMALL_STATE(7718)] = 190324, - [SMALL_STATE(7719)] = 190357, - [SMALL_STATE(7720)] = 190390, - [SMALL_STATE(7721)] = 190425, - [SMALL_STATE(7722)] = 190458, - [SMALL_STATE(7723)] = 190493, - [SMALL_STATE(7724)] = 190526, - [SMALL_STATE(7725)] = 190559, - [SMALL_STATE(7726)] = 190592, - [SMALL_STATE(7727)] = 190625, - [SMALL_STATE(7728)] = 190660, - [SMALL_STATE(7729)] = 190695, - [SMALL_STATE(7730)] = 190728, - [SMALL_STATE(7731)] = 190763, - [SMALL_STATE(7732)] = 190798, - [SMALL_STATE(7733)] = 190833, - [SMALL_STATE(7734)] = 190868, - [SMALL_STATE(7735)] = 190901, - [SMALL_STATE(7736)] = 190934, - [SMALL_STATE(7737)] = 190967, - [SMALL_STATE(7738)] = 191002, - [SMALL_STATE(7739)] = 191035, - [SMALL_STATE(7740)] = 191064, - [SMALL_STATE(7741)] = 191091, - [SMALL_STATE(7742)] = 191124, - [SMALL_STATE(7743)] = 191159, - [SMALL_STATE(7744)] = 191194, - [SMALL_STATE(7745)] = 191229, - [SMALL_STATE(7746)] = 191264, - [SMALL_STATE(7747)] = 191299, - [SMALL_STATE(7748)] = 191334, - [SMALL_STATE(7749)] = 191369, - [SMALL_STATE(7750)] = 191404, - [SMALL_STATE(7751)] = 191437, - [SMALL_STATE(7752)] = 191472, - [SMALL_STATE(7753)] = 191507, - [SMALL_STATE(7754)] = 191542, - [SMALL_STATE(7755)] = 191577, - [SMALL_STATE(7756)] = 191610, - [SMALL_STATE(7757)] = 191643, - [SMALL_STATE(7758)] = 191676, - [SMALL_STATE(7759)] = 191711, - [SMALL_STATE(7760)] = 191746, - [SMALL_STATE(7761)] = 191781, - [SMALL_STATE(7762)] = 191816, - [SMALL_STATE(7763)] = 191851, - [SMALL_STATE(7764)] = 191884, - [SMALL_STATE(7765)] = 191919, - [SMALL_STATE(7766)] = 191952, - [SMALL_STATE(7767)] = 191985, - [SMALL_STATE(7768)] = 192020, - [SMALL_STATE(7769)] = 192053, - [SMALL_STATE(7770)] = 192086, - [SMALL_STATE(7771)] = 192121, - [SMALL_STATE(7772)] = 192154, - [SMALL_STATE(7773)] = 192189, - [SMALL_STATE(7774)] = 192222, - [SMALL_STATE(7775)] = 192257, - [SMALL_STATE(7776)] = 192290, - [SMALL_STATE(7777)] = 192323, - [SMALL_STATE(7778)] = 192358, - [SMALL_STATE(7779)] = 192391, - [SMALL_STATE(7780)] = 192426, - [SMALL_STATE(7781)] = 192459, - [SMALL_STATE(7782)] = 192492, - [SMALL_STATE(7783)] = 192527, - [SMALL_STATE(7784)] = 192560, - [SMALL_STATE(7785)] = 192595, - [SMALL_STATE(7786)] = 192628, - [SMALL_STATE(7787)] = 192663, - [SMALL_STATE(7788)] = 192698, - [SMALL_STATE(7789)] = 192733, - [SMALL_STATE(7790)] = 192768, - [SMALL_STATE(7791)] = 192791, - [SMALL_STATE(7792)] = 192824, - [SMALL_STATE(7793)] = 192857, - [SMALL_STATE(7794)] = 192892, - [SMALL_STATE(7795)] = 192927, - [SMALL_STATE(7796)] = 192962, - [SMALL_STATE(7797)] = 192995, - [SMALL_STATE(7798)] = 193028, - [SMALL_STATE(7799)] = 193061, - [SMALL_STATE(7800)] = 193094, - [SMALL_STATE(7801)] = 193117, - [SMALL_STATE(7802)] = 193152, - [SMALL_STATE(7803)] = 193187, - [SMALL_STATE(7804)] = 193222, - [SMALL_STATE(7805)] = 193255, - [SMALL_STATE(7806)] = 193290, - [SMALL_STATE(7807)] = 193325, - [SMALL_STATE(7808)] = 193358, - [SMALL_STATE(7809)] = 193393, - [SMALL_STATE(7810)] = 193428, - [SMALL_STATE(7811)] = 193461, - [SMALL_STATE(7812)] = 193494, - [SMALL_STATE(7813)] = 193527, - [SMALL_STATE(7814)] = 193562, - [SMALL_STATE(7815)] = 193597, - [SMALL_STATE(7816)] = 193630, - [SMALL_STATE(7817)] = 193665, - [SMALL_STATE(7818)] = 193688, - [SMALL_STATE(7819)] = 193723, - [SMALL_STATE(7820)] = 193758, - [SMALL_STATE(7821)] = 193793, - [SMALL_STATE(7822)] = 193826, - [SMALL_STATE(7823)] = 193861, - [SMALL_STATE(7824)] = 193894, - [SMALL_STATE(7825)] = 193927, - [SMALL_STATE(7826)] = 193962, - [SMALL_STATE(7827)] = 193997, - [SMALL_STATE(7828)] = 194032, - [SMALL_STATE(7829)] = 194067, - [SMALL_STATE(7830)] = 194100, - [SMALL_STATE(7831)] = 194135, - [SMALL_STATE(7832)] = 194170, - [SMALL_STATE(7833)] = 194205, - [SMALL_STATE(7834)] = 194238, - [SMALL_STATE(7835)] = 194260, - [SMALL_STATE(7836)] = 194286, - [SMALL_STATE(7837)] = 194308, - [SMALL_STATE(7838)] = 194330, - [SMALL_STATE(7839)] = 194352, - [SMALL_STATE(7840)] = 194374, - [SMALL_STATE(7841)] = 194396, - [SMALL_STATE(7842)] = 194418, - [SMALL_STATE(7843)] = 194440, - [SMALL_STATE(7844)] = 194462, - [SMALL_STATE(7845)] = 194484, - [SMALL_STATE(7846)] = 194510, - [SMALL_STATE(7847)] = 194540, - [SMALL_STATE(7848)] = 194562, - [SMALL_STATE(7849)] = 194588, - [SMALL_STATE(7850)] = 194614, - [SMALL_STATE(7851)] = 194636, - [SMALL_STATE(7852)] = 194658, - [SMALL_STATE(7853)] = 194680, - [SMALL_STATE(7854)] = 194702, - [SMALL_STATE(7855)] = 194724, - [SMALL_STATE(7856)] = 194746, - [SMALL_STATE(7857)] = 194768, - [SMALL_STATE(7858)] = 194790, - [SMALL_STATE(7859)] = 194812, - [SMALL_STATE(7860)] = 194834, - [SMALL_STATE(7861)] = 194856, - [SMALL_STATE(7862)] = 194879, - [SMALL_STATE(7863)] = 194908, - [SMALL_STATE(7864)] = 194933, - [SMALL_STATE(7865)] = 194958, - [SMALL_STATE(7866)] = 194987, - [SMALL_STATE(7867)] = 195016, - [SMALL_STATE(7868)] = 195045, - [SMALL_STATE(7869)] = 195074, - [SMALL_STATE(7870)] = 195103, - [SMALL_STATE(7871)] = 195132, - [SMALL_STATE(7872)] = 195157, - [SMALL_STATE(7873)] = 195182, - [SMALL_STATE(7874)] = 195207, - [SMALL_STATE(7875)] = 195232, - [SMALL_STATE(7876)] = 195257, - [SMALL_STATE(7877)] = 195282, - [SMALL_STATE(7878)] = 195307, - [SMALL_STATE(7879)] = 195332, - [SMALL_STATE(7880)] = 195361, - [SMALL_STATE(7881)] = 195390, - [SMALL_STATE(7882)] = 195419, - [SMALL_STATE(7883)] = 195448, - [SMALL_STATE(7884)] = 195477, - [SMALL_STATE(7885)] = 195506, - [SMALL_STATE(7886)] = 195531, - [SMALL_STATE(7887)] = 195560, - [SMALL_STATE(7888)] = 195589, - [SMALL_STATE(7889)] = 195614, - [SMALL_STATE(7890)] = 195643, - [SMALL_STATE(7891)] = 195672, - [SMALL_STATE(7892)] = 195701, - [SMALL_STATE(7893)] = 195730, - [SMALL_STATE(7894)] = 195759, - [SMALL_STATE(7895)] = 195788, - [SMALL_STATE(7896)] = 195817, - [SMALL_STATE(7897)] = 195846, - [SMALL_STATE(7898)] = 195875, - [SMALL_STATE(7899)] = 195904, - [SMALL_STATE(7900)] = 195933, - [SMALL_STATE(7901)] = 195962, - [SMALL_STATE(7902)] = 195991, - [SMALL_STATE(7903)] = 196020, - [SMALL_STATE(7904)] = 196049, - [SMALL_STATE(7905)] = 196078, - [SMALL_STATE(7906)] = 196107, - [SMALL_STATE(7907)] = 196136, - [SMALL_STATE(7908)] = 196159, - [SMALL_STATE(7909)] = 196188, - [SMALL_STATE(7910)] = 196217, - [SMALL_STATE(7911)] = 196246, - [SMALL_STATE(7912)] = 196275, - [SMALL_STATE(7913)] = 196304, - [SMALL_STATE(7914)] = 196327, - [SMALL_STATE(7915)] = 196356, - [SMALL_STATE(7916)] = 196385, - [SMALL_STATE(7917)] = 196414, - [SMALL_STATE(7918)] = 196443, - [SMALL_STATE(7919)] = 196472, - [SMALL_STATE(7920)] = 196501, - [SMALL_STATE(7921)] = 196530, - [SMALL_STATE(7922)] = 196559, - [SMALL_STATE(7923)] = 196588, - [SMALL_STATE(7924)] = 196617, - [SMALL_STATE(7925)] = 196646, - [SMALL_STATE(7926)] = 196675, - [SMALL_STATE(7927)] = 196704, - [SMALL_STATE(7928)] = 196733, - [SMALL_STATE(7929)] = 196762, - [SMALL_STATE(7930)] = 196791, - [SMALL_STATE(7931)] = 196820, - [SMALL_STATE(7932)] = 196849, - [SMALL_STATE(7933)] = 196878, - [SMALL_STATE(7934)] = 196901, - [SMALL_STATE(7935)] = 196930, - [SMALL_STATE(7936)] = 196959, - [SMALL_STATE(7937)] = 196988, - [SMALL_STATE(7938)] = 197017, - [SMALL_STATE(7939)] = 197046, - [SMALL_STATE(7940)] = 197075, - [SMALL_STATE(7941)] = 197104, - [SMALL_STATE(7942)] = 197133, - [SMALL_STATE(7943)] = 197162, - [SMALL_STATE(7944)] = 197191, - [SMALL_STATE(7945)] = 197220, - [SMALL_STATE(7946)] = 197249, - [SMALL_STATE(7947)] = 197278, - [SMALL_STATE(7948)] = 197307, - [SMALL_STATE(7949)] = 197336, - [SMALL_STATE(7950)] = 197365, - [SMALL_STATE(7951)] = 197394, - [SMALL_STATE(7952)] = 197423, - [SMALL_STATE(7953)] = 197452, - [SMALL_STATE(7954)] = 197481, - [SMALL_STATE(7955)] = 197510, - [SMALL_STATE(7956)] = 197539, - [SMALL_STATE(7957)] = 197568, - [SMALL_STATE(7958)] = 197597, - [SMALL_STATE(7959)] = 197626, - [SMALL_STATE(7960)] = 197655, - [SMALL_STATE(7961)] = 197684, - [SMALL_STATE(7962)] = 197713, - [SMALL_STATE(7963)] = 197742, - [SMALL_STATE(7964)] = 197771, - [SMALL_STATE(7965)] = 197800, - [SMALL_STATE(7966)] = 197829, - [SMALL_STATE(7967)] = 197858, - [SMALL_STATE(7968)] = 197887, - [SMALL_STATE(7969)] = 197908, - [SMALL_STATE(7970)] = 197937, - [SMALL_STATE(7971)] = 197966, - [SMALL_STATE(7972)] = 197991, - [SMALL_STATE(7973)] = 198020, - [SMALL_STATE(7974)] = 198049, - [SMALL_STATE(7975)] = 198078, - [SMALL_STATE(7976)] = 198107, - [SMALL_STATE(7977)] = 198132, - [SMALL_STATE(7978)] = 198161, - [SMALL_STATE(7979)] = 198190, - [SMALL_STATE(7980)] = 198219, - [SMALL_STATE(7981)] = 198248, - [SMALL_STATE(7982)] = 198273, - [SMALL_STATE(7983)] = 198302, - [SMALL_STATE(7984)] = 198331, - [SMALL_STATE(7985)] = 198360, - [SMALL_STATE(7986)] = 198389, - [SMALL_STATE(7987)] = 198418, - [SMALL_STATE(7988)] = 198443, - [SMALL_STATE(7989)] = 198468, - [SMALL_STATE(7990)] = 198497, - [SMALL_STATE(7991)] = 198526, - [SMALL_STATE(7992)] = 198555, - [SMALL_STATE(7993)] = 198580, - [SMALL_STATE(7994)] = 198609, - [SMALL_STATE(7995)] = 198638, - [SMALL_STATE(7996)] = 198667, - [SMALL_STATE(7997)] = 198696, - [SMALL_STATE(7998)] = 198725, - [SMALL_STATE(7999)] = 198754, - [SMALL_STATE(8000)] = 198779, - [SMALL_STATE(8001)] = 198804, - [SMALL_STATE(8002)] = 198833, - [SMALL_STATE(8003)] = 198862, - [SMALL_STATE(8004)] = 198887, - [SMALL_STATE(8005)] = 198912, - [SMALL_STATE(8006)] = 198941, - [SMALL_STATE(8007)] = 198970, - [SMALL_STATE(8008)] = 198999, - [SMALL_STATE(8009)] = 199028, - [SMALL_STATE(8010)] = 199057, - [SMALL_STATE(8011)] = 199082, - [SMALL_STATE(8012)] = 199111, - [SMALL_STATE(8013)] = 199148, - [SMALL_STATE(8014)] = 199177, - [SMALL_STATE(8015)] = 199202, - [SMALL_STATE(8016)] = 199227, - [SMALL_STATE(8017)] = 199256, - [SMALL_STATE(8018)] = 199285, - [SMALL_STATE(8019)] = 199314, - [SMALL_STATE(8020)] = 199343, - [SMALL_STATE(8021)] = 199372, - [SMALL_STATE(8022)] = 199398, - [SMALL_STATE(8023)] = 199424, - [SMALL_STATE(8024)] = 199450, - [SMALL_STATE(8025)] = 199476, - [SMALL_STATE(8026)] = 199502, - [SMALL_STATE(8027)] = 199524, - [SMALL_STATE(8028)] = 199550, - [SMALL_STATE(8029)] = 199576, - [SMALL_STATE(8030)] = 199602, - [SMALL_STATE(8031)] = 199628, - [SMALL_STATE(8032)] = 199654, - [SMALL_STATE(8033)] = 199680, - [SMALL_STATE(8034)] = 199706, - [SMALL_STATE(8035)] = 199732, - [SMALL_STATE(8036)] = 199758, - [SMALL_STATE(8037)] = 199784, - [SMALL_STATE(8038)] = 199810, - [SMALL_STATE(8039)] = 199836, - [SMALL_STATE(8040)] = 199862, - [SMALL_STATE(8041)] = 199888, - [SMALL_STATE(8042)] = 199914, - [SMALL_STATE(8043)] = 199940, - [SMALL_STATE(8044)] = 199966, - [SMALL_STATE(8045)] = 199992, - [SMALL_STATE(8046)] = 200018, - [SMALL_STATE(8047)] = 200044, - [SMALL_STATE(8048)] = 200070, - [SMALL_STATE(8049)] = 200096, - [SMALL_STATE(8050)] = 200122, - [SMALL_STATE(8051)] = 200148, - [SMALL_STATE(8052)] = 200174, - [SMALL_STATE(8053)] = 200200, - [SMALL_STATE(8054)] = 200226, - [SMALL_STATE(8055)] = 200252, - [SMALL_STATE(8056)] = 200278, - [SMALL_STATE(8057)] = 200304, - [SMALL_STATE(8058)] = 200330, - [SMALL_STATE(8059)] = 200356, - [SMALL_STATE(8060)] = 200382, - [SMALL_STATE(8061)] = 200408, - [SMALL_STATE(8062)] = 200434, - [SMALL_STATE(8063)] = 200460, - [SMALL_STATE(8064)] = 200486, - [SMALL_STATE(8065)] = 200512, - [SMALL_STATE(8066)] = 200538, - [SMALL_STATE(8067)] = 200564, - [SMALL_STATE(8068)] = 200590, - [SMALL_STATE(8069)] = 200610, - [SMALL_STATE(8070)] = 200636, - [SMALL_STATE(8071)] = 200658, - [SMALL_STATE(8072)] = 200684, - [SMALL_STATE(8073)] = 200710, - [SMALL_STATE(8074)] = 200736, - [SMALL_STATE(8075)] = 200762, - [SMALL_STATE(8076)] = 200788, - [SMALL_STATE(8077)] = 200814, - [SMALL_STATE(8078)] = 200840, - [SMALL_STATE(8079)] = 200866, - [SMALL_STATE(8080)] = 200892, - [SMALL_STATE(8081)] = 200918, - [SMALL_STATE(8082)] = 200944, - [SMALL_STATE(8083)] = 200970, - [SMALL_STATE(8084)] = 200996, - [SMALL_STATE(8085)] = 201022, - [SMALL_STATE(8086)] = 201048, - [SMALL_STATE(8087)] = 201074, - [SMALL_STATE(8088)] = 201100, - [SMALL_STATE(8089)] = 201126, - [SMALL_STATE(8090)] = 201152, - [SMALL_STATE(8091)] = 201178, - [SMALL_STATE(8092)] = 201204, - [SMALL_STATE(8093)] = 201230, - [SMALL_STATE(8094)] = 201256, - [SMALL_STATE(8095)] = 201282, - [SMALL_STATE(8096)] = 201308, - [SMALL_STATE(8097)] = 201334, - [SMALL_STATE(8098)] = 201360, - [SMALL_STATE(8099)] = 201386, - [SMALL_STATE(8100)] = 201412, - [SMALL_STATE(8101)] = 201438, - [SMALL_STATE(8102)] = 201464, - [SMALL_STATE(8103)] = 201490, - [SMALL_STATE(8104)] = 201516, - [SMALL_STATE(8105)] = 201542, - [SMALL_STATE(8106)] = 201568, - [SMALL_STATE(8107)] = 201594, - [SMALL_STATE(8108)] = 201620, - [SMALL_STATE(8109)] = 201646, - [SMALL_STATE(8110)] = 201672, - [SMALL_STATE(8111)] = 201698, - [SMALL_STATE(8112)] = 201724, - [SMALL_STATE(8113)] = 201750, - [SMALL_STATE(8114)] = 201776, - [SMALL_STATE(8115)] = 201802, - [SMALL_STATE(8116)] = 201828, - [SMALL_STATE(8117)] = 201854, - [SMALL_STATE(8118)] = 201880, - [SMALL_STATE(8119)] = 201906, - [SMALL_STATE(8120)] = 201932, - [SMALL_STATE(8121)] = 201958, - [SMALL_STATE(8122)] = 201984, - [SMALL_STATE(8123)] = 202010, - [SMALL_STATE(8124)] = 202036, - [SMALL_STATE(8125)] = 202062, - [SMALL_STATE(8126)] = 202096, - [SMALL_STATE(8127)] = 202122, - [SMALL_STATE(8128)] = 202148, - [SMALL_STATE(8129)] = 202174, - [SMALL_STATE(8130)] = 202200, - [SMALL_STATE(8131)] = 202226, - [SMALL_STATE(8132)] = 202260, - [SMALL_STATE(8133)] = 202286, - [SMALL_STATE(8134)] = 202312, - [SMALL_STATE(8135)] = 202338, - [SMALL_STATE(8136)] = 202364, - [SMALL_STATE(8137)] = 202390, - [SMALL_STATE(8138)] = 202416, - [SMALL_STATE(8139)] = 202438, - [SMALL_STATE(8140)] = 202464, - [SMALL_STATE(8141)] = 202490, - [SMALL_STATE(8142)] = 202516, - [SMALL_STATE(8143)] = 202542, - [SMALL_STATE(8144)] = 202568, - [SMALL_STATE(8145)] = 202594, - [SMALL_STATE(8146)] = 202620, - [SMALL_STATE(8147)] = 202646, - [SMALL_STATE(8148)] = 202672, - [SMALL_STATE(8149)] = 202698, - [SMALL_STATE(8150)] = 202724, - [SMALL_STATE(8151)] = 202750, - [SMALL_STATE(8152)] = 202776, - [SMALL_STATE(8153)] = 202802, - [SMALL_STATE(8154)] = 202828, - [SMALL_STATE(8155)] = 202854, - [SMALL_STATE(8156)] = 202880, - [SMALL_STATE(8157)] = 202906, - [SMALL_STATE(8158)] = 202932, - [SMALL_STATE(8159)] = 202958, - [SMALL_STATE(8160)] = 202984, - [SMALL_STATE(8161)] = 203010, - [SMALL_STATE(8162)] = 203036, - [SMALL_STATE(8163)] = 203062, - [SMALL_STATE(8164)] = 203088, - [SMALL_STATE(8165)] = 203114, - [SMALL_STATE(8166)] = 203140, - [SMALL_STATE(8167)] = 203166, - [SMALL_STATE(8168)] = 203192, - [SMALL_STATE(8169)] = 203218, - [SMALL_STATE(8170)] = 203244, - [SMALL_STATE(8171)] = 203270, - [SMALL_STATE(8172)] = 203296, - [SMALL_STATE(8173)] = 203322, - [SMALL_STATE(8174)] = 203348, - [SMALL_STATE(8175)] = 203374, - [SMALL_STATE(8176)] = 203400, - [SMALL_STATE(8177)] = 203426, - [SMALL_STATE(8178)] = 203452, - [SMALL_STATE(8179)] = 203478, - [SMALL_STATE(8180)] = 203504, - [SMALL_STATE(8181)] = 203530, - [SMALL_STATE(8182)] = 203556, - [SMALL_STATE(8183)] = 203582, - [SMALL_STATE(8184)] = 203608, - [SMALL_STATE(8185)] = 203634, - [SMALL_STATE(8186)] = 203660, - [SMALL_STATE(8187)] = 203686, - [SMALL_STATE(8188)] = 203712, - [SMALL_STATE(8189)] = 203738, - [SMALL_STATE(8190)] = 203764, - [SMALL_STATE(8191)] = 203790, - [SMALL_STATE(8192)] = 203816, - [SMALL_STATE(8193)] = 203842, - [SMALL_STATE(8194)] = 203868, - [SMALL_STATE(8195)] = 203894, - [SMALL_STATE(8196)] = 203920, - [SMALL_STATE(8197)] = 203946, - [SMALL_STATE(8198)] = 203972, - [SMALL_STATE(8199)] = 203998, - [SMALL_STATE(8200)] = 204024, - [SMALL_STATE(8201)] = 204050, - [SMALL_STATE(8202)] = 204076, - [SMALL_STATE(8203)] = 204102, - [SMALL_STATE(8204)] = 204128, - [SMALL_STATE(8205)] = 204154, - [SMALL_STATE(8206)] = 204180, - [SMALL_STATE(8207)] = 204206, - [SMALL_STATE(8208)] = 204232, - [SMALL_STATE(8209)] = 204258, - [SMALL_STATE(8210)] = 204284, - [SMALL_STATE(8211)] = 204310, - [SMALL_STATE(8212)] = 204336, - [SMALL_STATE(8213)] = 204362, - [SMALL_STATE(8214)] = 204388, - [SMALL_STATE(8215)] = 204422, - [SMALL_STATE(8216)] = 204448, - [SMALL_STATE(8217)] = 204474, - [SMALL_STATE(8218)] = 204500, - [SMALL_STATE(8219)] = 204526, - [SMALL_STATE(8220)] = 204552, - [SMALL_STATE(8221)] = 204578, - [SMALL_STATE(8222)] = 204604, - [SMALL_STATE(8223)] = 204630, - [SMALL_STATE(8224)] = 204656, - [SMALL_STATE(8225)] = 204682, - [SMALL_STATE(8226)] = 204708, - [SMALL_STATE(8227)] = 204734, - [SMALL_STATE(8228)] = 204760, - [SMALL_STATE(8229)] = 204786, - [SMALL_STATE(8230)] = 204812, - [SMALL_STATE(8231)] = 204838, - [SMALL_STATE(8232)] = 204864, - [SMALL_STATE(8233)] = 204890, - [SMALL_STATE(8234)] = 204916, - [SMALL_STATE(8235)] = 204942, - [SMALL_STATE(8236)] = 204968, - [SMALL_STATE(8237)] = 204994, - [SMALL_STATE(8238)] = 205016, - [SMALL_STATE(8239)] = 205042, - [SMALL_STATE(8240)] = 205068, - [SMALL_STATE(8241)] = 205094, - [SMALL_STATE(8242)] = 205120, - [SMALL_STATE(8243)] = 205146, - [SMALL_STATE(8244)] = 205172, - [SMALL_STATE(8245)] = 205198, - [SMALL_STATE(8246)] = 205232, - [SMALL_STATE(8247)] = 205258, - [SMALL_STATE(8248)] = 205284, - [SMALL_STATE(8249)] = 205310, - [SMALL_STATE(8250)] = 205336, - [SMALL_STATE(8251)] = 205362, - [SMALL_STATE(8252)] = 205388, - [SMALL_STATE(8253)] = 205414, - [SMALL_STATE(8254)] = 205440, - [SMALL_STATE(8255)] = 205466, - [SMALL_STATE(8256)] = 205492, - [SMALL_STATE(8257)] = 205518, - [SMALL_STATE(8258)] = 205544, - [SMALL_STATE(8259)] = 205570, - [SMALL_STATE(8260)] = 205596, - [SMALL_STATE(8261)] = 205622, - [SMALL_STATE(8262)] = 205648, - [SMALL_STATE(8263)] = 205682, - [SMALL_STATE(8264)] = 205708, - [SMALL_STATE(8265)] = 205734, - [SMALL_STATE(8266)] = 205760, - [SMALL_STATE(8267)] = 205786, - [SMALL_STATE(8268)] = 205812, - [SMALL_STATE(8269)] = 205834, - [SMALL_STATE(8270)] = 205860, - [SMALL_STATE(8271)] = 205886, - [SMALL_STATE(8272)] = 205912, - [SMALL_STATE(8273)] = 205938, - [SMALL_STATE(8274)] = 205972, - [SMALL_STATE(8275)] = 205998, - [SMALL_STATE(8276)] = 206020, - [SMALL_STATE(8277)] = 206038, - [SMALL_STATE(8278)] = 206058, - [SMALL_STATE(8279)] = 206084, - [SMALL_STATE(8280)] = 206115, - [SMALL_STATE(8281)] = 206146, - [SMALL_STATE(8282)] = 206177, - [SMALL_STATE(8283)] = 206194, - [SMALL_STATE(8284)] = 206225, - [SMALL_STATE(8285)] = 206242, - [SMALL_STATE(8286)] = 206263, - [SMALL_STATE(8287)] = 206294, - [SMALL_STATE(8288)] = 206325, - [SMALL_STATE(8289)] = 206356, - [SMALL_STATE(8290)] = 206387, - [SMALL_STATE(8291)] = 206418, - [SMALL_STATE(8292)] = 206435, - [SMALL_STATE(8293)] = 206466, - [SMALL_STATE(8294)] = 206497, - [SMALL_STATE(8295)] = 206528, - [SMALL_STATE(8296)] = 206559, - [SMALL_STATE(8297)] = 206590, - [SMALL_STATE(8298)] = 206611, - [SMALL_STATE(8299)] = 206642, - [SMALL_STATE(8300)] = 206673, - [SMALL_STATE(8301)] = 206704, - [SMALL_STATE(8302)] = 206721, - [SMALL_STATE(8303)] = 206752, - [SMALL_STATE(8304)] = 206783, - [SMALL_STATE(8305)] = 206814, - [SMALL_STATE(8306)] = 206845, - [SMALL_STATE(8307)] = 206876, - [SMALL_STATE(8308)] = 206907, - [SMALL_STATE(8309)] = 206938, - [SMALL_STATE(8310)] = 206955, - [SMALL_STATE(8311)] = 206974, - [SMALL_STATE(8312)] = 207005, - [SMALL_STATE(8313)] = 207022, - [SMALL_STATE(8314)] = 207053, - [SMALL_STATE(8315)] = 207070, - [SMALL_STATE(8316)] = 207101, - [SMALL_STATE(8317)] = 207118, - [SMALL_STATE(8318)] = 207134, - [SMALL_STATE(8319)] = 207164, - [SMALL_STATE(8320)] = 207194, - [SMALL_STATE(8321)] = 207212, - [SMALL_STATE(8322)] = 207242, - [SMALL_STATE(8323)] = 207260, - [SMALL_STATE(8324)] = 207278, - [SMALL_STATE(8325)] = 207296, - [SMALL_STATE(8326)] = 207326, - [SMALL_STATE(8327)] = 207356, - [SMALL_STATE(8328)] = 207372, - [SMALL_STATE(8329)] = 207392, - [SMALL_STATE(8330)] = 207421, - [SMALL_STATE(8331)] = 207446, - [SMALL_STATE(8332)] = 207471, - [SMALL_STATE(8333)] = 207496, - [SMALL_STATE(8334)] = 207525, - [SMALL_STATE(8335)] = 207546, - [SMALL_STATE(8336)] = 207575, - [SMALL_STATE(8337)] = 207602, - [SMALL_STATE(8338)] = 207623, - [SMALL_STATE(8339)] = 207646, - [SMALL_STATE(8340)] = 207671, - [SMALL_STATE(8341)] = 207690, - [SMALL_STATE(8342)] = 207717, - [SMALL_STATE(8343)] = 207744, - [SMALL_STATE(8344)] = 207763, - [SMALL_STATE(8345)] = 207780, - [SMALL_STATE(8346)] = 207805, - [SMALL_STATE(8347)] = 207834, - [SMALL_STATE(8348)] = 207861, - [SMALL_STATE(8349)] = 207888, - [SMALL_STATE(8350)] = 207905, - [SMALL_STATE(8351)] = 207934, - [SMALL_STATE(8352)] = 207959, - [SMALL_STATE(8353)] = 207975, - [SMALL_STATE(8354)] = 207999, - [SMALL_STATE(8355)] = 208015, - [SMALL_STATE(8356)] = 208031, - [SMALL_STATE(8357)] = 208047, - [SMALL_STATE(8358)] = 208071, - [SMALL_STATE(8359)] = 208087, - [SMALL_STATE(8360)] = 208113, - [SMALL_STATE(8361)] = 208129, - [SMALL_STATE(8362)] = 208151, - [SMALL_STATE(8363)] = 208175, - [SMALL_STATE(8364)] = 208189, - [SMALL_STATE(8365)] = 208205, - [SMALL_STATE(8366)] = 208221, - [SMALL_STATE(8367)] = 208247, - [SMALL_STATE(8368)] = 208263, - [SMALL_STATE(8369)] = 208279, - [SMALL_STATE(8370)] = 208303, - [SMALL_STATE(8371)] = 208319, - [SMALL_STATE(8372)] = 208339, - [SMALL_STATE(8373)] = 208355, - [SMALL_STATE(8374)] = 208371, - [SMALL_STATE(8375)] = 208387, - [SMALL_STATE(8376)] = 208403, - [SMALL_STATE(8377)] = 208419, - [SMALL_STATE(8378)] = 208445, - [SMALL_STATE(8379)] = 208459, - [SMALL_STATE(8380)] = 208473, - [SMALL_STATE(8381)] = 208497, - [SMALL_STATE(8382)] = 208523, - [SMALL_STATE(8383)] = 208539, - [SMALL_STATE(8384)] = 208563, - [SMALL_STATE(8385)] = 208579, - [SMALL_STATE(8386)] = 208599, - [SMALL_STATE(8387)] = 208615, - [SMALL_STATE(8388)] = 208631, - [SMALL_STATE(8389)] = 208645, - [SMALL_STATE(8390)] = 208669, - [SMALL_STATE(8391)] = 208685, - [SMALL_STATE(8392)] = 208701, - [SMALL_STATE(8393)] = 208725, - [SMALL_STATE(8394)] = 208747, - [SMALL_STATE(8395)] = 208763, - [SMALL_STATE(8396)] = 208779, - [SMALL_STATE(8397)] = 208805, - [SMALL_STATE(8398)] = 208826, - [SMALL_STATE(8399)] = 208839, - [SMALL_STATE(8400)] = 208860, - [SMALL_STATE(8401)] = 208883, - [SMALL_STATE(8402)] = 208900, - [SMALL_STATE(8403)] = 208921, - [SMALL_STATE(8404)] = 208942, - [SMALL_STATE(8405)] = 208965, - [SMALL_STATE(8406)] = 208986, - [SMALL_STATE(8407)] = 209009, - [SMALL_STATE(8408)] = 209030, - [SMALL_STATE(8409)] = 209053, - [SMALL_STATE(8410)] = 209070, - [SMALL_STATE(8411)] = 209091, - [SMALL_STATE(8412)] = 209112, - [SMALL_STATE(8413)] = 209133, - [SMALL_STATE(8414)] = 209154, - [SMALL_STATE(8415)] = 209173, - [SMALL_STATE(8416)] = 209190, - [SMALL_STATE(8417)] = 209211, - [SMALL_STATE(8418)] = 209232, - [SMALL_STATE(8419)] = 209249, - [SMALL_STATE(8420)] = 209266, - [SMALL_STATE(8421)] = 209279, - [SMALL_STATE(8422)] = 209300, - [SMALL_STATE(8423)] = 209315, - [SMALL_STATE(8424)] = 209332, - [SMALL_STATE(8425)] = 209353, - [SMALL_STATE(8426)] = 209376, - [SMALL_STATE(8427)] = 209397, - [SMALL_STATE(8428)] = 209418, - [SMALL_STATE(8429)] = 209439, - [SMALL_STATE(8430)] = 209460, - [SMALL_STATE(8431)] = 209475, - [SMALL_STATE(8432)] = 209488, - [SMALL_STATE(8433)] = 209509, - [SMALL_STATE(8434)] = 209526, - [SMALL_STATE(8435)] = 209549, - [SMALL_STATE(8436)] = 209570, - [SMALL_STATE(8437)] = 209591, - [SMALL_STATE(8438)] = 209614, - [SMALL_STATE(8439)] = 209635, - [SMALL_STATE(8440)] = 209656, - [SMALL_STATE(8441)] = 209677, - [SMALL_STATE(8442)] = 209690, - [SMALL_STATE(8443)] = 209703, - [SMALL_STATE(8444)] = 209724, - [SMALL_STATE(8445)] = 209745, - [SMALL_STATE(8446)] = 209766, - [SMALL_STATE(8447)] = 209789, - [SMALL_STATE(8448)] = 209810, - [SMALL_STATE(8449)] = 209831, - [SMALL_STATE(8450)] = 209852, - [SMALL_STATE(8451)] = 209873, - [SMALL_STATE(8452)] = 209894, - [SMALL_STATE(8453)] = 209913, - [SMALL_STATE(8454)] = 209933, - [SMALL_STATE(8455)] = 209953, - [SMALL_STATE(8456)] = 209973, - [SMALL_STATE(8457)] = 209993, - [SMALL_STATE(8458)] = 210013, - [SMALL_STATE(8459)] = 210025, - [SMALL_STATE(8460)] = 210045, - [SMALL_STATE(8461)] = 210057, - [SMALL_STATE(8462)] = 210077, - [SMALL_STATE(8463)] = 210095, - [SMALL_STATE(8464)] = 210115, - [SMALL_STATE(8465)] = 210135, - [SMALL_STATE(8466)] = 210155, - [SMALL_STATE(8467)] = 210175, - [SMALL_STATE(8468)] = 210187, - [SMALL_STATE(8469)] = 210207, - [SMALL_STATE(8470)] = 210227, - [SMALL_STATE(8471)] = 210247, - [SMALL_STATE(8472)] = 210259, - [SMALL_STATE(8473)] = 210279, - [SMALL_STATE(8474)] = 210299, - [SMALL_STATE(8475)] = 210321, - [SMALL_STATE(8476)] = 210341, - [SMALL_STATE(8477)] = 210361, - [SMALL_STATE(8478)] = 210381, - [SMALL_STATE(8479)] = 210393, - [SMALL_STATE(8480)] = 210409, - [SMALL_STATE(8481)] = 210421, - [SMALL_STATE(8482)] = 210441, - [SMALL_STATE(8483)] = 210461, - [SMALL_STATE(8484)] = 210477, - [SMALL_STATE(8485)] = 210497, - [SMALL_STATE(8486)] = 210517, - [SMALL_STATE(8487)] = 210529, - [SMALL_STATE(8488)] = 210549, - [SMALL_STATE(8489)] = 210569, - [SMALL_STATE(8490)] = 210589, - [SMALL_STATE(8491)] = 210609, - [SMALL_STATE(8492)] = 210629, - [SMALL_STATE(8493)] = 210649, - [SMALL_STATE(8494)] = 210669, - [SMALL_STATE(8495)] = 210689, - [SMALL_STATE(8496)] = 210709, - [SMALL_STATE(8497)] = 210721, - [SMALL_STATE(8498)] = 210735, - [SMALL_STATE(8499)] = 210751, - [SMALL_STATE(8500)] = 210769, - [SMALL_STATE(8501)] = 210785, - [SMALL_STATE(8502)] = 210807, - [SMALL_STATE(8503)] = 210819, - [SMALL_STATE(8504)] = 210831, - [SMALL_STATE(8505)] = 210851, - [SMALL_STATE(8506)] = 210871, - [SMALL_STATE(8507)] = 210891, - [SMALL_STATE(8508)] = 210903, - [SMALL_STATE(8509)] = 210923, - [SMALL_STATE(8510)] = 210943, - [SMALL_STATE(8511)] = 210955, - [SMALL_STATE(8512)] = 210973, - [SMALL_STATE(8513)] = 210993, - [SMALL_STATE(8514)] = 211013, - [SMALL_STATE(8515)] = 211033, - [SMALL_STATE(8516)] = 211053, - [SMALL_STATE(8517)] = 211069, - [SMALL_STATE(8518)] = 211089, - [SMALL_STATE(8519)] = 211109, - [SMALL_STATE(8520)] = 211129, - [SMALL_STATE(8521)] = 211149, - [SMALL_STATE(8522)] = 211167, - [SMALL_STATE(8523)] = 211187, - [SMALL_STATE(8524)] = 211207, - [SMALL_STATE(8525)] = 211227, - [SMALL_STATE(8526)] = 211247, - [SMALL_STATE(8527)] = 211269, - [SMALL_STATE(8528)] = 211289, - [SMALL_STATE(8529)] = 211309, - [SMALL_STATE(8530)] = 211329, - [SMALL_STATE(8531)] = 211341, - [SMALL_STATE(8532)] = 211361, - [SMALL_STATE(8533)] = 211373, - [SMALL_STATE(8534)] = 211393, - [SMALL_STATE(8535)] = 211413, - [SMALL_STATE(8536)] = 211433, - [SMALL_STATE(8537)] = 211445, - [SMALL_STATE(8538)] = 211465, - [SMALL_STATE(8539)] = 211485, - [SMALL_STATE(8540)] = 211505, - [SMALL_STATE(8541)] = 211521, - [SMALL_STATE(8542)] = 211541, - [SMALL_STATE(8543)] = 211561, - [SMALL_STATE(8544)] = 211573, - [SMALL_STATE(8545)] = 211595, - [SMALL_STATE(8546)] = 211609, - [SMALL_STATE(8547)] = 211629, - [SMALL_STATE(8548)] = 211645, - [SMALL_STATE(8549)] = 211665, - [SMALL_STATE(8550)] = 211685, - [SMALL_STATE(8551)] = 211705, - [SMALL_STATE(8552)] = 211723, - [SMALL_STATE(8553)] = 211743, - [SMALL_STATE(8554)] = 211765, - [SMALL_STATE(8555)] = 211785, - [SMALL_STATE(8556)] = 211805, - [SMALL_STATE(8557)] = 211825, - [SMALL_STATE(8558)] = 211845, - [SMALL_STATE(8559)] = 211865, - [SMALL_STATE(8560)] = 211885, - [SMALL_STATE(8561)] = 211905, - [SMALL_STATE(8562)] = 211925, - [SMALL_STATE(8563)] = 211945, - [SMALL_STATE(8564)] = 211965, - [SMALL_STATE(8565)] = 211985, - [SMALL_STATE(8566)] = 212005, - [SMALL_STATE(8567)] = 212025, - [SMALL_STATE(8568)] = 212045, - [SMALL_STATE(8569)] = 212065, - [SMALL_STATE(8570)] = 212085, - [SMALL_STATE(8571)] = 212105, - [SMALL_STATE(8572)] = 212125, - [SMALL_STATE(8573)] = 212145, - [SMALL_STATE(8574)] = 212165, - [SMALL_STATE(8575)] = 212185, - [SMALL_STATE(8576)] = 212205, - [SMALL_STATE(8577)] = 212225, - [SMALL_STATE(8578)] = 212241, - [SMALL_STATE(8579)] = 212261, - [SMALL_STATE(8580)] = 212281, - [SMALL_STATE(8581)] = 212301, - [SMALL_STATE(8582)] = 212319, - [SMALL_STATE(8583)] = 212339, - [SMALL_STATE(8584)] = 212357, - [SMALL_STATE(8585)] = 212377, - [SMALL_STATE(8586)] = 212397, - [SMALL_STATE(8587)] = 212417, - [SMALL_STATE(8588)] = 212437, - [SMALL_STATE(8589)] = 212457, - [SMALL_STATE(8590)] = 212477, - [SMALL_STATE(8591)] = 212497, - [SMALL_STATE(8592)] = 212513, - [SMALL_STATE(8593)] = 212533, - [SMALL_STATE(8594)] = 212553, - [SMALL_STATE(8595)] = 212573, - [SMALL_STATE(8596)] = 212591, - [SMALL_STATE(8597)] = 212611, - [SMALL_STATE(8598)] = 212631, - [SMALL_STATE(8599)] = 212651, - [SMALL_STATE(8600)] = 212663, - [SMALL_STATE(8601)] = 212683, - [SMALL_STATE(8602)] = 212703, - [SMALL_STATE(8603)] = 212723, - [SMALL_STATE(8604)] = 212743, - [SMALL_STATE(8605)] = 212763, - [SMALL_STATE(8606)] = 212783, - [SMALL_STATE(8607)] = 212803, - [SMALL_STATE(8608)] = 212823, - [SMALL_STATE(8609)] = 212843, - [SMALL_STATE(8610)] = 212863, - [SMALL_STATE(8611)] = 212883, - [SMALL_STATE(8612)] = 212903, - [SMALL_STATE(8613)] = 212925, - [SMALL_STATE(8614)] = 212945, - [SMALL_STATE(8615)] = 212965, - [SMALL_STATE(8616)] = 212977, - [SMALL_STATE(8617)] = 212997, - [SMALL_STATE(8618)] = 213017, - [SMALL_STATE(8619)] = 213037, - [SMALL_STATE(8620)] = 213057, - [SMALL_STATE(8621)] = 213077, - [SMALL_STATE(8622)] = 213097, - [SMALL_STATE(8623)] = 213109, - [SMALL_STATE(8624)] = 213129, - [SMALL_STATE(8625)] = 213149, - [SMALL_STATE(8626)] = 213160, - [SMALL_STATE(8627)] = 213177, - [SMALL_STATE(8628)] = 213194, - [SMALL_STATE(8629)] = 213209, - [SMALL_STATE(8630)] = 213226, - [SMALL_STATE(8631)] = 213241, - [SMALL_STATE(8632)] = 213258, - [SMALL_STATE(8633)] = 213269, - [SMALL_STATE(8634)] = 213280, - [SMALL_STATE(8635)] = 213297, - [SMALL_STATE(8636)] = 213310, - [SMALL_STATE(8637)] = 213327, - [SMALL_STATE(8638)] = 213344, - [SMALL_STATE(8639)] = 213361, - [SMALL_STATE(8640)] = 213376, - [SMALL_STATE(8641)] = 213393, - [SMALL_STATE(8642)] = 213410, - [SMALL_STATE(8643)] = 213427, - [SMALL_STATE(8644)] = 213444, - [SMALL_STATE(8645)] = 213461, - [SMALL_STATE(8646)] = 213478, - [SMALL_STATE(8647)] = 213495, - [SMALL_STATE(8648)] = 213512, - [SMALL_STATE(8649)] = 213527, - [SMALL_STATE(8650)] = 213544, - [SMALL_STATE(8651)] = 213555, - [SMALL_STATE(8652)] = 213572, - [SMALL_STATE(8653)] = 213587, - [SMALL_STATE(8654)] = 213604, - [SMALL_STATE(8655)] = 213619, - [SMALL_STATE(8656)] = 213634, - [SMALL_STATE(8657)] = 213649, - [SMALL_STATE(8658)] = 213660, - [SMALL_STATE(8659)] = 213677, - [SMALL_STATE(8660)] = 213692, - [SMALL_STATE(8661)] = 213707, - [SMALL_STATE(8662)] = 213724, - [SMALL_STATE(8663)] = 213741, - [SMALL_STATE(8664)] = 213758, - [SMALL_STATE(8665)] = 213775, - [SMALL_STATE(8666)] = 213792, - [SMALL_STATE(8667)] = 213807, - [SMALL_STATE(8668)] = 213824, - [SMALL_STATE(8669)] = 213841, - [SMALL_STATE(8670)] = 213858, - [SMALL_STATE(8671)] = 213875, - [SMALL_STATE(8672)] = 213886, - [SMALL_STATE(8673)] = 213903, - [SMALL_STATE(8674)] = 213920, - [SMALL_STATE(8675)] = 213937, - [SMALL_STATE(8676)] = 213952, - [SMALL_STATE(8677)] = 213969, - [SMALL_STATE(8678)] = 213986, - [SMALL_STATE(8679)] = 214003, - [SMALL_STATE(8680)] = 214018, - [SMALL_STATE(8681)] = 214035, - [SMALL_STATE(8682)] = 214052, - [SMALL_STATE(8683)] = 214069, - [SMALL_STATE(8684)] = 214086, - [SMALL_STATE(8685)] = 214101, - [SMALL_STATE(8686)] = 214118, - [SMALL_STATE(8687)] = 214135, - [SMALL_STATE(8688)] = 214152, - [SMALL_STATE(8689)] = 214169, - [SMALL_STATE(8690)] = 214184, - [SMALL_STATE(8691)] = 214197, - [SMALL_STATE(8692)] = 214214, - [SMALL_STATE(8693)] = 214231, - [SMALL_STATE(8694)] = 214248, - [SMALL_STATE(8695)] = 214265, - [SMALL_STATE(8696)] = 214282, - [SMALL_STATE(8697)] = 214299, - [SMALL_STATE(8698)] = 214316, - [SMALL_STATE(8699)] = 214333, - [SMALL_STATE(8700)] = 214350, - [SMALL_STATE(8701)] = 214367, - [SMALL_STATE(8702)] = 214382, - [SMALL_STATE(8703)] = 214393, - [SMALL_STATE(8704)] = 214408, - [SMALL_STATE(8705)] = 214425, - [SMALL_STATE(8706)] = 214442, - [SMALL_STATE(8707)] = 214453, - [SMALL_STATE(8708)] = 214470, - [SMALL_STATE(8709)] = 214485, - [SMALL_STATE(8710)] = 214502, - [SMALL_STATE(8711)] = 214519, - [SMALL_STATE(8712)] = 214536, - [SMALL_STATE(8713)] = 214553, - [SMALL_STATE(8714)] = 214570, - [SMALL_STATE(8715)] = 214587, - [SMALL_STATE(8716)] = 214604, - [SMALL_STATE(8717)] = 214617, - [SMALL_STATE(8718)] = 214634, - [SMALL_STATE(8719)] = 214649, - [SMALL_STATE(8720)] = 214666, - [SMALL_STATE(8721)] = 214683, - [SMALL_STATE(8722)] = 214700, - [SMALL_STATE(8723)] = 214717, - [SMALL_STATE(8724)] = 214734, - [SMALL_STATE(8725)] = 214751, - [SMALL_STATE(8726)] = 214768, - [SMALL_STATE(8727)] = 214785, - [SMALL_STATE(8728)] = 214802, - [SMALL_STATE(8729)] = 214819, - [SMALL_STATE(8730)] = 214836, - [SMALL_STATE(8731)] = 214847, - [SMALL_STATE(8732)] = 214864, - [SMALL_STATE(8733)] = 214875, - [SMALL_STATE(8734)] = 214892, - [SMALL_STATE(8735)] = 214909, - [SMALL_STATE(8736)] = 214926, - [SMALL_STATE(8737)] = 214943, - [SMALL_STATE(8738)] = 214960, - [SMALL_STATE(8739)] = 214977, - [SMALL_STATE(8740)] = 214994, - [SMALL_STATE(8741)] = 215007, - [SMALL_STATE(8742)] = 215024, - [SMALL_STATE(8743)] = 215041, - [SMALL_STATE(8744)] = 215058, - [SMALL_STATE(8745)] = 215075, - [SMALL_STATE(8746)] = 215092, - [SMALL_STATE(8747)] = 215109, - [SMALL_STATE(8748)] = 215126, - [SMALL_STATE(8749)] = 215143, - [SMALL_STATE(8750)] = 215154, - [SMALL_STATE(8751)] = 215171, - [SMALL_STATE(8752)] = 215188, - [SMALL_STATE(8753)] = 215205, - [SMALL_STATE(8754)] = 215222, - [SMALL_STATE(8755)] = 215239, - [SMALL_STATE(8756)] = 215256, - [SMALL_STATE(8757)] = 215273, - [SMALL_STATE(8758)] = 215290, - [SMALL_STATE(8759)] = 215307, - [SMALL_STATE(8760)] = 215324, - [SMALL_STATE(8761)] = 215341, - [SMALL_STATE(8762)] = 215356, - [SMALL_STATE(8763)] = 215373, - [SMALL_STATE(8764)] = 215386, - [SMALL_STATE(8765)] = 215403, - [SMALL_STATE(8766)] = 215418, - [SMALL_STATE(8767)] = 215435, - [SMALL_STATE(8768)] = 215452, - [SMALL_STATE(8769)] = 215469, - [SMALL_STATE(8770)] = 215486, - [SMALL_STATE(8771)] = 215503, - [SMALL_STATE(8772)] = 215518, - [SMALL_STATE(8773)] = 215533, - [SMALL_STATE(8774)] = 215550, - [SMALL_STATE(8775)] = 215567, - [SMALL_STATE(8776)] = 215584, - [SMALL_STATE(8777)] = 215601, - [SMALL_STATE(8778)] = 215618, - [SMALL_STATE(8779)] = 215633, - [SMALL_STATE(8780)] = 215650, - [SMALL_STATE(8781)] = 215665, - [SMALL_STATE(8782)] = 215682, - [SMALL_STATE(8783)] = 215697, - [SMALL_STATE(8784)] = 215712, - [SMALL_STATE(8785)] = 215729, - [SMALL_STATE(8786)] = 215744, - [SMALL_STATE(8787)] = 215758, - [SMALL_STATE(8788)] = 215772, - [SMALL_STATE(8789)] = 215786, - [SMALL_STATE(8790)] = 215800, - [SMALL_STATE(8791)] = 215814, - [SMALL_STATE(8792)] = 215826, - [SMALL_STATE(8793)] = 215840, - [SMALL_STATE(8794)] = 215854, - [SMALL_STATE(8795)] = 215866, - [SMALL_STATE(8796)] = 215880, - [SMALL_STATE(8797)] = 215894, - [SMALL_STATE(8798)] = 215908, - [SMALL_STATE(8799)] = 215922, - [SMALL_STATE(8800)] = 215936, - [SMALL_STATE(8801)] = 215950, - [SMALL_STATE(8802)] = 215964, - [SMALL_STATE(8803)] = 215978, - [SMALL_STATE(8804)] = 215992, - [SMALL_STATE(8805)] = 216006, - [SMALL_STATE(8806)] = 216020, - [SMALL_STATE(8807)] = 216034, - [SMALL_STATE(8808)] = 216048, - [SMALL_STATE(8809)] = 216062, - [SMALL_STATE(8810)] = 216076, - [SMALL_STATE(8811)] = 216090, - [SMALL_STATE(8812)] = 216102, - [SMALL_STATE(8813)] = 216116, - [SMALL_STATE(8814)] = 216130, - [SMALL_STATE(8815)] = 216144, - [SMALL_STATE(8816)] = 216158, - [SMALL_STATE(8817)] = 216172, - [SMALL_STATE(8818)] = 216184, - [SMALL_STATE(8819)] = 216198, - [SMALL_STATE(8820)] = 216208, - [SMALL_STATE(8821)] = 216220, - [SMALL_STATE(8822)] = 216234, - [SMALL_STATE(8823)] = 216248, - [SMALL_STATE(8824)] = 216262, - [SMALL_STATE(8825)] = 216276, - [SMALL_STATE(8826)] = 216290, - [SMALL_STATE(8827)] = 216304, - [SMALL_STATE(8828)] = 216316, - [SMALL_STATE(8829)] = 216328, - [SMALL_STATE(8830)] = 216342, - [SMALL_STATE(8831)] = 216356, - [SMALL_STATE(8832)] = 216368, - [SMALL_STATE(8833)] = 216382, - [SMALL_STATE(8834)] = 216396, - [SMALL_STATE(8835)] = 216410, - [SMALL_STATE(8836)] = 216422, - [SMALL_STATE(8837)] = 216436, - [SMALL_STATE(8838)] = 216448, - [SMALL_STATE(8839)] = 216460, - [SMALL_STATE(8840)] = 216472, - [SMALL_STATE(8841)] = 216486, - [SMALL_STATE(8842)] = 216500, - [SMALL_STATE(8843)] = 216514, - [SMALL_STATE(8844)] = 216526, - [SMALL_STATE(8845)] = 216540, - [SMALL_STATE(8846)] = 216554, - [SMALL_STATE(8847)] = 216568, - [SMALL_STATE(8848)] = 216582, - [SMALL_STATE(8849)] = 216596, - [SMALL_STATE(8850)] = 216610, - [SMALL_STATE(8851)] = 216624, - [SMALL_STATE(8852)] = 216638, - [SMALL_STATE(8853)] = 216652, - [SMALL_STATE(8854)] = 216662, - [SMALL_STATE(8855)] = 216676, - [SMALL_STATE(8856)] = 216690, - [SMALL_STATE(8857)] = 216704, - [SMALL_STATE(8858)] = 216718, - [SMALL_STATE(8859)] = 216732, - [SMALL_STATE(8860)] = 216746, - [SMALL_STATE(8861)] = 216758, - [SMALL_STATE(8862)] = 216772, - [SMALL_STATE(8863)] = 216786, - [SMALL_STATE(8864)] = 216800, - [SMALL_STATE(8865)] = 216814, - [SMALL_STATE(8866)] = 216828, - [SMALL_STATE(8867)] = 216842, - [SMALL_STATE(8868)] = 216856, - [SMALL_STATE(8869)] = 216868, - [SMALL_STATE(8870)] = 216882, - [SMALL_STATE(8871)] = 216896, - [SMALL_STATE(8872)] = 216910, - [SMALL_STATE(8873)] = 216924, - [SMALL_STATE(8874)] = 216936, - [SMALL_STATE(8875)] = 216950, - [SMALL_STATE(8876)] = 216960, - [SMALL_STATE(8877)] = 216974, - [SMALL_STATE(8878)] = 216988, - [SMALL_STATE(8879)] = 217002, - [SMALL_STATE(8880)] = 217016, - [SMALL_STATE(8881)] = 217030, - [SMALL_STATE(8882)] = 217044, - [SMALL_STATE(8883)] = 217058, - [SMALL_STATE(8884)] = 217072, - [SMALL_STATE(8885)] = 217086, - [SMALL_STATE(8886)] = 217098, - [SMALL_STATE(8887)] = 217112, - [SMALL_STATE(8888)] = 217126, - [SMALL_STATE(8889)] = 217140, - [SMALL_STATE(8890)] = 217154, - [SMALL_STATE(8891)] = 217168, - [SMALL_STATE(8892)] = 217182, - [SMALL_STATE(8893)] = 217196, - [SMALL_STATE(8894)] = 217210, - [SMALL_STATE(8895)] = 217224, - [SMALL_STATE(8896)] = 217238, - [SMALL_STATE(8897)] = 217252, - [SMALL_STATE(8898)] = 217266, - [SMALL_STATE(8899)] = 217280, - [SMALL_STATE(8900)] = 217290, - [SMALL_STATE(8901)] = 217304, - [SMALL_STATE(8902)] = 217318, - [SMALL_STATE(8903)] = 217332, - [SMALL_STATE(8904)] = 217346, - [SMALL_STATE(8905)] = 217360, - [SMALL_STATE(8906)] = 217372, - [SMALL_STATE(8907)] = 217386, - [SMALL_STATE(8908)] = 217400, - [SMALL_STATE(8909)] = 217414, - [SMALL_STATE(8910)] = 217428, - [SMALL_STATE(8911)] = 217442, - [SMALL_STATE(8912)] = 217456, - [SMALL_STATE(8913)] = 217470, - [SMALL_STATE(8914)] = 217484, - [SMALL_STATE(8915)] = 217498, - [SMALL_STATE(8916)] = 217512, - [SMALL_STATE(8917)] = 217526, - [SMALL_STATE(8918)] = 217536, - [SMALL_STATE(8919)] = 217550, - [SMALL_STATE(8920)] = 217564, - [SMALL_STATE(8921)] = 217578, - [SMALL_STATE(8922)] = 217590, - [SMALL_STATE(8923)] = 217604, - [SMALL_STATE(8924)] = 217618, - [SMALL_STATE(8925)] = 217632, - [SMALL_STATE(8926)] = 217646, - [SMALL_STATE(8927)] = 217660, - [SMALL_STATE(8928)] = 217670, - [SMALL_STATE(8929)] = 217684, - [SMALL_STATE(8930)] = 217698, - [SMALL_STATE(8931)] = 217710, - [SMALL_STATE(8932)] = 217724, - [SMALL_STATE(8933)] = 217736, - [SMALL_STATE(8934)] = 217746, - [SMALL_STATE(8935)] = 217758, - [SMALL_STATE(8936)] = 217770, - [SMALL_STATE(8937)] = 217784, - [SMALL_STATE(8938)] = 217798, - [SMALL_STATE(8939)] = 217810, - [SMALL_STATE(8940)] = 217824, - [SMALL_STATE(8941)] = 217838, - [SMALL_STATE(8942)] = 217852, - [SMALL_STATE(8943)] = 217866, - [SMALL_STATE(8944)] = 217880, - [SMALL_STATE(8945)] = 217892, - [SMALL_STATE(8946)] = 217906, - [SMALL_STATE(8947)] = 217920, - [SMALL_STATE(8948)] = 217932, - [SMALL_STATE(8949)] = 217944, - [SMALL_STATE(8950)] = 217956, - [SMALL_STATE(8951)] = 217966, - [SMALL_STATE(8952)] = 217980, - [SMALL_STATE(8953)] = 217990, - [SMALL_STATE(8954)] = 218004, - [SMALL_STATE(8955)] = 218018, - [SMALL_STATE(8956)] = 218032, - [SMALL_STATE(8957)] = 218046, - [SMALL_STATE(8958)] = 218058, - [SMALL_STATE(8959)] = 218072, - [SMALL_STATE(8960)] = 218086, - [SMALL_STATE(8961)] = 218100, - [SMALL_STATE(8962)] = 218114, - [SMALL_STATE(8963)] = 218126, - [SMALL_STATE(8964)] = 218140, - [SMALL_STATE(8965)] = 218152, - [SMALL_STATE(8966)] = 218166, - [SMALL_STATE(8967)] = 218180, - [SMALL_STATE(8968)] = 218194, - [SMALL_STATE(8969)] = 218208, - [SMALL_STATE(8970)] = 218222, - [SMALL_STATE(8971)] = 218236, - [SMALL_STATE(8972)] = 218250, - [SMALL_STATE(8973)] = 218264, - [SMALL_STATE(8974)] = 218278, - [SMALL_STATE(8975)] = 218290, - [SMALL_STATE(8976)] = 218304, - [SMALL_STATE(8977)] = 218318, - [SMALL_STATE(8978)] = 218332, - [SMALL_STATE(8979)] = 218346, - [SMALL_STATE(8980)] = 218356, - [SMALL_STATE(8981)] = 218370, - [SMALL_STATE(8982)] = 218384, - [SMALL_STATE(8983)] = 218396, - [SMALL_STATE(8984)] = 218410, - [SMALL_STATE(8985)] = 218424, - [SMALL_STATE(8986)] = 218438, - [SMALL_STATE(8987)] = 218452, - [SMALL_STATE(8988)] = 218466, - [SMALL_STATE(8989)] = 218480, - [SMALL_STATE(8990)] = 218494, - [SMALL_STATE(8991)] = 218508, - [SMALL_STATE(8992)] = 218522, - [SMALL_STATE(8993)] = 218536, - [SMALL_STATE(8994)] = 218550, - [SMALL_STATE(8995)] = 218564, - [SMALL_STATE(8996)] = 218578, - [SMALL_STATE(8997)] = 218592, - [SMALL_STATE(8998)] = 218606, - [SMALL_STATE(8999)] = 218620, - [SMALL_STATE(9000)] = 218634, - [SMALL_STATE(9001)] = 218648, - [SMALL_STATE(9002)] = 218662, - [SMALL_STATE(9003)] = 218676, - [SMALL_STATE(9004)] = 218690, - [SMALL_STATE(9005)] = 218704, - [SMALL_STATE(9006)] = 218718, - [SMALL_STATE(9007)] = 218732, - [SMALL_STATE(9008)] = 218746, - [SMALL_STATE(9009)] = 218760, - [SMALL_STATE(9010)] = 218774, - [SMALL_STATE(9011)] = 218788, - [SMALL_STATE(9012)] = 218802, - [SMALL_STATE(9013)] = 218816, - [SMALL_STATE(9014)] = 218830, - [SMALL_STATE(9015)] = 218844, - [SMALL_STATE(9016)] = 218858, - [SMALL_STATE(9017)] = 218872, - [SMALL_STATE(9018)] = 218886, - [SMALL_STATE(9019)] = 218900, - [SMALL_STATE(9020)] = 218914, - [SMALL_STATE(9021)] = 218928, - [SMALL_STATE(9022)] = 218940, - [SMALL_STATE(9023)] = 218954, - [SMALL_STATE(9024)] = 218968, - [SMALL_STATE(9025)] = 218980, - [SMALL_STATE(9026)] = 218994, - [SMALL_STATE(9027)] = 219008, - [SMALL_STATE(9028)] = 219022, - [SMALL_STATE(9029)] = 219036, - [SMALL_STATE(9030)] = 219048, - [SMALL_STATE(9031)] = 219060, - [SMALL_STATE(9032)] = 219074, - [SMALL_STATE(9033)] = 219088, - [SMALL_STATE(9034)] = 219102, - [SMALL_STATE(9035)] = 219116, - [SMALL_STATE(9036)] = 219130, - [SMALL_STATE(9037)] = 219144, - [SMALL_STATE(9038)] = 219158, - [SMALL_STATE(9039)] = 219170, - [SMALL_STATE(9040)] = 219182, - [SMALL_STATE(9041)] = 219196, - [SMALL_STATE(9042)] = 219210, - [SMALL_STATE(9043)] = 219224, - [SMALL_STATE(9044)] = 219238, - [SMALL_STATE(9045)] = 219248, - [SMALL_STATE(9046)] = 219262, - [SMALL_STATE(9047)] = 219276, - [SMALL_STATE(9048)] = 219288, - [SMALL_STATE(9049)] = 219302, - [SMALL_STATE(9050)] = 219316, - [SMALL_STATE(9051)] = 219330, - [SMALL_STATE(9052)] = 219344, - [SMALL_STATE(9053)] = 219358, - [SMALL_STATE(9054)] = 219372, - [SMALL_STATE(9055)] = 219386, - [SMALL_STATE(9056)] = 219400, - [SMALL_STATE(9057)] = 219414, - [SMALL_STATE(9058)] = 219428, - [SMALL_STATE(9059)] = 219442, - [SMALL_STATE(9060)] = 219456, - [SMALL_STATE(9061)] = 219470, - [SMALL_STATE(9062)] = 219484, - [SMALL_STATE(9063)] = 219498, - [SMALL_STATE(9064)] = 219512, - [SMALL_STATE(9065)] = 219526, - [SMALL_STATE(9066)] = 219540, - [SMALL_STATE(9067)] = 219554, - [SMALL_STATE(9068)] = 219568, - [SMALL_STATE(9069)] = 219582, - [SMALL_STATE(9070)] = 219596, - [SMALL_STATE(9071)] = 219610, - [SMALL_STATE(9072)] = 219624, - [SMALL_STATE(9073)] = 219638, - [SMALL_STATE(9074)] = 219650, - [SMALL_STATE(9075)] = 219662, - [SMALL_STATE(9076)] = 219674, - [SMALL_STATE(9077)] = 219686, - [SMALL_STATE(9078)] = 219700, - [SMALL_STATE(9079)] = 219714, - [SMALL_STATE(9080)] = 219726, - [SMALL_STATE(9081)] = 219738, - [SMALL_STATE(9082)] = 219752, - [SMALL_STATE(9083)] = 219766, - [SMALL_STATE(9084)] = 219780, - [SMALL_STATE(9085)] = 219794, - [SMALL_STATE(9086)] = 219808, - [SMALL_STATE(9087)] = 219822, - [SMALL_STATE(9088)] = 219836, - [SMALL_STATE(9089)] = 219850, - [SMALL_STATE(9090)] = 219862, - [SMALL_STATE(9091)] = 219874, - [SMALL_STATE(9092)] = 219886, - [SMALL_STATE(9093)] = 219900, - [SMALL_STATE(9094)] = 219911, - [SMALL_STATE(9095)] = 219922, - [SMALL_STATE(9096)] = 219933, - [SMALL_STATE(9097)] = 219944, - [SMALL_STATE(9098)] = 219953, - [SMALL_STATE(9099)] = 219964, - [SMALL_STATE(9100)] = 219975, - [SMALL_STATE(9101)] = 219986, - [SMALL_STATE(9102)] = 219997, - [SMALL_STATE(9103)] = 220008, - [SMALL_STATE(9104)] = 220019, - [SMALL_STATE(9105)] = 220030, - [SMALL_STATE(9106)] = 220041, - [SMALL_STATE(9107)] = 220052, - [SMALL_STATE(9108)] = 220063, - [SMALL_STATE(9109)] = 220074, - [SMALL_STATE(9110)] = 220085, - [SMALL_STATE(9111)] = 220096, - [SMALL_STATE(9112)] = 220107, - [SMALL_STATE(9113)] = 220118, - [SMALL_STATE(9114)] = 220129, - [SMALL_STATE(9115)] = 220140, - [SMALL_STATE(9116)] = 220151, - [SMALL_STATE(9117)] = 220162, - [SMALL_STATE(9118)] = 220173, - [SMALL_STATE(9119)] = 220184, - [SMALL_STATE(9120)] = 220195, - [SMALL_STATE(9121)] = 220206, - [SMALL_STATE(9122)] = 220217, - [SMALL_STATE(9123)] = 220228, - [SMALL_STATE(9124)] = 220239, - [SMALL_STATE(9125)] = 220250, - [SMALL_STATE(9126)] = 220259, - [SMALL_STATE(9127)] = 220270, - [SMALL_STATE(9128)] = 220281, - [SMALL_STATE(9129)] = 220292, - [SMALL_STATE(9130)] = 220303, - [SMALL_STATE(9131)] = 220314, - [SMALL_STATE(9132)] = 220325, - [SMALL_STATE(9133)] = 220334, - [SMALL_STATE(9134)] = 220345, - [SMALL_STATE(9135)] = 220356, - [SMALL_STATE(9136)] = 220367, - [SMALL_STATE(9137)] = 220378, - [SMALL_STATE(9138)] = 220389, - [SMALL_STATE(9139)] = 220400, - [SMALL_STATE(9140)] = 220411, - [SMALL_STATE(9141)] = 220422, - [SMALL_STATE(9142)] = 220433, - [SMALL_STATE(9143)] = 220444, - [SMALL_STATE(9144)] = 220455, - [SMALL_STATE(9145)] = 220466, - [SMALL_STATE(9146)] = 220477, - [SMALL_STATE(9147)] = 220488, - [SMALL_STATE(9148)] = 220499, - [SMALL_STATE(9149)] = 220510, - [SMALL_STATE(9150)] = 220521, - [SMALL_STATE(9151)] = 220532, - [SMALL_STATE(9152)] = 220541, - [SMALL_STATE(9153)] = 220552, - [SMALL_STATE(9154)] = 220563, - [SMALL_STATE(9155)] = 220574, - [SMALL_STATE(9156)] = 220585, - [SMALL_STATE(9157)] = 220596, - [SMALL_STATE(9158)] = 220607, - [SMALL_STATE(9159)] = 220616, - [SMALL_STATE(9160)] = 220627, - [SMALL_STATE(9161)] = 220638, - [SMALL_STATE(9162)] = 220649, - [SMALL_STATE(9163)] = 220660, - [SMALL_STATE(9164)] = 220671, - [SMALL_STATE(9165)] = 220682, - [SMALL_STATE(9166)] = 220691, - [SMALL_STATE(9167)] = 220702, - [SMALL_STATE(9168)] = 220713, - [SMALL_STATE(9169)] = 220724, - [SMALL_STATE(9170)] = 220733, - [SMALL_STATE(9171)] = 220744, - [SMALL_STATE(9172)] = 220755, - [SMALL_STATE(9173)] = 220766, - [SMALL_STATE(9174)] = 220777, - [SMALL_STATE(9175)] = 220788, - [SMALL_STATE(9176)] = 220799, - [SMALL_STATE(9177)] = 220808, - [SMALL_STATE(9178)] = 220817, - [SMALL_STATE(9179)] = 220828, - [SMALL_STATE(9180)] = 220837, - [SMALL_STATE(9181)] = 220848, - [SMALL_STATE(9182)] = 220859, - [SMALL_STATE(9183)] = 220870, - [SMALL_STATE(9184)] = 220881, - [SMALL_STATE(9185)] = 220892, - [SMALL_STATE(9186)] = 220903, - [SMALL_STATE(9187)] = 220914, - [SMALL_STATE(9188)] = 220925, - [SMALL_STATE(9189)] = 220936, - [SMALL_STATE(9190)] = 220947, - [SMALL_STATE(9191)] = 220958, - [SMALL_STATE(9192)] = 220969, - [SMALL_STATE(9193)] = 220980, - [SMALL_STATE(9194)] = 220991, - [SMALL_STATE(9195)] = 221002, - [SMALL_STATE(9196)] = 221011, - [SMALL_STATE(9197)] = 221022, - [SMALL_STATE(9198)] = 221033, - [SMALL_STATE(9199)] = 221044, - [SMALL_STATE(9200)] = 221055, - [SMALL_STATE(9201)] = 221066, - [SMALL_STATE(9202)] = 221077, - [SMALL_STATE(9203)] = 221088, - [SMALL_STATE(9204)] = 221099, - [SMALL_STATE(9205)] = 221110, - [SMALL_STATE(9206)] = 221121, - [SMALL_STATE(9207)] = 221132, - [SMALL_STATE(9208)] = 221143, - [SMALL_STATE(9209)] = 221154, - [SMALL_STATE(9210)] = 221165, - [SMALL_STATE(9211)] = 221176, - [SMALL_STATE(9212)] = 221187, - [SMALL_STATE(9213)] = 221198, - [SMALL_STATE(9214)] = 221209, - [SMALL_STATE(9215)] = 221220, - [SMALL_STATE(9216)] = 221229, - [SMALL_STATE(9217)] = 221240, - [SMALL_STATE(9218)] = 221251, - [SMALL_STATE(9219)] = 221262, - [SMALL_STATE(9220)] = 221273, - [SMALL_STATE(9221)] = 221284, - [SMALL_STATE(9222)] = 221295, - [SMALL_STATE(9223)] = 221306, - [SMALL_STATE(9224)] = 221317, - [SMALL_STATE(9225)] = 221326, - [SMALL_STATE(9226)] = 221337, - [SMALL_STATE(9227)] = 221348, - [SMALL_STATE(9228)] = 221359, - [SMALL_STATE(9229)] = 221370, - [SMALL_STATE(9230)] = 221381, - [SMALL_STATE(9231)] = 221392, - [SMALL_STATE(9232)] = 221403, - [SMALL_STATE(9233)] = 221414, - [SMALL_STATE(9234)] = 221425, - [SMALL_STATE(9235)] = 221436, - [SMALL_STATE(9236)] = 221447, - [SMALL_STATE(9237)] = 221458, - [SMALL_STATE(9238)] = 221469, - [SMALL_STATE(9239)] = 221480, - [SMALL_STATE(9240)] = 221491, - [SMALL_STATE(9241)] = 221500, - [SMALL_STATE(9242)] = 221509, - [SMALL_STATE(9243)] = 221518, - [SMALL_STATE(9244)] = 221527, - [SMALL_STATE(9245)] = 221538, - [SMALL_STATE(9246)] = 221549, - [SMALL_STATE(9247)] = 221560, - [SMALL_STATE(9248)] = 221571, - [SMALL_STATE(9249)] = 221582, - [SMALL_STATE(9250)] = 221593, - [SMALL_STATE(9251)] = 221604, - [SMALL_STATE(9252)] = 221613, - [SMALL_STATE(9253)] = 221622, - [SMALL_STATE(9254)] = 221631, - [SMALL_STATE(9255)] = 221640, - [SMALL_STATE(9256)] = 221649, - [SMALL_STATE(9257)] = 221660, - [SMALL_STATE(9258)] = 221671, - [SMALL_STATE(9259)] = 221682, - [SMALL_STATE(9260)] = 221693, - [SMALL_STATE(9261)] = 221702, - [SMALL_STATE(9262)] = 221713, - [SMALL_STATE(9263)] = 221724, - [SMALL_STATE(9264)] = 221735, - [SMALL_STATE(9265)] = 221744, - [SMALL_STATE(9266)] = 221755, - [SMALL_STATE(9267)] = 221766, - [SMALL_STATE(9268)] = 221775, - [SMALL_STATE(9269)] = 221786, - [SMALL_STATE(9270)] = 221797, - [SMALL_STATE(9271)] = 221808, - [SMALL_STATE(9272)] = 221819, - [SMALL_STATE(9273)] = 221830, - [SMALL_STATE(9274)] = 221841, - [SMALL_STATE(9275)] = 221852, - [SMALL_STATE(9276)] = 221863, - [SMALL_STATE(9277)] = 221874, - [SMALL_STATE(9278)] = 221885, - [SMALL_STATE(9279)] = 221896, - [SMALL_STATE(9280)] = 221905, - [SMALL_STATE(9281)] = 221914, - [SMALL_STATE(9282)] = 221925, - [SMALL_STATE(9283)] = 221936, - [SMALL_STATE(9284)] = 221947, - [SMALL_STATE(9285)] = 221956, - [SMALL_STATE(9286)] = 221967, - [SMALL_STATE(9287)] = 221976, - [SMALL_STATE(9288)] = 221987, - [SMALL_STATE(9289)] = 221998, - [SMALL_STATE(9290)] = 222009, - [SMALL_STATE(9291)] = 222018, - [SMALL_STATE(9292)] = 222029, - [SMALL_STATE(9293)] = 222038, - [SMALL_STATE(9294)] = 222049, - [SMALL_STATE(9295)] = 222058, - [SMALL_STATE(9296)] = 222069, - [SMALL_STATE(9297)] = 222080, - [SMALL_STATE(9298)] = 222089, - [SMALL_STATE(9299)] = 222100, - [SMALL_STATE(9300)] = 222111, - [SMALL_STATE(9301)] = 222122, - [SMALL_STATE(9302)] = 222131, - [SMALL_STATE(9303)] = 222142, - [SMALL_STATE(9304)] = 222153, - [SMALL_STATE(9305)] = 222164, - [SMALL_STATE(9306)] = 222173, - [SMALL_STATE(9307)] = 222184, - [SMALL_STATE(9308)] = 222195, - [SMALL_STATE(9309)] = 222204, - [SMALL_STATE(9310)] = 222215, - [SMALL_STATE(9311)] = 222226, - [SMALL_STATE(9312)] = 222235, - [SMALL_STATE(9313)] = 222246, - [SMALL_STATE(9314)] = 222257, - [SMALL_STATE(9315)] = 222266, - [SMALL_STATE(9316)] = 222275, - [SMALL_STATE(9317)] = 222286, - [SMALL_STATE(9318)] = 222297, - [SMALL_STATE(9319)] = 222308, - [SMALL_STATE(9320)] = 222317, - [SMALL_STATE(9321)] = 222328, - [SMALL_STATE(9322)] = 222339, - [SMALL_STATE(9323)] = 222350, - [SMALL_STATE(9324)] = 222359, - [SMALL_STATE(9325)] = 222370, - [SMALL_STATE(9326)] = 222381, - [SMALL_STATE(9327)] = 222392, - [SMALL_STATE(9328)] = 222401, - [SMALL_STATE(9329)] = 222412, - [SMALL_STATE(9330)] = 222423, - [SMALL_STATE(9331)] = 222434, - [SMALL_STATE(9332)] = 222443, - [SMALL_STATE(9333)] = 222454, - [SMALL_STATE(9334)] = 222463, - [SMALL_STATE(9335)] = 222474, - [SMALL_STATE(9336)] = 222485, - [SMALL_STATE(9337)] = 222496, - [SMALL_STATE(9338)] = 222507, - [SMALL_STATE(9339)] = 222518, - [SMALL_STATE(9340)] = 222529, - [SMALL_STATE(9341)] = 222538, - [SMALL_STATE(9342)] = 222547, - [SMALL_STATE(9343)] = 222558, - [SMALL_STATE(9344)] = 222569, - [SMALL_STATE(9345)] = 222580, - [SMALL_STATE(9346)] = 222591, - [SMALL_STATE(9347)] = 222602, - [SMALL_STATE(9348)] = 222613, - [SMALL_STATE(9349)] = 222622, - [SMALL_STATE(9350)] = 222633, - [SMALL_STATE(9351)] = 222644, - [SMALL_STATE(9352)] = 222655, - [SMALL_STATE(9353)] = 222666, - [SMALL_STATE(9354)] = 222675, - [SMALL_STATE(9355)] = 222684, - [SMALL_STATE(9356)] = 222693, - [SMALL_STATE(9357)] = 222702, - [SMALL_STATE(9358)] = 222713, - [SMALL_STATE(9359)] = 222724, - [SMALL_STATE(9360)] = 222735, - [SMALL_STATE(9361)] = 222746, - [SMALL_STATE(9362)] = 222755, - [SMALL_STATE(9363)] = 222766, - [SMALL_STATE(9364)] = 222777, - [SMALL_STATE(9365)] = 222788, - [SMALL_STATE(9366)] = 222799, - [SMALL_STATE(9367)] = 222810, - [SMALL_STATE(9368)] = 222819, - [SMALL_STATE(9369)] = 222828, - [SMALL_STATE(9370)] = 222837, - [SMALL_STATE(9371)] = 222848, - [SMALL_STATE(9372)] = 222857, - [SMALL_STATE(9373)] = 222866, - [SMALL_STATE(9374)] = 222877, - [SMALL_STATE(9375)] = 222888, - [SMALL_STATE(9376)] = 222899, - [SMALL_STATE(9377)] = 222910, - [SMALL_STATE(9378)] = 222921, - [SMALL_STATE(9379)] = 222932, - [SMALL_STATE(9380)] = 222941, - [SMALL_STATE(9381)] = 222950, - [SMALL_STATE(9382)] = 222959, - [SMALL_STATE(9383)] = 222968, - [SMALL_STATE(9384)] = 222977, - [SMALL_STATE(9385)] = 222986, - [SMALL_STATE(9386)] = 222997, - [SMALL_STATE(9387)] = 223006, - [SMALL_STATE(9388)] = 223017, - [SMALL_STATE(9389)] = 223028, - [SMALL_STATE(9390)] = 223039, - [SMALL_STATE(9391)] = 223048, - [SMALL_STATE(9392)] = 223057, - [SMALL_STATE(9393)] = 223068, - [SMALL_STATE(9394)] = 223079, - [SMALL_STATE(9395)] = 223090, - [SMALL_STATE(9396)] = 223101, - [SMALL_STATE(9397)] = 223112, - [SMALL_STATE(9398)] = 223123, - [SMALL_STATE(9399)] = 223132, - [SMALL_STATE(9400)] = 223143, - [SMALL_STATE(9401)] = 223152, - [SMALL_STATE(9402)] = 223161, - [SMALL_STATE(9403)] = 223170, - [SMALL_STATE(9404)] = 223181, - [SMALL_STATE(9405)] = 223192, - [SMALL_STATE(9406)] = 223203, - [SMALL_STATE(9407)] = 223214, - [SMALL_STATE(9408)] = 223223, - [SMALL_STATE(9409)] = 223234, - [SMALL_STATE(9410)] = 223245, - [SMALL_STATE(9411)] = 223254, - [SMALL_STATE(9412)] = 223265, - [SMALL_STATE(9413)] = 223274, - [SMALL_STATE(9414)] = 223285, - [SMALL_STATE(9415)] = 223296, - [SMALL_STATE(9416)] = 223307, - [SMALL_STATE(9417)] = 223316, - [SMALL_STATE(9418)] = 223327, - [SMALL_STATE(9419)] = 223336, - [SMALL_STATE(9420)] = 223345, - [SMALL_STATE(9421)] = 223356, - [SMALL_STATE(9422)] = 223367, - [SMALL_STATE(9423)] = 223376, - [SMALL_STATE(9424)] = 223385, - [SMALL_STATE(9425)] = 223396, - [SMALL_STATE(9426)] = 223407, - [SMALL_STATE(9427)] = 223416, - [SMALL_STATE(9428)] = 223427, - [SMALL_STATE(9429)] = 223436, - [SMALL_STATE(9430)] = 223447, - [SMALL_STATE(9431)] = 223456, - [SMALL_STATE(9432)] = 223465, - [SMALL_STATE(9433)] = 223474, - [SMALL_STATE(9434)] = 223483, - [SMALL_STATE(9435)] = 223494, - [SMALL_STATE(9436)] = 223505, - [SMALL_STATE(9437)] = 223514, - [SMALL_STATE(9438)] = 223523, - [SMALL_STATE(9439)] = 223534, - [SMALL_STATE(9440)] = 223543, - [SMALL_STATE(9441)] = 223552, - [SMALL_STATE(9442)] = 223563, - [SMALL_STATE(9443)] = 223572, - [SMALL_STATE(9444)] = 223581, - [SMALL_STATE(9445)] = 223590, - [SMALL_STATE(9446)] = 223601, - [SMALL_STATE(9447)] = 223612, - [SMALL_STATE(9448)] = 223623, - [SMALL_STATE(9449)] = 223634, - [SMALL_STATE(9450)] = 223645, - [SMALL_STATE(9451)] = 223656, - [SMALL_STATE(9452)] = 223665, - [SMALL_STATE(9453)] = 223676, - [SMALL_STATE(9454)] = 223685, - [SMALL_STATE(9455)] = 223696, - [SMALL_STATE(9456)] = 223705, - [SMALL_STATE(9457)] = 223716, - [SMALL_STATE(9458)] = 223725, - [SMALL_STATE(9459)] = 223734, - [SMALL_STATE(9460)] = 223743, - [SMALL_STATE(9461)] = 223754, - [SMALL_STATE(9462)] = 223762, - [SMALL_STATE(9463)] = 223770, - [SMALL_STATE(9464)] = 223778, - [SMALL_STATE(9465)] = 223786, - [SMALL_STATE(9466)] = 223794, - [SMALL_STATE(9467)] = 223802, - [SMALL_STATE(9468)] = 223810, - [SMALL_STATE(9469)] = 223818, - [SMALL_STATE(9470)] = 223826, - [SMALL_STATE(9471)] = 223834, - [SMALL_STATE(9472)] = 223842, - [SMALL_STATE(9473)] = 223850, - [SMALL_STATE(9474)] = 223858, - [SMALL_STATE(9475)] = 223866, - [SMALL_STATE(9476)] = 223874, - [SMALL_STATE(9477)] = 223882, - [SMALL_STATE(9478)] = 223890, - [SMALL_STATE(9479)] = 223898, - [SMALL_STATE(9480)] = 223906, - [SMALL_STATE(9481)] = 223914, - [SMALL_STATE(9482)] = 223922, - [SMALL_STATE(9483)] = 223930, - [SMALL_STATE(9484)] = 223938, - [SMALL_STATE(9485)] = 223946, - [SMALL_STATE(9486)] = 223954, - [SMALL_STATE(9487)] = 223962, - [SMALL_STATE(9488)] = 223970, - [SMALL_STATE(9489)] = 223978, - [SMALL_STATE(9490)] = 223986, - [SMALL_STATE(9491)] = 223994, - [SMALL_STATE(9492)] = 224002, - [SMALL_STATE(9493)] = 224010, - [SMALL_STATE(9494)] = 224018, - [SMALL_STATE(9495)] = 224026, - [SMALL_STATE(9496)] = 224034, - [SMALL_STATE(9497)] = 224042, - [SMALL_STATE(9498)] = 224050, - [SMALL_STATE(9499)] = 224058, - [SMALL_STATE(9500)] = 224066, - [SMALL_STATE(9501)] = 224074, - [SMALL_STATE(9502)] = 224082, - [SMALL_STATE(9503)] = 224090, - [SMALL_STATE(9504)] = 224098, - [SMALL_STATE(9505)] = 224106, - [SMALL_STATE(9506)] = 224114, - [SMALL_STATE(9507)] = 224122, - [SMALL_STATE(9508)] = 224130, - [SMALL_STATE(9509)] = 224138, - [SMALL_STATE(9510)] = 224146, - [SMALL_STATE(9511)] = 224154, - [SMALL_STATE(9512)] = 224162, - [SMALL_STATE(9513)] = 224170, - [SMALL_STATE(9514)] = 224178, - [SMALL_STATE(9515)] = 224186, - [SMALL_STATE(9516)] = 224194, - [SMALL_STATE(9517)] = 224202, - [SMALL_STATE(9518)] = 224210, - [SMALL_STATE(9519)] = 224218, - [SMALL_STATE(9520)] = 224226, - [SMALL_STATE(9521)] = 224234, - [SMALL_STATE(9522)] = 224242, - [SMALL_STATE(9523)] = 224250, - [SMALL_STATE(9524)] = 224258, - [SMALL_STATE(9525)] = 224266, - [SMALL_STATE(9526)] = 224274, - [SMALL_STATE(9527)] = 224282, - [SMALL_STATE(9528)] = 224290, - [SMALL_STATE(9529)] = 224298, - [SMALL_STATE(9530)] = 224306, - [SMALL_STATE(9531)] = 224314, - [SMALL_STATE(9532)] = 224322, - [SMALL_STATE(9533)] = 224330, - [SMALL_STATE(9534)] = 224338, - [SMALL_STATE(9535)] = 224346, - [SMALL_STATE(9536)] = 224354, - [SMALL_STATE(9537)] = 224362, - [SMALL_STATE(9538)] = 224370, - [SMALL_STATE(9539)] = 224378, - [SMALL_STATE(9540)] = 224386, - [SMALL_STATE(9541)] = 224394, - [SMALL_STATE(9542)] = 224402, - [SMALL_STATE(9543)] = 224410, - [SMALL_STATE(9544)] = 224418, - [SMALL_STATE(9545)] = 224426, - [SMALL_STATE(9546)] = 224434, - [SMALL_STATE(9547)] = 224442, - [SMALL_STATE(9548)] = 224450, - [SMALL_STATE(9549)] = 224458, - [SMALL_STATE(9550)] = 224466, - [SMALL_STATE(9551)] = 224474, - [SMALL_STATE(9552)] = 224482, - [SMALL_STATE(9553)] = 224490, - [SMALL_STATE(9554)] = 224498, - [SMALL_STATE(9555)] = 224506, - [SMALL_STATE(9556)] = 224514, - [SMALL_STATE(9557)] = 224522, - [SMALL_STATE(9558)] = 224530, - [SMALL_STATE(9559)] = 224538, - [SMALL_STATE(9560)] = 224546, - [SMALL_STATE(9561)] = 224554, - [SMALL_STATE(9562)] = 224562, - [SMALL_STATE(9563)] = 224570, - [SMALL_STATE(9564)] = 224578, - [SMALL_STATE(9565)] = 224586, - [SMALL_STATE(9566)] = 224594, - [SMALL_STATE(9567)] = 224602, - [SMALL_STATE(9568)] = 224610, - [SMALL_STATE(9569)] = 224618, - [SMALL_STATE(9570)] = 224626, - [SMALL_STATE(9571)] = 224634, - [SMALL_STATE(9572)] = 224642, - [SMALL_STATE(9573)] = 224650, - [SMALL_STATE(9574)] = 224658, - [SMALL_STATE(9575)] = 224666, - [SMALL_STATE(9576)] = 224674, - [SMALL_STATE(9577)] = 224682, - [SMALL_STATE(9578)] = 224690, - [SMALL_STATE(9579)] = 224698, - [SMALL_STATE(9580)] = 224706, - [SMALL_STATE(9581)] = 224714, - [SMALL_STATE(9582)] = 224722, - [SMALL_STATE(9583)] = 224730, - [SMALL_STATE(9584)] = 224738, - [SMALL_STATE(9585)] = 224746, - [SMALL_STATE(9586)] = 224754, - [SMALL_STATE(9587)] = 224762, - [SMALL_STATE(9588)] = 224770, - [SMALL_STATE(9589)] = 224778, - [SMALL_STATE(9590)] = 224786, - [SMALL_STATE(9591)] = 224794, - [SMALL_STATE(9592)] = 224802, - [SMALL_STATE(9593)] = 224810, - [SMALL_STATE(9594)] = 224818, - [SMALL_STATE(9595)] = 224826, - [SMALL_STATE(9596)] = 224834, - [SMALL_STATE(9597)] = 224842, - [SMALL_STATE(9598)] = 224850, - [SMALL_STATE(9599)] = 224858, - [SMALL_STATE(9600)] = 224866, - [SMALL_STATE(9601)] = 224874, - [SMALL_STATE(9602)] = 224882, - [SMALL_STATE(9603)] = 224890, - [SMALL_STATE(9604)] = 224898, - [SMALL_STATE(9605)] = 224906, - [SMALL_STATE(9606)] = 224914, - [SMALL_STATE(9607)] = 224922, - [SMALL_STATE(9608)] = 224930, - [SMALL_STATE(9609)] = 224938, - [SMALL_STATE(9610)] = 224946, - [SMALL_STATE(9611)] = 224954, - [SMALL_STATE(9612)] = 224962, - [SMALL_STATE(9613)] = 224970, - [SMALL_STATE(9614)] = 224978, - [SMALL_STATE(9615)] = 224986, - [SMALL_STATE(9616)] = 224994, - [SMALL_STATE(9617)] = 225002, - [SMALL_STATE(9618)] = 225010, - [SMALL_STATE(9619)] = 225018, - [SMALL_STATE(9620)] = 225026, - [SMALL_STATE(9621)] = 225034, - [SMALL_STATE(9622)] = 225042, - [SMALL_STATE(9623)] = 225050, - [SMALL_STATE(9624)] = 225058, - [SMALL_STATE(9625)] = 225066, - [SMALL_STATE(9626)] = 225074, - [SMALL_STATE(9627)] = 225082, - [SMALL_STATE(9628)] = 225090, - [SMALL_STATE(9629)] = 225098, - [SMALL_STATE(9630)] = 225106, - [SMALL_STATE(9631)] = 225114, - [SMALL_STATE(9632)] = 225122, - [SMALL_STATE(9633)] = 225130, - [SMALL_STATE(9634)] = 225138, - [SMALL_STATE(9635)] = 225146, - [SMALL_STATE(9636)] = 225154, - [SMALL_STATE(9637)] = 225162, - [SMALL_STATE(9638)] = 225170, - [SMALL_STATE(9639)] = 225178, - [SMALL_STATE(9640)] = 225186, - [SMALL_STATE(9641)] = 225194, - [SMALL_STATE(9642)] = 225202, - [SMALL_STATE(9643)] = 225210, - [SMALL_STATE(9644)] = 225218, - [SMALL_STATE(9645)] = 225226, - [SMALL_STATE(9646)] = 225234, - [SMALL_STATE(9647)] = 225242, - [SMALL_STATE(9648)] = 225250, - [SMALL_STATE(9649)] = 225258, - [SMALL_STATE(9650)] = 225266, - [SMALL_STATE(9651)] = 225274, - [SMALL_STATE(9652)] = 225282, - [SMALL_STATE(9653)] = 225290, - [SMALL_STATE(9654)] = 225298, - [SMALL_STATE(9655)] = 225306, - [SMALL_STATE(9656)] = 225314, - [SMALL_STATE(9657)] = 225322, - [SMALL_STATE(9658)] = 225330, - [SMALL_STATE(9659)] = 225338, - [SMALL_STATE(9660)] = 225346, - [SMALL_STATE(9661)] = 225354, - [SMALL_STATE(9662)] = 225362, - [SMALL_STATE(9663)] = 225370, - [SMALL_STATE(9664)] = 225378, - [SMALL_STATE(9665)] = 225386, - [SMALL_STATE(9666)] = 225394, - [SMALL_STATE(9667)] = 225402, - [SMALL_STATE(9668)] = 225410, - [SMALL_STATE(9669)] = 225418, - [SMALL_STATE(9670)] = 225426, - [SMALL_STATE(9671)] = 225434, - [SMALL_STATE(9672)] = 225442, - [SMALL_STATE(9673)] = 225450, - [SMALL_STATE(9674)] = 225458, - [SMALL_STATE(9675)] = 225466, - [SMALL_STATE(9676)] = 225474, - [SMALL_STATE(9677)] = 225482, - [SMALL_STATE(9678)] = 225490, - [SMALL_STATE(9679)] = 225498, - [SMALL_STATE(9680)] = 225506, - [SMALL_STATE(9681)] = 225514, - [SMALL_STATE(9682)] = 225522, - [SMALL_STATE(9683)] = 225530, - [SMALL_STATE(9684)] = 225538, - [SMALL_STATE(9685)] = 225546, - [SMALL_STATE(9686)] = 225554, - [SMALL_STATE(9687)] = 225562, - [SMALL_STATE(9688)] = 225570, - [SMALL_STATE(9689)] = 225578, - [SMALL_STATE(9690)] = 225586, - [SMALL_STATE(9691)] = 225594, - [SMALL_STATE(9692)] = 225602, - [SMALL_STATE(9693)] = 225610, - [SMALL_STATE(9694)] = 225618, - [SMALL_STATE(9695)] = 225626, - [SMALL_STATE(9696)] = 225634, - [SMALL_STATE(9697)] = 225642, - [SMALL_STATE(9698)] = 225650, - [SMALL_STATE(9699)] = 225658, - [SMALL_STATE(9700)] = 225666, - [SMALL_STATE(9701)] = 225674, - [SMALL_STATE(9702)] = 225682, - [SMALL_STATE(9703)] = 225690, - [SMALL_STATE(9704)] = 225698, - [SMALL_STATE(9705)] = 225706, - [SMALL_STATE(9706)] = 225714, - [SMALL_STATE(9707)] = 225722, - [SMALL_STATE(9708)] = 225730, - [SMALL_STATE(9709)] = 225738, - [SMALL_STATE(9710)] = 225746, - [SMALL_STATE(9711)] = 225754, - [SMALL_STATE(9712)] = 225762, - [SMALL_STATE(9713)] = 225770, - [SMALL_STATE(9714)] = 225778, - [SMALL_STATE(9715)] = 225786, - [SMALL_STATE(9716)] = 225794, - [SMALL_STATE(9717)] = 225802, - [SMALL_STATE(9718)] = 225810, - [SMALL_STATE(9719)] = 225818, - [SMALL_STATE(9720)] = 225826, - [SMALL_STATE(9721)] = 225834, - [SMALL_STATE(9722)] = 225842, - [SMALL_STATE(9723)] = 225850, - [SMALL_STATE(9724)] = 225858, - [SMALL_STATE(9725)] = 225866, - [SMALL_STATE(9726)] = 225874, - [SMALL_STATE(9727)] = 225882, - [SMALL_STATE(9728)] = 225890, - [SMALL_STATE(9729)] = 225898, - [SMALL_STATE(9730)] = 225906, - [SMALL_STATE(9731)] = 225914, - [SMALL_STATE(9732)] = 225922, - [SMALL_STATE(9733)] = 225930, - [SMALL_STATE(9734)] = 225938, - [SMALL_STATE(9735)] = 225946, - [SMALL_STATE(9736)] = 225954, - [SMALL_STATE(9737)] = 225962, - [SMALL_STATE(9738)] = 225970, - [SMALL_STATE(9739)] = 225978, - [SMALL_STATE(9740)] = 225986, - [SMALL_STATE(9741)] = 225994, - [SMALL_STATE(9742)] = 226002, - [SMALL_STATE(9743)] = 226010, - [SMALL_STATE(9744)] = 226018, - [SMALL_STATE(9745)] = 226026, - [SMALL_STATE(9746)] = 226034, - [SMALL_STATE(9747)] = 226042, - [SMALL_STATE(9748)] = 226050, - [SMALL_STATE(9749)] = 226058, - [SMALL_STATE(9750)] = 226066, - [SMALL_STATE(9751)] = 226074, - [SMALL_STATE(9752)] = 226082, - [SMALL_STATE(9753)] = 226090, - [SMALL_STATE(9754)] = 226098, - [SMALL_STATE(9755)] = 226106, - [SMALL_STATE(9756)] = 226114, - [SMALL_STATE(9757)] = 226122, - [SMALL_STATE(9758)] = 226130, - [SMALL_STATE(9759)] = 226138, - [SMALL_STATE(9760)] = 226146, - [SMALL_STATE(9761)] = 226154, - [SMALL_STATE(9762)] = 226162, - [SMALL_STATE(9763)] = 226170, - [SMALL_STATE(9764)] = 226178, - [SMALL_STATE(9765)] = 226186, - [SMALL_STATE(9766)] = 226194, - [SMALL_STATE(9767)] = 226202, - [SMALL_STATE(9768)] = 226210, - [SMALL_STATE(9769)] = 226218, - [SMALL_STATE(9770)] = 226226, - [SMALL_STATE(9771)] = 226234, - [SMALL_STATE(9772)] = 226242, - [SMALL_STATE(9773)] = 226250, - [SMALL_STATE(9774)] = 226258, - [SMALL_STATE(9775)] = 226266, - [SMALL_STATE(9776)] = 226274, - [SMALL_STATE(9777)] = 226282, - [SMALL_STATE(9778)] = 226290, - [SMALL_STATE(9779)] = 226298, - [SMALL_STATE(9780)] = 226306, - [SMALL_STATE(9781)] = 226314, - [SMALL_STATE(9782)] = 226322, - [SMALL_STATE(9783)] = 226330, - [SMALL_STATE(9784)] = 226338, - [SMALL_STATE(9785)] = 226346, - [SMALL_STATE(9786)] = 226354, - [SMALL_STATE(9787)] = 226362, - [SMALL_STATE(9788)] = 226370, - [SMALL_STATE(9789)] = 226378, - [SMALL_STATE(9790)] = 226386, - [SMALL_STATE(9791)] = 226394, - [SMALL_STATE(9792)] = 226402, - [SMALL_STATE(9793)] = 226410, - [SMALL_STATE(9794)] = 226418, - [SMALL_STATE(9795)] = 226426, - [SMALL_STATE(9796)] = 226434, - [SMALL_STATE(9797)] = 226442, - [SMALL_STATE(9798)] = 226450, - [SMALL_STATE(9799)] = 226458, - [SMALL_STATE(9800)] = 226466, - [SMALL_STATE(9801)] = 226474, - [SMALL_STATE(9802)] = 226482, - [SMALL_STATE(9803)] = 226490, - [SMALL_STATE(9804)] = 226498, - [SMALL_STATE(9805)] = 226506, - [SMALL_STATE(9806)] = 226514, - [SMALL_STATE(9807)] = 226522, - [SMALL_STATE(9808)] = 226530, - [SMALL_STATE(9809)] = 226538, - [SMALL_STATE(9810)] = 226546, - [SMALL_STATE(9811)] = 226554, - [SMALL_STATE(9812)] = 226562, - [SMALL_STATE(9813)] = 226570, - [SMALL_STATE(9814)] = 226578, - [SMALL_STATE(9815)] = 226586, - [SMALL_STATE(9816)] = 226594, - [SMALL_STATE(9817)] = 226602, - [SMALL_STATE(9818)] = 226610, - [SMALL_STATE(9819)] = 226618, - [SMALL_STATE(9820)] = 226626, - [SMALL_STATE(9821)] = 226634, - [SMALL_STATE(9822)] = 226642, - [SMALL_STATE(9823)] = 226650, - [SMALL_STATE(9824)] = 226658, - [SMALL_STATE(9825)] = 226666, - [SMALL_STATE(9826)] = 226674, - [SMALL_STATE(9827)] = 226682, - [SMALL_STATE(9828)] = 226690, - [SMALL_STATE(9829)] = 226698, - [SMALL_STATE(9830)] = 226706, - [SMALL_STATE(9831)] = 226714, - [SMALL_STATE(9832)] = 226722, - [SMALL_STATE(9833)] = 226730, - [SMALL_STATE(9834)] = 226738, - [SMALL_STATE(9835)] = 226746, - [SMALL_STATE(9836)] = 226754, - [SMALL_STATE(9837)] = 226762, - [SMALL_STATE(9838)] = 226770, - [SMALL_STATE(9839)] = 226778, - [SMALL_STATE(9840)] = 226786, - [SMALL_STATE(9841)] = 226794, - [SMALL_STATE(9842)] = 226802, - [SMALL_STATE(9843)] = 226810, - [SMALL_STATE(9844)] = 226818, - [SMALL_STATE(9845)] = 226826, - [SMALL_STATE(9846)] = 226834, - [SMALL_STATE(9847)] = 226842, - [SMALL_STATE(9848)] = 226850, - [SMALL_STATE(9849)] = 226858, - [SMALL_STATE(9850)] = 226866, - [SMALL_STATE(9851)] = 226874, - [SMALL_STATE(9852)] = 226882, - [SMALL_STATE(9853)] = 226890, - [SMALL_STATE(9854)] = 226898, - [SMALL_STATE(9855)] = 226906, - [SMALL_STATE(9856)] = 226914, - [SMALL_STATE(9857)] = 226922, - [SMALL_STATE(9858)] = 226930, - [SMALL_STATE(9859)] = 226938, - [SMALL_STATE(9860)] = 226946, - [SMALL_STATE(9861)] = 226954, - [SMALL_STATE(9862)] = 226962, - [SMALL_STATE(9863)] = 226970, - [SMALL_STATE(9864)] = 226978, - [SMALL_STATE(9865)] = 226986, - [SMALL_STATE(9866)] = 226994, - [SMALL_STATE(9867)] = 227002, - [SMALL_STATE(9868)] = 227010, - [SMALL_STATE(9869)] = 227018, - [SMALL_STATE(9870)] = 227026, - [SMALL_STATE(9871)] = 227034, - [SMALL_STATE(9872)] = 227042, - [SMALL_STATE(9873)] = 227050, - [SMALL_STATE(9874)] = 227058, - [SMALL_STATE(9875)] = 227066, - [SMALL_STATE(9876)] = 227074, - [SMALL_STATE(9877)] = 227082, - [SMALL_STATE(9878)] = 227090, - [SMALL_STATE(9879)] = 227098, - [SMALL_STATE(9880)] = 227106, - [SMALL_STATE(9881)] = 227114, - [SMALL_STATE(9882)] = 227122, - [SMALL_STATE(9883)] = 227130, - [SMALL_STATE(9884)] = 227138, - [SMALL_STATE(9885)] = 227146, - [SMALL_STATE(9886)] = 227154, - [SMALL_STATE(9887)] = 227162, - [SMALL_STATE(9888)] = 227170, - [SMALL_STATE(9889)] = 227178, - [SMALL_STATE(9890)] = 227186, - [SMALL_STATE(9891)] = 227194, - [SMALL_STATE(9892)] = 227202, - [SMALL_STATE(9893)] = 227210, - [SMALL_STATE(9894)] = 227218, - [SMALL_STATE(9895)] = 227226, - [SMALL_STATE(9896)] = 227234, - [SMALL_STATE(9897)] = 227242, - [SMALL_STATE(9898)] = 227250, - [SMALL_STATE(9899)] = 227258, - [SMALL_STATE(9900)] = 227266, - [SMALL_STATE(9901)] = 227274, - [SMALL_STATE(9902)] = 227282, - [SMALL_STATE(9903)] = 227290, - [SMALL_STATE(9904)] = 227298, - [SMALL_STATE(9905)] = 227306, - [SMALL_STATE(9906)] = 227314, - [SMALL_STATE(9907)] = 227322, - [SMALL_STATE(9908)] = 227330, - [SMALL_STATE(9909)] = 227338, - [SMALL_STATE(9910)] = 227346, - [SMALL_STATE(9911)] = 227354, - [SMALL_STATE(9912)] = 227362, - [SMALL_STATE(9913)] = 227370, - [SMALL_STATE(9914)] = 227378, - [SMALL_STATE(9915)] = 227386, - [SMALL_STATE(9916)] = 227394, - [SMALL_STATE(9917)] = 227402, - [SMALL_STATE(9918)] = 227410, - [SMALL_STATE(9919)] = 227418, - [SMALL_STATE(9920)] = 227426, - [SMALL_STATE(9921)] = 227434, - [SMALL_STATE(9922)] = 227442, - [SMALL_STATE(9923)] = 227450, - [SMALL_STATE(9924)] = 227458, - [SMALL_STATE(9925)] = 227466, - [SMALL_STATE(9926)] = 227474, - [SMALL_STATE(9927)] = 227482, - [SMALL_STATE(9928)] = 227490, - [SMALL_STATE(9929)] = 227498, - [SMALL_STATE(9930)] = 227506, - [SMALL_STATE(9931)] = 227514, - [SMALL_STATE(9932)] = 227522, - [SMALL_STATE(9933)] = 227530, - [SMALL_STATE(9934)] = 227538, - [SMALL_STATE(9935)] = 227546, - [SMALL_STATE(9936)] = 227554, - [SMALL_STATE(9937)] = 227562, - [SMALL_STATE(9938)] = 227570, - [SMALL_STATE(9939)] = 227578, - [SMALL_STATE(9940)] = 227586, - [SMALL_STATE(9941)] = 227594, - [SMALL_STATE(9942)] = 227602, - [SMALL_STATE(9943)] = 227610, - [SMALL_STATE(9944)] = 227618, - [SMALL_STATE(9945)] = 227626, - [SMALL_STATE(9946)] = 227634, - [SMALL_STATE(9947)] = 227642, - [SMALL_STATE(9948)] = 227650, - [SMALL_STATE(9949)] = 227658, - [SMALL_STATE(9950)] = 227666, - [SMALL_STATE(9951)] = 227674, - [SMALL_STATE(9952)] = 227682, - [SMALL_STATE(9953)] = 227690, - [SMALL_STATE(9954)] = 227698, - [SMALL_STATE(9955)] = 227706, - [SMALL_STATE(9956)] = 227714, - [SMALL_STATE(9957)] = 227722, - [SMALL_STATE(9958)] = 227730, - [SMALL_STATE(9959)] = 227738, - [SMALL_STATE(9960)] = 227746, - [SMALL_STATE(9961)] = 227754, - [SMALL_STATE(9962)] = 227762, - [SMALL_STATE(9963)] = 227770, - [SMALL_STATE(9964)] = 227778, - [SMALL_STATE(9965)] = 227786, - [SMALL_STATE(9966)] = 227794, - [SMALL_STATE(9967)] = 227802, - [SMALL_STATE(9968)] = 227810, - [SMALL_STATE(9969)] = 227818, - [SMALL_STATE(9970)] = 227826, - [SMALL_STATE(9971)] = 227834, - [SMALL_STATE(9972)] = 227842, - [SMALL_STATE(9973)] = 227850, - [SMALL_STATE(9974)] = 227858, - [SMALL_STATE(9975)] = 227866, - [SMALL_STATE(9976)] = 227874, - [SMALL_STATE(9977)] = 227882, - [SMALL_STATE(9978)] = 227890, - [SMALL_STATE(9979)] = 227898, - [SMALL_STATE(9980)] = 227906, - [SMALL_STATE(9981)] = 227914, - [SMALL_STATE(9982)] = 227922, - [SMALL_STATE(9983)] = 227930, - [SMALL_STATE(9984)] = 227938, - [SMALL_STATE(9985)] = 227946, - [SMALL_STATE(9986)] = 227954, - [SMALL_STATE(9987)] = 227962, - [SMALL_STATE(9988)] = 227970, - [SMALL_STATE(9989)] = 227978, - [SMALL_STATE(9990)] = 227986, - [SMALL_STATE(9991)] = 227994, - [SMALL_STATE(9992)] = 228002, - [SMALL_STATE(9993)] = 228010, - [SMALL_STATE(9994)] = 228018, - [SMALL_STATE(9995)] = 228026, - [SMALL_STATE(9996)] = 228034, - [SMALL_STATE(9997)] = 228042, - [SMALL_STATE(9998)] = 228050, - [SMALL_STATE(9999)] = 228058, - [SMALL_STATE(10000)] = 228066, - [SMALL_STATE(10001)] = 228074, - [SMALL_STATE(10002)] = 228082, - [SMALL_STATE(10003)] = 228090, - [SMALL_STATE(10004)] = 228098, - [SMALL_STATE(10005)] = 228106, - [SMALL_STATE(10006)] = 228114, - [SMALL_STATE(10007)] = 228122, - [SMALL_STATE(10008)] = 228130, - [SMALL_STATE(10009)] = 228138, - [SMALL_STATE(10010)] = 228146, - [SMALL_STATE(10011)] = 228154, - [SMALL_STATE(10012)] = 228162, - [SMALL_STATE(10013)] = 228170, - [SMALL_STATE(10014)] = 228178, - [SMALL_STATE(10015)] = 228186, - [SMALL_STATE(10016)] = 228194, - [SMALL_STATE(10017)] = 228202, - [SMALL_STATE(10018)] = 228210, - [SMALL_STATE(10019)] = 228218, - [SMALL_STATE(10020)] = 228226, - [SMALL_STATE(10021)] = 228234, - [SMALL_STATE(10022)] = 228242, - [SMALL_STATE(10023)] = 228250, - [SMALL_STATE(10024)] = 228258, - [SMALL_STATE(10025)] = 228266, - [SMALL_STATE(10026)] = 228274, - [SMALL_STATE(10027)] = 228282, - [SMALL_STATE(10028)] = 228290, - [SMALL_STATE(10029)] = 228298, - [SMALL_STATE(10030)] = 228306, - [SMALL_STATE(10031)] = 228314, - [SMALL_STATE(10032)] = 228322, - [SMALL_STATE(10033)] = 228330, - [SMALL_STATE(10034)] = 228338, - [SMALL_STATE(10035)] = 228346, - [SMALL_STATE(10036)] = 228354, - [SMALL_STATE(10037)] = 228362, - [SMALL_STATE(10038)] = 228370, - [SMALL_STATE(10039)] = 228378, - [SMALL_STATE(10040)] = 228386, - [SMALL_STATE(10041)] = 228394, - [SMALL_STATE(10042)] = 228402, - [SMALL_STATE(10043)] = 228410, - [SMALL_STATE(10044)] = 228418, - [SMALL_STATE(10045)] = 228426, - [SMALL_STATE(10046)] = 228434, - [SMALL_STATE(10047)] = 228442, - [SMALL_STATE(10048)] = 228450, - [SMALL_STATE(10049)] = 228458, - [SMALL_STATE(10050)] = 228466, - [SMALL_STATE(10051)] = 228474, - [SMALL_STATE(10052)] = 228482, - [SMALL_STATE(10053)] = 228490, - [SMALL_STATE(10054)] = 228498, - [SMALL_STATE(10055)] = 228506, - [SMALL_STATE(10056)] = 228514, - [SMALL_STATE(10057)] = 228522, - [SMALL_STATE(10058)] = 228530, - [SMALL_STATE(10059)] = 228538, - [SMALL_STATE(10060)] = 228546, - [SMALL_STATE(10061)] = 228554, - [SMALL_STATE(10062)] = 228562, - [SMALL_STATE(10063)] = 228570, - [SMALL_STATE(10064)] = 228578, - [SMALL_STATE(10065)] = 228586, - [SMALL_STATE(10066)] = 228594, - [SMALL_STATE(10067)] = 228602, - [SMALL_STATE(10068)] = 228610, - [SMALL_STATE(10069)] = 228618, - [SMALL_STATE(10070)] = 228626, - [SMALL_STATE(10071)] = 228634, - [SMALL_STATE(10072)] = 228642, - [SMALL_STATE(10073)] = 228650, - [SMALL_STATE(10074)] = 228658, - [SMALL_STATE(10075)] = 228666, - [SMALL_STATE(10076)] = 228674, - [SMALL_STATE(10077)] = 228682, - [SMALL_STATE(10078)] = 228690, - [SMALL_STATE(10079)] = 228698, - [SMALL_STATE(10080)] = 228706, - [SMALL_STATE(10081)] = 228714, - [SMALL_STATE(10082)] = 228722, - [SMALL_STATE(10083)] = 228730, - [SMALL_STATE(10084)] = 228738, - [SMALL_STATE(10085)] = 228746, - [SMALL_STATE(10086)] = 228754, - [SMALL_STATE(10087)] = 228762, - [SMALL_STATE(10088)] = 228770, - [SMALL_STATE(10089)] = 228778, - [SMALL_STATE(10090)] = 228786, - [SMALL_STATE(10091)] = 228794, - [SMALL_STATE(10092)] = 228802, - [SMALL_STATE(10093)] = 228810, - [SMALL_STATE(10094)] = 228818, - [SMALL_STATE(10095)] = 228826, - [SMALL_STATE(10096)] = 228834, - [SMALL_STATE(10097)] = 228842, - [SMALL_STATE(10098)] = 228850, - [SMALL_STATE(10099)] = 228858, - [SMALL_STATE(10100)] = 228866, - [SMALL_STATE(10101)] = 228874, - [SMALL_STATE(10102)] = 228882, - [SMALL_STATE(10103)] = 228890, - [SMALL_STATE(10104)] = 228898, - [SMALL_STATE(10105)] = 228906, - [SMALL_STATE(10106)] = 228914, - [SMALL_STATE(10107)] = 228922, - [SMALL_STATE(10108)] = 228930, - [SMALL_STATE(10109)] = 228938, - [SMALL_STATE(10110)] = 228946, - [SMALL_STATE(10111)] = 228954, - [SMALL_STATE(10112)] = 228962, - [SMALL_STATE(10113)] = 228970, - [SMALL_STATE(10114)] = 228978, - [SMALL_STATE(10115)] = 228986, - [SMALL_STATE(10116)] = 228994, - [SMALL_STATE(10117)] = 229002, - [SMALL_STATE(10118)] = 229010, - [SMALL_STATE(10119)] = 229018, - [SMALL_STATE(10120)] = 229026, - [SMALL_STATE(10121)] = 229034, - [SMALL_STATE(10122)] = 229042, - [SMALL_STATE(10123)] = 229050, - [SMALL_STATE(10124)] = 229058, - [SMALL_STATE(10125)] = 229066, - [SMALL_STATE(10126)] = 229074, - [SMALL_STATE(10127)] = 229082, - [SMALL_STATE(10128)] = 229090, - [SMALL_STATE(10129)] = 229098, - [SMALL_STATE(10130)] = 229106, - [SMALL_STATE(10131)] = 229114, - [SMALL_STATE(10132)] = 229122, - [SMALL_STATE(10133)] = 229130, - [SMALL_STATE(10134)] = 229138, - [SMALL_STATE(10135)] = 229146, - [SMALL_STATE(10136)] = 229154, - [SMALL_STATE(10137)] = 229162, - [SMALL_STATE(10138)] = 229170, - [SMALL_STATE(10139)] = 229178, - [SMALL_STATE(10140)] = 229186, - [SMALL_STATE(10141)] = 229194, - [SMALL_STATE(10142)] = 229202, - [SMALL_STATE(10143)] = 229210, - [SMALL_STATE(10144)] = 229218, - [SMALL_STATE(10145)] = 229226, - [SMALL_STATE(10146)] = 229234, - [SMALL_STATE(10147)] = 229242, - [SMALL_STATE(10148)] = 229250, - [SMALL_STATE(10149)] = 229258, - [SMALL_STATE(10150)] = 229266, - [SMALL_STATE(10151)] = 229274, - [SMALL_STATE(10152)] = 229282, + [SMALL_STATE(5752)] = 86406, + [SMALL_STATE(5753)] = 86496, + [SMALL_STATE(5754)] = 86586, + [SMALL_STATE(5755)] = 86634, + [SMALL_STATE(5756)] = 86684, + [SMALL_STATE(5757)] = 86732, + [SMALL_STATE(5758)] = 86822, + [SMALL_STATE(5759)] = 86912, + [SMALL_STATE(5760)] = 86960, + [SMALL_STATE(5761)] = 87010, + [SMALL_STATE(5762)] = 87059, + [SMALL_STATE(5763)] = 87106, + [SMALL_STATE(5764)] = 87153, + [SMALL_STATE(5765)] = 87199, + [SMALL_STATE(5766)] = 87245, + [SMALL_STATE(5767)] = 87291, + [SMALL_STATE(5768)] = 87335, + [SMALL_STATE(5769)] = 87379, + [SMALL_STATE(5770)] = 87423, + [SMALL_STATE(5771)] = 87467, + [SMALL_STATE(5772)] = 87511, + [SMALL_STATE(5773)] = 87561, + [SMALL_STATE(5774)] = 87607, + [SMALL_STATE(5775)] = 87653, + [SMALL_STATE(5776)] = 87697, + [SMALL_STATE(5777)] = 87743, + [SMALL_STATE(5778)] = 87787, + [SMALL_STATE(5779)] = 87831, + [SMALL_STATE(5780)] = 87875, + [SMALL_STATE(5781)] = 87921, + [SMALL_STATE(5782)] = 87967, + [SMALL_STATE(5783)] = 88013, + [SMALL_STATE(5784)] = 88061, + [SMALL_STATE(5785)] = 88107, + [SMALL_STATE(5786)] = 88153, + [SMALL_STATE(5787)] = 88201, + [SMALL_STATE(5788)] = 88249, + [SMALL_STATE(5789)] = 88297, + [SMALL_STATE(5790)] = 88343, + [SMALL_STATE(5791)] = 88389, + [SMALL_STATE(5792)] = 88435, + [SMALL_STATE(5793)] = 88481, + [SMALL_STATE(5794)] = 88529, + [SMALL_STATE(5795)] = 88575, + [SMALL_STATE(5796)] = 88621, + [SMALL_STATE(5797)] = 88667, + [SMALL_STATE(5798)] = 88713, + [SMALL_STATE(5799)] = 88759, + [SMALL_STATE(5800)] = 88802, + [SMALL_STATE(5801)] = 88849, + [SMALL_STATE(5802)] = 88894, + [SMALL_STATE(5803)] = 88943, + [SMALL_STATE(5804)] = 88990, + [SMALL_STATE(5805)] = 89033, + [SMALL_STATE(5806)] = 89082, + [SMALL_STATE(5807)] = 89125, + [SMALL_STATE(5808)] = 89174, + [SMALL_STATE(5809)] = 89221, + [SMALL_STATE(5810)] = 89263, + [SMALL_STATE(5811)] = 89305, + [SMALL_STATE(5812)] = 89351, + [SMALL_STATE(5813)] = 89397, + [SMALL_STATE(5814)] = 89443, + [SMALL_STATE(5815)] = 89487, + [SMALL_STATE(5816)] = 89529, + [SMALL_STATE(5817)] = 89571, + [SMALL_STATE(5818)] = 89613, + [SMALL_STATE(5819)] = 89655, + [SMALL_STATE(5820)] = 89697, + [SMALL_STATE(5821)] = 89741, + [SMALL_STATE(5822)] = 89785, + [SMALL_STATE(5823)] = 89827, + [SMALL_STATE(5824)] = 89871, + [SMALL_STATE(5825)] = 89915, + [SMALL_STATE(5826)] = 89957, + [SMALL_STATE(5827)] = 90003, + [SMALL_STATE(5828)] = 90051, + [SMALL_STATE(5829)] = 90093, + [SMALL_STATE(5830)] = 90135, + [SMALL_STATE(5831)] = 90177, + [SMALL_STATE(5832)] = 90219, + [SMALL_STATE(5833)] = 90267, + [SMALL_STATE(5834)] = 90309, + [SMALL_STATE(5835)] = 90351, + [SMALL_STATE(5836)] = 90392, + [SMALL_STATE(5837)] = 90433, + [SMALL_STATE(5838)] = 90474, + [SMALL_STATE(5839)] = 90517, + [SMALL_STATE(5840)] = 90560, + [SMALL_STATE(5841)] = 90603, + [SMALL_STATE(5842)] = 90650, + [SMALL_STATE(5843)] = 90697, + [SMALL_STATE(5844)] = 90744, + [SMALL_STATE(5845)] = 90787, + [SMALL_STATE(5846)] = 90829, + [SMALL_STATE(5847)] = 90871, + [SMALL_STATE(5848)] = 90913, + [SMALL_STATE(5849)] = 90955, + [SMALL_STATE(5850)] = 90997, + [SMALL_STATE(5851)] = 91075, + [SMALL_STATE(5852)] = 91153, + [SMALL_STATE(5853)] = 91195, + [SMALL_STATE(5854)] = 91237, + [SMALL_STATE(5855)] = 91279, + [SMALL_STATE(5856)] = 91321, + [SMALL_STATE(5857)] = 91363, + [SMALL_STATE(5858)] = 91441, + [SMALL_STATE(5859)] = 91483, + [SMALL_STATE(5860)] = 91525, + [SMALL_STATE(5861)] = 91603, + [SMALL_STATE(5862)] = 91645, + [SMALL_STATE(5863)] = 91687, + [SMALL_STATE(5864)] = 91729, + [SMALL_STATE(5865)] = 91807, + [SMALL_STATE(5866)] = 91885, + [SMALL_STATE(5867)] = 91931, + [SMALL_STATE(5868)] = 92009, + [SMALL_STATE(5869)] = 92051, + [SMALL_STATE(5870)] = 92093, + [SMALL_STATE(5871)] = 92135, + [SMALL_STATE(5872)] = 92213, + [SMALL_STATE(5873)] = 92289, + [SMALL_STATE(5874)] = 92367, + [SMALL_STATE(5875)] = 92409, + [SMALL_STATE(5876)] = 92487, + [SMALL_STATE(5877)] = 92529, + [SMALL_STATE(5878)] = 92607, + [SMALL_STATE(5879)] = 92649, + [SMALL_STATE(5880)] = 92722, + [SMALL_STATE(5881)] = 92797, + [SMALL_STATE(5882)] = 92872, + [SMALL_STATE(5883)] = 92947, + [SMALL_STATE(5884)] = 93022, + [SMALL_STATE(5885)] = 93097, + [SMALL_STATE(5886)] = 93172, + [SMALL_STATE(5887)] = 93244, + [SMALL_STATE(5888)] = 93316, + [SMALL_STATE(5889)] = 93388, + [SMALL_STATE(5890)] = 93460, + [SMALL_STATE(5891)] = 93532, + [SMALL_STATE(5892)] = 93604, + [SMALL_STATE(5893)] = 93676, + [SMALL_STATE(5894)] = 93748, + [SMALL_STATE(5895)] = 93820, + [SMALL_STATE(5896)] = 93892, + [SMALL_STATE(5897)] = 93964, + [SMALL_STATE(5898)] = 94036, + [SMALL_STATE(5899)] = 94108, + [SMALL_STATE(5900)] = 94180, + [SMALL_STATE(5901)] = 94252, + [SMALL_STATE(5902)] = 94324, + [SMALL_STATE(5903)] = 94396, + [SMALL_STATE(5904)] = 94468, + [SMALL_STATE(5905)] = 94540, + [SMALL_STATE(5906)] = 94612, + [SMALL_STATE(5907)] = 94684, + [SMALL_STATE(5908)] = 94756, + [SMALL_STATE(5909)] = 94828, + [SMALL_STATE(5910)] = 94900, + [SMALL_STATE(5911)] = 94972, + [SMALL_STATE(5912)] = 95044, + [SMALL_STATE(5913)] = 95116, + [SMALL_STATE(5914)] = 95156, + [SMALL_STATE(5915)] = 95228, + [SMALL_STATE(5916)] = 95300, + [SMALL_STATE(5917)] = 95372, + [SMALL_STATE(5918)] = 95444, + [SMALL_STATE(5919)] = 95516, + [SMALL_STATE(5920)] = 95588, + [SMALL_STATE(5921)] = 95660, + [SMALL_STATE(5922)] = 95732, + [SMALL_STATE(5923)] = 95804, + [SMALL_STATE(5924)] = 95844, + [SMALL_STATE(5925)] = 95916, + [SMALL_STATE(5926)] = 95988, + [SMALL_STATE(5927)] = 96060, + [SMALL_STATE(5928)] = 96132, + [SMALL_STATE(5929)] = 96204, + [SMALL_STATE(5930)] = 96276, + [SMALL_STATE(5931)] = 96348, + [SMALL_STATE(5932)] = 96420, + [SMALL_STATE(5933)] = 96492, + [SMALL_STATE(5934)] = 96564, + [SMALL_STATE(5935)] = 96636, + [SMALL_STATE(5936)] = 96708, + [SMALL_STATE(5937)] = 96780, + [SMALL_STATE(5938)] = 96852, + [SMALL_STATE(5939)] = 96924, + [SMALL_STATE(5940)] = 96996, + [SMALL_STATE(5941)] = 97068, + [SMALL_STATE(5942)] = 97140, + [SMALL_STATE(5943)] = 97180, + [SMALL_STATE(5944)] = 97252, + [SMALL_STATE(5945)] = 97324, + [SMALL_STATE(5946)] = 97396, + [SMALL_STATE(5947)] = 97468, + [SMALL_STATE(5948)] = 97540, + [SMALL_STATE(5949)] = 97612, + [SMALL_STATE(5950)] = 97684, + [SMALL_STATE(5951)] = 97756, + [SMALL_STATE(5952)] = 97828, + [SMALL_STATE(5953)] = 97900, + [SMALL_STATE(5954)] = 97972, + [SMALL_STATE(5955)] = 98044, + [SMALL_STATE(5956)] = 98116, + [SMALL_STATE(5957)] = 98188, + [SMALL_STATE(5958)] = 98260, + [SMALL_STATE(5959)] = 98332, + [SMALL_STATE(5960)] = 98404, + [SMALL_STATE(5961)] = 98476, + [SMALL_STATE(5962)] = 98548, + [SMALL_STATE(5963)] = 98620, + [SMALL_STATE(5964)] = 98692, + [SMALL_STATE(5965)] = 98764, + [SMALL_STATE(5966)] = 98836, + [SMALL_STATE(5967)] = 98908, + [SMALL_STATE(5968)] = 98980, + [SMALL_STATE(5969)] = 99052, + [SMALL_STATE(5970)] = 99124, + [SMALL_STATE(5971)] = 99196, + [SMALL_STATE(5972)] = 99268, + [SMALL_STATE(5973)] = 99340, + [SMALL_STATE(5974)] = 99412, + [SMALL_STATE(5975)] = 99484, + [SMALL_STATE(5976)] = 99556, + [SMALL_STATE(5977)] = 99628, + [SMALL_STATE(5978)] = 99700, + [SMALL_STATE(5979)] = 99772, + [SMALL_STATE(5980)] = 99844, + [SMALL_STATE(5981)] = 99916, + [SMALL_STATE(5982)] = 99988, + [SMALL_STATE(5983)] = 100028, + [SMALL_STATE(5984)] = 100100, + [SMALL_STATE(5985)] = 100172, + [SMALL_STATE(5986)] = 100244, + [SMALL_STATE(5987)] = 100316, + [SMALL_STATE(5988)] = 100388, + [SMALL_STATE(5989)] = 100460, + [SMALL_STATE(5990)] = 100532, + [SMALL_STATE(5991)] = 100604, + [SMALL_STATE(5992)] = 100676, + [SMALL_STATE(5993)] = 100748, + [SMALL_STATE(5994)] = 100820, + [SMALL_STATE(5995)] = 100892, + [SMALL_STATE(5996)] = 100964, + [SMALL_STATE(5997)] = 101036, + [SMALL_STATE(5998)] = 101108, + [SMALL_STATE(5999)] = 101180, + [SMALL_STATE(6000)] = 101252, + [SMALL_STATE(6001)] = 101324, + [SMALL_STATE(6002)] = 101396, + [SMALL_STATE(6003)] = 101468, + [SMALL_STATE(6004)] = 101540, + [SMALL_STATE(6005)] = 101612, + [SMALL_STATE(6006)] = 101684, + [SMALL_STATE(6007)] = 101756, + [SMALL_STATE(6008)] = 101828, + [SMALL_STATE(6009)] = 101900, + [SMALL_STATE(6010)] = 101972, + [SMALL_STATE(6011)] = 102044, + [SMALL_STATE(6012)] = 102116, + [SMALL_STATE(6013)] = 102188, + [SMALL_STATE(6014)] = 102260, + [SMALL_STATE(6015)] = 102332, + [SMALL_STATE(6016)] = 102404, + [SMALL_STATE(6017)] = 102476, + [SMALL_STATE(6018)] = 102548, + [SMALL_STATE(6019)] = 102620, + [SMALL_STATE(6020)] = 102660, + [SMALL_STATE(6021)] = 102732, + [SMALL_STATE(6022)] = 102804, + [SMALL_STATE(6023)] = 102876, + [SMALL_STATE(6024)] = 102948, + [SMALL_STATE(6025)] = 103020, + [SMALL_STATE(6026)] = 103092, + [SMALL_STATE(6027)] = 103164, + [SMALL_STATE(6028)] = 103236, + [SMALL_STATE(6029)] = 103276, + [SMALL_STATE(6030)] = 103348, + [SMALL_STATE(6031)] = 103420, + [SMALL_STATE(6032)] = 103492, + [SMALL_STATE(6033)] = 103564, + [SMALL_STATE(6034)] = 103636, + [SMALL_STATE(6035)] = 103708, + [SMALL_STATE(6036)] = 103780, + [SMALL_STATE(6037)] = 103852, + [SMALL_STATE(6038)] = 103924, + [SMALL_STATE(6039)] = 103996, + [SMALL_STATE(6040)] = 104068, + [SMALL_STATE(6041)] = 104140, + [SMALL_STATE(6042)] = 104212, + [SMALL_STATE(6043)] = 104284, + [SMALL_STATE(6044)] = 104356, + [SMALL_STATE(6045)] = 104428, + [SMALL_STATE(6046)] = 104500, + [SMALL_STATE(6047)] = 104572, + [SMALL_STATE(6048)] = 104644, + [SMALL_STATE(6049)] = 104716, + [SMALL_STATE(6050)] = 104788, + [SMALL_STATE(6051)] = 104860, + [SMALL_STATE(6052)] = 104932, + [SMALL_STATE(6053)] = 105004, + [SMALL_STATE(6054)] = 105076, + [SMALL_STATE(6055)] = 105148, + [SMALL_STATE(6056)] = 105220, + [SMALL_STATE(6057)] = 105292, + [SMALL_STATE(6058)] = 105332, + [SMALL_STATE(6059)] = 105404, + [SMALL_STATE(6060)] = 105444, + [SMALL_STATE(6061)] = 105516, + [SMALL_STATE(6062)] = 105588, + [SMALL_STATE(6063)] = 105660, + [SMALL_STATE(6064)] = 105732, + [SMALL_STATE(6065)] = 105804, + [SMALL_STATE(6066)] = 105876, + [SMALL_STATE(6067)] = 105948, + [SMALL_STATE(6068)] = 106020, + [SMALL_STATE(6069)] = 106092, + [SMALL_STATE(6070)] = 106164, + [SMALL_STATE(6071)] = 106236, + [SMALL_STATE(6072)] = 106308, + [SMALL_STATE(6073)] = 106380, + [SMALL_STATE(6074)] = 106452, + [SMALL_STATE(6075)] = 106524, + [SMALL_STATE(6076)] = 106596, + [SMALL_STATE(6077)] = 106668, + [SMALL_STATE(6078)] = 106740, + [SMALL_STATE(6079)] = 106812, + [SMALL_STATE(6080)] = 106884, + [SMALL_STATE(6081)] = 106956, + [SMALL_STATE(6082)] = 107028, + [SMALL_STATE(6083)] = 107100, + [SMALL_STATE(6084)] = 107172, + [SMALL_STATE(6085)] = 107244, + [SMALL_STATE(6086)] = 107316, + [SMALL_STATE(6087)] = 107388, + [SMALL_STATE(6088)] = 107460, + [SMALL_STATE(6089)] = 107532, + [SMALL_STATE(6090)] = 107604, + [SMALL_STATE(6091)] = 107676, + [SMALL_STATE(6092)] = 107748, + [SMALL_STATE(6093)] = 107820, + [SMALL_STATE(6094)] = 107892, + [SMALL_STATE(6095)] = 107964, + [SMALL_STATE(6096)] = 108036, + [SMALL_STATE(6097)] = 108108, + [SMALL_STATE(6098)] = 108180, + [SMALL_STATE(6099)] = 108252, + [SMALL_STATE(6100)] = 108324, + [SMALL_STATE(6101)] = 108396, + [SMALL_STATE(6102)] = 108468, + [SMALL_STATE(6103)] = 108540, + [SMALL_STATE(6104)] = 108612, + [SMALL_STATE(6105)] = 108684, + [SMALL_STATE(6106)] = 108756, + [SMALL_STATE(6107)] = 108828, + [SMALL_STATE(6108)] = 108900, + [SMALL_STATE(6109)] = 108940, + [SMALL_STATE(6110)] = 109012, + [SMALL_STATE(6111)] = 109084, + [SMALL_STATE(6112)] = 109156, + [SMALL_STATE(6113)] = 109228, + [SMALL_STATE(6114)] = 109300, + [SMALL_STATE(6115)] = 109372, + [SMALL_STATE(6116)] = 109444, + [SMALL_STATE(6117)] = 109516, + [SMALL_STATE(6118)] = 109588, + [SMALL_STATE(6119)] = 109660, + [SMALL_STATE(6120)] = 109732, + [SMALL_STATE(6121)] = 109804, + [SMALL_STATE(6122)] = 109876, + [SMALL_STATE(6123)] = 109948, + [SMALL_STATE(6124)] = 110020, + [SMALL_STATE(6125)] = 110092, + [SMALL_STATE(6126)] = 110164, + [SMALL_STATE(6127)] = 110236, + [SMALL_STATE(6128)] = 110308, + [SMALL_STATE(6129)] = 110380, + [SMALL_STATE(6130)] = 110452, + [SMALL_STATE(6131)] = 110524, + [SMALL_STATE(6132)] = 110596, + [SMALL_STATE(6133)] = 110668, + [SMALL_STATE(6134)] = 110740, + [SMALL_STATE(6135)] = 110812, + [SMALL_STATE(6136)] = 110884, + [SMALL_STATE(6137)] = 110956, + [SMALL_STATE(6138)] = 111028, + [SMALL_STATE(6139)] = 111100, + [SMALL_STATE(6140)] = 111172, + [SMALL_STATE(6141)] = 111244, + [SMALL_STATE(6142)] = 111316, + [SMALL_STATE(6143)] = 111388, + [SMALL_STATE(6144)] = 111460, + [SMALL_STATE(6145)] = 111532, + [SMALL_STATE(6146)] = 111604, + [SMALL_STATE(6147)] = 111676, + [SMALL_STATE(6148)] = 111748, + [SMALL_STATE(6149)] = 111820, + [SMALL_STATE(6150)] = 111892, + [SMALL_STATE(6151)] = 111964, + [SMALL_STATE(6152)] = 112036, + [SMALL_STATE(6153)] = 112108, + [SMALL_STATE(6154)] = 112180, + [SMALL_STATE(6155)] = 112252, + [SMALL_STATE(6156)] = 112324, + [SMALL_STATE(6157)] = 112396, + [SMALL_STATE(6158)] = 112468, + [SMALL_STATE(6159)] = 112540, + [SMALL_STATE(6160)] = 112612, + [SMALL_STATE(6161)] = 112654, + [SMALL_STATE(6162)] = 112726, + [SMALL_STATE(6163)] = 112798, + [SMALL_STATE(6164)] = 112870, + [SMALL_STATE(6165)] = 112942, + [SMALL_STATE(6166)] = 113014, + [SMALL_STATE(6167)] = 113086, + [SMALL_STATE(6168)] = 113158, + [SMALL_STATE(6169)] = 113230, + [SMALL_STATE(6170)] = 113302, + [SMALL_STATE(6171)] = 113374, + [SMALL_STATE(6172)] = 113446, + [SMALL_STATE(6173)] = 113518, + [SMALL_STATE(6174)] = 113590, + [SMALL_STATE(6175)] = 113662, + [SMALL_STATE(6176)] = 113734, + [SMALL_STATE(6177)] = 113806, + [SMALL_STATE(6178)] = 113878, + [SMALL_STATE(6179)] = 113950, + [SMALL_STATE(6180)] = 114022, + [SMALL_STATE(6181)] = 114094, + [SMALL_STATE(6182)] = 114166, + [SMALL_STATE(6183)] = 114238, + [SMALL_STATE(6184)] = 114310, + [SMALL_STATE(6185)] = 114382, + [SMALL_STATE(6186)] = 114454, + [SMALL_STATE(6187)] = 114526, + [SMALL_STATE(6188)] = 114598, + [SMALL_STATE(6189)] = 114670, + [SMALL_STATE(6190)] = 114742, + [SMALL_STATE(6191)] = 114814, + [SMALL_STATE(6192)] = 114886, + [SMALL_STATE(6193)] = 114958, + [SMALL_STATE(6194)] = 115030, + [SMALL_STATE(6195)] = 115102, + [SMALL_STATE(6196)] = 115174, + [SMALL_STATE(6197)] = 115246, + [SMALL_STATE(6198)] = 115318, + [SMALL_STATE(6199)] = 115390, + [SMALL_STATE(6200)] = 115462, + [SMALL_STATE(6201)] = 115534, + [SMALL_STATE(6202)] = 115606, + [SMALL_STATE(6203)] = 115678, + [SMALL_STATE(6204)] = 115750, + [SMALL_STATE(6205)] = 115822, + [SMALL_STATE(6206)] = 115894, + [SMALL_STATE(6207)] = 115966, + [SMALL_STATE(6208)] = 116038, + [SMALL_STATE(6209)] = 116110, + [SMALL_STATE(6210)] = 116182, + [SMALL_STATE(6211)] = 116254, + [SMALL_STATE(6212)] = 116326, + [SMALL_STATE(6213)] = 116398, + [SMALL_STATE(6214)] = 116470, + [SMALL_STATE(6215)] = 116542, + [SMALL_STATE(6216)] = 116614, + [SMALL_STATE(6217)] = 116686, + [SMALL_STATE(6218)] = 116758, + [SMALL_STATE(6219)] = 116830, + [SMALL_STATE(6220)] = 116902, + [SMALL_STATE(6221)] = 116974, + [SMALL_STATE(6222)] = 117046, + [SMALL_STATE(6223)] = 117118, + [SMALL_STATE(6224)] = 117190, + [SMALL_STATE(6225)] = 117262, + [SMALL_STATE(6226)] = 117334, + [SMALL_STATE(6227)] = 117406, + [SMALL_STATE(6228)] = 117478, + [SMALL_STATE(6229)] = 117550, + [SMALL_STATE(6230)] = 117622, + [SMALL_STATE(6231)] = 117694, + [SMALL_STATE(6232)] = 117766, + [SMALL_STATE(6233)] = 117838, + [SMALL_STATE(6234)] = 117910, + [SMALL_STATE(6235)] = 117982, + [SMALL_STATE(6236)] = 118054, + [SMALL_STATE(6237)] = 118126, + [SMALL_STATE(6238)] = 118198, + [SMALL_STATE(6239)] = 118270, + [SMALL_STATE(6240)] = 118342, + [SMALL_STATE(6241)] = 118414, + [SMALL_STATE(6242)] = 118486, + [SMALL_STATE(6243)] = 118558, + [SMALL_STATE(6244)] = 118630, + [SMALL_STATE(6245)] = 118702, + [SMALL_STATE(6246)] = 118774, + [SMALL_STATE(6247)] = 118846, + [SMALL_STATE(6248)] = 118918, + [SMALL_STATE(6249)] = 118990, + [SMALL_STATE(6250)] = 119062, + [SMALL_STATE(6251)] = 119134, + [SMALL_STATE(6252)] = 119206, + [SMALL_STATE(6253)] = 119278, + [SMALL_STATE(6254)] = 119350, + [SMALL_STATE(6255)] = 119422, + [SMALL_STATE(6256)] = 119494, + [SMALL_STATE(6257)] = 119566, + [SMALL_STATE(6258)] = 119638, + [SMALL_STATE(6259)] = 119710, + [SMALL_STATE(6260)] = 119782, + [SMALL_STATE(6261)] = 119854, + [SMALL_STATE(6262)] = 119926, + [SMALL_STATE(6263)] = 119998, + [SMALL_STATE(6264)] = 120070, + [SMALL_STATE(6265)] = 120142, + [SMALL_STATE(6266)] = 120214, + [SMALL_STATE(6267)] = 120286, + [SMALL_STATE(6268)] = 120358, + [SMALL_STATE(6269)] = 120430, + [SMALL_STATE(6270)] = 120502, + [SMALL_STATE(6271)] = 120574, + [SMALL_STATE(6272)] = 120646, + [SMALL_STATE(6273)] = 120718, + [SMALL_STATE(6274)] = 120790, + [SMALL_STATE(6275)] = 120862, + [SMALL_STATE(6276)] = 120934, + [SMALL_STATE(6277)] = 121006, + [SMALL_STATE(6278)] = 121078, + [SMALL_STATE(6279)] = 121150, + [SMALL_STATE(6280)] = 121222, + [SMALL_STATE(6281)] = 121294, + [SMALL_STATE(6282)] = 121366, + [SMALL_STATE(6283)] = 121438, + [SMALL_STATE(6284)] = 121510, + [SMALL_STATE(6285)] = 121582, + [SMALL_STATE(6286)] = 121654, + [SMALL_STATE(6287)] = 121726, + [SMALL_STATE(6288)] = 121798, + [SMALL_STATE(6289)] = 121870, + [SMALL_STATE(6290)] = 121942, + [SMALL_STATE(6291)] = 122014, + [SMALL_STATE(6292)] = 122086, + [SMALL_STATE(6293)] = 122158, + [SMALL_STATE(6294)] = 122230, + [SMALL_STATE(6295)] = 122302, + [SMALL_STATE(6296)] = 122374, + [SMALL_STATE(6297)] = 122446, + [SMALL_STATE(6298)] = 122518, + [SMALL_STATE(6299)] = 122590, + [SMALL_STATE(6300)] = 122662, + [SMALL_STATE(6301)] = 122734, + [SMALL_STATE(6302)] = 122806, + [SMALL_STATE(6303)] = 122878, + [SMALL_STATE(6304)] = 122950, + [SMALL_STATE(6305)] = 123022, + [SMALL_STATE(6306)] = 123094, + [SMALL_STATE(6307)] = 123166, + [SMALL_STATE(6308)] = 123238, + [SMALL_STATE(6309)] = 123310, + [SMALL_STATE(6310)] = 123382, + [SMALL_STATE(6311)] = 123454, + [SMALL_STATE(6312)] = 123526, + [SMALL_STATE(6313)] = 123598, + [SMALL_STATE(6314)] = 123670, + [SMALL_STATE(6315)] = 123742, + [SMALL_STATE(6316)] = 123814, + [SMALL_STATE(6317)] = 123886, + [SMALL_STATE(6318)] = 123958, + [SMALL_STATE(6319)] = 124030, + [SMALL_STATE(6320)] = 124102, + [SMALL_STATE(6321)] = 124174, + [SMALL_STATE(6322)] = 124246, + [SMALL_STATE(6323)] = 124318, + [SMALL_STATE(6324)] = 124390, + [SMALL_STATE(6325)] = 124462, + [SMALL_STATE(6326)] = 124534, + [SMALL_STATE(6327)] = 124606, + [SMALL_STATE(6328)] = 124678, + [SMALL_STATE(6329)] = 124750, + [SMALL_STATE(6330)] = 124822, + [SMALL_STATE(6331)] = 124894, + [SMALL_STATE(6332)] = 124966, + [SMALL_STATE(6333)] = 125038, + [SMALL_STATE(6334)] = 125110, + [SMALL_STATE(6335)] = 125182, + [SMALL_STATE(6336)] = 125254, + [SMALL_STATE(6337)] = 125326, + [SMALL_STATE(6338)] = 125398, + [SMALL_STATE(6339)] = 125470, + [SMALL_STATE(6340)] = 125542, + [SMALL_STATE(6341)] = 125614, + [SMALL_STATE(6342)] = 125686, + [SMALL_STATE(6343)] = 125758, + [SMALL_STATE(6344)] = 125830, + [SMALL_STATE(6345)] = 125902, + [SMALL_STATE(6346)] = 125974, + [SMALL_STATE(6347)] = 126046, + [SMALL_STATE(6348)] = 126118, + [SMALL_STATE(6349)] = 126190, + [SMALL_STATE(6350)] = 126262, + [SMALL_STATE(6351)] = 126334, + [SMALL_STATE(6352)] = 126406, + [SMALL_STATE(6353)] = 126478, + [SMALL_STATE(6354)] = 126550, + [SMALL_STATE(6355)] = 126622, + [SMALL_STATE(6356)] = 126694, + [SMALL_STATE(6357)] = 126734, + [SMALL_STATE(6358)] = 126806, + [SMALL_STATE(6359)] = 126878, + [SMALL_STATE(6360)] = 126950, + [SMALL_STATE(6361)] = 127022, + [SMALL_STATE(6362)] = 127062, + [SMALL_STATE(6363)] = 127134, + [SMALL_STATE(6364)] = 127206, + [SMALL_STATE(6365)] = 127278, + [SMALL_STATE(6366)] = 127350, + [SMALL_STATE(6367)] = 127422, + [SMALL_STATE(6368)] = 127494, + [SMALL_STATE(6369)] = 127566, + [SMALL_STATE(6370)] = 127638, + [SMALL_STATE(6371)] = 127710, + [SMALL_STATE(6372)] = 127782, + [SMALL_STATE(6373)] = 127854, + [SMALL_STATE(6374)] = 127926, + [SMALL_STATE(6375)] = 127998, + [SMALL_STATE(6376)] = 128070, + [SMALL_STATE(6377)] = 128142, + [SMALL_STATE(6378)] = 128214, + [SMALL_STATE(6379)] = 128286, + [SMALL_STATE(6380)] = 128358, + [SMALL_STATE(6381)] = 128430, + [SMALL_STATE(6382)] = 128502, + [SMALL_STATE(6383)] = 128574, + [SMALL_STATE(6384)] = 128646, + [SMALL_STATE(6385)] = 128718, + [SMALL_STATE(6386)] = 128758, + [SMALL_STATE(6387)] = 128830, + [SMALL_STATE(6388)] = 128902, + [SMALL_STATE(6389)] = 128974, + [SMALL_STATE(6390)] = 129046, + [SMALL_STATE(6391)] = 129118, + [SMALL_STATE(6392)] = 129190, + [SMALL_STATE(6393)] = 129262, + [SMALL_STATE(6394)] = 129334, + [SMALL_STATE(6395)] = 129406, + [SMALL_STATE(6396)] = 129478, + [SMALL_STATE(6397)] = 129550, + [SMALL_STATE(6398)] = 129622, + [SMALL_STATE(6399)] = 129694, + [SMALL_STATE(6400)] = 129766, + [SMALL_STATE(6401)] = 129838, + [SMALL_STATE(6402)] = 129910, + [SMALL_STATE(6403)] = 129982, + [SMALL_STATE(6404)] = 130054, + [SMALL_STATE(6405)] = 130126, + [SMALL_STATE(6406)] = 130197, + [SMALL_STATE(6407)] = 130268, + [SMALL_STATE(6408)] = 130339, + [SMALL_STATE(6409)] = 130410, + [SMALL_STATE(6410)] = 130481, + [SMALL_STATE(6411)] = 130552, + [SMALL_STATE(6412)] = 130623, + [SMALL_STATE(6413)] = 130694, + [SMALL_STATE(6414)] = 130765, + [SMALL_STATE(6415)] = 130836, + [SMALL_STATE(6416)] = 130907, + [SMALL_STATE(6417)] = 130978, + [SMALL_STATE(6418)] = 131049, + [SMALL_STATE(6419)] = 131120, + [SMALL_STATE(6420)] = 131191, + [SMALL_STATE(6421)] = 131262, + [SMALL_STATE(6422)] = 131333, + [SMALL_STATE(6423)] = 131404, + [SMALL_STATE(6424)] = 131475, + [SMALL_STATE(6425)] = 131546, + [SMALL_STATE(6426)] = 131617, + [SMALL_STATE(6427)] = 131688, + [SMALL_STATE(6428)] = 131759, + [SMALL_STATE(6429)] = 131830, + [SMALL_STATE(6430)] = 131901, + [SMALL_STATE(6431)] = 131972, + [SMALL_STATE(6432)] = 132043, + [SMALL_STATE(6433)] = 132114, + [SMALL_STATE(6434)] = 132185, + [SMALL_STATE(6435)] = 132256, + [SMALL_STATE(6436)] = 132327, + [SMALL_STATE(6437)] = 132398, + [SMALL_STATE(6438)] = 132469, + [SMALL_STATE(6439)] = 132540, + [SMALL_STATE(6440)] = 132611, + [SMALL_STATE(6441)] = 132682, + [SMALL_STATE(6442)] = 132753, + [SMALL_STATE(6443)] = 132824, + [SMALL_STATE(6444)] = 132895, + [SMALL_STATE(6445)] = 132966, + [SMALL_STATE(6446)] = 133037, + [SMALL_STATE(6447)] = 133103, + [SMALL_STATE(6448)] = 133169, + [SMALL_STATE(6449)] = 133235, + [SMALL_STATE(6450)] = 133303, + [SMALL_STATE(6451)] = 133369, + [SMALL_STATE(6452)] = 133435, + [SMALL_STATE(6453)] = 133503, + [SMALL_STATE(6454)] = 133569, + [SMALL_STATE(6455)] = 133637, + [SMALL_STATE(6456)] = 133705, + [SMALL_STATE(6457)] = 133771, + [SMALL_STATE(6458)] = 133837, + [SMALL_STATE(6459)] = 133903, + [SMALL_STATE(6460)] = 133969, + [SMALL_STATE(6461)] = 134037, + [SMALL_STATE(6462)] = 134103, + [SMALL_STATE(6463)] = 134169, + [SMALL_STATE(6464)] = 134235, + [SMALL_STATE(6465)] = 134303, + [SMALL_STATE(6466)] = 134369, + [SMALL_STATE(6467)] = 134435, + [SMALL_STATE(6468)] = 134501, + [SMALL_STATE(6469)] = 134567, + [SMALL_STATE(6470)] = 134633, + [SMALL_STATE(6471)] = 134701, + [SMALL_STATE(6472)] = 134769, + [SMALL_STATE(6473)] = 134837, + [SMALL_STATE(6474)] = 134905, + [SMALL_STATE(6475)] = 134971, + [SMALL_STATE(6476)] = 135037, + [SMALL_STATE(6477)] = 135103, + [SMALL_STATE(6478)] = 135171, + [SMALL_STATE(6479)] = 135237, + [SMALL_STATE(6480)] = 135305, + [SMALL_STATE(6481)] = 135373, + [SMALL_STATE(6482)] = 135439, + [SMALL_STATE(6483)] = 135505, + [SMALL_STATE(6484)] = 135571, + [SMALL_STATE(6485)] = 135639, + [SMALL_STATE(6486)] = 135705, + [SMALL_STATE(6487)] = 135771, + [SMALL_STATE(6488)] = 135837, + [SMALL_STATE(6489)] = 135903, + [SMALL_STATE(6490)] = 135969, + [SMALL_STATE(6491)] = 136035, + [SMALL_STATE(6492)] = 136103, + [SMALL_STATE(6493)] = 136169, + [SMALL_STATE(6494)] = 136235, + [SMALL_STATE(6495)] = 136301, + [SMALL_STATE(6496)] = 136369, + [SMALL_STATE(6497)] = 136435, + [SMALL_STATE(6498)] = 136501, + [SMALL_STATE(6499)] = 136567, + [SMALL_STATE(6500)] = 136635, + [SMALL_STATE(6501)] = 136703, + [SMALL_STATE(6502)] = 136769, + [SMALL_STATE(6503)] = 136837, + [SMALL_STATE(6504)] = 136905, + [SMALL_STATE(6505)] = 136971, + [SMALL_STATE(6506)] = 137037, + [SMALL_STATE(6507)] = 137103, + [SMALL_STATE(6508)] = 137171, + [SMALL_STATE(6509)] = 137239, + [SMALL_STATE(6510)] = 137305, + [SMALL_STATE(6511)] = 137371, + [SMALL_STATE(6512)] = 137437, + [SMALL_STATE(6513)] = 137505, + [SMALL_STATE(6514)] = 137571, + [SMALL_STATE(6515)] = 137637, + [SMALL_STATE(6516)] = 137703, + [SMALL_STATE(6517)] = 137771, + [SMALL_STATE(6518)] = 137837, + [SMALL_STATE(6519)] = 137903, + [SMALL_STATE(6520)] = 137969, + [SMALL_STATE(6521)] = 138037, + [SMALL_STATE(6522)] = 138103, + [SMALL_STATE(6523)] = 138171, + [SMALL_STATE(6524)] = 138239, + [SMALL_STATE(6525)] = 138305, + [SMALL_STATE(6526)] = 138371, + [SMALL_STATE(6527)] = 138439, + [SMALL_STATE(6528)] = 138505, + [SMALL_STATE(6529)] = 138567, + [SMALL_STATE(6530)] = 138629, + [SMALL_STATE(6531)] = 138691, + [SMALL_STATE(6532)] = 138753, + [SMALL_STATE(6533)] = 138815, + [SMALL_STATE(6534)] = 138877, + [SMALL_STATE(6535)] = 138939, + [SMALL_STATE(6536)] = 139001, + [SMALL_STATE(6537)] = 139063, + [SMALL_STATE(6538)] = 139099, + [SMALL_STATE(6539)] = 139161, + [SMALL_STATE(6540)] = 139223, + [SMALL_STATE(6541)] = 139285, + [SMALL_STATE(6542)] = 139347, + [SMALL_STATE(6543)] = 139409, + [SMALL_STATE(6544)] = 139471, + [SMALL_STATE(6545)] = 139533, + [SMALL_STATE(6546)] = 139595, + [SMALL_STATE(6547)] = 139657, + [SMALL_STATE(6548)] = 139693, + [SMALL_STATE(6549)] = 139755, + [SMALL_STATE(6550)] = 139817, + [SMALL_STATE(6551)] = 139879, + [SMALL_STATE(6552)] = 139941, + [SMALL_STATE(6553)] = 140003, + [SMALL_STATE(6554)] = 140065, + [SMALL_STATE(6555)] = 140127, + [SMALL_STATE(6556)] = 140189, + [SMALL_STATE(6557)] = 140251, + [SMALL_STATE(6558)] = 140313, + [SMALL_STATE(6559)] = 140375, + [SMALL_STATE(6560)] = 140437, + [SMALL_STATE(6561)] = 140499, + [SMALL_STATE(6562)] = 140561, + [SMALL_STATE(6563)] = 140623, + [SMALL_STATE(6564)] = 140685, + [SMALL_STATE(6565)] = 140747, + [SMALL_STATE(6566)] = 140809, + [SMALL_STATE(6567)] = 140871, + [SMALL_STATE(6568)] = 140933, + [SMALL_STATE(6569)] = 140995, + [SMALL_STATE(6570)] = 141057, + [SMALL_STATE(6571)] = 141119, + [SMALL_STATE(6572)] = 141181, + [SMALL_STATE(6573)] = 141243, + [SMALL_STATE(6574)] = 141305, + [SMALL_STATE(6575)] = 141367, + [SMALL_STATE(6576)] = 141429, + [SMALL_STATE(6577)] = 141491, + [SMALL_STATE(6578)] = 141553, + [SMALL_STATE(6579)] = 141615, + [SMALL_STATE(6580)] = 141677, + [SMALL_STATE(6581)] = 141739, + [SMALL_STATE(6582)] = 141801, + [SMALL_STATE(6583)] = 141863, + [SMALL_STATE(6584)] = 141925, + [SMALL_STATE(6585)] = 141964, + [SMALL_STATE(6586)] = 142022, + [SMALL_STATE(6587)] = 142080, + [SMALL_STATE(6588)] = 142138, + [SMALL_STATE(6589)] = 142196, + [SMALL_STATE(6590)] = 142254, + [SMALL_STATE(6591)] = 142312, + [SMALL_STATE(6592)] = 142350, + [SMALL_STATE(6593)] = 142408, + [SMALL_STATE(6594)] = 142466, + [SMALL_STATE(6595)] = 142524, + [SMALL_STATE(6596)] = 142562, + [SMALL_STATE(6597)] = 142617, + [SMALL_STATE(6598)] = 142672, + [SMALL_STATE(6599)] = 142727, + [SMALL_STATE(6600)] = 142760, + [SMALL_STATE(6601)] = 142815, + [SMALL_STATE(6602)] = 142870, + [SMALL_STATE(6603)] = 142925, + [SMALL_STATE(6604)] = 142980, + [SMALL_STATE(6605)] = 143035, + [SMALL_STATE(6606)] = 143090, + [SMALL_STATE(6607)] = 143145, + [SMALL_STATE(6608)] = 143178, + [SMALL_STATE(6609)] = 143233, + [SMALL_STATE(6610)] = 143288, + [SMALL_STATE(6611)] = 143343, + [SMALL_STATE(6612)] = 143398, + [SMALL_STATE(6613)] = 143453, + [SMALL_STATE(6614)] = 143508, + [SMALL_STATE(6615)] = 143563, + [SMALL_STATE(6616)] = 143618, + [SMALL_STATE(6617)] = 143673, + [SMALL_STATE(6618)] = 143727, + [SMALL_STATE(6619)] = 143779, + [SMALL_STATE(6620)] = 143833, + [SMALL_STATE(6621)] = 143887, + [SMALL_STATE(6622)] = 143923, + [SMALL_STATE(6623)] = 143977, + [SMALL_STATE(6624)] = 144031, + [SMALL_STATE(6625)] = 144085, + [SMALL_STATE(6626)] = 144137, + [SMALL_STATE(6627)] = 144191, + [SMALL_STATE(6628)] = 144243, + [SMALL_STATE(6629)] = 144297, + [SMALL_STATE(6630)] = 144351, + [SMALL_STATE(6631)] = 144403, + [SMALL_STATE(6632)] = 144457, + [SMALL_STATE(6633)] = 144511, + [SMALL_STATE(6634)] = 144565, + [SMALL_STATE(6635)] = 144619, + [SMALL_STATE(6636)] = 144673, + [SMALL_STATE(6637)] = 144725, + [SMALL_STATE(6638)] = 144779, + [SMALL_STATE(6639)] = 144831, + [SMALL_STATE(6640)] = 144883, + [SMALL_STATE(6641)] = 144937, + [SMALL_STATE(6642)] = 144989, + [SMALL_STATE(6643)] = 145043, + [SMALL_STATE(6644)] = 145097, + [SMALL_STATE(6645)] = 145149, + [SMALL_STATE(6646)] = 145203, + [SMALL_STATE(6647)] = 145257, + [SMALL_STATE(6648)] = 145311, + [SMALL_STATE(6649)] = 145365, + [SMALL_STATE(6650)] = 145419, + [SMALL_STATE(6651)] = 145473, + [SMALL_STATE(6652)] = 145527, + [SMALL_STATE(6653)] = 145581, + [SMALL_STATE(6654)] = 145635, + [SMALL_STATE(6655)] = 145689, + [SMALL_STATE(6656)] = 145743, + [SMALL_STATE(6657)] = 145797, + [SMALL_STATE(6658)] = 145851, + [SMALL_STATE(6659)] = 145905, + [SMALL_STATE(6660)] = 145957, + [SMALL_STATE(6661)] = 146011, + [SMALL_STATE(6662)] = 146063, + [SMALL_STATE(6663)] = 146115, + [SMALL_STATE(6664)] = 146169, + [SMALL_STATE(6665)] = 146223, + [SMALL_STATE(6666)] = 146275, + [SMALL_STATE(6667)] = 146327, + [SMALL_STATE(6668)] = 146379, + [SMALL_STATE(6669)] = 146433, + [SMALL_STATE(6670)] = 146485, + [SMALL_STATE(6671)] = 146537, + [SMALL_STATE(6672)] = 146589, + [SMALL_STATE(6673)] = 146643, + [SMALL_STATE(6674)] = 146697, + [SMALL_STATE(6675)] = 146749, + [SMALL_STATE(6676)] = 146801, + [SMALL_STATE(6677)] = 146855, + [SMALL_STATE(6678)] = 146909, + [SMALL_STATE(6679)] = 146961, + [SMALL_STATE(6680)] = 147015, + [SMALL_STATE(6681)] = 147069, + [SMALL_STATE(6682)] = 147104, + [SMALL_STATE(6683)] = 147153, + [SMALL_STATE(6684)] = 147202, + [SMALL_STATE(6685)] = 147251, + [SMALL_STATE(6686)] = 147300, + [SMALL_STATE(6687)] = 147349, + [SMALL_STATE(6688)] = 147398, + [SMALL_STATE(6689)] = 147447, + [SMALL_STATE(6690)] = 147496, + [SMALL_STATE(6691)] = 147545, + [SMALL_STATE(6692)] = 147594, + [SMALL_STATE(6693)] = 147643, + [SMALL_STATE(6694)] = 147692, + [SMALL_STATE(6695)] = 147741, + [SMALL_STATE(6696)] = 147790, + [SMALL_STATE(6697)] = 147839, + [SMALL_STATE(6698)] = 147888, + [SMALL_STATE(6699)] = 147937, + [SMALL_STATE(6700)] = 147986, + [SMALL_STATE(6701)] = 148035, + [SMALL_STATE(6702)] = 148084, + [SMALL_STATE(6703)] = 148133, + [SMALL_STATE(6704)] = 148182, + [SMALL_STATE(6705)] = 148231, + [SMALL_STATE(6706)] = 148280, + [SMALL_STATE(6707)] = 148329, + [SMALL_STATE(6708)] = 148378, + [SMALL_STATE(6709)] = 148427, + [SMALL_STATE(6710)] = 148476, + [SMALL_STATE(6711)] = 148525, + [SMALL_STATE(6712)] = 148574, + [SMALL_STATE(6713)] = 148623, + [SMALL_STATE(6714)] = 148672, + [SMALL_STATE(6715)] = 148721, + [SMALL_STATE(6716)] = 148770, + [SMALL_STATE(6717)] = 148819, + [SMALL_STATE(6718)] = 148868, + [SMALL_STATE(6719)] = 148917, + [SMALL_STATE(6720)] = 148966, + [SMALL_STATE(6721)] = 149015, + [SMALL_STATE(6722)] = 149064, + [SMALL_STATE(6723)] = 149099, + [SMALL_STATE(6724)] = 149148, + [SMALL_STATE(6725)] = 149197, + [SMALL_STATE(6726)] = 149246, + [SMALL_STATE(6727)] = 149295, + [SMALL_STATE(6728)] = 149344, + [SMALL_STATE(6729)] = 149393, + [SMALL_STATE(6730)] = 149442, + [SMALL_STATE(6731)] = 149491, + [SMALL_STATE(6732)] = 149540, + [SMALL_STATE(6733)] = 149589, + [SMALL_STATE(6734)] = 149638, + [SMALL_STATE(6735)] = 149687, + [SMALL_STATE(6736)] = 149736, + [SMALL_STATE(6737)] = 149785, + [SMALL_STATE(6738)] = 149815, + [SMALL_STATE(6739)] = 149845, + [SMALL_STATE(6740)] = 149875, + [SMALL_STATE(6741)] = 149905, + [SMALL_STATE(6742)] = 149954, + [SMALL_STATE(6743)] = 150005, + [SMALL_STATE(6744)] = 150056, + [SMALL_STATE(6745)] = 150105, + [SMALL_STATE(6746)] = 150156, + [SMALL_STATE(6747)] = 150207, + [SMALL_STATE(6748)] = 150258, + [SMALL_STATE(6749)] = 150309, + [SMALL_STATE(6750)] = 150360, + [SMALL_STATE(6751)] = 150409, + [SMALL_STATE(6752)] = 150460, + [SMALL_STATE(6753)] = 150511, + [SMALL_STATE(6754)] = 150562, + [SMALL_STATE(6755)] = 150611, + [SMALL_STATE(6756)] = 150662, + [SMALL_STATE(6757)] = 150711, + [SMALL_STATE(6758)] = 150760, + [SMALL_STATE(6759)] = 150809, + [SMALL_STATE(6760)] = 150860, + [SMALL_STATE(6761)] = 150909, + [SMALL_STATE(6762)] = 150958, + [SMALL_STATE(6763)] = 151007, + [SMALL_STATE(6764)] = 151056, + [SMALL_STATE(6765)] = 151105, + [SMALL_STATE(6766)] = 151154, + [SMALL_STATE(6767)] = 151203, + [SMALL_STATE(6768)] = 151252, + [SMALL_STATE(6769)] = 151303, + [SMALL_STATE(6770)] = 151352, + [SMALL_STATE(6771)] = 151403, + [SMALL_STATE(6772)] = 151452, + [SMALL_STATE(6773)] = 151503, + [SMALL_STATE(6774)] = 151552, + [SMALL_STATE(6775)] = 151603, + [SMALL_STATE(6776)] = 151652, + [SMALL_STATE(6777)] = 151703, + [SMALL_STATE(6778)] = 151752, + [SMALL_STATE(6779)] = 151803, + [SMALL_STATE(6780)] = 151852, + [SMALL_STATE(6781)] = 151901, + [SMALL_STATE(6782)] = 151950, + [SMALL_STATE(6783)] = 152001, + [SMALL_STATE(6784)] = 152050, + [SMALL_STATE(6785)] = 152101, + [SMALL_STATE(6786)] = 152150, + [SMALL_STATE(6787)] = 152201, + [SMALL_STATE(6788)] = 152250, + [SMALL_STATE(6789)] = 152299, + [SMALL_STATE(6790)] = 152350, + [SMALL_STATE(6791)] = 152399, + [SMALL_STATE(6792)] = 152450, + [SMALL_STATE(6793)] = 152501, + [SMALL_STATE(6794)] = 152550, + [SMALL_STATE(6795)] = 152601, + [SMALL_STATE(6796)] = 152652, + [SMALL_STATE(6797)] = 152701, + [SMALL_STATE(6798)] = 152750, + [SMALL_STATE(6799)] = 152799, + [SMALL_STATE(6800)] = 152848, + [SMALL_STATE(6801)] = 152897, + [SMALL_STATE(6802)] = 152948, + [SMALL_STATE(6803)] = 152997, + [SMALL_STATE(6804)] = 153046, + [SMALL_STATE(6805)] = 153097, + [SMALL_STATE(6806)] = 153146, + [SMALL_STATE(6807)] = 153195, + [SMALL_STATE(6808)] = 153246, + [SMALL_STATE(6809)] = 153295, + [SMALL_STATE(6810)] = 153344, + [SMALL_STATE(6811)] = 153393, + [SMALL_STATE(6812)] = 153442, + [SMALL_STATE(6813)] = 153493, + [SMALL_STATE(6814)] = 153544, + [SMALL_STATE(6815)] = 153593, + [SMALL_STATE(6816)] = 153644, + [SMALL_STATE(6817)] = 153693, + [SMALL_STATE(6818)] = 153742, + [SMALL_STATE(6819)] = 153793, + [SMALL_STATE(6820)] = 153844, + [SMALL_STATE(6821)] = 153893, + [SMALL_STATE(6822)] = 153942, + [SMALL_STATE(6823)] = 153991, + [SMALL_STATE(6824)] = 154040, + [SMALL_STATE(6825)] = 154089, + [SMALL_STATE(6826)] = 154138, + [SMALL_STATE(6827)] = 154189, + [SMALL_STATE(6828)] = 154238, + [SMALL_STATE(6829)] = 154289, + [SMALL_STATE(6830)] = 154338, + [SMALL_STATE(6831)] = 154387, + [SMALL_STATE(6832)] = 154436, + [SMALL_STATE(6833)] = 154485, + [SMALL_STATE(6834)] = 154536, + [SMALL_STATE(6835)] = 154587, + [SMALL_STATE(6836)] = 154636, + [SMALL_STATE(6837)] = 154687, + [SMALL_STATE(6838)] = 154738, + [SMALL_STATE(6839)] = 154787, + [SMALL_STATE(6840)] = 154838, + [SMALL_STATE(6841)] = 154889, + [SMALL_STATE(6842)] = 154940, + [SMALL_STATE(6843)] = 154991, + [SMALL_STATE(6844)] = 155040, + [SMALL_STATE(6845)] = 155089, + [SMALL_STATE(6846)] = 155138, + [SMALL_STATE(6847)] = 155187, + [SMALL_STATE(6848)] = 155238, + [SMALL_STATE(6849)] = 155289, + [SMALL_STATE(6850)] = 155338, + [SMALL_STATE(6851)] = 155387, + [SMALL_STATE(6852)] = 155436, + [SMALL_STATE(6853)] = 155487, + [SMALL_STATE(6854)] = 155538, + [SMALL_STATE(6855)] = 155589, + [SMALL_STATE(6856)] = 155640, + [SMALL_STATE(6857)] = 155691, + [SMALL_STATE(6858)] = 155742, + [SMALL_STATE(6859)] = 155793, + [SMALL_STATE(6860)] = 155844, + [SMALL_STATE(6861)] = 155895, + [SMALL_STATE(6862)] = 155946, + [SMALL_STATE(6863)] = 155997, + [SMALL_STATE(6864)] = 156046, + [SMALL_STATE(6865)] = 156097, + [SMALL_STATE(6866)] = 156148, + [SMALL_STATE(6867)] = 156197, + [SMALL_STATE(6868)] = 156248, + [SMALL_STATE(6869)] = 156299, + [SMALL_STATE(6870)] = 156350, + [SMALL_STATE(6871)] = 156401, + [SMALL_STATE(6872)] = 156450, + [SMALL_STATE(6873)] = 156499, + [SMALL_STATE(6874)] = 156550, + [SMALL_STATE(6875)] = 156599, + [SMALL_STATE(6876)] = 156650, + [SMALL_STATE(6877)] = 156699, + [SMALL_STATE(6878)] = 156750, + [SMALL_STATE(6879)] = 156801, + [SMALL_STATE(6880)] = 156852, + [SMALL_STATE(6881)] = 156901, + [SMALL_STATE(6882)] = 156952, + [SMALL_STATE(6883)] = 157001, + [SMALL_STATE(6884)] = 157052, + [SMALL_STATE(6885)] = 157103, + [SMALL_STATE(6886)] = 157152, + [SMALL_STATE(6887)] = 157201, + [SMALL_STATE(6888)] = 157252, + [SMALL_STATE(6889)] = 157301, + [SMALL_STATE(6890)] = 157350, + [SMALL_STATE(6891)] = 157399, + [SMALL_STATE(6892)] = 157450, + [SMALL_STATE(6893)] = 157499, + [SMALL_STATE(6894)] = 157548, + [SMALL_STATE(6895)] = 157597, + [SMALL_STATE(6896)] = 157646, + [SMALL_STATE(6897)] = 157697, + [SMALL_STATE(6898)] = 157746, + [SMALL_STATE(6899)] = 157795, + [SMALL_STATE(6900)] = 157844, + [SMALL_STATE(6901)] = 157893, + [SMALL_STATE(6902)] = 157944, + [SMALL_STATE(6903)] = 157993, + [SMALL_STATE(6904)] = 158042, + [SMALL_STATE(6905)] = 158091, + [SMALL_STATE(6906)] = 158140, + [SMALL_STATE(6907)] = 158189, + [SMALL_STATE(6908)] = 158240, + [SMALL_STATE(6909)] = 158289, + [SMALL_STATE(6910)] = 158338, + [SMALL_STATE(6911)] = 158387, + [SMALL_STATE(6912)] = 158436, + [SMALL_STATE(6913)] = 158485, + [SMALL_STATE(6914)] = 158534, + [SMALL_STATE(6915)] = 158585, + [SMALL_STATE(6916)] = 158634, + [SMALL_STATE(6917)] = 158683, + [SMALL_STATE(6918)] = 158732, + [SMALL_STATE(6919)] = 158781, + [SMALL_STATE(6920)] = 158830, + [SMALL_STATE(6921)] = 158879, + [SMALL_STATE(6922)] = 158928, + [SMALL_STATE(6923)] = 158977, + [SMALL_STATE(6924)] = 159028, + [SMALL_STATE(6925)] = 159079, + [SMALL_STATE(6926)] = 159128, + [SMALL_STATE(6927)] = 159177, + [SMALL_STATE(6928)] = 159226, + [SMALL_STATE(6929)] = 159277, + [SMALL_STATE(6930)] = 159328, + [SMALL_STATE(6931)] = 159379, + [SMALL_STATE(6932)] = 159428, + [SMALL_STATE(6933)] = 159477, + [SMALL_STATE(6934)] = 159528, + [SMALL_STATE(6935)] = 159579, + [SMALL_STATE(6936)] = 159628, + [SMALL_STATE(6937)] = 159679, + [SMALL_STATE(6938)] = 159728, + [SMALL_STATE(6939)] = 159777, + [SMALL_STATE(6940)] = 159826, + [SMALL_STATE(6941)] = 159875, + [SMALL_STATE(6942)] = 159924, + [SMALL_STATE(6943)] = 159973, + [SMALL_STATE(6944)] = 160024, + [SMALL_STATE(6945)] = 160075, + [SMALL_STATE(6946)] = 160124, + [SMALL_STATE(6947)] = 160173, + [SMALL_STATE(6948)] = 160222, + [SMALL_STATE(6949)] = 160271, + [SMALL_STATE(6950)] = 160322, + [SMALL_STATE(6951)] = 160373, + [SMALL_STATE(6952)] = 160422, + [SMALL_STATE(6953)] = 160473, + [SMALL_STATE(6954)] = 160524, + [SMALL_STATE(6955)] = 160575, + [SMALL_STATE(6956)] = 160626, + [SMALL_STATE(6957)] = 160675, + [SMALL_STATE(6958)] = 160724, + [SMALL_STATE(6959)] = 160775, + [SMALL_STATE(6960)] = 160826, + [SMALL_STATE(6961)] = 160875, + [SMALL_STATE(6962)] = 160926, + [SMALL_STATE(6963)] = 160975, + [SMALL_STATE(6964)] = 161026, + [SMALL_STATE(6965)] = 161077, + [SMALL_STATE(6966)] = 161126, + [SMALL_STATE(6967)] = 161175, + [SMALL_STATE(6968)] = 161226, + [SMALL_STATE(6969)] = 161277, + [SMALL_STATE(6970)] = 161328, + [SMALL_STATE(6971)] = 161379, + [SMALL_STATE(6972)] = 161430, + [SMALL_STATE(6973)] = 161481, + [SMALL_STATE(6974)] = 161530, + [SMALL_STATE(6975)] = 161581, + [SMALL_STATE(6976)] = 161632, + [SMALL_STATE(6977)] = 161683, + [SMALL_STATE(6978)] = 161732, + [SMALL_STATE(6979)] = 161783, + [SMALL_STATE(6980)] = 161834, + [SMALL_STATE(6981)] = 161885, + [SMALL_STATE(6982)] = 161936, + [SMALL_STATE(6983)] = 161985, + [SMALL_STATE(6984)] = 162036, + [SMALL_STATE(6985)] = 162085, + [SMALL_STATE(6986)] = 162134, + [SMALL_STATE(6987)] = 162185, + [SMALL_STATE(6988)] = 162234, + [SMALL_STATE(6989)] = 162283, + [SMALL_STATE(6990)] = 162332, + [SMALL_STATE(6991)] = 162383, + [SMALL_STATE(6992)] = 162432, + [SMALL_STATE(6993)] = 162483, + [SMALL_STATE(6994)] = 162532, + [SMALL_STATE(6995)] = 162583, + [SMALL_STATE(6996)] = 162632, + [SMALL_STATE(6997)] = 162681, + [SMALL_STATE(6998)] = 162732, + [SMALL_STATE(6999)] = 162783, + [SMALL_STATE(7000)] = 162834, + [SMALL_STATE(7001)] = 162885, + [SMALL_STATE(7002)] = 162936, + [SMALL_STATE(7003)] = 162987, + [SMALL_STATE(7004)] = 163038, + [SMALL_STATE(7005)] = 163089, + [SMALL_STATE(7006)] = 163140, + [SMALL_STATE(7007)] = 163191, + [SMALL_STATE(7008)] = 163242, + [SMALL_STATE(7009)] = 163291, + [SMALL_STATE(7010)] = 163342, + [SMALL_STATE(7011)] = 163393, + [SMALL_STATE(7012)] = 163444, + [SMALL_STATE(7013)] = 163495, + [SMALL_STATE(7014)] = 163546, + [SMALL_STATE(7015)] = 163597, + [SMALL_STATE(7016)] = 163648, + [SMALL_STATE(7017)] = 163699, + [SMALL_STATE(7018)] = 163748, + [SMALL_STATE(7019)] = 163799, + [SMALL_STATE(7020)] = 163850, + [SMALL_STATE(7021)] = 163901, + [SMALL_STATE(7022)] = 163952, + [SMALL_STATE(7023)] = 164003, + [SMALL_STATE(7024)] = 164052, + [SMALL_STATE(7025)] = 164103, + [SMALL_STATE(7026)] = 164154, + [SMALL_STATE(7027)] = 164205, + [SMALL_STATE(7028)] = 164256, + [SMALL_STATE(7029)] = 164305, + [SMALL_STATE(7030)] = 164354, + [SMALL_STATE(7031)] = 164405, + [SMALL_STATE(7032)] = 164456, + [SMALL_STATE(7033)] = 164507, + [SMALL_STATE(7034)] = 164556, + [SMALL_STATE(7035)] = 164605, + [SMALL_STATE(7036)] = 164654, + [SMALL_STATE(7037)] = 164703, + [SMALL_STATE(7038)] = 164754, + [SMALL_STATE(7039)] = 164805, + [SMALL_STATE(7040)] = 164856, + [SMALL_STATE(7041)] = 164907, + [SMALL_STATE(7042)] = 164958, + [SMALL_STATE(7043)] = 165007, + [SMALL_STATE(7044)] = 165056, + [SMALL_STATE(7045)] = 165107, + [SMALL_STATE(7046)] = 165156, + [SMALL_STATE(7047)] = 165205, + [SMALL_STATE(7048)] = 165256, + [SMALL_STATE(7049)] = 165307, + [SMALL_STATE(7050)] = 165358, + [SMALL_STATE(7051)] = 165407, + [SMALL_STATE(7052)] = 165456, + [SMALL_STATE(7053)] = 165507, + [SMALL_STATE(7054)] = 165556, + [SMALL_STATE(7055)] = 165607, + [SMALL_STATE(7056)] = 165658, + [SMALL_STATE(7057)] = 165707, + [SMALL_STATE(7058)] = 165756, + [SMALL_STATE(7059)] = 165807, + [SMALL_STATE(7060)] = 165858, + [SMALL_STATE(7061)] = 165909, + [SMALL_STATE(7062)] = 165958, + [SMALL_STATE(7063)] = 166009, + [SMALL_STATE(7064)] = 166060, + [SMALL_STATE(7065)] = 166111, + [SMALL_STATE(7066)] = 166160, + [SMALL_STATE(7067)] = 166211, + [SMALL_STATE(7068)] = 166262, + [SMALL_STATE(7069)] = 166313, + [SMALL_STATE(7070)] = 166364, + [SMALL_STATE(7071)] = 166415, + [SMALL_STATE(7072)] = 166464, + [SMALL_STATE(7073)] = 166515, + [SMALL_STATE(7074)] = 166564, + [SMALL_STATE(7075)] = 166615, + [SMALL_STATE(7076)] = 166666, + [SMALL_STATE(7077)] = 166717, + [SMALL_STATE(7078)] = 166768, + [SMALL_STATE(7079)] = 166819, + [SMALL_STATE(7080)] = 166870, + [SMALL_STATE(7081)] = 166921, + [SMALL_STATE(7082)] = 166972, + [SMALL_STATE(7083)] = 167023, + [SMALL_STATE(7084)] = 167072, + [SMALL_STATE(7085)] = 167123, + [SMALL_STATE(7086)] = 167174, + [SMALL_STATE(7087)] = 167223, + [SMALL_STATE(7088)] = 167274, + [SMALL_STATE(7089)] = 167325, + [SMALL_STATE(7090)] = 167376, + [SMALL_STATE(7091)] = 167427, + [SMALL_STATE(7092)] = 167478, + [SMALL_STATE(7093)] = 167529, + [SMALL_STATE(7094)] = 167580, + [SMALL_STATE(7095)] = 167631, + [SMALL_STATE(7096)] = 167682, + [SMALL_STATE(7097)] = 167733, + [SMALL_STATE(7098)] = 167784, + [SMALL_STATE(7099)] = 167835, + [SMALL_STATE(7100)] = 167886, + [SMALL_STATE(7101)] = 167937, + [SMALL_STATE(7102)] = 167988, + [SMALL_STATE(7103)] = 168039, + [SMALL_STATE(7104)] = 168090, + [SMALL_STATE(7105)] = 168141, + [SMALL_STATE(7106)] = 168192, + [SMALL_STATE(7107)] = 168243, + [SMALL_STATE(7108)] = 168294, + [SMALL_STATE(7109)] = 168345, + [SMALL_STATE(7110)] = 168394, + [SMALL_STATE(7111)] = 168445, + [SMALL_STATE(7112)] = 168496, + [SMALL_STATE(7113)] = 168547, + [SMALL_STATE(7114)] = 168598, + [SMALL_STATE(7115)] = 168647, + [SMALL_STATE(7116)] = 168698, + [SMALL_STATE(7117)] = 168747, + [SMALL_STATE(7118)] = 168798, + [SMALL_STATE(7119)] = 168849, + [SMALL_STATE(7120)] = 168900, + [SMALL_STATE(7121)] = 168951, + [SMALL_STATE(7122)] = 169000, + [SMALL_STATE(7123)] = 169051, + [SMALL_STATE(7124)] = 169102, + [SMALL_STATE(7125)] = 169153, + [SMALL_STATE(7126)] = 169204, + [SMALL_STATE(7127)] = 169255, + [SMALL_STATE(7128)] = 169306, + [SMALL_STATE(7129)] = 169357, + [SMALL_STATE(7130)] = 169401, + [SMALL_STATE(7131)] = 169439, + [SMALL_STATE(7132)] = 169475, + [SMALL_STATE(7133)] = 169503, + [SMALL_STATE(7134)] = 169551, + [SMALL_STATE(7135)] = 169595, + [SMALL_STATE(7136)] = 169639, + [SMALL_STATE(7137)] = 169669, + [SMALL_STATE(7138)] = 169707, + [SMALL_STATE(7139)] = 169751, + [SMALL_STATE(7140)] = 169783, + [SMALL_STATE(7141)] = 169827, + [SMALL_STATE(7142)] = 169875, + [SMALL_STATE(7143)] = 169923, + [SMALL_STATE(7144)] = 169971, + [SMALL_STATE(7145)] = 170019, + [SMALL_STATE(7146)] = 170063, + [SMALL_STATE(7147)] = 170111, + [SMALL_STATE(7148)] = 170159, + [SMALL_STATE(7149)] = 170203, + [SMALL_STATE(7150)] = 170247, + [SMALL_STATE(7151)] = 170291, + [SMALL_STATE(7152)] = 170335, + [SMALL_STATE(7153)] = 170379, + [SMALL_STATE(7154)] = 170427, + [SMALL_STATE(7155)] = 170471, + [SMALL_STATE(7156)] = 170507, + [SMALL_STATE(7157)] = 170555, + [SMALL_STATE(7158)] = 170599, + [SMALL_STATE(7159)] = 170643, + [SMALL_STATE(7160)] = 170687, + [SMALL_STATE(7161)] = 170731, + [SMALL_STATE(7162)] = 170775, + [SMALL_STATE(7163)] = 170819, + [SMALL_STATE(7164)] = 170863, + [SMALL_STATE(7165)] = 170911, + [SMALL_STATE(7166)] = 170955, + [SMALL_STATE(7167)] = 170999, + [SMALL_STATE(7168)] = 171043, + [SMALL_STATE(7169)] = 171087, + [SMALL_STATE(7170)] = 171131, + [SMALL_STATE(7171)] = 171175, + [SMALL_STATE(7172)] = 171219, + [SMALL_STATE(7173)] = 171263, + [SMALL_STATE(7174)] = 171307, + [SMALL_STATE(7175)] = 171351, + [SMALL_STATE(7176)] = 171395, + [SMALL_STATE(7177)] = 171439, + [SMALL_STATE(7178)] = 171483, + [SMALL_STATE(7179)] = 171527, + [SMALL_STATE(7180)] = 171571, + [SMALL_STATE(7181)] = 171615, + [SMALL_STATE(7182)] = 171663, + [SMALL_STATE(7183)] = 171711, + [SMALL_STATE(7184)] = 171755, + [SMALL_STATE(7185)] = 171799, + [SMALL_STATE(7186)] = 171847, + [SMALL_STATE(7187)] = 171891, + [SMALL_STATE(7188)] = 171935, + [SMALL_STATE(7189)] = 171979, + [SMALL_STATE(7190)] = 172027, + [SMALL_STATE(7191)] = 172071, + [SMALL_STATE(7192)] = 172115, + [SMALL_STATE(7193)] = 172159, + [SMALL_STATE(7194)] = 172203, + [SMALL_STATE(7195)] = 172247, + [SMALL_STATE(7196)] = 172291, + [SMALL_STATE(7197)] = 172335, + [SMALL_STATE(7198)] = 172379, + [SMALL_STATE(7199)] = 172423, + [SMALL_STATE(7200)] = 172471, + [SMALL_STATE(7201)] = 172515, + [SMALL_STATE(7202)] = 172559, + [SMALL_STATE(7203)] = 172603, + [SMALL_STATE(7204)] = 172647, + [SMALL_STATE(7205)] = 172691, + [SMALL_STATE(7206)] = 172722, + [SMALL_STATE(7207)] = 172749, + [SMALL_STATE(7208)] = 172780, + [SMALL_STATE(7209)] = 172815, + [SMALL_STATE(7210)] = 172850, + [SMALL_STATE(7211)] = 172881, + [SMALL_STATE(7212)] = 172916, + [SMALL_STATE(7213)] = 172947, + [SMALL_STATE(7214)] = 172990, + [SMALL_STATE(7215)] = 173021, + [SMALL_STATE(7216)] = 173056, + [SMALL_STATE(7217)] = 173091, + [SMALL_STATE(7218)] = 173118, + [SMALL_STATE(7219)] = 173158, + [SMALL_STATE(7220)] = 173198, + [SMALL_STATE(7221)] = 173238, + [SMALL_STATE(7222)] = 173278, + [SMALL_STATE(7223)] = 173318, + [SMALL_STATE(7224)] = 173358, + [SMALL_STATE(7225)] = 173384, + [SMALL_STATE(7226)] = 173424, + [SMALL_STATE(7227)] = 173464, + [SMALL_STATE(7228)] = 173504, + [SMALL_STATE(7229)] = 173544, + [SMALL_STATE(7230)] = 173584, + [SMALL_STATE(7231)] = 173610, + [SMALL_STATE(7232)] = 173640, + [SMALL_STATE(7233)] = 173680, + [SMALL_STATE(7234)] = 173720, + [SMALL_STATE(7235)] = 173760, + [SMALL_STATE(7236)] = 173800, + [SMALL_STATE(7237)] = 173840, + [SMALL_STATE(7238)] = 173880, + [SMALL_STATE(7239)] = 173920, + [SMALL_STATE(7240)] = 173960, + [SMALL_STATE(7241)] = 173986, + [SMALL_STATE(7242)] = 174026, + [SMALL_STATE(7243)] = 174066, + [SMALL_STATE(7244)] = 174106, + [SMALL_STATE(7245)] = 174146, + [SMALL_STATE(7246)] = 174186, + [SMALL_STATE(7247)] = 174226, + [SMALL_STATE(7248)] = 174266, + [SMALL_STATE(7249)] = 174306, + [SMALL_STATE(7250)] = 174336, + [SMALL_STATE(7251)] = 174364, + [SMALL_STATE(7252)] = 174404, + [SMALL_STATE(7253)] = 174444, + [SMALL_STATE(7254)] = 174484, + [SMALL_STATE(7255)] = 174510, + [SMALL_STATE(7256)] = 174550, + [SMALL_STATE(7257)] = 174590, + [SMALL_STATE(7258)] = 174630, + [SMALL_STATE(7259)] = 174670, + [SMALL_STATE(7260)] = 174710, + [SMALL_STATE(7261)] = 174750, + [SMALL_STATE(7262)] = 174790, + [SMALL_STATE(7263)] = 174818, + [SMALL_STATE(7264)] = 174858, + [SMALL_STATE(7265)] = 174898, + [SMALL_STATE(7266)] = 174938, + [SMALL_STATE(7267)] = 174978, + [SMALL_STATE(7268)] = 175018, + [SMALL_STATE(7269)] = 175058, + [SMALL_STATE(7270)] = 175098, + [SMALL_STATE(7271)] = 175138, + [SMALL_STATE(7272)] = 175178, + [SMALL_STATE(7273)] = 175218, + [SMALL_STATE(7274)] = 175258, + [SMALL_STATE(7275)] = 175287, + [SMALL_STATE(7276)] = 175326, + [SMALL_STATE(7277)] = 175363, + [SMALL_STATE(7278)] = 175402, + [SMALL_STATE(7279)] = 175439, + [SMALL_STATE(7280)] = 175478, + [SMALL_STATE(7281)] = 175515, + [SMALL_STATE(7282)] = 175552, + [SMALL_STATE(7283)] = 175589, + [SMALL_STATE(7284)] = 175626, + [SMALL_STATE(7285)] = 175663, + [SMALL_STATE(7286)] = 175700, + [SMALL_STATE(7287)] = 175737, + [SMALL_STATE(7288)] = 175776, + [SMALL_STATE(7289)] = 175807, + [SMALL_STATE(7290)] = 175836, + [SMALL_STATE(7291)] = 175873, + [SMALL_STATE(7292)] = 175910, + [SMALL_STATE(7293)] = 175947, + [SMALL_STATE(7294)] = 175984, + [SMALL_STATE(7295)] = 176021, + [SMALL_STATE(7296)] = 176058, + [SMALL_STATE(7297)] = 176085, + [SMALL_STATE(7298)] = 176122, + [SMALL_STATE(7299)] = 176159, + [SMALL_STATE(7300)] = 176184, + [SMALL_STATE(7301)] = 176221, + [SMALL_STATE(7302)] = 176258, + [SMALL_STATE(7303)] = 176283, + [SMALL_STATE(7304)] = 176322, + [SMALL_STATE(7305)] = 176359, + [SMALL_STATE(7306)] = 176396, + [SMALL_STATE(7307)] = 176435, + [SMALL_STATE(7308)] = 176472, + [SMALL_STATE(7309)] = 176509, + [SMALL_STATE(7310)] = 176534, + [SMALL_STATE(7311)] = 176571, + [SMALL_STATE(7312)] = 176608, + [SMALL_STATE(7313)] = 176645, + [SMALL_STATE(7314)] = 176684, + [SMALL_STATE(7315)] = 176721, + [SMALL_STATE(7316)] = 176758, + [SMALL_STATE(7317)] = 176795, + [SMALL_STATE(7318)] = 176832, + [SMALL_STATE(7319)] = 176861, + [SMALL_STATE(7320)] = 176898, + [SMALL_STATE(7321)] = 176935, + [SMALL_STATE(7322)] = 176972, + [SMALL_STATE(7323)] = 177009, + [SMALL_STATE(7324)] = 177046, + [SMALL_STATE(7325)] = 177083, + [SMALL_STATE(7326)] = 177120, + [SMALL_STATE(7327)] = 177157, + [SMALL_STATE(7328)] = 177186, + [SMALL_STATE(7329)] = 177211, + [SMALL_STATE(7330)] = 177248, + [SMALL_STATE(7331)] = 177287, + [SMALL_STATE(7332)] = 177326, + [SMALL_STATE(7333)] = 177365, + [SMALL_STATE(7334)] = 177390, + [SMALL_STATE(7335)] = 177427, + [SMALL_STATE(7336)] = 177464, + [SMALL_STATE(7337)] = 177503, + [SMALL_STATE(7338)] = 177540, + [SMALL_STATE(7339)] = 177565, + [SMALL_STATE(7340)] = 177602, + [SMALL_STATE(7341)] = 177627, + [SMALL_STATE(7342)] = 177664, + [SMALL_STATE(7343)] = 177689, + [SMALL_STATE(7344)] = 177714, + [SMALL_STATE(7345)] = 177739, + [SMALL_STATE(7346)] = 177778, + [SMALL_STATE(7347)] = 177815, + [SMALL_STATE(7348)] = 177852, + [SMALL_STATE(7349)] = 177881, + [SMALL_STATE(7350)] = 177920, + [SMALL_STATE(7351)] = 177957, + [SMALL_STATE(7352)] = 177982, + [SMALL_STATE(7353)] = 178007, + [SMALL_STATE(7354)] = 178039, + [SMALL_STATE(7355)] = 178067, + [SMALL_STATE(7356)] = 178099, + [SMALL_STATE(7357)] = 178131, + [SMALL_STATE(7358)] = 178167, + [SMALL_STATE(7359)] = 178199, + [SMALL_STATE(7360)] = 178231, + [SMALL_STATE(7361)] = 178263, + [SMALL_STATE(7362)] = 178299, + [SMALL_STATE(7363)] = 178335, + [SMALL_STATE(7364)] = 178371, + [SMALL_STATE(7365)] = 178407, + [SMALL_STATE(7366)] = 178439, + [SMALL_STATE(7367)] = 178475, + [SMALL_STATE(7368)] = 178507, + [SMALL_STATE(7369)] = 178543, + [SMALL_STATE(7370)] = 178575, + [SMALL_STATE(7371)] = 178607, + [SMALL_STATE(7372)] = 178643, + [SMALL_STATE(7373)] = 178679, + [SMALL_STATE(7374)] = 178711, + [SMALL_STATE(7375)] = 178743, + [SMALL_STATE(7376)] = 178779, + [SMALL_STATE(7377)] = 178815, + [SMALL_STATE(7378)] = 178847, + [SMALL_STATE(7379)] = 178883, + [SMALL_STATE(7380)] = 178919, + [SMALL_STATE(7381)] = 178955, + [SMALL_STATE(7382)] = 178987, + [SMALL_STATE(7383)] = 179023, + [SMALL_STATE(7384)] = 179059, + [SMALL_STATE(7385)] = 179095, + [SMALL_STATE(7386)] = 179131, + [SMALL_STATE(7387)] = 179163, + [SMALL_STATE(7388)] = 179199, + [SMALL_STATE(7389)] = 179231, + [SMALL_STATE(7390)] = 179267, + [SMALL_STATE(7391)] = 179303, + [SMALL_STATE(7392)] = 179335, + [SMALL_STATE(7393)] = 179371, + [SMALL_STATE(7394)] = 179403, + [SMALL_STATE(7395)] = 179435, + [SMALL_STATE(7396)] = 179471, + [SMALL_STATE(7397)] = 179503, + [SMALL_STATE(7398)] = 179539, + [SMALL_STATE(7399)] = 179571, + [SMALL_STATE(7400)] = 179607, + [SMALL_STATE(7401)] = 179639, + [SMALL_STATE(7402)] = 179675, + [SMALL_STATE(7403)] = 179703, + [SMALL_STATE(7404)] = 179735, + [SMALL_STATE(7405)] = 179771, + [SMALL_STATE(7406)] = 179807, + [SMALL_STATE(7407)] = 179843, + [SMALL_STATE(7408)] = 179875, + [SMALL_STATE(7409)] = 179907, + [SMALL_STATE(7410)] = 179943, + [SMALL_STATE(7411)] = 179979, + [SMALL_STATE(7412)] = 180015, + [SMALL_STATE(7413)] = 180051, + [SMALL_STATE(7414)] = 180087, + [SMALL_STATE(7415)] = 180123, + [SMALL_STATE(7416)] = 180159, + [SMALL_STATE(7417)] = 180191, + [SMALL_STATE(7418)] = 180223, + [SMALL_STATE(7419)] = 180259, + [SMALL_STATE(7420)] = 180295, + [SMALL_STATE(7421)] = 180331, + [SMALL_STATE(7422)] = 180367, + [SMALL_STATE(7423)] = 180403, + [SMALL_STATE(7424)] = 180439, + [SMALL_STATE(7425)] = 180477, + [SMALL_STATE(7426)] = 180509, + [SMALL_STATE(7427)] = 180545, + [SMALL_STATE(7428)] = 180581, + [SMALL_STATE(7429)] = 180617, + [SMALL_STATE(7430)] = 180653, + [SMALL_STATE(7431)] = 180689, + [SMALL_STATE(7432)] = 180723, + [SMALL_STATE(7433)] = 180755, + [SMALL_STATE(7434)] = 180791, + [SMALL_STATE(7435)] = 180827, + [SMALL_STATE(7436)] = 180863, + [SMALL_STATE(7437)] = 180895, + [SMALL_STATE(7438)] = 180927, + [SMALL_STATE(7439)] = 180959, + [SMALL_STATE(7440)] = 180995, + [SMALL_STATE(7441)] = 181027, + [SMALL_STATE(7442)] = 181063, + [SMALL_STATE(7443)] = 181095, + [SMALL_STATE(7444)] = 181127, + [SMALL_STATE(7445)] = 181163, + [SMALL_STATE(7446)] = 181199, + [SMALL_STATE(7447)] = 181235, + [SMALL_STATE(7448)] = 181259, + [SMALL_STATE(7449)] = 181291, + [SMALL_STATE(7450)] = 181327, + [SMALL_STATE(7451)] = 181363, + [SMALL_STATE(7452)] = 181399, + [SMALL_STATE(7453)] = 181431, + [SMALL_STATE(7454)] = 181467, + [SMALL_STATE(7455)] = 181503, + [SMALL_STATE(7456)] = 181539, + [SMALL_STATE(7457)] = 181571, + [SMALL_STATE(7458)] = 181607, + [SMALL_STATE(7459)] = 181643, + [SMALL_STATE(7460)] = 181671, + [SMALL_STATE(7461)] = 181703, + [SMALL_STATE(7462)] = 181727, + [SMALL_STATE(7463)] = 181763, + [SMALL_STATE(7464)] = 181795, + [SMALL_STATE(7465)] = 181827, + [SMALL_STATE(7466)] = 181863, + [SMALL_STATE(7467)] = 181895, + [SMALL_STATE(7468)] = 181931, + [SMALL_STATE(7469)] = 181963, + [SMALL_STATE(7470)] = 181999, + [SMALL_STATE(7471)] = 182035, + [SMALL_STATE(7472)] = 182067, + [SMALL_STATE(7473)] = 182099, + [SMALL_STATE(7474)] = 182135, + [SMALL_STATE(7475)] = 182167, + [SMALL_STATE(7476)] = 182203, + [SMALL_STATE(7477)] = 182239, + [SMALL_STATE(7478)] = 182275, + [SMALL_STATE(7479)] = 182311, + [SMALL_STATE(7480)] = 182347, + [SMALL_STATE(7481)] = 182383, + [SMALL_STATE(7482)] = 182419, + [SMALL_STATE(7483)] = 182455, + [SMALL_STATE(7484)] = 182491, + [SMALL_STATE(7485)] = 182527, + [SMALL_STATE(7486)] = 182559, + [SMALL_STATE(7487)] = 182595, + [SMALL_STATE(7488)] = 182627, + [SMALL_STATE(7489)] = 182663, + [SMALL_STATE(7490)] = 182699, + [SMALL_STATE(7491)] = 182735, + [SMALL_STATE(7492)] = 182771, + [SMALL_STATE(7493)] = 182807, + [SMALL_STATE(7494)] = 182839, + [SMALL_STATE(7495)] = 182871, + [SMALL_STATE(7496)] = 182895, + [SMALL_STATE(7497)] = 182931, + [SMALL_STATE(7498)] = 182963, + [SMALL_STATE(7499)] = 182999, + [SMALL_STATE(7500)] = 183035, + [SMALL_STATE(7501)] = 183071, + [SMALL_STATE(7502)] = 183103, + [SMALL_STATE(7503)] = 183139, + [SMALL_STATE(7504)] = 183175, + [SMALL_STATE(7505)] = 183207, + [SMALL_STATE(7506)] = 183239, + [SMALL_STATE(7507)] = 183271, + [SMALL_STATE(7508)] = 183307, + [SMALL_STATE(7509)] = 183343, + [SMALL_STATE(7510)] = 183375, + [SMALL_STATE(7511)] = 183399, + [SMALL_STATE(7512)] = 183435, + [SMALL_STATE(7513)] = 183471, + [SMALL_STATE(7514)] = 183503, + [SMALL_STATE(7515)] = 183539, + [SMALL_STATE(7516)] = 183571, + [SMALL_STATE(7517)] = 183607, + [SMALL_STATE(7518)] = 183639, + [SMALL_STATE(7519)] = 183675, + [SMALL_STATE(7520)] = 183707, + [SMALL_STATE(7521)] = 183743, + [SMALL_STATE(7522)] = 183779, + [SMALL_STATE(7523)] = 183815, + [SMALL_STATE(7524)] = 183851, + [SMALL_STATE(7525)] = 183883, + [SMALL_STATE(7526)] = 183919, + [SMALL_STATE(7527)] = 183955, + [SMALL_STATE(7528)] = 183991, + [SMALL_STATE(7529)] = 184027, + [SMALL_STATE(7530)] = 184059, + [SMALL_STATE(7531)] = 184091, + [SMALL_STATE(7532)] = 184127, + [SMALL_STATE(7533)] = 184163, + [SMALL_STATE(7534)] = 184199, + [SMALL_STATE(7535)] = 184223, + [SMALL_STATE(7536)] = 184259, + [SMALL_STATE(7537)] = 184291, + [SMALL_STATE(7538)] = 184323, + [SMALL_STATE(7539)] = 184347, + [SMALL_STATE(7540)] = 184383, + [SMALL_STATE(7541)] = 184419, + [SMALL_STATE(7542)] = 184451, + [SMALL_STATE(7543)] = 184487, + [SMALL_STATE(7544)] = 184523, + [SMALL_STATE(7545)] = 184559, + [SMALL_STATE(7546)] = 184595, + [SMALL_STATE(7547)] = 184631, + [SMALL_STATE(7548)] = 184663, + [SMALL_STATE(7549)] = 184699, + [SMALL_STATE(7550)] = 184735, + [SMALL_STATE(7551)] = 184771, + [SMALL_STATE(7552)] = 184807, + [SMALL_STATE(7553)] = 184839, + [SMALL_STATE(7554)] = 184875, + [SMALL_STATE(7555)] = 184907, + [SMALL_STATE(7556)] = 184943, + [SMALL_STATE(7557)] = 184979, + [SMALL_STATE(7558)] = 185015, + [SMALL_STATE(7559)] = 185047, + [SMALL_STATE(7560)] = 185075, + [SMALL_STATE(7561)] = 185107, + [SMALL_STATE(7562)] = 185143, + [SMALL_STATE(7563)] = 185175, + [SMALL_STATE(7564)] = 185211, + [SMALL_STATE(7565)] = 185247, + [SMALL_STATE(7566)] = 185279, + [SMALL_STATE(7567)] = 185311, + [SMALL_STATE(7568)] = 185347, + [SMALL_STATE(7569)] = 185383, + [SMALL_STATE(7570)] = 185419, + [SMALL_STATE(7571)] = 185455, + [SMALL_STATE(7572)] = 185487, + [SMALL_STATE(7573)] = 185523, + [SMALL_STATE(7574)] = 185561, + [SMALL_STATE(7575)] = 185585, + [SMALL_STATE(7576)] = 185621, + [SMALL_STATE(7577)] = 185657, + [SMALL_STATE(7578)] = 185693, + [SMALL_STATE(7579)] = 185729, + [SMALL_STATE(7580)] = 185765, + [SMALL_STATE(7581)] = 185797, + [SMALL_STATE(7582)] = 185833, + [SMALL_STATE(7583)] = 185869, + [SMALL_STATE(7584)] = 185901, + [SMALL_STATE(7585)] = 185933, + [SMALL_STATE(7586)] = 185965, + [SMALL_STATE(7587)] = 186001, + [SMALL_STATE(7588)] = 186037, + [SMALL_STATE(7589)] = 186073, + [SMALL_STATE(7590)] = 186109, + [SMALL_STATE(7591)] = 186141, + [SMALL_STATE(7592)] = 186171, + [SMALL_STATE(7593)] = 186207, + [SMALL_STATE(7594)] = 186243, + [SMALL_STATE(7595)] = 186279, + [SMALL_STATE(7596)] = 186315, + [SMALL_STATE(7597)] = 186347, + [SMALL_STATE(7598)] = 186382, + [SMALL_STATE(7599)] = 186417, + [SMALL_STATE(7600)] = 186452, + [SMALL_STATE(7601)] = 186485, + [SMALL_STATE(7602)] = 186518, + [SMALL_STATE(7603)] = 186551, + [SMALL_STATE(7604)] = 186578, + [SMALL_STATE(7605)] = 186613, + [SMALL_STATE(7606)] = 186646, + [SMALL_STATE(7607)] = 186681, + [SMALL_STATE(7608)] = 186704, + [SMALL_STATE(7609)] = 186737, + [SMALL_STATE(7610)] = 186760, + [SMALL_STATE(7611)] = 186793, + [SMALL_STATE(7612)] = 186828, + [SMALL_STATE(7613)] = 186861, + [SMALL_STATE(7614)] = 186884, + [SMALL_STATE(7615)] = 186917, + [SMALL_STATE(7616)] = 186950, + [SMALL_STATE(7617)] = 186985, + [SMALL_STATE(7618)] = 187020, + [SMALL_STATE(7619)] = 187053, + [SMALL_STATE(7620)] = 187088, + [SMALL_STATE(7621)] = 187121, + [SMALL_STATE(7622)] = 187154, + [SMALL_STATE(7623)] = 187189, + [SMALL_STATE(7624)] = 187222, + [SMALL_STATE(7625)] = 187255, + [SMALL_STATE(7626)] = 187288, + [SMALL_STATE(7627)] = 187321, + [SMALL_STATE(7628)] = 187354, + [SMALL_STATE(7629)] = 187387, + [SMALL_STATE(7630)] = 187420, + [SMALL_STATE(7631)] = 187453, + [SMALL_STATE(7632)] = 187488, + [SMALL_STATE(7633)] = 187521, + [SMALL_STATE(7634)] = 187556, + [SMALL_STATE(7635)] = 187591, + [SMALL_STATE(7636)] = 187614, + [SMALL_STATE(7637)] = 187649, + [SMALL_STATE(7638)] = 187684, + [SMALL_STATE(7639)] = 187719, + [SMALL_STATE(7640)] = 187752, + [SMALL_STATE(7641)] = 187785, + [SMALL_STATE(7642)] = 187820, + [SMALL_STATE(7643)] = 187855, + [SMALL_STATE(7644)] = 187890, + [SMALL_STATE(7645)] = 187923, + [SMALL_STATE(7646)] = 187956, + [SMALL_STATE(7647)] = 187989, + [SMALL_STATE(7648)] = 188024, + [SMALL_STATE(7649)] = 188059, + [SMALL_STATE(7650)] = 188092, + [SMALL_STATE(7651)] = 188125, + [SMALL_STATE(7652)] = 188148, + [SMALL_STATE(7653)] = 188183, + [SMALL_STATE(7654)] = 188218, + [SMALL_STATE(7655)] = 188253, + [SMALL_STATE(7656)] = 188288, + [SMALL_STATE(7657)] = 188323, + [SMALL_STATE(7658)] = 188358, + [SMALL_STATE(7659)] = 188393, + [SMALL_STATE(7660)] = 188428, + [SMALL_STATE(7661)] = 188461, + [SMALL_STATE(7662)] = 188496, + [SMALL_STATE(7663)] = 188531, + [SMALL_STATE(7664)] = 188566, + [SMALL_STATE(7665)] = 188599, + [SMALL_STATE(7666)] = 188634, + [SMALL_STATE(7667)] = 188667, + [SMALL_STATE(7668)] = 188690, + [SMALL_STATE(7669)] = 188725, + [SMALL_STATE(7670)] = 188760, + [SMALL_STATE(7671)] = 188795, + [SMALL_STATE(7672)] = 188830, + [SMALL_STATE(7673)] = 188863, + [SMALL_STATE(7674)] = 188896, + [SMALL_STATE(7675)] = 188931, + [SMALL_STATE(7676)] = 188966, + [SMALL_STATE(7677)] = 189001, + [SMALL_STATE(7678)] = 189036, + [SMALL_STATE(7679)] = 189069, + [SMALL_STATE(7680)] = 189102, + [SMALL_STATE(7681)] = 189135, + [SMALL_STATE(7682)] = 189158, + [SMALL_STATE(7683)] = 189191, + [SMALL_STATE(7684)] = 189226, + [SMALL_STATE(7685)] = 189261, + [SMALL_STATE(7686)] = 189284, + [SMALL_STATE(7687)] = 189319, + [SMALL_STATE(7688)] = 189342, + [SMALL_STATE(7689)] = 189377, + [SMALL_STATE(7690)] = 189410, + [SMALL_STATE(7691)] = 189445, + [SMALL_STATE(7692)] = 189480, + [SMALL_STATE(7693)] = 189513, + [SMALL_STATE(7694)] = 189542, + [SMALL_STATE(7695)] = 189575, + [SMALL_STATE(7696)] = 189610, + [SMALL_STATE(7697)] = 189643, + [SMALL_STATE(7698)] = 189678, + [SMALL_STATE(7699)] = 189713, + [SMALL_STATE(7700)] = 189746, + [SMALL_STATE(7701)] = 189781, + [SMALL_STATE(7702)] = 189816, + [SMALL_STATE(7703)] = 189849, + [SMALL_STATE(7704)] = 189884, + [SMALL_STATE(7705)] = 189917, + [SMALL_STATE(7706)] = 189952, + [SMALL_STATE(7707)] = 189985, + [SMALL_STATE(7708)] = 190018, + [SMALL_STATE(7709)] = 190051, + [SMALL_STATE(7710)] = 190074, + [SMALL_STATE(7711)] = 190109, + [SMALL_STATE(7712)] = 190144, + [SMALL_STATE(7713)] = 190179, + [SMALL_STATE(7714)] = 190214, + [SMALL_STATE(7715)] = 190249, + [SMALL_STATE(7716)] = 190284, + [SMALL_STATE(7717)] = 190319, + [SMALL_STATE(7718)] = 190354, + [SMALL_STATE(7719)] = 190389, + [SMALL_STATE(7720)] = 190422, + [SMALL_STATE(7721)] = 190455, + [SMALL_STATE(7722)] = 190488, + [SMALL_STATE(7723)] = 190523, + [SMALL_STATE(7724)] = 190558, + [SMALL_STATE(7725)] = 190593, + [SMALL_STATE(7726)] = 190628, + [SMALL_STATE(7727)] = 190661, + [SMALL_STATE(7728)] = 190694, + [SMALL_STATE(7729)] = 190729, + [SMALL_STATE(7730)] = 190764, + [SMALL_STATE(7731)] = 190799, + [SMALL_STATE(7732)] = 190832, + [SMALL_STATE(7733)] = 190867, + [SMALL_STATE(7734)] = 190890, + [SMALL_STATE(7735)] = 190923, + [SMALL_STATE(7736)] = 190956, + [SMALL_STATE(7737)] = 190991, + [SMALL_STATE(7738)] = 191026, + [SMALL_STATE(7739)] = 191061, + [SMALL_STATE(7740)] = 191094, + [SMALL_STATE(7741)] = 191127, + [SMALL_STATE(7742)] = 191160, + [SMALL_STATE(7743)] = 191195, + [SMALL_STATE(7744)] = 191230, + [SMALL_STATE(7745)] = 191265, + [SMALL_STATE(7746)] = 191300, + [SMALL_STATE(7747)] = 191333, + [SMALL_STATE(7748)] = 191368, + [SMALL_STATE(7749)] = 191401, + [SMALL_STATE(7750)] = 191436, + [SMALL_STATE(7751)] = 191469, + [SMALL_STATE(7752)] = 191502, + [SMALL_STATE(7753)] = 191537, + [SMALL_STATE(7754)] = 191572, + [SMALL_STATE(7755)] = 191607, + [SMALL_STATE(7756)] = 191640, + [SMALL_STATE(7757)] = 191675, + [SMALL_STATE(7758)] = 191710, + [SMALL_STATE(7759)] = 191743, + [SMALL_STATE(7760)] = 191778, + [SMALL_STATE(7761)] = 191813, + [SMALL_STATE(7762)] = 191848, + [SMALL_STATE(7763)] = 191881, + [SMALL_STATE(7764)] = 191916, + [SMALL_STATE(7765)] = 191951, + [SMALL_STATE(7766)] = 191986, + [SMALL_STATE(7767)] = 192021, + [SMALL_STATE(7768)] = 192054, + [SMALL_STATE(7769)] = 192089, + [SMALL_STATE(7770)] = 192122, + [SMALL_STATE(7771)] = 192157, + [SMALL_STATE(7772)] = 192190, + [SMALL_STATE(7773)] = 192223, + [SMALL_STATE(7774)] = 192258, + [SMALL_STATE(7775)] = 192291, + [SMALL_STATE(7776)] = 192326, + [SMALL_STATE(7777)] = 192361, + [SMALL_STATE(7778)] = 192396, + [SMALL_STATE(7779)] = 192429, + [SMALL_STATE(7780)] = 192462, + [SMALL_STATE(7781)] = 192497, + [SMALL_STATE(7782)] = 192530, + [SMALL_STATE(7783)] = 192563, + [SMALL_STATE(7784)] = 192596, + [SMALL_STATE(7785)] = 192631, + [SMALL_STATE(7786)] = 192664, + [SMALL_STATE(7787)] = 192699, + [SMALL_STATE(7788)] = 192722, + [SMALL_STATE(7789)] = 192757, + [SMALL_STATE(7790)] = 192792, + [SMALL_STATE(7791)] = 192825, + [SMALL_STATE(7792)] = 192860, + [SMALL_STATE(7793)] = 192895, + [SMALL_STATE(7794)] = 192930, + [SMALL_STATE(7795)] = 192963, + [SMALL_STATE(7796)] = 192996, + [SMALL_STATE(7797)] = 193031, + [SMALL_STATE(7798)] = 193064, + [SMALL_STATE(7799)] = 193099, + [SMALL_STATE(7800)] = 193132, + [SMALL_STATE(7801)] = 193167, + [SMALL_STATE(7802)] = 193200, + [SMALL_STATE(7803)] = 193235, + [SMALL_STATE(7804)] = 193268, + [SMALL_STATE(7805)] = 193303, + [SMALL_STATE(7806)] = 193338, + [SMALL_STATE(7807)] = 193371, + [SMALL_STATE(7808)] = 193406, + [SMALL_STATE(7809)] = 193441, + [SMALL_STATE(7810)] = 193476, + [SMALL_STATE(7811)] = 193511, + [SMALL_STATE(7812)] = 193546, + [SMALL_STATE(7813)] = 193581, + [SMALL_STATE(7814)] = 193616, + [SMALL_STATE(7815)] = 193651, + [SMALL_STATE(7816)] = 193686, + [SMALL_STATE(7817)] = 193719, + [SMALL_STATE(7818)] = 193754, + [SMALL_STATE(7819)] = 193789, + [SMALL_STATE(7820)] = 193824, + [SMALL_STATE(7821)] = 193859, + [SMALL_STATE(7822)] = 193894, + [SMALL_STATE(7823)] = 193927, + [SMALL_STATE(7824)] = 193962, + [SMALL_STATE(7825)] = 193995, + [SMALL_STATE(7826)] = 194030, + [SMALL_STATE(7827)] = 194065, + [SMALL_STATE(7828)] = 194100, + [SMALL_STATE(7829)] = 194135, + [SMALL_STATE(7830)] = 194170, + [SMALL_STATE(7831)] = 194205, + [SMALL_STATE(7832)] = 194240, + [SMALL_STATE(7833)] = 194275, + [SMALL_STATE(7834)] = 194310, + [SMALL_STATE(7835)] = 194343, + [SMALL_STATE(7836)] = 194378, + [SMALL_STATE(7837)] = 194400, + [SMALL_STATE(7838)] = 194422, + [SMALL_STATE(7839)] = 194444, + [SMALL_STATE(7840)] = 194466, + [SMALL_STATE(7841)] = 194488, + [SMALL_STATE(7842)] = 194528, + [SMALL_STATE(7843)] = 194550, + [SMALL_STATE(7844)] = 194572, + [SMALL_STATE(7845)] = 194594, + [SMALL_STATE(7846)] = 194616, + [SMALL_STATE(7847)] = 194638, + [SMALL_STATE(7848)] = 194660, + [SMALL_STATE(7849)] = 194682, + [SMALL_STATE(7850)] = 194708, + [SMALL_STATE(7851)] = 194734, + [SMALL_STATE(7852)] = 194756, + [SMALL_STATE(7853)] = 194782, + [SMALL_STATE(7854)] = 194804, + [SMALL_STATE(7855)] = 194826, + [SMALL_STATE(7856)] = 194848, + [SMALL_STATE(7857)] = 194870, + [SMALL_STATE(7858)] = 194892, + [SMALL_STATE(7859)] = 194914, + [SMALL_STATE(7860)] = 194940, + [SMALL_STATE(7861)] = 194962, + [SMALL_STATE(7862)] = 194984, + [SMALL_STATE(7863)] = 195006, + [SMALL_STATE(7864)] = 195035, + [SMALL_STATE(7865)] = 195064, + [SMALL_STATE(7866)] = 195093, + [SMALL_STATE(7867)] = 195118, + [SMALL_STATE(7868)] = 195143, + [SMALL_STATE(7869)] = 195172, + [SMALL_STATE(7870)] = 195201, + [SMALL_STATE(7871)] = 195226, + [SMALL_STATE(7872)] = 195255, + [SMALL_STATE(7873)] = 195284, + [SMALL_STATE(7874)] = 195313, + [SMALL_STATE(7875)] = 195342, + [SMALL_STATE(7876)] = 195367, + [SMALL_STATE(7877)] = 195392, + [SMALL_STATE(7878)] = 195417, + [SMALL_STATE(7879)] = 195446, + [SMALL_STATE(7880)] = 195475, + [SMALL_STATE(7881)] = 195504, + [SMALL_STATE(7882)] = 195529, + [SMALL_STATE(7883)] = 195558, + [SMALL_STATE(7884)] = 195587, + [SMALL_STATE(7885)] = 195612, + [SMALL_STATE(7886)] = 195641, + [SMALL_STATE(7887)] = 195670, + [SMALL_STATE(7888)] = 195699, + [SMALL_STATE(7889)] = 195728, + [SMALL_STATE(7890)] = 195757, + [SMALL_STATE(7891)] = 195782, + [SMALL_STATE(7892)] = 195805, + [SMALL_STATE(7893)] = 195834, + [SMALL_STATE(7894)] = 195863, + [SMALL_STATE(7895)] = 195888, + [SMALL_STATE(7896)] = 195917, + [SMALL_STATE(7897)] = 195946, + [SMALL_STATE(7898)] = 195971, + [SMALL_STATE(7899)] = 196000, + [SMALL_STATE(7900)] = 196029, + [SMALL_STATE(7901)] = 196058, + [SMALL_STATE(7902)] = 196087, + [SMALL_STATE(7903)] = 196112, + [SMALL_STATE(7904)] = 196141, + [SMALL_STATE(7905)] = 196170, + [SMALL_STATE(7906)] = 196199, + [SMALL_STATE(7907)] = 196228, + [SMALL_STATE(7908)] = 196257, + [SMALL_STATE(7909)] = 196286, + [SMALL_STATE(7910)] = 196309, + [SMALL_STATE(7911)] = 196338, + [SMALL_STATE(7912)] = 196367, + [SMALL_STATE(7913)] = 196396, + [SMALL_STATE(7914)] = 196425, + [SMALL_STATE(7915)] = 196454, + [SMALL_STATE(7916)] = 196483, + [SMALL_STATE(7917)] = 196512, + [SMALL_STATE(7918)] = 196541, + [SMALL_STATE(7919)] = 196570, + [SMALL_STATE(7920)] = 196599, + [SMALL_STATE(7921)] = 196628, + [SMALL_STATE(7922)] = 196657, + [SMALL_STATE(7923)] = 196686, + [SMALL_STATE(7924)] = 196715, + [SMALL_STATE(7925)] = 196744, + [SMALL_STATE(7926)] = 196773, + [SMALL_STATE(7927)] = 196802, + [SMALL_STATE(7928)] = 196831, + [SMALL_STATE(7929)] = 196860, + [SMALL_STATE(7930)] = 196889, + [SMALL_STATE(7931)] = 196910, + [SMALL_STATE(7932)] = 196939, + [SMALL_STATE(7933)] = 196968, + [SMALL_STATE(7934)] = 196997, + [SMALL_STATE(7935)] = 197026, + [SMALL_STATE(7936)] = 197051, + [SMALL_STATE(7937)] = 197080, + [SMALL_STATE(7938)] = 197109, + [SMALL_STATE(7939)] = 197138, + [SMALL_STATE(7940)] = 197167, + [SMALL_STATE(7941)] = 197196, + [SMALL_STATE(7942)] = 197221, + [SMALL_STATE(7943)] = 197250, + [SMALL_STATE(7944)] = 197275, + [SMALL_STATE(7945)] = 197304, + [SMALL_STATE(7946)] = 197333, + [SMALL_STATE(7947)] = 197362, + [SMALL_STATE(7948)] = 197391, + [SMALL_STATE(7949)] = 197420, + [SMALL_STATE(7950)] = 197449, + [SMALL_STATE(7951)] = 197472, + [SMALL_STATE(7952)] = 197501, + [SMALL_STATE(7953)] = 197530, + [SMALL_STATE(7954)] = 197559, + [SMALL_STATE(7955)] = 197588, + [SMALL_STATE(7956)] = 197617, + [SMALL_STATE(7957)] = 197646, + [SMALL_STATE(7958)] = 197675, + [SMALL_STATE(7959)] = 197704, + [SMALL_STATE(7960)] = 197733, + [SMALL_STATE(7961)] = 197762, + [SMALL_STATE(7962)] = 197791, + [SMALL_STATE(7963)] = 197820, + [SMALL_STATE(7964)] = 197849, + [SMALL_STATE(7965)] = 197874, + [SMALL_STATE(7966)] = 197899, + [SMALL_STATE(7967)] = 197928, + [SMALL_STATE(7968)] = 197957, + [SMALL_STATE(7969)] = 197986, + [SMALL_STATE(7970)] = 198015, + [SMALL_STATE(7971)] = 198044, + [SMALL_STATE(7972)] = 198073, + [SMALL_STATE(7973)] = 198096, + [SMALL_STATE(7974)] = 198125, + [SMALL_STATE(7975)] = 198154, + [SMALL_STATE(7976)] = 198183, + [SMALL_STATE(7977)] = 198212, + [SMALL_STATE(7978)] = 198241, + [SMALL_STATE(7979)] = 198270, + [SMALL_STATE(7980)] = 198299, + [SMALL_STATE(7981)] = 198328, + [SMALL_STATE(7982)] = 198357, + [SMALL_STATE(7983)] = 198386, + [SMALL_STATE(7984)] = 198415, + [SMALL_STATE(7985)] = 198444, + [SMALL_STATE(7986)] = 198473, + [SMALL_STATE(7987)] = 198502, + [SMALL_STATE(7988)] = 198527, + [SMALL_STATE(7989)] = 198556, + [SMALL_STATE(7990)] = 198585, + [SMALL_STATE(7991)] = 198614, + [SMALL_STATE(7992)] = 198643, + [SMALL_STATE(7993)] = 198672, + [SMALL_STATE(7994)] = 198701, + [SMALL_STATE(7995)] = 198730, + [SMALL_STATE(7996)] = 198755, + [SMALL_STATE(7997)] = 198784, + [SMALL_STATE(7998)] = 198813, + [SMALL_STATE(7999)] = 198838, + [SMALL_STATE(8000)] = 198867, + [SMALL_STATE(8001)] = 198896, + [SMALL_STATE(8002)] = 198921, + [SMALL_STATE(8003)] = 198950, + [SMALL_STATE(8004)] = 198975, + [SMALL_STATE(8005)] = 199004, + [SMALL_STATE(8006)] = 199033, + [SMALL_STATE(8007)] = 199062, + [SMALL_STATE(8008)] = 199091, + [SMALL_STATE(8009)] = 199120, + [SMALL_STATE(8010)] = 199149, + [SMALL_STATE(8011)] = 199178, + [SMALL_STATE(8012)] = 199207, + [SMALL_STATE(8013)] = 199236, + [SMALL_STATE(8014)] = 199265, + [SMALL_STATE(8015)] = 199294, + [SMALL_STATE(8016)] = 199319, + [SMALL_STATE(8017)] = 199344, + [SMALL_STATE(8018)] = 199373, + [SMALL_STATE(8019)] = 199398, + [SMALL_STATE(8020)] = 199427, + [SMALL_STATE(8021)] = 199456, + [SMALL_STATE(8022)] = 199485, + [SMALL_STATE(8023)] = 199511, + [SMALL_STATE(8024)] = 199545, + [SMALL_STATE(8025)] = 199567, + [SMALL_STATE(8026)] = 199593, + [SMALL_STATE(8027)] = 199619, + [SMALL_STATE(8028)] = 199645, + [SMALL_STATE(8029)] = 199671, + [SMALL_STATE(8030)] = 199697, + [SMALL_STATE(8031)] = 199731, + [SMALL_STATE(8032)] = 199757, + [SMALL_STATE(8033)] = 199783, + [SMALL_STATE(8034)] = 199809, + [SMALL_STATE(8035)] = 199835, + [SMALL_STATE(8036)] = 199861, + [SMALL_STATE(8037)] = 199887, + [SMALL_STATE(8038)] = 199913, + [SMALL_STATE(8039)] = 199939, + [SMALL_STATE(8040)] = 199965, + [SMALL_STATE(8041)] = 199991, + [SMALL_STATE(8042)] = 200017, + [SMALL_STATE(8043)] = 200037, + [SMALL_STATE(8044)] = 200063, + [SMALL_STATE(8045)] = 200089, + [SMALL_STATE(8046)] = 200115, + [SMALL_STATE(8047)] = 200149, + [SMALL_STATE(8048)] = 200175, + [SMALL_STATE(8049)] = 200201, + [SMALL_STATE(8050)] = 200227, + [SMALL_STATE(8051)] = 200253, + [SMALL_STATE(8052)] = 200279, + [SMALL_STATE(8053)] = 200305, + [SMALL_STATE(8054)] = 200331, + [SMALL_STATE(8055)] = 200357, + [SMALL_STATE(8056)] = 200383, + [SMALL_STATE(8057)] = 200409, + [SMALL_STATE(8058)] = 200435, + [SMALL_STATE(8059)] = 200469, + [SMALL_STATE(8060)] = 200495, + [SMALL_STATE(8061)] = 200521, + [SMALL_STATE(8062)] = 200547, + [SMALL_STATE(8063)] = 200573, + [SMALL_STATE(8064)] = 200599, + [SMALL_STATE(8065)] = 200625, + [SMALL_STATE(8066)] = 200651, + [SMALL_STATE(8067)] = 200677, + [SMALL_STATE(8068)] = 200703, + [SMALL_STATE(8069)] = 200729, + [SMALL_STATE(8070)] = 200755, + [SMALL_STATE(8071)] = 200789, + [SMALL_STATE(8072)] = 200815, + [SMALL_STATE(8073)] = 200841, + [SMALL_STATE(8074)] = 200875, + [SMALL_STATE(8075)] = 200901, + [SMALL_STATE(8076)] = 200927, + [SMALL_STATE(8077)] = 200953, + [SMALL_STATE(8078)] = 200979, + [SMALL_STATE(8079)] = 201005, + [SMALL_STATE(8080)] = 201031, + [SMALL_STATE(8081)] = 201057, + [SMALL_STATE(8082)] = 201083, + [SMALL_STATE(8083)] = 201109, + [SMALL_STATE(8084)] = 201135, + [SMALL_STATE(8085)] = 201153, + [SMALL_STATE(8086)] = 201179, + [SMALL_STATE(8087)] = 201205, + [SMALL_STATE(8088)] = 201231, + [SMALL_STATE(8089)] = 201265, + [SMALL_STATE(8090)] = 201291, + [SMALL_STATE(8091)] = 201325, + [SMALL_STATE(8092)] = 201351, + [SMALL_STATE(8093)] = 201377, + [SMALL_STATE(8094)] = 201403, + [SMALL_STATE(8095)] = 201429, + [SMALL_STATE(8096)] = 201455, + [SMALL_STATE(8097)] = 201481, + [SMALL_STATE(8098)] = 201507, + [SMALL_STATE(8099)] = 201533, + [SMALL_STATE(8100)] = 201559, + [SMALL_STATE(8101)] = 201585, + [SMALL_STATE(8102)] = 201619, + [SMALL_STATE(8103)] = 201645, + [SMALL_STATE(8104)] = 201671, + [SMALL_STATE(8105)] = 201697, + [SMALL_STATE(8106)] = 201731, + [SMALL_STATE(8107)] = 201757, + [SMALL_STATE(8108)] = 201783, + [SMALL_STATE(8109)] = 201817, + [SMALL_STATE(8110)] = 201839, + [SMALL_STATE(8111)] = 201865, + [SMALL_STATE(8112)] = 201891, + [SMALL_STATE(8113)] = 201917, + [SMALL_STATE(8114)] = 201943, + [SMALL_STATE(8115)] = 201969, + [SMALL_STATE(8116)] = 201989, + [SMALL_STATE(8117)] = 202015, + [SMALL_STATE(8118)] = 202041, + [SMALL_STATE(8119)] = 202067, + [SMALL_STATE(8120)] = 202093, + [SMALL_STATE(8121)] = 202119, + [SMALL_STATE(8122)] = 202145, + [SMALL_STATE(8123)] = 202171, + [SMALL_STATE(8124)] = 202197, + [SMALL_STATE(8125)] = 202223, + [SMALL_STATE(8126)] = 202249, + [SMALL_STATE(8127)] = 202275, + [SMALL_STATE(8128)] = 202301, + [SMALL_STATE(8129)] = 202327, + [SMALL_STATE(8130)] = 202353, + [SMALL_STATE(8131)] = 202379, + [SMALL_STATE(8132)] = 202413, + [SMALL_STATE(8133)] = 202439, + [SMALL_STATE(8134)] = 202465, + [SMALL_STATE(8135)] = 202491, + [SMALL_STATE(8136)] = 202517, + [SMALL_STATE(8137)] = 202543, + [SMALL_STATE(8138)] = 202569, + [SMALL_STATE(8139)] = 202595, + [SMALL_STATE(8140)] = 202629, + [SMALL_STATE(8141)] = 202655, + [SMALL_STATE(8142)] = 202689, + [SMALL_STATE(8143)] = 202715, + [SMALL_STATE(8144)] = 202749, + [SMALL_STATE(8145)] = 202783, + [SMALL_STATE(8146)] = 202809, + [SMALL_STATE(8147)] = 202835, + [SMALL_STATE(8148)] = 202869, + [SMALL_STATE(8149)] = 202895, + [SMALL_STATE(8150)] = 202917, + [SMALL_STATE(8151)] = 202951, + [SMALL_STATE(8152)] = 202977, + [SMALL_STATE(8153)] = 203003, + [SMALL_STATE(8154)] = 203029, + [SMALL_STATE(8155)] = 203055, + [SMALL_STATE(8156)] = 203081, + [SMALL_STATE(8157)] = 203107, + [SMALL_STATE(8158)] = 203133, + [SMALL_STATE(8159)] = 203159, + [SMALL_STATE(8160)] = 203185, + [SMALL_STATE(8161)] = 203219, + [SMALL_STATE(8162)] = 203245, + [SMALL_STATE(8163)] = 203271, + [SMALL_STATE(8164)] = 203305, + [SMALL_STATE(8165)] = 203331, + [SMALL_STATE(8166)] = 203357, + [SMALL_STATE(8167)] = 203383, + [SMALL_STATE(8168)] = 203409, + [SMALL_STATE(8169)] = 203435, + [SMALL_STATE(8170)] = 203461, + [SMALL_STATE(8171)] = 203487, + [SMALL_STATE(8172)] = 203513, + [SMALL_STATE(8173)] = 203539, + [SMALL_STATE(8174)] = 203565, + [SMALL_STATE(8175)] = 203591, + [SMALL_STATE(8176)] = 203617, + [SMALL_STATE(8177)] = 203643, + [SMALL_STATE(8178)] = 203669, + [SMALL_STATE(8179)] = 203695, + [SMALL_STATE(8180)] = 203721, + [SMALL_STATE(8181)] = 203747, + [SMALL_STATE(8182)] = 203781, + [SMALL_STATE(8183)] = 203807, + [SMALL_STATE(8184)] = 203833, + [SMALL_STATE(8185)] = 203859, + [SMALL_STATE(8186)] = 203885, + [SMALL_STATE(8187)] = 203911, + [SMALL_STATE(8188)] = 203937, + [SMALL_STATE(8189)] = 203963, + [SMALL_STATE(8190)] = 203989, + [SMALL_STATE(8191)] = 204015, + [SMALL_STATE(8192)] = 204041, + [SMALL_STATE(8193)] = 204067, + [SMALL_STATE(8194)] = 204093, + [SMALL_STATE(8195)] = 204119, + [SMALL_STATE(8196)] = 204145, + [SMALL_STATE(8197)] = 204171, + [SMALL_STATE(8198)] = 204197, + [SMALL_STATE(8199)] = 204223, + [SMALL_STATE(8200)] = 204249, + [SMALL_STATE(8201)] = 204275, + [SMALL_STATE(8202)] = 204301, + [SMALL_STATE(8203)] = 204327, + [SMALL_STATE(8204)] = 204353, + [SMALL_STATE(8205)] = 204379, + [SMALL_STATE(8206)] = 204405, + [SMALL_STATE(8207)] = 204431, + [SMALL_STATE(8208)] = 204457, + [SMALL_STATE(8209)] = 204483, + [SMALL_STATE(8210)] = 204517, + [SMALL_STATE(8211)] = 204551, + [SMALL_STATE(8212)] = 204577, + [SMALL_STATE(8213)] = 204603, + [SMALL_STATE(8214)] = 204629, + [SMALL_STATE(8215)] = 204663, + [SMALL_STATE(8216)] = 204689, + [SMALL_STATE(8217)] = 204715, + [SMALL_STATE(8218)] = 204741, + [SMALL_STATE(8219)] = 204767, + [SMALL_STATE(8220)] = 204793, + [SMALL_STATE(8221)] = 204819, + [SMALL_STATE(8222)] = 204845, + [SMALL_STATE(8223)] = 204871, + [SMALL_STATE(8224)] = 204897, + [SMALL_STATE(8225)] = 204923, + [SMALL_STATE(8226)] = 204949, + [SMALL_STATE(8227)] = 204975, + [SMALL_STATE(8228)] = 205001, + [SMALL_STATE(8229)] = 205027, + [SMALL_STATE(8230)] = 205053, + [SMALL_STATE(8231)] = 205079, + [SMALL_STATE(8232)] = 205105, + [SMALL_STATE(8233)] = 205127, + [SMALL_STATE(8234)] = 205153, + [SMALL_STATE(8235)] = 205179, + [SMALL_STATE(8236)] = 205205, + [SMALL_STATE(8237)] = 205231, + [SMALL_STATE(8238)] = 205257, + [SMALL_STATE(8239)] = 205283, + [SMALL_STATE(8240)] = 205317, + [SMALL_STATE(8241)] = 205351, + [SMALL_STATE(8242)] = 205377, + [SMALL_STATE(8243)] = 205403, + [SMALL_STATE(8244)] = 205429, + [SMALL_STATE(8245)] = 205463, + [SMALL_STATE(8246)] = 205489, + [SMALL_STATE(8247)] = 205523, + [SMALL_STATE(8248)] = 205549, + [SMALL_STATE(8249)] = 205575, + [SMALL_STATE(8250)] = 205601, + [SMALL_STATE(8251)] = 205627, + [SMALL_STATE(8252)] = 205653, + [SMALL_STATE(8253)] = 205679, + [SMALL_STATE(8254)] = 205705, + [SMALL_STATE(8255)] = 205731, + [SMALL_STATE(8256)] = 205757, + [SMALL_STATE(8257)] = 205791, + [SMALL_STATE(8258)] = 205817, + [SMALL_STATE(8259)] = 205843, + [SMALL_STATE(8260)] = 205869, + [SMALL_STATE(8261)] = 205895, + [SMALL_STATE(8262)] = 205921, + [SMALL_STATE(8263)] = 205947, + [SMALL_STATE(8264)] = 205973, + [SMALL_STATE(8265)] = 205999, + [SMALL_STATE(8266)] = 206025, + [SMALL_STATE(8267)] = 206051, + [SMALL_STATE(8268)] = 206077, + [SMALL_STATE(8269)] = 206111, + [SMALL_STATE(8270)] = 206137, + [SMALL_STATE(8271)] = 206163, + [SMALL_STATE(8272)] = 206189, + [SMALL_STATE(8273)] = 206215, + [SMALL_STATE(8274)] = 206241, + [SMALL_STATE(8275)] = 206267, + [SMALL_STATE(8276)] = 206289, + [SMALL_STATE(8277)] = 206315, + [SMALL_STATE(8278)] = 206341, + [SMALL_STATE(8279)] = 206367, + [SMALL_STATE(8280)] = 206393, + [SMALL_STATE(8281)] = 206419, + [SMALL_STATE(8282)] = 206445, + [SMALL_STATE(8283)] = 206471, + [SMALL_STATE(8284)] = 206493, + [SMALL_STATE(8285)] = 206519, + [SMALL_STATE(8286)] = 206545, + [SMALL_STATE(8287)] = 206571, + [SMALL_STATE(8288)] = 206597, + [SMALL_STATE(8289)] = 206623, + [SMALL_STATE(8290)] = 206649, + [SMALL_STATE(8291)] = 206675, + [SMALL_STATE(8292)] = 206701, + [SMALL_STATE(8293)] = 206727, + [SMALL_STATE(8294)] = 206753, + [SMALL_STATE(8295)] = 206787, + [SMALL_STATE(8296)] = 206813, + [SMALL_STATE(8297)] = 206847, + [SMALL_STATE(8298)] = 206873, + [SMALL_STATE(8299)] = 206899, + [SMALL_STATE(8300)] = 206925, + [SMALL_STATE(8301)] = 206959, + [SMALL_STATE(8302)] = 206985, + [SMALL_STATE(8303)] = 207011, + [SMALL_STATE(8304)] = 207037, + [SMALL_STATE(8305)] = 207063, + [SMALL_STATE(8306)] = 207089, + [SMALL_STATE(8307)] = 207115, + [SMALL_STATE(8308)] = 207134, + [SMALL_STATE(8309)] = 207151, + [SMALL_STATE(8310)] = 207168, + [SMALL_STATE(8311)] = 207185, + [SMALL_STATE(8312)] = 207202, + [SMALL_STATE(8313)] = 207219, + [SMALL_STATE(8314)] = 207240, + [SMALL_STATE(8315)] = 207257, + [SMALL_STATE(8316)] = 207274, + [SMALL_STATE(8317)] = 207291, + [SMALL_STATE(8318)] = 207312, + [SMALL_STATE(8319)] = 207328, + [SMALL_STATE(8320)] = 207344, + [SMALL_STATE(8321)] = 207374, + [SMALL_STATE(8322)] = 207392, + [SMALL_STATE(8323)] = 207410, + [SMALL_STATE(8324)] = 207428, + [SMALL_STATE(8325)] = 207458, + [SMALL_STATE(8326)] = 207476, + [SMALL_STATE(8327)] = 207494, + [SMALL_STATE(8328)] = 207524, + [SMALL_STATE(8329)] = 207554, + [SMALL_STATE(8330)] = 207574, + [SMALL_STATE(8331)] = 207604, + [SMALL_STATE(8332)] = 207623, + [SMALL_STATE(8333)] = 207640, + [SMALL_STATE(8334)] = 207657, + [SMALL_STATE(8335)] = 207684, + [SMALL_STATE(8336)] = 207713, + [SMALL_STATE(8337)] = 207734, + [SMALL_STATE(8338)] = 207759, + [SMALL_STATE(8339)] = 207788, + [SMALL_STATE(8340)] = 207817, + [SMALL_STATE(8341)] = 207838, + [SMALL_STATE(8342)] = 207863, + [SMALL_STATE(8343)] = 207886, + [SMALL_STATE(8344)] = 207911, + [SMALL_STATE(8345)] = 207940, + [SMALL_STATE(8346)] = 207967, + [SMALL_STATE(8347)] = 207994, + [SMALL_STATE(8348)] = 208019, + [SMALL_STATE(8349)] = 208046, + [SMALL_STATE(8350)] = 208073, + [SMALL_STATE(8351)] = 208092, + [SMALL_STATE(8352)] = 208117, + [SMALL_STATE(8353)] = 208142, + [SMALL_STATE(8354)] = 208171, + [SMALL_STATE(8355)] = 208185, + [SMALL_STATE(8356)] = 208201, + [SMALL_STATE(8357)] = 208217, + [SMALL_STATE(8358)] = 208233, + [SMALL_STATE(8359)] = 208249, + [SMALL_STATE(8360)] = 208265, + [SMALL_STATE(8361)] = 208281, + [SMALL_STATE(8362)] = 208303, + [SMALL_STATE(8363)] = 208323, + [SMALL_STATE(8364)] = 208347, + [SMALL_STATE(8365)] = 208361, + [SMALL_STATE(8366)] = 208375, + [SMALL_STATE(8367)] = 208401, + [SMALL_STATE(8368)] = 208425, + [SMALL_STATE(8369)] = 208441, + [SMALL_STATE(8370)] = 208457, + [SMALL_STATE(8371)] = 208473, + [SMALL_STATE(8372)] = 208489, + [SMALL_STATE(8373)] = 208513, + [SMALL_STATE(8374)] = 208537, + [SMALL_STATE(8375)] = 208553, + [SMALL_STATE(8376)] = 208567, + [SMALL_STATE(8377)] = 208583, + [SMALL_STATE(8378)] = 208599, + [SMALL_STATE(8379)] = 208615, + [SMALL_STATE(8380)] = 208631, + [SMALL_STATE(8381)] = 208657, + [SMALL_STATE(8382)] = 208673, + [SMALL_STATE(8383)] = 208697, + [SMALL_STATE(8384)] = 208723, + [SMALL_STATE(8385)] = 208739, + [SMALL_STATE(8386)] = 208755, + [SMALL_STATE(8387)] = 208771, + [SMALL_STATE(8388)] = 208791, + [SMALL_STATE(8389)] = 208815, + [SMALL_STATE(8390)] = 208837, + [SMALL_STATE(8391)] = 208853, + [SMALL_STATE(8392)] = 208879, + [SMALL_STATE(8393)] = 208903, + [SMALL_STATE(8394)] = 208919, + [SMALL_STATE(8395)] = 208935, + [SMALL_STATE(8396)] = 208951, + [SMALL_STATE(8397)] = 208977, + [SMALL_STATE(8398)] = 208993, + [SMALL_STATE(8399)] = 209017, + [SMALL_STATE(8400)] = 209032, + [SMALL_STATE(8401)] = 209053, + [SMALL_STATE(8402)] = 209074, + [SMALL_STATE(8403)] = 209095, + [SMALL_STATE(8404)] = 209108, + [SMALL_STATE(8405)] = 209125, + [SMALL_STATE(8406)] = 209142, + [SMALL_STATE(8407)] = 209165, + [SMALL_STATE(8408)] = 209186, + [SMALL_STATE(8409)] = 209207, + [SMALL_STATE(8410)] = 209228, + [SMALL_STATE(8411)] = 209249, + [SMALL_STATE(8412)] = 209270, + [SMALL_STATE(8413)] = 209291, + [SMALL_STATE(8414)] = 209312, + [SMALL_STATE(8415)] = 209335, + [SMALL_STATE(8416)] = 209358, + [SMALL_STATE(8417)] = 209379, + [SMALL_STATE(8418)] = 209400, + [SMALL_STATE(8419)] = 209423, + [SMALL_STATE(8420)] = 209444, + [SMALL_STATE(8421)] = 209465, + [SMALL_STATE(8422)] = 209486, + [SMALL_STATE(8423)] = 209507, + [SMALL_STATE(8424)] = 209528, + [SMALL_STATE(8425)] = 209541, + [SMALL_STATE(8426)] = 209564, + [SMALL_STATE(8427)] = 209577, + [SMALL_STATE(8428)] = 209598, + [SMALL_STATE(8429)] = 209619, + [SMALL_STATE(8430)] = 209640, + [SMALL_STATE(8431)] = 209659, + [SMALL_STATE(8432)] = 209672, + [SMALL_STATE(8433)] = 209693, + [SMALL_STATE(8434)] = 209710, + [SMALL_STATE(8435)] = 209729, + [SMALL_STATE(8436)] = 209750, + [SMALL_STATE(8437)] = 209767, + [SMALL_STATE(8438)] = 209790, + [SMALL_STATE(8439)] = 209811, + [SMALL_STATE(8440)] = 209832, + [SMALL_STATE(8441)] = 209853, + [SMALL_STATE(8442)] = 209874, + [SMALL_STATE(8443)] = 209895, + [SMALL_STATE(8444)] = 209916, + [SMALL_STATE(8445)] = 209937, + [SMALL_STATE(8446)] = 209958, + [SMALL_STATE(8447)] = 209981, + [SMALL_STATE(8448)] = 209994, + [SMALL_STATE(8449)] = 210009, + [SMALL_STATE(8450)] = 210030, + [SMALL_STATE(8451)] = 210051, + [SMALL_STATE(8452)] = 210074, + [SMALL_STATE(8453)] = 210091, + [SMALL_STATE(8454)] = 210108, + [SMALL_STATE(8455)] = 210125, + [SMALL_STATE(8456)] = 210145, + [SMALL_STATE(8457)] = 210165, + [SMALL_STATE(8458)] = 210185, + [SMALL_STATE(8459)] = 210205, + [SMALL_STATE(8460)] = 210225, + [SMALL_STATE(8461)] = 210245, + [SMALL_STATE(8462)] = 210257, + [SMALL_STATE(8463)] = 210277, + [SMALL_STATE(8464)] = 210297, + [SMALL_STATE(8465)] = 210317, + [SMALL_STATE(8466)] = 210329, + [SMALL_STATE(8467)] = 210349, + [SMALL_STATE(8468)] = 210367, + [SMALL_STATE(8469)] = 210387, + [SMALL_STATE(8470)] = 210405, + [SMALL_STATE(8471)] = 210425, + [SMALL_STATE(8472)] = 210445, + [SMALL_STATE(8473)] = 210465, + [SMALL_STATE(8474)] = 210481, + [SMALL_STATE(8475)] = 210501, + [SMALL_STATE(8476)] = 210521, + [SMALL_STATE(8477)] = 210541, + [SMALL_STATE(8478)] = 210561, + [SMALL_STATE(8479)] = 210573, + [SMALL_STATE(8480)] = 210593, + [SMALL_STATE(8481)] = 210613, + [SMALL_STATE(8482)] = 210633, + [SMALL_STATE(8483)] = 210653, + [SMALL_STATE(8484)] = 210673, + [SMALL_STATE(8485)] = 210693, + [SMALL_STATE(8486)] = 210713, + [SMALL_STATE(8487)] = 210725, + [SMALL_STATE(8488)] = 210745, + [SMALL_STATE(8489)] = 210765, + [SMALL_STATE(8490)] = 210785, + [SMALL_STATE(8491)] = 210805, + [SMALL_STATE(8492)] = 210825, + [SMALL_STATE(8493)] = 210847, + [SMALL_STATE(8494)] = 210867, + [SMALL_STATE(8495)] = 210887, + [SMALL_STATE(8496)] = 210907, + [SMALL_STATE(8497)] = 210927, + [SMALL_STATE(8498)] = 210947, + [SMALL_STATE(8499)] = 210967, + [SMALL_STATE(8500)] = 210987, + [SMALL_STATE(8501)] = 211007, + [SMALL_STATE(8502)] = 211027, + [SMALL_STATE(8503)] = 211047, + [SMALL_STATE(8504)] = 211067, + [SMALL_STATE(8505)] = 211087, + [SMALL_STATE(8506)] = 211109, + [SMALL_STATE(8507)] = 211129, + [SMALL_STATE(8508)] = 211149, + [SMALL_STATE(8509)] = 211169, + [SMALL_STATE(8510)] = 211189, + [SMALL_STATE(8511)] = 211209, + [SMALL_STATE(8512)] = 211229, + [SMALL_STATE(8513)] = 211249, + [SMALL_STATE(8514)] = 211269, + [SMALL_STATE(8515)] = 211289, + [SMALL_STATE(8516)] = 211309, + [SMALL_STATE(8517)] = 211321, + [SMALL_STATE(8518)] = 211341, + [SMALL_STATE(8519)] = 211363, + [SMALL_STATE(8520)] = 211377, + [SMALL_STATE(8521)] = 211397, + [SMALL_STATE(8522)] = 211413, + [SMALL_STATE(8523)] = 211433, + [SMALL_STATE(8524)] = 211453, + [SMALL_STATE(8525)] = 211473, + [SMALL_STATE(8526)] = 211489, + [SMALL_STATE(8527)] = 211509, + [SMALL_STATE(8528)] = 211529, + [SMALL_STATE(8529)] = 211549, + [SMALL_STATE(8530)] = 211569, + [SMALL_STATE(8531)] = 211581, + [SMALL_STATE(8532)] = 211601, + [SMALL_STATE(8533)] = 211619, + [SMALL_STATE(8534)] = 211639, + [SMALL_STATE(8535)] = 211659, + [SMALL_STATE(8536)] = 211675, + [SMALL_STATE(8537)] = 211695, + [SMALL_STATE(8538)] = 211715, + [SMALL_STATE(8539)] = 211735, + [SMALL_STATE(8540)] = 211757, + [SMALL_STATE(8541)] = 211769, + [SMALL_STATE(8542)] = 211789, + [SMALL_STATE(8543)] = 211809, + [SMALL_STATE(8544)] = 211821, + [SMALL_STATE(8545)] = 211841, + [SMALL_STATE(8546)] = 211855, + [SMALL_STATE(8547)] = 211875, + [SMALL_STATE(8548)] = 211895, + [SMALL_STATE(8549)] = 211915, + [SMALL_STATE(8550)] = 211935, + [SMALL_STATE(8551)] = 211955, + [SMALL_STATE(8552)] = 211975, + [SMALL_STATE(8553)] = 211995, + [SMALL_STATE(8554)] = 212015, + [SMALL_STATE(8555)] = 212035, + [SMALL_STATE(8556)] = 212055, + [SMALL_STATE(8557)] = 212075, + [SMALL_STATE(8558)] = 212095, + [SMALL_STATE(8559)] = 212115, + [SMALL_STATE(8560)] = 212135, + [SMALL_STATE(8561)] = 212155, + [SMALL_STATE(8562)] = 212175, + [SMALL_STATE(8563)] = 212195, + [SMALL_STATE(8564)] = 212215, + [SMALL_STATE(8565)] = 212235, + [SMALL_STATE(8566)] = 212255, + [SMALL_STATE(8567)] = 212275, + [SMALL_STATE(8568)] = 212295, + [SMALL_STATE(8569)] = 212315, + [SMALL_STATE(8570)] = 212335, + [SMALL_STATE(8571)] = 212355, + [SMALL_STATE(8572)] = 212373, + [SMALL_STATE(8573)] = 212393, + [SMALL_STATE(8574)] = 212405, + [SMALL_STATE(8575)] = 212425, + [SMALL_STATE(8576)] = 212445, + [SMALL_STATE(8577)] = 212465, + [SMALL_STATE(8578)] = 212487, + [SMALL_STATE(8579)] = 212507, + [SMALL_STATE(8580)] = 212527, + [SMALL_STATE(8581)] = 212547, + [SMALL_STATE(8582)] = 212559, + [SMALL_STATE(8583)] = 212579, + [SMALL_STATE(8584)] = 212599, + [SMALL_STATE(8585)] = 212619, + [SMALL_STATE(8586)] = 212639, + [SMALL_STATE(8587)] = 212659, + [SMALL_STATE(8588)] = 212679, + [SMALL_STATE(8589)] = 212697, + [SMALL_STATE(8590)] = 212713, + [SMALL_STATE(8591)] = 212725, + [SMALL_STATE(8592)] = 212745, + [SMALL_STATE(8593)] = 212757, + [SMALL_STATE(8594)] = 212775, + [SMALL_STATE(8595)] = 212795, + [SMALL_STATE(8596)] = 212815, + [SMALL_STATE(8597)] = 212835, + [SMALL_STATE(8598)] = 212851, + [SMALL_STATE(8599)] = 212867, + [SMALL_STATE(8600)] = 212887, + [SMALL_STATE(8601)] = 212907, + [SMALL_STATE(8602)] = 212925, + [SMALL_STATE(8603)] = 212937, + [SMALL_STATE(8604)] = 212957, + [SMALL_STATE(8605)] = 212973, + [SMALL_STATE(8606)] = 212985, + [SMALL_STATE(8607)] = 213005, + [SMALL_STATE(8608)] = 213027, + [SMALL_STATE(8609)] = 213039, + [SMALL_STATE(8610)] = 213059, + [SMALL_STATE(8611)] = 213079, + [SMALL_STATE(8612)] = 213091, + [SMALL_STATE(8613)] = 213111, + [SMALL_STATE(8614)] = 213129, + [SMALL_STATE(8615)] = 213149, + [SMALL_STATE(8616)] = 213161, + [SMALL_STATE(8617)] = 213181, + [SMALL_STATE(8618)] = 213201, + [SMALL_STATE(8619)] = 213221, + [SMALL_STATE(8620)] = 213233, + [SMALL_STATE(8621)] = 213253, + [SMALL_STATE(8622)] = 213265, + [SMALL_STATE(8623)] = 213285, + [SMALL_STATE(8624)] = 213305, + [SMALL_STATE(8625)] = 213321, + [SMALL_STATE(8626)] = 213341, + [SMALL_STATE(8627)] = 213361, + [SMALL_STATE(8628)] = 213372, + [SMALL_STATE(8629)] = 213387, + [SMALL_STATE(8630)] = 213402, + [SMALL_STATE(8631)] = 213419, + [SMALL_STATE(8632)] = 213434, + [SMALL_STATE(8633)] = 213451, + [SMALL_STATE(8634)] = 213462, + [SMALL_STATE(8635)] = 213477, + [SMALL_STATE(8636)] = 213492, + [SMALL_STATE(8637)] = 213509, + [SMALL_STATE(8638)] = 213526, + [SMALL_STATE(8639)] = 213543, + [SMALL_STATE(8640)] = 213560, + [SMALL_STATE(8641)] = 213575, + [SMALL_STATE(8642)] = 213592, + [SMALL_STATE(8643)] = 213603, + [SMALL_STATE(8644)] = 213614, + [SMALL_STATE(8645)] = 213631, + [SMALL_STATE(8646)] = 213648, + [SMALL_STATE(8647)] = 213663, + [SMALL_STATE(8648)] = 213678, + [SMALL_STATE(8649)] = 213695, + [SMALL_STATE(8650)] = 213712, + [SMALL_STATE(8651)] = 213729, + [SMALL_STATE(8652)] = 213746, + [SMALL_STATE(8653)] = 213761, + [SMALL_STATE(8654)] = 213776, + [SMALL_STATE(8655)] = 213793, + [SMALL_STATE(8656)] = 213810, + [SMALL_STATE(8657)] = 213825, + [SMALL_STATE(8658)] = 213842, + [SMALL_STATE(8659)] = 213859, + [SMALL_STATE(8660)] = 213872, + [SMALL_STATE(8661)] = 213883, + [SMALL_STATE(8662)] = 213898, + [SMALL_STATE(8663)] = 213909, + [SMALL_STATE(8664)] = 213922, + [SMALL_STATE(8665)] = 213937, + [SMALL_STATE(8666)] = 213952, + [SMALL_STATE(8667)] = 213967, + [SMALL_STATE(8668)] = 213984, + [SMALL_STATE(8669)] = 214001, + [SMALL_STATE(8670)] = 214018, + [SMALL_STATE(8671)] = 214035, + [SMALL_STATE(8672)] = 214052, + [SMALL_STATE(8673)] = 214069, + [SMALL_STATE(8674)] = 214086, + [SMALL_STATE(8675)] = 214103, + [SMALL_STATE(8676)] = 214120, + [SMALL_STATE(8677)] = 214137, + [SMALL_STATE(8678)] = 214154, + [SMALL_STATE(8679)] = 214169, + [SMALL_STATE(8680)] = 214186, + [SMALL_STATE(8681)] = 214203, + [SMALL_STATE(8682)] = 214220, + [SMALL_STATE(8683)] = 214235, + [SMALL_STATE(8684)] = 214252, + [SMALL_STATE(8685)] = 214269, + [SMALL_STATE(8686)] = 214282, + [SMALL_STATE(8687)] = 214299, + [SMALL_STATE(8688)] = 214316, + [SMALL_STATE(8689)] = 214333, + [SMALL_STATE(8690)] = 214350, + [SMALL_STATE(8691)] = 214367, + [SMALL_STATE(8692)] = 214384, + [SMALL_STATE(8693)] = 214401, + [SMALL_STATE(8694)] = 214418, + [SMALL_STATE(8695)] = 214433, + [SMALL_STATE(8696)] = 214448, + [SMALL_STATE(8697)] = 214465, + [SMALL_STATE(8698)] = 214482, + [SMALL_STATE(8699)] = 214499, + [SMALL_STATE(8700)] = 214516, + [SMALL_STATE(8701)] = 214533, + [SMALL_STATE(8702)] = 214550, + [SMALL_STATE(8703)] = 214567, + [SMALL_STATE(8704)] = 214584, + [SMALL_STATE(8705)] = 214599, + [SMALL_STATE(8706)] = 214614, + [SMALL_STATE(8707)] = 214625, + [SMALL_STATE(8708)] = 214636, + [SMALL_STATE(8709)] = 214651, + [SMALL_STATE(8710)] = 214666, + [SMALL_STATE(8711)] = 214681, + [SMALL_STATE(8712)] = 214698, + [SMALL_STATE(8713)] = 214713, + [SMALL_STATE(8714)] = 214730, + [SMALL_STATE(8715)] = 214747, + [SMALL_STATE(8716)] = 214764, + [SMALL_STATE(8717)] = 214781, + [SMALL_STATE(8718)] = 214798, + [SMALL_STATE(8719)] = 214815, + [SMALL_STATE(8720)] = 214832, + [SMALL_STATE(8721)] = 214849, + [SMALL_STATE(8722)] = 214866, + [SMALL_STATE(8723)] = 214877, + [SMALL_STATE(8724)] = 214888, + [SMALL_STATE(8725)] = 214905, + [SMALL_STATE(8726)] = 214922, + [SMALL_STATE(8727)] = 214939, + [SMALL_STATE(8728)] = 214956, + [SMALL_STATE(8729)] = 214973, + [SMALL_STATE(8730)] = 214990, + [SMALL_STATE(8731)] = 215007, + [SMALL_STATE(8732)] = 215024, + [SMALL_STATE(8733)] = 215041, + [SMALL_STATE(8734)] = 215058, + [SMALL_STATE(8735)] = 215075, + [SMALL_STATE(8736)] = 215092, + [SMALL_STATE(8737)] = 215109, + [SMALL_STATE(8738)] = 215126, + [SMALL_STATE(8739)] = 215143, + [SMALL_STATE(8740)] = 215160, + [SMALL_STATE(8741)] = 215177, + [SMALL_STATE(8742)] = 215192, + [SMALL_STATE(8743)] = 215209, + [SMALL_STATE(8744)] = 215226, + [SMALL_STATE(8745)] = 215243, + [SMALL_STATE(8746)] = 215260, + [SMALL_STATE(8747)] = 215277, + [SMALL_STATE(8748)] = 215294, + [SMALL_STATE(8749)] = 215311, + [SMALL_STATE(8750)] = 215326, + [SMALL_STATE(8751)] = 215343, + [SMALL_STATE(8752)] = 215360, + [SMALL_STATE(8753)] = 215377, + [SMALL_STATE(8754)] = 215394, + [SMALL_STATE(8755)] = 215411, + [SMALL_STATE(8756)] = 215424, + [SMALL_STATE(8757)] = 215441, + [SMALL_STATE(8758)] = 215458, + [SMALL_STATE(8759)] = 215475, + [SMALL_STATE(8760)] = 215492, + [SMALL_STATE(8761)] = 215509, + [SMALL_STATE(8762)] = 215526, + [SMALL_STATE(8763)] = 215543, + [SMALL_STATE(8764)] = 215560, + [SMALL_STATE(8765)] = 215577, + [SMALL_STATE(8766)] = 215594, + [SMALL_STATE(8767)] = 215611, + [SMALL_STATE(8768)] = 215628, + [SMALL_STATE(8769)] = 215645, + [SMALL_STATE(8770)] = 215662, + [SMALL_STATE(8771)] = 215679, + [SMALL_STATE(8772)] = 215690, + [SMALL_STATE(8773)] = 215707, + [SMALL_STATE(8774)] = 215724, + [SMALL_STATE(8775)] = 215741, + [SMALL_STATE(8776)] = 215758, + [SMALL_STATE(8777)] = 215775, + [SMALL_STATE(8778)] = 215788, + [SMALL_STATE(8779)] = 215805, + [SMALL_STATE(8780)] = 215822, + [SMALL_STATE(8781)] = 215837, + [SMALL_STATE(8782)] = 215854, + [SMALL_STATE(8783)] = 215871, + [SMALL_STATE(8784)] = 215888, + [SMALL_STATE(8785)] = 215905, + [SMALL_STATE(8786)] = 215922, + [SMALL_STATE(8787)] = 215939, + [SMALL_STATE(8788)] = 215956, + [SMALL_STATE(8789)] = 215970, + [SMALL_STATE(8790)] = 215984, + [SMALL_STATE(8791)] = 215996, + [SMALL_STATE(8792)] = 216010, + [SMALL_STATE(8793)] = 216024, + [SMALL_STATE(8794)] = 216038, + [SMALL_STATE(8795)] = 216052, + [SMALL_STATE(8796)] = 216066, + [SMALL_STATE(8797)] = 216076, + [SMALL_STATE(8798)] = 216090, + [SMALL_STATE(8799)] = 216104, + [SMALL_STATE(8800)] = 216118, + [SMALL_STATE(8801)] = 216132, + [SMALL_STATE(8802)] = 216146, + [SMALL_STATE(8803)] = 216160, + [SMALL_STATE(8804)] = 216174, + [SMALL_STATE(8805)] = 216188, + [SMALL_STATE(8806)] = 216202, + [SMALL_STATE(8807)] = 216216, + [SMALL_STATE(8808)] = 216230, + [SMALL_STATE(8809)] = 216244, + [SMALL_STATE(8810)] = 216258, + [SMALL_STATE(8811)] = 216268, + [SMALL_STATE(8812)] = 216282, + [SMALL_STATE(8813)] = 216296, + [SMALL_STATE(8814)] = 216310, + [SMALL_STATE(8815)] = 216324, + [SMALL_STATE(8816)] = 216338, + [SMALL_STATE(8817)] = 216352, + [SMALL_STATE(8818)] = 216366, + [SMALL_STATE(8819)] = 216376, + [SMALL_STATE(8820)] = 216390, + [SMALL_STATE(8821)] = 216404, + [SMALL_STATE(8822)] = 216418, + [SMALL_STATE(8823)] = 216432, + [SMALL_STATE(8824)] = 216446, + [SMALL_STATE(8825)] = 216460, + [SMALL_STATE(8826)] = 216474, + [SMALL_STATE(8827)] = 216488, + [SMALL_STATE(8828)] = 216502, + [SMALL_STATE(8829)] = 216516, + [SMALL_STATE(8830)] = 216530, + [SMALL_STATE(8831)] = 216544, + [SMALL_STATE(8832)] = 216558, + [SMALL_STATE(8833)] = 216570, + [SMALL_STATE(8834)] = 216584, + [SMALL_STATE(8835)] = 216598, + [SMALL_STATE(8836)] = 216612, + [SMALL_STATE(8837)] = 216626, + [SMALL_STATE(8838)] = 216640, + [SMALL_STATE(8839)] = 216654, + [SMALL_STATE(8840)] = 216668, + [SMALL_STATE(8841)] = 216682, + [SMALL_STATE(8842)] = 216696, + [SMALL_STATE(8843)] = 216710, + [SMALL_STATE(8844)] = 216722, + [SMALL_STATE(8845)] = 216734, + [SMALL_STATE(8846)] = 216748, + [SMALL_STATE(8847)] = 216762, + [SMALL_STATE(8848)] = 216776, + [SMALL_STATE(8849)] = 216790, + [SMALL_STATE(8850)] = 216804, + [SMALL_STATE(8851)] = 216818, + [SMALL_STATE(8852)] = 216832, + [SMALL_STATE(8853)] = 216846, + [SMALL_STATE(8854)] = 216858, + [SMALL_STATE(8855)] = 216872, + [SMALL_STATE(8856)] = 216886, + [SMALL_STATE(8857)] = 216900, + [SMALL_STATE(8858)] = 216914, + [SMALL_STATE(8859)] = 216926, + [SMALL_STATE(8860)] = 216938, + [SMALL_STATE(8861)] = 216952, + [SMALL_STATE(8862)] = 216966, + [SMALL_STATE(8863)] = 216980, + [SMALL_STATE(8864)] = 216994, + [SMALL_STATE(8865)] = 217004, + [SMALL_STATE(8866)] = 217018, + [SMALL_STATE(8867)] = 217032, + [SMALL_STATE(8868)] = 217046, + [SMALL_STATE(8869)] = 217058, + [SMALL_STATE(8870)] = 217072, + [SMALL_STATE(8871)] = 217086, + [SMALL_STATE(8872)] = 217100, + [SMALL_STATE(8873)] = 217114, + [SMALL_STATE(8874)] = 217128, + [SMALL_STATE(8875)] = 217142, + [SMALL_STATE(8876)] = 217156, + [SMALL_STATE(8877)] = 217170, + [SMALL_STATE(8878)] = 217184, + [SMALL_STATE(8879)] = 217198, + [SMALL_STATE(8880)] = 217212, + [SMALL_STATE(8881)] = 217226, + [SMALL_STATE(8882)] = 217238, + [SMALL_STATE(8883)] = 217252, + [SMALL_STATE(8884)] = 217266, + [SMALL_STATE(8885)] = 217280, + [SMALL_STATE(8886)] = 217292, + [SMALL_STATE(8887)] = 217306, + [SMALL_STATE(8888)] = 217318, + [SMALL_STATE(8889)] = 217332, + [SMALL_STATE(8890)] = 217346, + [SMALL_STATE(8891)] = 217358, + [SMALL_STATE(8892)] = 217370, + [SMALL_STATE(8893)] = 217382, + [SMALL_STATE(8894)] = 217394, + [SMALL_STATE(8895)] = 217408, + [SMALL_STATE(8896)] = 217422, + [SMALL_STATE(8897)] = 217436, + [SMALL_STATE(8898)] = 217450, + [SMALL_STATE(8899)] = 217464, + [SMALL_STATE(8900)] = 217478, + [SMALL_STATE(8901)] = 217492, + [SMALL_STATE(8902)] = 217504, + [SMALL_STATE(8903)] = 217516, + [SMALL_STATE(8904)] = 217528, + [SMALL_STATE(8905)] = 217540, + [SMALL_STATE(8906)] = 217550, + [SMALL_STATE(8907)] = 217560, + [SMALL_STATE(8908)] = 217574, + [SMALL_STATE(8909)] = 217588, + [SMALL_STATE(8910)] = 217602, + [SMALL_STATE(8911)] = 217616, + [SMALL_STATE(8912)] = 217630, + [SMALL_STATE(8913)] = 217642, + [SMALL_STATE(8914)] = 217656, + [SMALL_STATE(8915)] = 217670, + [SMALL_STATE(8916)] = 217682, + [SMALL_STATE(8917)] = 217694, + [SMALL_STATE(8918)] = 217708, + [SMALL_STATE(8919)] = 217722, + [SMALL_STATE(8920)] = 217736, + [SMALL_STATE(8921)] = 217750, + [SMALL_STATE(8922)] = 217764, + [SMALL_STATE(8923)] = 217774, + [SMALL_STATE(8924)] = 217788, + [SMALL_STATE(8925)] = 217802, + [SMALL_STATE(8926)] = 217816, + [SMALL_STATE(8927)] = 217830, + [SMALL_STATE(8928)] = 217844, + [SMALL_STATE(8929)] = 217858, + [SMALL_STATE(8930)] = 217872, + [SMALL_STATE(8931)] = 217884, + [SMALL_STATE(8932)] = 217898, + [SMALL_STATE(8933)] = 217912, + [SMALL_STATE(8934)] = 217926, + [SMALL_STATE(8935)] = 217940, + [SMALL_STATE(8936)] = 217954, + [SMALL_STATE(8937)] = 217968, + [SMALL_STATE(8938)] = 217982, + [SMALL_STATE(8939)] = 217996, + [SMALL_STATE(8940)] = 218010, + [SMALL_STATE(8941)] = 218024, + [SMALL_STATE(8942)] = 218038, + [SMALL_STATE(8943)] = 218052, + [SMALL_STATE(8944)] = 218066, + [SMALL_STATE(8945)] = 218080, + [SMALL_STATE(8946)] = 218094, + [SMALL_STATE(8947)] = 218108, + [SMALL_STATE(8948)] = 218122, + [SMALL_STATE(8949)] = 218136, + [SMALL_STATE(8950)] = 218150, + [SMALL_STATE(8951)] = 218164, + [SMALL_STATE(8952)] = 218178, + [SMALL_STATE(8953)] = 218192, + [SMALL_STATE(8954)] = 218204, + [SMALL_STATE(8955)] = 218218, + [SMALL_STATE(8956)] = 218228, + [SMALL_STATE(8957)] = 218242, + [SMALL_STATE(8958)] = 218254, + [SMALL_STATE(8959)] = 218264, + [SMALL_STATE(8960)] = 218278, + [SMALL_STATE(8961)] = 218290, + [SMALL_STATE(8962)] = 218304, + [SMALL_STATE(8963)] = 218316, + [SMALL_STATE(8964)] = 218330, + [SMALL_STATE(8965)] = 218344, + [SMALL_STATE(8966)] = 218358, + [SMALL_STATE(8967)] = 218372, + [SMALL_STATE(8968)] = 218384, + [SMALL_STATE(8969)] = 218398, + [SMALL_STATE(8970)] = 218412, + [SMALL_STATE(8971)] = 218426, + [SMALL_STATE(8972)] = 218440, + [SMALL_STATE(8973)] = 218454, + [SMALL_STATE(8974)] = 218468, + [SMALL_STATE(8975)] = 218482, + [SMALL_STATE(8976)] = 218496, + [SMALL_STATE(8977)] = 218506, + [SMALL_STATE(8978)] = 218520, + [SMALL_STATE(8979)] = 218534, + [SMALL_STATE(8980)] = 218548, + [SMALL_STATE(8981)] = 218562, + [SMALL_STATE(8982)] = 218576, + [SMALL_STATE(8983)] = 218590, + [SMALL_STATE(8984)] = 218604, + [SMALL_STATE(8985)] = 218618, + [SMALL_STATE(8986)] = 218632, + [SMALL_STATE(8987)] = 218646, + [SMALL_STATE(8988)] = 218660, + [SMALL_STATE(8989)] = 218674, + [SMALL_STATE(8990)] = 218686, + [SMALL_STATE(8991)] = 218700, + [SMALL_STATE(8992)] = 218714, + [SMALL_STATE(8993)] = 218728, + [SMALL_STATE(8994)] = 218742, + [SMALL_STATE(8995)] = 218756, + [SMALL_STATE(8996)] = 218770, + [SMALL_STATE(8997)] = 218784, + [SMALL_STATE(8998)] = 218798, + [SMALL_STATE(8999)] = 218810, + [SMALL_STATE(9000)] = 218824, + [SMALL_STATE(9001)] = 218838, + [SMALL_STATE(9002)] = 218852, + [SMALL_STATE(9003)] = 218866, + [SMALL_STATE(9004)] = 218878, + [SMALL_STATE(9005)] = 218892, + [SMALL_STATE(9006)] = 218906, + [SMALL_STATE(9007)] = 218920, + [SMALL_STATE(9008)] = 218934, + [SMALL_STATE(9009)] = 218946, + [SMALL_STATE(9010)] = 218960, + [SMALL_STATE(9011)] = 218972, + [SMALL_STATE(9012)] = 218982, + [SMALL_STATE(9013)] = 218996, + [SMALL_STATE(9014)] = 219010, + [SMALL_STATE(9015)] = 219024, + [SMALL_STATE(9016)] = 219038, + [SMALL_STATE(9017)] = 219052, + [SMALL_STATE(9018)] = 219066, + [SMALL_STATE(9019)] = 219080, + [SMALL_STATE(9020)] = 219094, + [SMALL_STATE(9021)] = 219106, + [SMALL_STATE(9022)] = 219120, + [SMALL_STATE(9023)] = 219134, + [SMALL_STATE(9024)] = 219148, + [SMALL_STATE(9025)] = 219162, + [SMALL_STATE(9026)] = 219176, + [SMALL_STATE(9027)] = 219190, + [SMALL_STATE(9028)] = 219204, + [SMALL_STATE(9029)] = 219218, + [SMALL_STATE(9030)] = 219232, + [SMALL_STATE(9031)] = 219246, + [SMALL_STATE(9032)] = 219260, + [SMALL_STATE(9033)] = 219274, + [SMALL_STATE(9034)] = 219288, + [SMALL_STATE(9035)] = 219302, + [SMALL_STATE(9036)] = 219316, + [SMALL_STATE(9037)] = 219330, + [SMALL_STATE(9038)] = 219344, + [SMALL_STATE(9039)] = 219358, + [SMALL_STATE(9040)] = 219372, + [SMALL_STATE(9041)] = 219386, + [SMALL_STATE(9042)] = 219398, + [SMALL_STATE(9043)] = 219412, + [SMALL_STATE(9044)] = 219424, + [SMALL_STATE(9045)] = 219438, + [SMALL_STATE(9046)] = 219450, + [SMALL_STATE(9047)] = 219462, + [SMALL_STATE(9048)] = 219474, + [SMALL_STATE(9049)] = 219488, + [SMALL_STATE(9050)] = 219502, + [SMALL_STATE(9051)] = 219516, + [SMALL_STATE(9052)] = 219530, + [SMALL_STATE(9053)] = 219544, + [SMALL_STATE(9054)] = 219558, + [SMALL_STATE(9055)] = 219570, + [SMALL_STATE(9056)] = 219584, + [SMALL_STATE(9057)] = 219596, + [SMALL_STATE(9058)] = 219610, + [SMALL_STATE(9059)] = 219624, + [SMALL_STATE(9060)] = 219638, + [SMALL_STATE(9061)] = 219652, + [SMALL_STATE(9062)] = 219666, + [SMALL_STATE(9063)] = 219680, + [SMALL_STATE(9064)] = 219694, + [SMALL_STATE(9065)] = 219708, + [SMALL_STATE(9066)] = 219722, + [SMALL_STATE(9067)] = 219736, + [SMALL_STATE(9068)] = 219750, + [SMALL_STATE(9069)] = 219764, + [SMALL_STATE(9070)] = 219776, + [SMALL_STATE(9071)] = 219790, + [SMALL_STATE(9072)] = 219802, + [SMALL_STATE(9073)] = 219816, + [SMALL_STATE(9074)] = 219830, + [SMALL_STATE(9075)] = 219844, + [SMALL_STATE(9076)] = 219858, + [SMALL_STATE(9077)] = 219872, + [SMALL_STATE(9078)] = 219886, + [SMALL_STATE(9079)] = 219898, + [SMALL_STATE(9080)] = 219910, + [SMALL_STATE(9081)] = 219922, + [SMALL_STATE(9082)] = 219936, + [SMALL_STATE(9083)] = 219948, + [SMALL_STATE(9084)] = 219962, + [SMALL_STATE(9085)] = 219974, + [SMALL_STATE(9086)] = 219986, + [SMALL_STATE(9087)] = 220000, + [SMALL_STATE(9088)] = 220014, + [SMALL_STATE(9089)] = 220028, + [SMALL_STATE(9090)] = 220042, + [SMALL_STATE(9091)] = 220056, + [SMALL_STATE(9092)] = 220070, + [SMALL_STATE(9093)] = 220084, + [SMALL_STATE(9094)] = 220098, + [SMALL_STATE(9095)] = 220112, + [SMALL_STATE(9096)] = 220121, + [SMALL_STATE(9097)] = 220130, + [SMALL_STATE(9098)] = 220141, + [SMALL_STATE(9099)] = 220152, + [SMALL_STATE(9100)] = 220163, + [SMALL_STATE(9101)] = 220174, + [SMALL_STATE(9102)] = 220185, + [SMALL_STATE(9103)] = 220196, + [SMALL_STATE(9104)] = 220207, + [SMALL_STATE(9105)] = 220218, + [SMALL_STATE(9106)] = 220229, + [SMALL_STATE(9107)] = 220240, + [SMALL_STATE(9108)] = 220251, + [SMALL_STATE(9109)] = 220262, + [SMALL_STATE(9110)] = 220273, + [SMALL_STATE(9111)] = 220284, + [SMALL_STATE(9112)] = 220295, + [SMALL_STATE(9113)] = 220306, + [SMALL_STATE(9114)] = 220317, + [SMALL_STATE(9115)] = 220328, + [SMALL_STATE(9116)] = 220339, + [SMALL_STATE(9117)] = 220350, + [SMALL_STATE(9118)] = 220361, + [SMALL_STATE(9119)] = 220372, + [SMALL_STATE(9120)] = 220383, + [SMALL_STATE(9121)] = 220394, + [SMALL_STATE(9122)] = 220405, + [SMALL_STATE(9123)] = 220416, + [SMALL_STATE(9124)] = 220427, + [SMALL_STATE(9125)] = 220438, + [SMALL_STATE(9126)] = 220449, + [SMALL_STATE(9127)] = 220460, + [SMALL_STATE(9128)] = 220471, + [SMALL_STATE(9129)] = 220482, + [SMALL_STATE(9130)] = 220493, + [SMALL_STATE(9131)] = 220504, + [SMALL_STATE(9132)] = 220515, + [SMALL_STATE(9133)] = 220526, + [SMALL_STATE(9134)] = 220537, + [SMALL_STATE(9135)] = 220548, + [SMALL_STATE(9136)] = 220559, + [SMALL_STATE(9137)] = 220570, + [SMALL_STATE(9138)] = 220581, + [SMALL_STATE(9139)] = 220592, + [SMALL_STATE(9140)] = 220603, + [SMALL_STATE(9141)] = 220614, + [SMALL_STATE(9142)] = 220625, + [SMALL_STATE(9143)] = 220636, + [SMALL_STATE(9144)] = 220647, + [SMALL_STATE(9145)] = 220658, + [SMALL_STATE(9146)] = 220669, + [SMALL_STATE(9147)] = 220680, + [SMALL_STATE(9148)] = 220691, + [SMALL_STATE(9149)] = 220702, + [SMALL_STATE(9150)] = 220713, + [SMALL_STATE(9151)] = 220724, + [SMALL_STATE(9152)] = 220735, + [SMALL_STATE(9153)] = 220746, + [SMALL_STATE(9154)] = 220757, + [SMALL_STATE(9155)] = 220768, + [SMALL_STATE(9156)] = 220779, + [SMALL_STATE(9157)] = 220790, + [SMALL_STATE(9158)] = 220801, + [SMALL_STATE(9159)] = 220812, + [SMALL_STATE(9160)] = 220823, + [SMALL_STATE(9161)] = 220834, + [SMALL_STATE(9162)] = 220845, + [SMALL_STATE(9163)] = 220856, + [SMALL_STATE(9164)] = 220867, + [SMALL_STATE(9165)] = 220878, + [SMALL_STATE(9166)] = 220889, + [SMALL_STATE(9167)] = 220900, + [SMALL_STATE(9168)] = 220911, + [SMALL_STATE(9169)] = 220922, + [SMALL_STATE(9170)] = 220933, + [SMALL_STATE(9171)] = 220944, + [SMALL_STATE(9172)] = 220955, + [SMALL_STATE(9173)] = 220966, + [SMALL_STATE(9174)] = 220977, + [SMALL_STATE(9175)] = 220988, + [SMALL_STATE(9176)] = 220999, + [SMALL_STATE(9177)] = 221010, + [SMALL_STATE(9178)] = 221021, + [SMALL_STATE(9179)] = 221032, + [SMALL_STATE(9180)] = 221043, + [SMALL_STATE(9181)] = 221054, + [SMALL_STATE(9182)] = 221065, + [SMALL_STATE(9183)] = 221076, + [SMALL_STATE(9184)] = 221087, + [SMALL_STATE(9185)] = 221098, + [SMALL_STATE(9186)] = 221109, + [SMALL_STATE(9187)] = 221120, + [SMALL_STATE(9188)] = 221131, + [SMALL_STATE(9189)] = 221142, + [SMALL_STATE(9190)] = 221153, + [SMALL_STATE(9191)] = 221164, + [SMALL_STATE(9192)] = 221175, + [SMALL_STATE(9193)] = 221186, + [SMALL_STATE(9194)] = 221197, + [SMALL_STATE(9195)] = 221208, + [SMALL_STATE(9196)] = 221219, + [SMALL_STATE(9197)] = 221230, + [SMALL_STATE(9198)] = 221241, + [SMALL_STATE(9199)] = 221252, + [SMALL_STATE(9200)] = 221263, + [SMALL_STATE(9201)] = 221274, + [SMALL_STATE(9202)] = 221285, + [SMALL_STATE(9203)] = 221296, + [SMALL_STATE(9204)] = 221307, + [SMALL_STATE(9205)] = 221318, + [SMALL_STATE(9206)] = 221329, + [SMALL_STATE(9207)] = 221340, + [SMALL_STATE(9208)] = 221351, + [SMALL_STATE(9209)] = 221362, + [SMALL_STATE(9210)] = 221371, + [SMALL_STATE(9211)] = 221382, + [SMALL_STATE(9212)] = 221393, + [SMALL_STATE(9213)] = 221402, + [SMALL_STATE(9214)] = 221413, + [SMALL_STATE(9215)] = 221422, + [SMALL_STATE(9216)] = 221433, + [SMALL_STATE(9217)] = 221442, + [SMALL_STATE(9218)] = 221453, + [SMALL_STATE(9219)] = 221464, + [SMALL_STATE(9220)] = 221475, + [SMALL_STATE(9221)] = 221484, + [SMALL_STATE(9222)] = 221493, + [SMALL_STATE(9223)] = 221502, + [SMALL_STATE(9224)] = 221511, + [SMALL_STATE(9225)] = 221522, + [SMALL_STATE(9226)] = 221533, + [SMALL_STATE(9227)] = 221544, + [SMALL_STATE(9228)] = 221555, + [SMALL_STATE(9229)] = 221566, + [SMALL_STATE(9230)] = 221577, + [SMALL_STATE(9231)] = 221586, + [SMALL_STATE(9232)] = 221597, + [SMALL_STATE(9233)] = 221608, + [SMALL_STATE(9234)] = 221619, + [SMALL_STATE(9235)] = 221628, + [SMALL_STATE(9236)] = 221639, + [SMALL_STATE(9237)] = 221650, + [SMALL_STATE(9238)] = 221661, + [SMALL_STATE(9239)] = 221672, + [SMALL_STATE(9240)] = 221683, + [SMALL_STATE(9241)] = 221692, + [SMALL_STATE(9242)] = 221703, + [SMALL_STATE(9243)] = 221714, + [SMALL_STATE(9244)] = 221723, + [SMALL_STATE(9245)] = 221734, + [SMALL_STATE(9246)] = 221743, + [SMALL_STATE(9247)] = 221754, + [SMALL_STATE(9248)] = 221763, + [SMALL_STATE(9249)] = 221774, + [SMALL_STATE(9250)] = 221783, + [SMALL_STATE(9251)] = 221792, + [SMALL_STATE(9252)] = 221801, + [SMALL_STATE(9253)] = 221810, + [SMALL_STATE(9254)] = 221819, + [SMALL_STATE(9255)] = 221828, + [SMALL_STATE(9256)] = 221839, + [SMALL_STATE(9257)] = 221850, + [SMALL_STATE(9258)] = 221861, + [SMALL_STATE(9259)] = 221872, + [SMALL_STATE(9260)] = 221881, + [SMALL_STATE(9261)] = 221890, + [SMALL_STATE(9262)] = 221901, + [SMALL_STATE(9263)] = 221910, + [SMALL_STATE(9264)] = 221921, + [SMALL_STATE(9265)] = 221930, + [SMALL_STATE(9266)] = 221939, + [SMALL_STATE(9267)] = 221948, + [SMALL_STATE(9268)] = 221959, + [SMALL_STATE(9269)] = 221970, + [SMALL_STATE(9270)] = 221979, + [SMALL_STATE(9271)] = 221990, + [SMALL_STATE(9272)] = 222001, + [SMALL_STATE(9273)] = 222012, + [SMALL_STATE(9274)] = 222021, + [SMALL_STATE(9275)] = 222032, + [SMALL_STATE(9276)] = 222041, + [SMALL_STATE(9277)] = 222052, + [SMALL_STATE(9278)] = 222061, + [SMALL_STATE(9279)] = 222072, + [SMALL_STATE(9280)] = 222083, + [SMALL_STATE(9281)] = 222094, + [SMALL_STATE(9282)] = 222105, + [SMALL_STATE(9283)] = 222116, + [SMALL_STATE(9284)] = 222127, + [SMALL_STATE(9285)] = 222136, + [SMALL_STATE(9286)] = 222147, + [SMALL_STATE(9287)] = 222158, + [SMALL_STATE(9288)] = 222167, + [SMALL_STATE(9289)] = 222178, + [SMALL_STATE(9290)] = 222187, + [SMALL_STATE(9291)] = 222196, + [SMALL_STATE(9292)] = 222205, + [SMALL_STATE(9293)] = 222214, + [SMALL_STATE(9294)] = 222225, + [SMALL_STATE(9295)] = 222236, + [SMALL_STATE(9296)] = 222245, + [SMALL_STATE(9297)] = 222254, + [SMALL_STATE(9298)] = 222263, + [SMALL_STATE(9299)] = 222272, + [SMALL_STATE(9300)] = 222281, + [SMALL_STATE(9301)] = 222292, + [SMALL_STATE(9302)] = 222303, + [SMALL_STATE(9303)] = 222314, + [SMALL_STATE(9304)] = 222323, + [SMALL_STATE(9305)] = 222334, + [SMALL_STATE(9306)] = 222343, + [SMALL_STATE(9307)] = 222354, + [SMALL_STATE(9308)] = 222365, + [SMALL_STATE(9309)] = 222376, + [SMALL_STATE(9310)] = 222387, + [SMALL_STATE(9311)] = 222398, + [SMALL_STATE(9312)] = 222409, + [SMALL_STATE(9313)] = 222420, + [SMALL_STATE(9314)] = 222431, + [SMALL_STATE(9315)] = 222442, + [SMALL_STATE(9316)] = 222453, + [SMALL_STATE(9317)] = 222464, + [SMALL_STATE(9318)] = 222475, + [SMALL_STATE(9319)] = 222484, + [SMALL_STATE(9320)] = 222495, + [SMALL_STATE(9321)] = 222506, + [SMALL_STATE(9322)] = 222517, + [SMALL_STATE(9323)] = 222528, + [SMALL_STATE(9324)] = 222539, + [SMALL_STATE(9325)] = 222550, + [SMALL_STATE(9326)] = 222561, + [SMALL_STATE(9327)] = 222570, + [SMALL_STATE(9328)] = 222581, + [SMALL_STATE(9329)] = 222592, + [SMALL_STATE(9330)] = 222603, + [SMALL_STATE(9331)] = 222612, + [SMALL_STATE(9332)] = 222623, + [SMALL_STATE(9333)] = 222634, + [SMALL_STATE(9334)] = 222645, + [SMALL_STATE(9335)] = 222656, + [SMALL_STATE(9336)] = 222667, + [SMALL_STATE(9337)] = 222678, + [SMALL_STATE(9338)] = 222689, + [SMALL_STATE(9339)] = 222700, + [SMALL_STATE(9340)] = 222711, + [SMALL_STATE(9341)] = 222722, + [SMALL_STATE(9342)] = 222733, + [SMALL_STATE(9343)] = 222744, + [SMALL_STATE(9344)] = 222755, + [SMALL_STATE(9345)] = 222766, + [SMALL_STATE(9346)] = 222777, + [SMALL_STATE(9347)] = 222788, + [SMALL_STATE(9348)] = 222799, + [SMALL_STATE(9349)] = 222810, + [SMALL_STATE(9350)] = 222821, + [SMALL_STATE(9351)] = 222832, + [SMALL_STATE(9352)] = 222843, + [SMALL_STATE(9353)] = 222854, + [SMALL_STATE(9354)] = 222865, + [SMALL_STATE(9355)] = 222874, + [SMALL_STATE(9356)] = 222885, + [SMALL_STATE(9357)] = 222896, + [SMALL_STATE(9358)] = 222907, + [SMALL_STATE(9359)] = 222916, + [SMALL_STATE(9360)] = 222925, + [SMALL_STATE(9361)] = 222936, + [SMALL_STATE(9362)] = 222947, + [SMALL_STATE(9363)] = 222958, + [SMALL_STATE(9364)] = 222969, + [SMALL_STATE(9365)] = 222978, + [SMALL_STATE(9366)] = 222989, + [SMALL_STATE(9367)] = 223000, + [SMALL_STATE(9368)] = 223011, + [SMALL_STATE(9369)] = 223022, + [SMALL_STATE(9370)] = 223033, + [SMALL_STATE(9371)] = 223042, + [SMALL_STATE(9372)] = 223053, + [SMALL_STATE(9373)] = 223064, + [SMALL_STATE(9374)] = 223073, + [SMALL_STATE(9375)] = 223084, + [SMALL_STATE(9376)] = 223093, + [SMALL_STATE(9377)] = 223102, + [SMALL_STATE(9378)] = 223111, + [SMALL_STATE(9379)] = 223122, + [SMALL_STATE(9380)] = 223131, + [SMALL_STATE(9381)] = 223142, + [SMALL_STATE(9382)] = 223153, + [SMALL_STATE(9383)] = 223164, + [SMALL_STATE(9384)] = 223175, + [SMALL_STATE(9385)] = 223186, + [SMALL_STATE(9386)] = 223195, + [SMALL_STATE(9387)] = 223206, + [SMALL_STATE(9388)] = 223215, + [SMALL_STATE(9389)] = 223226, + [SMALL_STATE(9390)] = 223237, + [SMALL_STATE(9391)] = 223246, + [SMALL_STATE(9392)] = 223255, + [SMALL_STATE(9393)] = 223264, + [SMALL_STATE(9394)] = 223275, + [SMALL_STATE(9395)] = 223284, + [SMALL_STATE(9396)] = 223295, + [SMALL_STATE(9397)] = 223306, + [SMALL_STATE(9398)] = 223317, + [SMALL_STATE(9399)] = 223328, + [SMALL_STATE(9400)] = 223339, + [SMALL_STATE(9401)] = 223350, + [SMALL_STATE(9402)] = 223361, + [SMALL_STATE(9403)] = 223372, + [SMALL_STATE(9404)] = 223383, + [SMALL_STATE(9405)] = 223394, + [SMALL_STATE(9406)] = 223403, + [SMALL_STATE(9407)] = 223414, + [SMALL_STATE(9408)] = 223425, + [SMALL_STATE(9409)] = 223434, + [SMALL_STATE(9410)] = 223443, + [SMALL_STATE(9411)] = 223454, + [SMALL_STATE(9412)] = 223463, + [SMALL_STATE(9413)] = 223474, + [SMALL_STATE(9414)] = 223483, + [SMALL_STATE(9415)] = 223494, + [SMALL_STATE(9416)] = 223505, + [SMALL_STATE(9417)] = 223514, + [SMALL_STATE(9418)] = 223525, + [SMALL_STATE(9419)] = 223534, + [SMALL_STATE(9420)] = 223543, + [SMALL_STATE(9421)] = 223554, + [SMALL_STATE(9422)] = 223563, + [SMALL_STATE(9423)] = 223574, + [SMALL_STATE(9424)] = 223585, + [SMALL_STATE(9425)] = 223596, + [SMALL_STATE(9426)] = 223605, + [SMALL_STATE(9427)] = 223616, + [SMALL_STATE(9428)] = 223625, + [SMALL_STATE(9429)] = 223634, + [SMALL_STATE(9430)] = 223643, + [SMALL_STATE(9431)] = 223654, + [SMALL_STATE(9432)] = 223665, + [SMALL_STATE(9433)] = 223676, + [SMALL_STATE(9434)] = 223687, + [SMALL_STATE(9435)] = 223698, + [SMALL_STATE(9436)] = 223707, + [SMALL_STATE(9437)] = 223716, + [SMALL_STATE(9438)] = 223725, + [SMALL_STATE(9439)] = 223736, + [SMALL_STATE(9440)] = 223747, + [SMALL_STATE(9441)] = 223756, + [SMALL_STATE(9442)] = 223765, + [SMALL_STATE(9443)] = 223774, + [SMALL_STATE(9444)] = 223783, + [SMALL_STATE(9445)] = 223794, + [SMALL_STATE(9446)] = 223803, + [SMALL_STATE(9447)] = 223812, + [SMALL_STATE(9448)] = 223823, + [SMALL_STATE(9449)] = 223832, + [SMALL_STATE(9450)] = 223843, + [SMALL_STATE(9451)] = 223852, + [SMALL_STATE(9452)] = 223861, + [SMALL_STATE(9453)] = 223872, + [SMALL_STATE(9454)] = 223883, + [SMALL_STATE(9455)] = 223894, + [SMALL_STATE(9456)] = 223903, + [SMALL_STATE(9457)] = 223912, + [SMALL_STATE(9458)] = 223921, + [SMALL_STATE(9459)] = 223930, + [SMALL_STATE(9460)] = 223939, + [SMALL_STATE(9461)] = 223948, + [SMALL_STATE(9462)] = 223957, + [SMALL_STATE(9463)] = 223966, + [SMALL_STATE(9464)] = 223974, + [SMALL_STATE(9465)] = 223982, + [SMALL_STATE(9466)] = 223990, + [SMALL_STATE(9467)] = 223998, + [SMALL_STATE(9468)] = 224006, + [SMALL_STATE(9469)] = 224014, + [SMALL_STATE(9470)] = 224022, + [SMALL_STATE(9471)] = 224030, + [SMALL_STATE(9472)] = 224038, + [SMALL_STATE(9473)] = 224046, + [SMALL_STATE(9474)] = 224054, + [SMALL_STATE(9475)] = 224062, + [SMALL_STATE(9476)] = 224070, + [SMALL_STATE(9477)] = 224078, + [SMALL_STATE(9478)] = 224086, + [SMALL_STATE(9479)] = 224094, + [SMALL_STATE(9480)] = 224102, + [SMALL_STATE(9481)] = 224110, + [SMALL_STATE(9482)] = 224118, + [SMALL_STATE(9483)] = 224126, + [SMALL_STATE(9484)] = 224134, + [SMALL_STATE(9485)] = 224142, + [SMALL_STATE(9486)] = 224150, + [SMALL_STATE(9487)] = 224158, + [SMALL_STATE(9488)] = 224166, + [SMALL_STATE(9489)] = 224174, + [SMALL_STATE(9490)] = 224182, + [SMALL_STATE(9491)] = 224190, + [SMALL_STATE(9492)] = 224198, + [SMALL_STATE(9493)] = 224206, + [SMALL_STATE(9494)] = 224214, + [SMALL_STATE(9495)] = 224222, + [SMALL_STATE(9496)] = 224230, + [SMALL_STATE(9497)] = 224238, + [SMALL_STATE(9498)] = 224246, + [SMALL_STATE(9499)] = 224254, + [SMALL_STATE(9500)] = 224262, + [SMALL_STATE(9501)] = 224270, + [SMALL_STATE(9502)] = 224278, + [SMALL_STATE(9503)] = 224286, + [SMALL_STATE(9504)] = 224294, + [SMALL_STATE(9505)] = 224302, + [SMALL_STATE(9506)] = 224310, + [SMALL_STATE(9507)] = 224318, + [SMALL_STATE(9508)] = 224326, + [SMALL_STATE(9509)] = 224334, + [SMALL_STATE(9510)] = 224342, + [SMALL_STATE(9511)] = 224350, + [SMALL_STATE(9512)] = 224358, + [SMALL_STATE(9513)] = 224366, + [SMALL_STATE(9514)] = 224374, + [SMALL_STATE(9515)] = 224382, + [SMALL_STATE(9516)] = 224390, + [SMALL_STATE(9517)] = 224398, + [SMALL_STATE(9518)] = 224406, + [SMALL_STATE(9519)] = 224414, + [SMALL_STATE(9520)] = 224422, + [SMALL_STATE(9521)] = 224430, + [SMALL_STATE(9522)] = 224438, + [SMALL_STATE(9523)] = 224446, + [SMALL_STATE(9524)] = 224454, + [SMALL_STATE(9525)] = 224462, + [SMALL_STATE(9526)] = 224470, + [SMALL_STATE(9527)] = 224478, + [SMALL_STATE(9528)] = 224486, + [SMALL_STATE(9529)] = 224494, + [SMALL_STATE(9530)] = 224502, + [SMALL_STATE(9531)] = 224510, + [SMALL_STATE(9532)] = 224518, + [SMALL_STATE(9533)] = 224526, + [SMALL_STATE(9534)] = 224534, + [SMALL_STATE(9535)] = 224542, + [SMALL_STATE(9536)] = 224550, + [SMALL_STATE(9537)] = 224558, + [SMALL_STATE(9538)] = 224566, + [SMALL_STATE(9539)] = 224574, + [SMALL_STATE(9540)] = 224582, + [SMALL_STATE(9541)] = 224590, + [SMALL_STATE(9542)] = 224598, + [SMALL_STATE(9543)] = 224606, + [SMALL_STATE(9544)] = 224614, + [SMALL_STATE(9545)] = 224622, + [SMALL_STATE(9546)] = 224630, + [SMALL_STATE(9547)] = 224638, + [SMALL_STATE(9548)] = 224646, + [SMALL_STATE(9549)] = 224654, + [SMALL_STATE(9550)] = 224662, + [SMALL_STATE(9551)] = 224670, + [SMALL_STATE(9552)] = 224678, + [SMALL_STATE(9553)] = 224686, + [SMALL_STATE(9554)] = 224694, + [SMALL_STATE(9555)] = 224702, + [SMALL_STATE(9556)] = 224710, + [SMALL_STATE(9557)] = 224718, + [SMALL_STATE(9558)] = 224726, + [SMALL_STATE(9559)] = 224734, + [SMALL_STATE(9560)] = 224742, + [SMALL_STATE(9561)] = 224750, + [SMALL_STATE(9562)] = 224758, + [SMALL_STATE(9563)] = 224766, + [SMALL_STATE(9564)] = 224774, + [SMALL_STATE(9565)] = 224782, + [SMALL_STATE(9566)] = 224790, + [SMALL_STATE(9567)] = 224798, + [SMALL_STATE(9568)] = 224806, + [SMALL_STATE(9569)] = 224814, + [SMALL_STATE(9570)] = 224822, + [SMALL_STATE(9571)] = 224830, + [SMALL_STATE(9572)] = 224838, + [SMALL_STATE(9573)] = 224846, + [SMALL_STATE(9574)] = 224854, + [SMALL_STATE(9575)] = 224862, + [SMALL_STATE(9576)] = 224870, + [SMALL_STATE(9577)] = 224878, + [SMALL_STATE(9578)] = 224886, + [SMALL_STATE(9579)] = 224894, + [SMALL_STATE(9580)] = 224902, + [SMALL_STATE(9581)] = 224910, + [SMALL_STATE(9582)] = 224918, + [SMALL_STATE(9583)] = 224926, + [SMALL_STATE(9584)] = 224934, + [SMALL_STATE(9585)] = 224942, + [SMALL_STATE(9586)] = 224950, + [SMALL_STATE(9587)] = 224958, + [SMALL_STATE(9588)] = 224966, + [SMALL_STATE(9589)] = 224974, + [SMALL_STATE(9590)] = 224982, + [SMALL_STATE(9591)] = 224990, + [SMALL_STATE(9592)] = 224998, + [SMALL_STATE(9593)] = 225006, + [SMALL_STATE(9594)] = 225014, + [SMALL_STATE(9595)] = 225022, + [SMALL_STATE(9596)] = 225030, + [SMALL_STATE(9597)] = 225038, + [SMALL_STATE(9598)] = 225046, + [SMALL_STATE(9599)] = 225054, + [SMALL_STATE(9600)] = 225062, + [SMALL_STATE(9601)] = 225070, + [SMALL_STATE(9602)] = 225078, + [SMALL_STATE(9603)] = 225086, + [SMALL_STATE(9604)] = 225094, + [SMALL_STATE(9605)] = 225102, + [SMALL_STATE(9606)] = 225110, + [SMALL_STATE(9607)] = 225118, + [SMALL_STATE(9608)] = 225126, + [SMALL_STATE(9609)] = 225134, + [SMALL_STATE(9610)] = 225142, + [SMALL_STATE(9611)] = 225150, + [SMALL_STATE(9612)] = 225158, + [SMALL_STATE(9613)] = 225166, + [SMALL_STATE(9614)] = 225174, + [SMALL_STATE(9615)] = 225182, + [SMALL_STATE(9616)] = 225190, + [SMALL_STATE(9617)] = 225198, + [SMALL_STATE(9618)] = 225206, + [SMALL_STATE(9619)] = 225214, + [SMALL_STATE(9620)] = 225222, + [SMALL_STATE(9621)] = 225230, + [SMALL_STATE(9622)] = 225238, + [SMALL_STATE(9623)] = 225246, + [SMALL_STATE(9624)] = 225254, + [SMALL_STATE(9625)] = 225262, + [SMALL_STATE(9626)] = 225270, + [SMALL_STATE(9627)] = 225278, + [SMALL_STATE(9628)] = 225286, + [SMALL_STATE(9629)] = 225294, + [SMALL_STATE(9630)] = 225302, + [SMALL_STATE(9631)] = 225310, + [SMALL_STATE(9632)] = 225318, + [SMALL_STATE(9633)] = 225326, + [SMALL_STATE(9634)] = 225334, + [SMALL_STATE(9635)] = 225342, + [SMALL_STATE(9636)] = 225350, + [SMALL_STATE(9637)] = 225358, + [SMALL_STATE(9638)] = 225366, + [SMALL_STATE(9639)] = 225374, + [SMALL_STATE(9640)] = 225382, + [SMALL_STATE(9641)] = 225390, + [SMALL_STATE(9642)] = 225398, + [SMALL_STATE(9643)] = 225406, + [SMALL_STATE(9644)] = 225414, + [SMALL_STATE(9645)] = 225422, + [SMALL_STATE(9646)] = 225430, + [SMALL_STATE(9647)] = 225438, + [SMALL_STATE(9648)] = 225446, + [SMALL_STATE(9649)] = 225454, + [SMALL_STATE(9650)] = 225462, + [SMALL_STATE(9651)] = 225470, + [SMALL_STATE(9652)] = 225478, + [SMALL_STATE(9653)] = 225486, + [SMALL_STATE(9654)] = 225494, + [SMALL_STATE(9655)] = 225502, + [SMALL_STATE(9656)] = 225510, + [SMALL_STATE(9657)] = 225518, + [SMALL_STATE(9658)] = 225526, + [SMALL_STATE(9659)] = 225534, + [SMALL_STATE(9660)] = 225542, + [SMALL_STATE(9661)] = 225550, + [SMALL_STATE(9662)] = 225558, + [SMALL_STATE(9663)] = 225566, + [SMALL_STATE(9664)] = 225574, + [SMALL_STATE(9665)] = 225582, + [SMALL_STATE(9666)] = 225590, + [SMALL_STATE(9667)] = 225598, + [SMALL_STATE(9668)] = 225606, + [SMALL_STATE(9669)] = 225614, + [SMALL_STATE(9670)] = 225622, + [SMALL_STATE(9671)] = 225630, + [SMALL_STATE(9672)] = 225638, + [SMALL_STATE(9673)] = 225646, + [SMALL_STATE(9674)] = 225654, + [SMALL_STATE(9675)] = 225662, + [SMALL_STATE(9676)] = 225670, + [SMALL_STATE(9677)] = 225678, + [SMALL_STATE(9678)] = 225686, + [SMALL_STATE(9679)] = 225694, + [SMALL_STATE(9680)] = 225702, + [SMALL_STATE(9681)] = 225710, + [SMALL_STATE(9682)] = 225718, + [SMALL_STATE(9683)] = 225726, + [SMALL_STATE(9684)] = 225734, + [SMALL_STATE(9685)] = 225742, + [SMALL_STATE(9686)] = 225750, + [SMALL_STATE(9687)] = 225758, + [SMALL_STATE(9688)] = 225766, + [SMALL_STATE(9689)] = 225774, + [SMALL_STATE(9690)] = 225782, + [SMALL_STATE(9691)] = 225790, + [SMALL_STATE(9692)] = 225798, + [SMALL_STATE(9693)] = 225806, + [SMALL_STATE(9694)] = 225814, + [SMALL_STATE(9695)] = 225822, + [SMALL_STATE(9696)] = 225830, + [SMALL_STATE(9697)] = 225838, + [SMALL_STATE(9698)] = 225846, + [SMALL_STATE(9699)] = 225854, + [SMALL_STATE(9700)] = 225862, + [SMALL_STATE(9701)] = 225870, + [SMALL_STATE(9702)] = 225878, + [SMALL_STATE(9703)] = 225886, + [SMALL_STATE(9704)] = 225894, + [SMALL_STATE(9705)] = 225902, + [SMALL_STATE(9706)] = 225910, + [SMALL_STATE(9707)] = 225918, + [SMALL_STATE(9708)] = 225926, + [SMALL_STATE(9709)] = 225934, + [SMALL_STATE(9710)] = 225942, + [SMALL_STATE(9711)] = 225950, + [SMALL_STATE(9712)] = 225958, + [SMALL_STATE(9713)] = 225966, + [SMALL_STATE(9714)] = 225974, + [SMALL_STATE(9715)] = 225982, + [SMALL_STATE(9716)] = 225990, + [SMALL_STATE(9717)] = 225998, + [SMALL_STATE(9718)] = 226006, + [SMALL_STATE(9719)] = 226014, + [SMALL_STATE(9720)] = 226022, + [SMALL_STATE(9721)] = 226030, + [SMALL_STATE(9722)] = 226038, + [SMALL_STATE(9723)] = 226046, + [SMALL_STATE(9724)] = 226054, + [SMALL_STATE(9725)] = 226062, + [SMALL_STATE(9726)] = 226070, + [SMALL_STATE(9727)] = 226078, + [SMALL_STATE(9728)] = 226086, + [SMALL_STATE(9729)] = 226094, + [SMALL_STATE(9730)] = 226102, + [SMALL_STATE(9731)] = 226110, + [SMALL_STATE(9732)] = 226118, + [SMALL_STATE(9733)] = 226126, + [SMALL_STATE(9734)] = 226134, + [SMALL_STATE(9735)] = 226142, + [SMALL_STATE(9736)] = 226150, + [SMALL_STATE(9737)] = 226158, + [SMALL_STATE(9738)] = 226166, + [SMALL_STATE(9739)] = 226174, + [SMALL_STATE(9740)] = 226182, + [SMALL_STATE(9741)] = 226190, + [SMALL_STATE(9742)] = 226198, + [SMALL_STATE(9743)] = 226206, + [SMALL_STATE(9744)] = 226214, + [SMALL_STATE(9745)] = 226222, + [SMALL_STATE(9746)] = 226230, + [SMALL_STATE(9747)] = 226238, + [SMALL_STATE(9748)] = 226246, + [SMALL_STATE(9749)] = 226254, + [SMALL_STATE(9750)] = 226262, + [SMALL_STATE(9751)] = 226270, + [SMALL_STATE(9752)] = 226278, + [SMALL_STATE(9753)] = 226286, + [SMALL_STATE(9754)] = 226294, + [SMALL_STATE(9755)] = 226302, + [SMALL_STATE(9756)] = 226310, + [SMALL_STATE(9757)] = 226318, + [SMALL_STATE(9758)] = 226326, + [SMALL_STATE(9759)] = 226334, + [SMALL_STATE(9760)] = 226342, + [SMALL_STATE(9761)] = 226350, + [SMALL_STATE(9762)] = 226358, + [SMALL_STATE(9763)] = 226366, + [SMALL_STATE(9764)] = 226374, + [SMALL_STATE(9765)] = 226382, + [SMALL_STATE(9766)] = 226390, + [SMALL_STATE(9767)] = 226398, + [SMALL_STATE(9768)] = 226406, + [SMALL_STATE(9769)] = 226414, + [SMALL_STATE(9770)] = 226422, + [SMALL_STATE(9771)] = 226430, + [SMALL_STATE(9772)] = 226438, + [SMALL_STATE(9773)] = 226446, + [SMALL_STATE(9774)] = 226454, + [SMALL_STATE(9775)] = 226462, + [SMALL_STATE(9776)] = 226470, + [SMALL_STATE(9777)] = 226478, + [SMALL_STATE(9778)] = 226486, + [SMALL_STATE(9779)] = 226494, + [SMALL_STATE(9780)] = 226502, + [SMALL_STATE(9781)] = 226510, + [SMALL_STATE(9782)] = 226518, + [SMALL_STATE(9783)] = 226526, + [SMALL_STATE(9784)] = 226534, + [SMALL_STATE(9785)] = 226542, + [SMALL_STATE(9786)] = 226550, + [SMALL_STATE(9787)] = 226558, + [SMALL_STATE(9788)] = 226566, + [SMALL_STATE(9789)] = 226574, + [SMALL_STATE(9790)] = 226582, + [SMALL_STATE(9791)] = 226590, + [SMALL_STATE(9792)] = 226598, + [SMALL_STATE(9793)] = 226606, + [SMALL_STATE(9794)] = 226614, + [SMALL_STATE(9795)] = 226622, + [SMALL_STATE(9796)] = 226630, + [SMALL_STATE(9797)] = 226638, + [SMALL_STATE(9798)] = 226646, + [SMALL_STATE(9799)] = 226654, + [SMALL_STATE(9800)] = 226662, + [SMALL_STATE(9801)] = 226670, + [SMALL_STATE(9802)] = 226678, + [SMALL_STATE(9803)] = 226686, + [SMALL_STATE(9804)] = 226694, + [SMALL_STATE(9805)] = 226702, + [SMALL_STATE(9806)] = 226710, + [SMALL_STATE(9807)] = 226718, + [SMALL_STATE(9808)] = 226726, + [SMALL_STATE(9809)] = 226734, + [SMALL_STATE(9810)] = 226742, + [SMALL_STATE(9811)] = 226750, + [SMALL_STATE(9812)] = 226758, + [SMALL_STATE(9813)] = 226766, + [SMALL_STATE(9814)] = 226774, + [SMALL_STATE(9815)] = 226782, + [SMALL_STATE(9816)] = 226790, + [SMALL_STATE(9817)] = 226798, + [SMALL_STATE(9818)] = 226806, + [SMALL_STATE(9819)] = 226814, + [SMALL_STATE(9820)] = 226822, + [SMALL_STATE(9821)] = 226830, + [SMALL_STATE(9822)] = 226838, + [SMALL_STATE(9823)] = 226846, + [SMALL_STATE(9824)] = 226854, + [SMALL_STATE(9825)] = 226862, + [SMALL_STATE(9826)] = 226870, + [SMALL_STATE(9827)] = 226878, + [SMALL_STATE(9828)] = 226886, + [SMALL_STATE(9829)] = 226894, + [SMALL_STATE(9830)] = 226902, + [SMALL_STATE(9831)] = 226910, + [SMALL_STATE(9832)] = 226918, + [SMALL_STATE(9833)] = 226926, + [SMALL_STATE(9834)] = 226934, + [SMALL_STATE(9835)] = 226942, + [SMALL_STATE(9836)] = 226950, + [SMALL_STATE(9837)] = 226958, + [SMALL_STATE(9838)] = 226966, + [SMALL_STATE(9839)] = 226974, + [SMALL_STATE(9840)] = 226982, + [SMALL_STATE(9841)] = 226990, + [SMALL_STATE(9842)] = 226998, + [SMALL_STATE(9843)] = 227006, + [SMALL_STATE(9844)] = 227014, + [SMALL_STATE(9845)] = 227022, + [SMALL_STATE(9846)] = 227030, + [SMALL_STATE(9847)] = 227038, + [SMALL_STATE(9848)] = 227046, + [SMALL_STATE(9849)] = 227054, + [SMALL_STATE(9850)] = 227062, + [SMALL_STATE(9851)] = 227070, + [SMALL_STATE(9852)] = 227078, + [SMALL_STATE(9853)] = 227086, + [SMALL_STATE(9854)] = 227094, + [SMALL_STATE(9855)] = 227102, + [SMALL_STATE(9856)] = 227110, + [SMALL_STATE(9857)] = 227118, + [SMALL_STATE(9858)] = 227126, + [SMALL_STATE(9859)] = 227134, + [SMALL_STATE(9860)] = 227142, + [SMALL_STATE(9861)] = 227150, + [SMALL_STATE(9862)] = 227158, + [SMALL_STATE(9863)] = 227166, + [SMALL_STATE(9864)] = 227174, + [SMALL_STATE(9865)] = 227182, + [SMALL_STATE(9866)] = 227190, + [SMALL_STATE(9867)] = 227198, + [SMALL_STATE(9868)] = 227206, + [SMALL_STATE(9869)] = 227214, + [SMALL_STATE(9870)] = 227222, + [SMALL_STATE(9871)] = 227230, + [SMALL_STATE(9872)] = 227238, + [SMALL_STATE(9873)] = 227246, + [SMALL_STATE(9874)] = 227254, + [SMALL_STATE(9875)] = 227262, + [SMALL_STATE(9876)] = 227270, + [SMALL_STATE(9877)] = 227278, + [SMALL_STATE(9878)] = 227286, + [SMALL_STATE(9879)] = 227294, + [SMALL_STATE(9880)] = 227302, + [SMALL_STATE(9881)] = 227310, + [SMALL_STATE(9882)] = 227318, + [SMALL_STATE(9883)] = 227326, + [SMALL_STATE(9884)] = 227334, + [SMALL_STATE(9885)] = 227342, + [SMALL_STATE(9886)] = 227350, + [SMALL_STATE(9887)] = 227358, + [SMALL_STATE(9888)] = 227366, + [SMALL_STATE(9889)] = 227374, + [SMALL_STATE(9890)] = 227382, + [SMALL_STATE(9891)] = 227390, + [SMALL_STATE(9892)] = 227398, + [SMALL_STATE(9893)] = 227406, + [SMALL_STATE(9894)] = 227414, + [SMALL_STATE(9895)] = 227422, + [SMALL_STATE(9896)] = 227430, + [SMALL_STATE(9897)] = 227438, + [SMALL_STATE(9898)] = 227446, + [SMALL_STATE(9899)] = 227454, + [SMALL_STATE(9900)] = 227462, + [SMALL_STATE(9901)] = 227470, + [SMALL_STATE(9902)] = 227478, + [SMALL_STATE(9903)] = 227486, + [SMALL_STATE(9904)] = 227494, + [SMALL_STATE(9905)] = 227502, + [SMALL_STATE(9906)] = 227510, + [SMALL_STATE(9907)] = 227518, + [SMALL_STATE(9908)] = 227526, + [SMALL_STATE(9909)] = 227534, + [SMALL_STATE(9910)] = 227542, + [SMALL_STATE(9911)] = 227550, + [SMALL_STATE(9912)] = 227558, + [SMALL_STATE(9913)] = 227566, + [SMALL_STATE(9914)] = 227574, + [SMALL_STATE(9915)] = 227582, + [SMALL_STATE(9916)] = 227590, + [SMALL_STATE(9917)] = 227598, + [SMALL_STATE(9918)] = 227606, + [SMALL_STATE(9919)] = 227614, + [SMALL_STATE(9920)] = 227622, + [SMALL_STATE(9921)] = 227630, + [SMALL_STATE(9922)] = 227638, + [SMALL_STATE(9923)] = 227646, + [SMALL_STATE(9924)] = 227654, + [SMALL_STATE(9925)] = 227662, + [SMALL_STATE(9926)] = 227670, + [SMALL_STATE(9927)] = 227678, + [SMALL_STATE(9928)] = 227686, + [SMALL_STATE(9929)] = 227694, + [SMALL_STATE(9930)] = 227702, + [SMALL_STATE(9931)] = 227710, + [SMALL_STATE(9932)] = 227718, + [SMALL_STATE(9933)] = 227726, + [SMALL_STATE(9934)] = 227734, + [SMALL_STATE(9935)] = 227742, + [SMALL_STATE(9936)] = 227750, + [SMALL_STATE(9937)] = 227758, + [SMALL_STATE(9938)] = 227766, + [SMALL_STATE(9939)] = 227774, + [SMALL_STATE(9940)] = 227782, + [SMALL_STATE(9941)] = 227790, + [SMALL_STATE(9942)] = 227798, + [SMALL_STATE(9943)] = 227806, + [SMALL_STATE(9944)] = 227814, + [SMALL_STATE(9945)] = 227822, + [SMALL_STATE(9946)] = 227830, + [SMALL_STATE(9947)] = 227838, + [SMALL_STATE(9948)] = 227846, + [SMALL_STATE(9949)] = 227854, + [SMALL_STATE(9950)] = 227862, + [SMALL_STATE(9951)] = 227870, + [SMALL_STATE(9952)] = 227878, + [SMALL_STATE(9953)] = 227886, + [SMALL_STATE(9954)] = 227894, + [SMALL_STATE(9955)] = 227902, + [SMALL_STATE(9956)] = 227910, + [SMALL_STATE(9957)] = 227918, + [SMALL_STATE(9958)] = 227926, + [SMALL_STATE(9959)] = 227934, + [SMALL_STATE(9960)] = 227942, + [SMALL_STATE(9961)] = 227950, + [SMALL_STATE(9962)] = 227958, + [SMALL_STATE(9963)] = 227966, + [SMALL_STATE(9964)] = 227974, + [SMALL_STATE(9965)] = 227982, + [SMALL_STATE(9966)] = 227990, + [SMALL_STATE(9967)] = 227998, + [SMALL_STATE(9968)] = 228006, + [SMALL_STATE(9969)] = 228014, + [SMALL_STATE(9970)] = 228022, + [SMALL_STATE(9971)] = 228030, + [SMALL_STATE(9972)] = 228038, + [SMALL_STATE(9973)] = 228046, + [SMALL_STATE(9974)] = 228054, + [SMALL_STATE(9975)] = 228062, + [SMALL_STATE(9976)] = 228070, + [SMALL_STATE(9977)] = 228078, + [SMALL_STATE(9978)] = 228086, + [SMALL_STATE(9979)] = 228094, + [SMALL_STATE(9980)] = 228102, + [SMALL_STATE(9981)] = 228110, + [SMALL_STATE(9982)] = 228118, + [SMALL_STATE(9983)] = 228126, + [SMALL_STATE(9984)] = 228134, + [SMALL_STATE(9985)] = 228142, + [SMALL_STATE(9986)] = 228150, + [SMALL_STATE(9987)] = 228158, + [SMALL_STATE(9988)] = 228166, + [SMALL_STATE(9989)] = 228174, + [SMALL_STATE(9990)] = 228182, + [SMALL_STATE(9991)] = 228190, + [SMALL_STATE(9992)] = 228198, + [SMALL_STATE(9993)] = 228206, + [SMALL_STATE(9994)] = 228214, + [SMALL_STATE(9995)] = 228222, + [SMALL_STATE(9996)] = 228230, + [SMALL_STATE(9997)] = 228238, + [SMALL_STATE(9998)] = 228246, + [SMALL_STATE(9999)] = 228254, + [SMALL_STATE(10000)] = 228262, + [SMALL_STATE(10001)] = 228270, + [SMALL_STATE(10002)] = 228278, + [SMALL_STATE(10003)] = 228286, + [SMALL_STATE(10004)] = 228294, + [SMALL_STATE(10005)] = 228302, + [SMALL_STATE(10006)] = 228310, + [SMALL_STATE(10007)] = 228318, + [SMALL_STATE(10008)] = 228326, + [SMALL_STATE(10009)] = 228334, + [SMALL_STATE(10010)] = 228342, + [SMALL_STATE(10011)] = 228350, + [SMALL_STATE(10012)] = 228358, + [SMALL_STATE(10013)] = 228366, + [SMALL_STATE(10014)] = 228374, + [SMALL_STATE(10015)] = 228382, + [SMALL_STATE(10016)] = 228390, + [SMALL_STATE(10017)] = 228398, + [SMALL_STATE(10018)] = 228406, + [SMALL_STATE(10019)] = 228414, + [SMALL_STATE(10020)] = 228422, + [SMALL_STATE(10021)] = 228430, + [SMALL_STATE(10022)] = 228438, + [SMALL_STATE(10023)] = 228446, + [SMALL_STATE(10024)] = 228454, + [SMALL_STATE(10025)] = 228462, + [SMALL_STATE(10026)] = 228470, + [SMALL_STATE(10027)] = 228478, + [SMALL_STATE(10028)] = 228486, + [SMALL_STATE(10029)] = 228494, + [SMALL_STATE(10030)] = 228502, + [SMALL_STATE(10031)] = 228510, + [SMALL_STATE(10032)] = 228518, + [SMALL_STATE(10033)] = 228526, + [SMALL_STATE(10034)] = 228534, + [SMALL_STATE(10035)] = 228542, + [SMALL_STATE(10036)] = 228550, + [SMALL_STATE(10037)] = 228558, + [SMALL_STATE(10038)] = 228566, + [SMALL_STATE(10039)] = 228574, + [SMALL_STATE(10040)] = 228582, + [SMALL_STATE(10041)] = 228590, + [SMALL_STATE(10042)] = 228598, + [SMALL_STATE(10043)] = 228606, + [SMALL_STATE(10044)] = 228614, + [SMALL_STATE(10045)] = 228622, + [SMALL_STATE(10046)] = 228630, + [SMALL_STATE(10047)] = 228638, + [SMALL_STATE(10048)] = 228646, + [SMALL_STATE(10049)] = 228654, + [SMALL_STATE(10050)] = 228662, + [SMALL_STATE(10051)] = 228670, + [SMALL_STATE(10052)] = 228678, + [SMALL_STATE(10053)] = 228686, + [SMALL_STATE(10054)] = 228694, + [SMALL_STATE(10055)] = 228702, + [SMALL_STATE(10056)] = 228710, + [SMALL_STATE(10057)] = 228718, + [SMALL_STATE(10058)] = 228726, + [SMALL_STATE(10059)] = 228734, + [SMALL_STATE(10060)] = 228742, + [SMALL_STATE(10061)] = 228750, + [SMALL_STATE(10062)] = 228758, + [SMALL_STATE(10063)] = 228766, + [SMALL_STATE(10064)] = 228774, + [SMALL_STATE(10065)] = 228782, + [SMALL_STATE(10066)] = 228790, + [SMALL_STATE(10067)] = 228798, + [SMALL_STATE(10068)] = 228806, + [SMALL_STATE(10069)] = 228814, + [SMALL_STATE(10070)] = 228822, + [SMALL_STATE(10071)] = 228830, + [SMALL_STATE(10072)] = 228838, + [SMALL_STATE(10073)] = 228846, + [SMALL_STATE(10074)] = 228854, + [SMALL_STATE(10075)] = 228862, + [SMALL_STATE(10076)] = 228870, + [SMALL_STATE(10077)] = 228878, + [SMALL_STATE(10078)] = 228886, + [SMALL_STATE(10079)] = 228894, + [SMALL_STATE(10080)] = 228902, + [SMALL_STATE(10081)] = 228910, + [SMALL_STATE(10082)] = 228918, + [SMALL_STATE(10083)] = 228926, + [SMALL_STATE(10084)] = 228934, + [SMALL_STATE(10085)] = 228942, + [SMALL_STATE(10086)] = 228950, + [SMALL_STATE(10087)] = 228958, + [SMALL_STATE(10088)] = 228966, + [SMALL_STATE(10089)] = 228974, + [SMALL_STATE(10090)] = 228982, + [SMALL_STATE(10091)] = 228990, + [SMALL_STATE(10092)] = 228998, + [SMALL_STATE(10093)] = 229006, + [SMALL_STATE(10094)] = 229014, + [SMALL_STATE(10095)] = 229022, + [SMALL_STATE(10096)] = 229030, + [SMALL_STATE(10097)] = 229038, + [SMALL_STATE(10098)] = 229048, + [SMALL_STATE(10099)] = 229056, + [SMALL_STATE(10100)] = 229064, + [SMALL_STATE(10101)] = 229072, + [SMALL_STATE(10102)] = 229080, + [SMALL_STATE(10103)] = 229088, + [SMALL_STATE(10104)] = 229096, + [SMALL_STATE(10105)] = 229104, + [SMALL_STATE(10106)] = 229112, + [SMALL_STATE(10107)] = 229120, + [SMALL_STATE(10108)] = 229128, + [SMALL_STATE(10109)] = 229136, + [SMALL_STATE(10110)] = 229144, + [SMALL_STATE(10111)] = 229152, + [SMALL_STATE(10112)] = 229160, + [SMALL_STATE(10113)] = 229168, + [SMALL_STATE(10114)] = 229176, + [SMALL_STATE(10115)] = 229184, + [SMALL_STATE(10116)] = 229192, + [SMALL_STATE(10117)] = 229200, + [SMALL_STATE(10118)] = 229208, + [SMALL_STATE(10119)] = 229216, + [SMALL_STATE(10120)] = 229224, + [SMALL_STATE(10121)] = 229232, + [SMALL_STATE(10122)] = 229240, + [SMALL_STATE(10123)] = 229248, + [SMALL_STATE(10124)] = 229256, + [SMALL_STATE(10125)] = 229264, + [SMALL_STATE(10126)] = 229272, + [SMALL_STATE(10127)] = 229280, + [SMALL_STATE(10128)] = 229288, + [SMALL_STATE(10129)] = 229296, + [SMALL_STATE(10130)] = 229304, + [SMALL_STATE(10131)] = 229312, + [SMALL_STATE(10132)] = 229320, + [SMALL_STATE(10133)] = 229328, + [SMALL_STATE(10134)] = 229336, + [SMALL_STATE(10135)] = 229344, + [SMALL_STATE(10136)] = 229352, + [SMALL_STATE(10137)] = 229360, + [SMALL_STATE(10138)] = 229368, + [SMALL_STATE(10139)] = 229376, + [SMALL_STATE(10140)] = 229384, + [SMALL_STATE(10141)] = 229392, + [SMALL_STATE(10142)] = 229400, + [SMALL_STATE(10143)] = 229408, + [SMALL_STATE(10144)] = 229416, + [SMALL_STATE(10145)] = 229424, + [SMALL_STATE(10146)] = 229432, + [SMALL_STATE(10147)] = 229440, + [SMALL_STATE(10148)] = 229448, + [SMALL_STATE(10149)] = 229456, + [SMALL_STATE(10150)] = 229464, + [SMALL_STATE(10151)] = 229472, + [SMALL_STATE(10152)] = 229480, + [SMALL_STATE(10153)] = 229488, + [SMALL_STATE(10154)] = 229496, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -671618,6185 +672093,6134 @@ 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, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10152), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7865), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8031), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10089), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10081), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9462), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10079), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9066), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9128), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7947), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7949), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10091), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10083), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10082), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10080), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9055), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9039), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, 0, 0), - [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, 0, 0), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9837), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9663), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9809), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9785), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9997), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9077), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9239), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8843), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8838), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8835), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), - [209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 0), - [211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 0), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8241), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8251), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9626), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7816), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9046), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9043), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 0), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 0), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8211), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9646), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9958), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9731), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9613), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8880), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8298), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9663), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10077), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10047), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8232), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9622), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9973), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10115), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8800), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9427), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8179), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9610), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9829), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9995), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8787), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9441), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9074), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9073), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8230), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9613), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9886), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10143), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8854), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9329), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8828), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9975), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9945), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10142), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10080), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9620), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9950), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9897), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10136), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8862), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9394), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8934), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8097), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10073), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7722), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9934), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10042), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10127), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9941), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10105), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10061), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10133), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9947), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10002), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10107), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9681), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7633), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9540), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9979), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10129), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7818), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10125), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10087), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9566), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9937), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10064), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10035), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9560), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9927), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10009), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9729), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9943), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10120), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9596), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9939), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9961), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8050), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9748), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9946), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9887), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9762), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7754), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9952), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9842), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9755), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9949), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9564), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9671), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7615), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9942), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10112), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8093), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10131), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9940), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10098), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9508), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7631), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9935), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10053), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8030), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9499), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9930), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10017), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8171), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9545), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9936), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10059), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9659), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9933), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10032), - [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8206), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8242), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9645), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9707), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9996), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 0), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 0), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9419), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9986), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8936), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4594), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(6651), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1478), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8023), - [1461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8031), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10089), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(68), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1496), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(6377), - [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7803), - [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(6406), - [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5300), - [1485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5299), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5127), - [1491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5129), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1508), - [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1236), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10081), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9462), - [1506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(232), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4568), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10079), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9066), - [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9128), - [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1517), - [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(309), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5130), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7905), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1552), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1552), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5766), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5770), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2756), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5781), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5782), - [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5616), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5784), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5785), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2754), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9047), - [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9039), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9038), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9030), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9021), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4568), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4889), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4889), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5142), - [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8474), - [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4594), - [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8440), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9789), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9850), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10011), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9999), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2, 0, 0), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3, 0, 0), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8879), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9086), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7809), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10078), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10045), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10121), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10020), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10010), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10067), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9244), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 0), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 0), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 0), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 0), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 0), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 0), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, 0, 0), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8909), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8823), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8943), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7665), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7820), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9786), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2899), - [2075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(6637), - [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2077), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(78), - [2087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2076), - [2090] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8936), - [2094] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7716), - [2098] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(2881), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3534), - [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3526), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1781), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1795), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3528), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10020), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8800), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9427), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1783), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(268), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3531), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7918), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1795), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8962), - [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8957), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8949), - [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8948), - [2155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8947), - [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3528), - [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3165), - [2164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3165), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3529), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8544), - [2173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2899), - [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8451), - [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3364), - [2182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2093), - [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(72), - [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2092), - [2191] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8879), - [2195] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7675), - [2199] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(3325), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3960), - [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3825), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1541), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1543), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3938), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10121), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8854), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9329), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1542), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(267), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3958), - [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8013), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1543), - [2242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8944), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8811), - [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8817), - [2251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8827), - [2254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8828), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3938), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3618), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3618), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3939), - [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8553), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3364), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8436), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(812), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2057), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(82), - [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2056), - [2290] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(9086), - [2294] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7607), - [2298] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(813), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1055), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1056), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1505), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1481), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1073), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10067), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8787), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9441), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1502), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(270), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1067), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7929), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1481), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9076), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9075), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9074), - [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9073), - [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1073), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(921), - [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(921), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1068), - [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8501), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(812), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8435), - [2374] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7749), - [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1778), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1774), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10061), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1776), - [2390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(263), - [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1774), - [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4533), - [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2106), - [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(85), - [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2107), - [2408] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8909), - [2412] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7606), - [2416] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(4537), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4774), - [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4780), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1746), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1904), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4693), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9786), - [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9077), - [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9239), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1747), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(313), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4781), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7922), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1904), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8860), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8843), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8838), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8837), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8835), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4693), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4591), - [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4591), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4795), - [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8612), - [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4533), - [2492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8426), - [2495] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7612), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1557), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1528), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10010), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1556), - [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(269), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1528), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2776), - [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2066), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(58), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2065), - [2529] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8943), - [2533] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7665), - [2537] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(2770), - [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3150), - [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3154), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2152), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2139), - [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3176), - [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10136), - [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8862), - [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9394), - [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2150), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(297), - [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3166), - [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7924), - [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2139), - [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9047), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8930), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8932), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8934), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8938), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3176), - [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2931), - [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2931), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3170), - [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8526), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2776), - [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8443), - [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4594), - [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1478), - [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(68), - [2625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1496), - [2628] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8823), - [2632] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7794), - [2636] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(4584), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5127), - [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5129), - [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1909), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1520), - [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5154), - [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9971), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9066), - [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9128), - [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1498), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(357), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5130), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7905), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1520), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9039), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9038), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9030), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9021), - [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5154), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4889), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4889), - [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5142), - [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8474), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4594), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8440), - [2712] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7809), - [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1732), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1725), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10078), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1730), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(265), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1725), - [2734] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7795), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2002), - [2741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1968), - [2744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9995), - [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2001), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(261), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1968), - [2756] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7820), - [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1693), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1687), - [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10035), - [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2156), - [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(307), - [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1687), - [2778] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7730), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1523), - [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1835), - [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10079), - [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1517), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(309), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1835), - [2800] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7813), - [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2173), - [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1750), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10080), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1522), - [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(296), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1750), - [2822] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7684), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1656), - [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1653), - [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10107), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1655), - [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(264), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1653), - [2844] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7634), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1981), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1983), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10047), - [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1982), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(283), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1983), - [2866] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7782), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2105), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2116), - [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10143), - [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2115), - [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(260), - [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2116), - [2888] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7650), - [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2155), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2167), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10054), - [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1692), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(361), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2167), - [2910] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7598), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1508), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1552), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9813), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1843), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(376), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1552), - [2932] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7737), - [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1504), - [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1459), - [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9997), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1510), - [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(298), - [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1459), - [2954] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7672), - [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1588), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1593), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10087), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1590), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(262), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1593), - [2976] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7658), - [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1729), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1745), - [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10045), - [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1731), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(266), - [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1745), - [2998] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7681), - [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1807), - [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1803), - [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9982), - [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1805), - [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(358), - [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1803), - [3020] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7832), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2130), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2133), - [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10115), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2131), - [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(223), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2133), - [3042] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7805), - [3046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1633), - [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1636), - [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10100), - [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1634), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(356), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1636), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7805), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10100), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9971), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9982), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 0), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 0), - [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2, 0, 0), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2, 0, 0), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10054), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, 0, 0), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 0), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2, 0, 0), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2, 0, 0), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3, 0, 0), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3, 0, 0), - [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3, 0, 0), SHIFT(4145), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3, 0, 0), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, 0, 0), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3, 0, 0), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3, 0, 0), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3, 0, 0), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3, 0, 0), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3, 0, 0), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2, 0, 0), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2, 0, 0), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9948), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9571), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8972), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9172), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8890), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, 0, 0), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, 0, 0), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10015), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10036), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9997), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9648), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8043), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9627), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9963), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9775), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9316), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10054), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9955), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9704), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9995), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8071), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9510), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7796), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9961), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9758), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9705), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8899), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9205), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8903), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8061), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9634), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9960), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9751), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9681), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8849), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9294), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9020), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10137), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9954), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9670), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9588), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8145), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9893), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9547), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10141), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9957), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9727), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9604), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10135), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7784), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9602), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9548), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10058), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9944), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9532), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9688), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9947), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9556), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9523), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8132), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9662), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9953), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9621), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8158), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9795), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9937), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9489), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8095), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9657), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9956), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9715), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9644), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7742), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9949), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9580), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8063), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9653), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7788), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9962), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9639), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9655), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9959), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9740), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9697), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9946), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9546), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9718), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9945), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9538), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9669), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7653), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9952), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9608), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8230), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9762), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7818), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9940), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9503), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9716), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7710), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9943), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9517), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10139), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9950), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9596), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [1099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8217), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9850), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7809), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6443), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9711), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9468), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4, 0, 0), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3, 0, 0), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4602), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(6618), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1517), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8225), + [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8224), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10091), + [1381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(59), + [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1429), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7709), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7703), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(6418), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5269), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5306), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5070), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5071), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1443), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1290), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10083), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10082), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(219), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4553), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(10080), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9055), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9146), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1484), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(299), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5078), + [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(7961), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1491), + [1450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(1491), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5791), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5792), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2755), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5794), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5795), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5609), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5796), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5797), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(2756), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9047), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9046), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9045), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9043), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(9041), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4553), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4898), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4898), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(5085), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8518), + [1510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(4602), + [1513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), SHIFT_REPEAT(8412), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10009), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 5, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9474), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9645), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9808), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3, 0, 0), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2, 0, 0), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 1, 0, 0), + [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 1, 0, 0), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9090), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9030), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7716), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7800), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9713), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9721), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7712), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9622), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9504), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9491), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9561), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), + [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 0), + [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 0), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 0), + [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 0), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 0), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 0), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 0), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 0), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, 0, 0), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 0), + [1772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9023), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8966), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8878), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7616), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9647), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3321), + [2023] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(6667), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1791), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(77), + [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1815), + [2038] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8907), + [2042] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7712), + [2046] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(3334), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3875), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3904), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2096), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2092), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), + [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3948), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9622), + [2070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8899), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9205), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2094), + [2079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(267), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3868), + [2085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7906), + [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2092), + [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8901), + [2094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8902), + [2097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8953), + [2100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8903), + [2103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8904), + [2106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3948), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3652), + [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3652), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3900), + [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8577), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3321), + [2124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8443), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4602), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1517), + [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(59), + [2136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1429), + [2139] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8878), + [2143] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7718), + [2147] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(4609), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5070), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5071), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1443), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1491), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5086), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9782), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9055), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9146), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1865), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(359), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5078), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7961), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1491), + [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9047), + [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9046), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9045), + [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9043), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9041), + [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5086), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4898), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4898), + [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(5085), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8518), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4602), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8412), + [2226] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7716), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1766), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1764), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9548), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1765), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(263), + [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1764), + [2248] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7654), + [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1709), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1824), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10048), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2143), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(356), + [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1824), + [2270] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7831), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1555), + [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1550), + [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9705), + [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1552), + [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(260), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1550), + [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2786), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1904), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(71), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1909), + [2304] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(8966), + [2308] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7656), + [2312] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(2802), + [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3191), + [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3058), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2157), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2169), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3182), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9541), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8849), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9294), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1514), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(369), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3187), + [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7981), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2169), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9020), + [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9008), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9003), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8998), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3182), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2942), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2942), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3184), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8505), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2786), + [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8427), + [2388] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7766), + [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1615), + [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1672), + [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9681), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1619), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(296), + [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1672), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4536), + [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1572), + [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(66), + [2419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1573), + [2422] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(9023), + [2426] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7736), + [2430] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(4534), + [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4730), + [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4731), + [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2137), + [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2132), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4735), + [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9466), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8972), + [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9172), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2134), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(298), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4732), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7882), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2132), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8891), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8890), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8887), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8885), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8881), + [2488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4735), + [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4601), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4601), + [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4734), + [2500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8607), + [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4536), + [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8445), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(815), + [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1936), + [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(61), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1937), + [2521] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(9030), + [2525] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7669), + [2529] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(820), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1113), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1112), + [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1939), + [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1931), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1106), + [2548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9721), + [2551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8792), + [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9316), + [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1934), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(266), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1110), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7888), + [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1931), + [2572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9056), + [2575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9079), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9082), + [2581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9085), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1106), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(895), + [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(895), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1108), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8492), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(815), + [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8435), + [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2924), + [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1864), + [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(75), + [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1869), + [2617] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(9090), + [2621] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7810), + [2625] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(2894), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3566), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3567), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1481), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1475), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3570), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9613), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8880), + [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9235), + [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1479), + [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(258), + [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3568), + [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7918), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1475), + [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9069), + [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9071), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9078), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9080), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9084), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3570), + [2686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3249), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3249), + [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3569), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8539), + [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2924), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8439), + [2704] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7800), + [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1566), + [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1561), + [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9713), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1565), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(265), + [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1561), + [2726] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7619), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1756), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1747), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9561), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1428), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(270), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1747), + [2748] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7691), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1798), + [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1792), + [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9475), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1795), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(358), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1792), + [2770] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7717), + [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2068), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1684), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9995), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1835), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(297), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1684), + [2792] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7776), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1616), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1609), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9533), + [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1613), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(283), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1609), + [2814] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7670), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1838), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1862), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(10080), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1484), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(299), + [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1862), + [2836] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7765), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1994), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1990), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9597), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1993), + [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(357), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1990), + [2858] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7604), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1783), + [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1797), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9504), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1785), + [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(268), + [2877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1797), + [2880] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7701), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1515), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1511), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9523), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2158), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(309), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1511), + [2902] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7688), + [2906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2051), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2046), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9588), + [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2049), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(262), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2046), + [2924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7616), + [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1523), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1476), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9647), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1522), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(313), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1476), + [2946] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7802), + [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1724), + [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1727), + [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9728), + [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1726), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(261), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1727), + [2968] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7729), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1456), + [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1434), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9604), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1432), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(264), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1434), + [2990] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), SHIFT(7811), + [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1642), + [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1528), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9491), + [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1634), + [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(269), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(1528), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10048), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9597), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9475), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9782), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, 0, 0), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 0), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, 0, 0), + [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), SHIFT(4187), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_expression, 3, 0, 0), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, 0, 0), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_delegate, 2, 0, 0), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_delegate, 2, 0, 0), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_expression, 3, 0, 0), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_expression, 3, 0, 0), + [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_check_expression, 3, 0, 0), SHIFT(4187), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3, 0, 0), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3, 0, 0), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conjunction_expression, 3, 0, 0), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conjunction_expression, 3, 0, 0), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2, 0, 0), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2, 0, 0), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_expression, 3, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_expression, 3, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9541), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), + [3104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), SHIFT(4187), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jump_expression, 2, 0, 0), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jump_expression, 2, 0, 0), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 0), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), SHIFT(4187), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2, 0, 0), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_expression, 2, 0, 0), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 0), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3, 0, 0), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 0), SHIFT(4187), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_disjunction_expression, 3, 0, 0), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_disjunction_expression, 3, 0, 0), [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_expression, 3, 0, 0), [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_expression, 3, 0, 0), - [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3, 0, 0), SHIFT(4145), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 0), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elvis_expression, 3, 0, 0), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_elvis_expression, 3, 0, 0), SHIFT(4145), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), - [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_multiplicative_expression, 3, 0, 0), SHIFT(4145), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, 0, 0), - [3170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_infix_expression, 3, 0, 0), SHIFT(4145), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 2, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 2, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9813), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_delegation, 3, 0, 0), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_delegation, 3, 0, 0), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 2, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 2, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [3197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), SHIFT(4145), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 6), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 6), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9152), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 8), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 8), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 2), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 2), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9123), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 6), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 6), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 2), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 2), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 8), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 8), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 0), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2, 0, 0), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, 0, 0), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9589), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7624), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6278), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4533), - [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6637), - [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), - [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), - [3744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2107), - [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8909), - [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7606), - [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4537), - [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4774), - [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4780), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), - [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), - [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2187), - [3771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4693), - [3774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9786), - [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9589), - [3780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9077), - [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9239), - [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), - [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(313), - [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4781), - [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7922), - [3798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2187), - [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5898), - [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5898), - [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1904), - [3810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8860), - [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8843), - [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8838), - [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8837), - [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8835), - [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4693), - [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), - [3834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4795), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8612), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4533), - [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8426), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1, 0, 0), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1, 0, 0), - [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), - [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1, 0, 0), - [3999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1, 0, 0), - [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(2111), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7657), - [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1, 0, 0), - [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7657), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1, 0, 0), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7170), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2, 0, 0), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2, 0, 0), - [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__postfix_unary_expression, 1, 0, 0), - [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__postfix_unary_expression, 1, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3, 0, 0), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3, 0, 0), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10149), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9414), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lexical_identifier, 1, 0, 0), - [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lexical_identifier, 1, 0, 0), - [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), - [4130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10149), - [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 0), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 0), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), - [4147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7974), - [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 0), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 0), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 0), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 0), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7761), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, 0, 1), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, 0, 1), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 0), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 0), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1, 0, 0), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1, 0, 0), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), - [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7974), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 0), - [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 0), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 8), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 8), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, 0, 0), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, 0, 0), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2, 0, 3), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2, 0, 3), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [4220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1, 0, 0), - [4230] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9980), - [4234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), - [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1, 0, 0), - [4244] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6682), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 0), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 0), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 0), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 0), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 0), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 0), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 6), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 6), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2, 0, 0), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2, 0, 0), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), - [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2, 0, 0), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2, 0, 0), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 2), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 2), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6792), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, 0, 1), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, 0, 1), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_reference, 1, 0, 0), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_reference, 1, 0, 0), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), - [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3, 0, 0), - [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4, 0, 0), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4, 0, 0), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2, 0, 0), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2, 0, 0), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, 0, 2), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, 0, 2), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), - [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6, 0, 0), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6, 0, 0), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3, 0, 0), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3, 0, 0), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, 0, 0), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, 0, 0), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7, 0, 0), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7, 0, 0), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, 0, 6), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, 0, 6), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 8), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 8), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3, 0, 0), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3, 0, 0), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 6), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 6), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 6), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 6), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), - [4435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7246), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2, 0, 0), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2, 0, 0), - [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8, 0, 0), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8, 0, 0), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 0), - [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 0), - [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 8), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 8), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), - [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 2), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 2), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [4474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7974), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1, 0, 0), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1, 0, 0), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1, 0, 0), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1, 0, 0), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 2), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 2), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9460), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 4, 0, 0), REDUCE(sym_not_nullable_type, 5, 0, 0), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 4, 0, 0), REDUCE(sym_not_nullable_type, 5, 0, 0), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3, 0, 0), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3, 0, 0), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2, 0, 0), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2, 0, 0), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, 0, 2), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, 0, 2), - [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 3, 0, 0), REDUCE(sym_not_nullable_type, 4, 0, 0), - [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 3, 0, 0), REDUCE(sym_not_nullable_type, 4, 0, 0), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 4, 0, 0), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 4, 0, 0), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, 0, 1), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, 0, 1), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 5, 0, 0), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 5, 0, 0), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 2, 0, 0), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2, 0, 0), - [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3, 0, 0), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3, 0, 0), - [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 0), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 0), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 3, 0, 0), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 3, 0, 0), - [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3, 0, 0), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3, 0, 0), - [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), - [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1, 0, 0), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1, 0, 0), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3, 0, 0), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3, 0, 0), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_user_type, 3, 0, 0), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_user_type, 3, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4, 0, 0), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4, 0, 0), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), - [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7154), - [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, 0, 6), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, 0, 6), - [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4, 0, 0), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4, 0, 0), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1, 0, 0), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1, 0, 0), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5, 0, 0), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5, 0, 0), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 4, 0, 0), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 4, 0, 0), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), - [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, 0, 2), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, 0, 2), - [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 2), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 2), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4, 0, 0), - [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4, 0, 0), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 8), - [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 8), - [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 2, 0, 0), - [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 2, 0, 0), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2, 0, 0), - [4726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2, 0, 0), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 6), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 6), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5, 0, 0), - [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2, 0, 0), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8, 0, 0), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8, 0, 0), - [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, 0, 2), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, 0, 2), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 0), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [4834] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9889), - [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2, 0, 0), - [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2, 0, 0), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2, 0, 0), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2, 0, 0), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2, 0, 0), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10038), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4, 0, 0), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4, 0, 0), - [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4, 0, 0), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4, 0, 0), - [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4, 0, 0), - [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4, 0, 0), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), - [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, 0, 6), - [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, 0, 6), - [4882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5, 0, 0), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5, 0, 0), - [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, 0, 2), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, 0, 2), - [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1, 0, 0), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1, 0, 0), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1, 0, 0), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1, 0, 0), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 6), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 6), - [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2, 0, 0), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2, 0, 0), - [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2, 0, 0), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2, 0, 0), - [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4, 0, 0), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4, 0, 0), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), - [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3, 0, 0), - [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3, 0, 0), - [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, 0, 0), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, 0, 0), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9929), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [4936] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6729), - [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 2), - [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 2), - [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 0), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), - [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1, 0, 0), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7928), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1, 0, 0), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3, 0, 0), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4, 0, 0), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4, 0, 0), - [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2, 0, 0), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2, 0, 0), - [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5, 0, 0), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5, 0, 0), - [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2, 0, 0), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2, 0, 0), - [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5, 0, 0), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5, 0, 0), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, 0, 2), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, 0, 2), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1, 0, 0), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1, 0, 0), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2, 0, 3), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2, 0, 3), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2, 0, 3), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2, 0, 3), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, 0, 2), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, 0, 2), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__this_at, 2, 0, 2), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__this_at, 2, 0, 2), - [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 2, 0, 2), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 2, 0, 2), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2, 0, 0), - [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7, 0, 0), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2, 0, 0), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2, 0, 0), - [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2, 0, 0), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2, 0, 0), - [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5, 0, 0), - [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2, 0, 0), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2, 0, 0), - [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 0), - [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 0), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 0), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, 0, 6), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, 0, 6), - [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 0), - [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 0), - [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4, 0, 0), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4, 0, 0), - [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8, 0, 0), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8, 0, 0), - [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8, 0, 0), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8, 0, 0), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5, 0, 0), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5, 0, 0), - [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3, 0, 0), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3, 0, 0), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7, 0, 0), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, 0, 0), - [5085] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10119), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7, 0, 0), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7, 0, 0), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1, 0, 0), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1, 0, 0), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5, 0, 0), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5, 0, 0), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 8), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 8), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [5109] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6691), - [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4, 0, 0), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4, 0, 0), - [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3, 0, 0), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3, 0, 0), - [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, 0, 1), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, 0, 1), - [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3, 0, 0), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3, 0, 0), - [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, 0, 0), - [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, 0, 0), - [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4, 0, 0), - [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4, 0, 0), - [5137] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10046), - [5141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11, 0, 0), - [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11, 0, 0), - [5145] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6716), - [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3, 0, 0), - [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3, 0, 0), - [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), - [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_additive_expression, 3, 0, 0), SHIFT(4187), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 6), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 6), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9106), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6662), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 2), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 2), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9206), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 8), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 8), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 6), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 6), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 2), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 2), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 8), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 8), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 2, 0, 0), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 2, 0, 0), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 0), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 10, 0, 0), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 10, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6925), + [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6788), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7024), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6991), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9274), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9754), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4536), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6667), + [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), + [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), + [3728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [3731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9023), + [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7616), + [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4534), + [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4730), + [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4731), + [3746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), + [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4735), + [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9647), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9754), + [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8972), + [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9172), + [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4732), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7882), + [3782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5953), + [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1476), + [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8891), + [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8890), + [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8887), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8885), + [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8881), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4735), + [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4601), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4601), + [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4734), + [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8607), + [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4536), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(8445), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 2, 0, 0), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 2, 0, 0), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_identifier, 1, 0, 0), + [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_platform_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), + [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_platform_modifier, 1, 0, 0), + [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_platform_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(1576), + [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7782), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7782), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), SHIFT(7131), + [3970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_modifier, 1, 0, 0), + [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class_modifier, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), REDUCE(sym__postfix_unary_expression, 1, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 1, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 1, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 3, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 3, 0, 0), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10152), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9256), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), + [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7999), + [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 0), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 0), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 0), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 0), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lexical_identifier, 1, 0, 0), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lexical_identifier, 1, 0, 0), + [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 0), + [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), + [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7793), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), + [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10152), + [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 1, 0, 1), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 1, 0, 1), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, 0, 0), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, 0, 0), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), + [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7999), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 1, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 1, 0, 0), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 0), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 8), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 8), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 3, 0, 0), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_reference, 1, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_reference, 1, 0, 0), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 1, 0, 0), + [4192] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10087), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4, 0, 0), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 6), + [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 6), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [4214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 1, 0, 0), + [4224] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6724), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 0), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 0), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_user_type, 2, 0, 1), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_user_type, 2, 0, 1), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5, 0, 0), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), + [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 2, 0, 0), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 2, 0, 0), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__return_at, 2, 0, 3), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__return_at, 2, 0, 3), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 0), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 0), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 0), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 0), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 2, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 2, 0, 0), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 2), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 2), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), + [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, 0, 6), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, 0, 6), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 2, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 2, 0, 0), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 6), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 6), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block, 3, 0, 0), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block, 3, 0, 0), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegation_specifier, 1, 0, 0), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegation_specifier, 1, 0, 0), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 2, 0, 2), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 2, 0, 2), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 6), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 6), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 8, 0, 0), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 8, 0, 0), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), + [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [4382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 3, 0, 0), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 3, 0, 0), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraints, 2, 0, 0), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraints, 2, 0, 0), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 7, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 7, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_constant, 1, 0, 0), + [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_constant, 1, 0, 0), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 2), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 2), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 6, 0, 0), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 6, 0, 0), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 8), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 8), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7999), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 0), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 0), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 8), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 8), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 7, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 7, 0, 0), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 2), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 2), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7719), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 1, 0, 0), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 1, 0, 0), + [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 2, 0, 0), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 2, 0, 0), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 2, 0, 0), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 2, 0, 0), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 2, 0, 0), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 2, 0, 0), + [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 2, 0, 0), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 2, 0, 0), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, 0, 2), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, 0, 2), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 3, 0, 0), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 3, 0, 0), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 5, 0, 0), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 5, 0, 0), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 3, 0, 0), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 3, 0, 0), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_constructor, 3, 0, 0), + [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor, 3, 0, 0), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_value_parameters, 4, 0, 0), + [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_value_parameters, 4, 0, 0), + [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delegation_specifiers, 1, 0, 0), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegation_specifiers, 1, 0, 0), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, 0, 6), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, 0, 6), + [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 4, 0, 0), + [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 4, 0, 0), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), + [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_parameters, 5, 0, 0), + [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_parameters, 5, 0, 0), + [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 2), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 2), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), + [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7146), + [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 6), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 6), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 8), + [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 8), + [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 0), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 0), + [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_user_type, 3, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_user_type, 3, 0, 0), + [4642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 3, 0, 0), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 3, 0, 0), + [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 3, 0, 1), + [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 3, 0, 1), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 4, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 4, 0, 0), + [4656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 3, 0, 0), REDUCE(sym_not_nullable_type, 4, 0, 0), + [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 3, 0, 0), REDUCE(sym_not_nullable_type, 4, 0, 0), + [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 3, 0, 0), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 3, 0, 0), + [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4, 0, 2), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4, 0, 2), + [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_nullable_type, 4, 0, 0), REDUCE(sym_not_nullable_type, 5, 0, 0), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_nullable_type, 4, 0, 0), REDUCE(sym_not_nullable_type, 5, 0, 0), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_nullable_type, 5, 0, 0), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_nullable_type, 5, 0, 0), + [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_variable_declaration, 4, 0, 0), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_variable_declaration, 4, 0, 0), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 4, 0, 0), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 4, 0, 0), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 2), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 2), + [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 8, 0, 0), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 8, 0, 0), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 7, 0, 0), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 7, 0, 0), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6, 0, 0), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, 0, 0), + [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 6, 0, 9), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 6, 0, 9), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), + [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 5, 0, 0), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 5, 0, 0), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 5, 0, 0), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 5, 0, 0), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [4776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 3, 0, 0), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 3, 0, 0), + [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3, 0, 0), + [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3, 0, 0), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4, 0, 0), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4, 0, 0), + [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_block, 2, 0, 0), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_block, 2, 0, 0), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [4798] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6718), + [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 4, 0, 0), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 4, 0, 0), + [4806] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10113), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 4, 0, 0), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 4, 0, 0), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 4, 0, 0), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 4, 0, 0), + [4818] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6708), + [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 4, 0, 0), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 4, 0, 0), + [4826] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10070), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [4832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 3, 0, 1), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 3, 0, 1), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10113), + [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 2, 0, 0), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 2, 0, 0), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 2, 0, 0), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 2, 0, 0), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10106), + [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, 0, 0), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, 0, 0), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9499), + [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 5, 0, 0), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 5, 0, 0), + [4868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4, 0, 0), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4, 0, 0), + [4872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3, 0, 0), + [4874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3, 0, 0), + [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2, 0, 0), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2, 0, 0), + [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2, 0, 0), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2, 0, 0), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 3, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 3, 0, 0), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_literal, 2, 0, 0), + [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_literal, 2, 0, 0), + [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2, 0, 0), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2, 0, 0), + [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 11, 0, 0), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 11, 0, 0), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3, 0, 0), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3, 0, 0), + [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 11, 0, 0), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 11, 0, 0), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_expression, 3, 0, 0), + [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_expression, 3, 0, 0), + [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3, 0, 0), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3, 0, 0), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_structure_body, 1, 0, 0), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_structure_body, 1, 0, 0), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_suffix, 2, 0, 0), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_suffix, 2, 0, 0), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_literal, 3, 0, 0), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_literal, 3, 0, 0), + [4932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 0), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 1, 0, 0), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 1, 0, 0), + [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 8), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 8), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 0), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 0), + [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_navigation_expression, 2, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_navigation_expression, 2, 0, 0), + [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_expression, 2, 0, 0), + [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_expression, 2, 0, 0), + [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_literal, 2, 0, 0), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_literal, 2, 0, 0), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsigned_literal, 2, 0, 0), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsigned_literal, 2, 0, 0), + [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 2, 0, 2), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 2, 0, 2), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__this_at, 2, 0, 2), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__this_at, 2, 0, 2), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__break_at, 2, 0, 3), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__break_at, 2, 0, 3), + [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__continue_at, 2, 0, 3), + [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__continue_at, 2, 0, 3), + [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_callable_reference, 2, 0, 0), + [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_callable_reference, 2, 0, 0), + [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_literal, 2, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_literal, 2, 0, 0), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_expression, 1, 0, 0), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), + [4996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7986), + [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_super_expression, 1, 0, 0), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_super_expression, 1, 0, 0), + [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directly_assignable_expression, 1, 0, 0), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directly_assignable_expression, 1, 0, 0), + [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 3, 0, 2), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 3, 0, 2), + [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_body, 1, 0, 0), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_body, 1, 0, 0), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_this_expression, 1, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_this_expression, 1, 0, 0), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 4, 0, 2), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 4, 0, 2), + [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 6), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 6), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 0), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 8, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 8, 0, 0), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 4, 0, 0), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 4, 0, 0), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 0), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 0), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 5, 0, 0), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 5, 0, 0), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 8, 0, 0), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 8, 0, 0), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 4, 0, 6), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 4, 0, 6), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, 0, 2), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, 0, 2), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 2, 0, 0), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 2, 0, 0), + [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 7, 0, 0), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 7, 0, 0), + [5097] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9673), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 7, 0, 0), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 7, 0, 0), + [5105] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6691), + [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 4, 0, 0), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 4, 0, 0), + [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 4, 0, 0), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 4, 0, 0), + [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 5, 0, 2), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 5, 0, 2), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3, 0, 0), + [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 5, 0, 0), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 5, 0, 0), + [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6, 0, 0), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6, 0, 0), + [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 0), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 0), + [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, 0, 6), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, 0, 6), + [5141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, 0, 6), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, 0, 6), + [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 5, 0, 6), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 5, 0, 6), + [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 0), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 0), + [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 5, 0, 0), + [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 5, 0, 0), [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_class_body, 3, 0, 0), [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_class_body, 3, 0, 0), - [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__super_at, 6, 0, 9), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__super_at, 6, 0, 9), - [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 6, 0, 0), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, 0, 0), - [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 4, 0, 0), - [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 4, 0, 0), - [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_setter, 6, 0, 0), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_setter, 6, 0, 0), - [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_declaration, 6, 0, 6), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_declaration, 6, 0, 6), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_suffix, 3, 0, 0), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_suffix, 3, 0, 0), - [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 3, 0, 0), - [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 3, 0, 0), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_lambda, 2, 0, 0), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_lambda, 2, 0, 0), - [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_arguments, 2, 0, 0), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_arguments, 2, 0, 0), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias, 6, 0, 6), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 6, 0, 6), - [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 0), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 0), - [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6, 0, 0), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6, 0, 0), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_suffix, 3, 0, 0), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_suffix, 3, 0, 0), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_invocation, 2, 0, 0), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_invocation, 2, 0, 0), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), - [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [5253] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6681), - [5257] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10102), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(6637), - [5280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8823), - [5283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7598), - [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4584), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [5293] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6685), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), - [5299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8936), - [5302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7809), - [5305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2881), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [5312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9086), - [5315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7795), - [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(813), - [5321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8879), - [5324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7782), - [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3325), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9922), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [5342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7672), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9898), - [5349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8943), - [5352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7665), - [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2770), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), - [5360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8909), - [5363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7737), - [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4537), - [5369] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9838), - [5373] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6711), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [5381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7634), - [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7684), - [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7832), - [5390] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9898), - [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7813), - [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7681), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [5402] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6712), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7607), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [5413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7606), - [5416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7658), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), - [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7730), - [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7650), - [5427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7612), - [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7794), - [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7820), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), - [5438] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10099), - [5442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7805), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [5447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7675), - [5450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7749), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7716), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9418), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), - [5468] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9852), - [5472] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6694), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9094), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6981), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), - [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), - [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), SHIFT(6637), - [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), - [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), - [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [5715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7145), - [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9324), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9388), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10119), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), - [5786] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10031), - [5790] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6730), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9262), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9924), - [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10113), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), - [5880] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9832), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7077), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), - [5900] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6710), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), - [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [6024] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6726), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), - [6030] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9467), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10070), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9994), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10099), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6778), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), - [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6885), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), - [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), - [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6953), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), - [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), - [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10148), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9304), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [6420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7680), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [6431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10148), - [6434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7960), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), - [6443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7960), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), - [6456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [6482] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6704), - [6486] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9628), - [6490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2873), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10145), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9338), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [6503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7973), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), - [6510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7786), - [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10145), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), - [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), - [6542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7956), - [6545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7956), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [6554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7960), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6233), - [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), - [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7172), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), - [6588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3033), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), - [6595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), - [6597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(7866), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [6606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7218), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10137), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9320), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(9525), - [6632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7923), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10065), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3180), - [6660] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10072), - [6664] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6709), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [6670] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6715), - [6674] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9853), - [6678] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6702), - [6682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7956), - [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7257), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9899), - [6692] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10126), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [6700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10137), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6225), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [6747] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6724), - [6751] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9868), - [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), - [6763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7950), - [6766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7950), - [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), - [6775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7628), - [6778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7132), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), - [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), - [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9024), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [6813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7915), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6837), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), - [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5, 0, 0), - [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5, 0, 0), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), - [6828] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6700), - [6832] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9855), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9753), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [6848] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6734), - [6852] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9822), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9855), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [6862] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9876), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9925), - [6868] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6707), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9958), - [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2, 0, 0), - [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2, 0, 0), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [6888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7256), - [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7, 0, 0), - [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7, 0, 0), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [6907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9980), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10019), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [6944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3, 0, 0), - [6946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3, 0, 0), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8005), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2, 0, 0), - [6956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2, 0, 0), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [6980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7950), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [6991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8005), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [6996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), - [6999] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9714), - [7003] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6706), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), - [7019] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9567), - [7023] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6683), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9238), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6793), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), - [7091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7133), - [7094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), - [7098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1328), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [7103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [7125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4, 0, 0), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4, 0, 0), - [7129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(8007), - [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1, 0, 0), - [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1, 0, 0), - [7136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7131), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), - [7167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2, 0, 0), - [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2, 0, 0), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), - [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9919), - [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [7185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3, 0, 0), - [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3, 0, 0), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9905), - [7197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5, 0, 0), - [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5, 0, 0), - [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10126), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9908), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9964), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10102), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10106), - [7283] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6686), - [7287] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10095), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9838), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [7331] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6698), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), - [7343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7190), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10043), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [7354] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9812), - [7358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6067), - [7361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6675), - [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), - [7366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(5862), - [7369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), - [7371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6073), - [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), - [7376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(9382), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7587), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), - [7383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6067), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9876), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6869), - [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [7398] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6733), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9880), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9852), - [7414] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9981), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10141), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), - [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9896), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), - [7442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), - [7450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6294), - [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [7490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7144), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10034), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10031), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9891), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9932), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9761), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3, 0, 0), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9345), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [7653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(6660), - [7656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8023), - [7659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8031), - [7662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(10089), - [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9345), - [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), - [7670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(6377), - [7673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9346), - [7676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9633), - [7679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8076), - [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(6511), - [7685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8935), - [7688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8921), - [7691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5747), - [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5748), - [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5750), - [7700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5751), - [7703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5507), - [7706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5714), - [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5754), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5753), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2, 0, 0), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7, 0, 0), - [7723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 0), REDUCE(sym_value_argument, 2, 0, 0), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9390), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6, 0, 0), - [7730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5, 0, 0), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1, 0, 0), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9487), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9797), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2, 0, 0), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), - [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4, 0, 0), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4, 0, 0), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), - [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3, 0, 0), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9308), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, 0, 0), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9706), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9768), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9963), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9277), - [8088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7935), - [8091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7935), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), - [8104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9963), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6191), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [8115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7710), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [8122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4552), - [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6659), - [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), - [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [8131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7966), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7966), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), - [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7601), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9579), - [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), - [8162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [8164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7935), - [8167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7686), - [8170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9579), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), - [8187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7970), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), - [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [8194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7970), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), - [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [8213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4654), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), - [8224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7157), - [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), - [8239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7269), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), - [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [8250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7963), - [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9882), - [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9722), - [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), - [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), - [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), - [8297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4866), - [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), - [8310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7970), - [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), - [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), - [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), - [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), - [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), - [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), - [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [8367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7240), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [8372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7195), - [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), - [8379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7237), - [8382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7162), - [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), - [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), - [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), - [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9849), - [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), - [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), - [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9796), - [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), - [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), - [8421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7996), - [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [8428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4, 0, 0), - [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4, 0, 0), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9868), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9883), - [8468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6727), - [8471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9856), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), - [8476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3, 0, 0), - [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3, 0, 0), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_getter, 6, 0, 0), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_getter, 6, 0, 0), + [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [5205] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9601), + [5209] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6713), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [5225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(6667), + [5228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9030), + [5231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7669), + [5234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(820), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [5241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9090), + [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7688), + [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2894), + [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8907), + [5253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7831), + [5256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(3334), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7729), + [5268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8966), + [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7701), + [5274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(2802), + [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(8878), + [5280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7654), + [5283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4609), + [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(9023), + [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7616), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(4534), + [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7670), + [5298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7691), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7736), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10101), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [5308] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10059), + [5312] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6710), + [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7765), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10111), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [5325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7619), + [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7712), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [5333] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10111), + [5337] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6692), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7800), + [5350] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10117), + [5354] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6716), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [5360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7717), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7656), + [5368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7776), + [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7766), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7810), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), + [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7604), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7811), + [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7716), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10112), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7718), + [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 1, 0, 0), SHIFT(7802), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9328), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [5434] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10132), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9283), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6945), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [5490] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6704), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9096), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9461), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), SHIFT(6667), + [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6946), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [5643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7189), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7113), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9157), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6845), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9215), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9201), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6902), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6911), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [5778] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9582), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9636), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9673), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [5790] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6720), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6851), + [5854] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6714), + [5858] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10023), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7112), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [5906] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9854), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), + [5912] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6726), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10068), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10059), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6971), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7001), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6896), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6761), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), + [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6970), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6883), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6820), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6811), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6791), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7085), + [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7014), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7049), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10151), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9454), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [6376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10151), + [6379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7984), + [6382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7814), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [6393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7984), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10150), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9182), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), + [6406] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10062), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6893), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [6420] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6705), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6182), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6668), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [6444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2878), + [6447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7984), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7980), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7994), + [6463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7994), + [6466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7980), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [6481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7659), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [6502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10150), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6870), + [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7199), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6919), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), + [6522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7260), + [6525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), + [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), + [6542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat2, 2, 0, 0), SHIFT_REPEAT(7949), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [6561] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6695), + [6565] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9857), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10145), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9195), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7988), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [6582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7980), + [6585] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10129), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [6591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3149), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [6604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(9637), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10129), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10120), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [6621] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6729), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [6633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7270), + [6636] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9624), + [6640] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6682), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [6724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), + [6728] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6725), + [6732] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9560), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [6740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7976), + [6743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7976), + [6746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10145), + [6749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7181), + [6752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7665), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang_line, 2, 0, 0), + [6765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang_line, 2, 0, 0), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7098), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [6777] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6699), + [6781] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10147), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [6789] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9826), + [6793] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6693), + [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 7, 0, 0), + [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 7, 0, 0), + [6801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_annotation, 5, 0, 0), + [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_annotation, 5, 0, 0), + [6827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7975), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7233), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), + [6851] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6696), + [6855] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10006), + [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10087), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9826), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), + [6889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3590), + [6892] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6683), + [6896] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9901), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), + [6904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7976), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [6927] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6712), + [6931] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9638), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [6939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 2, 0, 0), + [6941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 2, 0, 0), + [6943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_header, 3, 0, 0), + [6945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_header, 3, 0, 0), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [6955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [6972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7944), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7822), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9181), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6192), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6783), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [7031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat3, 2, 0, 0), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), + [7035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7133), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [7046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), + [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), + [7050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1371), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7020), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [7075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7147), + [7078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7967), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6858), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [7091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 3, 0, 0), + [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 3, 0, 0), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6765), + [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), + [7103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 1, 0, 0), + [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 1, 0, 0), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [7109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 5, 0, 0), + [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 5, 0, 0), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_annotation, 4, 0, 0), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_annotation, 4, 0, 0), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10070), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10074), + [7145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__single_annotation, 2, 0, 0), + [7147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__single_annotation, 2, 0, 0), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [7193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [7203] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9747), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [7209] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6687), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10128), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10117), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [7275] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6727), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [7283] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10092), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10122), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9899), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [7303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7142), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), + [7312] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_getter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10081), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10134), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10147), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10038), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9968), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [7354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6356), + [7357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6639), + [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), + [7362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(5864), + [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), + [7367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6361), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8024), + [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(9330), + [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7447), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [7379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__comparison_operator, 1, 0, 0), SHIFT(6356), + [7382] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_setter, 1, 0, 0), REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6686), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6975), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [7436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7185), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9793), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9817), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9803), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10091), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9276), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9812), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9265), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [7613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(6625), + [7616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8225), + [7619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8224), + [7622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(10091), + [7625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9276), + [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), + [7630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(7709), + [7633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9278), + [7636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(9812), + [7639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8102), + [7642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(6507), + [7645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8859), + [7648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(8858), + [7651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5759), + [7654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5754), + [7657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5719), + [7660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5726), + [7663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5532), + [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5730), + [7669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5721), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), SHIFT_REPEAT(5750), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9572), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10024), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9922), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2, 0, 0), + [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 4, 0, 0), + [7753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_prefix_expression, 2, 0, 0), REDUCE(sym_value_argument, 2, 0, 0), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_test, 2, 0, 0), + [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 5, 0, 0), + [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 3, 0, 0), + [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 3, 0, 0), + [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 7, 0, 0), + [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 1, 0, 0), + [7768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 6, 0, 0), + [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_argument, 4, 0, 0), + [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_condition, 1, 0, 0), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10017), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9973), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9397), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [8044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9973), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [8049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7761), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [8058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7893), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [8063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7893), + [8066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7993), + [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7993), + [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7053), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [8087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4569), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [8098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7893), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9741), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9322), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [8117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4622), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [8128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7245), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6196), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [8139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7865), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [8148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7865), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9010), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), + [8175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7622), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), + [8184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7153), + [8187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9741), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6921), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [8200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7917), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10066), + [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10062), + [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [8223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4807), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7117), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [8258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7865), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), + [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6895), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6903), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [8303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7265), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), + [8324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7242), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [8333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7141), + [8336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7164), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), + [8343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [8347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_expression, 1, 0, 0), SHIFT(7948), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7072), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9857), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 3, 0, 0), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 3, 0, 0), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [8392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(10013), + [8395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 4, 0, 0), + [8397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 4, 0, 0), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7109), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), + [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [8427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6701), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10034), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9925), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9711), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [8506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9822), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9862), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [8521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), - [8523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6637), - [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), - [8528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5359), - [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9793), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), - [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7965), - [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), - [8591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7965), - [8594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5, 0, 0), - [8596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5, 0, 0), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6932), - [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9714), - [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), - [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6812), - [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), - [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), - [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8121), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9965), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [8718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1346), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9775), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6660), - [8736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), - [8738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), - [8740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5747), - [8743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5748), - [8746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5750), - [8749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5751), - [8752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5496), - [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5714), - [8758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5754), - [8761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5753), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9664), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), - [8778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1, 0, 0), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10016), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10069), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9683), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), - [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), - [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7178), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7018), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8749), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [8899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9665), - [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [8906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6736), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3, 0, 0), - [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6974), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9805), - [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10095), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [8925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6633), - [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5766), - [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5770), - [8934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5781), - [8937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), - [8940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), - [8943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5784), - [8946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5785), - [8949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5793), - [8952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 2, 0, 0), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [8964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7931), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9812), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9770), - [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [8997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6640), - [9000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5869), - [9003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5870), - [9006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5871), - [9009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5861), - [9012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5675), - [9015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5878), - [9018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5875), - [9021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5867), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [9036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7904), - [9039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10027), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9625), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9903), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), - [9075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7942), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), - [9082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9382), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [9092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1, 0, 0), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [9096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1, 0, 0), - [9098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1, 0, 0), - [9100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1, 0, 0), - [9102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1, 0, 0), - [9104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1, 0, 0), - [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [9108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1, 0, 0), - [9112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1, 0, 0), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), - [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5758), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [9129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [9140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7268), - [9143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7939), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [9150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7262), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [9155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7925), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [9174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), - [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [9210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), - [9266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), - [9272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), - [9275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8818), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [9299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), - [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), - [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9678), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9669), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), - [9325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7921), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10085), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10003), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9998), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7847), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8430), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [9470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7571), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), - [9476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [9482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6696), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [9493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), - [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), - [9497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), - [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2, 0, 0), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2111), - [9508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7657), - [9511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), - [9513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7184), - [9516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), - [9518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6636), - [9521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7847), - [9524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7197), - [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), - [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7849), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [9533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), - [9535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6675), - [9538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), - [9540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7207), - [9543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), - [9545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), - [9547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1, 0, 0), - [9549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1, 0, 0), - [9551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7911), - [9554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1, 0, 0), - [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1, 0, 0), - [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), - [9560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), - [9562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), - [9564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7587), - [9567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), - [9569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6630), - [9572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7836), - [9575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), - [9577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_modifiers, 1, 0, 0), SHIFT(6675), - [9580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_modifiers, 1, 0, 0), SHIFT(7207), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [9587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6067), - [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), - [9592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6073), - [9595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6067), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [9640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1369), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [9665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1, 0, 0), REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), - [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1, 0, 0), REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), - [9671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, 0, 0), - [9673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, 0, 0), - [9675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [9687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7932), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [9834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2, 0, 0), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [9866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), - [9868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6658), - [9871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [9885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, 0, 0), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [9891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7919), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), - [9898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1, 0, 0), - [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1, 0, 0), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [9930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6636), - [9933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1338), - [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [9938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7921), - [9941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1, 0, 0), - [9943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1, 0, 0), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), - [9949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7921), - [9952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2, 0, 0), - [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2, 0, 0), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [9960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7632), - [9963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7649), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [9974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7712), - [9977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7705), - [9980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7695), - [9983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7694), - [9986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7682), - [9989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7678), - [9992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7671), - [9995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7667), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [10010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7720), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [10017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7789), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), - [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), - [10064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7951), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), - [10069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), - [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), - [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), - [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), - [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), - [10139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7659), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [10146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7637), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), - [10153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7636), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), - [10166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7603), - [10169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7627), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [10176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7669), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), - [10183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [10187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7597), - [10190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7604), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), - [10195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7647), - [10198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1332), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), - [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), - [10207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7623), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9814), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8964), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [10234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7731), - [10237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7793), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9429), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8716), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8763), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), - [10286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7930), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9778), - [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [10299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10134), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9611), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9600), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9758), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10130), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9751), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10128), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9644), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9612), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9670), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9621), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [10625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2, 0, 0), - [10627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2, 0, 0), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9974), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9614), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9817), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9409), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9425), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9404), - [10723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7949), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9289), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [10754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1, 0, 0), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [10786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6641), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [10799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2, 0, 0), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [10823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7264), - [10826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), - [10829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8205), - [10832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [10834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8416), - [10837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7129), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), - [10880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6639), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10149), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9836), - [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9835), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9834), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [10957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, 0, 0), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10148), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), - [10963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7201), - [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9826), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10137), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9320), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [10996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7223), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9279), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9806), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9713), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9963), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9479), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9579), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9378), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9672), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [11207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7866), - [11210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), - [11212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, 0, 4), - [11214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, 0, 4), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), - [11222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2, 0, 0), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [11226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1, 0, 0), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [11234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), - [11236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [11239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2, 0, 0), - [11241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2, 0, 0), SHIFT_REPEAT(5644), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [11246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, 0, 6), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8868), - [11250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3, 0, 0), - [11252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, 0, 7), - [11254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, 0, 7), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [11258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 8), - [11260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1, 0, 0), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [11276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4, 0, 0), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [11320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5880), - [11323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2, 0, 0), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [11345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1, 0, 0), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [11377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3, 0, 0), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [11381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5614), - [11384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2, 0, 0), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [11406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8850), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [11441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 0), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [11455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 0), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [11461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(5727), - [11464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [11466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 6), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [11472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1404), - [11475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2, 0, 0), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [11507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [11510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2, 0, 0), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [11514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), - [11518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [11536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2, 0, 0), SHIFT_REPEAT(2101), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9431), - [11545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8080), - [11548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [11556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 3, 0, 0), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [11572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5, 0, 0), - [11574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [11580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6668), - [11583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2, 0, 0), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9856), - [11591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 0), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [11603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6662), - [11606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [11608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(7593), - [11611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2, 0, 0), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9631), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [11637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7979), - [11640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2, 0, 0), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [11650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 1), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [11668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 2), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [11684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 8), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [11718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2, 0, 0), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8671), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [11760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2, 0, 0), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [11766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2, 0, 0), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [11870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4, 0, 0), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2, 0, 0), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [11952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2, 0, 0), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), - [11962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3, 0, 5), - [11964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2, 0, 0), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [11970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2, 0, 0), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), - [11980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 5, 0, 5), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), - [11990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 2), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [12004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1, 0, 0), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [12012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1, 0, 0), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9665), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10000), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9315), - [12038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4, 0, 5), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), - [12046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 1), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [12054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2, 0, 0), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9316), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [12074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6, 0, 0), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [12078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 6), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9283), - [12100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, 0, 2), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [12126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3, 0, 0), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9189), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [12152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 0), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9275), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9399), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [12218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2, 0, 0), - [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [12224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2, 0, 0), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9044), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), - [12304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4, 0, 0), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9182), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9226), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9243), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [12364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7, 0, 0), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [12380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 6), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9313), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [12392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4, 0, 0), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [12398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6, 0, 0), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9847), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [8492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), + [8494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6667), + [8497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), + [8499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5415), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [8504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7182), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9426), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9638), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9868), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), + [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7929), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10063), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9665), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9926), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9866), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [8617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when_entry, 5, 0, 0), + [8619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_entry, 5, 0, 0), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9934), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9870), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6298), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9809), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8642), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [8657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7929), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8662), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifiers, 1, 0, 0), + [8746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifiers, 1, 0, 0), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [8754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1354), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [8765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6625), + [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [8770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), + [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5759), + [8775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5754), + [8778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5719), + [8781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5726), + [8784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), + [8787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5730), + [8790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5721), + [8793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5750), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10053), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(9500), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7156), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [8848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_simple_identifier, 1, 0, 0), SHIFT(6734), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [8857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 3, 0, 0), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9858), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 2, 0, 0), + [8879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6666), + [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), + [8885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), + [8888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5794), + [8891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5795), + [8894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5614), + [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5796), + [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5797), + [8903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5776), + [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7038), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10092), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [8914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8005), + [8917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9515), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10094), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10081), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9972), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [8943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6630), + [8946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5848), + [8949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5849), + [8952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5870), + [8955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5874), + [8958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5668), + [8961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5862), + [8964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5869), + [8967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5858), + [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [8982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7962), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7858), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9849), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9885), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [9009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_member_declarations, 2, 0, 0), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9842), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9801), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [9023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7973), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), + [9034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_modifier, 1, 0, 0), + [9036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_modifier, 1, 0, 0), + [9038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifier, 1, 0, 0), + [9040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifier, 1, 0, 0), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [9044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [9046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [9048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), + [9050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inheritance_modifier, 1, 0, 0), + [9052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_platform_modifier, 1, 0, 0), + [9054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5746), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), + [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_modifier, 1, 0, 0), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifier, 1, 0, 0), + [9065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_modifier, 1, 0, 0), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [9075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [9088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7221), + [9091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7919), + [9094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7243), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [9105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8007), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [9118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), + [9128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [9146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [9160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [9180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5682), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), + [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8319), + [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8850), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [9212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), REDUCE(aux_sym_modifiers_repeat1, 1, 0, 0), + [9215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 1, 0, 0), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9077), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10099), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9987), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9912), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [9279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7904), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10047), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10045), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [9366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7574), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), + [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), + [9430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6681), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [9441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_modifiers, 1, 0, 0), + [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__postfix_unary_expression, 2, 0, 0), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [9451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), + [9453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6661), + [9456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7860), + [9459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7137), + [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_modifiers_repeat1, 2, 0, 0), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [9466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1576), + [9469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7782), + [9472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), + [9474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__postfix_unary_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7155), + [9477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_projection_modifiers, 1, 0, 0), + [9479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection_modifiers, 1, 0, 0), + [9481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), + [9483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), + [9485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_projection_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7447), + [9488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), + [9490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6674), + [9493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7858), + [9496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 2, 0, 0), + [9498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_modifiers, 1, 0, 0), + [9500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_modifiers, 1, 0, 0), SHIFT(6639), + [9503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_modifiers, 1, 0, 0), + [9505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_modifiers, 1, 0, 0), SHIFT(7215), + [9508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7932), + [9511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), + [9513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_modifiers, 1, 0, 0), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7852), + [9519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), + [9521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6639), + [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), + [9526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7215), + [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [9549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), + [9552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), + [9554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6361), + [9557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_file_annotation_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [9572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1372), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9270), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [9603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_modifier, 1, 0, 0), REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), + [9606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_modifier, 1, 0, 0), REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), + [9609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_modifier, 1, 0, 0), + [9611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_modifier, 1, 0, 0), + [9613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_modifiers_repeat1, 1, 0, 0), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [9625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7912), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [9720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 2, 0, 0), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [9740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variance_modifier, 1, 0, 0), + [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variance_modifier, 1, 0, 0), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [9810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7945), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, 0, 0), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [9843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), + [9845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6678), + [9848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [9858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1331), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [9875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6661), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [9880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binding_pattern_kind, 1, 0, 0), + [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binding_pattern_kind, 1, 0, 0), + [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9878), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9384), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9573), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), + [9910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7904), + [9913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7904), + [9916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 2, 0, 0), + [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 2, 0, 0), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [9922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__receiver_type, 1, 0, 0), + [9924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__receiver_type, 1, 0, 0), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [9930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7677), + [9933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7829), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7684), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), + [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [9951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7724), + [9954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7722), + [9957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7812), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [9966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7820), + [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [9973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7690), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [9986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7638), + [9989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7991), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [9994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7825), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [10001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7804), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [10012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7752), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), + [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), + [10063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__unescaped_annotation, 1, 0, 0), SHIFT(1377), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [10070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7675), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [10075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7768), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [10102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7763), + [10105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7786), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [10140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7817), + [10143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7823), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [10156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7698), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [10161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7737), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), + [10166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7636), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [10181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7807), + [10184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 2, 0, 0), SHIFT(7828), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), + [10189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_user_type, 1, 0, 0), SHIFT(7826), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9632), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10140), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9652), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9784), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9656), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10142), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9696), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9258), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9661), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8659), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8663), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9629), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10002), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), + [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10138), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9714), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9831), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9654), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9745), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [10466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7936), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9668), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10136), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9630), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9881), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9686), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10055), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10050), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [10567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_site_target, 2, 0, 0), + [10569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_site_target, 2, 0, 0), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9261), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), + [10629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_user_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7938), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9395), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9193), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [10650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 1, 0, 0), + [10652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6659), + [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [10691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 2, 0, 0), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8133), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [10713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7272), + [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [10744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__annotated_delegation_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6675), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), + [10765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1513), + [10768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8133), + [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [10773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(8449), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [10778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7144), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10150), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9182), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [10865] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10018), + [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9991), + [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9990), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9884), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9993), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9973), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9397), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9492), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10151), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9903), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), + [11065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constraints_repeat1, 2, 0, 0), SHIFT_REPEAT(7244), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [11072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__delegation_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7143), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10152), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9505), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [11103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 3, 0, 0), + [11105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2, 0, 0), + [11107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_entries_repeat1, 2, 0, 0), SHIFT_REPEAT(5636), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), + [11116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 3, 0, 0), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [11120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 3, 0, 6), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [11124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_entries, 1, 0, 0), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [11128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1, 0, 0), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [11132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7949), + [11135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2, 0, 0), + [11137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 2, 0, 4), + [11139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 2, 0, 4), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [11143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 8), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [11151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), + [11153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8916), + [11160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 2, 0, 0), + [11162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolation, 3, 0, 7), + [11164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolation, 3, 0, 7), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [11212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_indexing_suffix_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [11215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8173), + [11218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2, 0, 0), + [11220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 3, 0, 0), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), + [11242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(7431), + [11245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_parameters_repeat1, 2, 0, 0), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [11275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 2, 0, 0), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [11301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 2), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [11305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 1), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [11325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_value_parameter, 1, 0, 0), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10013), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [11361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 2, 0, 0), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [11391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2, 0, 0), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9641), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [11411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 6), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [11419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 8), + [11421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_entry, 4, 0, 0), + [11423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7940), + [11426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_variable_declaration_repeat1, 2, 0, 0), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [11446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6644), + [11449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_value_parameters_repeat1, 2, 0, 0), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [11453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 0), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [11461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6665), + [11464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [11476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [11479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_entry_repeat1, 2, 0, 0), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [11485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [11488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_arguments_repeat1, 2, 0, 0), + [11490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(5757), + [11493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [11511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 0), + [11513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 5, 0, 0), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [11529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), + [11532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_parameters_repeat1, 2, 0, 0), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [11536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 3, 0, 0), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [11546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_parameter, 4, 0, 0), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [11576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(5879), + [11579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_parameters_repeat1, 2, 0, 0), + [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 4, 0, 0), + [11583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 0), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [11617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [11621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [11629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [11747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_nullable_type_repeat1, 2, 0, 0), SHIFT_REPEAT(9076), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [11834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 2), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9358), + [11846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 3, 0, 5), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [11856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_delegation_call, 2, 0, 0), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [11880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 1, 0, 0), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [11890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 1, 0, 0), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9457), + [11912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 4, 0, 5), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9564), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [11922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 1), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [11936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 2, 0, 0), + [11938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_test, 2, 0, 0), + [11940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_projection, 2, 0, 0), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [11944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_header, 5, 0, 5), + [11946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 2, 0, 2), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [11950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 6), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [11958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_secondary_constructor, 6, 0, 0), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [11974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 6, 0, 0), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [11984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 7, 0, 0), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [12006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, 0, 8), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [12058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3, 0, 0), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [12070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 2, 0, 0), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [12156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_initializer, 2, 0, 0), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [12170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 6, 0, 0), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [12188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 3, 0, 0), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10047), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9431), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [12454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__uni_character_literal, 2, 0, 0), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [12496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_subject, 3, 0, 0), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10005), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [12580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 7, 0, 8), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [12604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1, 0, 0), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10057), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10050), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10037), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10025), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10013), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [12824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 8), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [13014] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9792), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [13192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9207), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9233), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9236), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9642), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9438), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [12592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 5, 0, 8), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [12632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_parameters, 4, 0, 0), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [12638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_companion_object, 4, 0, 6), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9152), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8483), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9166), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [12664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_with_optional_type, 4, 0, 0), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [12832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_escape_seq, 1, 0, 0), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9381), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9756), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9543), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [12920] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), + [12982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), + [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/annotations.txt b/test/corpus/annotations.txt index 6b2bfe93..b2a8a661 100644 --- a/test/corpus/annotations.txt +++ b/test/corpus/annotations.txt @@ -25,6 +25,7 @@ class Empty(@field:Test val x: Boolean) (type_identifier) (primary_constructor (class_parameter (modifiers (annotation (use_site_target) (user_type (type_identifier)))) + (binding_pattern_kind) (simple_identifier) (user_type (type_identifier)))))) @@ -40,6 +41,7 @@ var x: Int (source_file (property_declaration (modifiers (annotation (use_site_target) (user_type (type_identifier)) (user_type (type_identifier)))) + (binding_pattern_kind) (variable_declaration (simple_identifier) (user_type (type_identifier))))) ================== @@ -62,6 +64,7 @@ class X { (annotation (user_type (type_identifier))) (annotation (user_type (type_identifier))) (member_modifier)) + (binding_pattern_kind) (variable_declaration (simple_identifier) (user_type (type_identifier))) ) ) diff --git a/test/corpus/assignment.txt b/test/corpus/assignment.txt index 135ff4ec..09c199ac 100644 --- a/test/corpus/assignment.txt +++ b/test/corpus/assignment.txt @@ -17,14 +17,15 @@ class Foo(){ (primary_constructor) (class_body (property_declaration + (binding_pattern_kind) (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 @@ -51,6 +52,7 @@ fun main(){ (function_body (statements (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier) (user_type diff --git a/test/corpus/classes.txt b/test/corpus/classes.txt index f6c84a01..6dde60ab 100644 --- a/test/corpus/classes.txt +++ b/test/corpus/classes.txt @@ -147,10 +147,12 @@ data class Vector2D( (type_identifier) (primary_constructor (class_parameter + (binding_pattern_kind) (simple_identifier) (user_type (type_identifier))) (class_parameter + (binding_pattern_kind) (simple_identifier) (user_type (type_identifier)))))) @@ -213,18 +215,21 @@ class Something { (type_identifier) (class_body (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier) (user_type (type_identifier))) (integer_literal)) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier) (nullable_type (user_type (type_identifier))))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier) (user_type @@ -298,6 +303,7 @@ enum class Color(val rgb: Int) { (type_identifier) (primary_constructor (class_parameter + (binding_pattern_kind) (simple_identifier) (user_type (type_identifier)))) @@ -351,10 +357,12 @@ data class JwtConfiguration( (type_identifier) (primary_constructor (class_parameter + (binding_pattern_kind) (simple_identifier) (user_type (type_identifier))) (class_parameter + (binding_pattern_kind) (simple_identifier) (user_type (type_identifier)))))) @@ -380,6 +388,7 @@ value class Password(private val s: String) (class_parameter (modifiers (visibility_modifier)) + (binding_pattern_kind) (simple_identifier) (user_type (type_identifier)))))) diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 892fdecd..cee09687 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -100,10 +100,12 @@ val y = when(x){ (source_file (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (integer_literal)) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (when_expression @@ -154,6 +156,7 @@ val MyDate.s: String get() = "hello" (source_file (property_declaration + (binding_pattern_kind) (user_type (type_identifier)) (variable_declaration @@ -174,6 +177,7 @@ val x = expect(1) (source_file (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (call_expression @@ -264,18 +268,21 @@ val a = a<2>(3) (source_file (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (comparison_expression (simple_identifier) (simple_identifier))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (comparison_expression (simple_identifier) (simple_identifier))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (comparison_expression @@ -285,6 +292,7 @@ val a = a<2>(3) (simple_identifier))) (line_comment) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (call_expression @@ -298,6 +306,7 @@ val a = a<2>(3) (value_argument (simple_identifier)))))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (comparison_expression @@ -351,6 +360,7 @@ when (dir) { (function_body (statements (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (navigation_expression @@ -381,6 +391,7 @@ when (dir) { (control_structure_body (statements (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (navigation_expression @@ -422,6 +433,7 @@ val comments = """ // and here """ (source_file (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (call_expression @@ -431,6 +443,7 @@ val comments = """ // and here """ (value_argument (string_literal (string_content))))))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (call_expression @@ -440,6 +453,7 @@ val comments = """ // and here """ (value_argument (string_literal (string_content))))))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (call_expression @@ -449,6 +463,7 @@ val comments = """ // and here """ (value_argument (string_literal (string_content))))))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (call_expression @@ -458,10 +473,12 @@ val comments = """ // and here """ (value_argument (string_literal (string_content))))))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (string_literal (string_content))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (string_literal (string_content)))) diff --git a/test/corpus/functions.txt b/test/corpus/functions.txt index 288e1602..0d0190bc 100644 --- a/test/corpus/functions.txt +++ b/test/corpus/functions.txt @@ -192,6 +192,7 @@ val anon = fun() (anonymous_function (function_value_parameters)) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (anonymous_function (function_value_parameters)))) @@ -213,6 +214,7 @@ val anon = fun(x: Int) (user_type (type_identifier))))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (anonymous_function @@ -237,6 +239,7 @@ val anon = fun(): Int (user_type (type_identifier))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (anonymous_function @@ -271,6 +274,7 @@ val anon = fun() { assert(true) } (value_argument (boolean_literal)))))))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (anonymous_function @@ -278,6 +282,7 @@ val anon = fun() { assert(true) } (function_body (boolean_literal)))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (anonymous_function diff --git a/test/corpus/newlines.txt b/test/corpus/newlines.txt index 42cb9f6f..ff3dca7b 100644 --- a/test/corpus/newlines.txt +++ b/test/corpus/newlines.txt @@ -54,6 +54,7 @@ fun foo() { (function_body (statements (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (conjunction_expression @@ -118,6 +119,7 @@ fun foo() { (function_body (statements (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (elvis_expression @@ -155,6 +157,7 @@ class Foo { (type_identifier) (class_body (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier) (user_type diff --git a/test/corpus/soft_keywords.txt b/test/corpus/soft_keywords.txt index 06b2b272..6c68cd53 100644 --- a/test/corpus/soft_keywords.txt +++ b/test/corpus/soft_keywords.txt @@ -10,14 +10,23 @@ fun foo() { --- (source_file - (function_declaration (simple_identifier) (function_value_parameters) - (function_body - (statements - (property_declaration - (variable_declaration (simple_identifier)) - (call_expression (simple_identifier) - (call_suffix - (value_arguments (value_argument (simple_identifier)))))) - (postfix_expression - (indexing_expression (simple_identifier) - (indexing_suffix (integer_literal)))))))) + (function_declaration + (simple_identifier) + (function_value_parameters) + (function_body + (statements + (property_declaration + (binding_pattern_kind) + (variable_declaration + (simple_identifier)) + (call_expression + (simple_identifier) + (call_suffix + (value_arguments + (value_argument + (simple_identifier)))))) + (postfix_expression + (indexing_expression + (simple_identifier) + (indexing_suffix + (integer_literal)))))))) diff --git a/test/corpus/source-files.txt b/test/corpus/source-files.txt index 34f5114b..8a5ccb1f 100644 --- a/test/corpus/source-files.txt +++ b/test/corpus/source-files.txt @@ -17,6 +17,7 @@ val x = 4 (value_argument (string_literal (string_content)))))) (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (integer_literal))) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 79dbc921..68579a7f 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -50,12 +50,14 @@ val ty x get () = 3 (source_file (property_declaration + (binding_pattern_kind) (variable_declaration (simple_identifier)) (getter (function_body (integer_literal)))) (property_declaration + (binding_pattern_kind) (user_type (type_identifier)) (variable_declaration